From d8fc5266aefe99ccd5e1f1c0df6a190e56efe828 Mon Sep 17 00:00:00 2001 From: sijanec Date: Sat, 19 Dec 2020 00:13:36 +0100 Subject: =?UTF-8?q?o=C5=A1la?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ang/work/2/dokument.md | 15 + ang/work/3/dokument.md | 12 + mat/advent/8/Makefile | 3 + mat/advent/8/a.out | Bin 0 -> 8440 bytes mat/advent/8/prog.c | 28 + mat/advent/8/vsota | Bin 0 -> 8344 bytes mat/advent/8/vsota.c | 11 + mat/domace_naloge/21/dokument.aux | 33 + mat/domace_naloge/21/dokument.log | 1749 ++++++++++++++++++++++++++++++ mat/domace_naloge/21/dokument.out | 2 + mat/domace_naloge/21/dokument.pdf | Bin 0 -> 63012 bytes mat/domace_naloge/21/dokument.synctex.gz | Bin 0 -> 20556 bytes mat/domace_naloge/21/dokument.tex | 200 ++++ mat/domace_naloge/21/dokument.toc | 4 + mat/domace_naloge/21/stderr.log | 1 + mat/domace_naloge/21/stdout.log | 735 +++++++++++++ nem/delo/1512/dokument.md | 12 + nem/delo/1612/dokument.md | 7 + 18 files changed, 2812 insertions(+) create mode 100644 ang/work/2/dokument.md create mode 100644 ang/work/3/dokument.md create mode 100644 mat/advent/8/Makefile create mode 100755 mat/advent/8/a.out create mode 100644 mat/advent/8/prog.c create mode 100755 mat/advent/8/vsota create mode 100644 mat/advent/8/vsota.c create mode 100644 mat/domace_naloge/21/dokument.aux create mode 100644 mat/domace_naloge/21/dokument.log create mode 100644 mat/domace_naloge/21/dokument.out create mode 100644 mat/domace_naloge/21/dokument.pdf create mode 100644 mat/domace_naloge/21/dokument.synctex.gz create mode 100644 mat/domace_naloge/21/dokument.tex create mode 100644 mat/domace_naloge/21/dokument.toc create mode 100644 mat/domace_naloge/21/stderr.log create mode 100644 mat/domace_naloge/21/stdout.log create mode 100644 nem/delo/1512/dokument.md create mode 100644 nem/delo/1612/dokument.md diff --git a/ang/work/2/dokument.md b/ang/work/2/dokument.md new file mode 100644 index 0000000..80fd42e --- /dev/null +++ b/ang/work/2/dokument.md @@ -0,0 +1,15 @@ +Work +==== + +1. Even if she comes late, ring me when she arrives. +No matter how late she arrives, ring me after. +2. Talented though he is, he can't find a job. +Even though he is talented, he is unable to find a job. +3. In spite of the train strike, she still managed to get to work. +Even though there was a train strike, she managed to get to work. +4. Whatever you say in protest, you can do nothing to change the situation. +No matter what you say in protest, you can do nothing to change the situation. +5. ... +Cold though the lights are, the days are warm. + +Housework: do some stuff, I can't remember what though. diff --git a/ang/work/3/dokument.md b/ang/work/3/dokument.md new file mode 100644 index 0000000..7290d8b --- /dev/null +++ b/ang/work/3/dokument.md @@ -0,0 +1,12 @@ +Adverbial clauses - Practice +============================ + +1. Articulate as she is, she failed to succeed in a negotiation. +2. He puts a lot of effort into his word, however, he hasn't shown any progress yet. +3. Despite her being in a difficult situation, she is always willing to help me. +4. With a view to applying for a job in Italy she is studying Italian. +5. In fear of missing the train, he set the alarm of 6.30. +6. Such boring music made everyone nearly fall asleep. +7. With the aim of buying a new car, she is saving up money. +8. In case the shops were closed, we took a lot of food. +9. She was too tired to participate in our discussion. diff --git a/mat/advent/8/Makefile b/mat/advent/8/Makefile new file mode 100644 index 0000000..ec92f02 --- /dev/null +++ b/mat/advent/8/Makefile @@ -0,0 +1,3 @@ +default: + gcc prog.c + gcc vsota.c -ovsota diff --git a/mat/advent/8/a.out b/mat/advent/8/a.out new file mode 100755 index 0000000..9fea777 Binary files /dev/null and b/mat/advent/8/a.out differ diff --git a/mat/advent/8/prog.c b/mat/advent/8/prog.c new file mode 100644 index 0000000..172cbe0 --- /dev/null +++ b/mat/advent/8/prog.c @@ -0,0 +1,28 @@ +#include +#include +int main (int argc, char ** argv) { + if (argc != 1+3) { + fprintf(stderr, "uporaba: %s \nprimer: %s 1000 9999 8499\n", argv[0], argv[0]); + return 1; + } + unsigned long long int o = strtoull(argv[1], NULL, 10); + unsigned long long int d = strtoull(argv[2], NULL, 10); + unsigned long long int n = strtoull(argv[3], NULL, 10); + unsigned long long int i = o; + unsigned long long int j = o; + unsigned long long int s = 0; + for (i = o; i <= d; i++) { + fprintf(stderr, "\rpreostane še %llu iteracij", n-i); + s = 0; + for (j = o; j <= d; j++) { + if (j == i) + continue; + s += j; + } + if (n * i == s) + break; + } + fprintf(stdout, "\rče seštejemo vsa števila od %llu do %llu, razen %llu, bo\n" + "vsota vseh %llu, kar je %llu*%llu.\n", o, d, i, s, n, i); + return 0; +} diff --git a/mat/advent/8/vsota b/mat/advent/8/vsota new file mode 100755 index 0000000..7581730 Binary files /dev/null and b/mat/advent/8/vsota differ diff --git a/mat/advent/8/vsota.c b/mat/advent/8/vsota.c new file mode 100644 index 0000000..50d4ef6 --- /dev/null +++ b/mat/advent/8/vsota.c @@ -0,0 +1,11 @@ +#include +#include +int main (int argc, char ** argv) { + unsigned long long int a = 0; + unsigned long long int i = 0; + for (i = 1000; i <= 9999; i++) { + a += i; + } + fprintf(stdout, "rezultat vsote je: %llu\n", a); + return 0; +} diff --git a/mat/domace_naloge/21/dokument.aux b/mat/domace_naloge/21/dokument.aux new file mode 100644 index 0000000..a9ad8ff --- /dev/null +++ b/mat/domace_naloge/21/dokument.aux @@ -0,0 +1,33 @@ +\relax +\providecommand\hyper@newdestlabel[2]{} +\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} +\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined +\global\let\oldcontentsline\contentsline +\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} +\global\let\oldnewlabel\newlabel +\gdef\newlabel#1#2{\newlabelxx{#1}#2} +\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} +\AtEndDocument{\ifx\hyper@anchor\@undefined +\let\contentsline\oldcontentsline +\let\newlabel\oldnewlabel +\fi} +\fi} +\global\let\hyper@last\relax +\gdef\HyperFirstAtBeginDocument#1{#1} +\providecommand\HyField@AuxAddToFields[1]{} +\providecommand\HyField@AuxAddToCoFields[2]{} +\@nameuse{bbl@beforestart} +\catcode `"\active +\providecommand \exsheets@question@property [3]{} +\providecommand \exsheets@save@number [2]{} +\providecommand \exsheets@sum@of@points [1]{} +\providecommand \exsheets@sum@of@bonus [1]{} +\providecommand \exsheets@used@id [2]{} + +\babel@aux{slovene}{} +\babel@aux{slovene}{} +\@writefile{toc}{\contentsline {section}{\numberline {1}Vaje \textit {Matematika 2}: stran 55, štiri naloge 349-361}{1}{section.1}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {2}Zaključek}{1}{section.2}\protected@file@percent } +\exsheets@sum@of@points {0} +\exsheets@sum@of@bonus {0} +\gdef \numberofquestions {0} diff --git a/mat/domace_naloge/21/dokument.log b/mat/domace_naloge/21/dokument.log new file mode 100644 index 0000000..f9e62bd --- /dev/null +++ b/mat/domace_naloge/21/dokument.log @@ -0,0 +1,1749 @@ +This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=pdflatex 2020.11.12) 18 DEC 2020 19:15 +entering extended mode + \write18 enabled. + %&-line parsing enabled. +**/home/a/Documents/sola/gimb/2/mat/domace_naloge/21/dokument.tex +(/home/a/Documents/sola/gimb/2/mat/domace_naloge/21/dokument.tex +LaTeX2e <2020-02-02> patch level 5 +L3 programming layer <2020-02-25> +(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls +Document Class: article 2019/12/20 v1.4l Standard LaTeX document class +(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo +File: size10.clo 2019/12/20 v1.4l Standard LaTeX file (size option) +) +\c@part=\count167 +\c@section=\count168 +\c@subsection=\count169 +\c@subsubsection=\count170 +\c@paragraph=\count171 +\c@subparagraph=\count172 +\c@figure=\count173 +\c@table=\count174 +\abovecaptionskip=\skip47 +\belowcaptionskip=\skip48 +\bibindent=\dimen134 +) +(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty +Package: inputenc 2018/08/11 v1.3c Input encoding file +\inpenc@prehook=\toks15 +\inpenc@posthook=\toks16 +) +(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty +Package: etoolbox 2019/09/21 v2.5h e-TeX tools for LaTeX (JAW) +\etb@tempcnta=\count175 +) +(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty +Package: hyperref 2020/01/14 v7.00d Hypertext links for LaTeX + +(/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty +Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO) +) +(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +Package: iftex 2019/11/07 v1.0c TeX engine tests +) +(/usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty +Package: pdftexcmds 2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO +) + +(/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty +Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) +) +Package pdftexcmds Info: \pdf@primitive is available. +Package pdftexcmds Info: \pdf@ifprimitive is available. +Package pdftexcmds Info: \pdfdraftmode found. +) +(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty +Package: keyval 2014/10/28 v1.15 key=value parser (DPC) +\KV@toks@=\toks17 +) +(/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty +Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO) +) +(/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty +Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) +) +(/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty +Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) +) +(/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty +Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) +) +(/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty +Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) +) +(/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty +Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) +) +(/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty +Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO) +) +\@linkdim=\dimen135 +\Hy@linkcounter=\count176 +\Hy@pagecounter=\count177 + +(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def +File: pd1enc.def 2020/01/14 v7.00d Hyperref: PDFDocEncoding definition (HO) +Now handling font encoding PD1 ... +... no UTF-8 mapping file for font encoding PD1 +) +(/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty +Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) +) +(/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty +Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO) +) +\Hy@SavedSpaceFactor=\count178 +\pdfmajorversion=\count179 +Package hyperref Info: Hyper figures OFF on input line 4547. +Package hyperref Info: Link nesting OFF on input line 4552. +Package hyperref Info: Hyper index ON on input line 4555. +Package hyperref Info: Plain pages OFF on input line 4562. +Package hyperref Info: Backreferencing OFF on input line 4567. +Package hyperref Info: Implicit mode ON; LaTeX internals redefined. +Package hyperref Info: Bookmarks ON on input line 4800. +\c@Hy@tempcnt=\count180 + +(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty +\Urlmuskip=\muskip16 +Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) +LaTeX Info: Redefining \url on input line 5159. +\XeTeXLinkMargin=\dimen136 + +(/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty +Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) + +(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty +Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO +) +)) +\Fld@menulength=\count181 +\Field@Width=\dimen137 +\Fld@charsize=\dimen138 +Package hyperref Info: Hyper figures OFF on input line 6430. +Package hyperref Info: Link nesting OFF on input line 6435. +Package hyperref Info: Hyper index ON on input line 6438. +Package hyperref Info: backreferencing OFF on input line 6445. +Package hyperref Info: Link coloring OFF on input line 6450. +Package hyperref Info: Link coloring with OCG OFF on input line 6455. +Package hyperref Info: PDF/A mode OFF on input line 6460. +LaTeX Info: Redefining \ref on input line 6500. +LaTeX Info: Redefining \pageref on input line 6504. + +(/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty +Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO) +) +\Hy@abspage=\count182 +\c@Item=\count183 +\c@Hfootnote=\count184 +) +Package hyperref Info: Driver (autodetected): hpdftex. + +(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def +File: hpdftex.def 2020/01/14 v7.00d Hyperref driver for pdfTeX + +(/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty +Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO) +) +\Fld@listcount=\count185 +\c@bookmark@seq@number=\count186 + +(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty +Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO) + +(/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty +Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) +) +Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 +86. +) +\Hy@SectionHShift=\skip49 +) +(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +Package: geometry 2020/01/02 v5.9 Page Geometry + +(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. +) +\Gm@cnth=\count187 +\Gm@cntv=\count188 +\c@Gm@tempcnt=\count189 +\Gm@bindingoffset=\dimen139 +\Gm@wd@mp=\dimen140 +\Gm@odd@mp=\dimen141 +\Gm@even@mp=\dimen142 +\Gm@layoutwidth=\dimen143 +\Gm@layoutheight=\dimen144 +\Gm@layouthoffset=\dimen145 +\Gm@layoutvoffset=\dimen146 +\Gm@dimlist=\toks18 +) +(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty +Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR) + +(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty +Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR) + +(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty +Package: trig 2016/01/03 v1.10 sin cos tan (DPC) +) +(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration +) +Package graphics Info: Driver file: pdftex.def on input line 105. + +(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def +File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex +)) +\Gin@req@height=\dimen147 +\Gin@req@width=\dimen148 +) +(/usr/share/texlive/texmf-dist/tex/generic/hologo/hologo.sty +Package: hologo 2019/12/05 v1.14 A logo collection with bookmark support (HO) +) +(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty +Package: amssymb 2013/01/14 v3.01 AMS font symbols + +(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty +Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support +\@emptytoks=\toks19 +\symAMSa=\mathgroup4 +\symAMSb=\mathgroup5 +LaTeX Font Info: Redeclaring math symbol \hbar on input line 98. +LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold' +(Font) U/euf/m/n --> U/euf/b/n on input line 106. +)) +(/usr/share/texlive/texmf-dist/tex/latex/calculator/calculator.sty +Package: calculator 2014/02/20 v.2.0 +\cctr@lengtha=\dimen149 +\cctr@lengthb=\dimen150 +\cctr@epsilon=\dimen151 +) +(/usr/share/texlive/texmf-dist/tex/latex/pgfplots/pgfplots.sty +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex) +Package: pgfplots 2018/03/28 v1.16 Data Visualization (1.16) + +(/usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty +(/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty +(/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex +\pgfutil@everybye=\toks20 +\pgfutil@tempdima=\dimen152 +\pgfutil@tempdimb=\dimen153 + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.t +ex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def +\pgfutil@abb=\box45 +(/usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty +Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS) +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/pgf.revision.tex) +Package: pgfrcs 2020/01/08 v3.1.5b (3.1.5b) +)) +Package: pgf 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty +(/usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex +Package: pgfsys 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex +\pgfkeys@pathtoks=\toks21 +\pgfkeys@temptoks=\toks22 + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.t +ex +\pgfkeys@tmptoks=\toks23 +)) +\pgf@x=\dimen154 +\pgf@y=\dimen155 +\pgf@xa=\dimen156 +\pgf@ya=\dimen157 +\pgf@xb=\dimen158 +\pgf@yb=\dimen159 +\pgf@xc=\dimen160 +\pgf@yc=\dimen161 +\pgf@xd=\dimen162 +\pgf@yd=\dimen163 +\w@pgf@writea=\write3 +\r@pgf@reada=\read2 +\c@pgf@counta=\count190 +\c@pgf@countb=\count191 +\c@pgf@countc=\count192 +\c@pgf@countd=\count193 +\t@pgf@toka=\toks24 +\t@pgf@tokb=\toks25 +\t@pgf@tokc=\toks26 +\pgf@sys@id@count=\count194 + (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg +File: pgf.cfg 2020/01/08 v3.1.5b (3.1.5b) +) +Driver file for pgf: pgfsys-pdftex.def + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def +File: pgfsys-pdftex.def 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.de +f +File: pgfsys-common-pdf.def 2020/01/08 v3.1.5b (3.1.5b) +))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code. +tex +File: pgfsyssoftpath.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgfsyssoftpath@smallbuffer@items=\count195 +\pgfsyssoftpath@bigbuffer@items=\count196 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code. +tex +File: pgfsysprotocol.code.tex 2020/01/08 v3.1.5b (3.1.5b) +)) (/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty +Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK) + +(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg +File: color.cfg 2016/01/02 v1.6 sample color configuration +) +Package xcolor Info: Driver file: pdftex.def on input line 225. +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352. +Package xcolor Info: Model `RGB' extended on input line 1364. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371. +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex +Package: pgfcore 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex +\pgfmath@dimen=\dimen164 +\pgfmath@count=\count197 +\pgfmath@box=\box46 +\pgfmath@toks=\toks27 +\pgfmath@stack@operand=\toks28 +\pgfmath@stack@operation=\toks29 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code +.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonomet +ric.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.cod +e.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison +.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code. +tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code +.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code. +tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerari +thmetics.code.tex))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex +\c@pgfmathroundto@lastzeros=\count198 +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.te +x +File: pgfcorepoints.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgf@picminx=\dimen165 +\pgf@picmaxx=\dimen166 +\pgf@picminy=\dimen167 +\pgf@picmaxy=\dimen168 +\pgf@pathminx=\dimen169 +\pgf@pathmaxx=\dimen170 +\pgf@pathminy=\dimen171 +\pgf@pathmaxy=\dimen172 +\pgf@xx=\dimen173 +\pgf@xy=\dimen174 +\pgf@yx=\dimen175 +\pgf@yy=\dimen176 +\pgf@zx=\dimen177 +\pgf@zy=\dimen178 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct. +code.tex +File: pgfcorepathconstruct.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgf@path@lastx=\dimen179 +\pgf@path@lasty=\dimen180 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code +.tex +File: pgfcorepathusage.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgf@shorten@end@additional=\dimen181 +\pgf@shorten@start@additional=\dimen182 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.te +x +File: pgfcorescopes.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgfpic=\box47 +\pgf@hbox=\box48 +\pgf@layerbox@main=\box49 +\pgf@picture@serial@count=\count199 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.c +ode.tex +File: pgfcoregraphicstate.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgflinewidth=\dimen183 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformation +s.code.tex +File: pgfcoretransformations.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgf@pt@x=\dimen184 +\pgf@pt@y=\dimen185 +\pgf@pt@temp=\dimen186 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex +File: pgfcorequick.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.t +ex +File: pgfcoreobjects.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing +.code.tex +File: pgfcorepathprocessing.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.te +x +File: pgfcorearrows.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgfarrowsep=\dimen187 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex +File: pgfcoreshade.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgf@max=\dimen188 +\pgf@sys@shading@range@num=\count266 +\pgf@shadingcount=\count267 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex +File: pgfcoreimage.code.tex 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code. +tex +File: pgfcoreexternal.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgfexternal@startupbox=\box50 +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.te +x +File: pgfcorelayers.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.c +ode.tex +File: pgfcoretransparency.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code. +tex +File: pgfcorepatterns.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex +File: pgfcorerdf.code.tex 2020/01/08 v3.1.5b (3.1.5b) +))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex +File: pgfmoduleshapes.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgfnodeparttextbox=\box51 +) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex +File: pgfmoduleplot.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65 +.sty +Package: pgfcomp-version-0-65 2020/01/08 v3.1.5b (3.1.5b) +\pgf@nodesepstart=\dimen189 +\pgf@nodesepend=\dimen190 +) +(/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18 +.sty +Package: pgfcomp-version-1-18 2020/01/08 v3.1.5b (3.1.5b) +)) (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty +(/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) +(/usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex +Package: pgffor 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex) +\pgffor@iter=\dimen191 +\pgffor@skip=\dimen192 +\pgffor@stack=\toks30 +\pgffor@toks=\toks31 +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex +Package: tikz 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers +.code.tex +File: pgflibraryplothandlers.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgf@plot@mark@count=\count268 +\pgfplotmarksize=\dimen193 +) +\tikz@lastx=\dimen194 +\tikz@lasty=\dimen195 +\tikz@lastxsaved=\dimen196 +\tikz@lastysaved=\dimen197 +\tikz@lastmovetox=\dimen198 +\tikz@lastmovetoy=\dimen199 +\tikzleveldistance=\dimen256 +\tikzsiblingdistance=\dimen257 +\tikz@figbox=\box52 +\tikz@figbox@bg=\box53 +\tikz@tempbox=\box54 +\tikz@tempbox@bg=\box55 +\tikztreelevel=\count269 +\tikznumberofchildren=\count270 +\tikznumberofcurrentchild=\count271 +\tikz@fig@count=\count272 + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex +File: pgfmodulematrix.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgfmatrixcurrentrow=\count273 +\pgfmatrixcurrentcolumn=\count274 +\pgf@matrix@numberofcolumns=\count275 +) +\tikz@expandcount=\count276 + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarytopaths.code.tex +File: tikzlibrarytopaths.code.tex 2020/01/08 v3.1.5b (3.1.5b) +))) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex +\t@pgfplots@toka=\toks32 +\t@pgfplots@tokb=\toks33 +\t@pgfplots@tokc=\toks34 +\pgfplots@tmpa=\dimen258 +\c@pgfplots@coordindex=\count277 +\c@pgfplots@scanlineindex=\count278 + +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code +.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.t +ex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldp +gfsupp_loader.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotslists +tructure.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotslists +tructureext.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray +.code.tex +\c@pgfplotsarray@tmp=\count279 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatri +x.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshare +d.code.tex +\c@pgfplotstable@counta=\count280 +\t@pgfplotstable@a=\toks35 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque +.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.te +x +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.co +de.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code +.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.sur +fshading.code.tex +\c@pgfplotslibrarysurf@no=\count281 + +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surf +shading.pgfsys-pdftex.def))) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code. +tex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.t +ex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.t +ex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.cod +e.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code. +tex))) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.cod +e.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex +) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex +) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.cod +e.tex +\pgfdecoratedcompleteddistance=\dimen259 +\pgfdecoratedremainingdistance=\dimen260 +\pgfdecoratedinputsegmentcompleteddistance=\dimen261 +\pgfdecoratedinputsegmentremainingdistance=\dimen262 +\pgf@decorate@distancetomove=\dimen263 +\pgf@decorate@repeatstate=\count282 +\pgfdecorationsegmentamplitude=\dimen264 +\pgfdecorationsegmentlength=\dimen265 +) +\tikz@lib@dec@box=\box56 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.pathmorphing.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.pathmorphing.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.pathreplacing.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.pathreplacing.code.tex)) +\pgfplots@numplots=\count283 +\pgfplots@xmin@reg=\dimen266 +\pgfplots@xmax@reg=\dimen267 +\pgfplots@ymin@reg=\dimen268 +\pgfplots@ymax@reg=\dimen269 +\pgfplots@zmin@reg=\dimen270 +\pgfplots@zmax@reg=\dimen271 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryplotmarks.code.tex +File: tikzlibraryplotmarks.code.tex 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.co +de.tex +File: pgflibraryplotmarks.code.tex 2020/01/08 v3.1.5b (3.1.5b) +))) (/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty +Package: enumitem 2019/06/20 v3.9 Customized lists +\labelindent=\skip50 +\enit@outerparindent=\dimen272 +\enit@toks=\toks36 +\enit@inbox=\box57 +\enit@count@id=\count284 +\enitdp@description=\count285 +) +(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx.sty +(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty +Package: expl3 2020-02-25 L3 programming layer (loader) + +(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def +File: l3backend-pdfmode.def 2020-02-23 L3 backend support: PDF mode +\l__kernel_color_stack_int=\count286 +\l__pdf_internal_box=\box58 +)) +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty +Package: xparse 2020-02-25 L3 Experimental document command parser +\l__xparse_current_arg_int=\count287 +\g__xparse_grabber_int=\count288 +\l__xparse_m_args_int=\count289 +\l__xparse_v_nesting_int=\count290 +) +Package: siunitx 2020/02/25 v2.8b A comprehensive (SI) units package + +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty +Package: amstext 2000/06/29 v2.01 AMS text + +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty +File: amsgen.sty 1999/11/30 v2.0 generic functions +\@emptytoks=\toks37 +\ex@=\dimen273 +)) +(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty +Package: array 2019/08/31 v2.4l Tabular extension package (FMi) +\col@sep=\dimen274 +\ar@mcellbox=\box59 +\extrarowheight=\dimen275 +\NC@list=\toks38 +\extratabsurround=\skip51 +\backup@length=\skip52 +\ar@cellbox=\box60 +) +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty +Package: l3keys2e 2020-02-25 LaTeX2e option processing using LaTeX3 keys +) +\l__siunitx_tmp_box=\box61 +\l__siunitx_tmp_dim=\dimen276 +\l__siunitx_tmp_int=\count291 +\l__siunitx_number_mantissa_length_int=\count292 +\l__siunitx_number_uncert_length_int=\count293 +\l__siunitx_round_int=\count294 +\l__siunitx_process_decimal_int=\count295 +\l__siunitx_process_uncertainty_int=\count296 +\l__siunitx_process_fixed_int=\count297 +\l__siunitx_process_integer_min_int=\count298 +\l__siunitx_process_precision_int=\count299 +\l__siunitx_group_min_int=\count300 +\l__siunitx_angle_marker_box=\box62 +\l__siunitx_angle_unit_box=\box63 +\l__siunitx_angle_marker_dim=\dimen277 +\l__siunitx_angle_unit_dim=\dimen278 +\l__siunitx_unit_int=\count301 +\l__siunitx_unit_denominator_int=\count302 +\l__siunitx_unit_numerator_int=\count303 +\l__siunitx_unit_prefix_int=\count304 +\l__siunitx_unit_prefix_base_int=\count305 +\l__siunitx_unit_prefix_gram_int=\count306 +\l__siunitx_number_product_int=\count307 +\c__siunitx_one_fill_skip=\skip53 +\l__siunitx_table_unit_align_skip=\skip54 +\l__siunitx_table_exponent_dim=\dimen279 +\l__siunitx_table_integer_dim=\dimen280 +\l__siunitx_table_mantissa_dim=\dimen281 +\l__siunitx_table_marker_dim=\dimen282 +\l__siunitx_table_result_dim=\dimen283 +\l__siunitx_table_uncert_dim=\dimen284 +\l__siunitx_table_fill_pre_dim=\dimen285 +\l__siunitx_table_fill_post_dim=\dimen286 +\l__siunitx_table_fill_mid_dim=\dimen287 +\l__siunitx_table_pre_box=\box64 +\l__siunitx_table_post_box=\box65 +\l__siunitx_table_mantissa_box=\box66 +\l__siunitx_table_result_box=\box67 +\l__siunitx_table_number_align_skip=\skip55 +\l__siunitx_table_text_align_skip=\skip56 + +(/usr/share/texlive/texmf-dist/tex/latex/translator/translator.sty +Package: translator 2019-05-31 v1.12a Easy translation of strings in LaTeX +)) +(/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty +Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi) +\c@tracingmulticols=\count308 +\mult@box=\box68 +\multicol@leftmargin=\dimen288 +\c@unbalance=\count309 +\c@collectmore=\count310 +\doublecol@number=\count311 +\multicoltolerance=\count312 +\multicolpretolerance=\count313 +\full@width=\dimen289 +\page@free=\dimen290 +\premulticols=\dimen291 +\postmulticols=\dimen292 +\multicolsep=\skip57 +\multicolbaselineskip=\skip58 +\partial@page=\box69 +\last@line=\box70 +\maxbalancingoverflow=\dimen293 +\mult@rightbox=\box71 +\mult@grightbox=\box72 +\mult@gfirstbox=\box73 +\mult@firstbox=\box74 +\@tempa=\box75 +\@tempa=\box76 +\@tempa=\box77 +\@tempa=\box78 +\@tempa=\box79 +\@tempa=\box80 +\@tempa=\box81 +\@tempa=\box82 +\@tempa=\box83 +\@tempa=\box84 +\@tempa=\box85 +\@tempa=\box86 +\@tempa=\box87 +\@tempa=\box88 +\@tempa=\box89 +\@tempa=\box90 +\@tempa=\box91 +\@tempa=\box92 +\@tempa=\box93 +\@tempa=\box94 +\@tempa=\box95 +\@tempa=\box96 +\@tempa=\box97 +\@tempa=\box98 +\@tempa=\box99 +\@tempa=\box100 +\@tempa=\box101 +\@tempa=\box102 +\@tempa=\box103 +\@tempa=\box104 +\@tempa=\box105 +\@tempa=\box106 +\@tempa=\box107 +\@tempa=\box108 +\@tempa=\box109 +\@tempa=\box110 +\@tempa=\box111 +\c@minrows=\count314 +\c@columnbadness=\count315 +\c@finalcolumnbadness=\count316 +\last@try=\dimen294 +\multicolovershoot=\dimen295 +\multicolundershoot=\dimen296 +\mult@nat@firstbox=\box112 +\colbreak@box=\box113 +\mc@col@check@num=\count317 +) +(/usr/share/texlive/texmf-dist/tex/latex/tabularcalc/tabularcalc.sty +Package: tabularcalc 2009/04/20 v0.2 Compute formulas in tables + +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp.sty +Package: fp 1995/04/02 + +`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich +(/usr/share/texlive/texmf-dist/tex/latex/fp/defpattern.sty +Package: defpattern 1994/10/12 +\actioncount=\count318 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-basic.sty +Package: fp-basic 1996/05/13 +\FP@xs=\count319 +\FP@xia=\count320 +\FP@xib=\count321 +\FP@xfa=\count322 +\FP@xfb=\count323 +\FP@rega=\count324 +\FP@regb=\count325 +\FP@regs=\count326 +\FP@times=\count327 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-addons.sty +Package: fp-addons 1995/03/15 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-snap.sty +Package: fp-snap 1995/04/05 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-exp.sty +Package: fp-exp 1995/04/03 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-trigo.sty +Package: fp-trigo 1995/04/14 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-pas.sty +Package: fp-pas 1994/08/29 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-random.sty +Package: fp-random 1995/02/23 +\FPseed=\count328 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eqn.sty +Package: fp-eqn 1995/04/03 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-upn.sty +Package: fp-upn 1996/10/21 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eval.sty +Package: fp-eval 1995/04/03 +)) +(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty +(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex +\integerpart=\count329 +\decimalpart=\count330 +) +Package: xstring 2019/02/06 v1.83 String manipulations (CT) +) +(/usr/share/texlive/texmf-dist/tex/latex/numprint/numprint.sty +Package: numprint 2012/08/20 v1.39 Print numbers (HH) +\c@nprt@mantissa@digitsbefore=\count331 +\c@nprt@mantissa@digitsafter=\count332 +\c@nprt@exponent@digitsbefore=\count333 +\c@nprt@exponent@digitsafter=\count334 +\nprt@digitwidth=\skip59 +\nprt@sepwidth=\skip60 +\nprt@decimalwidth=\skip61 +\nprt@blockwidth=\skip62 +\nprt@digittoks=\toks39 +\nprt@pretoks=\toks40 +\nprt@posttoks=\toks41 +\nprt@thisdigit=\count335 +\nprt@curpos=\count336 +\nprt@rndpos=\count337 +\c@nprt@digitsfirstblock=\count338 +\c@nprt@blockcnt=\count339 +\c@nprt@cntprint=\count340 + +No configuration file `numprint.cfg' found.) +\tccol=\count341 +\tclin=\count342 +\tc@export=\write4 +) +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty +Package: amsmath 2020/01/20 v2.17e AMS math features +\@mathmargin=\skip63 + +For additional information on amsmath, use the `?' option. +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty +Package: amsbsy 1999/11/29 v1.2d Bold Symbols +\pmbraise@=\dimen297 +) +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty +Package: amsopn 2016/03/08 v2.02 operator names +) +\inf@bad=\count343 +LaTeX Info: Redefining \frac on input line 227. +\uproot@=\count344 +\leftroot@=\count345 +LaTeX Info: Redefining \overline on input line 389. +\classnum@=\count346 +\DOTSCASE@=\count347 +LaTeX Info: Redefining \ldots on input line 486. +LaTeX Info: Redefining \dots on input line 489. +LaTeX Info: Redefining \cdots on input line 610. +\Mathstrutbox@=\box114 +\strutbox@=\box115 +\big@size=\dimen298 +LaTeX Font Info: Redeclaring font encoding OML on input line 733. +LaTeX Font Info: Redeclaring font encoding OMS on input line 734. +\macc@depth=\count348 +\c@MaxMatrixCols=\count349 +\dotsspace@=\muskip17 +\c@parentequation=\count350 +\dspbrk@lvl=\count351 +\tag@help=\toks42 +\row@=\count352 +\column@=\count353 +\maxfields@=\count354 +\andhelp@=\toks43 +\eqnshift@=\dimen299 +\alignsep@=\dimen300 +\tagshift@=\dimen301 +\tagwidth@=\dimen302 +\totwidth@=\dimen303 +\lineht@=\dimen304 +\@envbody=\toks44 +\multlinegap=\skip64 +\multlinetaggap=\skip65 +\mathdisplay@stack=\toks45 +LaTeX Info: Redefining \[ on input line 2859. +LaTeX Info: Redefining \] on input line 2860. +) +(/usr/share/texlive/texmf-dist/tex/latex/float/float.sty +Package: float 2001/11/08 v1.3d Float enhancements (AL) +\c@float@type=\count355 +\float@exts=\toks46 +\float@box=\box116 +\@float@everytoks=\toks47 +\@floatcapt=\box117 +) +(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.sty +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty +Package: xtemplate 2020-02-25 L3 Experimental prototype document functions +\l__xtemplate_tmp_dim=\dimen305 +\l__xtemplate_tmp_int=\count356 +\l__xtemplate_tmp_muskip=\muskip18 +\l__xtemplate_tmp_skip=\skip66 +) +Package: tasks 2020/01/11 v1.1a horizontally columned lists +\g__tasks_total_items_int=\count357 +\l__tasks_columns_int=\count358 +\g__tasks_rows_int=\count359 +\g__tasks_current_col_num_int=\count360 +\g__tasks_current_row_num_int=\count361 +\l__tasks_item_columns_int=\count362 +\g__tasks_env_int=\count363 +\l__tasks_start_int=\count364 +\l__tasks_item_indent_dim=\dimen306 +\l__tasks_item_default_indent_dim=\dimen307 +\l__tasks_item_width_dim=\dimen308 +\l__tasks_label_width_dim=\dimen309 +\l__tasks_label_default_width_dim=\dimen310 +\l__tasks_label_offset_dim=\dimen311 +\l__tasks_label_default_offset_dim=\dimen312 +\l__tasks_column_sep_dim=\dimen313 +\l__tasks_correction_dim=\dimen314 +\l__tasks_full_width_dim=\dimen315 +\l__tasks_after_item_skip=\skip67 +\l__tasks_custom_after_item_skip=\skip68 +\l__tasks_before_list_skip=\skip69 +\l__tasks_after_list_skip=\skip70 +\l__tasks_item_coffin=\box118 +\l__tasks_label_coffin=\box119 +\c@task=\count365 +\l__tasks_tmpa_int=\count366 +\l__tasks_tmpb_int=\count367 +\l__tasks_tmpa_coffin=\box120 +\l__tasks_tmpa_box=\box121 + +Package xtemplate Info: Declaring object type 'tasks' taking 3 argument(s) on +(xtemplate) line 426. + + +(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.cfg)) +(/usr/share/texlive/texmf-dist/tex/latex/filecontents/filecontents.sty +Package: filecontents 2019/09/20 v1.5 Create an external file from within a LaT +eX document + + +Package filecontents Warning: This package is obsolete. Disabling it and +(filecontents) passing control to the filecontents environment +(filecontents) defined by the LaTeX kernel. + +) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty +Package: textcomp 2020/02/02 v2.0n Standard LaTeX package +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-euclide.sty +2020/01/24 3.02c tkz-euclide.sty +Package: tkz-euclide 2020/01/24 3.02c for euclidan geometry +(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.sty +2020/01/24 3.02c tkz-base.sty +Package: tkz-base 2020/01/24 3.02c tkz-base + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryangles.code.tex +File: tikzlibraryangles.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryarrows.code.tex +File: tikzlibraryarrows.code.tex 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code. +tex +File: pgflibraryarrows.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\arrowsize=\dimen316 +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.meta. +code.tex +File: pgflibraryarrows.meta.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgfarrowinset=\dimen317 +\pgfarrowlength=\dimen318 +\pgfarrowwidth=\dimen319 +\pgfarrowlinewidth=\dimen320 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarybabel.code.tex +File: tikzlibrarybabel.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarycalc.code.tex +File: tikzlibrarycalc.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.markings.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.markings.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.shapes.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.shapes.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.text.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.text.code.tex +\pgf@lib@dec@text@box=\box122 +) +\tikz@lib@dec@te@box=\box123 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryintersections.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryintersection +s.code.tex +\pgf@intersect@solutions=\count368 +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarypatterns.code.tex +File: tikzlibrarypatterns.code.tex 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibrarypatterns.cod +e.tex +File: pgflibrarypatterns.code.tex 2020/01/08 v3.1.5b (3.1.5b) +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarypositioning.code.tex +File: tikzlibrarypositioning.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryquotes.code.tex +File: tikzlibraryquotes.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryshadows.code.tex +File: tikzlibraryshadows.code.tex 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryfadings.code.tex +File: tikzlibraryfadings.code.tex 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code +.tex +File: pgflibraryfadings.code.tex 2020/01/08 v3.1.5b (3.1.5b) +))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryshapes.misc.code.tex +File: tikzlibraryshapes.misc.code.tex 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshape +s.misc.code.tex +File: pgflibraryshapes.misc.code.tex 2020/01/08 v3.1.5b (3.1.5b) +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarysnakes.code.tex +File: tikzlibrarysnakes.code.tex 2020/01/08 v3.1.5b (3.1.5b) + + +Package pgf Warning: Snakes have been superseded by decorations. Please use the + decoration libraries instead of the snakes library on input line 14. + +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarythrough.code.tex +File: tikzlibrarythrough.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfp/xfp.sty +Package: xfp 2020-02-25 L3 Floating point unit +) +\tkzRadius=\dimen321 +\tkzLength=\dimen322 +\tkz@radi=\dimen323 +\tkz@ax=\dimen324 +\tkz@ay=\dimen325 +\tkz@bx=\dimen326 +\tkz@by=\dimen327 +\tkz@cx=\dimen328 +\tkz@cy=\dimen329 +\tkz@dx=\dimen330 +\tkz@dy=\dimen331 +\tkz@tax=\dimen332 +\tkz@tay=\dimen333 +\tkz@tbx=\dimen334 +\tkz@tby=\dimen335 +\tkz@tcx=\dimen336 +\tkz@tcy=\dimen337 +\tkz@tdx=\dimen338 +\tkz@tdy=\dimen339 +\tkz@cntmk=\count369 + +Local configuration file tkz-base.cfg found and used +(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.cfg +2020/02/04 3.02c tkz-base.cfg +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex +2020/01/24 3.02c tkz-tools-utilities.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex +2020/01/24 3.02c tkz-lib-symbols.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex +2020/01/24 3.02c tkz-tools-base.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex +2020/01/24 3.02c tkz-tools-utilities.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-math.tex +2020/01/24 3.02c tkz-tools-math.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex +2020/01/24 3.02c tkz-tools-text.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex +2020/01/24 3.02c tkz-obj-BB.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex +2020/01/24 3.02c tkz-tools-arith.tex +File: tkz-tool-arith.tex tkz-tool-arith 3.02 c +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex +2020/01/24 3.02c tkz-tools-print.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex +2020/01/24 3.02c tkz-tools-misc.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex +2020/01/24 3.02c tkz-obj-axes.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex +2020/01/24 3.02c tkz-obj-grids.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex +2020/01/24 3.02c tkz-obj-marks.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex +2020/01/24 3.02c tkz-obj-points.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex +2020/01/24 3.02c tkz-obj-rep.tex +)) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-intersections.te +x +2020/01/24 3.02c tkz-tools-intersections.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-angles.tex +2020/01/24 3.02c tkz-tools-angles.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-angles.tex +2020/01/24 3.02c tkz-tool-eu-angles.tex +\tkz@arcsize=\dimen340 +\tkz@fillsize=\dimen341 +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-arcs.tex +2020/01/24 3.02c tkz-obj-eu-arcs.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-compass.tex +2020/01/24 3.02c tkz-obj-eu-compass.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-circles.tex +2020/01/24 3.02c tkz-obj-eu-circles.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-circles.te +x +2020/01/24 3.02c tkz-obj-eu-draw-circles.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-lines.tex +2020/01/24 3.02c tkz-obj-eu-lines.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-lines.tex +2020/01/24 3.02c tkz-obj-eu-draw-lines.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points.tex +2020/01/24 3.02c tkz-obj-eu-points.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-by.tex +2020/01/24 3.02c tkz-tools-eu-points-by.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-rnd.tex +2020/01/24 3.02c tkz-obj-eu-points-rnd.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-with.tex +2020/01/24 3.02c tkz-obj-eu-points-with.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-polygons.t +ex +2020/01/24 3.02c tkz-obj-eu-polygons.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-polygons.tex +2020/01/24 3.02c tkz-obj-eu-polygons.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-protractor.tex +2020/01/24 3.02c tkz-obj-eu-protractor.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-sectors.tex +2020/01/24 3.02c tkz-obj-eu-sectors.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-show.tex +2020/01/24 3.02c tkz-obj-eu-show.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-triangles.tex +2020/01/24 3.02c tkz-obj-eu-triangles.tex +)) (/usr/share/texlive/texmf-dist/tex/latex/dirtytalk/dirtytalk.sty +Package: dirtytalk 2010/11/21 A package making "quoting" easier + +(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty +Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) +) +\c@dirtytalk@qdepth=\count370 +) +(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.sty +Package: csquotes 2019-12-06 v5.2j context-sensitive quotations (JAW) +\csq@reset=\count371 +\csq@gtype=\count372 +\csq@glevel=\count373 +\csq@qlevel=\count374 +\csq@maxlvl=\count375 +\csq@tshold=\count376 +\csq@ltx@everypar=\toks48 + +(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.def +File: csquotes.def 2019-12-06 v5.2j csquotes generic definitions (JAW) +) +Package csquotes Info: Trying to load configuration file 'csquotes.cfg'... +Package csquotes Info: ... configuration file loaded successfully. + +(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.cfg +File: csquotes.cfg +)) +(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty +\lst@mode=\count377 +\lst@gtempboxa=\box124 +\lst@token=\toks49 +\lst@length=\count378 +\lst@currlwidth=\dimen342 +\lst@column=\count379 +\lst@pos=\count380 +\lst@lostspace=\dimen343 +\lst@width=\dimen344 +\lst@newlines=\count381 +\lst@lineno=\count382 +\lst@maxwidth=\dimen345 + +(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty +File: lstmisc.sty 2019/09/10 1.8c (Carsten Heinz) +\c@lstnumber=\count383 +\lst@skipnumbers=\count384 +\lst@framebox=\box125 +) +(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg +File: listings.cfg 2019/09/10 1.8c listings configuration +)) +Package: listings 2019/09/10 1.8c (Carsten Heinz) + +(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime.sty +Package: datetime 2015/03/20 v2.60 Date Time Package + +(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fmtcount.sty +Package: fmtcount 2020/01/30 v3.07 + +(/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty +Package: xkeyval 2014/12/03 v2.7a package option processing (HA) + +(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex +(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex +\XKV@toks=\toks50 +\XKV@tempa@toks=\toks51 +) +\XKV@depth=\count385 +File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) +)) +(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcprefix.sty +Package: fcprefix 2012/09/28 + +(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcnumparser.sty +Package: fcnumparser 2017/06/15 +\fc@digit@counter=\count386 +)) +\c@padzeroesN=\count387 +\fc@tmpcatcode=\count388 +\@DT@modctr=\count389 +\@ordinalctr=\count390 +\@orgargctr=\count391 +\@strctr=\count392 +\@tmpstrctr=\count393 +\@DT@loopN=\count394 +\@DT@X=\count395 +) +(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime-defaults.sty +Package: datetime-defaults 2013/09/10 +) +\@day=\count396 +\@month=\count397 +\@year=\count398 +\c@HOUR=\count399 +\c@HOURXII=\count400 +\c@MINUTE=\count401 +\c@TOHOUR=\count402 +\c@TOMINUTE=\count403 +\c@SECOND=\count404 +\currenthour=\count405 +\currentminute=\count406 +\currentsecond=\count407 +Package datetime Info: No datetime.cfg file found, using default settings on in +put line 308. +\@dtctr=\count408 +\dayofyear=\count409 +\dayofweek=\count410 +LaTeX Info: Redefining \today on input line 736. +\dt@a=\toks52 +\dt@b=\toks53 +) +(/usr/share/texlive/texmf-dist/tex/latex/ccicons/ccicons.sty +Package: ccicons 2017/10/30 v1.6 LaTeX support for Creative Commons icons +) +(/usr/share/texlive/texmf-dist/tex/latex/chemformula/chemformula.sty +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfrac/xfrac.sty +Package: xfrac 2020-02-25 L3 Experimental split-level fractions +\l__xfrac_slash_box=\box126 +\l__xfrac_tmp_box=\box127 +\l__xfrac_denominator_bot_sep_dim=\dimen346 +\l__xfrac_numerator_bot_sep_dim=\dimen347 +\l__xfrac_numerator_top_sep_dim=\dimen348 +\l__xfrac_slash_left_sep_dim=\dimen349 +\l__xfrac_slash_right_sep_dim=\dimen350 +\l__xfrac_slash_left_muskip=\muskip19 +\l__xfrac_slash_right_muskip=\muskip20 + +Package xtemplate Info: Declaring object type 'xfrac' taking 3 argument(s) on +(xtemplate) line 80. + +) +(/usr/share/texlive/texmf-dist/tex/latex/units/nicefrac.sty +Package: nicefrac 1998/08/04 v0.9b Nice fractions +\L@UnitsRaiseDisplaystyle=\skip71 +\L@UnitsRaiseTextstyle=\skip72 +\L@UnitsRaiseScriptstyle=\skip73 +) +(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlfile.sty +Package: scrlfile 2020/01/24 v3.29 KOMA-Script package (loading files) +) +Package: chemformula 2020/02/01 v4.15i typeset chemical compounds and reactions + (CN) +\l__chemformula_tmpa_dim=\dimen351 +\l__chemformula_tmpb_dim=\dimen352 +\l__chemformula_tmpc_dim=\dimen353 +\l__chemformula_tmpa_int=\count411 +\l__chemformula_tmpb_int=\count412 +\l__chemformula_tmpc_int=\count413 +\l__chemformula_tmpa_box=\box128 +\l__chemformula_tmpb_box=\box129 +\l__chemformula_arrow_length_dim=\dimen354 +\l__chemformula_arrow_label_height_dim=\dimen355 +\l__chemformula_arrow_label_offset_dim=\dimen356 +\l__chemformula_arrow_minimum_length_dim=\dimen357 +\l__chemformula_arrow_shortage_dim=\dimen358 +\l__chemformula_arrow_offset_dim=\dimen359 +\l__chemformula_arrow_yshift_dim=\dimen360 +\l__chemformula_radical_radius_dim=\dimen361 +\l__chemformula_radical_hshift_dim=\dimen362 +\l__chemformula_radical_vshift_dim=\dimen363 +\l__chemformula_radical_space_dim=\dimen364 +\l__chemformula_arrow_head_dim=\dimen365 +\l__chemformula_name_dim=\dimen366 +\l__chemformula_adduct_space_dim=\dimen367 +\l__chemformula_charge_shift_dim=\dimen368 +\l__chemformula_subscript_shift_dim=\dimen369 +\l__chemformula_superscript_shift_dim=\dimen370 +\l__chemformula_subscript_dim=\dimen371 +\l__chemformula_superscript_dim=\dimen372 +\l__chemformula_bond_dim=\dimen373 +\l__chemformula_bond_space_dim=\dimen374 +\l__chemformula_elspec_pair_distance_dim=\dimen375 +\l__chemformula_elspec_pair_line_length_dim=\dimen376 +\l__chemformula_elspec_pair_width_dim=\dimen377 +\l__chemformula_kroegervink_positive_radius_dim=\dimen378 +\l__chemformula_kroegervink_positive_hshift_dim=\dimen379 +\l__chemformula_kroegervink_positive_vshift_dim=\dimen380 +\l__chemformula_kroegervink_positive_space_dim=\dimen381 +\l__chemformula_stoich_space_skip=\skip74 +\l__chemformula_math_space_skip=\skip75 +\l__chemformula_count_tokens_int=\count414 +\g__chemformula_lewis_int=\count415 +\l__chemformula_arrow_arg_i_box=\box130 +\l__chemformula_arrow_arg_ii_box=\box131 +\l__chemformula_superscript_box=\box132 +\l__chemformula_subscript_box=\box133 +\l__chemformula_additions_symbol_space_skip=\skip76 +\l__chemformula_plus_space_skip=\skip77 +\l__chemformula_minus_space_skip=\skip78 +) +(/usr/share/texlive/texmf-dist/tex/latex/was/gensymb.sty +Package: gensymb 2003/07/02 v1.0 (WaS) +) +(/usr/share/texlive/texmf-dist/tex/generic/ulem/ulem.sty +\UL@box=\box134 +\UL@hyphenbox=\box135 +\UL@skip=\skip79 +\UL@hook=\toks54 +\UL@height=\dimen382 +\UL@pe=\count416 +\UL@pixel=\dimen383 +\ULC@box=\box136 +Package: ulem 2019/11/18 +\ULdepth=\dimen384 +) +(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty +Package: babel 2020/02/28 3.41 The Babel package + +(/usr/share/texlive/texmf-dist/tex/generic/babel/switch.def +File: switch.def 2020/02/28 3.41 Babel switching mechanism +) +(/usr/share/texlive/texmf-dist/tex/generic/babel-slovenian/slovene.ldf +Language: slovene 2005/03/31 v1.2m Slovene support from the babel system + +(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def +File: babel.def 2020/02/28 3.41 Babel common definitions +\babel@savecnt=\count417 +\U@D=\dimen385 + +(/usr/share/texlive/texmf-dist/tex/generic/babel/txtbabel.def) +\bbl@readstream=\read3 +\bbl@dirlevel=\count418 +) +Package babel Info: Making " an active character on input line 79. +)) +(/usr/share/texlive/texmf-dist/tex/latex/cancel/cancel.sty +Package: cancel 2013/04/12 v2.2 Cancel math terms +) +(/usr/share/texlive/texmf-dist/tex/latex/tools/tabularx.sty +Package: tabularx 2020/01/15 v2.11c `tabularx' package (DPC) +\TX@col@width=\dimen386 +\TX@old@table=\dimen387 +\TX@old@col=\dimen388 +\TX@target=\dimen389 +\TX@delta=\dimen390 +\TX@cols=\count419 +\TX@ftn=\toks55 +) +(/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty +Package: colortbl 2020/01/04 v1.0e Color table columns (DPC) +\everycr=\toks56 +\minrowclearance=\skip80 +) +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets.sty +Package: exsheets 2019/09/30 v0.21k Yet another package for the creation of exe +rcise sheets and exams. +\l__exsheets_tmpa_int=\count420 +\l__exsheets_tmpb_int=\count421 +\l__exsheets_tmpc_int=\count422 +\l__exsheets_tmpd_int=\count423 +\l__exsheets_tmpe_int=\count424 +\g__exsheets_tmpa_int=\count425 +\l__exsheets_tmpa_dim=\dimen391 +\l__exsheets_tmpb_dim=\dimen392 + +(/usr/share/texlive/texmf-dist/tex/latex/environ/environ.sty +Package: environ 2014/05/04 v0.3 A new way to define environments + +(/usr/share/texlive/texmf-dist/tex/latex/trimspaces/trimspaces.sty +Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list +)) +\l__exsheets_variations_int=\count426 +\g__exsheets_questions_id_int=\count427 +\g__exsheets_questions_used_int=\count428 +\l__exsheets_include_random_int=\count429 +\l__exsheets_questions_set_int=\count430 +\g__exsheets_select_random_int=\count431 +\g__exsheets_selection_number_int=\count432 +\l__exsheets_counter_ch_int=\count433 +\l__exsheets_current_ch_int=\count434 +\l__exsheets_counter_sec_int=\count435 +\l__exsheets_current_sec_int=\count436 +\l_exsheets_counter_qu_int=\count437 +\l__exsheets_questions_skip_below_dim=\dimen393 +\l__exsheets_solutions_skip_below_dim=\dimen394 +\l__exsheets_blank_dim=\dimen395 +\l__exsheets_blank_line_increment_dim=\dimen396 +\l__exsheets_blank_line_minimum_length_dim=\dimen397 +\l__exsheets_blank_box=\box137 + +(/usr/share/texlive/texmf-dist/tex/latex/cntformats/cntformats.sty +Package: cntformats 2014/07/20 v0.7 A different way to read counters. (CN) + +(/usr/share/texlive/texmf-dist/tex/latex/cnltx/cnltx-base.sty +Package: cnltx-base 2019/11/01 v0.15 LaTeX tools and documenting facilities (CN +) + +(/usr/share/texlive/texmf-dist/tex/latex/pgfopts/pgfopts.sty +Package: pgfopts 2014/07/10 v2.1a LaTeX package options with pgfkeys +\pgfopts@list@add@a@toks=\toks57 +\pgfopts@list@add@b@toks=\toks58 +) +\c@cnltx@tmpa=\count438 +\c@cnltx@tmpb=\count439 +\c@cnltx@tmpc=\count440 +\cnltx@tmpa@length=\skip81 +\cnltx@tmpb@length=\skip82 +\cnltx@tmpc@length=\skip83 +)) +\c@question=\count441 + +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_headings.def +File: exsheets_headings.def 2019/09/30 v0.21k ExSheets headings object +\l__exsheets_heading_above_dim=\dimen398 +\l__exsheets_heading_below_dim=\dimen399 +\l__exsheets_heading_main_coffin=\box138 +\l__exsheets_heading_pre_coffin=\box139 +\l__exsheets_heading_post_coffin=\box140 +\l__exsheets_heading_title_coffin=\box141 +\l__exsheets_heading_number_coffin=\box142 +\l__exsheets_heading_points_coffin=\box143 +\l__exsheets_heading_subtitle_coffin=\box144 + +Package xtemplate Info: Declaring object type 'exsheets-heading' taking 5 +(xtemplate) argument(s) on line 184. + +) +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_headings.cfg +File: exsheets_headings.cfg 2019/09/30 v0.21k ExSheets headings instances +) +(/usr/share/texlive/texmf-dist/tex/latex/translations/translations.sty +Package: translations 2018/02/28 v1.8 internationalization of LaTeX2e packages +(CN) +)) +(/usr/share/texlive/texmf-dist/tex/latex/harpoon/harpoon.sty +Package: harpoon 1994/11/02 Harpoon drawing package by Tobias Kuipers +\argwd=\skip84 +\arght=\skip85 +) + +Package tasks Warning: You've tried setting command `\NewTasks ' on line 114. +(tasks) However, command `\NewTasks ' is deprecated. Please use +(tasks) command `\NewTasksEnvironment ' instead. Refer to the +(tasks) manual for details. + +Package csquotes Info: Checking for multilingual support... +Package csquotes Info: ... found 'babel' package. +Package csquotes Info: Adjusting default style. + +Package csquotes Warning: No style for language 'slovene'. +(csquotes) Using fallback style on input line 129. + +Package csquotes Info: Redefining alias 'default' -> 'fallback'. +(./dokument.aux) +\openout1 = `dokument.aux'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +\AtBeginShipoutBox=\box145 +Package hyperref Info: Link coloring OFF on input line 129. + (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty +Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section + +(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty +Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) +) +(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty +Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) +) +\c@section@level=\count442 +) +LaTeX Info: Redefining \ref on input line 129. +LaTeX Info: Redefining \pageref on input line 129. +LaTeX Info: Redefining \nameref on input line 129. + +(./dokument.out) (./dokument.out) +\@outlinefile=\write5 +\openout5 = `dokument.out'. + + +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +*geometry* verbose mode - [ preamble ] result: +* driver: pdftex +* paper: a4paper +* layout: +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(45.80893pt, 505.89pt, 45.80894pt) +* v-part:(T,H,B)=(48.93872pt, 722.7pt, 73.40813pt) +* \paperwidth=597.50787pt +* \paperheight=845.04684pt +* \textwidth=505.89pt +* \textheight=722.7pt +* \oddsidemargin=-26.46106pt +* \evensidemargin=-26.46106pt +* \topmargin=-60.33127pt +* \headheight=12.0pt +* \headsep=25.0pt +* \topskip=10.0pt +* \footskip=30.0pt +* \marginparwidth=65.0pt +* \marginparsep=11.0pt +* \columnsep=10.0pt +* \skip\footins=9.0pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count443 +\scratchdimen=\dimen400 +\scratchbox=\box146 +\nofMPsegments=\count444 +\nofMParguments=\count445 +\everyMPshowfont=\toks59 +\MPscratchCnt=\count446 +\MPscratchDim=\dimen401 +\MPnumerator=\count447 +\makeMPintoPDFobject=\count448 +\everyMPtoPDFconversion=\toks60 +) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf +Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 +85. + +(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv +e +)) +ABD: EveryShipout initializing macros + +Package pgfplots Warning: running in backwards compatibility mode (unsuitable t +ick labels; missing features). Consider writing \pgfplotsset{compat=1.16} into +your preamble. + on input line 129. + + +(/usr/share/texlive/texmf-dist/tex/latex/translator/translator-basic-dictionary +-English.dict +Dictionary: translator-basic-dictionary, Language: English +) +(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg +File: siunitx-abbreviations.cfg 2017/11/26 v2.7k siunitx: Abbreviated units +) +\c@lstlisting=\count449 +\symgns@font=\mathgroup6 +LaTeX Font Info: Overwriting symbol font `gns@font' in version `bold' +(Font) TS1/cmr/m/n --> TS1/cmr/b/n on input line 129. +Package gensymb Info: Math companion symbols declared on input line 129. +LaTeX Info: Redefining \degree on input line 129. +LaTeX Info: Redefining \celsius on input line 129. +Package gensymb Info: Using text companion symbols for \degree, \celsius and \p +erthousand on input line 129. +LaTeX Info: Redefining \ohm on input line 129. +Package gensymb Info: Using \textohm for \ohm on input line 129. +LaTeX Info: Redefining \micro on input line 129. +Package gensymb Info: Using \textmu for \micro on input line 129. + +Package exsheets Info: Loading custom configurations file +(exsheets) `exsheets_configurations.cfg'. + + +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_configurations.cfg +File: exsheets_configurations.cfg +) +LaTeX Font Info: Trying to load font information for U+msa on input line 129 +. + +(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd +File: umsa.fd 2013/01/14 v3.01 AMS symbols A +) +LaTeX Font Info: Trying to load font information for U+msb on input line 129 +. + +(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd +File: umsb.fd 2013/01/14 v3.01 AMS symbols B +) (./dokument.toc) +\tf@toc=\write6 +\openout6 = `dokument.toc'. + + +! Undefined control sequence. +l.143 \setcoutner + {enumi}{351} +The control sequence at the end of the top line +of your error message was never \def'ed. If you have +misspelled it (e.g., `\hobx'), type `I' and the correct +spelling (e.g., `I\hbox'). Otherwise just continue, +and I'll forget about whatever was undefined. + + +Overfull \hbox (8.60541pt too wide) in paragraph at lines 177--178 +[] + [] + + +Package hyperref Warning: Composite letter `\textasciicaron+c' +(hyperref) not defined in PD1 encoding, +(hyperref) removing `\textasciicaron' on input line 182. + + +Overfull \hbox (16.93909pt too wide) in paragraph at lines 183--188 +\OT1/cmtt/m/n/10 pdf$[] \OT1/cmr/m/n/10 in/ali []$\OT1/cmtt/m/n/10 https : / / +git . sijanec . eu / sijanec / sola-[]gimb-[]2 / raw / branch / master / mat / +domace _ naloge / 21 / dokument . + [] + +[1 + +{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2] +Package atveryend Info: Empty hook `BeforeClearDocument' on input line 200. +Package atveryend Info: Empty hook `AfterLastShipout' on input line 200. + (./dokument.aux) +Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 200. +Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 200. +Package rerunfilecheck Info: File `dokument.out' has not changed. +(rerunfilecheck) Checksum: A4CCA4DF4C96A52E44AC95CE1EB0B2D8;131. + ) +Here is how much of TeX's memory you used: + 43882 strings out of 482235 + 1032578 string characters out of 11690443 + 13458477 words of memory out of 24000000 + 58246 multiletter control sequences out of 15000+600000 + 546825 words of font info for 79 fonts, out of 12000000 for 9000 + 395 hyphenation exceptions out of 8191 + 68i,15n,98p,1061b,1010s stack positions out of 5000i,500n,10000p,12000000b,80000s +< +/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb> +Output written on dokument.pdf (2 pages, 185227 bytes). +PDF statistics: + 142 PDF objects out of 1000 (max. 8388607) + 104 compressed objects within 2 object streams + 15 named destinations out of 1000 (max. 500000) + 125 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git a/mat/domace_naloge/21/dokument.out b/mat/domace_naloge/21/dokument.out new file mode 100644 index 0000000..7416f2f --- /dev/null +++ b/mat/domace_naloge/21/dokument.out @@ -0,0 +1,2 @@ +\BOOKMARK [1][-]{section.1}{Vaje Matematika 2: stran 55, \235tiri naloge 349-361}{}% 1 +\BOOKMARK [1][-]{section.2}{Zakljucek}{}% 2 diff --git a/mat/domace_naloge/21/dokument.pdf b/mat/domace_naloge/21/dokument.pdf new file mode 100644 index 0000000..4425df7 Binary files /dev/null and b/mat/domace_naloge/21/dokument.pdf differ diff --git a/mat/domace_naloge/21/dokument.synctex.gz b/mat/domace_naloge/21/dokument.synctex.gz new file mode 100644 index 0000000..6649dfe Binary files /dev/null and b/mat/domace_naloge/21/dokument.synctex.gz differ diff --git a/mat/domace_naloge/21/dokument.tex b/mat/domace_naloge/21/dokument.tex new file mode 100644 index 0000000..52190a6 --- /dev/null +++ b/mat/domace_naloge/21/dokument.tex @@ -0,0 +1,200 @@ +% !TeX encoding = UTF-8 +% !TeX spellcheck = sl_SI +% do-vimlatex-onwrite +\documentclass[]{article} +\usepackage[utf8]{inputenc} +\usepackage{etoolbox} +\usepackage[hidelinks]{hyperref} +\usepackage[a4paper, total={7in, 10in}]{geometry} +\usepackage{graphicx} +\usepackage{hologo} +\usepackage{amssymb} +\usepackage{calculator} +\usepackage{pgfplots} +\usepackage[inline]{enumitem} +\usepackage{siunitx} +\usepackage{multicol} +\usepackage{tabularcalc} +\usepackage{amsmath} +\usepackage{float} +\usepackage{tasks} +\usepackage{filecontents} +\usepackage{textcomp} +\usepackage{tkz-euclide} +\usepackage{dirtytalk} +\usepackage{csquotes} +\usepackage{listings} +\usepackage{datetime} % [ddMMyyyy] +\usepackage{ccicons} +\usepackage{chemformula} +\usepackage{gensymb} +\usepackage[normalem]{ulem} +\usepackage[slovene]{babel} +\usepackage{cancel} +\usepackage{tabularx} +\usepackage{xcolor} +\usepackage{colortbl} +\usepackage{exsheets} +\usepackage{harpoon} +\newcolumntype{Y}{>{\centering\arraybackslash}X} +% \usepackage{multienum} % weird with labels +\usetikzlibrary{calc} %% not really needed............. idk. +%\usetikzlibrary{external} +% \usetkzobj{all} % tkz-euclide > 3.02 tega ne potrebuje več (: +%\tikzexternalize +\sisetup{output-decimal-marker = {,}, quotient-mode=fraction,per-mode=fraction} % per-mode=symbol +\newcommand\ddfrac[2]{\frac{\displaystyle #1}{\displaystyle #2}} +\newcommand{\functionSamples}{100} % fix to fancier value upon release, keep low during development +\newcommand{\razhroscevanje}{1} +\definecolor{codegreen}{rgb}{0,0.6,0} +\definecolor{codered}{rgb}{1,0,0} +\definecolor{codegray}{rgb}{0.5,0.5,0.5} +\definecolor{codepurple}{rgb}{0.58,0,0.82} +\definecolor{backcolour}{rgb}{0.95,0.95,0.92} +\renewcommand{\dateseparator}{. } +\settimeformat{hhmmsstime} +\lstdefinestyle{mystyle}{ + backgroundcolor=\color{backcolour}, + commentstyle=\color{codegreen}, + keywordstyle=\color{magenta}, + numberstyle=\tiny\color{codegray}, + stringstyle=\color{codepurple}, + basicstyle=\ttfamily\footnotesize, + breakatwhitespace=false, + breaklines=true, + captionpos=b, + keepspaces=true, + numbers=left, + numbersep=5pt, + showspaces=false, + showstringspaces=false, + showtabs=false, + tabsize=2 +} +\lstset{style=mystyle} +\def\@maketitle{% + \newpage + \null + \vskip 2em% + \begin{center}% + \let \footnote \thanks + {\LARGE \@title \par}% + \vskip 1.5em% + {\large + \lineskip .5em% + \begin{tabular}[t]{c}% <------ + \@author% <------ Authors + \end{tabular}\par}% <------ + \vskip 1em% + {\large \@date}% + \end{center}% + \par + \vskip 1.5em} +%opening +\newcommand{\snovdn}{Linearna kombinacija vektorjev, baza } +\newcommand{\predmdn}{mat} +\newcommand{\predmkaj}{domace\_naloge} +\newcommand{\stevilkadn}{21} +\newcommand{\cm}[1]{\SI{#1}{\centi\meter}} +\newcommand{\kmh}[1]{\SI{#1}{\kilo\meter\per\hour}} +\makeatletter +\newcommand{\xslalph}[1]{\expandafter\@xslalph\csname c@#1\endcsname} +\newcommand{\@xslalph}[1]{% + \ifcase#1\or a\or b\or c\or \v{c}\or d\or e\or f\or g\or h\or i% + \or j\or k\or l\or m\or n\or o\or p\or r\or s\or \v{s}% + \or t\or u\or v\or z\or \v{z} + \else\@ctrerr\fi% +} +\AddEnumerateCounter{\xslalph}{\@xslalph}{m} +\makeatother +\newcommand\gauss[2]{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))} % Gauss function, parameters mu and sigma +\newcommand*\textfrac[2]{ + \frac{\text{#1}}{\text{#2}} +} +\NewTasks[counter-format=\xslalph*),label-format=\bfseries]{primerTasks}(3) +\newcommand\vektor{\overrightarrow} +\newcommand{\iic}{I\textsuperscript{2}C } +\title{% + \snovdn --- \stevilkadn. domača naloga + \\ + \large Matematika, Gimnazija Bežigrad} +\author{\begin{tabular}{rl} + \textbf{Profesor:} & prof. Vilko Domajnko\\ + \textbf{Avtor:} & Anton Luka Šijanec, 2. a +% \textbf{Avtor:} & Anton Luka Šijanec \\ & Member 2 \\ & Member 3 +\end{tabular}} +\newcommand\hcancel[2][black]{\setbox0=\hbox{$#2$}% +\rlap{\raisebox{.45\ht0}{\textcolor{#1}{\rule{\wd0}{1pt}}}}#2} +% \everymath{\displaystyle} % https://tex.stackexchange.com/a/32847/212260 +\begin{document} +\maketitle +\begin{abstract} +Ta dokument vsebuje domačo nalogo, ki zajema snov \textit{\snovdn}pri matematiki, in njene rešitve, ki sem jih spisal sam. Kjer je bilo potrebno izbrati neke poljubne naloge, sem jih vedno izbral naključno. +\end{abstract} +\tableofcontents +\section{Vaje \textit{Matematika 2}: stran 55, štiri naloge 349-361} +\begin{enumerate}[label=\textbf{\arabic*.}] % 350 360 353 352 + \setcounter{enumi}{349} + \item Naj bodo vektorji $\Vec{a}$, $\Vec{b}$ in $\Vec{c}$ bazni vektorji v + prostoru. Vektorja $\Vec{m}$ in $\Vec{n}$ sta enaka + $\Vec{m}=-2\Vec{a}+\frac{3}{2}\Vec{b}+\Vec{c}$ in + $\Vec{n}=-\frac{1}{2}\Vec{a}+\Vec{b}+2\Vec{c}$. + Vektor $2\Vec{m}-\Vec{n}$ zapiši v dani bazi. % 350 + \setcoutner{enumi}{351} + \item Točke $A$, $B$, $C$, $D$ in $E$ ležijo na premici tako, da je + $|AB|:|BC|:|CD|:|DE|=3:2:1:3$. Točki $B$ in $D$ ležita med $A$ in $C$. točka $D$ pa med $B$ in $E$. Naj bo vektor $\Vec{a}=\vektor{BE}$ bazni vektor. Z vektorjem $\Vec{a}$ izrazi vektorje $\vektor{DC}$, $\vektor{AC}$ in $\vektor{DE}$. % 352 + \item Točka $M$ je razpolovišče daljice $CD$ pravokotnika $ABCD$, vektorja + $\Vec{a}=\vektor{AB}$ in $\Vec{b}=\vektor{AD}$ sta bazna vektorja. Z $\Vec{a}$ in $\Vec{b}$ izrazi $\vektor{AC}$, $\vektor{AM}$, $\vektor{BM}$ in $\vektor{MB}$. % 353 + \setcounter{enumi}{359} + \item % 360 + \begin{multicols}{2} + Na stranicah paralelograma $ABCD$ so dane točke $I$, $J$ in $K$, tako + da je $|DI|=|IJ|=|JC|$ in $|BK|=|KC|$. Točka $L$ je razpolovišče daljico $AI$, točka $M$ pa razpolovišče daljice $LJ$. + \begin{enumerate}[label=\textbf{\xslalph*)}] + \item Dana sta vektorja $\vektor{AB}=\Vec{a}$ in $\vektor{BC}=\Vec{b}$. + Izrazi vektor $\vektor{MK}$ z vektorjema $\Vec{a}$ in $\Vec{b}$. + \item Naj bosta bazna vektorja $\vektor{LI}=\Vec{u}$ in + $\vektor{LM}=\Vec{v}$. Izrazi vektorja $\vektor{AD}$ in $\vektor{AB}$ + z vektorjema $\Vec{u}$ in $\Vec{v}$. + \end{enumerate} + \vfill\null\columnbreak + \begin{tikzpicture}[scale=2] + \tkzDefPoint(1,2){D} + \tkzDefPoint(2,2){I} + \tkzDefPoint(3,2){J} + \tkzDefPoint(4,2){C} + \tkzDefPoint(1,1){L} + \tkzDefPoint(2,1.5){M} + \tkzDefPoint(3.5,1){K} + \tkzDefPoint(0,0){A} + \tkzDefPoint(3,0){B} + \tkzDrawPolygon[red](A,B,C,D) + \tkzDrawLine[blue, add = 0 and 0](A,I) + \tkzDrawLine[blue, add = 0 and 0](L,J) + \tkzDrawLine[blue, add = 0 and 0](M,K) + \tkzDrawPoints(D,I,J,C,L,M,K,A,B) + \tkzLabelPoints(D,I,J,C,L,M,K,A,B) + \end{tikzpicture} + \end{multicols} +\end{enumerate} + + +\section{Zaključek} +Ta dokument je informativne narave in se lahko še spreminja. Najnovejša različica, torej PDFji in +\hologo{LaTeX}\footnote{Za izdelavo dokumenta potrebujete \texttt{TeXLive 2020}.} +izvorna koda, zgodovina sprememb in prejšnje različice, je na voljo v mojem šolskem Git repozitoriju na +\url{https://git.sijanec.eu/sijanec/sola-gimb-2} v mapi +\href{https://git.sijanec/sola-gimb-2/src/branch/master/\predmdn/\predmkaj/\stevilkadn/}{/\predmdn/\predmkaj/\stevilkadn/}. Povezava za ogled zadnje različice tega dokumenta v PDF obliki je \url{http://razor.arnes.si/~asija3/files/sola/gimb/2/\predmdn/\predmkaj/\stevilkadn/dokument.pdf} in/ali \url{https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/\predmdn/\predmkaj/\stevilkadn/dokument.pdf}. + +\if\razhroscevanje1 +\section*{Razhroščevalne informacije} +Te informacije so generirane, ker je omogočeno razhroščevanje. Pred objavo dokumenta izklopite razhroščevanje. To naredite tako, da nastavite ukaz \texttt{razhroscevanje} na 0 v začetku dokumenta. + +Grafi imajo natančnost \functionSamples\space točk na graf. + +Konec generiranja dokumenta: \today\ ob \currenttime\footnote{To ne nakazuje dejanskega časa, ko je bil dokument napisan, temveč čas, ko je bi dokument generiran v PDF/DVI obliko. Isto velja za datum v glavi dokumenta. Če berete direktno iz LaTeX datoteke, bo to vedno današnji datum.}%\input|"date -Ins" + +Dokument se je generiral R0qK1KR2 \SI{}{\second}. +\fi +% \item $$$$ aaasecgeninsaaa R0qK1KR2 +\end{document} diff --git a/mat/domace_naloge/21/dokument.toc b/mat/domace_naloge/21/dokument.toc new file mode 100644 index 0000000..3358445 --- /dev/null +++ b/mat/domace_naloge/21/dokument.toc @@ -0,0 +1,4 @@ +\babel@toc {slovene}{} +\babel@toc {slovene}{} +\contentsline {section}{\numberline {1}Vaje \textit {Matematika 2}: stran 55, štiri naloge 349-361}{1}{section.1}% +\contentsline {section}{\numberline {2}Zaključek}{1}{section.2}% diff --git a/mat/domace_naloge/21/stderr.log b/mat/domace_naloge/21/stderr.log new file mode 100644 index 0000000..7464410 --- /dev/null +++ b/mat/domace_naloge/21/stderr.log @@ -0,0 +1 @@ +<<75F40139103067DB4935B23B6287835A>]/Index[ 0 143]/Info 141 0 R/Length 369/Root 140 0 R/Size 143/W[ 1 3 1]>> diff --git a/mat/domace_naloge/21/stdout.log b/mat/domace_naloge/21/stdout.log new file mode 100644 index 0000000..df1ebbc --- /dev/null +++ b/mat/domace_naloge/21/stdout.log @@ -0,0 +1,735 @@ +This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=pdflatex) + \write18 enabled. +entering extended mode +(/home/a/Documents/sola/gimb/2/mat/domace_naloge/21/dokument.tex +LaTeX2e <2020-02-02> patch level 5 +L3 programming layer <2020-02-25> +(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls +Document Class: article 2019/12/20 v1.4l Standard LaTeX document class +(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo)) +(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty) +(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty) +(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty +(/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty) +(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty) +(/usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty +(/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty) +(/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty) +(/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty) +(/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty) +(/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty) +(/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty) +(/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty) +(/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty) +(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def) +(/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty) +(/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty) +(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty) +(/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty +(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty)) +(/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def +(/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty) +(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty +(/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty))) +(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty +(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty +(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty) +(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg) +(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def))) +(/usr/share/texlive/texmf-dist/tex/generic/hologo/hologo.sty) +(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty +(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/calculator/calculator.sty) +(/usr/share/texlive/texmf-dist/tex/latex/pgfplots/pgfplots.sty +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex) +(/usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty +(/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty +(/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.t +ex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def +(/usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/pgf.revision.tex))) +(/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty +(/usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.t +ex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.de +f))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code. +tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code. +tex)) (/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty +(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code +.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonomet +ric.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.cod +e.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison +.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code. +tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code +.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code. +tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerari +thmetics.code.tex))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.te +x) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct. +code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code +.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.te +x) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.c +ode.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformation +s.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.t +ex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing +.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.te +x) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code. +tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.te +x) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.c +ode.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code. +tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex)) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex +) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65 +.sty) +(/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18 +.sty)) (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty +(/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) +(/usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers +.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarytopaths.code.tex))) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code +.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.t +ex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldp +gfsupp_loader.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotslists +tructure.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotslists +tructureext.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray +.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatri +x.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshare +d.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque +.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.te +x +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.co +de.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code +.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.sur +fshading.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surf +shading.pgfsys-pdftex.def))) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code. +tex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.t +ex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.t +ex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.cod +e.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code. +tex))) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.cod +e.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex +) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex +) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.cod +e.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.pathmorphing.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.pathmorphing.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.pathreplacing.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.pathreplacing.code.tex))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryplotmarks.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.co +de.tex))) (/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty) +(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx.sty +(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty +(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def)) +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty) +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty) +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty) +(/usr/share/texlive/texmf-dist/tex/latex/translator/translator.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty) +(/usr/share/texlive/texmf-dist/tex/latex/tabularcalc/tabularcalc.sty +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp.sty +`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich +(/usr/share/texlive/texmf-dist/tex/latex/fp/defpattern.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-basic.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-addons.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-snap.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-exp.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-trigo.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-pas.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-random.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eqn.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-upn.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eval.sty)) +(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty +(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex)) +(/usr/share/texlive/texmf-dist/tex/latex/numprint/numprint.sty +No configuration file `numprint.cfg' found.)) +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty +For additional information on amsmath, use the `?' option. +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty) +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/float/float.sty) +(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.sty +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty) +(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.cfg)) +(/usr/share/texlive/texmf-dist/tex/latex/filecontents/filecontents.sty + +Package filecontents Warning: This package is obsolete. Disabling it and +(filecontents) passing control to the filecontents environment +(filecontents) defined by the LaTeX kernel. + +) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-euclide.sty +2020/01/24 3.02c tkz-euclide.sty +(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.sty +2020/01/24 3.02c tkz-base.sty + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryangles.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryarrows.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code. +tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.meta. +code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarybabel.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarycalc.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.markings.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.markings.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.shapes.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.shapes.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.text.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.text.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryintersections.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryintersection +s.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarypatterns.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibrarypatterns.cod +e.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarypositioning.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryquotes.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryshadows.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryfadings.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code +.tex))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryshapes.misc.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshape +s.misc.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarysnakes.code.tex + +Package pgf Warning: Snakes have been superseded by decorations. Please use the + decoration libraries instead of the snakes library on input line 14. + +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarythrough.code.tex) +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfp/xfp.sty) +Local configuration file tkz-base.cfg found and used +(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.cfg +2020/02/04 3.02c tkz-base.cfg +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex +2020/01/24 3.02c tkz-tools-utilities.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex +2020/01/24 3.02c tkz-lib-symbols.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex +2020/01/24 3.02c tkz-tools-base.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex +2020/01/24 3.02c tkz-tools-utilities.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-math.tex +2020/01/24 3.02c tkz-tools-math.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex +2020/01/24 3.02c tkz-tools-text.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex +2020/01/24 3.02c tkz-obj-BB.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex +2020/01/24 3.02c tkz-tools-arith.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex +2020/01/24 3.02c tkz-tools-print.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex +2020/01/24 3.02c tkz-tools-misc.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex +2020/01/24 3.02c tkz-obj-axes.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex +2020/01/24 3.02c tkz-obj-grids.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex +2020/01/24 3.02c tkz-obj-marks.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex +2020/01/24 3.02c tkz-obj-points.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex +2020/01/24 3.02c tkz-obj-rep.tex +)) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-intersections.te +x +2020/01/24 3.02c tkz-tools-intersections.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-angles.tex +2020/01/24 3.02c tkz-tools-angles.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-angles.tex +2020/01/24 3.02c tkz-tool-eu-angles.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-arcs.tex +2020/01/24 3.02c tkz-obj-eu-arcs.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-compass.tex +2020/01/24 3.02c tkz-obj-eu-compass.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-circles.tex +2020/01/24 3.02c tkz-obj-eu-circles.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-circles.te +x +2020/01/24 3.02c tkz-obj-eu-draw-circles.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-lines.tex +2020/01/24 3.02c tkz-obj-eu-lines.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-lines.tex +2020/01/24 3.02c tkz-obj-eu-draw-lines.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points.tex +2020/01/24 3.02c tkz-obj-eu-points.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-by.tex +2020/01/24 3.02c tkz-tools-eu-points-by.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-rnd.tex +2020/01/24 3.02c tkz-obj-eu-points-rnd.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-with.tex +2020/01/24 3.02c tkz-obj-eu-points-with.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-polygons.t +ex +2020/01/24 3.02c tkz-obj-eu-polygons.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-polygons.tex +2020/01/24 3.02c tkz-obj-eu-polygons.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-protractor.tex +2020/01/24 3.02c tkz-obj-eu-protractor.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-sectors.tex +2020/01/24 3.02c tkz-obj-eu-sectors.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-show.tex +2020/01/24 3.02c tkz-obj-eu-show.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-triangles.tex +2020/01/24 3.02c tkz-obj-eu-triangles.tex +)) (/usr/share/texlive/texmf-dist/tex/latex/dirtytalk/dirtytalk.sty +(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.sty +(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.def) +(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.cfg)) +(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty +(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty) +(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg)) +(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime.sty +(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fmtcount.sty +(/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty +(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex +(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex))) +(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcprefix.sty +(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcnumparser.sty))) +(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime-defaults.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/ccicons/ccicons.sty) +(/usr/share/texlive/texmf-dist/tex/latex/chemformula/chemformula.sty +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfrac/xfrac.sty) +(/usr/share/texlive/texmf-dist/tex/latex/units/nicefrac.sty) +(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlfile.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/was/gensymb.sty) +(/usr/share/texlive/texmf-dist/tex/generic/ulem/ulem.sty) +(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty +(/usr/share/texlive/texmf-dist/tex/generic/babel/switch.def) +(/usr/share/texlive/texmf-dist/tex/generic/babel-slovenian/slovene.ldf +(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def +(/usr/share/texlive/texmf-dist/tex/generic/babel/txtbabel.def)))) +(/usr/share/texlive/texmf-dist/tex/latex/cancel/cancel.sty) +(/usr/share/texlive/texmf-dist/tex/latex/tools/tabularx.sty) +(/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty) +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets.sty +(/usr/share/texlive/texmf-dist/tex/latex/environ/environ.sty +(/usr/share/texlive/texmf-dist/tex/latex/trimspaces/trimspaces.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/cntformats/cntformats.sty +(/usr/share/texlive/texmf-dist/tex/latex/cnltx/cnltx-base.sty +(/usr/share/texlive/texmf-dist/tex/latex/pgfopts/pgfopts.sty))) +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_headings.def) +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_headings.cfg) +(/usr/share/texlive/texmf-dist/tex/latex/translations/translations.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/harpoon/harpoon.sty) + +Package tasks Warning: You've tried setting command `\NewTasks ' on line 114. +(tasks) However, command `\NewTasks ' is deprecated. Please use +(tasks) command `\NewTasksEnvironment ' instead. Refer to the +(tasks) manual for details. + + +Package csquotes Warning: No style for language 'slovene'. +(csquotes) Using fallback style on input line 129. + +(./dokument.aux) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty +(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty) +(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty)) +(./dokument.out) (./dokument.out) +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg)) +ABD: EveryShipout initializing macros + +Package pgfplots Warning: running in backwards compatibility mode (unsuitable t +ick labels; missing features). Consider writing \pgfplotsset{compat=1.16} into +your preamble. + on input line 129. + + +(/usr/share/texlive/texmf-dist/tex/latex/translator/translator-basic-dictionary +-English.dict) +(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg) +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_configurations.cfg) +(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd) +(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd) (./dokument.toc) +! Undefined control sequence. +l.143 \setcoutner + {enumi}{351} + +Overfull \hbox (8.60541pt too wide) in paragraph at lines 177--178 +[] + +Package hyperref Warning: Composite letter `\textasciicaron+c' +(hyperref) not defined in PD1 encoding, +(hyperref) removing `\textasciicaron' on input line 182. + + +Overfull \hbox (16.93909pt too wide) in paragraph at lines 183--188 +\OT1/cmtt/m/n/10 pdf$[] \OT1/cmr/m/n/10 in/ali []$\OT1/cmtt/m/n/10 https : / / +git . sijanec . eu / sijanec / sola-[]gimb-[]2 / raw / branch / master / mat / +domace _ naloge / 21 / dokument . +[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2] (./dokument.aux) ) +(see the transcript file for additional information) +Output written on dokument.pdf (2 pages, 185227 bytes). +SyncTeX written on dokument.synctex.gz. +Transcript written on dokument.log. +Reading 1 0 R +Reading 2 0 R +Reading 3 0 R +Reading 4 0 R +-> Uncompressing object 4 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 5 0 R +Reading 7 0 R +-> Uncompressing object 7 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 8 0 R +Reading 9 0 R +-> Uncompressing object 9 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 10 0 R +Reading 11 0 R +-> Uncompressing object 11 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 12 0 R +Reading 17 0 R +-> Uncompressing object 17 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 18 0 R +Reading 20 0 R +-> Uncompressing object 20 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 21 0 R +Reading 23 0 R +-> Uncompressing object 23 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 24 0 R +Reading 26 0 R +-> Uncompressing object 26 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 27 0 R +Reading 29 0 R +Reading 30 0 R +Reading 31 0 R +Reading 32 0 R +Reading 33 0 R +Reading 34 0 R +Reading 35 0 R +Reading 36 0 R +Reading 37 0 R +Reading 38 0 R +Reading 39 0 R +Reading 40 0 R +Reading 41 0 R +Reading 42 0 R +Reading 43 0 R +Reading 44 0 R +Reading 45 0 R +Reading 46 0 R +Reading 47 0 R +-> Uncompressing object 47 0 +-> Original Length: 4829 +-> Uncompressed Length: 20422 +Reading 48 0 R +Reading 49 0 R +Reading 50 0 R +Reading 51 0 R +Reading 52 0 R +Reading 53 0 R +Reading 54 0 R +Reading 55 0 R +Reading 56 0 R +Reading 57 0 R +Reading 58 0 R +Reading 59 0 R +Reading 60 0 R +Reading 61 0 R +Reading 62 0 R +Reading 63 0 R +Reading 64 0 R +Reading 65 0 R +Reading 66 0 R +Reading 67 0 R +Reading 68 0 R +Reading 69 0 R +Reading 70 0 R +Reading 71 0 R +Reading 72 0 R +Reading 73 0 R +Reading 74 0 R +Reading 75 0 R +Reading 76 0 R +Reading 77 0 R +Reading 78 0 R +Reading 79 0 R +Reading 80 0 R +Reading 81 0 R +-> Uncompressing object 81 0 +-> Original Length: 889 +-> Uncompressed Length: 1910 +Reading 82 0 R +Reading 83 0 R +Reading 84 0 R +Reading 85 0 R +Reading 86 0 R +Reading 87 0 R +Reading 88 0 R +Reading 89 0 R +Reading 90 0 R +Reading 91 0 R +Reading 92 0 R +Reading 93 0 R +Reading 94 0 R +Reading 95 0 R +Reading 96 0 R +Reading 97 0 R +Reading 98 0 R +Reading 99 0 R +Reading 100 0 R +Reading 101 0 R +-> Uncompressing object 101 0 +-> Original Length: 13582 +-> Uncompressed Length: 14262 +Reading 102 0 R +Reading 103 0 R +-> Uncompressing object 103 0 +-> Original Length: 13082 +-> Uncompressed Length: 13810 +Reading 104 0 R +Reading 105 0 R +-> Uncompressing object 105 0 +-> Original Length: 7846 +-> Uncompressed Length: 8318 +Reading 106 0 R +Reading 107 0 R +-> Uncompressing object 107 0 +-> Original Length: 8767 +-> Uncompressed Length: 9263 +Reading 108 0 R +Reading 109 0 R +-> Uncompressing object 109 0 +-> Original Length: 10922 +-> Uncompressed Length: 11493 +Reading 110 0 R +Reading 111 0 R +-> Uncompressing object 111 0 +-> Original Length: 18901 +-> Uncompressed Length: 19778 +Reading 112 0 R +Reading 113 0 R +-> Uncompressing object 113 0 +-> Original Length: 12734 +-> Uncompressed Length: 13433 +Reading 114 0 R +Reading 115 0 R +-> Uncompressing object 115 0 +-> Original Length: 10600 +-> Uncompressed Length: 11217 +Reading 116 0 R +Reading 117 0 R +-> Uncompressing object 117 0 +-> Original Length: 7038 +-> Uncompressed Length: 7469 +Reading 118 0 R +Reading 119 0 R +-> Uncompressing object 119 0 +-> Original Length: 7466 +-> Uncompressed Length: 7907 +Reading 120 0 R +Reading 121 0 R +-> Uncompressing object 121 0 +-> Original Length: 12632 +-> Uncompressed Length: 13328 +Reading 122 0 R +Reading 123 0 R +-> Uncompressing object 123 0 +-> Original Length: 12502 +-> Uncompressed Length: 13138 +Reading 124 0 R +Reading 125 0 R +-> Uncompressing object 125 0 +-> Original Length: 7082 +-> Uncompressed Length: 7527 +Reading 126 0 R +Reading 127 0 R +-> Uncompressing object 127 0 +-> Original Length: 9959 +-> Uncompressed Length: 10505 +Reading 128 0 R +Reading 129 0 R +-> Uncompressing object 129 0 +-> Original Length: 13053 +-> Uncompressed Length: 13744 +Reading 130 0 R +Reading 131 0 R +-> Uncompressing object 131 0 +-> Original Length: 3141 +-> Uncompressed Length: 3662 +Reading 132 0 R +Reading 133 0 R +Reading 134 0 R +Reading 135 0 R +Reading 136 0 R +Reading 138 0 R +Reading 139 0 R +Reading 140 0 R +Reading 141 0 R +Reading 142 0 R +-> Uncompressing object 142 0 +-> Original Length: 369 +-> Uncompressed Length: 715 +/home/a/Documents/sola/gimb/2/mat/domace_naloge/21/dokument.pdf was successfully uncompressed to: /home/a/Documents/sola/gimb/2/mat/domace_naloge/21/dokument-uncompressed.pdf + **** Error: An error occurred while reading an XREF table. + **** The file has been damaged. This may have been caused + **** by a problem while converting or transfering the file. + **** Ghostscript will attempt to recover the data. + **** However, the output may be incorrect. + **** Error: stream Length incorrect. + Output may be incorrect. diff --git a/nem/delo/1512/dokument.md b/nem/delo/1512/dokument.md new file mode 100644 index 0000000..daad710 --- /dev/null +++ b/nem/delo/1512/dokument.md @@ -0,0 +1,12 @@ +Ordinalzahlen +============= + +* vom bis zum +* vom zwanzigsten bis zum dreiundzwanzigsten +* der dritte Januar +* Was macht man zu Weihnachten +* backt man eine Torte +* lädt + + +HG:/122/123 diff --git a/nem/delo/1612/dokument.md b/nem/delo/1612/dokument.md new file mode 100644 index 0000000..f16110f --- /dev/null +++ b/nem/delo/1612/dokument.md @@ -0,0 +1,7 @@ +Termine, Termine, ... +===================== + +* den Termin absagen oder verschieben - odpovedati ali prestaviti +* Sie möchte den Termin auf 21. 8. um 15.00 verschieben. +* einen Termin vereinbaren, ausmachen - se dogovoriti za srečanje +* abgemacht - dogovorjeno, važi, velja -- cgit v1.2.3 From 407c0b81473e498968eb80d21f10a1f631a281b5 Mon Sep 17 00:00:00 2001 From: sijanec Date: Sun, 20 Dec 2020 00:24:00 +0100 Subject: =?UTF-8?q?linearna=20kombinacija=20vektorjev,=20baza=20-=20doma?= =?UTF-8?q?=C4=8Da=20naloga=2021=20za=20matematiko?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mat/domace_naloge/21/dokument-modified.pdf | 3991 ++++++++++++++++++++++++ mat/domace_naloge/21/dokument-recompressed.pdf | 0 mat/domace_naloge/21/dokument-tmp.pdf | 3991 ++++++++++++++++++++++++ mat/domace_naloge/21/dokument-uncompressed.pdf | 3991 ++++++++++++++++++++++++ mat/domace_naloge/21/dokument.aux | 2 +- mat/domace_naloge/21/dokument.log | 1217 +------- mat/domace_naloge/21/dokument.pdf | Bin 63012 -> 185401 bytes mat/domace_naloge/21/dokument.synctex(busy) | 0 mat/domace_naloge/21/dokument.synctex.gz | Bin 20556 -> 23736 bytes mat/domace_naloge/21/dokument.tex | 25 +- mat/domace_naloge/21/dokument.toc | 2 +- mat/domace_naloge/21/stderr.log | 2 +- mat/domace_naloge/21/stdout.log | 331 +- 13 files changed, 12014 insertions(+), 1538 deletions(-) create mode 100644 mat/domace_naloge/21/dokument-modified.pdf create mode 100644 mat/domace_naloge/21/dokument-recompressed.pdf create mode 100644 mat/domace_naloge/21/dokument-tmp.pdf create mode 100644 mat/domace_naloge/21/dokument-uncompressed.pdf create mode 100644 mat/domace_naloge/21/dokument.synctex(busy) diff --git a/mat/domace_naloge/21/dokument-modified.pdf b/mat/domace_naloge/21/dokument-modified.pdf new file mode 100644 index 0000000..b349971 --- /dev/null +++ b/mat/domace_naloge/21/dokument-modified.pdf @@ -0,0 +1,3991 @@ +%PDF-1.3 +% +1 0 obj +<< +>> +endobj +2 0 obj +<< +>> +endobj +3 0 obj +<< +/pgfprgb [ /Pattern /DeviceRGB ] +>> +endobj +4 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 5 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +5 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 0.000000 0 100.001280 0 ] +/Domain [ 0.000000 100.001280 ] +/Extend [ false false ] +/Function << +/Bounds [ 25.000320 75.000960 ] +/Domain [ 0.000000 100.001280 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 2 +>> +>> +>> +endobj +7 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 8 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +8 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 0.000000 0 100.001280 0 ] +/Domain [ 0.000000 100.001280 ] +/Extend [ false false ] +/Function << +/Bounds [ 25.000320 75.000960 ] +/Domain [ 0.000000 100.001280 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 2 +>> +>> +>> +endobj +9 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 10 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +10 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 0 0.000000 0 100.001280 ] +/Domain [ 0.000000 100.001280 ] +/Extend [ false false ] +/Function << +/Bounds [ 25.000320 75.000960 ] +/Domain [ 0.000000 100.001280 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 2 +>> +>> +>> +endobj +11 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 12 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +12 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 0 0.000000 0 100.001280 ] +/Domain [ 0.000000 100.001280 ] +/Extend [ false false ] +/Function << +/Bounds [ 25.000320 75.000960 ] +/Domain [ 0.000000 100.001280 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 2 +>> +>> +>> +endobj +17 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 18 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +18 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] +/Domain [ 0.000000 50.000640 ] +/Extend [ true false ] +/Function << +/Bounds [ 22.500270 25.000320 ] +/Domain [ 0.000000 50.000640 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 3 +>> +>> +>> +endobj +20 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 21 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +21 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] +/Domain [ 0.000000 50.000640 ] +/Extend [ true false ] +/Function << +/Bounds [ 21.250260 25.000320 ] +/Domain [ 0.000000 50.000640 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 3 +>> +>> +>> +endobj +23 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 24 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +24 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] +/Domain [ 0.000000 50.000640 ] +/Extend [ true false ] +/Function << +/Bounds [ 20.000240 25.000320 ] +/Domain [ 0.000000 50.000640 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 3 +>> +>> +>> +endobj +26 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 27 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +27 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] +/Domain [ 0.000000 50.000640 ] +/Extend [ true false ] +/Function << +/Bounds [ 21.250260 23.125290 25.000320 ] +/Domain [ 0.000000 50.000640 ] +/Encode [ 0 1 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 3 +>> +>> +>> +endobj +29 0 obj +<< +/D (section.1) +/S /GoTo +>> +endobj +30 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 500.158000 null ] +>> +endobj +31 0 obj +<< +/A 29 0 R +/Next 35 0 R +/Parent 133 0 R +/Title 32 0 R +>> +endobj +32 0 obj +(Vaje Matematika 2: stran 55, tiri naloge 349-361) +endobj +33 0 obj +<< +/D (section.2) +/S /GoTo +>> +endobj +34 0 obj +<< +/D [ 72 0 R /XYZ 45.638000 793.134000 null ] +>> +endobj +35 0 obj +<< +/A 33 0 R +/Parent 133 0 R +/Prev 31 0 R +/Title 36 0 R +>> +endobj +36 0 obj +(Zakljucek) +endobj +37 0 obj +<< +/D [ 38 0 R /Fit ] +/S /GoTo +>> +endobj +38 0 obj +<< +/Type /Page +/Annots [ 39 0 R 40 0 R ] +/Contents 42 0 R +/MediaBox [ 0 0 595.276000 841.890000 ] +/Parent 64 0 R +/Resources 41 0 R +>> +endobj +39 0 obj +<< +/Type /Annot +/A << +/D (section.1) +/S /GoTo +>> +/Border [ 0 0 0 ] +/C [ 1 0 0 ] +/H /I +/Rect [ 44.642000 536.092000 312.863000 546.940000 ] +/Subtype /Link +>> +endobj +40 0 obj +<< +/Type /Annot +/A << +/D (section.2) +/S /GoTo +>> +/Border [ 0 0 0 ] +/C [ 1 0 0 ] +/H /I +/Rect [ 44.642000 514.174000 109.634000 525.023000 ] +/Subtype /Link +>> +endobj +41 0 obj +<< +/ColorSpace 3 0 R +/ExtGState 1 0 R +/Font << +/F11 56 0 R +/F14 57 0 R +/F43 45 0 R +/F44 46 0 R +/F7 58 0 R +/F71 47 0 R +/F72 49 0 R +/F73 48 0 R +/F74 50 0 R +/F77 52 0 R +/F78 53 0 R +/F8 55 0 R +>> +/Pattern 2 0 R +/ProcSet [ /PDF /Text ] +>> +endobj +42 0 obj +<< +/Length 22697 +>> +stream +0 g 0 G +0 g 0 G +0 g 0 G +0 g 0 G +0 g 0 G +BT +/F43 17.2154 Tf 90.724 741.328 Td [(Linearna)-302(k)26(om)26(binacija)-302(v)27(ektor)-1(j)1(ev)-1(,)-301(baza)-302(|)-302(21.)-407(doma)26(\024)433(ca)-302(naloga)]TJ/F44 11.9552 Tf 122.252 -13.948 Td [(Matematik)55(a,)-327(Gimnazija)-326(Be)27(\024)463(zigrad)]TJ/F71 11.9552 Tf -11.907 -32.885 Td [(Profesor:)]TJ/F44 11.9552 Tf 64.866 0 Td [(prof.)-435(Vilk)27(o)-326(Doma)-55(jn)1(k)27(o)]TJ/F71 11.9552 Tf -50.394 -14.719 Td [(Avtor:)]TJ/F44 11.9552 Tf 50.394 0 Td [(An)27(ton)-326(Luk)54(a)]TJ 65.19 3.022 Td [(\024)]TJ -0.325 -3.022 Td [(Sijanec,)-326(2.)-435(a)]TJ -80.311 -23.446 Td [(20.)-326(decem)27(b)-27(er)-327(2)1(020)]TJ +0 g 0 G +0 g 0 G +/F73 8.9664 Tf 26.279 -35.865 Td [(P)33(o)33(vzetek)]TJ +0 g 0 G +0 g 0 G +/F72 8.9664 Tf -192.4 -15.617 Td [(T)86(a)-397(dokumen)29(t)-397(vsebuje)-397(doma)29(\024)485(co)-397(nalogo,)-410(ki)-397(za)-57(jema)-397(sno)29(v)]TJ/F74 8.9664 Tf 221.97 0 Td [(Line)52(arna)-417(kombinacija)-417(vektorjev,)-430(b)53(aza)]TJ/F72 8.9664 Tf 155.167 0 Td [(pri)-397(matematiki.)]TJ -390.961 -10.959 Td [(Kjer)-343(je)-342(bilo)-343(p)-28(otrebno)-343(izbrati)-342(nek)28(e)-342(p)-29(oljubne)-342(naloge,)-343(sem)-342(jih)-343(v)28(e)1(dno)-343(izbral)-343(naklju)29(\024)485(cno.)]TJ/F71 14.3462 Tf -24.906 -32.946 Td [(Kazalo)]TJ/F77 9.9626 Tf 0 -21.917 Td [(1)-925(V)96(a)-64(je)]TJ/F78 9.9626 Tf 41.428 0 Td [(Matematika)-414(2)]TJ/F77 9.9626 Tf 70.911 0 Td [(:)-511(stran)-384(55,)-322(\024)514(stiri)-383(naloge)-384(349-361)-23291(1)]TJ -112.339 -21.918 Td [(2)-925(Zaklju)32(\024)543(cek)]TJ 498.271 0 Td [(2)]TJ/F71 14.3462 Tf -498.271 -32.946 Td [(1)-1125(V)94(a)-63(je)]TJ/F78 14.3462 Tf 61.469 0 Td [(Matematika)-414(2)]TJ/F71 14.3462 Tf 102.112 0 Td [(:)-500(stran)-375(55,)-316(\024)504(stiri)-375(naloge)-375(349-361)]TJ +0 g 0 G +/F77 9.9626 Tf -164.024 -23.398 Td [(350.)]TJ +0 g 0 G +/F8 9.9626 Tf 25.349 0 Td [(Na)-56(j)-471(b)-28(o)-27(do)-472(v)28(ektorji)]TJ/F11 9.9626 Tf 84.336 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(,)]TJ/F11 9.9626 Tf 6.687 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 8.971 0 Td [(in)]TJ/F11 9.9626 Tf 12.45 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 9.554 0 Td [(bazni)-471(v)28(e)-1(kt)1(orji)-472(v)-471(prostoru.)-858(V)83(ektorja)]TJ/F11 9.9626 Tf 166.709 0 Td [(~)612(m)]TJ/F8 9.9626 Tf 12.326 0 Td [(in)]TJ/F11 9.9626 Tf 12.731 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 10.942 0 Td [(sta)-471(enak)55(a)]TJ/F11 9.9626 Tf 47.922 0 Td [(~)612(m)]TJ/F8 9.9626 Tf 12.689 0 Td [(=)]TJ/F14 9.9626 Tf 12.807 0 Td [(\000)]TJ/F8 9.9626 Tf 7.749 0 Td [(2)]TJ/F11 9.9626 Tf 4.357 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.02 0 Td [(+)]TJ/F7 6.9738 Tf 12.075 3.922 Td [(3)]TJ +ET +q +1 0 0 1 508.877 463.254 cm +[]0 d 0 J 0.398 w 0 0 m 3.971 0 l S +Q +BT +/F7 6.9738 Tf 508.877 457.328 Td [(2)]TJ/F11 9.9626 Tf 4.048 6.065 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.406 0 Td [(+)]TJ/F11 9.9626 Tf 10.331 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 9.555 0 Td [(in)]TJ/F11 9.9626 Tf -471.058 -14.179 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.014 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F7 6.9738 Tf 8.944 3.923 Td [(1)]TJ +ET +q +1 0 0 1 98.752 449.076 cm +[]0 d 0 J 0.398 w 0 0 m 3.971 0 l S +Q +BT +/F7 6.9738 Tf 98.752 443.15 Td [(2)]TJ/F11 9.9626 Tf 4.543 3.435 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.843 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 6.49 0 Td [(+)-222(2)]TJ/F11 9.9626 Tf 14.396 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 4.859 0 Td [(.)-444(V)83(ektor)-333(2)]TJ/F11 9.9626 Tf 45.7 0 Td [(~)612(m)]TJ/F14 9.9626 Tf 9.844 0 Td [(\000)]TJ/F11 9.9626 Tf 9.696 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.568 0 Td [(zapi)53(\024)447(si)-333(v)-334(dani)-333(bazi.)]TJ 43.487 -27.555 Td [(2)]TJ/F11 9.9626 Tf 6.098 0 Td [(~)612(m)]TJ/F14 9.9626 Tf 9.845 0 Td [(\000)]TJ/F11 9.9626 Tf 9.695 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.014 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 8.945 6.74 Td [(7)]TJ +ET +q +1 0 0 1 319.514 421.521 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 319.514 412.197 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.833 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ 11.158 6.74 Td [(1)]TJ +ET +q +1 0 0 1 344.329 421.521 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 344.329 412.197 Td [(3)]TJ/F11 9.9626 Tf 5.058 9.462 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ +0 g 0 G +/F77 9.9626 Tf -305.311 -29.249 Td [(352.)]TJ +0 g 0 G +/F8 9.9626 Tf 25.349 0 Td [(T)83(o)28(\024)472(ck)28(e)]TJ/F11 9.9626 Tf 28.838 0 Td [(A)]TJ/F8 9.9626 Tf 7.472 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(B)]TJ/F8 9.9626 Tf 8.057 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(C)]TJ/F8 9.9626 Tf 7.833 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(D)]TJ/F8 9.9626 Tf 12.18 0 Td [(in)]TJ/F11 9.9626 Tf 11.956 0 Td [(E)]TJ/F8 9.9626 Tf 11.583 0 Td [(le)28(\024)472(zijo)-367(na)-367(premici)-366(tak)27(o,)-375(da)-367(je)]TJ/F14 9.9626 Tf 126.645 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(AB)]TJ/F14 9.9626 Tf 15.528 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(:)]TJ/F14 9.9626 Tf 6.091 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(B)-50(C)]TJ/F14 9.9626 Tf 15.89 0 Td [(j)]TJ/F8 9.9626 Tf 6.09 0 Td [(:)]TJ/F14 9.9626 Tf 6.091 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(C)-72(D)]TJ/F14 9.9626 Tf 16.358 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(:)]TJ/F14 9.9626 Tf 6.09 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(D)-28(E)]TJ/F14 9.9626 Tf 16.453 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(=)-334(3)-333(:)-334(2)-333(:)-334(1)-333(:)-334(3.)-545(T)84(o)27(\024)473(cki)]TJ/F11 9.9626 Tf 94.888 0 Td [(B)]TJ/F8 9.9626 Tf 11.711 0 Td [(in)]TJ/F11 9.9626 Tf 11.957 0 Td [(D)]TJ/F8 9.9626 Tf -470.569 -13.95 Td [(le)28(\024)472(zita)-296(med)]TJ/F11 9.9626 Tf 47.406 0 Td [(A)]TJ/F8 9.9626 Tf 10.42 0 Td [(in)]TJ/F11 9.9626 Tf 11.249 0 Td [(C)]TJ/F8 9.9626 Tf 7.833 0 Td [(.)-432(to)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 32.988 0 Td [(D)]TJ/F8 9.9626 Tf 11.472 0 Td [(pa)-296(med)]TJ/F11 9.9626 Tf 34.676 0 Td [(B)]TJ/F8 9.9626 Tf 11.004 0 Td [(in)]TJ/F11 9.9626 Tf 11.25 0 Td [(E)]TJ/F8 9.9626 Tf 7.929 0 Td [(.)-432(Na)-55(j)-296(b)-28(o)-296(v)28(ektor)]TJ/F11 9.9626 Tf 69.558 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.657 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 6.808 Td [(\000)476(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(E)]TJ/F8 9.9626 Tf 18.933 0 Td [(bazni)-296(v)28(ektor.)-432(Z)-296(v)28(ektorjem)]TJ/F11 9.9626 Tf 115.247 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.837 0 Td [(izrazi)-296(v)28(ektorje)]TJ/F14 9.9626 Tf -417.975 -6.589 Td [(\000)457(\000)457(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(D)-28(C)]TJ/F8 9.9626 Tf 16.358 0 Td [(,)]TJ/F14 9.9626 Tf 6.089 6.807 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AC)]TJ/F8 9.9626 Tf 18.626 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.807 Td [(\000)452(\000)452(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(D)-28(E)]TJ/F8 9.9626 Tf 16.453 0 Td [(.)]TJ/F14 9.9626 Tf 99.708 -9.286 Td [(\000)457(\000)457(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(D)-28(C)]TJ/F8 9.9626 Tf 19.126 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ +ET +q +1 0 0 1 270.238 348.832 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 270.238 339.507 Td [(4)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 18.072 0 Td [(=)]TJ 11.712 6.74 Td [(5)]TJ +ET +q +1 0 0 1 319.214 348.832 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 319.214 339.507 Td [(3)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)452(\000)452(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(D)-28(E)]TJ/F8 9.9626 Tf 19.22 0 Td [(=)]TJ 11.712 6.74 Td [(3)]TJ +ET +q +1 0 0 1 369.338 348.832 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 369.338 339.507 Td [(4)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ +0 g 0 G +/F77 9.9626 Tf -329.696 -28.256 Td [(353.)]TJ +0 g 0 G +/F8 9.9626 Tf 25.349 0 Td [(T)83(o)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 28.918 0 Td [(M)]TJ/F8 9.9626 Tf 14.209 0 Td [(je)-347(razp)-28(olo)28(vi)53(\024)447(s)28(\024)472(ce)-347(daljice)]TJ/F11 9.9626 Tf 98.183 0 Td [(C)-72(D)]TJ/F8 9.9626 Tf 19.816 0 Td [(pra)28(v)28(ok)27(otni)1(k)55(a)]TJ/F11 9.9626 Tf 59.387 0 Td [(AB)-50(C)-72(D)]TJ/F8 9.9626 Tf 31.886 0 Td [(,)-351(v)28(ektorja)]TJ/F11 9.9626 Tf 44.544 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.885 0 Td [(=)]TJ/F14 9.9626 Tf 10.744 6.808 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AB)]TJ/F8 9.9626 Tf 18.987 0 Td [(in)]TJ/F11 9.9626 Tf 10.641 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.271 0 Td [(=)]TJ/F14 9.9626 Tf 10.744 6.808 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AD)]TJ/F8 9.9626 Tf 19.454 0 Td [(sta)-347(bazna)-347(v)28(ektorja.)-486(Z)]TJ/F11 9.9626 Tf -385.411 -13.396 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.21 0 Td [(in)]TJ/F11 9.9626 Tf 10.504 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.597 0 Td [(izrazi)]TJ/F14 9.9626 Tf 26.595 6.808 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 15.305 0 Td [(,)]TJ/F14 9.9626 Tf 6.088 6.808 Td [(\000)363(\000)363(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AM)]TJ/F8 9.9626 Tf 18.223 0 Td [(,)]TJ/F14 9.9626 Tf 6.089 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(M)]TJ/F8 9.9626 Tf 22.129 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(B)]TJ/F8 9.9626 Tf 18.808 0 Td [(.)]TJ/F14 9.9626 Tf -48.295 -19.248 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 18.072 0 Td [(=)]TJ/F11 9.9626 Tf 9.892 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)363(\000)363(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AM)]TJ/F8 9.9626 Tf 20.991 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ +ET +q +1 0 0 1 265.673 281.124 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 265.673 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(M)]TJ/F8 9.9626 Tf 21.575 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 8.945 6.74 Td [(1)]TJ +ET +q +1 0 0 1 342.353 281.124 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 342.353 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.843 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(;)]TJ/F14 9.9626 Tf 7.748 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(B)]TJ/F8 9.9626 Tf 21.576 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ +ET +q +1 0 0 1 411.283 281.124 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 411.283 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F14 9.9626 Tf 8.104 0 Td [(\000)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ +0 g 0 G +/F77 9.9626 Tf -393.983 -23.91 Td [(360.)]TJ +0 g 0 G +/F8 9.9626 Tf 25.349 0 Td [(Na)-279(strani)1(c)-1(ah)-278(paralelograma)]TJ/F11 9.9626 Tf 122.203 0 Td [(AB)-50(C)-72(D)]TJ/F8 9.9626 Tf 34.661 0 Td [(so)-279(dane)-278(to)28(\024)472(ck)28(e)]TJ/F11 9.9626 Tf 60.407 0 Td [(I)]TJ/F8 9.9626 Tf 5.161 0 Td [(,)]TJ/F11 9.9626 Tf 5.651 0 Td [(J)]TJ/F8 9.9626 Tf -228.083 -11.956 Td [(in)]TJ/F11 9.9626 Tf 11.727 0 Td [(K)]TJ/F8 9.9626 Tf 9.174 0 Td [(,)-346(tak)27(o)-343(da)-344(je)]TJ/F14 9.9626 Tf 53.299 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(D)-28(I)]TJ/F14 9.9626 Tf 13.686 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(I)-78(J)]TJ/F14 9.9626 Tf 11.644 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(J)-96(C)]TJ/F14 9.9626 Tf 14.315 0 Td [(j)]TJ/F8 9.9626 Tf 6.193 0 Td [(in)]TJ/F14 9.9626 Tf 11.726 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(B)-50(K)]TJ/F14 9.9626 Tf 17.23 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(K)-72(C)]TJ/F14 9.9626 Tf 17.007 0 Td [(j)]TJ/F8 9.9626 Tf 2.767 0 Td [(.)]TJ -231.798 -11.955 Td [(T)83(o)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 28.442 0 Td [(L)]TJ/F8 9.9626 Tf 9.761 0 Td [(je)-299(razp)-28(olo)28(vi)53(\024)447(s)28(\024)472(ce)-300(dalj)1(ico)]TJ/F11 9.9626 Tf 97.307 0 Td [(AI)]TJ/F8 9.9626 Tf 12.633 0 Td [(,)-306(to)28(\024)472(ck)55(a)]TJ/F11 9.9626 Tf 31.768 0 Td [(M)]TJ/F8 9.9626 Tf 13.732 0 Td [(pa)-299(razp)-28(o-)]TJ -193.643 -11.955 Td [(lo)28(vi)53(\024)447(s)28(\024)472(ce)-334(daljice)]TJ/F11 9.9626 Tf 62.876 0 Td [(LJ)]TJ/F8 9.9626 Tf 13.263 0 Td [(.)]TJ +0 g 0 G +/F77 9.9626 Tf -69.227 -19.422 Td [(a\051)]TJ +0 g 0 G +/F8 9.9626 Tf 15.006 0 Td [(Dana)-454(sta)-453(v)28(ektorja)]TJ/F14 9.9626 Tf 84.901 6.808 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AB)]TJ/F8 9.9626 Tf 20.292 0 Td [(=)]TJ/F11 9.9626 Tf 11.889 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 10.409 0 Td [(in)]TJ/F14 9.9626 Tf 12.821 6.808 Td [(\000)480(\000)481(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(C)]TJ/F8 9.9626 Tf 20.654 0 Td [(=)]TJ/F11 9.9626 Tf 11.394 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(.)-805(Izrazi)]TJ -177.754 -13.949 Td [(v)28(ektor)]TJ/F14 9.9626 Tf 30.746 6.807 Td [(\000)278(\000)278(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(M)-109(K)]TJ/F8 9.9626 Tf 23.246 0 Td [(z)-333(v)27(ektorjema)]TJ/F11 9.9626 Tf 58.627 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.21 0 Td [(in)]TJ/F11 9.9626 Tf 10.504 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(.)]TJ/F14 9.9626 Tf -67.624 -14.387 Td [(\000)278(\000)278(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(K)]TJ/F8 9.9626 Tf 22.693 0 Td [(=)]TJ 11.712 6.74 Td [(7)]TJ +ET +q +1 0 0 1 196.971 166.782 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 196.971 157.457 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F14 9.9626 Tf 8.104 0 Td [(\000)]TJ/F8 9.9626 Tf 11.158 6.74 Td [(1)]TJ +ET +q +1 0 0 1 221.786 166.782 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 221.786 157.457 Td [(4)]TJ/F11 9.9626 Tf 5.057 9.463 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(;)]TJ +0 g 0 G +/F77 9.9626 Tf -155.578 -24.414 Td [(b\051)]TJ +0 g 0 G +/F8 9.9626 Tf 15.802 0 Td [(Na)-56(j)-445(b)-28(osta)-446(bazna)-445(v)27(ektorja)]TJ/F14 9.9626 Tf 118.303 6.808 Td [(\000)579(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(LI)]TJ/F8 9.9626 Tf 16.575 0 Td [(=)]TJ/F11 9.9626 Tf 12.253 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 10.273 0 Td [(in)]TJ/F14 9.9626 Tf 12.742 6.808 Td [(\000)398(\000)398(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(LM)]TJ/F8 9.9626 Tf 22.165 0 Td [(=)]TJ/F11 9.9626 Tf 11.996 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.573 0 Td [(.)]TJ -209.88 -13.949 Td [(Izrazi)-333(v)27(ektorja)]TJ/F14 9.9626 Tf 66.197 6.807 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AD)]TJ/F8 9.9626 Tf 19.317 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.807 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AB)]TJ/F8 9.9626 Tf 18.85 0 Td [(z)-333(v)27(ektorjema)]TJ/F11 9.9626 Tf 59.122 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 9.152 0 Td [(in)]TJ/F11 9.9626 Tf 11.236 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.574 0 Td [(.)]TJ/F14 9.9626 Tf -164.571 -11.69 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AD)]TJ/F8 9.9626 Tf 18.764 0 Td [(=)-278(3)]TJ/F11 9.9626 Tf 15.369 0 Td [(~)487(u)]TJ/F14 9.9626 Tf 8.046 0 Td [(\000)]TJ/F8 9.9626 Tf 9.963 0 Td [(2)]TJ/F11 9.9626 Tf 4.594 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.573 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.807 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AB)]TJ/F8 9.9626 Tf 18.296 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 7.749 0 Td [(3)]TJ/F11 9.9626 Tf 4.853 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 8.045 0 Td [(+)-222(6)]TJ/F11 9.9626 Tf 14.557 0 Td [(~)461(v)]TJ +0 g 0 G +0 g 0 G +ET +1 0 0 1 316.766 149.606 cm +q +0 G +0 g +0.3985 w +q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +0.59776 w +0 G +0 g +[ ] 0.0 d +1 0 0 rg 1 0 0 RG +0.0 0.0 m +0.0 0.0 l +170.08086 0.0 l +226.77448 113.38724 l +56.69362 113.38724 l +h +S +0 g 0 G +Q +q +0.59776 w +0 G +0 g +[ ] 0.0 d +0 0 1 rg 0 0 1 RG +0.0 0.0 m +0.0 0.0 m +113.38724 113.38724 l +S +0 g 0 G +Q +q +0.59776 w +0 G +0 g +[ ] 0.0 d +0 0 1 rg 0 0 1 RG +56.69362 56.69362 m +56.69362 56.69362 m +170.08086 113.38724 l +S +0 g 0 G +Q +q +0.59776 w +0 G +0 g +[ ] 0.0 d +0 0 1 rg 0 0 1 RG +113.38724 85.0404 m +113.38724 85.0404 m +198.42764 56.69362 l +S +0 g 0 G +Q +q +0 G +0 g +q +0 G +0 g +58.18803 113.38724 m +58.18803 114.21257 57.51895 114.88165 56.69362 114.88165 c +55.86827 114.88165 55.1992 114.21257 55.1992 113.38724 c +55.1992 112.56189 55.86827 111.89282 56.69362 111.89282 c +57.51895 111.89282 58.18803 112.56189 58.18803 113.38724 c +h +56.69362 113.38724 m +B +Q +q +1 0 0 1 56.693 113.386 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -56.693 -113.386 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +114.88165 113.38724 m +114.88165 114.21257 114.21257 114.88165 113.38724 114.88165 c +112.56189 114.88165 111.89282 114.21257 111.89282 113.38724 c +111.89282 112.56189 112.56189 111.89282 113.38724 111.89282 c +114.21257 111.89282 114.88165 112.56189 114.88165 113.38724 c +h +113.38724 113.38724 m +B +Q +q +1 0 0 1 113.386 113.386 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -113.386 -113.386 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +171.57527 113.38724 m +171.57527 114.21257 170.9062 114.88165 170.08086 114.88165 c +169.25551 114.88165 168.58644 114.21257 168.58644 113.38724 c +168.58644 112.56189 169.25551 111.89282 170.08086 111.89282 c +170.9062 111.89282 171.57527 112.56189 171.57527 113.38724 c +h +170.08086 113.38724 m +B +Q +q +1 0 0 1 170.079 113.386 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -170.079 -113.386 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +228.26889 113.38724 m +228.26889 114.21257 227.59982 114.88165 226.77448 114.88165 c +225.94913 114.88165 225.28006 114.21257 225.28006 113.38724 c +225.28006 112.56189 225.94913 111.89282 226.77448 111.89282 c +227.59982 111.89282 228.26889 112.56189 228.26889 113.38724 c +h +226.77448 113.38724 m +B +Q +q +1 0 0 1 226.772 113.386 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -226.772 -113.386 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +58.18803 56.69362 m +58.18803 57.51895 57.51895 58.18803 56.69362 58.18803 c +55.86827 58.18803 55.1992 57.51895 55.1992 56.69362 c +55.1992 55.86827 55.86827 55.1992 56.69362 55.1992 c +57.51895 55.1992 58.18803 55.86827 58.18803 56.69362 c +h +56.69362 56.69362 m +B +Q +q +1 0 0 1 56.693 56.693 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -56.693 -56.693 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +114.88165 85.0404 m +114.88165 85.86575 114.21257 86.53482 113.38724 86.53482 c +112.56189 86.53482 111.89282 85.86575 111.89282 85.0404 c +111.89282 84.21506 112.56189 83.54599 113.38724 83.54599 c +114.21257 83.54599 114.88165 84.21506 114.88165 85.0404 c +h +113.38724 85.0404 m +B +Q +q +1 0 0 1 113.386 85.039 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -113.386 -85.039 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +199.92206 56.69362 m +199.92206 57.51895 199.25299 58.18803 198.42764 58.18803 c +197.6023 58.18803 196.93323 57.51895 196.93323 56.69362 c +196.93323 55.86827 197.6023 55.1992 198.42764 55.1992 c +199.25299 55.1992 199.92206 55.86827 199.92206 56.69362 c +h +198.42764 56.69362 m +B +Q +q +1 0 0 1 198.425 56.693 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -198.425 -56.693 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +1.49442 0.0 m +1.49442 0.82533 0.82533 1.49442 0.0 1.49442 c +-0.82533 1.49442 -1.49442 0.82533 -1.49442 0.0 c +-1.49442 -0.82533 -0.82533 -1.49442 0.0 -1.49442 c +0.82533 -1.49442 1.49442 -0.82533 1.49442 0.0 c +h +0.0 0.0 m +B +Q +q +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +Q +Q +q +0 G +0 g +q +0 G +0 g +171.57527 0.0 m +171.57527 0.82533 170.9062 1.49442 170.08086 1.49442 c +169.25551 1.49442 168.58644 0.82533 168.58644 0.0 c +168.58644 -0.82533 169.25551 -1.49442 170.08086 -1.49442 c +170.9062 -1.49442 171.57527 -0.82533 171.57527 0.0 c +h +170.08086 0.0 m +B +Q +q +1 0 0 1 170.079 0 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -170.079 0 cm +Q +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 60.213 103.058 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -376.979 -252.664 cm +BT +/F11 9.9626 Tf 376.979 252.664 Td [(D)]TJ +0 g 0 G +ET +1 0 0 1 376.979 252.664 cm +Q +1 0 0 1 -60.213 -103.058 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 116.906 103.058 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -433.672 -252.664 cm +BT +/F11 9.9626 Tf 433.672 252.664 Td [(I)]TJ +0 g 0 G +ET +1 0 0 1 433.672 252.664 cm +Q +1 0 0 1 -116.906 -103.058 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 173.599 103.058 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -490.365 -252.664 cm +BT +/F11 9.9626 Tf 490.365 252.664 Td [(J)]TJ +0 g 0 G +ET +1 0 0 1 490.365 252.664 cm +Q +1 0 0 1 -173.599 -103.058 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 230.291 103.058 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -547.057 -252.664 cm +BT +/F11 9.9626 Tf 547.057 252.664 Td [(C)]TJ +0 g 0 G +ET +1 0 0 1 547.057 252.664 cm +Q +1 0 0 1 -230.291 -103.058 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 60.213 46.365 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -376.979 -195.971 cm +BT +/F11 9.9626 Tf 376.979 195.971 Td [(L)]TJ +0 g 0 G +ET +1 0 0 1 376.979 195.971 cm +Q +1 0 0 1 -60.213 -46.365 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 116.906 74.712 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -433.672 -224.318 cm +BT +/F11 9.9626 Tf 433.672 224.318 Td [(M)]TJ +0 g 0 G +ET +1 0 0 1 433.672 224.318 cm +Q +1 0 0 1 -116.906 -74.712 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 201.945 46.365 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -518.711 -195.971 cm +BT +/F11 9.9626 Tf 518.711 195.971 Td [(K)]TJ +0 g 0 G +ET +1 0 0 1 518.711 195.971 cm +Q +1 0 0 1 -201.945 -46.365 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 3.52 -10.328 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -320.286 -139.278 cm +BT +/F11 9.9626 Tf 320.286 139.278 Td [(A)]TJ +0 g 0 G +ET +1 0 0 1 320.286 139.278 cm +Q +1 0 0 1 -3.52 10.328 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 173.599 -10.328 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -490.365 -139.278 cm +BT +/F11 9.9626 Tf 490.365 139.278 Td [(B)]TJ +0 g 0 G +ET +1 0 0 1 490.365 139.278 cm +Q +1 0 0 1 -173.599 10.328 cm +Q +0 g 0 G +Q +Q +n +Q +0 g 0 G +1 0 0 1 -316.766 -149.606 cm +BT +/F8 9.9626 Tf 295.147 43.246 Td [(1)]TJ +0 g 0 G +ET + +endstream +endobj +43 0 obj +<< +/D [ 38 0 R /XYZ 44.638000 830.996000 null ] +>> +endobj +44 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 793.134000 null ] +>> +endobj +45 0 obj +<< +/Type /Font +/BaseFont /DMPNDY+CMR17 +/FirstChar 20 +/FontDescriptor 116 0 R +/LastChar 124 +/Subtype /Type1 +/Widths 100 0 R +>> +endobj +46 0 obj +<< +/Type /Font +/BaseFont /RLYLLI+CMR12 +/FirstChar 20 +/FontDescriptor 114 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 99 0 R +>> +endobj +47 0 obj +<< +/Type /Font +/BaseFont /OLUUSQ+CMBX12 +/FirstChar 20 +/FontDescriptor 104 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 98 0 R +>> +endobj +48 0 obj +<< +/Type /Font +/BaseFont /HJGMPZ+CMBX9 +/FirstChar 80 +/FontDescriptor 106 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 97 0 R +>> +endobj +49 0 obj +<< +/Type /Font +/BaseFont /SJNHCC+CMR9 +/FirstChar 20 +/FontDescriptor 124 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 96 0 R +>> +endobj +50 0 obj +<< +/Type /Font +/BaseFont /FOJGQS+CMTI9 +/FirstChar 44 +/FontDescriptor 128 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 95 0 R +>> +endobj +51 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 578.876000 null ] +>> +endobj +52 0 obj +<< +/Type /Font +/BaseFont /ZOXHGW+CMBX10 +/FirstChar 20 +/FontDescriptor 102 0 R +/LastChar 117 +/Subtype /Type1 +/Widths 94 0 R +>> +endobj +53 0 obj +<< +/Type /Font +/BaseFont /FWTCDB+CMBXTI10 +/FirstChar 50 +/FontDescriptor 108 0 R +/LastChar 116 +/Subtype /Type1 +/Widths 93 0 R +>> +endobj +54 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 475.492000 null ] +>> +endobj +55 0 obj +<< +/Type /Font +/BaseFont /XGGYUK+CMR10 +/FirstChar 12 +/FontDescriptor 112 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 92 0 R +>> +endobj +56 0 obj +<< +/Type /Font +/BaseFont /ZOBLSI+CMMI10 +/FirstChar 65 +/FontDescriptor 110 0 R +/LastChar 126 +/Subtype /Type1 +/Widths 91 0 R +>> +endobj +57 0 obj +<< +/Type /Font +/BaseFont /OAQJWM+CMSY10 +/FirstChar 0 +/FontDescriptor 126 0 R +/LastChar 106 +/Subtype /Type1 +/Widths 90 0 R +>> +endobj +58 0 obj +<< +/Type /Font +/BaseFont /ZRYLLV+CMR7 +/FirstChar 49 +/FontDescriptor 120 0 R +/LastChar 65 +/Subtype /Type1 +/Widths 89 0 R +>> +endobj +59 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 402.234000 null ] +>> +endobj +60 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 333.530000 null ] +>> +endobj +61 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 261.836000 null ] +>> +endobj +62 0 obj +<< +/D [ 38 0 R /XYZ 70.544000 211.915000 null ] +>> +endobj +63 0 obj +<< +/D [ 38 0 R /XYZ 70.544000 152.357000 null ] +>> +endobj +64 0 obj +<< +/Type /Pages +/Count 2 +/Kids [ 38 0 R 72 0 R ] +>> +endobj +65 0 obj +<< +/Type /Annot +/A << +/D (Hfootnote.1) +/S /GoTo +>> +/Border [ 0 0 0 ] +/C [ 1 0 0 ] +/H /I +/Rect [ 508.854000 758.209000 515.316000 770.456000 ] +/Subtype /Link +>> +endobj +66 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec.eu/sijanec/sola-gimb-2) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 485.877000 746.185000 550.634000 757.310000 ] +/Subtype /Link +>> +endobj +67 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec/sola-gimb-2/src/branch/master/mat/domace_naloge/21/) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 237.402000 733.953000 350.356000 745.908000 ] +/Subtype /Link +>> +endobj +68 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (http://razor.arnes.si/~asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.pdf) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 140.675000 722.275000 550.634000 733.400000 ] +/Subtype /Link +>> +endobj +69 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/mat/domace_naloge/21/dokument.pdf) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 88.560000 710.043000 550.634000 721.998000 ] +/Subtype /Link +>> +endobj +70 0 obj +<< +/Type /Annot +/A << +/D (Hfootnote.2) +/S /GoTo +>> +/Border [ 0 0 0 ] +/C [ 1 0 0 ] +/H /I +/Rect [ 330.044000 608.009000 336.506000 620.048000 ] +/Subtype /Link +>> +endobj +71 0 obj +<< +/ColorSpace 3 0 R +/ExtGState 1 0 R +/Font << +/F40 75 0 R +/F45 82 0 R +/F46 80 0 R +/F60 83 0 R +/F7 58 0 R +/F71 47 0 R +/F8 55 0 R +>> +/Pattern 2 0 R +/ProcSet [ /PDF /Text ] +>> +endobj +72 0 obj +<< +/Type /Page +/Annots [ 65 0 R 66 0 R 76 0 R 67 0 R 68 0 R 77 0 R 69 0 R 78 0 R 70 0 R ] +/Contents 73 0 R +/MediaBox [ 0 0 595.276000 841.890000 ] +/Parent 64 0 R +/Resources 71 0 R +>> +endobj +73 0 obj +<< +/Length 3869 +>> +stream +0 g 0 G +0 g 0 G +BT +/F71 14.3462 Tf 45.638 783.171 Td [(2)-1125(Zaklju)31(\024)531(cek)]TJ/F8 9.9626 Tf 0 -21.821 Td [(T)83(a)-375(dokumen)28(t)-376(je)-376(infor)1(m)-1(ati)1(vne)-376(nara)28(v)28(e)-376(in)-376(se)-375(lahk)28(o)-323(\024)447(se)-376(spreminja.)-571(Na)-55(jno)27(v)28(ej)53(\024)447(sa)-375(razli)27(\024)473(cica,)-387(torej)-375(PDFji)-376(in)-375(L)]TJ/F7 6.9738 Tf 441.285 2.043 Td [(A)]TJ/F8 9.9626 Tf 4.386 -2.043 Td [(T)]TJ 5.535 -2.144 Td [(E)]TJ 5.534 2.144 Td [(X)]TJ/F7 6.9738 Tf 7.472 3.616 Td [(1)]TJ/F8 9.9626 Tf 8.212 -3.616 Td [(izv)28(orna)]TJ -472.424 -11.955 Td [(k)28(o)-28(da,)-481(zgo)-28(do)28(vina)-451(spremem)28(b)-452(in)-451(prej)53(\024)447(snje)-451(razli)27(\024)473(cice,)-481(je)-452(na)-451(v)28(oljo)-451(v)-452(mo)-55(jem)-399(\024)447(solsk)28(em)-451(Git)-452(rep)-28(ozitorij)1(u)-452(na)]TJ/F40 9.9626 Tf 441.236 0 Td [(https://git.)]TJ -441.236 -11.955 Td [(sijanec.eu/sijanec/sola-)-50(gimb-)-50(2)]TJ/F8 9.9626 Tf 160.576 0 Td [(v)-268(mapi)-268(/mat/domace)]TJ +ET +q +1 0 0 1 298.772 737.639 cm +[]0 d 0 J 0.398 w 0 0 m 2.989 0 l S +Q +BT +/F8 9.9626 Tf 301.76 737.44 Td [(naloge/21/.)-423(P)28(o)28(v)28(eza)27(v)56(a)-268(za)-268(ogled)-268(zadnje)-268(razli)28(\024)472(cice)-268(tega)-268(doku-)]TJ -256.122 -11.955 Td [(men)28(ta)-231(v)-231(PDF)-230(obliki)-231(je)]TJ/F40 9.9626 Tf 96.033 0 Td [(http://razor.arnes.si/)]TJ 115.068 -1.93 Td [(~)]TJ 5.23 1.93 Td [(asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.)]TJ -216.331 -11.955 Td [(pdf)]TJ/F8 9.9626 Tf 17.905 0 Td [(in/ali)]TJ/F40 9.9626 Tf 26.013 0 Td [(https://git.sijanec.eu/sijanec/sola-)-50(gimb-)-50(2/raw/branch/master/mat/domace_naloge/21/dokument.)]TJ -43.918 -11.956 Td [(pdf)]TJ/F8 9.9626 Tf 15.691 0 Td [(.)]TJ/F71 14.3462 Tf -15.691 -32.945 Td [(Razhro)59(\024)504(s)31(\024)531(cev)63(alne)-375(inf)-1(orma)1(cij)-1(e)]TJ/F8 9.9626 Tf 0 -21.821 Td [(T)83(e)-307(informacije)-307(so)-307(generirane,)-313(k)28(er)-307(je)-307(omogo)28(\024)472(ceno)-307(razhro)52(\024)448(s)27(\024)473(ce)-1(v)56(anje.)-436(Pred)-307(ob)-55(ja)28(v)27(o)-307(dokumen)28(ta)-307(izklopite)-307(razhro)53(\024)447(s)28(\024)472(cev)55(anje.)-435(T)83(o)]TJ 0 -11.955 Td [(naredite)-333(tak)28(o,)-334(da)-333(nasta)28(vite)-334(uk)56(az)]TJ/F40 9.9626 Tf 143.158 0 Td [(razhroscevanje)]TJ/F8 9.9626 Tf 76.545 0 Td [(na)-333(0)-334(v)-333(za)28(\024)472(cetku)-333(dokumen)27(ta.)]TJ -204.759 -11.956 Td [(Gra\014)-333(ima)-56(jo)-333(natan)28(\024)472(cnost)-333(100)-334(to)28(\024)472(ck)-333(na)-333(graf.)]TJ 0 -11.955 Td [(Konec)-333(generiranja)-334(doku)1(m)-1(en)28(ta:)-444(20.)-333(dec)-1(em)28(b)-28(er)-333(2020)-333(ob)-334(00:23:37)]TJ/F7 6.9738 Tf 270.458 3.616 Td [(2)]TJ/F8 9.9626 Tf -270.458 -15.571 Td [(Dokumen)28(t)-334(se)-333(je)-333(generiral)-334(4)-333(s.)]TJ +0 g 0 G +ET +q +1 0 0 1 45.638 101.61 cm +[]0 d 0 J 0.398 w 0 0 m 201.597 0 l S +Q +BT +/F46 5.9776 Tf 56.73 94.968 Td [(1)]TJ/F45 7.9701 Tf 4.151 -2.813 Td [(Za)-354(izdela)29(v)30(o)-354(dokumen)29(ta)-354(p)-29(otrebujete)]TJ/F60 7.9701 Tf 133.384 0 Td [(TeXLive)-531(2020)]TJ/F45 7.9701 Tf 50.81 0 Td [(.)]TJ/F46 5.9776 Tf -188.345 -6.691 Td [(2)]TJ/F45 7.9701 Tf 4.151 -2.813 Td [(T)89(o)-350(ne)-349(nak)59(azuje)-350(dejansk)30(ega)-320(\024)502(casa,)-351(k)30(o)-350(je)-349(bil)-350(dokumen)30(t)-350(napisan,)-350(tem)29(v)30(e)29(\024)502(c)-320(\024)502(cas,)-350(k)29(o)-349(je)-350(bi)-349(dokumen)29(t)-349(generiran)-350(v)-349(PDF/D)29(VI)-349(oblik)29(o.)-470(Isto)-350(v)30(elja)]TJ -15.243 -9.465 Td [(za)-354(datum)-354(v)-354(gla)29(vi)-354(dokumen)30(ta.)]TJ 113.147 2.015 Td [(\024)]TJ -0.941 -2.015 Td [(Ce)-354(b)-30(erete)-354(direktno)-354(iz)-354(LaT)88(eX)-354(datotek)30(e,)-354(b)-30(o)-354(to)-354(v)29(edno)-354(dana)56(\024)476(snji)-355(da)1(tum)-1(.)]TJ +0 g 0 G +0 g 0 G +/F8 9.9626 Tf 137.303 -29.94 Td [(2)]TJ +0 g 0 G +ET + +endstream +endobj +74 0 obj +<< +/D [ 72 0 R /XYZ 44.638000 830.996000 null ] +>> +endobj +75 0 obj +<< +/Type /Font +/BaseFont /IJKLSG+CMTT10 +/FirstChar 45 +/FontDescriptor 130 0 R +/LastChar 126 +/Subtype /Type1 +/Widths 88 0 R +>> +endobj +76 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec.eu/sijanec/sola-gimb-2) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 44.642000 733.953000 204.541000 745.908000 ] +/Subtype /Link +>> +endobj +77 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (http://razor.arnes.si/~asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.pdf) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 44.642000 710.043000 62.325000 721.998000 ] +/Subtype /Link +>> +endobj +78 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/mat/domace_naloge/21/dokument.pdf) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 44.642000 698.364000 62.325000 708.659000 ] +/Subtype /Link +>> +endobj +79 0 obj +<< +/D [ 72 0 R /XYZ 45.638000 686.561000 null ] +>> +endobj +80 0 obj +<< +/Type /Font +/BaseFont /XTJZVU+CMR6 +/FirstChar 49 +/FontDescriptor 118 0 R +/LastChar 50 +/Subtype /Type1 +/Widths 87 0 R +>> +endobj +81 0 obj +<< +/D [ 72 0 R /XYZ 60.881000 101.620000 null ] +>> +endobj +82 0 obj +<< +/Type /Font +/BaseFont /TPJKYX+CMR8 +/FirstChar 20 +/FontDescriptor 122 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 86 0 R +>> +endobj +83 0 obj +<< +/Type /Font +/BaseFont /ISIMRT+CMTT8 +/FirstChar 48 +/FontDescriptor 132 0 R +/LastChar 118 +/Subtype /Type1 +/Widths 85 0 R +>> +endobj +84 0 obj +<< +/D [ 72 0 R /XYZ 60.881000 92.115000 null ] +>> +endobj +85 0 obj +[ 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 ] +endobj +86 0 obj +[ 531.300000 531.300000 531.300000 795.800000 472.200000 531.300000 767.400000 826.400000 531.300000 958.700000 +1076.800000 826.400000 295.100000 295.100000 531.300000 885.400000 531.300000 885.400000 826.400000 295.100000 +413.200000 413.200000 531.300000 826.400000 295.100000 354.200000 295.100000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 295.100000 295.100000 +295.100000 826.400000 501.700000 501.700000 826.400000 795.800000 752.100000 767.400000 811.100000 722.600000 +693.100000 833.500000 795.800000 382.600000 545.500000 825.400000 663.600000 972.900000 795.800000 826.400000 +722.600000 826.400000 781.600000 590.300000 767.400000 795.800000 795.800000 1091 795.800000 795.800000 +649.300000 295.100000 531.300000 295.100000 531.300000 295.100000 295.100000 531.300000 590.300000 472.200000 +590.300000 472.200000 324.700000 531.300000 590.300000 295.100000 324.700000 560.800000 295.100000 885.400000 +590.300000 531.300000 590.300000 560.800000 414.100000 419.100000 413.200000 590.300000 560.800000 767.400000 +560.800000 560.800000 472.200000 ] +endobj +87 0 obj +[ 611.100000 611.100000 ] +endobj +88 0 obj +[ 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 ] +endobj +89 0 obj +[ 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 323.400000 +323.400000 323.400000 877 538.700000 538.700000 877 843.300000 ] +endobj +90 0 obj +[ 777.800000 277.800000 777.800000 500 777.800000 500 777.800000 777.800000 777.800000 777.800000 +777.800000 777.800000 777.800000 1000 500 500 777.800000 777.800000 777.800000 777.800000 +777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 1000 1000 +777.800000 777.800000 1000 1000 500 500 1000 1000 1000 777.800000 +1000 1000 611.100000 611.100000 1000 1000 1000 777.800000 275 1000 +666.700000 666.700000 888.900000 888.900000 0 0 555.600000 555.600000 666.700000 500 +722.200000 722.200000 777.800000 777.800000 611.100000 798.500000 656.800000 526.500000 771.400000 527.800000 +718.700000 594.900000 844.500000 544.500000 677.800000 762 689.700000 1200.900000 820.500000 796.100000 +695.600000 816.700000 847.500000 605.600000 544.600000 625.800000 612.800000 987.800000 713.300000 668.300000 +724.700000 666.700000 666.700000 666.700000 666.700000 666.700000 611.100000 611.100000 444.400000 444.400000 +444.400000 444.400000 500 500 388.900000 388.900000 277.800000 ] +endobj +91 0 obj +[ 750 758.500000 714.700000 827.900000 738.200000 643.100000 786.300000 831.300000 439.600000 554.500000 +849.300000 680.600000 970.100000 803.500000 762.800000 642 790.600000 759.300000 613.200000 584.400000 +682.800000 583.300000 944.400000 828.500000 580.600000 682.600000 388.900000 388.900000 388.900000 1000 +1000 416.700000 528.600000 429.200000 432.800000 520.500000 465.600000 489.600000 477 576.200000 +344.500000 411.800000 520.600000 298.400000 878 600.200000 484.700000 503.100000 446.400000 451.200000 +468.800000 361.100000 572.500000 484.700000 715.900000 571.500000 490.300000 465.100000 322.500000 384 +636.500000 500 ] +endobj +92 0 obj +[ 555.600000 555.600000 833.300000 833.300000 277.800000 305.600000 500 500 500 500 +500 750 444.400000 500 722.200000 777.800000 500 902.800000 1013.900000 777.800000 +277.800000 277.800000 500 833.300000 500 833.300000 777.800000 277.800000 388.900000 388.900000 +500 777.800000 277.800000 333.300000 277.800000 500 500 500 500 500 +500 500 500 500 500 500 277.800000 277.800000 277.800000 777.800000 +472.200000 472.200000 777.800000 750 708.300000 722.200000 763.900000 680.600000 652.800000 784.700000 +750 361.100000 513.900000 777.800000 625 916.700000 750 777.800000 680.600000 777.800000 +736.100000 555.600000 722.200000 750 750 1027.800000 750 750 611.100000 277.800000 +500 277.800000 500 277.800000 277.800000 500 555.600000 444.400000 555.600000 444.400000 +305.600000 500 555.600000 277.800000 305.600000 527.800000 277.800000 833.300000 555.600000 500 +555.600000 527.800000 391.700000 394.400000 388.900000 555.600000 527.800000 722.200000 527.800000 527.800000 +444.400000 ] +endobj +93 0 obj +[ 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 355.600000 355.600000 +386.100000 885.500000 591.100000 591.100000 885.500000 865.500000 816.700000 826.700000 875.500000 756.700000 +727.200000 895.300000 896.100000 471.700000 610.600000 895 697.800000 1072.800000 896.100000 855 +787.200000 855 859.400000 650 796.100000 880.800000 865.500000 1160 865.500000 865.500000 +708.900000 356.100000 620.600000 356.100000 591.100000 355.600000 355.600000 591.100000 532.200000 532.200000 +591.100000 532.200000 400 532.200000 591.100000 355.600000 355.600000 532.200000 296.700000 944.400000 +650 591.100000 591.100000 532.200000 501.700000 486.900000 385 ] +endobj +94 0 obj +[ 575 575 575 869.400000 511.100000 597.200000 830.600000 894.400000 575 1041.700000 +1169.400000 894.400000 319.400000 350 602.800000 958.300000 575 958.300000 894.400000 319.400000 +447.200000 447.200000 575 894.400000 319.400000 383.300000 319.400000 575 575 575 +575 575 575 575 575 575 575 575 319.400000 319.400000 +350 894.400000 543.100000 543.100000 894.400000 869.400000 818.100000 830.600000 881.900000 755.600000 +723.600000 904.200000 900 436.100000 594.400000 901.400000 691.700000 1091.700000 900 863.900000 +786.100000 863.900000 862.500000 638.900000 800 884.700000 869.400000 1188.900000 869.400000 869.400000 +702.800000 319.400000 602.800000 319.400000 575 319.400000 319.400000 559 638.900000 511.100000 +638.900000 527.100000 351.400000 575 638.900000 319.400000 351.400000 606.900000 319.400000 958.300000 +638.900000 575 638.900000 606.900000 473.600000 453.600000 447.200000 638.900000 ] +endobj +95 0 obj +[ 314.800000 367.300000 314.800000 524.700000 524.700000 524.700000 524.700000 524.700000 524.700000 524.700000 +524.700000 524.700000 524.700000 524.700000 314.800000 314.800000 314.800000 787 524.700000 524.700000 +787 763 722.500000 734.600000 775 696.300000 670.100000 794.100000 763 395.700000 +538.900000 789.200000 643.800000 920.400000 763 787 696.300000 787 748.800000 577.200000 +734.600000 763 763 1025.300000 763 763 629.600000 314.800000 527.800000 314.800000 +524.700000 314.800000 314.800000 524.700000 472.200000 472.200000 524.700000 472.200000 314.800000 472.200000 +524.700000 314.800000 314.800000 472.200000 262.300000 839.500000 577.200000 524.700000 524.700000 472.200000 +432.900000 419.800000 341.100000 550.900000 472.200000 682.100000 473.800000 498.500000 419.800000 ] +endobj +96 0 obj +[ 513.900000 513.900000 513.900000 770.700000 456.800000 513.900000 742.300000 799.400000 513.900000 927.800000 +1042 799.400000 285.500000 285.500000 513.900000 856.500000 513.900000 856.500000 799.400000 285.500000 +399.700000 399.700000 513.900000 799.400000 285.500000 342.600000 285.500000 513.900000 513.900000 513.900000 +513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 285.500000 285.500000 +285.500000 799.400000 485.300000 485.300000 799.400000 770.700000 727.900000 742.300000 785 699.400000 +670.800000 806.500000 770.700000 371 528.100000 799.200000 642.300000 942 770.700000 799.400000 +699.400000 799.400000 756.500000 571 742.300000 770.700000 770.700000 1056.200000 770.700000 770.700000 +628.100000 285.500000 513.900000 285.500000 513.900000 285.500000 285.500000 513.900000 571 456.800000 +571 457.200000 314 513.900000 571 285.500000 314 542.400000 285.500000 856.500000 +571 513.900000 571 542.400000 402 405.400000 399.700000 571 542.400000 742.300000 +542.400000 542.400000 456.800000 ] +endobj +97 0 obj +[ 808 888.900000 886.700000 657.400000 823.100000 908.600000 892.900000 1221.600000 892.900000 892.900000 +723.100000 328.700000 617.600000 328.700000 591.700000 328.700000 328.700000 575.200000 657.400000 525.900000 +657.400000 543 361.600000 591.700000 657.400000 328.700000 361.600000 624.500000 328.700000 986.100000 +657.400000 591.700000 657.400000 624.500000 488.100000 466.800000 460.200000 657.400000 624.500000 854.600000 +624.500000 624.500000 525.900000 ] +endobj +98 0 obj +[ 562.500000 562.500000 562.500000 849.500000 500 574.100000 812.500000 875 562.500000 1018.500000 +1143.500000 875 312.500000 342.600000 581 937.500000 562.500000 937.500000 875 312.500000 +437.500000 437.500000 562.500000 875 312.500000 375 312.500000 562.500000 562.500000 562.500000 +562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 312.500000 312.500000 +342.600000 875 531.200000 531.200000 875 849.500000 799.800000 812.500000 862.300000 738.400000 +707.200000 884.300000 879.600000 419 581 880.800000 675.900000 1067.100000 879.600000 844.900000 +768.500000 844.900000 839.100000 625 782.400000 864.600000 849.500000 1162 849.500000 849.500000 +687.500000 312.500000 581 312.500000 562.500000 312.500000 312.500000 546.900000 625 500 +625 513.300000 343.700000 562.500000 625 312.500000 343.700000 593.700000 312.500000 937.500000 +625 562.500000 625 593.700000 459.500000 443.700000 437.500000 625 593.700000 812.500000 +593.700000 593.700000 500 ] +endobj +99 0 obj +[ 489.600000 489.600000 489.600000 734 435.200000 489.600000 707.200000 761.600000 489.600000 883.800000 +992.600000 761.600000 272 272 489.600000 816 489.600000 816 761.600000 272 +380.800000 380.800000 489.600000 761.600000 272 326.400000 272 489.600000 489.600000 489.600000 +489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 272 272 +272 761.600000 462.400000 462.400000 761.600000 734 693.400000 707.200000 747.800000 666.200000 +639 768.300000 734 353.200000 503 761.200000 611.800000 897.200000 734 761.600000 +666.200000 761.600000 720.600000 544 707.200000 734 734 1006 734 734 +598.400000 272 489.600000 272 489.600000 272 272 489.600000 544 435.200000 +544 435.200000 299.200000 489.600000 544 272 299.200000 516.800000 272 816 +544 489.600000 544 516.800000 380.800000 386.200000 380.800000 544 516.800000 707.200000 +516.800000 516.800000 435.200000 ] +endobj +100 0 obj +[ 458.600000 458.600000 458.600000 693.300000 406.400000 458.600000 667.600000 719.800000 458.600000 837.200000 +941.700000 719.800000 249.600000 249.600000 458.600000 772.100000 458.600000 772.100000 719.800000 249.600000 +354.100000 354.100000 458.600000 719.800000 249.600000 301.900000 249.600000 458.600000 458.600000 458.600000 +458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 249.600000 249.600000 +249.600000 719.800000 432.500000 432.500000 719.800000 693.300000 654.300000 667.600000 706.600000 628.200000 +602.100000 726.300000 693.300000 327.600000 471.500000 719.400000 576 850 693.300000 719.800000 +628.200000 719.800000 680.500000 510.900000 667.600000 693.300000 693.300000 954.500000 693.300000 693.300000 +563.100000 249.600000 458.600000 249.600000 458.600000 249.600000 249.600000 458.600000 510.900000 406.400000 +510.900000 406.400000 275.800000 458.600000 510.900000 249.600000 275.800000 484.700000 249.600000 772.100000 +510.900000 458.600000 510.900000 484.700000 354.100000 359.400000 354.100000 510.900000 484.700000 667.600000 +484.700000 484.700000 406.400000 458.600000 917.200000 ] +endobj +101 0 obj +<< +/Length 14262 +/Length1 1854 +/Length2 12408 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMBX10 003.002 +%%Title: CMBX10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMBX10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMBX10 known{/CMBX10 findfont dup/UniqueID known{dup +/UniqueID get 5000768 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /ZOXHGW+CMBX10 def +/FontBBox {-56 -250 1164 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX10.) readonly def +/FullName (CMBX10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Bold) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 86 /V put +dup 90 /Z put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 58 /colon put +dup 44 /comma put +dup 101 /e put +dup 53 /five put +dup 52 /four put +dup 103 /g put +dup 45 /hyphen put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 110 /n put +dup 57 /nine put +dup 111 /o put +dup 49 /one put +dup 41 /parenright put +dup 46 /period put +dup 114 /r put +dup 115 /s put +dup 54 /six put +dup 116 /t put +dup 51 /three put +dup 50 /two put +dup 117 /u put +dup 48 /zero put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{=מ7ڄĒKV"~Pr-=L$wcrlVcN &'{%Gf#ɨ_i#SXd+U*|:1m=⾝~6/aGLf#NOS}ERs{[.-jj|tm\: x8PbPh[_9t237,I2B8J0msUWQdX!??Q4eRH ]ӊ.p_?8:o:UuDZ[m^/a4l4ȒtL<~&WwLa9gPqhQΠjv)]sqR"ЯDž#eZKPHrF"tw;*l5 FF BW1S!2*`8:XlUI?[wc &Z`ѩް sdHeF'*s ЁTd9Baऋ[a$g1f\0 7aR^(Lj#!mw2#nr$|TL]{X`4.Gw|P2BgܴwbkF Nfj;d?#l"+6g{* ,SQ2&'n\`]Q:ݹ6ln0b9m],/ڨ\Y$6[+UE#ƸMO( ϲ.DL\*@z3'&Е62%+(k`D/k(ɒkpt`^Bձ\H~Y_˒c%~(! +Jvs}9qw{6sΓM &Q-p'&M&7tZ\r|5M5"*<ΕD,Lfj+ʾɝ"x0h#u[@}"փ +dIE* , j]v.tx kEYl}d.-eJ C=KD jnI"yX D|&k>ixbu?ѱ ,VszAc  G 7H`Ď'Ķ)r +ҎG֯Z~C +U. EC3}henħE!C[xxnCq##Ti.iW/i*?K`ɞ}g;ο@>Hmn91-[ tj7 3Myz,?Z@RPBi>vVF\Ahko8*NIQv94z4m n8)Db]ٞ>=e3Q-'0y#JW 0݈7\t53=μغ|[R>5Ir xhhy!kVSȮ7I ThaToɁ( WdsUI=]әM|dJ\YRGy4d(N{"l\ ]kȮ8V +A==r V^*mx(e=\ʰ!Bb8йX ֙Mاi +p)r ~1 ׏<;d,^6f,PpΨ|kR87>i e ^NҢ@h`[BF,L%mUBe*$nox3K V$[[fU;4Qjggo !%Uh(ԝ 2ן, O[Ј_\?Wt<ȅ/; "Rm®)E\rW1 ђoy։)B̊\@gJ?m Eqqٔ84^Da97 㤸{ɧZ!_`-rlُ*qٺ؊t LCg +:nbJ Lqrj5^9NRVJ7en%ϰYƕut4ƸF΋ėvQj6%c#~ O e҉'aS1e F u s^i"yw,~ C~Rƒ`,j"+ȬKk Q5IjEbT)">wv|$.4*@s? +ipb\r 9AZx; +~c/Hϫ+%Bm-7 S2*Eoq;ջ/6[ LoT F>=8$d�otu[QEU!\ސswE6W׍ Q8 < %xl& +~Bh=F"2\],ӱ@re(lF*ŊY7ٍ` pS?%i|ˋt|[b<7M=7snѪw24ׅd/bD~[)g43G&/pN%;t :p }wM/{ Ϭ0.bj!Z@< zyl)" KUmoҙ2c})z:<ۄF oŃGLyT7;$^>,Y.Fܔ%Gj,&U&S0Sg\+h8.!ɧ?4}+dC֡;GľZ#AeqE>RL K@$|DW/PN^Е3*0KƷ)}JMg"$58_gCs2C7,K՞?λ)效4 1#oIXcP~1 a^46Ӕ)jOa a ^oy^&9ߗǫ%<mLLN9y a)U)D.?9f4R2X w#_RzZu)q{ 3hSߛPDŒx)8%֗Q]9 rf!:wn; @AK ?gNq48)ďT cݨRSK:k4S};3<ʵ< SU^΋opf"5@A bq]W*VOMt,Sg__]0-GXz+G|f_r]EGaqۜgm ]Mnv(D/LbdR;G??aJVTy^ۭgm~`Z2Ј|{AJcQR qnd(ۜyoD`TJCHzRaPהxƜC@Mp<[0?e;ZT+R[kgϧa"q^b *r|::VNBOUzHbaGDH$6$4tLJb +INIC֜qa.K,ƭ >Cy +l7'mf &o1:i҅u meNπ@1; BB}Z(P3>f`mwyج]}L0qoJ 4VCBBLx1s_(\2ZZ. +G?eu8 3p8Dq,ƾ&[3M st/ϪT ;C;]DDu0 դQ[=zʥP*KCUqk#?k )M GRWI "RY7Wư0+@γTNT?aJxy~8up| ?5$[)sNd<#UM(8 bEQHt.f6֡U3=a^~C]䨀2"nC_FJ82{[c1 fXɉ{IڅF ʨ0GON :bպF3ܞ_(8::`xyVZ$݊gFԶܛbHQ[Щ!oݛ "(4m;>QEW;+/f|<<*im${TL֝*\!1 -m~8aeTpc\'gխf7!%;gNs(rkӝQ'1r4ǘKD^Fy@zEoUd9YBr?SU8ܹ/]~CINp`&$/sau:2]zDt*IWbc|[1y@H וOD8R8BŮ1$CG?jMt&Ic7t!DG5RyXv[!y#M+^e+i@sշu3VN4P{iSъW3<9xbt3DB^(x;OL#Л0ٚ?xNpK<9V́`Y-Q? ;~f㸓$oW6CDaxdU/a65bnof=7c8H%蠛 sIn^~L7 Bz @ˑ>9YCFF(<T^ɨ)aI=X4 +@;TE76c,P\R<SQ<"%;S_qy j8~%#Þ %~;QcK B-|IeNRQʡ,`_Mc;0]bv8V=NVč"lc;Yw=ֱ3r~STw.f7 qPa ;9ܪy^伜DmG ζS:e80zm$k}$Yµ}i^,i)c/^vŲ/spMQ*S*zuA;9-q)žl"AV^:QgNrt9ѨJHmhDDg@e0AvyI }^-Fh>0jƜ;,~$.U.y XSG %Q|Qj~3wE0 +$pW={K(]WKS="K8OQEw%~Dovh<ĀDDIv!PQ4dҺ6*1d(G XY;e㡒]/5n,7SOD^"%Z%Ҭ4I:66Dqոw}NҪ_Պ½ iYJt`'K>"ɕD{^M0I()IB>ZlL3Z*膒jnZhts280jOXUm0n<{Dt\5`"X"g^)Ǖ\= +fN<ﳭPs*s5B P\l$?wW{֧'0[5ጐQ^/=|8/Rl5IGLk!cvIupaa{|&3C;Zzj1|uArǝkmZp9r"BhUY/sHqm,'ebyS Fn"8~(f\; G !1xaST\Hy &0zc-#>ރ >uUcT\o髚ZbY9iv]̕2|Jՙ5ÃTI;-ˋ:XnDio_ \JO_.,-"~ 5BUsWltAP٫"2CT"[E YDz'{?ѩۍ)_6%$R+Gu_CY'kr~)Þb1u2k6 iJfawoؒc& [xj"e^y`bJh^tQat0v0Oj%P;?a<J,Ewz*PZP4Xӊ1un\Z܈ `VIs#衽ep^Oę^K}>R} #RL*oP/cvrneȍwS49 gҭZf#*QL5E&͑*Pu\&Z ~H?RyWfmKK0,ksy}5bH ?7&y8?<.u(#҇/d:y%ʉ +vg=?`'FG.h̶@[m\k7jMŽ靈@Rt 'ר&{>'[&ʒw< 5%9hv z}a1U_X6ze?PHu;%$<9N=BGϐHZHlDD +g!X;E*Tz^ .殾򳿃x<#ɴ/ ސkg51._^x|'OVYLN{q 4μVJWP+cKfO7Ku#Kl9xÕ%qRdA5=A#GJ۶ ? pϜ.|៣!ZV"XBu-:?s +p[ KIw^-Rئa:UGYTCYʛ ņ4 1Mhߗ+\,|jTpY:JE!^qy%IC 0~u2vA ;<1[ ZD]gq1qtv`9%$CBvMdLj)䥮?VXT{iOaJo +l"JE;-۰\.KTodp=y%?3ymW{l mtcMXa;vms >|A#X$5m2AӓHvw#q5;'bDishwi5\V;GRҕh. ݷT>ȅ0#y$&x\oӸJIg zDނc/JsEm!ųSASj|-tBn +Hcc/n* MxAXJA % XXZgP{]F3  ASy}\ U2dPDq)AŏGTSs#ewJg;Tqf&WV8$-ӵw@H>[1Å +r%[ j13wgVI.2ӱHP#)Rf?""u.ʳ"T4!k:W⎺x54͛Bd@dB3Y"KsH,zPyJO2 4A??R,SxX}(-в\Vt)XOI#djhsZ@9WtLb%bkd!K x0"Տo!1 *zJ~.s;(a}HYS-7&X) /(q.~4S1YboR L!G\|QeY~Ö܆+G3`%{k$Ia% ?dr,6/.9*Uxksjө~f( !pXreza?6;mݘBt~Mu !RJt !U}s!zgFWգH:FRc.κWSKuk/?GC9¦`/qwmAЅ|KiYU&pWpn4ˏ )lT'Ļ_ + E?uM6|gzS_3zf2m&E075S `qu윊C^\݊ +2יjfhFv'-x.k3`36ډ{2s=6+9 Eؓg<[$RK׽HepQ&h+ +&~{MRc + >q4ʚDtn`-^ѥLc6ۮ%5sU;LqHwOShs򢖏hiTe<9*x3MŞт]V#9Wīo?M0~#zc $PbrS9r=VU*-A+G7ce͕J~$d.=X*8i|[ - 5:*?5gJ6QdIQ@V +TZ{poC|$0Enީ~1E戻$3Cf,dzx}Àx9z;pIEK@x֦y8*?O`S{#rarkQÈHŇIy>ֆzUq!hlxukN7_7egDLmڏ4p(O c.AJqiپŖ +{lǂ)O,γO k)u[ȹ?JH0׷;iOrs'R*L!ٳpET8\6>^A⌫#0ƄT"i#j4°:?Fpu^(KBp<)5f |0WM sp_}<d^YcX V%J-Ҋr' }5;* 0]9+}ֺq\,WqSR-.AA\҆~_&6ỈM[HYQ ݱcTi}" Lݐ,C쎾u9R T| cI62 +&Pu~/ʚ߽6V'0 y%MMLoux@bפi6Hp!r6IW$$ےw̲秾/:dr(>k[ңفAǑ]3Y ogRfFۃ2†{3C/>b%>)U7eJ`٩B&8֘`ׄzKvo3HQa/R8 +t;.liR~שcq~ 0hdhKȔ+cڬe2o}&^\RסSfFBlY-9gU>fBME X"s6+sUJAIDl +Vw렮;P? ^QrdЬn<RwNaCvVE (N=e,u\ ^[a~ :XRJTfi[b0| 6?y:7SoRa|7J]a_yTE7_c91Ώeؑ]'|l*!$zy#2zaYVۘTJ:9͈o_z!Sإ(PoۤP*b430:}bFZ\3C%(_y + ɬeT$5t7b1 qF9[co} +!nr7n> +endobj +103 0 obj +<< +/Length 13810 +/Length1 1912 +/Length2 11898 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMBX12 003.002 +%%Title: CMBX12 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMBX12. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMBX12 known{/CMBX12 findfont dup/UniqueID known{dup +/UniqueID get 5000769 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /OLUUSQ+CMBX12 def +/FontBBox {-53 -251 1139 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX12.) readonly def +/FullName (CMBX12) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Bold) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 65 /A put +dup 75 /K put +dup 80 /P put +dup 82 /R put +dup 86 /V put +dup 90 /Z put +dup 97 /a put +dup 99 /c put +dup 20 /caron put +dup 58 /colon put +dup 44 /comma put +dup 101 /e put +dup 102 /f put +dup 53 /five put +dup 52 /four put +dup 103 /g put +dup 104 /h put +dup 45 /hyphen put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 57 /nine put +dup 111 /o put +dup 49 /one put +dup 114 /r put +dup 115 /s put +dup 54 /six put +dup 116 /t put +dup 51 /three put +dup 50 /two put +dup 117 /u put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{Jf^ַ>aq4!<_CцcQ%BlS71_ +sQzԜr?ktP2Òl(?69~'@2bt[{ax 7}Gn[TY>T#a1h!;`WƮk>Kj̱JzNc?^<@ qTud[eюj:JnK#2S[ŝBb?̬Mo7aa'gP:δѩ҈ dBd|IH^wMe#DD13W.J.6׮r(N #>Zjhɵ+Uw +$\WN.C(V\N¸3A?l_sMP yfSyֿb`9upPȐNur)L=uhՂD١Pԋ^} +-zU*3~HwzQ:.cxv(P}F>48zeU+Jk <>,H~^U>~~)9G-_+ԇ2miΝ1r>Z?ώ8PZm#meDPњ69v=hE_X(yN(9d5p7LZC~ld1:/ g!, +}Q+93V{ QlG 7!;yq+ JA vj/rڜZP)4f+OpX_t~ 5[RZ$ҹ=#e@K*WEt_-J bΣZdh>xNpsGLOh>o련J;J+\m +J6km9"N `D[ h6w{Ac<=ޮv}PC*|sAחfK+1!Sn~#_*]\i!Jiq˘mJ K fy*S}iGV6wa$mv<zZQ^L0NRq!*7uLO=b~_J CI?<5 T zs}uL`M؀"7K 8yO {|v`).D3K$ ,3sÝDRT c2쑃%yD\MS9HQ՝rfG^\55#v[Yϴ)KS^~nMX,8&7a d$ݕ ^t/WyϿ4QK{)=WDd>oeZpٕi-e@PLb|#p"6KLPXzbZc})%LKfO2ݮ (NԴU-eru RyTkl>'H 9т-)u +u+ld4zcLsTJ[:v?WNM* NiLffF/? ̔o_a! Bt]z\ޔR/r4MFwe5']ZPp׶r?PaL'- +c3G}T'ڡn#^>Ҡ'-ހFwMOTDsJQ{ T޾2VNsҎ%Bh$,>oK"Hϯ 2BU7'J(Ǜc1PIݐ.lQjF%jP +1zb2ɮWM+mKf,"/3~į;7/7=o-R%nJB@n6A0hRF9T {(&$߅:hMj %FVڈGv?`S::JepR̶9y?O_4:╱bEV]1Vb,"KoF0dba̟f4G^̬k({: +]-eJbc?hs+΢_sS,atyir%F3gދ&M}ۨ3Dkh`\rud>;iA_ +oF_љckNԋn`v)2ۙ$# 6{⮶\FvUW l +%x[gj6~C "^klCy%)%nWFO/My~ZqiI$CT*x])it4ZV]m剁VO)gi +%-JUƠ[fTX7/.cU,h78M4 z9:̳jmrvP# >bx_Løğ y5R@/{fQC}d~r!4ѐfPo퀿M+^',6_/W{h/њjS}Jz sնj ޳~zL{qA\Rh$):zNSJLyj^Ĕǒ)T~KZAP0JP~(>~9&åv^")X5=hN҂aNز%1v1gv?467H!NjO4پb夹tFy&{wQ[+ZJq ++@ mn,jMnEfI m RGUY8šNK:]ĤB!N?J'A.k{c㣆+/lB~z- NWWcr酉?V,d\$;tTR%M8DLsY{D#4 D{a\j;$ndʟ'KE 'p a_C1daEE4"<[ɬ}77%غk/2Ik'wblZqq@`C,6|U[2ǩ{{_W{l[(Eㅐ&K!.0t)f7lnMwX< | w2#:|м6ޡ4Hkr~IEmvb,[xY@rL'3:`A7C~X+_显R#GAVt]Dd ! 0*uzbrYN%gUX&h͈6OW2^zG iNΫyf_S">.g`B6G +BdXXE}텅eW_llQ6ioF<3ԙZN%Q^w݃{&E:k= BI| +~ڛfKikx zm 3ٳ~mk +R-rHsډZ嬪.]]Mmјrx{%u_p[ +5~`31>pajdoT&]J[[@ǿ&#F8i ^9<we+-lBdv>B2p["j FSoa9"1ܟ`IC"9²xG@,ty +ďuo1H?$YM;oia=ۓe%[2Ax=7rܥVBe[˪?常%,Ƀ.$nYeWm!QiBԘte=L@&j*ފS3(W{kϰtu$%#!>R=k[>u>6ӣVϬNld>&VeR^- U*lY `s'ӕ)!-@;UIuvG*^ x8gyyg|)t#$ X0fمNWz M< t>&+4N%J"cqx=NJqҼmWҾ07js);'S] 3l i |M YL*g. /A|]Z;wĵ͓h'A4@@`J jٙ4JՎ$ +&G[A[8f i+o" I +{y }$teӜV o+m2\\IؘԏƳL¢#EadIOUOxA5>.ыKe=0@vJ:5bj̊_[,82 ޭ@J\rL8gy8i{CRᩞuG/W{8YDL?͏$j5,;ȁ|a쒤HPP8) +^NZ卯9vݑ7ᚮ{V^sfpZ~rw;gt$2 aڰ(iOd\Bvp + +ȑJrʂyyl +X!.X_K^?eT:C@`&nm/h˓n!HcC +/q(ހS2ײi@/ʤ1=ҙL>Dc'4 -ks)y.*%'vvGT3lz :a).ERex +ycQڅ|Syp| BN=9;+ 1(H-F/ fZ2dMpDj̖ߺB͞Y~>/( vk?.LpHS"'Q&k]]kQ7yZ #πYD}u #gŒtH,V$_6ڨsS.*U| DՓPFbB*Bu4ZB~*j?B/&ԌTފm奔Bu7!j9 alɋpwcsCpiyaJ: D08b>OPW@Yߔ눚( 32Nͤm*6p[Efw(`߬S_Nps1m5 +oHrcG٬R %G "dC*uIk_o*;tS!i0 (T(4T!8#Ʌj#([:۝ +F_p9WCU NZ|BIw> vu-OaO1,hp._`Øzq*~*`@׊V_^u'¦l.OS +&[<\FFl(63_Y|#+0 {XރA가o3) +?#n~՝@$Zb нW!7.Bˬ3~,X(yy/'Q&" G]TqiNąOt;|cWhP+"rˬf3Z3&"v d*M8d=*bFb[ -:oW=iJ`~mT0[NBmo-̡u0`Y$:!9^`#'4iΛ_6ƿŰ ٵdط(pɭUIrf~2jކD[[褔J;E&y/:x*Ɗ:6h|}9 6Whf-AOۇa|7x.eͤN M!LY;ƥyW`VNbw ^ӯPϋR%JZ]^Ffշfx5ǎqVo"vJV;#W th<ЯF5R IjyxyN-A(XʞU<Vh+`lqki;zҁمS~g"J2*6P+ ;dgh,yo I[7D%6z9(n-H;::;햋3@4({l q[vL+x$9,&TPRIa0u R\ h͝燪.O6#BtG +N5gL3A}R#^Ag*)jOxV*kBs _bklAW4:"weVZY +Z?h+LDiAں };(@!@x$Es_l.þ['bYe K9e"VWmoIcTY8Aoz/uc9&D 8Ua4/]aX1b+ZTž.,⩳Cql9NT9xaf-ĴN*M673t䏉s4z,O~1>ǿU]9WG . I#jFCY8j2[lk07> -ޒ+bWgZ7ӷfXWv]ȷ0$}:ː}7e&j@',Pt(ϙ o{;;S0}.LXOGv}Tg%$zB )'f[h9ʿ:{b u/4vCi(ذ y JAqb.6W*hkNrh|#ƷA2E(qhIsf +qZ$T4nj\|2a +~NT׹zKgd; B'LHRHB GL 7G +7ݱ= XJi]A&MD6fJX-3^s +ڮ H `hJ7D/arūR +oCEb]KNL~ +랔,j':q;tC- JB̚zx*5%"3=Yn~br†& :1DE_綝?,g'frkNJbCGRp\amA =vx"Շ&mS]TޏeG[W*M,pEgpK +5z%ݺ&L4Y9L6Yl*gg 1kǔK" ,8!tc$5#WbxwS S jǫBׁ$U>߁<vjعxIvn{IY$QDFh67ƮEv.cl6<•ؕk7]i}99c!_JB_W@Fi}UDyNCCVyɬ j,$xױmx4_IsutЧ}9ۧ >:xkaziLD%6E/8+y>}Ev?&m|A$%Anb!(͛ d,uT’QX@V C1#uy97p lkˣ_|~xi {~HZw#DbҞxn͞)g{iT#0`ylڝhEx Hܫ ~\2S8&'X:/t*%W@:n*cd=?X 9k[# +kQ{e"HuARulm&{I\Swe3q٧[A|̋K(i~1J7kl.[Ȟjc~A_xvFU=Z%TZ#]Auq~Z?j)ܴϐnZ"=}a*diQͧZꔀy8X6r'_{`c Vh +Jy=ܗ”#5Ivꮄ p9>ǫW,Gb>H (~N7?4]O ݃S#R7…1#[nY`eRwL5<K!PjirԳR>tQ^ \@o:37Ԛihɂ| a$Ӥw`Fk:jfc"φ$ +3xX`ɱ6;(=%ѪCI&Ò&L\󥫀m#~60(퍃ш̬‚CÇp /'<;>z_LIAB?ܚ-GvA-0z\.V9Hэ6 Hfi.ZY`}6Q"n4T]Ä6!%ul蹋*O]o +b5oB "*Gv^P/fi@W`^8K$_>zflX "jWjͤ;Lc3?u5DY;vҡWH_58Ȯ&f*0,(Oaq! +Ql fڜ +Iu|&fJj_# \ˑ],-<ΗPY]M+ƽgӨx@>{OD:[rJ́;3Z[@ ԪX{qw9FQKRzx#5|㟂x3ˀStZ+9!1O$zV!\.q\3%IO}*@D}81|A +endstream +endobj +104 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 686 +/CharSet (/A/K/P/R/V/Z/a/c/caron/colon/comma/e/f/five/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/r/s/six/t/three/two/u/v/z) +/Descent -194 +/Flags 4 +/FontBBox [ -53 -251 1139 750 ] +/FontFile 103 0 R +/FontName /OLUUSQ+CMBX12 +/ItalicAngle 0 +/StemV 109 +/XHeight 444 +>> +endobj +105 0 obj +<< +/Length 8318 +/Length1 1451 +/Length2 6867 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMBX9 003.002 +%%Title: CMBX9 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMBX9. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMBX9 known{/CMBX9 findfont dup/UniqueID known{dup +/UniqueID get 5000767 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /HJGMPZ+CMBX9 def +/FontBBox {-58 -250 1195 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX9.) readonly def +/FullName (CMBX9) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Bold) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 80 /P put +dup 101 /e put +dup 107 /k put +dup 111 /o put +dup 116 /t put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{Jf^ַ>aq4!<_CцcQ%BlS71_ +sQz5>?Q;8F}Q|-K,}>PD +65~`dU6+[\5тqFB>ֳ1^;!'VQ!<$6jT&UVDq~`XhZwU W67$hV%tj6~h<56{O.o"Fחlai!N;/ie L5sh!YB yֻM~|M{\B3ևxYXިmHo%l)CKFuԴlY~<,&Z#^gx'6wB8IWذ~D.TP>KoNzS6=('a`T seSdDVzL^|kb=yjaI>Ř(ץ4^? 'Kn`4Q9 . `3oh~Fq;zJ50EPX*ƚQ 㗘k4]aҡpM9\l[Z)uƔT\0kebIA;/{c Jn^GkgQ0Y'ISD;A39 h?ݦbJU5zw jpJBUY{e#Fws@rISp^YoZ|5h2*لEA4W?|PCx' А4 +v0U'J#oqӉY%egg|* )SZo8r;8Wlv"r`UkL==~V +X` +UvSw;8wwH_,^~q\3[l&8E};`Zګ)HZ/I ;3w +h$j/z/^,_C~A7kpRhbK0sQrI;YD4u-:p׼V1y&EF#RdȷnfNEzfL)3xg23) +pEY%NXA@WQQ X$r d7UmwK6+2a,n9VbA:)48z>Im8XCهLFʺߦkg'f 2 z?qe3?-&1VKl/>4(5p,Jr6`pԚd׌^d';@8]mB̾"D%i-{tx*yt:`Z]K=.;TƪXmj nѹ5&.F~P]^7FoQv3:2rHS7!S5ŷISvG0;=f/bkl9d n&CO l"*e@n!6}Zjou#|)f*,E^a(, L Ah_ȪRlgYhaƐi% )m`RDӇO4;X @4chC.4Fc|E-5 OA)R3N{o`aYUrBs-15s܏i%ZY+W;/J"u;DgI x9"rwh +Rʊ~KhR^44s7M֒kL%vOqT+ovlo\+pm\gw٧Ӡ9_8i-d) ĩ#CM# h8pU"w.WV:ʠǜOc #%^oFxEkl ȃ<6wyh[$fuq%_Cn \Ȫp#vMժd2 g jRZ,xrF8P<(F`~W/dCnǗtPf"'nLCeJ59&yۄe^OI0\^PKGd@2ʨ󌱇lW/rZ\~ldB (#o}HZswHo܆0%oE=pdK)d/gYR[+7! nIw8 MF'/`6-d9Wt{`>P)$w>]{ _JJ[|aJЪCWk΢gLs 1/U wwKOwZoYz8gʟ821ZYYK%UW`ߤlP`B?1e1 t߭c`jD]< j#Sk@_6&"|  135~j5jag+PCTo+LxI@UoW.0#6!$_ȧ`r{s{] + ݤ"Amөe~]i栛ox;Ģ)Ąv{ԒNˡʀ8z +D4>uqlGmt +ZбK`4ҳWL d)yZd\m:췋s0j +dɎat@әV$Kas)~$8+\[)K9+%?< $_nRnWQ-U*up4Š[i}H=`SUPa{0'QW^t>.9Nzlc [=ˆ]8D8"QL wek\/+w^8 ZLn}69α$uT[e/DjFhGČ3eWfTf!>3rn_&kJӍne mW%q*5sIsoVgoꡯ+EƿR7ll,#4~^$)Cȗ`P{R!0K?.&V퍗#fRG/0Q Spe,W4`W16 +Bo5@.{27qGiʣTjzpGrb`Bn] 5EP£*Ӝ-f?75ko2|pwleP iאI͒wsz;SfT`De/:M#,N C@Xrٓn_ʴM[H-f4#u/VNy\#x[6§4̷,.aI-D=(Ao.Q$-q 4rh!-i vfrؠ%/^ +)p*d'D_mӝ>lC~t/a$Go@ܞ+A9IcU!}pIG"RU)صJ@uІ`YϪCuJUm8*8>B +tk1@͠YlW3[>[6&pCKƣ܉f&N0]X?TpP Y,y簢)4Ubj"fhEWdjt_8 |\YNeԭ5쀬ы; 44Ye*C#JahT+vX{\6))rfESд5hsdU[YJ*L |og9w>!>C4?m/.q߉K|8R1!>ȱ:& Kkq h!ʅƝC4k<ídqaeX&Z;SRMsh><^.9٠3n5% +YLjQA4OV?r%Lxє*g0fLjl}Xl:D0_.4w-bm!xMᑘ]&(3CXjȃ;&t]ÈjqZDU7er!]i4yp;3UX@ae$ qvPԨ+ z,wK}YqYJ)vz!z{4_DI䃛0"Ɇuwۡ`c&96ûm cٮIkb~LP)ޚ^.k5jdK⒣x}=%c^*f(rH?g@&_M\lכ(Wr;En8zu*sWKkjVxYX9Y^ K"?gjDg% 2v0Zm/,P10kIm?~g⎌ȥӨ3 7pmĈVR\}>r> +endobj +107 0 obj +<< +/Length 9263 +/Length1 1495 +/Length2 7768 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMBXTI10 003.002 +%%Title: CMBXTI10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMBXTI10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMBXTI10 known{/CMBXTI10 findfont dup/UniqueID known{dup +/UniqueID get 5000771 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /FWTCDB+CMBXTI10 def +/FontBBox {-29 -250 1274 754 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBXTI10.) readonly def +/FullName (CMBXTI10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Bold) readonly def +/ItalicAngle -14.04 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 77 /M put +dup 97 /a put +dup 101 /e put +dup 105 /i put +dup 107 /k put +dup 109 /m put +dup 116 /t put +dup 50 /two put +readonly def +currentdict end +currentfile eexec +oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsPKyؙJG}_t9Ob1N;rIoF R q] s%ЄO"HVt7b6U)26=q-SʱEzͪk|+$hXz˖3{{c$rПpP.%]++@^+;@gK +wUNKF֡MӋJ . yZ-c*w`~r-w@BS|  + J`Ukj +֌O i3$Z"|u9a6s-SS:s$ db]\±6CF s[~6C̸{2 0~0 h:}e Օ]T|:rCF Wݞǰ\0J,,рhzdE5Úu@ ;Z/}o--mASDw)#zBy7*0/YJ Yd;Kݚe; кn%VeK_ݖ wA/J +> wg.+T]׺g&6r 6]{JŇ[l޴$Jv-ppd33r'(:9F Z7_cVn;lWɶu$ݗO0'Fi%o(7ǔKdZi]ɘZ`C>>$VؼF,E%o`fp'֬{⩅v$@A@]eԈ"BTQ*OQ)2:r@70' +^e &,JaR)x=*} zp$x^U*froIb?WQH7$B("O%;G\/4$(ru{jE%Y͞t'T>t*NZ-FQlr1jJA?9n3=Z(?t#/[^Yu*éQ'$J#9-lc85 o@ E(2+?8n){.OqBPb4(2gF^%"\FaFG ,(?R"w/Jo"%(mEC5zrk[ku}qUCol&7<|!E"UqZ KN:MjUkJ` lB6pV$Ѧ)K'ޫ/:N1P .f>Ԋw'#>}=+fHSg0wF@zNl`^ L[ժ85OO3;Htble4XF"㐬tt +5txڬStlG\8<%*9ٱ\'0/&%]9ɜ/"bzW7ś4.vLL3Cؒ$tؔ3H'-Mһ6Ϥ9w,yi' ͏)l{QCp$[Thݵz&)Rۿ(ڒVv\2f].g<.6ᖺ)NB̨RU"b,ސUwÿ!`dUӿnjPmÀE6XP!=` :Z BSY1CIᓽ)gF sIr>%8JưuD[7z!qZzަEzŊRlG_M^,򤪄RԔf=-:rỴx_ot-K,; xBh$(m!I)K "ÜfOq+ QA~BB3[iiFyښ^cE~eRpzZ]&7wdAд6h<sͷw-ad<l.<fL).'tT*w.n^YOzr0;oW*]Kf}QGB72vdMsGi!'J|+}[VYO;?2Mf}]0v(N:ZrZɇB|vl4x4|hirht8EV'pSjBzkf6d>P|1AA#ĤC{h.ӂ(PH@&hH/a :ko#;v9L3-]*xFA@4JUKAϼr/.gsIi:PК!d4*ЃL6|;S3uȣ[qk' Ƣ)l4+ $xP 7}w‚l6Gڒ)U-1ځ?'A6ޗoQK(ļ1E6˝A\wҟ@8W^*ڗLQM(:Fc W-l~bJ B1 ㆜~vrݳGvHb@,N.jT$D5葓J ~z#U^߸p =q5K[j5@Tnխ ._}m{gL$LjEU԰TN&H啷snr`7^1dW! bz݂z8{ׇj}\zU*GDEYs+)̪haQKE8iC4Sp{PK>T&cB +CTه C̚}`y8E4yK.G]=@/%sjYO>lrK\Wɗq;z3ݢ(ouݭ@E'evKw +$p@@x +,6rP(S4#0-8c<}C2A:ӺC]3ꪬpq|%QgdҤ n})N=WR)FxX`(F+[N´N:yRC_ن а@Gߠ/Eu ɚa4*B kڐhDC,3O$]f>5eJ٥4YqLlp8'N:ݶΒtAßYs5XCU Vr>s+-AՕƱ%%Eo'a Qưn22Hȵ\!_7% (^|VI٫~{gN vRSlC)'r1YjvtDwa|g6ɈM'8j(9]1V[FP}^@YYL JAD7m7jsjQnjA@2}מg#+=\y[ ͍ @*d_Wl6b@ٗ(/{MP1vXHZ)mZcz(#gDk\8:Dl{v7 $Zq˶?B#{z{TTC5&0;uo!Y:"@ϦCK9c~.Ղa()IBx ՚<|cqn7A](6ѻgwmNP/@~3;('{83W*CѴKE[wu؄qND0c#^Ͳ2qewNKZTs?x)xaV/T[xH~ovXu]z~'ՙi})%Bnh[6h{:Xߙ6s bJ/;-!=\dGOztMm\eu-r4j~5yy>cߛ-Je%#--tD`%:ɎLF㎹TAV+7сYlvr}ɮy53N„Ɍ.=}4Sm 7櫚+ݴLNQ# +l " +F tU1ȇߙ^n 3p|EDSng[2Ѣ,wÿɫ .氢Q< Qxrxe#UNP +d.c,n Ӟxcpg0%F+rIU)]d^[V-Q-c!ȨNq.{/(HH#W_W?֞t֤ȤYvgZ%ŰήGTO!moB +xh"fY BJO0yFSc1}A33\ +EW7m~'W | > R{Jg;ocŀ^/`wab,D2}I7BP)^OGT#sp ai\u!.5Y_yd'.eb1ޫ|]vPZ)Y=jXF^I;0ސ=qY[J;NYl F3<$X*d&z6136&&5;U7DECiց 8;a f[Ēss{N/b[Iv}IA FRR|돠_+J0,j=F!G,ּ~1|'AWv䭖ǩIVe殹- p8{cnNK7shy8ش`K^@L1ܢ!$$J yrOn6cSIJ:"8i@b`l`v*vO`r Cc-w, }VZk@$,ǶdT-Sv߳)j'trJH@^20~'ډ|sF YTh /u,t> +endobj +109 0 obj +<< +/Length 11493 +/Length1 1641 +/Length2 9852 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMMI10 003.002 +%%Title: CMMI10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMMI10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMMI10 known{/CMMI10 findfont dup/UniqueID known{dup +/UniqueID get 5087385 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /ZOBLSI+CMMI10 def +/FontBBox {-32 -250 1048 750 }readonly def +/PaintType 0 def +/FontInfo 10 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI10.) readonly def +/FullName (CMMI10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle -14.04 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +/ascent 750 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 68 /D put +dup 69 /E put +dup 73 /I put +dup 74 /J put +dup 75 /K put +dup 76 /L put +dup 77 /M put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 109 /m put +dup 110 /n put +dup 117 /u put +dup 118 /v put +dup 126 /vector put +readonly def +currentdict end +currentfile eexec +oc;jAw-<X2-Τ^tE_SKF1F^jNBq{y4-Fgbԓ{"WB:rP ?dgS%|'ؓw&F7JNL9VRtbT5'm\N"K< +wJv$tE;D4Vܢv{bG@dū)Nh]!(7h`f1zpBrd۞>sVÙiHޭkJKyuKI[Ƅ(,M=}%vf'E+)}f$l(W2[8hT>9X33 viU/Y{z4B&qnz|1/ɴcCzwm|x]Lmo}zm5o: 꿊."ĈdNo3 +vz N +pzP;Vҿg6Ǣ >,>OJ4mA0R3ֹ*{+9iuMO@h}-( Qȃ钏A)ӱ =.93g=[_bo_BVƂW"䶝aoZFsO)%d2wNH>D}۝Y1jZg1bJa|`hb)wYc[&0jX7yg +hS&}p-f^ a_ +l4zVnR_e@*z|Wi.9)ǙBSs3Ϗk,^bz˹a ˅4_B1+W2poDx>fH[]TEjRȊ~/+  l8zXܒpH!V܁d!;d4T5:,v#cK*;+zXz k Qw>aqb61IK&?e=f?ToRw: +e +/ y}tX"7qtf}є)8SRXyԍ/Cmo0%}pd{h4>^wD@eQdaidY^@?p i3;BŹAe "Kc_ + +>To=*y#p$Ua5Q2Z3:wXEk!XLǑU MlTHnyeUsAܜo3|] ]zN&GU1@./9;IFz$U/Klf6xq y +w}HH/*%bkYyoxжjxS\y)n?VJ+ka[zffI*[f=M3)%qO(\-Z!J +H)rQQ5TbL}/>5k=QwO75#:,U_LP?NCSMi > 3*j#WÝD8$|!F̊L;_ +dQJI$Y(mRqJ[~f9,6_1~w S,?1? Ayl(LtU m@*T9EWOg-ږHpaH"\z/EjV{11̃TVL5yWK|z|ڶtjBdV=z3TJ~[3`vpnrU MVW.Y-t虘鰭2z񑄥 +Kxq3å_t|W%0=E@.2^r:(H>ePݳ;ס}mW-MAzs`sb}s@_s/FOE«lh\G`ba8$(^U3qC"vj?Aӷ5.s:];H2?lcP!e-t1//ǑbK @3\SN:8'gU?)Rb%o>6 ~) O +Xw5/"|k(e$/JG 0Mo#hpT%-R(>* Ҩ25h|I.5u`QPւ)`QQǶ(45^ބM߯o5G*`?RFM Àgpfn51dK[L +yq B$@'6!W +ΐEI6,IT$yهHpiVch]l&ߡF:O$#Ȋ!D:%)aMx"_L?d*:02]7x(4p P8*.v5sb<]LQ0*K+@>e.-oӏCƀl\~R+$voDgya7s)ck1+.Ƚ#@cL ij;NCB|(ɯIL40Ƽ&bDT3C<= Dg}@?GԿ#Ӵ?H]K mv%M^=QdP A%}u$Ȑv3L -" +'![暰-,*5&Vۮ1=B1vW|P:؎c)»c/Leh:g)Vl<.IJ +T|PqQvi>-<+cVDܽp`JȭVkuZܦר|RIu"_!a~L x0Cc-bpCAʤ0% [D =$XKu&W(b ncg^PdK>R]5d_a*@,TB]'/-G.Ǟx%~dž"52WWa>3/V #F,_z|i1=IUj^[b'HԺrRvѨYuI%@G1`: Zwb!|^WnW^krZxPI~XY̓qY >3u}_l1iG}Z1BR@W7z^CUpBZ\-ѯÆas&\XA\`{YܻQ v0q˽뷚w۩Ƀ6U̿%}JDA_r؅ ]w疠^K݅V:ӝϏ2ӏ|jilzaxOaK<}qo[5sI\ !R y I w˜Qz0l; ۠gYnkϜ}H4'#l&1ҩc!+P)T}!:#,5 0h>ώ? 1E]R%{7zvպ2' ' =.8ƬdDЖÊ9(qo%ͯAv0Og{jEAOG,C[4h֪ LЂ13JYfA2{TMH)w?}+'Mc5 `L8h`V5 \)A yBYC$S;яjtiV!Ψ"p<NoZ*2]LV +̚ !涃oplz`(SL0͏<(0.O4\SaSԗ;*X>mGŻX3XR^^#1ó&3W֘@,`|-g`^pQηQ^ O(s$q;,; i@g toVdF4 s3()&oa2IPZtoKmBމa?0küUڴB L|_&hU:Ҏ͊NQγVA8= #96u0@PN߅yƆeRvWKx }h%ҁ}ުP!z‘ӧ|}9<$5;Ѳ:;ylʗO]Qv-2yhfԨs\\hd#ըtyri"Zu:!xā/p~K.,<̷W|XUƆ/al='a*ZAU(bl~.P |V0E }Sd{"x峝pngթ(U0c1r{twqxK1%DE/z*oz e7^YDBD+AI\Cj߰B@әZ[&(vi,K| \cGVpz9pR%A`A ^9>~Z0x<N?3<ذ!Z` +v@zIER3 L'7-E?6tS>zuux1ɱ,3o"U<5ߠ-`sXZq=9*0 ,KOMRו.~338quV Igko.  *l7[fh +4\߆@bջuv3,qޥqX>(웻5(hU Č>-ygaV66 +>#(;#2+O h5eSa?>[լJ6h zi.C\\Ɯa\B Kh%xy%7A0UXcs}1>)mQnЌ s?Tѯdm/U.-ogOF乣HogO*k(i4K|~o!Vsl14k~.Rũل؍Zß[CNU$8HP}*(8ZV=v@}!M(- #a4sA(T ˦9(D>t-rbݢJ=% LԄ UI_P= a +endstream +endobj +110 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/A/B/C/D/E/I/J/K/L/M/a/b/c/m/n/u/v/vector) +/Descent -194 +/Flags 4 +/FontBBox [ -32 -250 1048 750 ] +/FontFile 109 0 R +/FontName /ZOBLSI+CMMI10 +/ItalicAngle -14 +/StemV 72 +/XHeight 431 +>> +endobj +111 0 obj +<< +/Length 19858 +/Length1 2204 +/Length2 17654 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR10 003.002 +%%Title: CMR10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR10 known{/CMR10 findfont dup/UniqueID known{dup +/UniqueID get 5000793 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /XGGYUK+CMR10 def +/FontBBox {-40 -250 1009 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR10.) readonly def +/FullName (CMR10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 68 /D put +dup 69 /E put +dup 70 /F put +dup 71 /G put +dup 73 /I put +dup 75 /K put +dup 76 /L put +dup 78 /N put +dup 80 /P put +dup 82 /R put +dup 84 /T put +dup 86 /V put +dup 88 /X put +dup 90 /Z put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 58 /colon put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 61 /equal put +dup 102 /f put +dup 12 /fi put +dup 53 /five put +dup 52 /four put +dup 103 /g put +dup 104 /h put +dup 45 /hyphen put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 49 /one put +dup 112 /p put +dup 46 /period put +dup 43 /plus put +dup 113 /q put +dup 114 /r put +dup 115 /s put +dup 59 /semicolon put +dup 55 /seven put +dup 54 /six put +dup 47 /slash put +dup 116 /t put +dup 51 /three put +dup 50 /two put +dup 117 /u put +dup 118 /v put +dup 122 /z put +dup 48 /zero put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{x< ,-.2iRnñvپ1䠕 '䓱_r"O_t3kefBݼVfj9ҳ Yh뀸{q-ɷ}W??gw1*Eh[:tWeI,v8a<{B100Z85|}Nlw]6Nbh3E`(Eޏ'Q;eԃ/.DyL5$4IG׮Ɋ\yj9.VU5Q!-赁B9dB^oVwBɎT7RsOGA b#TBv!mWT=w,ID%'MK<|]D@2O( ݎ%#_ɷVBST#z!${l\4ĸ ;5l&!〚=(fUwAeB#30>H 'L+֓jz@=s\<=\Y$D?U 6xGQnǫi%֔! +L2[)!fXc<'ȲRP3E!-:'AJ.IJCJJt&{76 +#VH/Fgw"F5wS$|oQ<Η `~<10|;,zɴ% +oߠx0sW1Fx gmxVyѝ"]#z~pv Ũ.rB9$nYCC1td@#8kNԋK;ԓlF( ،N;d*<Ʀs9ZQ@It%[)7&hn Y'a¶T'Xrߙ/n_nJL (@ +К +N{KF^kbn~`L]aU{vLܺ41$rmAsnZ*=sob@{y !CC{c.WZ0n bpgsPd$-\ԛ&L27JBs/g(xQ,t>[8͓GsŸ:R$9]6&my)ivjWLRB^RBalx_Y:5M/j١!}`D&WȪQX$HߧtI .Y@nr_n܁ OtAN-L n?_^_g~Ə;`KB6eĶ +>lQp)/;S' ^:tJj@xE(0G;κQqǔkT'; ÃDHjsrxܖ +.>֯kl;&#<ښe)fFz`Ƿ?Ic@SH&<evn8F\V3aA!yy:+c!xbM։/f}3ߖ˦"G'fMsXWU}Yĵ^ %j!HOH͎_;臲Jv]# +$'Ch?5u-G:zHZ\%Uv z^By%NT⸶3=X?mJ-3iH@ܐfσkR.v'm.'SDly7 YCm^Gu5_G1t/ +41n_D>}p+fg9h$]@M`^ҹGK;5wIrqA3fAYiuYrD:dR At -,)aɺh9[ԧuS9KTKaX$wgɓO[xqǃyI(j5LIc}|h$zDUwY+Z:ϤŜ1le`u@|܈贚^6/y`a [Ί`ҾEwa ziLa}jʰ@}xWns0n*{l?Zz>8p-L&ȣK`> `%`ݿs?v˻^\*QNbf+ۼބo" ٧U zgga䎐uFљ<Xyݸ*g4?X2]4H͢^qLeoU~ 7>)ƤHnA7"{DRj)ע~eVDJ|X}ѧCrTA fP};"ӼK#ΑTF\^ԓ ; |R D\Ă Hu6QИ'Q3b;x#3S:jb%tJ/>ʡOrVށx]>)]l5o[F;,N&'i\NQIH?T:@FN SX0<)hW4fFDh.سT)^S-nw}, ZNEC Y Rez3\ +tY5`F~_xU|'XLJG@U6I \>:V_>զ9*I0}ӵ\"{3UzuFf٤Pߨ)E8Uw)gq:dj#hq so -@ +KG7"|QЇ Zzs|}LմS:fmA3S 2=[dؓJ\ܳc|tj1ƛArѮJv,K| ϕVސ +Q[s"=ôG#[71]'GA-u&_]nOSI*!GL{0^()Ɛظ]:1Y] c5@>rPq#fܳF6hZȀ,֯nрKD„-׸ݩTB<^x (va;{bQt[ eIBţnloi1>MoWM_v"h-ǰ-uh|]R[d"cWGcr"2P&yĔ$֬^S fx'$TQGUm/*BK-2"jܸf'Om:M|b]$~+ȏ>Ɏbtv2څ l-P4"Q5n$micnO԰P05aZrFhd]=Xcٓk dOBM@P.KX+QmtgD#/uyھRܸ(u׼΢MG oTgs]؆ٷ;*G R1)ٝ4 >odݿR{uxz4DXF9Tx:Rjpq"F\eL6j`H$rʹoW&N +cEawmGeZeX+TB_ǃ?oAZ;u.[T{lN]"?[t +VH_@{lj;KߑHŁ?hKY2MFUw^z6nf5^9뛅SS iw׳ʰg6Q.8zZZ72o Q.c]ƃ I1PiYg*z_H LWG +q3Rmv*GHp] ~\4#{+姕8X> B|L2}-sc~k;9W;[VZ)&a4c7}.8z+G ;$+Ω_]5{hL=ow VH Ay,`2uÆd-㥵4WΌ%n EguM7ԥ[jI}|di8&:ARA_;.lX*:׃nyj"⚛ܳMdCF|a͉G%izY mޅOi T%D@$KQIGeOVNF2VdA!d=ۭBR ]$~ 'ԑ+ez]|lAnm% |J;qIoh9I@N}N_M,bx#[n,7lIB֠3SĀiI<*1̗fE1=MJO@; z҃; X}ǁSţ!Mv7KT~ڎK?cj-x;GQOU4@tt U^3!>d5IwaүYPU$ q .uHR5g}_?|qLu@3.']:zx0r54r?Y0zmKyHiy#J7Qs1i?B+.{Kz+ebkjOdU9bb}0 < +{TB|n~Z&.Hu-LZ22; *8P6w,;3V=NQ϶-u9 ?;Kx W{ZalSxYC!OԈ@ +Ď5^{zۆ^iIɜ_CsO?cA'9)< \b[h%ٮp iBNҿ̓t&$0x} ,G&q}K3,}#0_GHsr_5ż@$B;&cdNݴ=>C}/YQF<A2[-!)ҏtLN) +X6\R|L|1v=fL? jX +![ЇU&iuТDj}'6 B7~@@Lt2_.Y~ada/ѷ\at8'!$@--ja@!:.gnf +d=N1fTVBSk`d{ܾOoS)qV%cNŠȔ;?9JnT噟B]lD0;\ZMؓ8V`kN0pQ+<8a_j'`(6rX7n0&|@|kS܊NP(ܣai>^4v sxm;[8@QAoN}H61(ZC,[R?_ c4dZXtR0E2H)R3ZͱI4ur`W+[s.[Ikdӆ&bœj$[ _AFΒU'ainfC6jWf{ DRVl/|D7/R\Iv{C t( M*)#MW!5=ArDv-bcPP'~ܿlIGF{+, :5}N%cqG܆*WPж}-_> AhHՈF7ulon>"3Q$ ,igi],)\т +<&6?>yKdLW114X rCDtCN{\;8^{ޜ\'I2Z4rʻ1"J;_]M~ QVʩrC5=.vUBN]i5Bw+@mE};Rd*Pc#1)U8J/A@7?4%;ȽoIx;| <%ڐa'f~P ɷd$Glm5Wå%4ɾ!&Σ vư@6ۈX=<0_PnCkX2YajŭE `>nқ0lcHҡVQ\Ή. +K e5_7 Za$W$W]*jd`ktv*^}ZWKʫ/~/@ˠ Aa%pAGw=-<NU?FO;jA`*C |,+7Hn.jER2 V|;>cee^˼Pf,9#nZ~xE'$|ϚnGyQI-!&iƓq0eA&G-M 2}vC-}+<;ڳ_Î?ay,-Zt%"MKI\ڐ'2?"S$"eᾞ]@$ΐU8̀Uxֺ =|Pyp;_5nSg\jr7O7J(G+;86_"-1մNcѸd6,lұM͆>;Bo7s7L;;21I&FX`gerhCqBy24яS_%,#;';d +WEm},)še/;)ѻ6wkd֙ #>g') Zypz$'Wl${{ׂ](HXj4I.E2],znw7}pIј^3|) q %GSW?3]* +>J*(sPeXc&v1'U2i'ңACvxuEtX8KّKYC8˸jRj&<׸l8oAjIPpN`@.!,^W2ΕO{{STa@\3]Y@e2l'UAS׀qjNkp(acN#dW`>yK3E9{dĽEA=ybw#-?\)sbHZ&^Z&|Ď=FiRaoRDDPa{71_~=ФShoSs;WUm:S5 +j_}p%ߵ2`K.}y) i*;bsхX<{b1: /@XѨ}&p5UI*$o&`l: ++'`uwqg(6'sL,(ژ{P nkv#ir"! z袑MCԥvM%.@;9f s^*XbXPʓpG{HGGJ1/בvҸ$rXSimV7\T~iYWxD2؅P1^)T ru]$K45LrlSβM+YY#j5(0uR7SP(pr6"2/+ވy"tH +URJP8yCu \؀ Gσ>WvB7 Glm'Mgv:k=ib]tǜ9m.F(([|=mXYNwV]ߛm S5̬9rYYWy햧vegl^f7kKQBo_h{}]6N.$"/󉗪l;۳Bli'=z&nM98"7`!gS`#sYP/d9: +1>;}'٠vPW9<qX㬽aTF_Ҟdzeo5l!&4PDE#ۺ8LS> JIHv<.&6 C\뽥Q=R\љYj惼XVL9T ^jtF_$4^N˃cX6DskH 1-'-ԋ0jv iJN.1bGiIT3Zp@1$UvC&Z̕tݲfblU,y֦$7Gff߲X.: 1.3  L.7Rm@ZZ}AwYђ/ĘyV2!ʄ2:5/;u?eeP:n$x}l-ҫK0Tco#|g-u9bC{yx'nj)/ΦSCXtO3c|OMݍ~Ѿp,GhP'b?Ig by;cRy~ #9c~¦*A]ynkfI +rue&@7&=J6m1&$M2vA鉙 zWwlkXg:+Uz&yIQx4NK}* ;6v'sZ hzLE;H +S^7mQAat|lnT ̑'hCoɆ;pOMUBX:XNFˢ PM)2L/ FGt`k}pn L㕣Oq ?mV] +BGBUYX3Je2ɊBC2yASLEpIAܠlJ2r+`߲A[2`Řsj|z)H~Ee8CX}xuV^^coeL/*6T!5Gj_Hk^2 EdŽ(SȺ&)ȾNH?ݮq +ٖhPc, l(Jqh+zJ8|U]&dQT}+\ +6diX ,UhbC? Xdc~z0svq4;¨JKy86u]7@JvnA11JI\W.˼L mųΞڻ$Z58̖ +@.5J+N]VnԆ97 ӷYv*} ~!bWۿo!ލi JAD9/o -t@YB_F)~"C6+SS}[ܟB g,$}}A!G@7v+/H"?m{yiƦJE(ǁG|Kv:@FLsfXލ[4b9 .or-o\u#_FWQ$=HS&[r*"^DY}D{k%9GO|]?،i(J!bg F,H?EF +- r4E "rc`߳D$2Dd4Z =]F⛺EK_lrm`)_MkFw%ΰsl=ƺ +Cph +.T~JPV*[3ql t!9: Ud +-2|CR-RܧwsbY4m!0 L.Sx.G#gS5*y^u@J}Ad:Y撅OUD_Ұ֣GSzZ*CL8;=;X#yk5fWD +_5vj:4Ê~Ć[V$otyI jf÷M+*6)oKt> ]rdtQ>6­VJPkL'uZ@}d+O*D5Z`7e>s0qWzE8{<1HUFDx;Y̖K+z`3 <^l Ŝ2_BwO6RwpD>vyo427ik+D.}YH~!\,l{n$T  *Z*B(0_DMcdƇ]=C|)#*ђ_a#iYe![QɕѭmpZ63jWxfZ`k0H Wԯpѫg*V0̔ mX`$WZm*Bz\⑜aɕ-Aqbq5máܣrpG{qM3 .#%D_܀vGkR0vY- .FeWm̢{Z^*AsTfX3!hؼ 0R"i=릕U1!wkg{GCc*8x2?rbjnހPC0"rGʐZn󻟾"ӝq< j7Nei"N~$`=A!fgy50ٶ,$37Q +~'}bM>xUu +So(eԃ&kӕzi=x+0M8.9@-&q +ObxYFg”"ˣC_yFbix$h:6fY5@QI<[:0{>(rK9|2CCg4 Cl)ںKgU?AeT//DT~8Yc%祔Mޜr_i%DpN,K `,-{7ܥ& ٢[6@ͬ/BMn^xצu!w'#iT6G̖Pv? -.;ȭ5߇g[+ g2Q퇒*f\YcM7 ו8" cATpɶbh\9KiۊJ?jg _*{u4R>{BW-|#m`XO.h.Lw5|ʷ^0o_hmn,eFqQOy.^$sBkR|ħ[]`7 +f.[vɻjocsQn6<ҳax/(MZl垜ThF_6LZ5kga^yC`4JϹuBO{Շvi`.j\7kمF |^jӁDLEO] 7zFD'?443HwаsYP1GӘEoWSP8P c-bSFk,^ËܩI@X틛3 ƞ +yҢbs=C5jϮO|%[PND3,vǼ#2G<8 J0rQǥQc"f׎jo7L4@Ύ^欯yZ +>R(3nx7zB.EG)0,5{[mtbE??)v[;b<\ܼA,e<[nc출B<0Op^z.}jpigP=7& [##ݙA^kmU_0> +endobj +113 0 obj +<< +/Length 13103 +/Length1 1830 +/Length2 11273 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR12 003.002 +%%Title: CMR12 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR12. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR12 known{/CMR12 findfont dup/UniqueID known{dup +/UniqueID get 5000794 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /RLYLLI+CMR12 def +/FontBBox {-34 -251 988 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR12.) readonly def +/FullName (CMR12) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 65 /A put +dup 66 /B put +dup 68 /D put +dup 71 /G put +dup 76 /L put +dup 77 /M put +dup 83 /S put +dup 86 /V put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 46 /period put +dup 114 /r put +dup 116 /t put +dup 50 /two put +dup 117 /u put +dup 122 /z put +dup 48 /zero put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl75R 9z(X*Rhn5&g\c9`EgwT!xIJz҈v*lcoƿsdm^%=谺D +u9#3P _] )w +UA8 HuG:DJ(W;]-0<.gSB NlZOLӡ5^9:K*|F +{É ڇE,q>j0^x떲Q'X酉i ;yZPt>p1SV}:ުad0h{JA)Θ[ U=y5pRU&0'-8tIAx*̣$!gRHS;RVU?!lM٬2gO.T7wϓ)?CߠVb7^kJ;c +N* ٍG|Ucͮߢɨl6h6[ 2ߵПZvUlP|%)VǸm׫=&a +Js_̲y|{R6ĴʗB7jIȘ2a% @74 @4(.= `h'p+xvX}?G3D:^ӟ*&4prx5e^hk@S_̎Cl^^}ڶ-q9@e @|wMrc9P(TkruY@MnuW`%?Q8wG3g; dlo 2 Uu6C֋%YT'Rjo1Mn}L+:O/`@ӟӎ4J +B $YaհH Ag0IQ<;v|<6G@tqX>ɏpI%(Xv7}19lAKڮ6]+l_6'3`k*T (]65R-[(EAJ!3s:e*Aܣ ZEsNьmcЪ..> ˆ>Q&x̹znkCfqW-ٕ6qo*p+.gjlZrht?3:2ty&F!w^9vӐy*'ImtӮ:dN#LaRx!d!R *9SDdkb$Vdž^t4}h5eHNrHI,O6'l +NO#xa OTV-(!JZyX !]z@. 5-DL5_rHqg/r秂gͯP%x d꿖xAcŘʺϡYd(*:od`AMPb-nt]#lg&eb5d*OE 5 UThlv9_)$pC+(M ռPVOptcC`ՠ0IJ85YA('针1J ) =n?Epaq\')_4}KY+d>^cV60EZt,)ie Oӟ5ni8B5*Ƅxn@EDP>e$I^na Y>k#w?p͓t!_1 dr{d ,@]+ضCzn{0RUK,&Ձ\ƭТ1LB#Jp0 XJK7ZLD"afI1?jt'8:/(IGʵ6 <+r xj=9zI!ƶreGNXNpA4Us]b;g-L:/ڮpaؖ:1xǔ`V&EE?c CۗǙ77-`$Mv|&sČ 6X!g#ndχ[w䄁n(dَoo_o2<ݻ  xMI^ +[$dDTZ jķi|O.E9wbSsBz֚ȴ!2g6bcrۑW1A"nX14nKOC-NA=9g5=W^x(xڞEt8}NIDʄ!"]}FET2mRi< r3a0!fS&W{V_ ħ/Wc + 15y8/ V㯧٧򁂝*^F}#? P掸-~m~j𔜒FvV K.\'YƎZ|9&fr7ᶀQ~n- L5Q/[[ORue>G zjP˯,jW灔Rڮu7q jml +3!9ri `u8!5$cUUO;~}ۨd>̖ glUov+"Q%z=$Uu<J6RGʴ̇vm%û]=PC}_2k& ;eG7גI0Qf/ e!S|2F;֐n3:Gj)~kM'AR>CM^}]dLBu(w& GJ*ԾS0|CxoiNK@N@f2ްir7%x478˷턀Ȣ5k~:Dwp";jA `SR\Y.wNCky~uH#(8N7 v/I g;0Mf{ؒF3 SwHnp}D0yafA3?E.RB偗cU|O+U$r=هn5`̕,/^r;5?9>QNGZigp={_ș0H>(˴uWӥz|T̴VIMf*ߣ6c^֟}@_ϷW&)#׀+$ɐ2i_Bzv`]C]c+老ь*M0\omV +,T[a'rھٷ=+.t_,'P)Чr*4Wp$ U{-тB qڠ +a`O|qd3ú$/|MR-` ;6M|şg~Y u[l(oԁglEwք+pdڳXlDXuG b2Me *eiRXx8AEnS\RyEƒjT91Pr]T|u0zWMS=nkčeԍ,AFk/b\vI QDksh>`aP(~j%P> +GWlL?ݑ&hu&A$%9c\P "G(" z+"ڸVH1GڟHxYTҫs-pSCq: +99xec]R{zC?yOS.+T#``" kk2A>&^Rz=f)gjAݓ'xbBPd<^Ҏ,!ávm J!*5ҋ.5(K>++4y@B[Y -`͑!-|RVMr6 d$jwe(%.`. t +`n1h nzeR#nmOنwwOu*NkxcV9Hq82ɤ3՛.S+@&\]bWߡ!Nޥpa0fln +ED pCr:Q=̝W8{mCUط;Qtߪjƚ|YQ4C<ZeoDs8HMH3jﻭ|p8=q?Ҽ=EEe>6K}f2wa]a>>jFɷ +s V5ˤ;*nb$Svh-8yː=isr(/ e8'VZL078L )EMрKD„&#SX ,}6kbbx.[醄Ӗ0I8a {g HV$告$jJer= cOa[Sk)rάC +T~d^ъEg4pkRm$1"o]~(}POi˶8=Xbڇ*g&J3[O%w ДyRG9c&ڈB8z_:.;с9 vJ\sl}OQ9@6e#e!K[5j2.t9hF"؀Q`orE2@iWl4QBZB9caS2nO@[T 17;̺_U-c HmlyM?hI[@򋛃v4{'lpk72Q9EA/H)Ja7}¸z]Uf{$:'R 8¢VkAڃ]m,P|.Sɬ},1LPa`3&:3 3FD5۟mўy 4otXGWثc M}\8=q-A5xo-Fmԍ}jw\}9 S T6@Ĩ^yBӾgV.B%"FHuXL3@KuYb[< /o&\/eZj OocI5@G/ܵ40;}+>,cA +?~S0f2BxEmD (A0ڱ)rdZڗ-`Nt=ue8\wg{S :4B-q(iuB{vJ3" MY:8.YrOL5˒ ƃ O42#ĜvEQ2'K碤_# do^;<Zr+.a-ȯ)OH@ ʴZ#g4p%@)N#=hq|y^ 4٧}ظo O.cGA';" p^7ù*2F) ϨeBwrIFB,EtDqi/U + nF| +&}%- 5/s?QIHL}̢JZ~s#YS.#'c*ٰHW4֏VPVi'amo Ey6c& f?r=Am1v8jP+l"n"Z'8J9?IC1j,H o-wQ!& Ik-oɳP؜8Ěmcqt8?t҉]oRg\gYtU5u%H6t1_gdwL B#!-J@n~sOΰ?tr1\0,sO]7uj+۔lA|J6yaz/2$E-v+Ϯp螔d{ؠmpۓӒDÝmP(iФqejlQ6#\}h9~i`\Q4jg0j3R͈RBn[e6cZJBMh;F:8<\aI}R.dik@YJ3o[/jdDӁ;äC!-T>Jq&IwTXs;sPx})'/89Ub sxqǶn7g-L[Gq$RRDzNcelTq3xVsOD)Xͽ-q| -HS;e Nn:as_zU[mK KeʽS/΄?H^ w$Z@<9[f]`G{"MD-#:*6b4E! @wd3M5y{5CYڭ#i3#@nl|ަ ek܂=&a`$>dhPvHjƜO{+J +vXً6!Zn%Fas|MИaaWBD$QDH) nIP7ȱJ !ĵzudRڟT uΌk +^ւ[TBAidP8v~G<|KS^OW9j]0FVЌd]7( Uܻ 2!0a4w^(PbbPCg.!h_LH֣5w)I7˗ZnI}.ga1%P_ewGoڋd D4遽@qڳp$B?p=ő d?Ej󌷩//mXcɾ+Yʘ!*>)3{n^!Q0e!xఐR$!#RCac~Y2]U%`[pA7<~a./JQ\rmE[,XE,){,uEn PhD[~Mw6^h t6ʇ3jј"Gt$s;;Cr0[U]n[RZ\w'#p7ӑ!/m'e,/r4P/wX k8zcZ~GI3%^ =8l6f5BWhe$nZ63X߿XI\І+[ ,uHbT6D-@B"6Gb*>K\h;eF˺hoOM1)?XM@C^Ov.xaso` +cL/Mduq.$@7g9"әgB]iا?R4AHm()qPX,`SuǕy{#ցRNu₲7I_Cve'iw ++J-W6ިy[oܳNQd xvnT>pp"ɄȶYe&.MU 1O/j.+Y4uJoc2IQ!R5JX1x䧞v +4gPH:@rOn ̭ObH4jNy?VX$5ľ^m %Om(fDj`;P؀q 6267@aٱ>QӔ|WMF&/m~& 7rn|w:tQ4D~qr%+ɇzdPe'A=_OXذG5YȤY٭w a+Q ,p< 0Վ(Je]Vg?J`*Y\ݍ LGF?1`M2() KgK-H&]-SL5kǕ؏l%cY=3^Ӫ2h{6/y[,rKaDCD:b3rEڦwZqf:CLz%Umqڎů-bgtf:\EGN,H*2e"ióNH 2 fŌIr"n/ ?LT^HS&\Tԅa%NyJ;jox* uЈ{תMfxg^T=F77Mxҩ!Sw25(%ʡ״$FTUa|SO(5~j#>-^@'Ao18In/VP,Ȭ>u LGGړI@'8KBm55h㽕A#DCaw޾Ģ)c{/om6:@ 큲f.@A1Q*IpҒqd< 4\;T@ SmV&Jn*"*e!<0i4ڽRs<6UtZU؛%G./+qo>Z'R ~67vh:@n$v6ήNaBJmMQ/2.+Ygl9eY p4qw0]x1DgG>X#QtY22R9@3 p<#cg|:JJ:$ ,)do|b'^:s.^ګm\Ǩg[yWa<--d<*@˫!> +endobj +115 0 obj +<< +/Length 11217 +/Length1 1721 +/Length2 9496 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR17 003.002 +%%Title: CMR17 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR17. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR17 known{/CMR17 findfont dup/UniqueID known{dup +/UniqueID get 5000795 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /DMPNDY+CMR17 def +/FontBBox {-33 -250 945 749 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR17.) readonly def +/FullName (CMR17) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 76 /L put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 124 /emdash put +dup 103 /g put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 49 /one put +dup 46 /period put +dup 114 /r put +dup 116 /t put +dup 50 /two put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{.2J] +J!(^{jKD&xe}zFCWYGx=mQo.cZ|uJѧib 0޹r +(:VZ},uxSؤgEʼnr8BYYP?GڢP7ݛ>`_;mR&W4*xhҼ4Iwp ʒ 9~@c]]Jˎ= 4 +wiH 2NaEdfsD-{y^QmwGE : +|:^Fz_Iwf@%)fn]}dяBڳin3Hj;tuANS}^{8a%Ϭ_K_3AaD;]^Ĉ>kU|=o_uzz!ؽ:`2;PD3@|tHt]kU@7f3p\MDE[k-ZmCH1@FO> T']0ڵ9R _GAɻwWYTƃt!|h+*,9Xhy5c3%h7j,OxӇܘTuھKQQ}'XIUp~ ֕ҺopMvnWdq-ԌuyǛ˓ʀ,IFk; R5H\|o"ǀ*ƃW0KDT ڄGTՃk7-OfB)UCfE8. IW0{GԦ BͅBRp#hK_߇M|UDޙՋ**Pxmr8/XT7RB/u wX2~WV ^hDieT;[1AIKQ1ނbViR~9#'\ pꬑJ55gz7gGHC(ڴ.-H<8DJZbسGxO&Y=A yeV^Fm܉=k.D(04@X=3c8˴k"gF֠cwz-\'*VR3Z'uQKMd +b̙9usTYhIm]d< 4=uX=Ro`ޝV`$/>zb7ٞ'jI,$io4¾.2)@W'NU%;ʊڒ+0=E)*)P[g=l*SwYlQWy*e) 2i1L~`LJ\o~CjKh~ҐmpFP`NƐٰA+1A ~Av/M ]^/i"Wj +oU<c줵X1/ݡ/FiȶMw5_Yтqco޿jbRѻ`"}]xS'2y&n2tjQS%JCI}LS[hK蓨4(Lꭋ."70ljVψҲeI,xN7VxݸցrNjokA ?Rot8 i!jp+䷿.<Q +0R=I5[Um2v/[XIvQ-^.)=\gPy) * ?[g%Гۋ" ~ lۭzL:scE=y +|ZO+*Ce_#>u}99h9Q`^Y7)pT`|3Uv6@SS*BelЂs8l }qF @9өvUP; y.fV1 +%Wp{0p +d$@":*O0JeڨNQkXlYy?پMv-^Ie-??V lG["C;$t(Qҥ +5TfcD9IBӢ[/CjO?$!oq{,ݞl yDv8!$f2ҋZby;!0yIWR5_־2>6{̂0]&V~YdNH v v>(ϭU%+[ſ8D-nU1GL ȩFN?'c?_[v cwT;zjXig*GnikU@Zi2펯ppܬ`٭=KBn9Md 6^beXy9#mEKe_C ß-('BގoZu#7stKã+ȗ)F):@يx%wkcA>՗ +R~9CSM9JH<GOU4jdd8D\Pi3:PN72gŭR5lq?{o:m& ؘu !p_?cvX, ~jiޠ<,]U|>BSEw߂=$jU'0yDálj`]XxT +̻lZ>i(N=(w{1aYuPi~5L$|3y=ȽvZEOgIfX2/q9ke(dw*?QcDa' S 0NC?N~ (EdF<y]ZiL, kAM ؁Qk 9LA@Jv, D$_xSz/$wŗEYlG~h"璲VK[UU;P61 㹣vʷ4p"uK(nh{ebI`C">>S5' ´V3nkg`jsh%LOQtRY nugP4\RM#%~#ŋO킣BZ^[ `iBڑo7Tƒߏ$qE ,)b;a'8nm*# +mhbkS.zI/=^arz`66nC_”+=Rm1eb}nFIs>u LgnWPCNvߝltyB:N@kln\K}+xn +z\}㏢O[FչW)4iSq?s"{-W+#Em[^ +͈%^K SK<eNM>WQmvW#Gn͛jRmh&MF\̕Q(S%> ǖs7nԚc.mj猊yE*HF_5a.^^Hu(! 48DF +)pߢz Ա9mEG U* F'>5/Ya0-)\uЇyk&KrS4ĎSϸ=^P3qFڏN=k|\f:/ߴؘ]+{A M,W"#O(Bk?1,Ԙ ߁Jֻfn)zhS5ػũ-[Q>PV晴 +<l_}@cޕ?|Pni8WQw 9 dkY0yhbO}pI;!cC((@r>9yӂ,oE}٤Ӟ X$=rϨKGq5jkQ?~w}3;0 CN Xd%7!́$>$ZA9}oB 3+VT0ky0l"I_>玦#7b4 "NaCt8Y0WsoP}wE`GJ>iS"KnG9>{-Qo^]#(PG1q߈Ii888ބ:' ϲ&_+`RT%#>DLW*IIQ c|YZFЏ#«L_.\jvR졚ʾrf+eܳw. Ee`{TG1ocJigX +lȣ8c;%|@ڟ!DmXJ` BQD!h#Hz' A48_ =BUTHIո'@KǁQX!*vVZ[2.UчÓ.3h}w=ߥ +^[7zɁ18 +fQ*JO!7/R0 ؄hy;Y%`z'NIDXE|_.EԵ]n80ESGݦVO=WX yjs1oM64줓].ǧ d9M(B7rkwNO}6|ۨߘ`W8Adԩ3Tk-jcM`*/*b +5FEȚAl +M(#ETY9W!;54ސ29cJ.KLɗd j<=۟i}b@&Aoѫbcj_HAFGg}[i4m}ފ#Tơp{ +$pZjI:[!i7/AlYHwv7N03c׍M(ZW%,^DE?¿oaG*F6xW(w)L46wm %5;n\ QAYf2-@">*71c_vmY # jú!b`Zܭrž8Z<6%⧐y .R~&ۊ'6L&U'`#駺"nvo)$ <3|eo͝|Jo9^^UTG1HJƷJG.u݄$ӏ(9X a@y1Cte$`ZjqO. Aj'0m.,<b+7f{'g%-cjMr>!^WĮg-qm(^ }CcR̐b*BQFO4&\/R*uaY{Ŵ֞b8AE`(tE? +dXoȟX&}Ѝz>B)Y(Ŗ d:jbvl-R3 ydH1[b ]##YoV0Y؅Ϝ-q]xO.A$/Qiˇ4e aj!ٷ]5RiZ#g[u)$ԑi ي}d!a|Y0[:s>6~1G?1.g~ /㕡Ѹ;ynI2D!D;½D'wi Y~joUІ=PG[}3 IX(zw{y0&E\2V4V-40uu{ VhDіwe$h%'WR ,Ώ*g5-rNLm;5Pӂ~TBiN'Z +pjȅ9?)M hdJɈ1VMaV@Y> OdJp]0F{wMJ:r#^%񍚽2Os=)p<=*U*D<ɨ~Dy'\:Rj뮹B#b{t*ԴQ…n@~mY<*gs=3׀=*]@s$2/eW6DDZ=+7cFRRcNb +[{,Gq>AVZUv|DW5}zdBi"zH>LJ!ig|Hٛ7wq7v潳n5I7RW#8m|`lp15ͦ@fԎCI[ ]r'_<WO3 +;o#Yy0F\Yi3'!GA_`_zV_dfat|0g'Bg7:3U22bC' $z'i::~v%B${-]|iY;MqVFsΏ@ݷ bʊRSp€[.7>\{FQ80k1bD9̄fʼnV1F(âH lVl96m|QN8Y\@]P\"Zq8)7_Dvݥ{'.Gyj&n +:PƱg=es'd=ZD#P7.ʰ,}me!K]v9MiW$BQ~hGP b5]%tlڨ}FOQ\! ++` Ke60J8 +'O1AM^VvZC 4 +>څt/:Mn#o-OȬ iގy ieiLE`̡{_2G-kjсN1ҧ i1\vV3j`-@&o6 >&^z)d;084c4+N%]lH#(/}?O4a3=,gŹVA`o?:)h";J3Nw'E=PCX9oĢZ il [S>QF 6+Iv?ڷlšSQ'v;aMm6$bC^sD> UCޜޤ +m{Ζ5d&DDOSaiFҎc.+*g&,'[itm\VS=}_ӨV"hv6kp_mIZRr|[pCI`@Z>&t8؊M ^K͉\ &Y@\5bEnf;&li@3p=Ꚑ+Ebo)#uրA00bi:d@ɮە?OKu}tݩvXicLLc_~ufJh(i8sc3ޢ3: !{Ȩ2,0hJ~ mP _뇀)34@!`io +#ֶW +endstream +endobj +116 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/L/a/b/c/caron/comma/d/e/emdash/g/i/j/k/l/m/n/o/one/period/r/t/two/v/z) +/Descent -195 +/Flags 4 +/FontBBox [ -33 -250 945 749 ] +/FontFile 115 0 R +/FontName /DMPNDY+CMR17 +/ItalicAngle 0 +/StemV 53 +/XHeight 430 +>> +endobj +117 0 obj +<< +/Length 7469 +/Length1 1373 +/Length2 6096 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR6 003.002 +%%Title: CMR6 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR6. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR6 known{/CMR6 findfont dup/UniqueID known{dup +/UniqueID get 5000789 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /XTJZVU+CMR6 def +/FontBBox {-20 -250 1193 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR6.) readonly def +/FullName (CMR6) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 49 /one put +dup 50 /two put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl7Ӧ!b^Ѵ-E>3t;G<;l: OSS*O?9-w yg8LsYtָE qHp0>ˇ +,qۊq mZD]7ʺOk-G_\SyGLN8g2Q}:ä|C/ɑl ѓčC2`Lu3D*Cǩ5љsLUkmH FqTfZ$|2xlڮOuxgG/|:&Nn$JEQyރ4>py'3ji.ǦX9~b0 ub;F8(PFY|DS%y=gn!QZИOi歨H,a7`_Z<gZeߟ՟q/~j'[E1 wg,Kom>M8;r CXVkg-/R@|lbC/zK_i,'1Q7^3EӪ9$Zdy]ltr=>K%a1\(t.EzW(#MN̑6~*E;ֿCa^1y5ݿ'hyf +s.8ϰ5ciG$5g0KTlp@>]fW7QGVn~˟=]Z`*~7 "ڌcw0U{Yn._xIPYQ]`MN!Xw:R;t+]gZɅ oswQU)8aA^av>xƍH_n~}StG7 K72fCi0Gm1u?4&]ژdFpmUhӲ$w\Jd8+SE=XnV%?ү֟G[4D)ҏ}<)%pD%qrkoX(&Ƕc<^ԺO;FIRCK-fjz hs+*U-\(=D[d)@%t)#ْMٗA=5N$1Qkh|)Zc׼=}6^w'eufH p!x."s!SpزvNȗy8~%_mD8ǸrɳhwWu_6[= +V]Y2?% +)/KR|e=b_0Sʖ531ؿmx> ՘OX![ؠ`vf|}R 4"~)uv E$U\W;댞K0 6$֥拐Pk?yy4<˒q=CG$ @d~A1Q8A-|߉b1`zj ۦZ\.r ~s"b]Ry&rD0hLS)z6M="'OOQk {2+$}<໒W` 1=',hkƏCfE5F]Ћynh|d/(~&PB9Cx9 + %,9OKLvH,>Ҏ,6"+DƸrhL<]A+6JJ9ۿ2jQ}bF[z'p&S*U$ؖa`RI=՞dv_\WB_5n[&UXiNcuοrvI]VI߮\S"Ivs qYpP]5||rOډccB0KV|נ40Cajps8A軝Y4-L ͯi FV{%xE_ *`LOU +ǔKGs|mJ%5ݯdAv<jா-W:,=BYme"r5tŧ>,wxI_ esxRtQeh; -[Gf҄(`*/I{w4iOa"č\%{-+`8@;dZxW'gA$vq%=@ Py_w駾{p6LMmM# +R +Y$Р쭀|6|噐ȏGI`fkqa}@tZ&'=3bIgU5eA},):ichZ:l҂ 2W#30rM$a ImvO", +:(%CMi@\[ +t=UMn[B_2_@nu?L,DWUx=u}#m6xA x^QZ+% *{ϊշr RH [*Yy0iǭ0abP7y־pvkTTR+%7!fF gGP2?S%|b%N&t:>EOYJJJZBH-!~yp̊Ҭ㠄֯d z/3j*(JP$'AT˪x"b4~4]Xպ撾99T<ԟʛKȟ9[I{P>5Ruc&(0ܪv;{3x}_%.beW2eSxD8o{ۻ}wn,WPz;+RtVX= \uBU(Cvw?H jt~DxtӃEP[x/2)+ഷʱx46IHgoE'nb\lLhcb/K}kVD u6#+9oi(gy5lS{ ZQ 0dpWg-Lbpy\z(gR6eKG=9U2ݧCH opr'FS+ U$κ h; I~Ζ:oDUEFyo;0?mP>"#Ǖ T5J!*S@M7#8&-yn95GTɄV ++WS[Om3Pmd,+ST졆kyR<$ ݀ 2a&=CԠN 97#~MT?BzR͹Qz]sTP@P G- R9Mz)3MHxV'.(s;|_OT՞X9`G $PW٤eY=fE%ԤOpdDmz]֥zK+xIVk +w:Mm4YV#⺸M]*Ǣף9t5#rm'Eeo$Κ+z8n/=?njѳ((,O2w <6Fnc1!AzVRIز+Tko9:W\v.yA5gf]?j6)xy!N5g,:2F%uE`Bxw(ݯɆ&^͂NV۞AB k+&@'јsƒ_;q(_:.:)[ ?bt.N|Pm}/u#7A"U)T\ZxH ro}o2Xa/vD3kU[+,뫲,O 4%߇$H'űC/ |,v=}醜Cy`6YP*r8%{o4c1OSB!dA6]W%gcTޟd>M2^Nj[N@*Z;#hhK7#2;Cݶ2 wC"[yDJ,#b‰ZV*7 xߘK;Дyv96I)I" $!/8o(PyRUS`<!{Ge+(CuAqlTcu[ j=E՟2C4%2+drQ/;ڑ}C`@|&cſ1IO}5& !v,+M1pp_㯎0iP͕񇐸gZ1:~i(l=kqa.1':;)]4,6uxcLAa^!L"u +ɜ~=C3[ .18jITOQ +Qy(E*>'߇߃5 h V`,vr3TT{3O_<΄D+ h3ʂpSV#u:>f`"_Bon!wN y/C5rb?7@?+V5خ +B6oYq^5Zp r,B^:NJ07Aϊߧrէ}E4zAWr%`HpZp={o.{#'uMTÕ[gI{dLAN }be/F? A]buvqݓ[3<4MBTparN[0O4\ۤ识BoƸF >'dnxN#ik_Aޛճs#;w͑2|ڜB8"f;GZ@ +?ZHu&mٚ< DVn>* ך< "™3`Â"0rؕ|,lQNeP0xݟ=ϺJ9mX-G.؀Ƭ 8i +'h=,0V Px8kA8(w}Bׅj)ȇ:x,=NqQT]2]~T/_J:x>`!e ֐p:s*#$p9ý<\Ϲ3ePB[Z89V:AJ@Ͷl@RՁ;hܜ :Snt(&#ސ K X,G +.~e/ +endstream +endobj +118 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/one/two) +/Descent -194 +/Flags 4 +/FontBBox [ -20 -250 1193 750 ] +/FontFile 117 0 R +/FontName /XTJZVU+CMR6 +/ItalicAngle 0 +/StemV 83 +/XHeight 431 +>> +endobj +119 0 obj +<< +/Length 7907 +/Length1 1405 +/Length2 6502 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR7 003.002 +%%Title: CMR7 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR7. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR7 known{/CMR7 findfont dup/UniqueID known{dup +/UniqueID get 5000790 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /ZRYLLV+CMR7 def +/FontBBox {-27 -250 1122 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR7.) readonly def +/FullName (CMR7) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 65 /A put +dup 49 /one put +dup 51 /three put +dup 50 /two put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{ޣ\u3]G~ 7G!/ Q FM~f/m*i("!i +K5> ţ d,J^,]^ +z* +khjOwq k&,_?Ɉc"n?W)Ջ kÖ投`Z/S *?c|Wgoʮbi8hesQiɺ4)FvP Vؐpik`j`EU)oW jBNfPTa_$ uDd3QBZSfyu4 螨x঺N<1Xk7I>%} +'T)~$I%qPI#-MVxkx@޼ۜZJ6h=hAڰ:#obv0e\¡0cPBz{f=d1G'{1@dD~yXrDOZE.ϐ=(%^/2V)(mfR20`މTLm/QL zKMmͥ +^vA +oEGxvXIxAW>xCª5!w^ ĥv(4,-eӻ?/R?Dqeq-xE $ܘ*3oᮘY+0{+N.>ψ'=IJ +f]̇C"spn21 {3=Ej4ZN2 +K~*w?#9; +A)Py 7}^muF2x~m64&G?r\|6L)ew¦ØB+rBc۞3v +!:0{uL +âAj}{q3W^B'(Yhn0WRS?u Zin=ٽڠǘ){s=m\ul^GhN@(s x6bM'*'6?nA{,1{E.RxmN4k(wl30M\Er +pty o> +{a_S +[D.tIEӽ ]fVՓj7Va_a"-{#- +:bO[)HAXE뻔Ug2zOqq" rI~$>s0Y@Ȩ5{I>y炲oCA2=B?"R +g_,~q.E| noϗT6;i?Xb4}teL1~&LdZ}2W.4.^%*D|Z?7W1 * DD?P_toKL'c ߇mS>-#| ;[R1ڢ` +@@onh.VF+w3ݟ)RX#9sz4X"#bwL{cFNj'ƌQԑt2Tn~. |_ߐk(Fm +n8*Y3".g~3SBج!͗s8 +݆ iD7D#oEMP00pn̋E\ٮ+7_ QzRĉ iDoB=|n$2bVÛWRu^]72# +x7SE5OU:?oq W\qPt<hR,v7EbZ5=>Û֜#hSRA>2O?l"q(DOuk4_}Ǟ# `N0N_CB<=gKO1/a!!ԓ(`J˭9.R˨y1jlnL`f~ͪuJjwD19K^W7L(ҿkH8rC/_! 1gg` bu VdoT_E$ LZCbΏ)#ue*<m}}<Z1]7n=6c~#`oM`IGCcIR(f 1?>+YKCZ%s)pxHODRhL⩩? +F,@۷l-%xWuLT7a5 +b=oюca +rPYqf3UeQ6ju! tYL,#Ev8?@<m?ĸӿY7^U0M`X,oz N]CSpbӿ\{2,1ߣT&JRCu& /D#eΓ|}J-ozOYTC]i/ K^QaCi{;ᤩ`; +@WCk2YHG$JԓO>K+ +F. %KWWZ ucQRT1 >r튌;FG֧':ũdXn|I]ͨxq/1siN$bppa5DC$6lg*4/*$Mmd$$0el7aa (w3\\XAȿ4`]|v21) d6.7FkC/1J5deGñqvTߞN|@\%eC_>$X8cB'f{ nQZNr Rn}R1Bz _Мך-Ekjmnk"5j/2~bE9#FmY۩~|NDpTT6Z%H ctjz3\ */09R[Ƣ3/c4֪K^ 3b%B@$Md$8(sPWcY:2N&q4$ +VYvHS Gr +?6>s{&@ Xz #xHH+D%vZ~WO?V33N FӁ9 +[" "rme{3L7gdzR`QK8\ڕf0h <8 y +9\PD^1L1̄\$CFblMQz.Iۯ8fv -%ڞOBTVHY+pJ}S +ɲmpJ3Yas ݟ*SQYLBP_[HWBQgf `~[x/yp +vi >zxup^ľ@#uw<4b,m*}p…N{fE@fNg.`d"ŵr sr45S-U_x`F#忐{+BUTK$GÚ t3#;8d TpLxcXdl!vFwאHњmA[w0\&CPx#5]^%U3z*g5PG%E)QG"0)zA=W J]QI7r:s>Wv Z8yey5HE <+lWJ"W}39oWv"o9aض8^>QL%@_\^b"Ap6@mVy +`0="nʉ?6* /zOMpGfT3ۘ!L3~r,}CN''HN<#`h-p?{/h:â3di|/*HEnz\5lѕ:;ܩ'$"X^Xˋ#HUдsĤ"خGrIdFΤ +endstream +endobj +120 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/A/one/three/two) +/Descent -194 +/Flags 4 +/FontBBox [ -27 -250 1122 750 ] +/FontFile 119 0 R +/FontName /ZRYLLV+CMR7 +/ItalicAngle 0 +/StemV 79 +/XHeight 431 +>> +endobj +121 0 obj +<< +/Length 13328 +/Length1 1851 +/Length2 11477 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR8 003.002 +%%Title: CMR8 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR8. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR8 known{/CMR8 findfont dup/UniqueID known{dup +/UniqueID get 5000791 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /TPJKYX+CMR8 def +/FontBBox {-36 -250 1070 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR8.) readonly def +/FullName (CMR8) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 67 /C put +dup 68 /D put +dup 70 /F put +dup 73 /I put +dup 76 /L put +dup 80 /P put +dup 84 /T put +dup 86 /V put +dup 88 /X put +dup 90 /Z put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 103 /g put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 46 /period put +dup 114 /r put +dup 115 /s put +dup 47 /slash put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl7_gѳs6;P}tx,IvJ3Yʫ] +=~Hrl;H :(xP/PL͍SI'sb~|PpNcOAͧBV")Th^Cx(Ry,s)+Hߋ;m*?>H"%N;8'bGZÕbd ^i$iaesF)l:}3X + Mv%GN,Ҧ/~`Љ"JO238ڐi -]IGcf7Ԁ2ڣ}T  @ &x߳8h +{ga5Lw'~=OLcgPv9F˛z%e|O/bV K ^Ć8ԇ<)M<m;疑}Od1]ZSmPf4Ժ)}MPg2вl1gFޢp V}{<[5iJOY>5XZ$157~Zڕ-UDm?3δ쩄'V+RGpyDHvx{pcL1w¾ FMNg(S ?)?;@ṂBN߬GXDio n PSSXD[kg[tU^?f27#xUým`jck$u:RمiEUա<.^Y&ۆo9s> û +8jzIC%oOn8Rg#;D2(J+|Gk9ڲփey/9+,-b3w9W7} z᣹өUyTpt_24a6s!O #i׌$޳\Apr$w5\plYn1upd[lk!lRv4_x_$V[HZKr\wu%_F ^ =ԝȆCf%-۷R>Qt@2 )~zx6mXFVCEOxJ +jFmh)XɽЇ8{u c*;e?blV|@-jAf9Vb 8Tdj4!VerZvZ,eV҆?0 +ZWGvl~و[5rL}qTvmjCbM:gÇ VOiڪ#|ym-4-, fFxWpsX!6q-M'ŏ"1,sxɵISĜV"^j73EvV(T^K-k?Ӓ.;d{)pBh+4uU *:m;<%s!- +8X+p&4jO^1TpvD^ x$+flx7=1S6>rMz 40] XC 2ƺ_s5uD^'? jeq (ӓQEuf%x(m"B (brqYqu]ΫHgp7:NQAdYQk(|_S/8aV%'ov"U2!kh5Q?)投g&J$,jS]&1Fq**X*ilSfN{qZ '@dnl{"KDŚ 4tTY9X}4heQ l_7@ZUĩ/Ac*A\4;N{45L=!V5. }rKqS*'R=:tF_}OV-F=;*ZGoe +ED,A$ CÚI9:Fω/%`,miSs1M>l搣Z՟_tJqǙJkuBy#+1HLabL 剙 Wb])Qjfnpht;\܌8:,{=JE2[WD{D7ܻ9'Jޞ#11j:n+G,,ls3݂FITHH`v=%.ayKyMBn!Sukyv"5Dz +֧'4Q| &֨ӷRc3k&ӼJ 4m [[h|]5 +9Jȍ +0g_ +wn{QAnGgIH]E oV值4:(\TYs7HAe{Ю?VN,pPTlΟ fg;I?"BDyв LM> +E,4c| +}=xbK2^^WUAV7xQ~e#EJf/5R2 jn@FԚI&d|+.;b^ɺN(S k< q/3?׏ƚ~sďS}V7+v8kܩ!ȿ}x =7Z}ǜ]c!j~?}&bXqiE3xmΏZ6զE7C+:Kꉓ~FdNg1Gκ%ׁۃ1ýwCl檬q1FQf1Ż9\@¼(ň^Eг%( fJz^ ' R 2͏aǃYֆZZgd U9/|VϽT_&$_=1zGGx /"Fo<,*#Yo:a&jCȯťuK`uŽ /uwaEt #l!} j؇'*eRh-.h;hMoجcx(iw N̸u T=6^ V$[f@[sk4kJ@/SOnYJ\"mz{1*JKْ|(nwCָ 4&j_G.Yb[J87*"&!Ν&${G?`lê);&|vMÞ\SSELok.N&@`S9eϋci n "*z(N(`(j>C1*CɚIbtrjcWqt?[Ii56߫AښIJ'{-Al$h;m#Q5dd0u3+CcZы|1B]; T}݁{*!O^5 ;6Iˑm-x@ʏs[2 NCb+i+Ɍnu}jlD=_}ٹ*13?9r5\ʥB24"F#KLE*Bmw c,ɰh,<#fx%+L54yR#Ss+j%rqJH엮`S|'a!7[Z&.BvK94{~ͯ'ElB9 6gŠnS&}FL5r1}X蝻?;HǯPO*E4%_Qy. +1}ށ;\SlKE@%ŤQ"%VD󩉬y!;0j`.(9d !0;/[ċ>#qod]O>=z-)dgWl|nLղ FEHқ\~l'҄u6UeGBnKM̉OeӁV?hoR5y?ݙvĸZ@'+my5@:pqU`y +2~&@ʹNt;=ΰ oY+KۛFtz/zRk]z,l93& ^ y&\ +v+vXuC2I~gs="(pQ"RQSq1x̦,1fɈ[G]x&͕k5E' zFm]mT{ςh1Z(vtO:kТ4oP~Ԣ 豟l;ݳ1`yI@!fLE6<+w/_+XNVLTI?Yuk6rga tq=M=?u4~h7ajGw֖ˣՙb8|7_Aǵ2s>@rk&$n·nٿ`ϼdKDNf60ƀ4#&649߮XGOUSV9'&F#U@VreN)tX{bn̷|C'Ob^Jp$:2}osre 3ꁈ#R@D eܾ-찮-#<<\-8ŷ:Ws}w Ӧ\|Jy:,xf~X0O @xLcfġ9Pj'7a3A }~P]T#ZWo T?2#[=UN3JMNS_{/,ӛkGZ$FG[B{S[VUii^l>9OC45ֹVqY@{$9oz@:6Oeb90i.fZH车$[ƾl0/f /@?BˆQ!Mђŀ +GX̺fNPiqJbb"ݣv/Qh/0i>h̒O iơwL/"B ǫH 4K_ r:ݡ`ќ nFW0+I4K3v#(2Gq]X8 k. gn߷!Hjl+@ OEb/ntpS)kI'i.OeQ[kգU)hRU؇9w_H,@^>hG9I`\4"wtS_vՆ,tk+y#2^lh rJ+T1LF4>ϒ_!^y@Sp)״TvIƲblfPxKYAݙihҿ[ϪGDZ2اpl.2@gv8}Qx鄒CZy50ǜ^UnM )D4|M,ff +pt οJD`͔0F1c5b4d bQ6p~es2*()G)L8edGؿ3E0@ꤹ/crSu$zS2zNekzDŽO+yr\/T1QwGxt6H5}3:CuXJ6[\bYNH7EA'0mp6AI Թ:FoAi'7G4G{YjL%à>2y%_g;MB^ш ڎz ^紤@fCz/3S@w`7)Qg^QÜ4f)XO[h_sYi+ UHKۮH&VЂ2_4X'RjG`8[m^ŀnej+;C-|pܥ!q7أ +2^HL*!AjӭA8" {\W)x +2k~_Rl`mVLaf8fg{9=͚-f>?mrkdΡIzuHa̤K@c#,z$Xu϶!"M4dOcGԧYbแQ ]J.Ϡ ep (wnD|]J´+XSL ++`]I9K_dnEd|lqU$ظ%ioMzƵuhԚ +u7?+cS,R!t-+=|~92*%-i^r"1r,d/c Ұ&9"iH!Y#puԁ Wl,Nd>uFHG$ޙ MN[z`@YU,@:Ab"~.m|1/[OxB?pKZ+s6V:Cٛ4?excТ9PƪNDHˮY oA~6D}Q$AP\GoZ RƱƝirs^-[Ж[l#5hBqyn{iEV]7{!` CUFL巜&G,3VµyMUylHmd)b|;5x#HTc;,vz!Ϧ]E.&C.h[_ltz;̈[%̨6YzgZ4G2Z@1 @0+~um`uH.j*,… JJ[Wjd8hb>鼔&y?2# BsZIDE᩽W:͡vMYTG]& #@kdH65jX%@Ң܇RA5nx|)9]Lm59ͤQT}[KisZS3L=-z&H赤ǁ!4N!v2AI.@QtJi1o\*\s$}=5ʥ1Z 9=C'3[/%O[9R53+RM\ bHOX#-ߗE r n* +{1{Dcs:[{x};bZZ3V r<[evie\KlPHb;M.V_KyD cYU@ ќ M<'gc9%`[i0aX=$cs" y ^wDk7RJ=%gwXRfUfHnʸ$N~REm35Ů Zw'NE\X^3NxdaW<Ŀd`DxR[uCj+(DE7wk^>C>-M7 7_s ]uy#J@{*ݯ|k/F>׫9_1O$^@CA-XTȼR4Np$e00K=kCq^'af /N8&^øx>SgTsu`Tl{e >N+bH "Ql|QiIqvqۼzHј;zDWc 5RiWrh!#hLnY ɉ=Wwi%/*b +\``w z#p)ǐR ef^;uxN;E<#ԇ|V =` Dg;T ALJ~c>#-܉sE}yգSQJ}>i<[h; ^(/׫?ڽ'Ka.~.*Nƽ¡ \6dh.i3krV;LE%K" sN6ŚY' +SQ*i 咸aw؝R iK2vO̒^]Jh?[R\dnSveYT\" +g!1Yg +_6ªG,R@M3M ++G~uZYt ?p bh$\7찁+1:>2 O $<ȦHbAib2ɚP[R%˜ -X0!ozUXoD`;̑>V=Keh grc=xGCgWsMtXsmc^֧hLQ +endstream +endobj +122 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/C/D/F/I/L/P/T/V/X/Z/a/b/c/caron/comma/d/e/g/i/j/k/l/m/n/o/p/period/r/s/slash/t/u/v/z) +/Descent -194 +/Flags 4 +/FontBBox [ -36 -250 1070 750 ] +/FontFile 121 0 R +/FontName /TPJKYX+CMR8 +/ItalicAngle 0 +/StemV 76 +/XHeight 431 +>> +endobj +123 0 obj +<< +/Length 13138 +/Length1 1736 +/Length2 11402 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR9 003.002 +%%Title: CMR9 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR9. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR9 known{/CMR9 findfont dup/UniqueID known{dup +/UniqueID get 5000792 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /SJNHCC+CMR9 def +/FontBBox {-39 -250 1036 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR9.) readonly def +/FullName (CMR9) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 75 /K put +dup 84 /T put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 103 /g put +dup 104 /h put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 46 /period put +dup 114 /r put +dup 115 /s put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{x< ,-.2iRnñvپ1䠕 '䓱_r"O_t3kefBݼVfj9ҳ 7! wX: 3Jwͤ푘IKjfWI.kvCW_5gWZWO~]!K"x؉ruJԥ?F6Jq>B^f'<2bSz>/kaɾP"jt}[#[p__ @Y!ɹsu~/8MeC2+{x$*|܆k)D 3CҊUDw/Õъ7uS2v΁ ~ytKd"f!Zυ?.ǥTmBlHEU[ZF`Qy)`gdeFIrU-J~xg4KX { 7$O@M?\(L⩎z%KNJ`ī}W6ĠAP6N錛"7`ܓuN +SX@*i,xIۜ*O/" +t1;$l% p#B+}ڀ'ƱRS^P˵aF(~#ۿB(I&@}-:{yA$m:'}ӧj^\ĺ>segz!,ܵ/u-9u}eIypӶs$dNQ/9<` _`m;4uacxr!LB Cu"KDPoѼczضgӅj=>1Im9!`Z&USYQoeȲ ׿ 0G> ?:. Ndơ]U5=:-z6g&QZI[)( Q ^6GB϶)Cflg=У +p#E뎶o%iiT8v,%&{6"I"Pu>Ul Ҧn}㪣ujyH^^?"8AÆKh_Wq(Wi4s_޾"/b,zVgl8_GjjxCFTģW"1v&V@}B8Wt9fggs Km }x[!.ZCgA۬<9vD(dh9,oK4Ѐ?Xe^E>miQ>L +|(2>!*'%芡N 7Ԣp> Wr1 N{L:+>+͖:U)h|NS&V<C.ꬼVݦmwҧG06RY H&9g>1iWI?ƗųȦ2•Y;yӂgo٧ji]WQy_6K1_@H{`xx +_gg\It5m%e|0/3Tizwq}ʖNIAeG ='XC8o]?ew(m*>[G9贰c.b7Eم}S(EJ~DRbx `bn* GoB)7!SԦ`o ?9h{Fk9B +L1yo(QG$0װ]3#,OJ8|~"Oog(ĻxCg픻4}Pe &ol0' %Y>VNo؋lj=;xĭ3)!GtfJ](2{)ir18/dYY1AgqHus'3;퐑˞RNt(n> +" +O`AoxbE ҚO(JݸtGhacb-iwS9϶](?##ͬ7ۆDh,,#X=@c 4?q>!7'CR :p\(rGVIʵh3̓1_ +տӄQsbv +tü$>y=-|犬DHB//gm?SFOEn7UߎUfݢ׼Exmþ_DRan*=vߕ2teX|uj 5Θ*{txbl&V֥ !Qz>!)x[5&\#@ag$5$h;mUx)|Rpf *YF˕Hs- +*=,$4zkbkv?JTEz0X_gS"TݿEԓfY S`9ڳs pc<ʨ?Dс] BG?8""t9ES)Bx:oafD&_<( 7NL'%_1T69ypF>\'Cx~LN)VޔO0"A \ũwyzN"3+aYI"" [Uw4Gׇ(ឳد4drچڨa*R+d,wVm~A)|Iy@ +A%0nje<3D]=KԪZ})Bi#ycJ&kusgWE[Rw;)TFY߁΃0u, LTˎ!l6p(RJ&4ҧ·zD(8eWEO (bHN9I2qM"Jp߳ȉLx91( j{x^P@XgS*HXbe&hZ_OVQ#J;Ĭ3q6KXQf M<PdhJ iJ@YoJ fڃAyuVi#84&D:dO&FB+0M\5bDl[Wj>Ju(RܨЗŇM;UFߵػ6ct(Qm})mh i1rn)Qشξw/{I3;4gs,dQs k_S+y>{DK3-z'C,b!HfYLA~q0.f2nco,g5r#|m05oJpHCou{ P1} i&T k!kZeni08amql!2ŧYs}ELDGS*)@N85)C,wҚ4=6"Mzt]AJ)]Lr*InC^Q!IQVZc2ՐU;BFbFկ8nXIAL ^*‚o.\SYIuyXs? 1Џ:GdqN$JgnLs{BqY]jfYBr뎊i5pSCq: +99xec]R{zC?yOS.+T#`J**Or: 1-Ga"FXb2OF+< PpT)Y(aVK +Zѡ̍@ݾO:r^:M9s q@*DY_<Ib>Ce[@Ч]%Ȁ#K7Rjk2A>&^Rz=f)gjAݓ'xbBPd<^Ҏ,!ávm J!*5ҋ.5(K>++4y@B[Y -`͑!-|RVMr6 d$jwe(%.`. t +`n1h nzeR#nmOنwwOu*NkxcV9Hq82ɤ3՛.S+@&\]bWߡ!Nޥpa0fln +ED pCr:Q=̝W8{mCUط;Qtߪjƚ|YQ4C<ZeoD>소V@R6I+jiM׍.;}Rց0!3+B04OqߤyDpk~rVUlF=~K,܏ Єʳre!3wr |fж|l24"le֙'IN,5LkME(9hRGM'W vnvq7R7nmpXr8&kfLSHJoe4+7' #l~zpIɀ=*k8? 15<ۜq_g]]FE5I /j_RMFsv3Fl5\sI\GCq{{* Yr*+'e8%7?`~wu9rYޛ'PdwƱ.=v힗su}]?~.ʙvj/g|ځ9hmag18&Q)ZYxqxgJq#_V{"^vуVWh6R^0CxxLJ`$dCbu;V,8;X zS4;AI#`!wwl[z~7pR/>(кɄ3ZʪOu?(땉aڣ) ڎwuE&]m'@tAtP.޳${nA~?*~>C7^9 %5g5v{~0?:XwELFM]ўX|JCe&Mׁ<̅ٱ+JmPAE$Zp햾7d}[<ƓѭC" q|߳1z O>;5tQ\)3l`ĞDtbjbQ NURPKltѱ![6MW/MH9L|f3+X+H;eg0GkO)M_ *ψ'wj (ţT++O`UrAiڡ ǹlzR9xr reiƞd_$|Cmci՚k̞-&%h +!7Uz;)y}`XRsv^%$|\2o&OkkRs!? &Ti~S"I)o0'%aҳ++ke-9FBց+ "R J!>dm`'c`$_;E&#/!X$+[UZ6 ΓOqh#v\/<>) +aLI\l4\ I@#ť+W:tugX|^{iH3hq=o:#eLĠ 7{t V&.k$?u*U8f͹hs_(k%7n5S +anR[%n +JO+e R_Wǯ +Lf픟H(4!zgބv2>Sv'&=@Z*mYC%i J6Oci.N,\j`s Jh^K!_{}5KK;U0{ 5i}ux1@"u +z1- +_%ū5 +z'Ɇ'ל}ɨXP儌6uj=T>H9CD1/T,W, ͱh*7X6DAF7y<tvc2mhAk;G5xZSi=aCN7b&kg.Š ]|4 yCBx0q'N,R4Uw|Xyi.yV֊5`Qj$UP7鍊{K97@Hw|n#7S둍7p!jw:d3p*1&(b䩋texm _OVq 92A~ 5mAp%z`UmJ<8:?DŎC,,V"'1c\gr? :hIvFk_Vv +2%(^!8?65!> 1 x2e!͎}9fEtz"*TU,]L8 j +thӦuA-xvB;n<2He 69:*n.iG\x -Z +;_Yy=x-RR4EsuG\Y h50 KO9yV\`_[3JUQב)`ϮX:2{oR$&j)Fa8H C5nI]=*pK0#(7|oB:Pᵢ]:sTl) +UUB[W8_믑gEʸx:-m1’G"F ԉq t{y捶'܈t7؍bk}IbUVSٴe|{7$Cdx@Y6.Bo.|?x|8$;`S4~dcz:0hV{"ZEoFo=c]T4rdQMf(IR=uG˧v~F5}iA:M{oHބý6?n)ص9>s#2GӞ5쨘e@b9e9nvOhO쿭1|f|{TS8t>78Ana-,"I8+ qN86g"Ryu; f quz rIp:6QL( gp +R*QQ}C7w]i$; AO=,~&A +HߠRdop;-IU5*wN/* +Ǜ2%>(qd$ƢS2xfZ+r^5Jk1/sP܄!{X1U[&_z_\vRn;#xIM7:Xξ1ZA}XS#y![;wxŹ+Im^UѥA lC8(WPꁯϋWvφ-&8e3.!mV+PI ۮ3-U,&jK_Ħq]BJ taɋv|ҤAXFr>@ #mVa1ǥ\Nz9 cTüV3X8B uA٬_+[2G:rp*zحlF؊Nh19\-{兹?:~Ogh]݆niʷ'QK)CUA:y-5 e.5!fHΩ=2DRv3WClXh)AYV]u[FpTqw%hEc@;&3KmzkR\__vUXa #3_cAʤ1@;s{Ō 5?)ʋv%K*zhlbF|Rdɓ+nKUULٕ79LyN/ % q_Plpa(?-!G|fj +{HmiN.:zJSͽf!'!wUpnz=\ i0kЦ1OT$w}Gr7^_(BYǏ-.Lv@cxdfdBO0 Z,,?nb$|H2 >n8~Xӎ}*H.)}ڝQǎ~H8qw< +o1|"PG>frtė-P, +ue2_-!O +v2]Eg.[K,!2.\ n&e,*3Ci( `9y2 Ym#X ԗ7"8'IN5pL&I>. 9!ћFoHR(91Y'ڬ* )d4ۣ@},;]ZKN{Gq!lOyQ6U}ɕ"R&-Cͧarc0@>!^uXi`=ĝ)o\5~|D|s^:5.J': =oe.Gvwv$BLʝY/|GPi>Ru/$B\*niOKO+.]ㄯꣷu\-?Q.N4Uy{%YVi(c9`D8h ѯ{%LH*62L5l_sM5y@qKP?L_<*NSJS> +endobj +125 0 obj +<< +/Length 7527 +/Length1 1419 +/Length2 6108 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMSY10 003.002 +%%Title: CMSY10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMSY10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMSY10 known{/CMSY10 findfont dup/UniqueID known{dup +/UniqueID get 5096651 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /OAQJWM+CMSY10 def +/FontBBox {-29 -960 1116 775 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSY10.) readonly def +/FullName (CMSY10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle -14.04 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 33 /arrowright put +dup 106 /bar put +dup 0 /minus put +readonly def +currentdict end +currentfile eexec +oc;jAw-ᾉYň5t&נ{hLGqB`d˗Pة|*x\ޖHtEB-gedog7Q`[['W73sZ9 m !tAY!$tY\r[uTIUiBy[Ȝŗ3Kï6zJ!˒Js&B5C"m&`7Ӣƻ3ugNC O~̶uo5=_T/ h,$B%dʘ3l MoYLڶ~3^`12]=l8B6PlpfW< %PIN!ju#,.iXnȼ‡o$ҁXꑷI5V*E6tKo_)RPG;Z@9"V3TTLN Y:Akڬ6̠==80~DQ Q^br/2^KZh`N'Jt4iBYҁ7ޟBU_~\fXAZl_ZƎý'xHbG:"l5CU[aLrf 1[;4p^NpqBD '؅93M&9{ VD 8 aе2n.hf +l?K[$Gp/JzcF8vP3/XO6yAo~]WqDMY4ߧY̢XPEL2_2 oH{ +1x'u|o WNRE홹&lF\LRh1Fb}+l C] (vfo+fM}l?c*ވ"^R]miKOҎ!I ӲR_tW;u@(#t*̧ U{|Q}a3Fl8xtHWA­;!V CVov?³;=>,㧫\"RvRCإQDh +@_,˜kbflAIP^wٚdIHzk(c3xɁSUPIf{KΩs Y/v[L%O@HdjyTõVmqgC9zTC/t~Řo*9rIojUKxj. ,+b1ֲ IlDLQZ3P-no'$F zg!Ј*oj-Nͥͭo8KwQgݍp*1^.֊ LV~m la ]%."`_QipŎs5y.Xͮ)Td1Kk̊jn0zGqaWQ%zJX3tIy0ľ.#[#D#EԂppF*ޘvrOdn7n f9*X:>Ǽ:*Lf͍9&aj;+{0 )AgðK*XKV'zZA) n TÙLJ^Di[:s<ܸ2!U|#5VfUqP}|=G5O|Ps9}* ++gpA,,=|j25Cɂ7 ./Fɹ0tRẊ."we hPempJo@▁_A3QBV~$9Ej= +]? {w_53Fgӿ4BAq41Pf ,Sş6r[v` xG$.} ̔ϾF͙c=f!*˽./wĉR8(@ًz c@N&Imݣ>X!me@lW"VCH8kՑŨj]n3X>Jz?D=Nbn {qbY(>"8*苾ky3o H Dw] d{EʥËw.$Vhtzk$kk$]4cfCW@3plQQ晉b/pTqF8_AnQmK{&z;<տm[i7뜣'*qXTnt<Ռk/?2m)fy#(`%{!Q/0&sxfB+rE[tgOKQ$$=ל?d@3c)]3%*M}H饞;Cdrp1jFcstG'C\p))_)( MM + qv&C3NLZswTPu{sϰP+-UFUP"KΆ+Ye7?0(idL;gk9(YI-l`;`AH:YHb1H{wR^Yњ, +$FԖHDV?pyїP%F=BGKPh~N[I_ꈀCTzf <Ӗ`4|mE1J'$`}R \N2kfaouJ73vKW{M3?׏M]:W;vX;B X.PI;?!T . sU]䮃=X 5rMt>y=*bC~^ tArl'Ŧ\؟L냡P&7ttuGz;Kg4э;u)";SvC~?J/F"6U.0>+KQӄ0"ӫ=sxoJ]ת!w6O.}t5V˩+7Us֩yēTC5GrgU5$&|~G8 Mv(jt Ϣn]]QWOؑm. R[ИoNng IF:?tؐSUOcj2Cm[O7>kWkX' #t'Xd9+E7Nd8{]m/ ׎dvYYwop!EP7F?ojP9"gBP;B^QO3*B 3un$I_Oe` +$`}-9Q/ĥMe?Ұh]b _2<͖+tª[ϜJO@%MI tv\/bMVF05+kI2W9>f} Ķ3tj|" +[LhY)o57k#%H\,x|ssxH͆|;` v%گT[c]e"GUj߫ytvx:udQuZy_Td"b+O]lx'6w6XCDKOf(g@w]fV[~1F^A3v Ovү2v +zT0b#[zyϒ$e1k5dRA`(Ņ@{=yW>>y@U;=H;c{30ü^ծ)ՙ-{OO2R´xQwBgБS"תlbz;Iy\EprkM @@e&3lʉtS%)/pR"2u +Ee5+ٰsZ'bQSlj zvހ~%.Kz\NE,eV2=Mo)-JcV:U2Ѹ>1ȓ"QWOё4*Oz.cjcY&=7Y,A5nIF/?̊ ]as.N*T 9Ͷ?=T"m grvdNxt(h,Dޝ_v +y`+W?od;&ȫAI`knywxż5č-ly SZܤ`Åq}ۥvkmT9ȻT 3"NlF9Tcb`eL֍lU_>iD@PnӃmHA.|Y/"BձO%fA7Si5=6cgI^ؗ Z/Ez4-l;¡^ |lTM~]9< +.t:Q1'ar|*ə11-VN"DM(xSRJk*YK9GW(Ru~|iBcC(†k0MugQK*4(vHy$dor]}o4e%h,OqAhxѪZ/=T +$$z67 +endstream +endobj +126 0 obj +<< +/Type /FontDescriptor +/Ascent 750 +/CapHeight 683 +/CharSet (/arrowright/bar/minus) +/Descent -194 +/Flags 4 +/FontBBox [ -29 -960 1116 775 ] +/FontFile 125 0 R +/FontName /OAQJWM+CMSY10 +/ItalicAngle -14 +/StemV 40 +/XHeight 431 +>> +endobj +127 0 obj +<< +/Length 10505 +/Length1 1593 +/Length2 8912 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMTI9 003.002 +%%Title: CMTI9 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMTI9. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMTI9 known{/CMTI9 findfont dup/UniqueID known{dup +/UniqueID get 5000827 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /FOJGQS+CMTI9 def +/FontBBox {-35 -250 1148 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTI9.) readonly def +/FullName (CMTI9) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle -14.04 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 76 /L put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 44 /comma put +dup 101 /e put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 114 /r put +dup 116 /t put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsS?#;IHIRd Ȅ'w7 Ἲa }j𙪎 =TU | Ӧ!b^~CJ?;UߨY,Ԭw34D2޻$Xec,IC0aq)-PUaVpSj*?4PDJ ƱNJO'L3nBg%dO޻ƞ BՌ:9v{Ұ%4II-{XM*4ZίORUJ O+"ґvO@3dJxl1Ԛ^}AKG]\Үӂw.@,I؝8ՙ^|٧ +HZsN2u զ,WӮA 33pqJIkEj¯АG8< eMi u}JymKP:cՆn~#/ ĊK'@`F,PFd/\*k\4 Ew>~I(G%w>hI7E?Oz&Pf} ʪշM`j:W24,hV=d *Nu5"$Q16PN--C&>MX ܴ/HG'+:Yӽ뜀fYM2~[z%Q #Tb[zNE!PX1G $zC«>nE|τr'xZ[L#{6@^.|a[bZP js|,dkb}~ā`9ش;ޗ`c,SՈTٚUIR $W\ΚOb_tsnV-8;rsIzAM7ŽL&UkD7§3D񃤐xV} y ǵ׏i³7N5 İiJϨA L1k$O rŃlϳT"ߧD;!U+AddD]t\4IqSҫ6tΟM,I6UFf?t.ZwdTcZ;z W,w)N!!\>07A&.~Πi#FMXz/~ddwwU'(j́t~qBc8i3=$[Uҟy?& O;4x cV haزò]矂FCRSFxR~uZ?2iUj<B'QFX8S tƚ({֟{x [:1YZkDP _ m+5> +kĿrv,=4flz. Nx]0ȆŁ0}Sz%A[7pX+2"o5T{i Ab,V"tCPُF6q@gH1nΈ_=zVǶoDַƸ럒RW\܂Y XtI@2p_'lR!2{+?FoRyR_mr9..>ýv+,]D_2WDujNnI2}X嚉[@-[a_oU6.wolJq *]A/m]#(1»!I! ;~PIg Ju4kh:qKmWRB}%"VJK8fX Ų3"GS3Jh;_3o4 {U4X)K+>fΨۜy~^v k` |BJK08j`- +4%.qQsK.FQe ڴWOlG9ْQeꍲ4Y +s +RՋ^Ff;9D=g%7%z»{`I1cmAH1oYmE&³$rN;*,W7_,HqE'ig^)b~f߀i%!7RN74tUQdد<"8z kK@A]0<6HQs%|?a#V<!C䠚${fT'2Ϙds @Nu UBT?P :\݆F/idl1IZ)ƒ7ֵ;+>wbJx6=tچSe﵎cIQ\/?39bݫ/i8Օ佪S1(+TBPWPxnԣ[9؇ԒG8NFӺOB͒;zwU2t00QI'4S)l#̀"4|ZBRlLC24uGw^Ǽ2FJ%[VgT@qɞV$/N]S;PG"ƥiZ?/e6#7$j,e@aS /?I'C*݌5 ] m*,,yđYG"~)WŠPQ_kM@% #mHOOQ.a.c;iݎ 9Myνq_ҨUaoM AxԎ01¤KIGf, 73nG5mH&-,bNP\|f u[:O%7F-%;棠j^2'Ӊ._|tƒqoidуs" br"(a 6m׽ SEi 5Rf%㺮=J)H)M&S~iLK4JArmj7iv|e+odsC WOя4?߂UF?ԉ k*N!ܲeRjK-iY^e&2RTs\m|y`4ZХng9&JX ^p +풩yf-/|lJϹlz# LY/=Fs7k2a|Rs|cq?d2E҃ŇKAz!w- +C-jiR1X}M:)T9,Iɺ\XٸQ,ܡp4YtF1aubgYcMZFO6I ; CR(P +1^~nI;ʾ9,rТR6LU[Mؚx-&ٳ!YBIV'Nf2uͼ[sJק."&ؒiTM* P5 kJKMGNpp||DQ2qAB7}Q `samoa~6vT!Ҝ\߂a>[((eN1(m ڪW h:{ADOʳ[q7;֑G˜'!3 wBj6f_[6u8\x#Qyb_*pY5 %Q6}&^\W! XVt 3xb]nw8"w=yprZb6 nmbB e, EɋNTSPo]7ઔPv93UU?hP~%us˪?, kRjF%oxڳr/D5oJJy]hޏtñC]A|l|5Tz%:SܸLm-H'X4dA4k#K򤾃}hBFۀe@Kt޼((R$ C]s9H"I_4obAw#t |(?K>Iu+ȡ)x>bϢwnћLBe ^3JPS3~WA#Z=K^mcRھ-qMT Žөm8T lYy}0O((`j|TsǪvR_o./9Rv"Uk/5AGM>n/o|L>7{ (Xի#hO45+DP#ʓfw̯lQ7 _2|]w `cd'-H|_:k/|_$ǁSUkxT86Y`?Rx/=gKA=[©IH :֊c5ckL(19&tP[C= 3: WsaV(Sk@нxw^kϚPxK +-/p״ٱ:Ͷ`hq tS +nGJHաb)}>U{[3bT,GDh4fAΈUchN䷢˶BxL;>b|?Ō[mEҽ80A SHfCdT߈j)}#hÅfǝG CsWl~I꼱`?_mޘTѕo/?t%v7IwcyYn &1kP,q`z D_ {&& TK"/ȿ%z0׻0}}Ԃ' U=ucK,c2++bYg\-XnS%\(_;L+EM'$(`翰Y*DŽ p{PSTsMɝ +4Ou([S,:ͨ{Hs^;'%v#r*:<5Κv#%KEt"gl=̰ƬcjRe]\ ׭X +@Fx "g.yhfjVJ7W!جVx53ʼnboPYJ-TdbXaw"CM*2=Q}vJ(),'$/w,j%^PyX+9 s=td#R_tkK Se鄎,W{f?cPxKSuʶw&LD_Ose5+T{p:`@`/r%ӓY06rS> >}!Cf P!%|> h.n-(~/SnB@#ߓ}ArѦ-ZGe;j`B̊4ܷ2%+D:(1{.6!˽,{~\BjZ0.(/Gx|\}9~S 2R Yl˛Rxb+$Juگ1͵doT J J"Tr<="v,q5nL>*-[v*%9{8o&U kFf/!7 +MQS8W?]9J^U6*75~$Ab IC j#.]1ȰF0Şk?I QXq| +x4ZqmT +rm1Ut_ 7bF[<xf«c1̉'e&k=\ˡy'nW!˗,r4ˡxZr2nL,&s'剚0)1Z[^.qg^nV')wF;-@x+A ӫ(>D1Q2S":̿ ;O-7\ +endstream +endobj +128 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/L/a/b/c/comma/e/i/j/k/m/n/o/r/t/v/z) +/Descent -194 +/Flags 4 +/FontBBox [ -35 -250 1148 750 ] +/FontFile 127 0 R +/FontName /FOJGQS+CMTI9 +/ItalicAngle -14 +/StemV 70 +/XHeight 431 +>> +endobj +129 0 obj +<< +/Length 13744 +/Length1 1867 +/Length2 11877 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMTT10 003.002 +%%Title: CMTT10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMTT10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMTT10 known{/CMTT10 findfont dup/UniqueID known{dup +/UniqueID get 5000832 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /IJKLSG+CMTT10 def +/FontBBox {-4 -233 537 696 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTT10.) readonly def +/FullName (CMTT10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch true def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 97 /a put +dup 126 /asciitilde put +dup 98 /b put +dup 99 /c put +dup 58 /colon put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 104 /h put +dup 45 /hyphen put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 49 /one put +dup 112 /p put +dup 46 /period put +dup 114 /r put +dup 115 /s put +dup 47 /slash put +dup 116 /t put +dup 51 /three put +dup 50 /two put +dup 117 /u put +dup 95 /underscore put +dup 118 /v put +dup 119 /w put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{=מ0).|˿!:[LI0lr9G$}/X S`p*p+fwwFGO^ȇ r+dMvNy{YK[z[f +ܷBDq}M8|j${jpxxSƫEu +7%ɑ4\ 9b \)[FU.q4Z8KzwwylϦI5bjcZ,7ɪK:#@Jd@ѻFM_d#g+=>ZaWNH5Y/ .rpf{0D|6@;]/h|.RAɰKml^&W܀{mFՙ3FK~I7@T7AMOP.;ݐH+iX;}jYXEu5ǻpېBIᡊS 7pQ40cH4u[ wYÖ2[tʖڣ?hb*$ +dƥ`$ P :")|UƩfDtd§=5+j7%i@)шT/qUF1tEςҷݢ@ Ѣ1ãF^R?-¦q^!*1gw24/3@\7zaz1).ExY'Ȫ5Fc=nj2cw1 3bI]y: f֡ꋓfg%p^`('m K'K '>EPN,:M{S3G2R@6\?-^X'F.qhYlawNUpͧ`M9_Jgbw! ̼sāTҔDb:Wq!]iơw`褩'`h^ TTInHel䶢͒à`じ 'p(=Y1UѬ/OT +%`&{(K:.CiK9xH-vE4x_5叠ٺ,dl5'bbq,H. O8 NNnZGquDZMgd/.o~*ĽẾʿep˵ +1}oK({AsM`?  }|^ڧ(1vMXAj!Vk5=&Yiw|vCPezFލ`FJO!zơãE.)8At`+o z`!|a*dU ).tIhq*0q>NU 3ȏ7Ā9Ot[3|5r0p8ߕWqDLŽ{`dw|ׄ GJz/H'Z$MΤ8Z̈<7{LpV)%k3ToCn}4>ZrȰ{rUZ9EGu49>`oq/~x▏S|f9׬?X.uBxfGbE.wW;o, BLkkK{9fgg,l|&Ma*$v#ܶ>7Ucö'nNЙ1WƫV Nu+947yG( "zoO_|cZzB@ZAݾ@aexb?>"YTgBlٍ9UFJ?"[p] phU8Փz޾L?:K;W%X$؇:b9pF^dBJR(6[-T*4!yY`'M( MPA#fT"f"?eX&RE ]2L6 ?h)8&/Baf!0tM<ŋX0z1$6$}W<1ji76$4e L,vΡTuQo:=}E˨(S0.1) d#I;P]ɵR蕺I,"?bB8|GϞ\;H +nc2߯xX1!?:t#?%gSe[ze} h)D j-O6vzu@b ixc`r&r Iڹ_> 1SSdY$`)­:] R]FITkxjgbHd.(: +﫜.%pq>>^zx,{^c]r6oެtHTC O;q]8$yBoLr {=f$' F}*%*tdsCNzc5G~¸e 2d]bsz':aWA>4+ +5u=JTH8Yn{-t}PtJx8R.\{`u[%37\rnNJFk Oj+WesMV)JYV˛81d#JL1?M?"śbQᄍfcӟr ar4ד@dv5꺜5eDfR+c=PisX8mm;EL]H|S° #ȿl S6e!3BYTg}TTaΈfgX_+t12)A{ߨcװzP*Q˩SRd*lN؏bjɇwu_ŧ03_m=/Quf +'I N?qj) +ʎӲ+Ar⻩6&HДC9mr|7rG%:Jr<(gG^Ĵ~xP^KYYD˓"$?f7ښ}Xo3'+Te|7~x9Fʓ u +ih +9Nt9uicsJw +cZ|$C[ie ";3|AzFY4WSHʘJ᧞)~%b[O?;Rw߹E5?"W|;ծI6X'\dKs}2{QA)wJtXi3uR3Tq5b|~<27bA}LXO6/'`:8gI$G,M`y}Gꦜ?)c7K !8Bʽl. ouv +KS?0Z<M^oE "1\eάI SsBITve赡 Rkvl$|i0qp +QxroHQvzŃe4`eb?V'ax * ǡ~MCC0"rsSC=y [^ՔI1d#J9&I# g߶c*B+FWndM}RYubPvc?_gMk5Zoof~G>ص͈,gk]E8?`aN/`p22it (/[@|;C]ar6X W,COQY``J_Bhq8 !;.*ĿLMbMKa{boKInUowg3Ս|Rq?'SoIV\]iTgȋ[_Z_j5'N8wM%+E:v +"Ӫax;Y `m e"bsiq>,Znè3Œe(go =$Rܬ'J:cj3f2 +N:3CC;Ov"<ȳA?9=ԇa{M˻&}Lnu4۟V[+._b$t1.}c{<0PBW*ZCƛOS 0aS5Ε-}7-*IC{1ȹAZųrO(G n69i5bDN'wL ,j"WvyMbfv&,ՆHѶG[f&Px&I뤏i=(˗z:[} $>]IlvyPd[tzw;hc9X S8{՝YJ4ks'$r+t7))m&LWQ L7)g͑".f E* +M:7jm !'3x<[r n^s:^M{9Eŷ8BtxW59%g.lK4k{܉rTI`mfl<=k)2cJ4;Um߄QM}= Dg}FBZL98 ˿kN> FfE4A9-Ps{wiw=vr-o{L;YoD?'${q/Vڌl据)]035)o6<;E٘7`Rv\G ,6h莥;]_Αa|:9j% "z7$s+$B 4*]>Q@I-oi9yUq|t[,F\}r&''8O#0Sm,Xd!b(n#ʷiޢ gWeW8$$c؂cq&W,a-Ǻ!|=4'Ը9~hZ4 u{]B.CiyMՋ+ݭZ +Fر]shl5؛~} E3+{y(خtbКĸ7_? q 2ed/=g8: MSM sbkOLؕrI^ l}坺Ff&TE54GpY%x@I$!(9;F8dC\ Ox:Bb(dTPYtv.<郁f/n|/6 SZI-Vt한kx.Dgګ +w~/[{]*2y_1Llp}b/}c>f倨w9Ъzʔ>ɆxNn:9lpD(?жT=&Kqg=geͶ+i#Wn >QX&evgt_0 qm!DI7$N7 obu2NYXU_ Xմ?)#rl9Da1K:$ Ry!tCVV_ܔV |t҂Gn2kn&M8pCq̱|ҐR]8 _rqYgTf^Ϳ30HR,خ4}@t-8ĝ#JE,@F\h7M?YNy˫fGgᅛV>P!%"қK8P 3VŷY,gf ߲9pūT9$P͇}vziMSrrF/J8%KBퟸP^k ܪ"'K+:U-ۯfqK-8: W~eq"Lߠ t5ȒѦoR0o%i%Er6A2S(A΍sݵftDXl?,VNCj4w~23vIJ{]Qz9UHva_^a!gQd _eQ:Ӡ0-bf.7TGW=NHf\'*~zUЊ-P``a2fIs#qGkkFv&}c72gٱ#Sé{Tqu _f/mH(Lnq@s߭LیH=.ЙG|aZB5I)i"zXVMt GQ}k3St݀^o +Ibh2FT6\r/A=ǖU;!o/Pӑ1Q&mCGHc[,Xπ}^!-ZP4]!)z|`y ޭ!G #~"*tJasXqƇo:"482yj QG~BWMNp]=O@BFaQpQ mVYLG 0&Ņ-7.ߪpkdZ$ݭx.mƁn/[n%4TTpqԮGD@Np=ZK{+w4V̢|DBqRocnEMf3 p67wΏIg>@SN=iϔXws^\\}ZPWLz0Q_⠜4'X"Y(pލhAWlhw"\Oqu`@Nxo{$B˫37COK0W>P];Z9bybr6m@(i{N駘ij1%߽q:zW, NScoY֥DȱU_^h>߲@փoKbӵwVF$~2SpBJR*8'|&w%fx>h),OpEYO1̂q"خЉw `f9pfӴf޶)B6U9Wev9UɆ*M5i%ݒI$d=FX?j nfQJ>KITp ksOҩ9@&WxxsFL[=[~] h9Qh!l Ƥ'#{W$"ĕcnY@u(Gr͐Usg w,gRk* ^7:dmNnMEWfPfjz +9@bG#._>A?{whOl`~#Xw +FO?]яO9~b;.gifosSKbφME+N1盇4EyK #g^H#{B#t/ur +cPwѷR\R{!x%6?4o5!ww:W#l^/p ̷{sXP٦KDF=PfrcҹAS(sè`bHPwŗg}q]Pd}#mՈbE1䏔\i?U=:)ԁ&nUCnQc6Υ1~Ԅs|(bK?Tû*0zod\8H`z+ ETlX$b>@F\B%f}gO>+UD f-R,Uu0Csyn'HpwkqZiTb*5D}[n~^UND TKU{yɅf%1si2ppO7vmyT_M K:e e-5`EW0 Z0@)(\ExfαA-]F}51YuELric53R8ތ쐳 }|)pf7tHƩέq;(K7t'Q[ShN 1|%;j.l2F\XւhE +9WQѴ2aq:}!@9Vb?ӯ'{EվڄT*4z`zQ?ڛ)pi&teg1(] rsX%KZ{V_~h(VFca1F\ۏlE^LCn=T{ 0%*T^@дGgws^P=-(/lAؽ"4e + 4{dȆ6 NB0jr붦~I=<>Y@G"\GͶ4ap:W< c/F2VWݪuԳ,;R8jU Qz8ߡ1!$J-NB*W6A.=X=а<<w}kC}uEƞ^WSq em' .iI_\5(1>e937A|vPw%8SʋL«Fר@h՞gX]^[cM?z;sCG6m'Kmz[66Ǩ((|Z "piÙ:ķki<ZuTBgt /ˁ zeruMŤCjhNG>SP2fgq(DNx F[]>MeboreWb ݲ h3.bϏMa-/1_]3!;KJyqx2R4>9 ΪǒtT6c]h~lG6>lG\p]Ǧ8Z;p X3K f.C^w1fBib*Z8R" ʼ/>;a;uu' /gBU&z(K'_m p{NfkVT l2D1D 8I EtXʂٍ5"ǡ[׬I$1zh4U"FT]a5%c`4>?3ye*c3,3""JCjfo 0nqpI|NP~@rL +q\9@qOQQv=[F'Ф+hb߼(@H +"F%Än%rvs}LbjBՙrv5;5=\tw +CxHeD[jO%:^BclX p! jo#]xOKi8F9wX[jW2S]HJ)a$R1 ~^\_{9EЍPo0-޻۠xOJzT[,5R>>cXJ;2J1/_D͜ɼJd5Wg Sv +1D,צ'g/اݑkt卜a-Mb1l" cv?cS q.)!14 y;SRnJ <' _.PF2Sm#ƿv0}Dī#T0%ڻ$M20Pr'A L˞F- ~s0_ /eR6[up\x5ɖȉ#,y רhcTym,KīQr)Z1pezŞ5 ߦ:d[$Y,P1VM,ngJ,FŇ +.F`2c]i7_Vk(_K> +endobj +131 0 obj +<< +/Length 3662 +/Length1 1466 +/Length2 2196 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMTT8 003.002 +%%Title: CMTT8 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMTT8. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMTT8 known{/CMTT8 findfont dup/UniqueID known{dup +/UniqueID get 5000830 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /ISIMRT+CMTT8 def +/FontBBox {-5 -232 545 699 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTT8.) readonly def +/FullName (CMTT8) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch true def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 76 /L put +dup 84 /T put +dup 88 /X put +dup 101 /e put +dup 105 /i put +dup 50 /two put +dup 118 /v put +dup 48 /zero put +readonly def +currentdict end +currentfile eexec +oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsP,WKT"0KDǯҖkIUܨf/+WN/r4qW@d̍OG|Babhy52+2upa,-I"MC㉮0גv\G\% ؊Z\+;7tamJsXPc0NqL%tWtį, );b&L}NֲGi$߲:[<+s\6qGq %E~@kִ[iYKq[ Pvbr~1zV +إh]\HZa2nqiNG84[(5~B.m{,?v;ɚ]QV-;S8HMKMcd;z%+R9$z\zIbp;%wsU?X)K Q +38hVrC6 {Gx|eRu{};jvfe!QYrBQqS9WJD?&;A +Q??.h3~^|w*?]PdPCʟD*E 1HG6Kt)֕hrWA-T7T㸅o*3%0yژ\]!۠z,Z\#ugA"xSJlZ}b 9uNM[]2͢h3RN͎Q9sZcLy\ɘg>}Ի5kV‡U2ZqҖ(jI4d93+- ɌMQ.C |^( +^_x4]bRcAvL !BBMcWUZb1Z$p,2t1[1,7LNkB 9QpSe5 #hx 00Λ{,B[(j/BibYc%%Zu<.xXO$BmKE.1F-4JS7KEp_ :$3ޝ?̼ ?v+Պ;#\ߗA\{VSlܺ1aPOtSâ2n㇈ArʳOV`E t RdhL͐u83$]BMR?hpW~Vԓի8 +& +c{ju]sPldAa|_}(1kMXbSLn&MXV-8oi%'R*+m뀂b@GOIfs{n?p_?5-Wuqǎ %— 1+41h )bP+&Fa?o%~O3?m|@Lsuoq9-4! cC)|v@*m6 ߩL0Gm^;#4[b,< {f6]ƒX9rsD[uu1C+!FoFcXL[&b@uT10% +> +endobj +133 0 obj +<< +/Type /Outlines +/Count 2 +/First 31 0 R +/Last 35 0 R +>> +endobj +134 0 obj +<< +/Limits [ (Doc-Start) (Item.3) ] +/Names [ (Doc-Start) 44 0 R (Hfootnote.1) 81 0 R (Hfootnote.2) 84 0 R (Item.1) 54 0 R (Item.2) 59 0 R +(Item.3) 60 0 R ] +>> +endobj +135 0 obj +<< +/Limits [ (Item.4) (section*.1) ] +/Names [ (Item.4) 61 0 R (Item.5) 62 0 R (Item.6) 63 0 R (page.1) 43 0 R (page.2) 74 0 R +(section*.1) 51 0 R ] +>> +endobj +136 0 obj +<< +/Limits [ (section*.2) (section.2) ] +/Names [ (section*.2) 79 0 R (section.1) 30 0 R (section.2) 34 0 R ] +>> +endobj +138 0 obj +<< +/Kids [ 134 0 R 135 0 R 136 0 R ] +/Limits [ (Doc-Start) (section.2) ] +>> +endobj +139 0 obj +<< +/Dests 138 0 R +>> +endobj +140 0 obj +<< +/Type /Catalog +/Names 139 0 R +/OpenAction 37 0 R +/Outlines 133 0 R +/PageMode /UseOutlines +/Pages 64 0 R +>> +endobj +141 0 obj +<< +/Author () +/CreationDate (D:20201220002337+01'00') +/Creator (LaTeX with hyperref) +/Keywords () +/ModDate (D:20201220002340+01'00') +/PTEX.Fullbanner (This is pdfTeX, Version 3.14159265-2.6-1.40.20 \(TeX Live 2019/Debian\) kpathsea version 6.3.1) +/Producer (pdfTeX-1.40.20) +/Subject () +/Title () +/Trapped /False +>> +endobj +142 0 obj +<< +/Type /XRef +/ID [ <8BDE9569A286CF89B3E0C7EE8CAF8343> <8BDE9569A286CF89B3E0C7EE8CAF8343> ] +/Index [ 0 143 ] +/Info 141 0 R +/Length 715 +/Root 140 0 R +/Size 143 +/W [ 1 3 1 ] +>> +stream + +,-Yma  +&`   2UTOPY[NQSRZW^ "$*,%\!#'V(X])./0123456789:;<=>T;?@AɣBC?_Dp]E=F3GHI6JSKzvLM_bcЏN +endstream +endobj +xref +0 143 +0000000006 65535 f +0000000015 00000 n +0000000036 00000 n +0000000057 00000 n +0000000111 00000 n +0000000272 00000 n +0000000013 00000 f +0000000862 00000 n +0000001023 00000 n +0000001613 00000 n +0000001775 00000 n +0000002366 00000 n +0000002529 00000 n +0000000014 00001 f +0000000015 00001 f +0000000016 00001 f +0000000019 00001 f +0000003120 00000 n +0000003283 00000 n +0000000022 00001 f +0000003903 00000 n +0000004066 00000 n +0000000025 00001 f +0000004686 00000 n +0000004849 00000 n +0000000028 00001 f +0000005469 00000 n +0000005632 00000 n +0000000137 00001 f +0000006352 00000 n +0000006398 00000 n +0000006465 00000 n +0000006540 00000 n +0000006608 00000 n +0000006654 00000 n +0000006721 00000 n +0000006796 00000 n +0000006824 00000 n +0000006874 00000 n +0000007024 00000 n +0000007197 00000 n +0000007370 00000 n +0000007620 00000 n +0000030371 00000 n +0000030438 00000 n +0000030505 00000 n +0000030647 00000 n +0000030788 00000 n +0000030930 00000 n +0000031071 00000 n +0000031211 00000 n +0000031352 00000 n +0000031419 00000 n +0000031561 00000 n +0000031705 00000 n +0000031772 00000 n +0000031913 00000 n +0000032055 00000 n +0000032196 00000 n +0000032335 00000 n +0000032402 00000 n +0000032469 00000 n +0000032536 00000 n +0000032603 00000 n +0000032670 00000 n +0000032738 00000 n +0000032914 00000 n +0000033136 00000 n +0000033387 00000 n +0000033648 00000 n +0000033921 00000 n +0000034097 00000 n +0000034287 00000 n +0000034486 00000 n +0000038408 00000 n +0000038475 00000 n +0000038617 00000 n +0000038838 00000 n +0000039097 00000 n +0000039369 00000 n +0000039436 00000 n +0000039575 00000 n +0000039642 00000 n +0000039782 00000 n +0000039923 00000 n +0000039989 00000 n +0000040790 00000 n +0000041938 00000 n +0000041980 00000 n +0000042328 00000 n +0000042521 00000 n +0000043540 00000 n +0000044188 00000 n +0000045186 00000 n +0000045889 00000 n +0000046809 00000 n +0000047615 00000 n +0000048672 00000 n +0000049152 00000 n +0000050155 00000 n +0000051064 00000 n +0000052226 00000 n +0000066583 00000 n +0000066919 00000 n +0000080824 00000 n +0000081153 00000 n +0000089564 00000 n +0000089798 00000 n +0000099154 00000 n +0000099397 00000 n +0000110984 00000 n +0000111247 00000 n +0000131200 00000 n +0000131594 00000 n +0000144792 00000 n +0000145092 00000 n +0000156403 00000 n +0000156691 00000 n +0000164253 00000 n +0000164479 00000 n +0000172479 00000 n +0000172713 00000 n +0000186136 00000 n +0000186439 00000 n +0000199672 00000 n +0000199955 00000 n +0000207575 00000 n +0000207818 00000 n +0000218417 00000 n +0000218674 00000 n +0000232513 00000 n +0000232839 00000 n +0000236594 00000 n +0000236832 00000 n +0000236907 00000 n +0000237083 00000 n +0000237251 00000 n +0000000000 00000 f +0000237380 00000 n +0000237473 00000 n +0000237511 00000 n +0000237638 00000 n +0000237970 00000 n +trailer +<< +/ID [ ] +/Info 141 0 R +/Root 140 0 R +/Size 143 +>> +startxref +238896 +%%EOF diff --git a/mat/domace_naloge/21/dokument-recompressed.pdf b/mat/domace_naloge/21/dokument-recompressed.pdf new file mode 100644 index 0000000..e69de29 diff --git a/mat/domace_naloge/21/dokument-tmp.pdf b/mat/domace_naloge/21/dokument-tmp.pdf new file mode 100644 index 0000000..ce67d18 --- /dev/null +++ b/mat/domace_naloge/21/dokument-tmp.pdf @@ -0,0 +1,3991 @@ +%PDF-1.3 +% +1 0 obj +<< +>> +endobj +2 0 obj +<< +>> +endobj +3 0 obj +<< +/pgfprgb [ /Pattern /DeviceRGB ] +>> +endobj +4 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 5 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +5 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 0.000000 0 100.001280 0 ] +/Domain [ 0.000000 100.001280 ] +/Extend [ false false ] +/Function << +/Bounds [ 25.000320 75.000960 ] +/Domain [ 0.000000 100.001280 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 2 +>> +>> +>> +endobj +7 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 8 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +8 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 0.000000 0 100.001280 0 ] +/Domain [ 0.000000 100.001280 ] +/Extend [ false false ] +/Function << +/Bounds [ 25.000320 75.000960 ] +/Domain [ 0.000000 100.001280 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 2 +>> +>> +>> +endobj +9 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 10 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +10 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 0 0.000000 0 100.001280 ] +/Domain [ 0.000000 100.001280 ] +/Extend [ false false ] +/Function << +/Bounds [ 25.000320 75.000960 ] +/Domain [ 0.000000 100.001280 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 2 +>> +>> +>> +endobj +11 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 12 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +12 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 0 0.000000 0 100.001280 ] +/Domain [ 0.000000 100.001280 ] +/Extend [ false false ] +/Function << +/Bounds [ 25.000320 75.000960 ] +/Domain [ 0.000000 100.001280 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 2 +>> +>> +>> +endobj +17 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 18 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +18 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] +/Domain [ 0.000000 50.000640 ] +/Extend [ true false ] +/Function << +/Bounds [ 22.500270 25.000320 ] +/Domain [ 0.000000 50.000640 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 3 +>> +>> +>> +endobj +20 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 21 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +21 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] +/Domain [ 0.000000 50.000640 ] +/Extend [ true false ] +/Function << +/Bounds [ 21.250260 25.000320 ] +/Domain [ 0.000000 50.000640 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 3 +>> +>> +>> +endobj +23 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 24 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +24 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] +/Domain [ 0.000000 50.000640 ] +/Extend [ true false ] +/Function << +/Bounds [ 20.000240 25.000320 ] +/Domain [ 0.000000 50.000640 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 3 +>> +>> +>> +endobj +26 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 27 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +27 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] +/Domain [ 0.000000 50.000640 ] +/Extend [ true false ] +/Function << +/Bounds [ 21.250260 23.125290 25.000320 ] +/Domain [ 0.000000 50.000640 ] +/Encode [ 0 1 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 3 +>> +>> +>> +endobj +29 0 obj +<< +/D (section.1) +/S /GoTo +>> +endobj +30 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 500.158000 null ] +>> +endobj +31 0 obj +<< +/A 29 0 R +/Next 35 0 R +/Parent 133 0 R +/Title 32 0 R +>> +endobj +32 0 obj +(Vaje Matematika 2: stran 55, tiri naloge 349-361) +endobj +33 0 obj +<< +/D (section.2) +/S /GoTo +>> +endobj +34 0 obj +<< +/D [ 72 0 R /XYZ 45.638000 793.134000 null ] +>> +endobj +35 0 obj +<< +/A 33 0 R +/Parent 133 0 R +/Prev 31 0 R +/Title 36 0 R +>> +endobj +36 0 obj +(Zakljucek) +endobj +37 0 obj +<< +/D [ 38 0 R /Fit ] +/S /GoTo +>> +endobj +38 0 obj +<< +/Type /Page +/Annots [ 39 0 R 40 0 R ] +/Contents 42 0 R +/MediaBox [ 0 0 595.276000 841.890000 ] +/Parent 64 0 R +/Resources 41 0 R +>> +endobj +39 0 obj +<< +/Type /Annot +/A << +/D (section.1) +/S /GoTo +>> +/Border [ 0 0 0 ] +/C [ 1 0 0 ] +/H /I +/Rect [ 44.642000 536.092000 312.863000 546.940000 ] +/Subtype /Link +>> +endobj +40 0 obj +<< +/Type /Annot +/A << +/D (section.2) +/S /GoTo +>> +/Border [ 0 0 0 ] +/C [ 1 0 0 ] +/H /I +/Rect [ 44.642000 514.174000 109.634000 525.023000 ] +/Subtype /Link +>> +endobj +41 0 obj +<< +/ColorSpace 3 0 R +/ExtGState 1 0 R +/Font << +/F11 56 0 R +/F14 57 0 R +/F43 45 0 R +/F44 46 0 R +/F7 58 0 R +/F71 47 0 R +/F72 49 0 R +/F73 48 0 R +/F74 50 0 R +/F77 52 0 R +/F78 53 0 R +/F8 55 0 R +>> +/Pattern 2 0 R +/ProcSet [ /PDF /Text ] +>> +endobj +42 0 obj +<< +/Length 22697 +>> +stream +0 g 0 G +0 g 0 G +0 g 0 G +0 g 0 G +0 g 0 G +BT +/F43 17.2154 Tf 90.724 741.328 Td [(Linearna)-302(k)26(om)26(binacija)-302(v)27(ektor)-1(j)1(ev)-1(,)-301(baza)-302(|)-302(21.)-407(doma)26(\024)433(ca)-302(naloga)]TJ/F44 11.9552 Tf 122.252 -13.948 Td [(Matematik)55(a,)-327(Gimnazija)-326(Be)27(\024)463(zigrad)]TJ/F71 11.9552 Tf -11.907 -32.885 Td [(Profesor:)]TJ/F44 11.9552 Tf 64.866 0 Td [(prof.)-435(Vilk)27(o)-326(Doma)-55(jn)1(k)27(o)]TJ/F71 11.9552 Tf -50.394 -14.719 Td [(Avtor:)]TJ/F44 11.9552 Tf 50.394 0 Td [(An)27(ton)-326(Luk)54(a)]TJ 65.19 3.022 Td [(\024)]TJ -0.325 -3.022 Td [(Sijanec,)-326(2.)-435(a)]TJ -80.311 -23.446 Td [(20.)-326(decem)27(b)-27(er)-327(2)1(020)]TJ +0 g 0 G +0 g 0 G +/F73 8.9664 Tf 26.279 -35.865 Td [(P)33(o)33(vzetek)]TJ +0 g 0 G +0 g 0 G +/F72 8.9664 Tf -192.4 -15.617 Td [(T)86(a)-397(dokumen)29(t)-397(vsebuje)-397(doma)29(\024)485(co)-397(nalogo,)-410(ki)-397(za)-57(jema)-397(sno)29(v)]TJ/F74 8.9664 Tf 221.97 0 Td [(Line)52(arna)-417(kombinacija)-417(vektorjev,)-430(b)53(aza)]TJ/F72 8.9664 Tf 155.167 0 Td [(pri)-397(matematiki.)]TJ -390.961 -10.959 Td [(Kjer)-343(je)-342(bilo)-343(p)-28(otrebno)-343(izbrati)-342(nek)28(e)-342(p)-29(oljubne)-342(naloge,)-343(sem)-342(jih)-343(v)28(e)1(dno)-343(izbral)-343(naklju)29(\024)485(cno.)]TJ/F71 14.3462 Tf -24.906 -32.946 Td [(Kazalo)]TJ/F77 9.9626 Tf 0 -21.917 Td [(1)-925(V)96(a)-64(je)]TJ/F78 9.9626 Tf 41.428 0 Td [(Matematika)-414(2)]TJ/F77 9.9626 Tf 70.911 0 Td [(:)-511(stran)-384(55,)-322(\024)514(stiri)-383(naloge)-384(349-361)-23291(1)]TJ -112.339 -21.918 Td [(2)-925(Zaklju)32(\024)543(cek)]TJ 498.271 0 Td [(2)]TJ/F71 14.3462 Tf -498.271 -32.946 Td [(1)-1125(V)94(a)-63(je)]TJ/F78 14.3462 Tf 61.469 0 Td [(Matematika)-414(2)]TJ/F71 14.3462 Tf 102.112 0 Td [(:)-500(stran)-375(55,)-316(\024)504(stiri)-375(naloge)-375(349-361)]TJ +0 g 0 G +/F77 9.9626 Tf -164.024 -23.398 Td [(350.)]TJ +0 g 0 G +/F8 9.9626 Tf 25.349 0 Td [(Na)-56(j)-471(b)-28(o)-27(do)-472(v)28(ektorji)]TJ/F11 9.9626 Tf 84.336 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(,)]TJ/F11 9.9626 Tf 6.687 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 8.971 0 Td [(in)]TJ/F11 9.9626 Tf 12.45 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 9.554 0 Td [(bazni)-471(v)28(e)-1(kt)1(orji)-472(v)-471(prostoru.)-858(V)83(ektorja)]TJ/F11 9.9626 Tf 166.709 0 Td [(~)612(m)]TJ/F8 9.9626 Tf 12.326 0 Td [(in)]TJ/F11 9.9626 Tf 12.731 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 10.942 0 Td [(sta)-471(enak)55(a)]TJ/F11 9.9626 Tf 47.922 0 Td [(~)612(m)]TJ/F8 9.9626 Tf 12.689 0 Td [(=)]TJ/F14 9.9626 Tf 12.807 0 Td [(\000)]TJ/F8 9.9626 Tf 7.749 0 Td [(2)]TJ/F11 9.9626 Tf 4.357 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.02 0 Td [(+)]TJ/F7 6.9738 Tf 12.075 3.922 Td [(3)]TJ +ET +q +1 0 0 1 508.877 463.254 cm +[]0 d 0 J 0.398 w 0 0 m 3.971 0 l S +Q +BT +/F7 6.9738 Tf 508.877 457.328 Td [(2)]TJ/F11 9.9626 Tf 4.048 6.065 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.406 0 Td [(+)]TJ/F11 9.9626 Tf 10.331 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 9.555 0 Td [(in)]TJ/F11 9.9626 Tf -471.058 -14.179 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.014 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F7 6.9738 Tf 8.944 3.923 Td [(1)]TJ +ET +q +1 0 0 1 98.752 449.076 cm +[]0 d 0 J 0.398 w 0 0 m 3.971 0 l S +Q +BT +/F7 6.9738 Tf 98.752 443.15 Td [(2)]TJ/F11 9.9626 Tf 4.543 3.435 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.843 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 6.49 0 Td [(+)-222(2)]TJ/F11 9.9626 Tf 14.396 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 4.859 0 Td [(.)-444(V)83(ektor)-333(2)]TJ/F11 9.9626 Tf 45.7 0 Td [(~)612(m)]TJ/F14 9.9626 Tf 9.844 0 Td [(\000)]TJ/F11 9.9626 Tf 9.696 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.568 0 Td [(zapi)53(\024)447(si)-333(v)-334(dani)-333(bazi.)]TJ 43.487 -27.555 Td [(2)]TJ/F11 9.9626 Tf 6.098 0 Td [(~)612(m)]TJ/F14 9.9626 Tf 9.845 0 Td [(\000)]TJ/F11 9.9626 Tf 9.695 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.014 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 8.945 6.74 Td [(7)]TJ +ET +q +1 0 0 1 319.514 421.521 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 319.514 412.197 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.833 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ 11.158 6.74 Td [(1)]TJ +ET +q +1 0 0 1 344.329 421.521 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 344.329 412.197 Td [(3)]TJ/F11 9.9626 Tf 5.058 9.462 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ +0 g 0 G +/F77 9.9626 Tf -305.311 -29.249 Td [(352.)]TJ +0 g 0 G +/F8 9.9626 Tf 25.349 0 Td [(T)83(o)28(\024)472(ck)28(e)]TJ/F11 9.9626 Tf 28.838 0 Td [(A)]TJ/F8 9.9626 Tf 7.472 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(B)]TJ/F8 9.9626 Tf 8.057 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(C)]TJ/F8 9.9626 Tf 7.833 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(D)]TJ/F8 9.9626 Tf 12.18 0 Td [(in)]TJ/F11 9.9626 Tf 11.956 0 Td [(E)]TJ/F8 9.9626 Tf 11.583 0 Td [(le)28(\024)472(zijo)-367(na)-367(premici)-366(tak)27(o,)-375(da)-367(je)]TJ/F14 9.9626 Tf 126.645 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(AB)]TJ/F14 9.9626 Tf 15.528 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(:)]TJ/F14 9.9626 Tf 6.091 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(B)-50(C)]TJ/F14 9.9626 Tf 15.89 0 Td [(j)]TJ/F8 9.9626 Tf 6.09 0 Td [(:)]TJ/F14 9.9626 Tf 6.091 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(C)-72(D)]TJ/F14 9.9626 Tf 16.358 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(:)]TJ/F14 9.9626 Tf 6.09 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(D)-28(E)]TJ/F14 9.9626 Tf 16.453 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(=)-334(3)-333(:)-334(2)-333(:)-334(1)-333(:)-334(3.)-545(T)84(o)27(\024)473(cki)]TJ/F11 9.9626 Tf 94.888 0 Td [(B)]TJ/F8 9.9626 Tf 11.711 0 Td [(in)]TJ/F11 9.9626 Tf 11.957 0 Td [(D)]TJ/F8 9.9626 Tf -470.569 -13.95 Td [(le)28(\024)472(zita)-296(med)]TJ/F11 9.9626 Tf 47.406 0 Td [(A)]TJ/F8 9.9626 Tf 10.42 0 Td [(in)]TJ/F11 9.9626 Tf 11.249 0 Td [(C)]TJ/F8 9.9626 Tf 7.833 0 Td [(.)-432(to)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 32.988 0 Td [(D)]TJ/F8 9.9626 Tf 11.472 0 Td [(pa)-296(med)]TJ/F11 9.9626 Tf 34.676 0 Td [(B)]TJ/F8 9.9626 Tf 11.004 0 Td [(in)]TJ/F11 9.9626 Tf 11.25 0 Td [(E)]TJ/F8 9.9626 Tf 7.929 0 Td [(.)-432(Na)-55(j)-296(b)-28(o)-296(v)28(ektor)]TJ/F11 9.9626 Tf 69.558 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.657 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 6.808 Td [(\000)476(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(E)]TJ/F8 9.9626 Tf 18.933 0 Td [(bazni)-296(v)28(ektor.)-432(Z)-296(v)28(ektorjem)]TJ/F11 9.9626 Tf 115.247 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.837 0 Td [(izrazi)-296(v)28(ektorje)]TJ/F14 9.9626 Tf -417.975 -6.589 Td [(\000)457(\000)457(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(D)-28(C)]TJ/F8 9.9626 Tf 16.358 0 Td [(,)]TJ/F14 9.9626 Tf 6.089 6.807 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AC)]TJ/F8 9.9626 Tf 18.626 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.807 Td [(\000)452(\000)452(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(D)-28(E)]TJ/F8 9.9626 Tf 16.453 0 Td [(.)]TJ/F14 9.9626 Tf 99.708 -9.286 Td [(\000)457(\000)457(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(D)-28(C)]TJ/F8 9.9626 Tf 19.126 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ +ET +q +1 0 0 1 270.238 348.832 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 270.238 339.507 Td [(4)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 18.072 0 Td [(=)]TJ 11.712 6.74 Td [(5)]TJ +ET +q +1 0 0 1 319.214 348.832 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 319.214 339.507 Td [(3)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)452(\000)452(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(D)-28(E)]TJ/F8 9.9626 Tf 19.22 0 Td [(=)]TJ 11.712 6.74 Td [(3)]TJ +ET +q +1 0 0 1 369.338 348.832 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 369.338 339.507 Td [(4)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ +0 g 0 G +/F77 9.9626 Tf -329.696 -28.256 Td [(353.)]TJ +0 g 0 G +/F8 9.9626 Tf 25.349 0 Td [(T)83(o)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 28.918 0 Td [(M)]TJ/F8 9.9626 Tf 14.209 0 Td [(je)-347(razp)-28(olo)28(vi)53(\024)447(s)28(\024)472(ce)-347(daljice)]TJ/F11 9.9626 Tf 98.183 0 Td [(C)-72(D)]TJ/F8 9.9626 Tf 19.816 0 Td [(pra)28(v)28(ok)27(otni)1(k)55(a)]TJ/F11 9.9626 Tf 59.387 0 Td [(AB)-50(C)-72(D)]TJ/F8 9.9626 Tf 31.886 0 Td [(,)-351(v)28(ektorja)]TJ/F11 9.9626 Tf 44.544 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.885 0 Td [(=)]TJ/F14 9.9626 Tf 10.744 6.808 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AB)]TJ/F8 9.9626 Tf 18.987 0 Td [(in)]TJ/F11 9.9626 Tf 10.641 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.271 0 Td [(=)]TJ/F14 9.9626 Tf 10.744 6.808 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AD)]TJ/F8 9.9626 Tf 19.454 0 Td [(sta)-347(bazna)-347(v)28(ektorja.)-486(Z)]TJ/F11 9.9626 Tf -385.411 -13.396 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.21 0 Td [(in)]TJ/F11 9.9626 Tf 10.504 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.597 0 Td [(izrazi)]TJ/F14 9.9626 Tf 26.595 6.808 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 15.305 0 Td [(,)]TJ/F14 9.9626 Tf 6.088 6.808 Td [(\000)363(\000)363(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AM)]TJ/F8 9.9626 Tf 18.223 0 Td [(,)]TJ/F14 9.9626 Tf 6.089 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(M)]TJ/F8 9.9626 Tf 22.129 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(B)]TJ/F8 9.9626 Tf 18.808 0 Td [(.)]TJ/F14 9.9626 Tf -48.295 -19.248 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 18.072 0 Td [(=)]TJ/F11 9.9626 Tf 9.892 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)363(\000)363(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AM)]TJ/F8 9.9626 Tf 20.991 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ +ET +q +1 0 0 1 265.673 281.124 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 265.673 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(M)]TJ/F8 9.9626 Tf 21.575 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 8.945 6.74 Td [(1)]TJ +ET +q +1 0 0 1 342.353 281.124 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 342.353 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.843 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(;)]TJ/F14 9.9626 Tf 7.748 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(B)]TJ/F8 9.9626 Tf 21.576 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ +ET +q +1 0 0 1 411.283 281.124 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 411.283 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F14 9.9626 Tf 8.104 0 Td [(\000)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ +0 g 0 G +/F77 9.9626 Tf -393.983 -23.91 Td [(360.)]TJ +0 g 0 G +/F8 9.9626 Tf 25.349 0 Td [(Na)-279(strani)1(c)-1(ah)-278(paralelograma)]TJ/F11 9.9626 Tf 122.203 0 Td [(AB)-50(C)-72(D)]TJ/F8 9.9626 Tf 34.661 0 Td [(so)-279(dane)-278(to)28(\024)472(ck)28(e)]TJ/F11 9.9626 Tf 60.407 0 Td [(I)]TJ/F8 9.9626 Tf 5.161 0 Td [(,)]TJ/F11 9.9626 Tf 5.651 0 Td [(J)]TJ/F8 9.9626 Tf -228.083 -11.956 Td [(in)]TJ/F11 9.9626 Tf 11.727 0 Td [(K)]TJ/F8 9.9626 Tf 9.174 0 Td [(,)-346(tak)27(o)-343(da)-344(je)]TJ/F14 9.9626 Tf 53.299 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(D)-28(I)]TJ/F14 9.9626 Tf 13.686 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(I)-78(J)]TJ/F14 9.9626 Tf 11.644 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(J)-96(C)]TJ/F14 9.9626 Tf 14.315 0 Td [(j)]TJ/F8 9.9626 Tf 6.193 0 Td [(in)]TJ/F14 9.9626 Tf 11.726 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(B)-50(K)]TJ/F14 9.9626 Tf 17.23 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(K)-72(C)]TJ/F14 9.9626 Tf 17.007 0 Td [(j)]TJ/F8 9.9626 Tf 2.767 0 Td [(.)]TJ -231.798 -11.955 Td [(T)83(o)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 28.442 0 Td [(L)]TJ/F8 9.9626 Tf 9.761 0 Td [(je)-299(razp)-28(olo)28(vi)53(\024)447(s)28(\024)472(ce)-300(dalj)1(ico)]TJ/F11 9.9626 Tf 97.307 0 Td [(AI)]TJ/F8 9.9626 Tf 12.633 0 Td [(,)-306(to)28(\024)472(ck)55(a)]TJ/F11 9.9626 Tf 31.768 0 Td [(M)]TJ/F8 9.9626 Tf 13.732 0 Td [(pa)-299(razp)-28(o-)]TJ -193.643 -11.955 Td [(lo)28(vi)53(\024)447(s)28(\024)472(ce)-334(daljice)]TJ/F11 9.9626 Tf 62.876 0 Td [(LJ)]TJ/F8 9.9626 Tf 13.263 0 Td [(.)]TJ +0 g 0 G +/F77 9.9626 Tf -69.227 -19.422 Td [(a\051)]TJ +0 g 0 G +/F8 9.9626 Tf 15.006 0 Td [(Dana)-454(sta)-453(v)28(ektorja)]TJ/F14 9.9626 Tf 84.901 6.808 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AB)]TJ/F8 9.9626 Tf 20.292 0 Td [(=)]TJ/F11 9.9626 Tf 11.889 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 10.409 0 Td [(in)]TJ/F14 9.9626 Tf 12.821 6.808 Td [(\000)480(\000)481(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(C)]TJ/F8 9.9626 Tf 20.654 0 Td [(=)]TJ/F11 9.9626 Tf 11.394 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(.)-805(Izrazi)]TJ -177.754 -13.949 Td [(v)28(ektor)]TJ/F14 9.9626 Tf 30.746 6.807 Td [(\000)278(\000)278(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(M)-109(K)]TJ/F8 9.9626 Tf 23.246 0 Td [(z)-333(v)27(ektorjema)]TJ/F11 9.9626 Tf 58.627 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.21 0 Td [(in)]TJ/F11 9.9626 Tf 10.504 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(.)]TJ/F14 9.9626 Tf -67.624 -14.387 Td [(\000)278(\000)278(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(K)]TJ/F8 9.9626 Tf 22.693 0 Td [(=)]TJ 11.712 6.74 Td [(7)]TJ +ET +q +1 0 0 1 196.971 166.782 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 196.971 157.457 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F14 9.9626 Tf 8.104 0 Td [(\000)]TJ/F8 9.9626 Tf 11.158 6.74 Td [(1)]TJ +ET +q +1 0 0 1 221.786 166.782 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 221.786 157.457 Td [(4)]TJ/F11 9.9626 Tf 5.057 9.463 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(;)]TJ +0 g 0 G +/F77 9.9626 Tf -155.578 -24.414 Td [(b\051)]TJ +0 g 0 G +/F8 9.9626 Tf 15.802 0 Td [(Na)-56(j)-445(b)-28(osta)-446(bazna)-445(v)27(ektorja)]TJ/F14 9.9626 Tf 118.303 6.808 Td [(\000)579(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(LI)]TJ/F8 9.9626 Tf 16.575 0 Td [(=)]TJ/F11 9.9626 Tf 12.253 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 10.273 0 Td [(in)]TJ/F14 9.9626 Tf 12.742 6.808 Td [(\000)398(\000)398(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(LM)]TJ/F8 9.9626 Tf 22.165 0 Td [(=)]TJ/F11 9.9626 Tf 11.996 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.573 0 Td [(.)]TJ -209.88 -13.949 Td [(Izrazi)-333(v)27(ektorja)]TJ/F14 9.9626 Tf 66.197 6.807 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AD)]TJ/F8 9.9626 Tf 19.317 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.807 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AB)]TJ/F8 9.9626 Tf 18.85 0 Td [(z)-333(v)27(ektorjema)]TJ/F11 9.9626 Tf 59.122 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 9.152 0 Td [(in)]TJ/F11 9.9626 Tf 11.236 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.574 0 Td [(.)]TJ/F14 9.9626 Tf -164.571 -11.69 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AD)]TJ/F8 9.9626 Tf 18.764 0 Td [(=)-278(3)]TJ/F11 9.9626 Tf 15.369 0 Td [(~)487(u)]TJ/F14 9.9626 Tf 8.046 0 Td [(\000)]TJ/F8 9.9626 Tf 9.963 0 Td [(2)]TJ/F11 9.9626 Tf 4.594 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.573 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.807 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AB)]TJ/F8 9.9626 Tf 18.296 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 7.749 0 Td [(3)]TJ/F11 9.9626 Tf 4.853 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 8.045 0 Td [(+)-222(6)]TJ/F11 9.9626 Tf 14.557 0 Td [(~)461(v)]TJ +0 g 0 G +0 g 0 G +ET +1 0 0 1 316.766 149.606 cm +q +0 G +0 g +0.3985 w +q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +0.59776 w +0 G +0 g +[ ] 0.0 d +1 0 0 rg 1 0 0 RG +0.0 0.0 m +0.0 0.0 l +170.08086 0.0 l +226.77448 113.38724 l +56.69362 113.38724 l +h +S +0 g 0 G +Q +q +0.59776 w +0 G +0 g +[ ] 0.0 d +0 0 1 rg 0 0 1 RG +0.0 0.0 m +0.0 0.0 m +113.38724 113.38724 l +S +0 g 0 G +Q +q +0.59776 w +0 G +0 g +[ ] 0.0 d +0 0 1 rg 0 0 1 RG +56.69362 56.69362 m +56.69362 56.69362 m +170.08086 113.38724 l +S +0 g 0 G +Q +q +0.59776 w +0 G +0 g +[ ] 0.0 d +0 0 1 rg 0 0 1 RG +113.38724 85.0404 m +113.38724 85.0404 m +198.42764 56.69362 l +S +0 g 0 G +Q +q +0 G +0 g +q +0 G +0 g +58.18803 113.38724 m +58.18803 114.21257 57.51895 114.88165 56.69362 114.88165 c +55.86827 114.88165 55.1992 114.21257 55.1992 113.38724 c +55.1992 112.56189 55.86827 111.89282 56.69362 111.89282 c +57.51895 111.89282 58.18803 112.56189 58.18803 113.38724 c +h +56.69362 113.38724 m +B +Q +q +1 0 0 1 56.693 113.386 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -56.693 -113.386 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +114.88165 113.38724 m +114.88165 114.21257 114.21257 114.88165 113.38724 114.88165 c +112.56189 114.88165 111.89282 114.21257 111.89282 113.38724 c +111.89282 112.56189 112.56189 111.89282 113.38724 111.89282 c +114.21257 111.89282 114.88165 112.56189 114.88165 113.38724 c +h +113.38724 113.38724 m +B +Q +q +1 0 0 1 113.386 113.386 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -113.386 -113.386 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +171.57527 113.38724 m +171.57527 114.21257 170.9062 114.88165 170.08086 114.88165 c +169.25551 114.88165 168.58644 114.21257 168.58644 113.38724 c +168.58644 112.56189 169.25551 111.89282 170.08086 111.89282 c +170.9062 111.89282 171.57527 112.56189 171.57527 113.38724 c +h +170.08086 113.38724 m +B +Q +q +1 0 0 1 170.079 113.386 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -170.079 -113.386 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +228.26889 113.38724 m +228.26889 114.21257 227.59982 114.88165 226.77448 114.88165 c +225.94913 114.88165 225.28006 114.21257 225.28006 113.38724 c +225.28006 112.56189 225.94913 111.89282 226.77448 111.89282 c +227.59982 111.89282 228.26889 112.56189 228.26889 113.38724 c +h +226.77448 113.38724 m +B +Q +q +1 0 0 1 226.772 113.386 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -226.772 -113.386 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +58.18803 56.69362 m +58.18803 57.51895 57.51895 58.18803 56.69362 58.18803 c +55.86827 58.18803 55.1992 57.51895 55.1992 56.69362 c +55.1992 55.86827 55.86827 55.1992 56.69362 55.1992 c +57.51895 55.1992 58.18803 55.86827 58.18803 56.69362 c +h +56.69362 56.69362 m +B +Q +q +1 0 0 1 56.693 56.693 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -56.693 -56.693 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +114.88165 85.0404 m +114.88165 85.86575 114.21257 86.53482 113.38724 86.53482 c +112.56189 86.53482 111.89282 85.86575 111.89282 85.0404 c +111.89282 84.21506 112.56189 83.54599 113.38724 83.54599 c +114.21257 83.54599 114.88165 84.21506 114.88165 85.0404 c +h +113.38724 85.0404 m +B +Q +q +1 0 0 1 113.386 85.039 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -113.386 -85.039 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +199.92206 56.69362 m +199.92206 57.51895 199.25299 58.18803 198.42764 58.18803 c +197.6023 58.18803 196.93323 57.51895 196.93323 56.69362 c +196.93323 55.86827 197.6023 55.1992 198.42764 55.1992 c +199.25299 55.1992 199.92206 55.86827 199.92206 56.69362 c +h +198.42764 56.69362 m +B +Q +q +1 0 0 1 198.425 56.693 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -198.425 -56.693 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +1.49442 0.0 m +1.49442 0.82533 0.82533 1.49442 0.0 1.49442 c +-0.82533 1.49442 -1.49442 0.82533 -1.49442 0.0 c +-1.49442 -0.82533 -0.82533 -1.49442 0.0 -1.49442 c +0.82533 -1.49442 1.49442 -0.82533 1.49442 0.0 c +h +0.0 0.0 m +B +Q +q +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +Q +Q +q +0 G +0 g +q +0 G +0 g +171.57527 0.0 m +171.57527 0.82533 170.9062 1.49442 170.08086 1.49442 c +169.25551 1.49442 168.58644 0.82533 168.58644 0.0 c +168.58644 -0.82533 169.25551 -1.49442 170.08086 -1.49442 c +170.9062 -1.49442 171.57527 -0.82533 171.57527 0.0 c +h +170.08086 0.0 m +B +Q +q +1 0 0 1 170.079 0 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -170.079 0 cm +Q +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 60.213 103.058 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -376.979 -252.664 cm +BT +/F11 9.9626 Tf 376.979 252.664 Td [(D)]TJ +0 g 0 G +ET +1 0 0 1 376.979 252.664 cm +Q +1 0 0 1 -60.213 -103.058 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 116.906 103.058 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -433.672 -252.664 cm +BT +/F11 9.9626 Tf 433.672 252.664 Td [(I)]TJ +0 g 0 G +ET +1 0 0 1 433.672 252.664 cm +Q +1 0 0 1 -116.906 -103.058 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 173.599 103.058 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -490.365 -252.664 cm +BT +/F11 9.9626 Tf 490.365 252.664 Td [(J)]TJ +0 g 0 G +ET +1 0 0 1 490.365 252.664 cm +Q +1 0 0 1 -173.599 -103.058 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 230.291 103.058 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -547.057 -252.664 cm +BT +/F11 9.9626 Tf 547.057 252.664 Td [(C)]TJ +0 g 0 G +ET +1 0 0 1 547.057 252.664 cm +Q +1 0 0 1 -230.291 -103.058 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 60.213 46.365 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -376.979 -195.971 cm +BT +/F11 9.9626 Tf 376.979 195.971 Td [(L)]TJ +0 g 0 G +ET +1 0 0 1 376.979 195.971 cm +Q +1 0 0 1 -60.213 -46.365 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 116.906 74.712 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -433.672 -224.318 cm +BT +/F11 9.9626 Tf 433.672 224.318 Td [(M)]TJ +0 g 0 G +ET +1 0 0 1 433.672 224.318 cm +Q +1 0 0 1 -116.906 -74.712 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 201.945 46.365 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -518.711 -195.971 cm +BT +/F11 9.9626 Tf 518.711 195.971 Td [(K)]TJ +0 g 0 G +ET +1 0 0 1 518.711 195.971 cm +Q +1 0 0 1 -201.945 -46.365 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 3.52 -10.328 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -320.286 -139.278 cm +BT +/F11 9.9626 Tf 320.286 139.278 Td [(A)]TJ +0 g 0 G +ET +1 0 0 1 320.286 139.278 cm +Q +1 0 0 1 -3.52 10.328 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 173.599 -10.328 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -490.365 -139.278 cm +BT +/F11 9.9626 Tf 490.365 139.278 Td [(B)]TJ +0 g 0 G +ET +1 0 0 1 490.365 139.278 cm +Q +1 0 0 1 -173.599 10.328 cm +Q +0 g 0 G +Q +Q +n +Q +0 g 0 G +1 0 0 1 -316.766 -149.606 cm +BT +/F8 9.9626 Tf 295.147 43.246 Td [(1)]TJ +0 g 0 G +ET + +endstream +endobj +43 0 obj +<< +/D [ 38 0 R /XYZ 44.638000 830.996000 null ] +>> +endobj +44 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 793.134000 null ] +>> +endobj +45 0 obj +<< +/Type /Font +/BaseFont /DMPNDY+CMR17 +/FirstChar 20 +/FontDescriptor 116 0 R +/LastChar 124 +/Subtype /Type1 +/Widths 100 0 R +>> +endobj +46 0 obj +<< +/Type /Font +/BaseFont /RLYLLI+CMR12 +/FirstChar 20 +/FontDescriptor 114 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 99 0 R +>> +endobj +47 0 obj +<< +/Type /Font +/BaseFont /OLUUSQ+CMBX12 +/FirstChar 20 +/FontDescriptor 104 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 98 0 R +>> +endobj +48 0 obj +<< +/Type /Font +/BaseFont /HJGMPZ+CMBX9 +/FirstChar 80 +/FontDescriptor 106 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 97 0 R +>> +endobj +49 0 obj +<< +/Type /Font +/BaseFont /SJNHCC+CMR9 +/FirstChar 20 +/FontDescriptor 124 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 96 0 R +>> +endobj +50 0 obj +<< +/Type /Font +/BaseFont /FOJGQS+CMTI9 +/FirstChar 44 +/FontDescriptor 128 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 95 0 R +>> +endobj +51 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 578.876000 null ] +>> +endobj +52 0 obj +<< +/Type /Font +/BaseFont /ZOXHGW+CMBX10 +/FirstChar 20 +/FontDescriptor 102 0 R +/LastChar 117 +/Subtype /Type1 +/Widths 94 0 R +>> +endobj +53 0 obj +<< +/Type /Font +/BaseFont /FWTCDB+CMBXTI10 +/FirstChar 50 +/FontDescriptor 108 0 R +/LastChar 116 +/Subtype /Type1 +/Widths 93 0 R +>> +endobj +54 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 475.492000 null ] +>> +endobj +55 0 obj +<< +/Type /Font +/BaseFont /XGGYUK+CMR10 +/FirstChar 12 +/FontDescriptor 112 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 92 0 R +>> +endobj +56 0 obj +<< +/Type /Font +/BaseFont /ZOBLSI+CMMI10 +/FirstChar 65 +/FontDescriptor 110 0 R +/LastChar 126 +/Subtype /Type1 +/Widths 91 0 R +>> +endobj +57 0 obj +<< +/Type /Font +/BaseFont /OAQJWM+CMSY10 +/FirstChar 0 +/FontDescriptor 126 0 R +/LastChar 106 +/Subtype /Type1 +/Widths 90 0 R +>> +endobj +58 0 obj +<< +/Type /Font +/BaseFont /ZRYLLV+CMR7 +/FirstChar 49 +/FontDescriptor 120 0 R +/LastChar 65 +/Subtype /Type1 +/Widths 89 0 R +>> +endobj +59 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 402.234000 null ] +>> +endobj +60 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 333.530000 null ] +>> +endobj +61 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 261.836000 null ] +>> +endobj +62 0 obj +<< +/D [ 38 0 R /XYZ 70.544000 211.915000 null ] +>> +endobj +63 0 obj +<< +/D [ 38 0 R /XYZ 70.544000 152.357000 null ] +>> +endobj +64 0 obj +<< +/Type /Pages +/Count 2 +/Kids [ 38 0 R 72 0 R ] +>> +endobj +65 0 obj +<< +/Type /Annot +/A << +/D (Hfootnote.1) +/S /GoTo +>> +/Border [ 0 0 0 ] +/C [ 1 0 0 ] +/H /I +/Rect [ 508.854000 758.209000 515.316000 770.456000 ] +/Subtype /Link +>> +endobj +66 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec.eu/sijanec/sola-gimb-2) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 485.877000 746.185000 550.634000 757.310000 ] +/Subtype /Link +>> +endobj +67 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec/sola-gimb-2/src/branch/master/mat/domace_naloge/21/) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 237.402000 733.953000 350.356000 745.908000 ] +/Subtype /Link +>> +endobj +68 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (http://razor.arnes.si/~asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.pdf) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 140.675000 722.275000 550.634000 733.400000 ] +/Subtype /Link +>> +endobj +69 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/mat/domace_naloge/21/dokument.pdf) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 88.560000 710.043000 550.634000 721.998000 ] +/Subtype /Link +>> +endobj +70 0 obj +<< +/Type /Annot +/A << +/D (Hfootnote.2) +/S /GoTo +>> +/Border [ 0 0 0 ] +/C [ 1 0 0 ] +/H /I +/Rect [ 330.044000 608.009000 336.506000 620.048000 ] +/Subtype /Link +>> +endobj +71 0 obj +<< +/ColorSpace 3 0 R +/ExtGState 1 0 R +/Font << +/F40 75 0 R +/F45 82 0 R +/F46 80 0 R +/F60 83 0 R +/F7 58 0 R +/F71 47 0 R +/F8 55 0 R +>> +/Pattern 2 0 R +/ProcSet [ /PDF /Text ] +>> +endobj +72 0 obj +<< +/Type /Page +/Annots [ 65 0 R 66 0 R 76 0 R 67 0 R 68 0 R 77 0 R 69 0 R 78 0 R 70 0 R ] +/Contents 73 0 R +/MediaBox [ 0 0 595.276000 841.890000 ] +/Parent 64 0 R +/Resources 71 0 R +>> +endobj +73 0 obj +<< +/Length 3869 +>> +stream +0 g 0 G +0 g 0 G +BT +/F71 14.3462 Tf 45.638 783.171 Td [(2)-1125(Zaklju)31(\024)531(cek)]TJ/F8 9.9626 Tf 0 -21.821 Td [(T)83(a)-375(dokumen)28(t)-376(je)-376(infor)1(m)-1(ati)1(vne)-376(nara)28(v)28(e)-376(in)-376(se)-375(lahk)28(o)-323(\024)447(se)-376(spreminja.)-571(Na)-55(jno)27(v)28(ej)53(\024)447(sa)-375(razli)27(\024)473(cica,)-387(torej)-375(PDFji)-376(in)-375(L)]TJ/F7 6.9738 Tf 441.285 2.043 Td [(A)]TJ/F8 9.9626 Tf 4.386 -2.043 Td [(T)]TJ 5.535 -2.144 Td [(E)]TJ 5.534 2.144 Td [(X)]TJ/F7 6.9738 Tf 7.472 3.616 Td [(1)]TJ/F8 9.9626 Tf 8.212 -3.616 Td [(izv)28(orna)]TJ -472.424 -11.955 Td [(k)28(o)-28(da,)-481(zgo)-28(do)28(vina)-451(spremem)28(b)-452(in)-451(prej)53(\024)447(snje)-451(razli)27(\024)473(cice,)-481(je)-452(na)-451(v)28(oljo)-451(v)-452(mo)-55(jem)-399(\024)447(solsk)28(em)-451(Git)-452(rep)-28(ozitorij)1(u)-452(na)]TJ/F40 9.9626 Tf 441.236 0 Td [(https://git.)]TJ -441.236 -11.955 Td [(sijanec.eu/sijanec/sola-)-50(gimb-)-50(2)]TJ/F8 9.9626 Tf 160.576 0 Td [(v)-268(mapi)-268(/mat/domace)]TJ +ET +q +1 0 0 1 298.772 737.639 cm +[]0 d 0 J 0.398 w 0 0 m 2.989 0 l S +Q +BT +/F8 9.9626 Tf 301.76 737.44 Td [(naloge/21/.)-423(P)28(o)28(v)28(eza)27(v)56(a)-268(za)-268(ogled)-268(zadnje)-268(razli)28(\024)472(cice)-268(tega)-268(doku-)]TJ -256.122 -11.955 Td [(men)28(ta)-231(v)-231(PDF)-230(obliki)-231(je)]TJ/F40 9.9626 Tf 96.033 0 Td [(http://razor.arnes.si/)]TJ 115.068 -1.93 Td [(~)]TJ 5.23 1.93 Td [(asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.)]TJ -216.331 -11.955 Td [(pdf)]TJ/F8 9.9626 Tf 17.905 0 Td [(in/ali)]TJ/F40 9.9626 Tf 26.013 0 Td [(https://git.sijanec.eu/sijanec/sola-)-50(gimb-)-50(2/raw/branch/master/mat/domace_naloge/21/dokument.)]TJ -43.918 -11.956 Td [(pdf)]TJ/F8 9.9626 Tf 15.691 0 Td [(.)]TJ/F71 14.3462 Tf -15.691 -32.945 Td [(Razhro)59(\024)504(s)31(\024)531(cev)63(alne)-375(inf)-1(orma)1(cij)-1(e)]TJ/F8 9.9626 Tf 0 -21.821 Td [(T)83(e)-307(informacije)-307(so)-307(generirane,)-313(k)28(er)-307(je)-307(omogo)28(\024)472(ceno)-307(razhro)52(\024)448(s)27(\024)473(ce)-1(v)56(anje.)-436(Pred)-307(ob)-55(ja)28(v)27(o)-307(dokumen)28(ta)-307(izklopite)-307(razhro)53(\024)447(s)28(\024)472(cev)55(anje.)-435(T)83(o)]TJ 0 -11.955 Td [(naredite)-333(tak)28(o,)-334(da)-333(nasta)28(vite)-334(uk)56(az)]TJ/F40 9.9626 Tf 143.158 0 Td [(razhroscevanje)]TJ/F8 9.9626 Tf 76.545 0 Td [(na)-333(0)-334(v)-333(za)28(\024)472(cetku)-333(dokumen)27(ta.)]TJ -204.759 -11.956 Td [(Gra\014)-333(ima)-56(jo)-333(natan)28(\024)472(cnost)-333(100)-334(to)28(\024)472(ck)-333(na)-333(graf.)]TJ 0 -11.955 Td [(Konec)-333(generiranja)-334(doku)1(m)-1(en)28(ta:)-444(20.)-333(dec)-1(em)28(b)-28(er)-333(2020)-333(ob)-334(00:23:37)]TJ/F7 6.9738 Tf 270.458 3.616 Td [(2)]TJ/F8 9.9626 Tf -270.458 -15.571 Td [(Dokumen)28(t)-334(se)-333(je)-333(generiral)-334(R0qK1KR2)-333(s.)]TJ +0 g 0 G +ET +q +1 0 0 1 45.638 101.61 cm +[]0 d 0 J 0.398 w 0 0 m 201.597 0 l S +Q +BT +/F46 5.9776 Tf 56.73 94.968 Td [(1)]TJ/F45 7.9701 Tf 4.151 -2.813 Td [(Za)-354(izdela)29(v)30(o)-354(dokumen)29(ta)-354(p)-29(otrebujete)]TJ/F60 7.9701 Tf 133.384 0 Td [(TeXLive)-531(2020)]TJ/F45 7.9701 Tf 50.81 0 Td [(.)]TJ/F46 5.9776 Tf -188.345 -6.691 Td [(2)]TJ/F45 7.9701 Tf 4.151 -2.813 Td [(T)89(o)-350(ne)-349(nak)59(azuje)-350(dejansk)30(ega)-320(\024)502(casa,)-351(k)30(o)-350(je)-349(bil)-350(dokumen)30(t)-350(napisan,)-350(tem)29(v)30(e)29(\024)502(c)-320(\024)502(cas,)-350(k)29(o)-349(je)-350(bi)-349(dokumen)29(t)-349(generiran)-350(v)-349(PDF/D)29(VI)-349(oblik)29(o.)-470(Isto)-350(v)30(elja)]TJ -15.243 -9.465 Td [(za)-354(datum)-354(v)-354(gla)29(vi)-354(dokumen)30(ta.)]TJ 113.147 2.015 Td [(\024)]TJ -0.941 -2.015 Td [(Ce)-354(b)-30(erete)-354(direktno)-354(iz)-354(LaT)88(eX)-354(datotek)30(e,)-354(b)-30(o)-354(to)-354(v)29(edno)-354(dana)56(\024)476(snji)-355(da)1(tum)-1(.)]TJ +0 g 0 G +0 g 0 G +/F8 9.9626 Tf 137.303 -29.94 Td [(2)]TJ +0 g 0 G +ET + +endstream +endobj +74 0 obj +<< +/D [ 72 0 R /XYZ 44.638000 830.996000 null ] +>> +endobj +75 0 obj +<< +/Type /Font +/BaseFont /IJKLSG+CMTT10 +/FirstChar 45 +/FontDescriptor 130 0 R +/LastChar 126 +/Subtype /Type1 +/Widths 88 0 R +>> +endobj +76 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec.eu/sijanec/sola-gimb-2) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 44.642000 733.953000 204.541000 745.908000 ] +/Subtype /Link +>> +endobj +77 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (http://razor.arnes.si/~asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.pdf) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 44.642000 710.043000 62.325000 721.998000 ] +/Subtype /Link +>> +endobj +78 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/mat/domace_naloge/21/dokument.pdf) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 44.642000 698.364000 62.325000 708.659000 ] +/Subtype /Link +>> +endobj +79 0 obj +<< +/D [ 72 0 R /XYZ 45.638000 686.561000 null ] +>> +endobj +80 0 obj +<< +/Type /Font +/BaseFont /XTJZVU+CMR6 +/FirstChar 49 +/FontDescriptor 118 0 R +/LastChar 50 +/Subtype /Type1 +/Widths 87 0 R +>> +endobj +81 0 obj +<< +/D [ 72 0 R /XYZ 60.881000 101.620000 null ] +>> +endobj +82 0 obj +<< +/Type /Font +/BaseFont /TPJKYX+CMR8 +/FirstChar 20 +/FontDescriptor 122 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 86 0 R +>> +endobj +83 0 obj +<< +/Type /Font +/BaseFont /ISIMRT+CMTT8 +/FirstChar 48 +/FontDescriptor 132 0 R +/LastChar 118 +/Subtype /Type1 +/Widths 85 0 R +>> +endobj +84 0 obj +<< +/D [ 72 0 R /XYZ 60.881000 92.115000 null ] +>> +endobj +85 0 obj +[ 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 ] +endobj +86 0 obj +[ 531.300000 531.300000 531.300000 795.800000 472.200000 531.300000 767.400000 826.400000 531.300000 958.700000 +1076.800000 826.400000 295.100000 295.100000 531.300000 885.400000 531.300000 885.400000 826.400000 295.100000 +413.200000 413.200000 531.300000 826.400000 295.100000 354.200000 295.100000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 295.100000 295.100000 +295.100000 826.400000 501.700000 501.700000 826.400000 795.800000 752.100000 767.400000 811.100000 722.600000 +693.100000 833.500000 795.800000 382.600000 545.500000 825.400000 663.600000 972.900000 795.800000 826.400000 +722.600000 826.400000 781.600000 590.300000 767.400000 795.800000 795.800000 1091 795.800000 795.800000 +649.300000 295.100000 531.300000 295.100000 531.300000 295.100000 295.100000 531.300000 590.300000 472.200000 +590.300000 472.200000 324.700000 531.300000 590.300000 295.100000 324.700000 560.800000 295.100000 885.400000 +590.300000 531.300000 590.300000 560.800000 414.100000 419.100000 413.200000 590.300000 560.800000 767.400000 +560.800000 560.800000 472.200000 ] +endobj +87 0 obj +[ 611.100000 611.100000 ] +endobj +88 0 obj +[ 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 ] +endobj +89 0 obj +[ 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 323.400000 +323.400000 323.400000 877 538.700000 538.700000 877 843.300000 ] +endobj +90 0 obj +[ 777.800000 277.800000 777.800000 500 777.800000 500 777.800000 777.800000 777.800000 777.800000 +777.800000 777.800000 777.800000 1000 500 500 777.800000 777.800000 777.800000 777.800000 +777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 1000 1000 +777.800000 777.800000 1000 1000 500 500 1000 1000 1000 777.800000 +1000 1000 611.100000 611.100000 1000 1000 1000 777.800000 275 1000 +666.700000 666.700000 888.900000 888.900000 0 0 555.600000 555.600000 666.700000 500 +722.200000 722.200000 777.800000 777.800000 611.100000 798.500000 656.800000 526.500000 771.400000 527.800000 +718.700000 594.900000 844.500000 544.500000 677.800000 762 689.700000 1200.900000 820.500000 796.100000 +695.600000 816.700000 847.500000 605.600000 544.600000 625.800000 612.800000 987.800000 713.300000 668.300000 +724.700000 666.700000 666.700000 666.700000 666.700000 666.700000 611.100000 611.100000 444.400000 444.400000 +444.400000 444.400000 500 500 388.900000 388.900000 277.800000 ] +endobj +91 0 obj +[ 750 758.500000 714.700000 827.900000 738.200000 643.100000 786.300000 831.300000 439.600000 554.500000 +849.300000 680.600000 970.100000 803.500000 762.800000 642 790.600000 759.300000 613.200000 584.400000 +682.800000 583.300000 944.400000 828.500000 580.600000 682.600000 388.900000 388.900000 388.900000 1000 +1000 416.700000 528.600000 429.200000 432.800000 520.500000 465.600000 489.600000 477 576.200000 +344.500000 411.800000 520.600000 298.400000 878 600.200000 484.700000 503.100000 446.400000 451.200000 +468.800000 361.100000 572.500000 484.700000 715.900000 571.500000 490.300000 465.100000 322.500000 384 +636.500000 500 ] +endobj +92 0 obj +[ 555.600000 555.600000 833.300000 833.300000 277.800000 305.600000 500 500 500 500 +500 750 444.400000 500 722.200000 777.800000 500 902.800000 1013.900000 777.800000 +277.800000 277.800000 500 833.300000 500 833.300000 777.800000 277.800000 388.900000 388.900000 +500 777.800000 277.800000 333.300000 277.800000 500 500 500 500 500 +500 500 500 500 500 500 277.800000 277.800000 277.800000 777.800000 +472.200000 472.200000 777.800000 750 708.300000 722.200000 763.900000 680.600000 652.800000 784.700000 +750 361.100000 513.900000 777.800000 625 916.700000 750 777.800000 680.600000 777.800000 +736.100000 555.600000 722.200000 750 750 1027.800000 750 750 611.100000 277.800000 +500 277.800000 500 277.800000 277.800000 500 555.600000 444.400000 555.600000 444.400000 +305.600000 500 555.600000 277.800000 305.600000 527.800000 277.800000 833.300000 555.600000 500 +555.600000 527.800000 391.700000 394.400000 388.900000 555.600000 527.800000 722.200000 527.800000 527.800000 +444.400000 ] +endobj +93 0 obj +[ 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 355.600000 355.600000 +386.100000 885.500000 591.100000 591.100000 885.500000 865.500000 816.700000 826.700000 875.500000 756.700000 +727.200000 895.300000 896.100000 471.700000 610.600000 895 697.800000 1072.800000 896.100000 855 +787.200000 855 859.400000 650 796.100000 880.800000 865.500000 1160 865.500000 865.500000 +708.900000 356.100000 620.600000 356.100000 591.100000 355.600000 355.600000 591.100000 532.200000 532.200000 +591.100000 532.200000 400 532.200000 591.100000 355.600000 355.600000 532.200000 296.700000 944.400000 +650 591.100000 591.100000 532.200000 501.700000 486.900000 385 ] +endobj +94 0 obj +[ 575 575 575 869.400000 511.100000 597.200000 830.600000 894.400000 575 1041.700000 +1169.400000 894.400000 319.400000 350 602.800000 958.300000 575 958.300000 894.400000 319.400000 +447.200000 447.200000 575 894.400000 319.400000 383.300000 319.400000 575 575 575 +575 575 575 575 575 575 575 575 319.400000 319.400000 +350 894.400000 543.100000 543.100000 894.400000 869.400000 818.100000 830.600000 881.900000 755.600000 +723.600000 904.200000 900 436.100000 594.400000 901.400000 691.700000 1091.700000 900 863.900000 +786.100000 863.900000 862.500000 638.900000 800 884.700000 869.400000 1188.900000 869.400000 869.400000 +702.800000 319.400000 602.800000 319.400000 575 319.400000 319.400000 559 638.900000 511.100000 +638.900000 527.100000 351.400000 575 638.900000 319.400000 351.400000 606.900000 319.400000 958.300000 +638.900000 575 638.900000 606.900000 473.600000 453.600000 447.200000 638.900000 ] +endobj +95 0 obj +[ 314.800000 367.300000 314.800000 524.700000 524.700000 524.700000 524.700000 524.700000 524.700000 524.700000 +524.700000 524.700000 524.700000 524.700000 314.800000 314.800000 314.800000 787 524.700000 524.700000 +787 763 722.500000 734.600000 775 696.300000 670.100000 794.100000 763 395.700000 +538.900000 789.200000 643.800000 920.400000 763 787 696.300000 787 748.800000 577.200000 +734.600000 763 763 1025.300000 763 763 629.600000 314.800000 527.800000 314.800000 +524.700000 314.800000 314.800000 524.700000 472.200000 472.200000 524.700000 472.200000 314.800000 472.200000 +524.700000 314.800000 314.800000 472.200000 262.300000 839.500000 577.200000 524.700000 524.700000 472.200000 +432.900000 419.800000 341.100000 550.900000 472.200000 682.100000 473.800000 498.500000 419.800000 ] +endobj +96 0 obj +[ 513.900000 513.900000 513.900000 770.700000 456.800000 513.900000 742.300000 799.400000 513.900000 927.800000 +1042 799.400000 285.500000 285.500000 513.900000 856.500000 513.900000 856.500000 799.400000 285.500000 +399.700000 399.700000 513.900000 799.400000 285.500000 342.600000 285.500000 513.900000 513.900000 513.900000 +513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 285.500000 285.500000 +285.500000 799.400000 485.300000 485.300000 799.400000 770.700000 727.900000 742.300000 785 699.400000 +670.800000 806.500000 770.700000 371 528.100000 799.200000 642.300000 942 770.700000 799.400000 +699.400000 799.400000 756.500000 571 742.300000 770.700000 770.700000 1056.200000 770.700000 770.700000 +628.100000 285.500000 513.900000 285.500000 513.900000 285.500000 285.500000 513.900000 571 456.800000 +571 457.200000 314 513.900000 571 285.500000 314 542.400000 285.500000 856.500000 +571 513.900000 571 542.400000 402 405.400000 399.700000 571 542.400000 742.300000 +542.400000 542.400000 456.800000 ] +endobj +97 0 obj +[ 808 888.900000 886.700000 657.400000 823.100000 908.600000 892.900000 1221.600000 892.900000 892.900000 +723.100000 328.700000 617.600000 328.700000 591.700000 328.700000 328.700000 575.200000 657.400000 525.900000 +657.400000 543 361.600000 591.700000 657.400000 328.700000 361.600000 624.500000 328.700000 986.100000 +657.400000 591.700000 657.400000 624.500000 488.100000 466.800000 460.200000 657.400000 624.500000 854.600000 +624.500000 624.500000 525.900000 ] +endobj +98 0 obj +[ 562.500000 562.500000 562.500000 849.500000 500 574.100000 812.500000 875 562.500000 1018.500000 +1143.500000 875 312.500000 342.600000 581 937.500000 562.500000 937.500000 875 312.500000 +437.500000 437.500000 562.500000 875 312.500000 375 312.500000 562.500000 562.500000 562.500000 +562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 312.500000 312.500000 +342.600000 875 531.200000 531.200000 875 849.500000 799.800000 812.500000 862.300000 738.400000 +707.200000 884.300000 879.600000 419 581 880.800000 675.900000 1067.100000 879.600000 844.900000 +768.500000 844.900000 839.100000 625 782.400000 864.600000 849.500000 1162 849.500000 849.500000 +687.500000 312.500000 581 312.500000 562.500000 312.500000 312.500000 546.900000 625 500 +625 513.300000 343.700000 562.500000 625 312.500000 343.700000 593.700000 312.500000 937.500000 +625 562.500000 625 593.700000 459.500000 443.700000 437.500000 625 593.700000 812.500000 +593.700000 593.700000 500 ] +endobj +99 0 obj +[ 489.600000 489.600000 489.600000 734 435.200000 489.600000 707.200000 761.600000 489.600000 883.800000 +992.600000 761.600000 272 272 489.600000 816 489.600000 816 761.600000 272 +380.800000 380.800000 489.600000 761.600000 272 326.400000 272 489.600000 489.600000 489.600000 +489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 272 272 +272 761.600000 462.400000 462.400000 761.600000 734 693.400000 707.200000 747.800000 666.200000 +639 768.300000 734 353.200000 503 761.200000 611.800000 897.200000 734 761.600000 +666.200000 761.600000 720.600000 544 707.200000 734 734 1006 734 734 +598.400000 272 489.600000 272 489.600000 272 272 489.600000 544 435.200000 +544 435.200000 299.200000 489.600000 544 272 299.200000 516.800000 272 816 +544 489.600000 544 516.800000 380.800000 386.200000 380.800000 544 516.800000 707.200000 +516.800000 516.800000 435.200000 ] +endobj +100 0 obj +[ 458.600000 458.600000 458.600000 693.300000 406.400000 458.600000 667.600000 719.800000 458.600000 837.200000 +941.700000 719.800000 249.600000 249.600000 458.600000 772.100000 458.600000 772.100000 719.800000 249.600000 +354.100000 354.100000 458.600000 719.800000 249.600000 301.900000 249.600000 458.600000 458.600000 458.600000 +458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 249.600000 249.600000 +249.600000 719.800000 432.500000 432.500000 719.800000 693.300000 654.300000 667.600000 706.600000 628.200000 +602.100000 726.300000 693.300000 327.600000 471.500000 719.400000 576 850 693.300000 719.800000 +628.200000 719.800000 680.500000 510.900000 667.600000 693.300000 693.300000 954.500000 693.300000 693.300000 +563.100000 249.600000 458.600000 249.600000 458.600000 249.600000 249.600000 458.600000 510.900000 406.400000 +510.900000 406.400000 275.800000 458.600000 510.900000 249.600000 275.800000 484.700000 249.600000 772.100000 +510.900000 458.600000 510.900000 484.700000 354.100000 359.400000 354.100000 510.900000 484.700000 667.600000 +484.700000 484.700000 406.400000 458.600000 917.200000 ] +endobj +101 0 obj +<< +/Length 14262 +/Length1 1854 +/Length2 12408 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMBX10 003.002 +%%Title: CMBX10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMBX10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMBX10 known{/CMBX10 findfont dup/UniqueID known{dup +/UniqueID get 5000768 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /ZOXHGW+CMBX10 def +/FontBBox {-56 -250 1164 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX10.) readonly def +/FullName (CMBX10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Bold) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 86 /V put +dup 90 /Z put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 58 /colon put +dup 44 /comma put +dup 101 /e put +dup 53 /five put +dup 52 /four put +dup 103 /g put +dup 45 /hyphen put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 110 /n put +dup 57 /nine put +dup 111 /o put +dup 49 /one put +dup 41 /parenright put +dup 46 /period put +dup 114 /r put +dup 115 /s put +dup 54 /six put +dup 116 /t put +dup 51 /three put +dup 50 /two put +dup 117 /u put +dup 48 /zero put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{=מ7ڄĒKV"~Pr-=L$wcrlVcN &'{%Gf#ɨ_i#SXd+U*|:1m=⾝~6/aGLf#NOS}ERs{[.-jj|tm\: x8PbPh[_9t237,I2B8J0msUWQdX!??Q4eRH ]ӊ.p_?8:o:UuDZ[m^/a4l4ȒtL<~&WwLa9gPqhQΠjv)]sqR"ЯDž#eZKPHrF"tw;*l5 FF BW1S!2*`8:XlUI?[wc &Z`ѩް sdHeF'*s ЁTd9Baऋ[a$g1f\0 7aR^(Lj#!mw2#nr$|TL]{X`4.Gw|P2BgܴwbkF Nfj;d?#l"+6g{* ,SQ2&'n\`]Q:ݹ6ln0b9m],/ڨ\Y$6[+UE#ƸMO( ϲ.DL\*@z3'&Е62%+(k`D/k(ɒkpt`^Bձ\H~Y_˒c%~(! +Jvs}9qw{6sΓM &Q-p'&M&7tZ\r|5M5"*<ΕD,Lfj+ʾɝ"x0h#u[@}"փ +dIE* , j]v.tx kEYl}d.-eJ C=KD jnI"yX D|&k>ixbu?ѱ ,VszAc  G 7H`Ď'Ķ)r +ҎG֯Z~C +U. EC3}henħE!C[xxnCq##Ti.iW/i*?K`ɞ}g;ο@>Hmn91-[ tj7 3Myz,?Z@RPBi>vVF\Ahko8*NIQv94z4m n8)Db]ٞ>=e3Q-'0y#JW 0݈7\t53=μغ|[R>5Ir xhhy!kVSȮ7I ThaToɁ( WdsUI=]әM|dJ\YRGy4d(N{"l\ ]kȮ8V +A==r V^*mx(e=\ʰ!Bb8йX ֙Mاi +p)r ~1 ׏<;d,^6f,PpΨ|kR87>i e ^NҢ@h`[BF,L%mUBe*$nox3K V$[[fU;4Qjggo !%Uh(ԝ 2ן, O[Ј_\?Wt<ȅ/; "Rm®)E\rW1 ђoy։)B̊\@gJ?m Eqqٔ84^Da97 㤸{ɧZ!_`-rlُ*qٺ؊t LCg +:nbJ Lqrj5^9NRVJ7en%ϰYƕut4ƸF΋ėvQj6%c#~ O e҉'aS1e F u s^i"yw,~ C~Rƒ`,j"+ȬKk Q5IjEbT)">wv|$.4*@s? +ipb\r 9AZx; +~c/Hϫ+%Bm-7 S2*Eoq;ջ/6[ LoT F>=8$d�otu[QEU!\ސswE6W׍ Q8 < %xl& +~Bh=F"2\],ӱ@re(lF*ŊY7ٍ` pS?%i|ˋt|[b<7M=7snѪw24ׅd/bD~[)g43G&/pN%;t :p }wM/{ Ϭ0.bj!Z@< zyl)" KUmoҙ2c})z:<ۄF oŃGLyT7;$^>,Y.Fܔ%Gj,&U&S0Sg\+h8.!ɧ?4}+dC֡;GľZ#AeqE>RL K@$|DW/PN^Е3*0KƷ)}JMg"$58_gCs2C7,K՞?λ)效4 1#oIXcP~1 a^46Ӕ)jOa a ^oy^&9ߗǫ%<mLLN9y a)U)D.?9f4R2X w#_RzZu)q{ 3hSߛPDŒx)8%֗Q]9 rf!:wn; @AK ?gNq48)ďT cݨRSK:k4S};3<ʵ< SU^΋opf"5@A bq]W*VOMt,Sg__]0-GXz+G|f_r]EGaqۜgm ]Mnv(D/LbdR;G??aJVTy^ۭgm~`Z2Ј|{AJcQR qnd(ۜyoD`TJCHzRaPהxƜC@Mp<[0?e;ZT+R[kgϧa"q^b *r|::VNBOUzHbaGDH$6$4tLJb +INIC֜qa.K,ƭ >Cy +l7'mf &o1:i҅u meNπ@1; BB}Z(P3>f`mwyج]}L0qoJ 4VCBBLx1s_(\2ZZ. +G?eu8 3p8Dq,ƾ&[3M st/ϪT ;C;]DDu0 դQ[=zʥP*KCUqk#?k )M GRWI "RY7Wư0+@γTNT?aJxy~8up| ?5$[)sNd<#UM(8 bEQHt.f6֡U3=a^~C]䨀2"nC_FJ82{[c1 fXɉ{IڅF ʨ0GON :bպF3ܞ_(8::`xyVZ$݊gFԶܛbHQ[Щ!oݛ "(4m;>QEW;+/f|<<*im${TL֝*\!1 -m~8aeTpc\'gխf7!%;gNs(rkӝQ'1r4ǘKD^Fy@zEoUd9YBr?SU8ܹ/]~CINp`&$/sau:2]zDt*IWbc|[1y@H וOD8R8BŮ1$CG?jMt&Ic7t!DG5RyXv[!y#M+^e+i@sշu3VN4P{iSъW3<9xbt3DB^(x;OL#Л0ٚ?xNpK<9V́`Y-Q? ;~f㸓$oW6CDaxdU/a65bnof=7c8H%蠛 sIn^~L7 Bz @ˑ>9YCFF(<T^ɨ)aI=X4 +@;TE76c,P\R<SQ<"%;S_qy j8~%#Þ %~;QcK B-|IeNRQʡ,`_Mc;0]bv8V=NVč"lc;Yw=ֱ3r~STw.f7 qPa ;9ܪy^伜DmG ζS:e80zm$k}$Yµ}i^,i)c/^vŲ/spMQ*S*zuA;9-q)žl"AV^:QgNrt9ѨJHmhDDg@e0AvyI }^-Fh>0jƜ;,~$.U.y XSG %Q|Qj~3wE0 +$pW={K(]WKS="K8OQEw%~Dovh<ĀDDIv!PQ4dҺ6*1d(G XY;e㡒]/5n,7SOD^"%Z%Ҭ4I:66Dqոw}NҪ_Պ½ iYJt`'K>"ɕD{^M0I()IB>ZlL3Z*膒jnZhts280jOXUm0n<{Dt\5`"X"g^)Ǖ\= +fN<ﳭPs*s5B P\l$?wW{֧'0[5ጐQ^/=|8/Rl5IGLk!cvIupaa{|&3C;Zzj1|uArǝkmZp9r"BhUY/sHqm,'ebyS Fn"8~(f\; G !1xaST\Hy &0zc-#>ރ >uUcT\o髚ZbY9iv]̕2|Jՙ5ÃTI;-ˋ:XnDio_ \JO_.,-"~ 5BUsWltAP٫"2CT"[E YDz'{?ѩۍ)_6%$R+Gu_CY'kr~)Þb1u2k6 iJfawoؒc& [xj"e^y`bJh^tQat0v0Oj%P;?a<J,Ewz*PZP4Xӊ1un\Z܈ `VIs#衽ep^Oę^K}>R} #RL*oP/cvrneȍwS49 gҭZf#*QL5E&͑*Pu\&Z ~H?RyWfmKK0,ksy}5bH ?7&y8?<.u(#҇/d:y%ʉ +vg=?`'FG.h̶@[m\k7jMŽ靈@Rt 'ר&{>'[&ʒw< 5%9hv z}a1U_X6ze?PHu;%$<9N=BGϐHZHlDD +g!X;E*Tz^ .殾򳿃x<#ɴ/ ސkg51._^x|'OVYLN{q 4μVJWP+cKfO7Ku#Kl9xÕ%qRdA5=A#GJ۶ ? pϜ.|៣!ZV"XBu-:?s +p[ KIw^-Rئa:UGYTCYʛ ņ4 1Mhߗ+\,|jTpY:JE!^qy%IC 0~u2vA ;<1[ ZD]gq1qtv`9%$CBvMdLj)䥮?VXT{iOaJo +l"JE;-۰\.KTodp=y%?3ymW{l mtcMXa;vms >|A#X$5m2AӓHvw#q5;'bDishwi5\V;GRҕh. ݷT>ȅ0#y$&x\oӸJIg zDނc/JsEm!ųSASj|-tBn +Hcc/n* MxAXJA % XXZgP{]F3  ASy}\ U2dPDq)AŏGTSs#ewJg;Tqf&WV8$-ӵw@H>[1Å +r%[ j13wgVI.2ӱHP#)Rf?""u.ʳ"T4!k:W⎺x54͛Bd@dB3Y"KsH,zPyJO2 4A??R,SxX}(-в\Vt)XOI#djhsZ@9WtLb%bkd!K x0"Տo!1 *zJ~.s;(a}HYS-7&X) /(q.~4S1YboR L!G\|QeY~Ö܆+G3`%{k$Ia% ?dr,6/.9*Uxksjө~f( !pXreza?6;mݘBt~Mu !RJt !U}s!zgFWգH:FRc.κWSKuk/?GC9¦`/qwmAЅ|KiYU&pWpn4ˏ )lT'Ļ_ + E?uM6|gzS_3zf2m&E075S `qu윊C^\݊ +2יjfhFv'-x.k3`36ډ{2s=6+9 Eؓg<[$RK׽HepQ&h+ +&~{MRc + >q4ʚDtn`-^ѥLc6ۮ%5sU;LqHwOShs򢖏hiTe<9*x3MŞт]V#9Wīo?M0~#zc $PbrS9r=VU*-A+G7ce͕J~$d.=X*8i|[ - 5:*?5gJ6QdIQ@V +TZ{poC|$0Enީ~1E戻$3Cf,dzx}Àx9z;pIEK@x֦y8*?O`S{#rarkQÈHŇIy>ֆzUq!hlxukN7_7egDLmڏ4p(O c.AJqiپŖ +{lǂ)O,γO k)u[ȹ?JH0׷;iOrs'R*L!ٳpET8\6>^A⌫#0ƄT"i#j4°:?Fpu^(KBp<)5f |0WM sp_}<d^YcX V%J-Ҋr' }5;* 0]9+}ֺq\,WqSR-.AA\҆~_&6ỈM[HYQ ݱcTi}" Lݐ,C쎾u9R T| cI62 +&Pu~/ʚ߽6V'0 y%MMLoux@bפi6Hp!r6IW$$ےw̲秾/:dr(>k[ңفAǑ]3Y ogRfFۃ2†{3C/>b%>)U7eJ`٩B&8֘`ׄzKvo3HQa/R8 +t;.liR~שcq~ 0hdhKȔ+cڬe2o}&^\RסSfFBlY-9gU>fBME X"s6+sUJAIDl +Vw렮;P? ^QrdЬn<RwNaCvVE (N=e,u\ ^[a~ :XRJTfi[b0| 6?y:7SoRa|7J]a_yTE7_c91Ώeؑ]'|l*!$zy#2zaYVۘTJ:9͈o_z!Sإ(PoۤP*b430:}bFZ\3C%(_y + ɬeT$5t7b1 qF9[co} +!nr7n> +endobj +103 0 obj +<< +/Length 13810 +/Length1 1912 +/Length2 11898 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMBX12 003.002 +%%Title: CMBX12 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMBX12. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMBX12 known{/CMBX12 findfont dup/UniqueID known{dup +/UniqueID get 5000769 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /OLUUSQ+CMBX12 def +/FontBBox {-53 -251 1139 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX12.) readonly def +/FullName (CMBX12) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Bold) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 65 /A put +dup 75 /K put +dup 80 /P put +dup 82 /R put +dup 86 /V put +dup 90 /Z put +dup 97 /a put +dup 99 /c put +dup 20 /caron put +dup 58 /colon put +dup 44 /comma put +dup 101 /e put +dup 102 /f put +dup 53 /five put +dup 52 /four put +dup 103 /g put +dup 104 /h put +dup 45 /hyphen put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 57 /nine put +dup 111 /o put +dup 49 /one put +dup 114 /r put +dup 115 /s put +dup 54 /six put +dup 116 /t put +dup 51 /three put +dup 50 /two put +dup 117 /u put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{Jf^ַ>aq4!<_CцcQ%BlS71_ +sQzԜr?ktP2Òl(?69~'@2bt[{ax 7}Gn[TY>T#a1h!;`WƮk>Kj̱JzNc?^<@ qTud[eюj:JnK#2S[ŝBb?̬Mo7aa'gP:δѩ҈ dBd|IH^wMe#DD13W.J.6׮r(N #>Zjhɵ+Uw +$\WN.C(V\N¸3A?l_sMP yfSyֿb`9upPȐNur)L=uhՂD١Pԋ^} +-zU*3~HwzQ:.cxv(P}F>48zeU+Jk <>,H~^U>~~)9G-_+ԇ2miΝ1r>Z?ώ8PZm#meDPњ69v=hE_X(yN(9d5p7LZC~ld1:/ g!, +}Q+93V{ QlG 7!;yq+ JA vj/rڜZP)4f+OpX_t~ 5[RZ$ҹ=#e@K*WEt_-J bΣZdh>xNpsGLOh>o련J;J+\m +J6km9"N `D[ h6w{Ac<=ޮv}PC*|sAחfK+1!Sn~#_*]\i!Jiq˘mJ K fy*S}iGV6wa$mv<zZQ^L0NRq!*7uLO=b~_J CI?<5 T zs}uL`M؀"7K 8yO {|v`).D3K$ ,3sÝDRT c2쑃%yD\MS9HQ՝rfG^\55#v[Yϴ)KS^~nMX,8&7a d$ݕ ^t/WyϿ4QK{)=WDd>oeZpٕi-e@PLb|#p"6KLPXzbZc})%LKfO2ݮ (NԴU-eru RyTkl>'H 9т-)u +u+ld4zcLsTJ[:v?WNM* NiLffF/? ̔o_a! Bt]z\ޔR/r4MFwe5']ZPp׶r?PaL'- +c3G}T'ڡn#^>Ҡ'-ހFwMOTDsJQ{ T޾2VNsҎ%Bh$,>oK"Hϯ 2BU7'J(Ǜc1PIݐ.lQjF%jP +1zb2ɮWM+mKf,"/3~į;7/7=o-R%nJB@n6A0hRF9T {(&$߅:hMj %FVڈGv?`S::JepR̶9y?O_4:╱bEV]1Vb,"KoF0dba̟f4G^̬k({: +]-eJbc?hs+΢_sS,atyir%F3gދ&M}ۨ3Dkh`\rud>;iA_ +oF_љckNԋn`v)2ۙ$# 6{⮶\FvUW l +%x[gj6~C "^klCy%)%nWFO/My~ZqiI$CT*x])it4ZV]m剁VO)gi +%-JUƠ[fTX7/.cU,h78M4 z9:̳jmrvP# >bx_Løğ y5R@/{fQC}d~r!4ѐfPo퀿M+^',6_/W{h/њjS}Jz sնj ޳~zL{qA\Rh$):zNSJLyj^Ĕǒ)T~KZAP0JP~(>~9&åv^")X5=hN҂aNز%1v1gv?467H!NjO4پb夹tFy&{wQ[+ZJq ++@ mn,jMnEfI m RGUY8šNK:]ĤB!N?J'A.k{c㣆+/lB~z- NWWcr酉?V,d\$;tTR%M8DLsY{D#4 D{a\j;$ndʟ'KE 'p a_C1daEE4"<[ɬ}77%غk/2Ik'wblZqq@`C,6|U[2ǩ{{_W{l[(Eㅐ&K!.0t)f7lnMwX< | w2#:|м6ޡ4Hkr~IEmvb,[xY@rL'3:`A7C~X+_显R#GAVt]Dd ! 0*uzbrYN%gUX&h͈6OW2^zG iNΫyf_S">.g`B6G +BdXXE}텅eW_llQ6ioF<3ԙZN%Q^w݃{&E:k= BI| +~ڛfKikx zm 3ٳ~mk +R-rHsډZ嬪.]]Mmјrx{%u_p[ +5~`31>pajdoT&]J[[@ǿ&#F8i ^9<we+-lBdv>B2p["j FSoa9"1ܟ`IC"9²xG@,ty +ďuo1H?$YM;oia=ۓe%[2Ax=7rܥVBe[˪?常%,Ƀ.$nYeWm!QiBԘte=L@&j*ފS3(W{kϰtu$%#!>R=k[>u>6ӣVϬNld>&VeR^- U*lY `s'ӕ)!-@;UIuvG*^ x8gyyg|)t#$ X0fمNWz M< t>&+4N%J"cqx=NJqҼmWҾ07js);'S] 3l i |M YL*g. /A|]Z;wĵ͓h'A4@@`J jٙ4JՎ$ +&G[A[8f i+o" I +{y }$teӜV o+m2\\IؘԏƳL¢#EadIOUOxA5>.ыKe=0@vJ:5bj̊_[,82 ޭ@J\rL8gy8i{CRᩞuG/W{8YDL?͏$j5,;ȁ|a쒤HPP8) +^NZ卯9vݑ7ᚮ{V^sfpZ~rw;gt$2 aڰ(iOd\Bvp + +ȑJrʂyyl +X!.X_K^?eT:C@`&nm/h˓n!HcC +/q(ހS2ײi@/ʤ1=ҙL>Dc'4 -ks)y.*%'vvGT3lz :a).ERex +ycQڅ|Syp| BN=9;+ 1(H-F/ fZ2dMpDj̖ߺB͞Y~>/( vk?.LpHS"'Q&k]]kQ7yZ #πYD}u #gŒtH,V$_6ڨsS.*U| DՓPFbB*Bu4ZB~*j?B/&ԌTފm奔Bu7!j9 alɋpwcsCpiyaJ: D08b>OPW@Yߔ눚( 32Nͤm*6p[Efw(`߬S_Nps1m5 +oHrcG٬R %G "dC*uIk_o*;tS!i0 (T(4T!8#Ʌj#([:۝ +F_p9WCU NZ|BIw> vu-OaO1,hp._`Øzq*~*`@׊V_^u'¦l.OS +&[<\FFl(63_Y|#+0 {XރA가o3) +?#n~՝@$Zb нW!7.Bˬ3~,X(yy/'Q&" G]TqiNąOt;|cWhP+"rˬf3Z3&"v d*M8d=*bFb[ -:oW=iJ`~mT0[NBmo-̡u0`Y$:!9^`#'4iΛ_6ƿŰ ٵdط(pɭUIrf~2jކD[[褔J;E&y/:x*Ɗ:6h|}9 6Whf-AOۇa|7x.eͤN M!LY;ƥyW`VNbw ^ӯPϋR%JZ]^Ffշfx5ǎqVo"vJV;#W th<ЯF5R IjyxyN-A(XʞU<Vh+`lqki;zҁمS~g"J2*6P+ ;dgh,yo I[7D%6z9(n-H;::;햋3@4({l q[vL+x$9,&TPRIa0u R\ h͝燪.O6#BtG +N5gL3A}R#^Ag*)jOxV*kBs _bklAW4:"weVZY +Z?h+LDiAں };(@!@x$Es_l.þ['bYe K9e"VWmoIcTY8Aoz/uc9&D 8Ua4/]aX1b+ZTž.,⩳Cql9NT9xaf-ĴN*M673t䏉s4z,O~1>ǿU]9WG . I#jFCY8j2[lk07> -ޒ+bWgZ7ӷfXWv]ȷ0$}:ː}7e&j@',Pt(ϙ o{;;S0}.LXOGv}Tg%$zB )'f[h9ʿ:{b u/4vCi(ذ y JAqb.6W*hkNrh|#ƷA2E(qhIsf +qZ$T4nj\|2a +~NT׹zKgd; B'LHRHB GL 7G +7ݱ= XJi]A&MD6fJX-3^s +ڮ H `hJ7D/arūR +oCEb]KNL~ +랔,j':q;tC- JB̚zx*5%"3=Yn~br†& :1DE_綝?,g'frkNJbCGRp\amA =vx"Շ&mS]TޏeG[W*M,pEgpK +5z%ݺ&L4Y9L6Yl*gg 1kǔK" ,8!tc$5#WbxwS S jǫBׁ$U>߁<vjعxIvn{IY$QDFh67ƮEv.cl6<•ؕk7]i}99c!_JB_W@Fi}UDyNCCVyɬ j,$xױmx4_IsutЧ}9ۧ >:xkaziLD%6E/8+y>}Ev?&m|A$%Anb!(͛ d,uT’QX@V C1#uy97p lkˣ_|~xi {~HZw#DbҞxn͞)g{iT#0`ylڝhEx Hܫ ~\2S8&'X:/t*%W@:n*cd=?X 9k[# +kQ{e"HuARulm&{I\Swe3q٧[A|̋K(i~1J7kl.[Ȟjc~A_xvFU=Z%TZ#]Auq~Z?j)ܴϐnZ"=}a*diQͧZꔀy8X6r'_{`c Vh +Jy=ܗ”#5Ivꮄ p9>ǫW,Gb>H (~N7?4]O ݃S#R7…1#[nY`eRwL5<K!PjirԳR>tQ^ \@o:37Ԛihɂ| a$Ӥw`Fk:jfc"φ$ +3xX`ɱ6;(=%ѪCI&Ò&L\󥫀m#~60(퍃ш̬‚CÇp /'<;>z_LIAB?ܚ-GvA-0z\.V9Hэ6 Hfi.ZY`}6Q"n4T]Ä6!%ul蹋*O]o +b5oB "*Gv^P/fi@W`^8K$_>zflX "jWjͤ;Lc3?u5DY;vҡWH_58Ȯ&f*0,(Oaq! +Ql fڜ +Iu|&fJj_# \ˑ],-<ΗPY]M+ƽgӨx@>{OD:[rJ́;3Z[@ ԪX{qw9FQKRzx#5|㟂x3ˀStZ+9!1O$zV!\.q\3%IO}*@D}81|A +endstream +endobj +104 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 686 +/CharSet (/A/K/P/R/V/Z/a/c/caron/colon/comma/e/f/five/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/r/s/six/t/three/two/u/v/z) +/Descent -194 +/Flags 4 +/FontBBox [ -53 -251 1139 750 ] +/FontFile 103 0 R +/FontName /OLUUSQ+CMBX12 +/ItalicAngle 0 +/StemV 109 +/XHeight 444 +>> +endobj +105 0 obj +<< +/Length 8318 +/Length1 1451 +/Length2 6867 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMBX9 003.002 +%%Title: CMBX9 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMBX9. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMBX9 known{/CMBX9 findfont dup/UniqueID known{dup +/UniqueID get 5000767 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /HJGMPZ+CMBX9 def +/FontBBox {-58 -250 1195 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX9.) readonly def +/FullName (CMBX9) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Bold) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 80 /P put +dup 101 /e put +dup 107 /k put +dup 111 /o put +dup 116 /t put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{Jf^ַ>aq4!<_CцcQ%BlS71_ +sQz5>?Q;8F}Q|-K,}>PD +65~`dU6+[\5тqFB>ֳ1^;!'VQ!<$6jT&UVDq~`XhZwU W67$hV%tj6~h<56{O.o"Fחlai!N;/ie L5sh!YB yֻM~|M{\B3ևxYXިmHo%l)CKFuԴlY~<,&Z#^gx'6wB8IWذ~D.TP>KoNzS6=('a`T seSdDVzL^|kb=yjaI>Ř(ץ4^? 'Kn`4Q9 . `3oh~Fq;zJ50EPX*ƚQ 㗘k4]aҡpM9\l[Z)uƔT\0kebIA;/{c Jn^GkgQ0Y'ISD;A39 h?ݦbJU5zw jpJBUY{e#Fws@rISp^YoZ|5h2*لEA4W?|PCx' А4 +v0U'J#oqӉY%egg|* )SZo8r;8Wlv"r`UkL==~V +X` +UvSw;8wwH_,^~q\3[l&8E};`Zګ)HZ/I ;3w +h$j/z/^,_C~A7kpRhbK0sQrI;YD4u-:p׼V1y&EF#RdȷnfNEzfL)3xg23) +pEY%NXA@WQQ X$r d7UmwK6+2a,n9VbA:)48z>Im8XCهLFʺߦkg'f 2 z?qe3?-&1VKl/>4(5p,Jr6`pԚd׌^d';@8]mB̾"D%i-{tx*yt:`Z]K=.;TƪXmj nѹ5&.F~P]^7FoQv3:2rHS7!S5ŷISvG0;=f/bkl9d n&CO l"*e@n!6}Zjou#|)f*,E^a(, L Ah_ȪRlgYhaƐi% )m`RDӇO4;X @4chC.4Fc|E-5 OA)R3N{o`aYUrBs-15s܏i%ZY+W;/J"u;DgI x9"rwh +Rʊ~KhR^44s7M֒kL%vOqT+ovlo\+pm\gw٧Ӡ9_8i-d) ĩ#CM# h8pU"w.WV:ʠǜOc #%^oFxEkl ȃ<6wyh[$fuq%_Cn \Ȫp#vMժd2 g jRZ,xrF8P<(F`~W/dCnǗtPf"'nLCeJ59&yۄe^OI0\^PKGd@2ʨ󌱇lW/rZ\~ldB (#o}HZswHo܆0%oE=pdK)d/gYR[+7! nIw8 MF'/`6-d9Wt{`>P)$w>]{ _JJ[|aJЪCWk΢gLs 1/U wwKOwZoYz8gʟ821ZYYK%UW`ߤlP`B?1e1 t߭c`jD]< j#Sk@_6&"|  135~j5jag+PCTo+LxI@UoW.0#6!$_ȧ`r{s{] + ݤ"Amөe~]i栛ox;Ģ)Ąv{ԒNˡʀ8z +D4>uqlGmt +ZбK`4ҳWL d)yZd\m:췋s0j +dɎat@әV$Kas)~$8+\[)K9+%?< $_nRnWQ-U*up4Š[i}H=`SUPa{0'QW^t>.9Nzlc [=ˆ]8D8"QL wek\/+w^8 ZLn}69α$uT[e/DjFhGČ3eWfTf!>3rn_&kJӍne mW%q*5sIsoVgoꡯ+EƿR7ll,#4~^$)Cȗ`P{R!0K?.&V퍗#fRG/0Q Spe,W4`W16 +Bo5@.{27qGiʣTjzpGrb`Bn] 5EP£*Ӝ-f?75ko2|pwleP iאI͒wsz;SfT`De/:M#,N C@Xrٓn_ʴM[H-f4#u/VNy\#x[6§4̷,.aI-D=(Ao.Q$-q 4rh!-i vfrؠ%/^ +)p*d'D_mӝ>lC~t/a$Go@ܞ+A9IcU!}pIG"RU)صJ@uІ`YϪCuJUm8*8>B +tk1@͠YlW3[>[6&pCKƣ܉f&N0]X?TpP Y,y簢)4Ubj"fhEWdjt_8 |\YNeԭ5쀬ы; 44Ye*C#JahT+vX{\6))rfESд5hsdU[YJ*L |og9w>!>C4?m/.q߉K|8R1!>ȱ:& Kkq h!ʅƝC4k<ídqaeX&Z;SRMsh><^.9٠3n5% +YLjQA4OV?r%Lxє*g0fLjl}Xl:D0_.4w-bm!xMᑘ]&(3CXjȃ;&t]ÈjqZDU7er!]i4yp;3UX@ae$ qvPԨ+ z,wK}YqYJ)vz!z{4_DI䃛0"Ɇuwۡ`c&96ûm cٮIkb~LP)ޚ^.k5jdK⒣x}=%c^*f(rH?g@&_M\lכ(Wr;En8zu*sWKkjVxYX9Y^ K"?gjDg% 2v0Zm/,P10kIm?~g⎌ȥӨ3 7pmĈVR\}>r> +endobj +107 0 obj +<< +/Length 9263 +/Length1 1495 +/Length2 7768 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMBXTI10 003.002 +%%Title: CMBXTI10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMBXTI10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMBXTI10 known{/CMBXTI10 findfont dup/UniqueID known{dup +/UniqueID get 5000771 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /FWTCDB+CMBXTI10 def +/FontBBox {-29 -250 1274 754 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBXTI10.) readonly def +/FullName (CMBXTI10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Bold) readonly def +/ItalicAngle -14.04 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 77 /M put +dup 97 /a put +dup 101 /e put +dup 105 /i put +dup 107 /k put +dup 109 /m put +dup 116 /t put +dup 50 /two put +readonly def +currentdict end +currentfile eexec +oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsPKyؙJG}_t9Ob1N;rIoF R q] s%ЄO"HVt7b6U)26=q-SʱEzͪk|+$hXz˖3{{c$rПpP.%]++@^+;@gK +wUNKF֡MӋJ . yZ-c*w`~r-w@BS|  + J`Ukj +֌O i3$Z"|u9a6s-SS:s$ db]\±6CF s[~6C̸{2 0~0 h:}e Օ]T|:rCF Wݞǰ\0J,,рhzdE5Úu@ ;Z/}o--mASDw)#zBy7*0/YJ Yd;Kݚe; кn%VeK_ݖ wA/J +> wg.+T]׺g&6r 6]{JŇ[l޴$Jv-ppd33r'(:9F Z7_cVn;lWɶu$ݗO0'Fi%o(7ǔKdZi]ɘZ`C>>$VؼF,E%o`fp'֬{⩅v$@A@]eԈ"BTQ*OQ)2:r@70' +^e &,JaR)x=*} zp$x^U*froIb?WQH7$B("O%;G\/4$(ru{jE%Y͞t'T>t*NZ-FQlr1jJA?9n3=Z(?t#/[^Yu*éQ'$J#9-lc85 o@ E(2+?8n){.OqBPb4(2gF^%"\FaFG ,(?R"w/Jo"%(mEC5zrk[ku}qUCol&7<|!E"UqZ KN:MjUkJ` lB6pV$Ѧ)K'ޫ/:N1P .f>Ԋw'#>}=+fHSg0wF@zNl`^ L[ժ85OO3;Htble4XF"㐬tt +5txڬStlG\8<%*9ٱ\'0/&%]9ɜ/"bzW7ś4.vLL3Cؒ$tؔ3H'-Mһ6Ϥ9w,yi' ͏)l{QCp$[Thݵz&)Rۿ(ڒVv\2f].g<.6ᖺ)NB̨RU"b,ސUwÿ!`dUӿnjPmÀE6XP!=` :Z BSY1CIᓽ)gF sIr>%8JưuD[7z!qZzަEzŊRlG_M^,򤪄RԔf=-:rỴx_ot-K,; xBh$(m!I)K "ÜfOq+ QA~BB3[iiFyښ^cE~eRpzZ]&7wdAд6h<sͷw-ad<l.<fL).'tT*w.n^YOzr0;oW*]Kf}QGB72vdMsGi!'J|+}[VYO;?2Mf}]0v(N:ZrZɇB|vl4x4|hirht8EV'pSjBzkf6d>P|1AA#ĤC{h.ӂ(PH@&hH/a :ko#;v9L3-]*xFA@4JUKAϼr/.gsIi:PК!d4*ЃL6|;S3uȣ[qk' Ƣ)l4+ $xP 7}w‚l6Gڒ)U-1ځ?'A6ޗoQK(ļ1E6˝A\wҟ@8W^*ڗLQM(:Fc W-l~bJ B1 ㆜~vrݳGvHb@,N.jT$D5葓J ~z#U^߸p =q5K[j5@Tnխ ._}m{gL$LjEU԰TN&H啷snr`7^1dW! bz݂z8{ׇj}\zU*GDEYs+)̪haQKE8iC4Sp{PK>T&cB +CTه C̚}`y8E4yK.G]=@/%sjYO>lrK\Wɗq;z3ݢ(ouݭ@E'evKw +$p@@x +,6rP(S4#0-8c<}C2A:ӺC]3ꪬpq|%QgdҤ n})N=WR)FxX`(F+[N´N:yRC_ن а@Gߠ/Eu ɚa4*B kڐhDC,3O$]f>5eJ٥4YqLlp8'N:ݶΒtAßYs5XCU Vr>s+-AՕƱ%%Eo'a Qưn22Hȵ\!_7% (^|VI٫~{gN vRSlC)'r1YjvtDwa|g6ɈM'8j(9]1V[FP}^@YYL JAD7m7jsjQnjA@2}מg#+=\y[ ͍ @*d_Wl6b@ٗ(/{MP1vXHZ)mZcz(#gDk\8:Dl{v7 $Zq˶?B#{z{TTC5&0;uo!Y:"@ϦCK9c~.Ղa()IBx ՚<|cqn7A](6ѻgwmNP/@~3;('{83W*CѴKE[wu؄qND0c#^Ͳ2qewNKZTs?x)xaV/T[xH~ovXu]z~'ՙi})%Bnh[6h{:Xߙ6s bJ/;-!=\dGOztMm\eu-r4j~5yy>cߛ-Je%#--tD`%:ɎLF㎹TAV+7сYlvr}ɮy53N„Ɍ.=}4Sm 7櫚+ݴLNQ# +l " +F tU1ȇߙ^n 3p|EDSng[2Ѣ,wÿɫ .氢Q< Qxrxe#UNP +d.c,n Ӟxcpg0%F+rIU)]d^[V-Q-c!ȨNq.{/(HH#W_W?֞t֤ȤYvgZ%ŰήGTO!moB +xh"fY BJO0yFSc1}A33\ +EW7m~'W | > R{Jg;ocŀ^/`wab,D2}I7BP)^OGT#sp ai\u!.5Y_yd'.eb1ޫ|]vPZ)Y=jXF^I;0ސ=qY[J;NYl F3<$X*d&z6136&&5;U7DECiց 8;a f[Ēss{N/b[Iv}IA FRR|돠_+J0,j=F!G,ּ~1|'AWv䭖ǩIVe殹- p8{cnNK7shy8ش`K^@L1ܢ!$$J yrOn6cSIJ:"8i@b`l`v*vO`r Cc-w, }VZk@$,ǶdT-Sv߳)j'trJH@^20~'ډ|sF YTh /u,t> +endobj +109 0 obj +<< +/Length 11493 +/Length1 1641 +/Length2 9852 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMMI10 003.002 +%%Title: CMMI10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMMI10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMMI10 known{/CMMI10 findfont dup/UniqueID known{dup +/UniqueID get 5087385 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /ZOBLSI+CMMI10 def +/FontBBox {-32 -250 1048 750 }readonly def +/PaintType 0 def +/FontInfo 10 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI10.) readonly def +/FullName (CMMI10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle -14.04 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +/ascent 750 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 68 /D put +dup 69 /E put +dup 73 /I put +dup 74 /J put +dup 75 /K put +dup 76 /L put +dup 77 /M put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 109 /m put +dup 110 /n put +dup 117 /u put +dup 118 /v put +dup 126 /vector put +readonly def +currentdict end +currentfile eexec +oc;jAw-<X2-Τ^tE_SKF1F^jNBq{y4-Fgbԓ{"WB:rP ?dgS%|'ؓw&F7JNL9VRtbT5'm\N"K< +wJv$tE;D4Vܢv{bG@dū)Nh]!(7h`f1zpBrd۞>sVÙiHޭkJKyuKI[Ƅ(,M=}%vf'E+)}f$l(W2[8hT>9X33 viU/Y{z4B&qnz|1/ɴcCzwm|x]Lmo}zm5o: 꿊."ĈdNo3 +vz N +pzP;Vҿg6Ǣ >,>OJ4mA0R3ֹ*{+9iuMO@h}-( Qȃ钏A)ӱ =.93g=[_bo_BVƂW"䶝aoZFsO)%d2wNH>D}۝Y1jZg1bJa|`hb)wYc[&0jX7yg +hS&}p-f^ a_ +l4zVnR_e@*z|Wi.9)ǙBSs3Ϗk,^bz˹a ˅4_B1+W2poDx>fH[]TEjRȊ~/+  l8zXܒpH!V܁d!;d4T5:,v#cK*;+zXz k Qw>aqb61IK&?e=f?ToRw: +e +/ y}tX"7qtf}є)8SRXyԍ/Cmo0%}pd{h4>^wD@eQdaidY^@?p i3;BŹAe "Kc_ + +>To=*y#p$Ua5Q2Z3:wXEk!XLǑU MlTHnyeUsAܜo3|] ]zN&GU1@./9;IFz$U/Klf6xq y +w}HH/*%bkYyoxжjxS\y)n?VJ+ka[zffI*[f=M3)%qO(\-Z!J +H)rQQ5TbL}/>5k=QwO75#:,U_LP?NCSMi > 3*j#WÝD8$|!F̊L;_ +dQJI$Y(mRqJ[~f9,6_1~w S,?1? Ayl(LtU m@*T9EWOg-ږHpaH"\z/EjV{11̃TVL5yWK|z|ڶtjBdV=z3TJ~[3`vpnrU MVW.Y-t虘鰭2z񑄥 +Kxq3å_t|W%0=E@.2^r:(H>ePݳ;ס}mW-MAzs`sb}s@_s/FOE«lh\G`ba8$(^U3qC"vj?Aӷ5.s:];H2?lcP!e-t1//ǑbK @3\SN:8'gU?)Rb%o>6 ~) O +Xw5/"|k(e$/JG 0Mo#hpT%-R(>* Ҩ25h|I.5u`QPւ)`QQǶ(45^ބM߯o5G*`?RFM Àgpfn51dK[L +yq B$@'6!W +ΐEI6,IT$yهHpiVch]l&ߡF:O$#Ȋ!D:%)aMx"_L?d*:02]7x(4p P8*.v5sb<]LQ0*K+@>e.-oӏCƀl\~R+$voDgya7s)ck1+.Ƚ#@cL ij;NCB|(ɯIL40Ƽ&bDT3C<= Dg}@?GԿ#Ӵ?H]K mv%M^=QdP A%}u$Ȑv3L -" +'![暰-,*5&Vۮ1=B1vW|P:؎c)»c/Leh:g)Vl<.IJ +T|PqQvi>-<+cVDܽp`JȭVkuZܦר|RIu"_!a~L x0Cc-bpCAʤ0% [D =$XKu&W(b ncg^PdK>R]5d_a*@,TB]'/-G.Ǟx%~dž"52WWa>3/V #F,_z|i1=IUj^[b'HԺrRvѨYuI%@G1`: Zwb!|^WnW^krZxPI~XY̓qY >3u}_l1iG}Z1BR@W7z^CUpBZ\-ѯÆas&\XA\`{YܻQ v0q˽뷚w۩Ƀ6U̿%}JDA_r؅ ]w疠^K݅V:ӝϏ2ӏ|jilzaxOaK<}qo[5sI\ !R y I w˜Qz0l; ۠gYnkϜ}H4'#l&1ҩc!+P)T}!:#,5 0h>ώ? 1E]R%{7zvպ2' ' =.8ƬdDЖÊ9(qo%ͯAv0Og{jEAOG,C[4h֪ LЂ13JYfA2{TMH)w?}+'Mc5 `L8h`V5 \)A yBYC$S;яjtiV!Ψ"p<NoZ*2]LV +̚ !涃oplz`(SL0͏<(0.O4\SaSԗ;*X>mGŻX3XR^^#1ó&3W֘@,`|-g`^pQηQ^ O(s$q;,; i@g toVdF4 s3()&oa2IPZtoKmBމa?0küUڴB L|_&hU:Ҏ͊NQγVA8= #96u0@PN߅yƆeRvWKx }h%ҁ}ުP!z‘ӧ|}9<$5;Ѳ:;ylʗO]Qv-2yhfԨs\\hd#ըtyri"Zu:!xā/p~K.,<̷W|XUƆ/al='a*ZAU(bl~.P |V0E }Sd{"x峝pngթ(U0c1r{twqxK1%DE/z*oz e7^YDBD+AI\Cj߰B@әZ[&(vi,K| \cGVpz9pR%A`A ^9>~Z0x<N?3<ذ!Z` +v@zIER3 L'7-E?6tS>zuux1ɱ,3o"U<5ߠ-`sXZq=9*0 ,KOMRו.~338quV Igko.  *l7[fh +4\߆@bջuv3,qޥqX>(웻5(hU Č>-ygaV66 +>#(;#2+O h5eSa?>[լJ6h zi.C\\Ɯa\B Kh%xy%7A0UXcs}1>)mQnЌ s?Tѯdm/U.-ogOF乣HogO*k(i4K|~o!Vsl14k~.Rũل؍Zß[CNU$8HP}*(8ZV=v@}!M(- #a4sA(T ˦9(D>t-rbݢJ=% LԄ UI_P= a +endstream +endobj +110 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/A/B/C/D/E/I/J/K/L/M/a/b/c/m/n/u/v/vector) +/Descent -194 +/Flags 4 +/FontBBox [ -32 -250 1048 750 ] +/FontFile 109 0 R +/FontName /ZOBLSI+CMMI10 +/ItalicAngle -14 +/StemV 72 +/XHeight 431 +>> +endobj +111 0 obj +<< +/Length 19858 +/Length1 2204 +/Length2 17654 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR10 003.002 +%%Title: CMR10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR10 known{/CMR10 findfont dup/UniqueID known{dup +/UniqueID get 5000793 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /XGGYUK+CMR10 def +/FontBBox {-40 -250 1009 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR10.) readonly def +/FullName (CMR10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 68 /D put +dup 69 /E put +dup 70 /F put +dup 71 /G put +dup 73 /I put +dup 75 /K put +dup 76 /L put +dup 78 /N put +dup 80 /P put +dup 82 /R put +dup 84 /T put +dup 86 /V put +dup 88 /X put +dup 90 /Z put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 58 /colon put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 61 /equal put +dup 102 /f put +dup 12 /fi put +dup 53 /five put +dup 52 /four put +dup 103 /g put +dup 104 /h put +dup 45 /hyphen put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 49 /one put +dup 112 /p put +dup 46 /period put +dup 43 /plus put +dup 113 /q put +dup 114 /r put +dup 115 /s put +dup 59 /semicolon put +dup 55 /seven put +dup 54 /six put +dup 47 /slash put +dup 116 /t put +dup 51 /three put +dup 50 /two put +dup 117 /u put +dup 118 /v put +dup 122 /z put +dup 48 /zero put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{x< ,-.2iRnñvپ1䠕 '䓱_r"O_t3kefBݼVfj9ҳ Yh뀸{q-ɷ}W??gw1*Eh[:tWeI,v8a<{B100Z85|}Nlw]6Nbh3E`(Eޏ'Q;eԃ/.DyL5$4IG׮Ɋ\yj9.VU5Q!-赁B9dB^oVwBɎT7RsOGA b#TBv!mWT=w,ID%'MK<|]D@2O( ݎ%#_ɷVBST#z!${l\4ĸ ;5l&!〚=(fUwAeB#30>H 'L+֓jz@=s\<=\Y$D?U 6xGQnǫi%֔! +L2[)!fXc<'ȲRP3E!-:'AJ.IJCJJt&{76 +#VH/Fgw"F5wS$|oQ<Η `~<10|;,zɴ% +oߠx0sW1Fx gmxVyѝ"]#z~pv Ũ.rB9$nYCC1td@#8kNԋK;ԓlF( ،N;d*<Ʀs9ZQ@It%[)7&hn Y'a¶T'Xrߙ/n_nJL (@ +К +N{KF^kbn~`L]aU{vLܺ41$rmAsnZ*=sob@{y !CC{c.WZ0n bpgsPd$-\ԛ&L27JBs/g(xQ,t>[8͓GsŸ:R$9]6&my)ivjWLRB^RBalx_Y:5M/j١!}`D&WȪQX$HߧtI .Y@nr_n܁ OtAN-L n?_^_g~Ə;`KB6eĶ +>lQp)/;S' ^:tJj@xE(0G;κQqǔkT'; ÃDHjsrxܖ +.>֯kl;&#<ښe)fFz`Ƿ?Ic@SH&<evn8F\V3aA!yy:+c!xbM։/f}3ߖ˦"G'fMsXWU}Yĵ^ %j!HOH͎_;臲Jv]# +$'Ch?5u-G:zHZ\%Uv z^By%NT⸶3=X?mJ-3iH@ܐfσkR.v'm.'SDly7 YCm^Gu5_G1t/ +41n_D>}p+fg9h$]@M`^ҹGK;5wIrqA3fAYiuYrD:dR At -,)aɺh9[ԧuS9KTKaX$wgɓO[xqǃyI(j5LIc}|h$zDUwY+Z:ϤŜ1le`u@|܈贚^6/y`a [Ί`ҾEwa ziLa}jʰ@}xWns0n*{l?Zz>8p-L&ȣK`> `%`ݿs?v˻^\*QNbf+ۼބo" ٧U zgga䎐uFљ<Xyݸ*g4?X2]4H͢^qLeoU~ 7>)ƤHnA7"{DRj)ע~eVDJ|X}ѧCrTA fP};"ӼK#ΑTF\^ԓ ; |R D\Ă Hu6QИ'Q3b;x#3S:jb%tJ/>ʡOrVށx]>)]l5o[F;,N&'i\NQIH?T:@FN SX0<)hW4fFDh.سT)^S-nw}, ZNEC Y Rez3\ +tY5`F~_xU|'XLJG@U6I \>:V_>զ9*I0}ӵ\"{3UzuFf٤Pߨ)E8Uw)gq:dj#hq so -@ +KG7"|QЇ Zzs|}LմS:fmA3S 2=[dؓJ\ܳc|tj1ƛArѮJv,K| ϕVސ +Q[s"=ôG#[71]'GA-u&_]nOSI*!GL{0^()Ɛظ]:1Y] c5@>rPq#fܳF6hZȀ,֯nрKD„-׸ݩTB<^x (va;{bQt[ eIBţnloi1>MoWM_v"h-ǰ-uh|]R[d"cWGcr"2P&yĔ$֬^S fx'$TQGUm/*BK-2"jܸf'Om:M|b]$~+ȏ>Ɏbtv2څ l-P4"Q5n$micnO԰P05aZrFhd]=Xcٓk dOBM@P.KX+QmtgD#/uyھRܸ(u׼΢MG oTgs]؆ٷ;*G R1)ٝ4 >odݿR{uxz4DXF9Tx:Rjpq"F\eL6j`H$rʹoW&N +cEawmGeZeX+TB_ǃ?oAZ;u.[T{lN]"?[t +VH_@{lj;KߑHŁ?hKY2MFUw^z6nf5^9뛅SS iw׳ʰg6Q.8zZZ72o Q.c]ƃ I1PiYg*z_H LWG +q3Rmv*GHp] ~\4#{+姕8X> B|L2}-sc~k;9W;[VZ)&a4c7}.8z+G ;$+Ω_]5{hL=ow VH Ay,`2uÆd-㥵4WΌ%n EguM7ԥ[jI}|di8&:ARA_;.lX*:׃nyj"⚛ܳMdCF|a͉G%izY mޅOi T%D@$KQIGeOVNF2VdA!d=ۭBR ]$~ 'ԑ+ez]|lAnm% |J;qIoh9I@N}N_M,bx#[n,7lIB֠3SĀiI<*1̗fE1=MJO@; z҃; X}ǁSţ!Mv7KT~ڎK?cj-x;GQOU4@tt U^3!>d5IwaүYPU$ q .uHR5g}_?|qLu@3.']:zx0r54r?Y0zmKyHiy#J7Qs1i?B+.{Kz+ebkjOdU9bb}0 < +{TB|n~Z&.Hu-LZ22; *8P6w,;3V=NQ϶-u9 ?;Kx W{ZalSxYC!OԈ@ +Ď5^{zۆ^iIɜ_CsO?cA'9)< \b[h%ٮp iBNҿ̓t&$0x} ,G&q}K3,}#0_GHsr_5ż@$B;&cdNݴ=>C}/YQF<A2[-!)ҏtLN) +X6\R|L|1v=fL? jX +![ЇU&iuТDj}'6 B7~@@Lt2_.Y~ada/ѷ\at8'!$@--ja@!:.gnf +d=N1fTVBSk`d{ܾOoS)qV%cNŠȔ;?9JnT噟B]lD0;\ZMؓ8V`kN0pQ+<8a_j'`(6rX7n0&|@|kS܊NP(ܣai>^4v sxm;[8@QAoN}H61(ZC,[R?_ c4dZXtR0E2H)R3ZͱI4ur`W+[s.[Ikdӆ&bœj$[ _AFΒU'ainfC6jWf{ DRVl/|D7/R\Iv{C t( M*)#MW!5=ArDv-bcPP'~ܿlIGF{+, :5}N%cqG܆*WPж}-_> AhHՈF7ulon>"3Q$ ,igi],)\т +<&6?>yKdLW114X rCDtCN{\;8^{ޜ\'I2Z4rʻ1"J;_]M~ QVʩrC5=.vUBN]i5Bw+@mE};Rd*Pc#1)U8J/A@7?4%;ȽoIx;| <%ڐa'f~P ɷd$Glm5Wå%4ɾ!&Σ vư@6ۈX=<0_PnCkX2YajŭE `>nқ0lcHҡVQ\Ή. +K e5_7 Za$W$W]*jd`ktv*^}ZWKʫ/~/@ˠ Aa%pAGw=-<NU?FO;jA`*C |,+7Hn.jER2 V|;>cee^˼Pf,9#nZ~xE'$|ϚnGyQI-!&iƓq0eA&G-M 2}vC-}+<;ڳ_Î?ay,-Zt%"MKI\ڐ'2?"S$"eᾞ]@$ΐU8̀Uxֺ =|Pyp;_5nSg\jr7O7J(G+;86_"-1մNcѸd6,lұM͆>;Bo7s7L;;21I&FX`gerhCqBy24яS_%,#;';d +WEm},)še/;)ѻ6wkd֙ #>g') Zypz$'Wl${{ׂ](HXj4I.E2],znw7}pIј^3|) q %GSW?3]* +>J*(sPeXc&v1'U2i'ңACvxuEtX8KّKYC8˸jRj&<׸l8oAjIPpN`@.!,^W2ΕO{{STa@\3]Y@e2l'UAS׀qjNkp(acN#dW`>yK3E9{dĽEA=ybw#-?\)sbHZ&^Z&|Ď=FiRaoRDDPa{71_~=ФShoSs;WUm:S5 +j_}p%ߵ2`K.}y) i*;bsхX<{b1: /@XѨ}&p5UI*$o&`l: ++'`uwqg(6'sL,(ژ{P nkv#ir"! z袑MCԥvM%.@;9f s^*XbXPʓpG{HGGJ1/בvҸ$rXSimV7\T~iYWxD2؅P1^)T ru]$K45LrlSβM+YY#j5(0uR7SP(pr6"2/+ވy"tH +URJP8yCu \؀ Gσ>WvB7 Glm'Mgv:k=ib]tǜ9m.F(([|=mXYNwV]ߛm S5̬9rYYWy햧vegl^f7kKQBo_h{}]6N.$"/󉗪l;۳Bli'=z&nM98"7`!gS`#sYP/d9: +1>;}'٠vPW9<qX㬽aTF_Ҟdzeo5l!&4PDE#ۺ8LS> JIHv<.&6 C\뽥Q=R\љYj惼XVL9T ^jtF_$4^N˃cX6DskH 1-'-ԋ0jv iJN.1bGiIT3Zp@1$UvC&Z̕tݲfblU,y֦$7Gff߲X.: 1.3  L.7Rm@ZZ}AwYђ/ĘyV2!ʄ2:5/;u?eeP:n$x}l-ҫK0Tco#|g-u9bC{yx'nj)/ΦSCXtO3c|OMݍ~Ѿp,GhP'b?Ig by;cRy~ #9c~¦*A]ynkfI +rue&@7&=J6m1&$M2vA鉙 zWwlkXg:+Uz&yIQx4NK}* ;6v'sZ hzLE;H +S^7mQAat|lnT ̑'hCoɆ;pOMUBX:XNFˢ PM)2L/ FGt`k}pn L㕣Oq ?mV] +BGBUYX3Je2ɊBC2yASLEpIAܠlJ2r+`߲A[2`Řsj|z)H~Ee8CX}xuV^^coeL/*6T!5Gj_Hk^2 EdŽ(SȺ&)ȾNH?ݮq +ٖhPc, l(Jqh+zJ8|U]&dQT}+\ +6diX ,UhbC? Xdc~z0svq4;¨JKy86u]7@JvnA11JI\W.˼L mųΞڻ$Z58̖ +@.5J+N]VnԆ97 ӷYv*} ~!bWۿo!ލi JAD9/o -t@YB_F)~"C6+SS}[ܟB g,$}}A!G@7v+/H"?m{yiƦJE(ǁG|Kv:@FLsfXލ[4b9 .or-o\u#_FWQ$=HS&[r*"^DY}D{k%9GO|]?،i(J!bg F,H?EF +- r4E "rc`߳D$2Dd4Z =]F⛺EK_lrm`)_MkFw%ΰsl=ƺ +Cph +.T~JPV*[3ql t!9: Ud +-2|CR-RܧwsbY4m!0 L.Sx.G#gS5*y^u@J}Ad:Y撅OUD_Ұ֣GSzZ*CL8;=;X#yk5fWD +_5vj:4Ê~Ć[V$otyI jf÷M+*6)oKt> ]rdtQ>6­VJPkL'uZ@}d+O*D5Z`7e>s0qWzE8{<1HUFDx;Y̖K+z`3 <^l Ŝ2_BwO6RwpD>vyo427ik+D.}YH~!\,l{n$T  *Z*B(0_DMcdƇ]=C|)#*ђ_a#iYe![QɕѭmpZ63jWxfZ`k0H Wԯpѫg*V0̔ mX`$WZm*Bz\⑜aɕ-Aqbq5máܣrpG{qM3 .#%D_܀vGkR0vY- .FeWm̢{Z^*AsTfX3!hؼ 0R"i=릕U1!wkg{GCc*8x2?rbjnހPC0"rGʐZn󻟾"ӝq< j7Nei"N~$`=A!fgy50ٶ,$37Q +~'}bM>xUu +So(eԃ&kӕzi=x+0M8.9@-&q +ObxYFg”"ˣC_yFbix$h:6fY5@QI<[:0{>(rK9|2CCg4 Cl)ںKgU?AeT//DT~8Yc%祔Mޜr_i%DpN,K `,-{7ܥ& ٢[6@ͬ/BMn^xצu!w'#iT6G̖Pv? -.;ȭ5߇g[+ g2Q퇒*f\YcM7 ו8" cATpɶbh\9KiۊJ?jg _*{u4R>{BW-|#m`XO.h.Lw5|ʷ^0o_hmn,eFqQOy.^$sBkR|ħ[]`7 +f.[vɻjocsQn6<ҳax/(MZl垜ThF_6LZ5kga^yC`4JϹuBO{Շvi`.j\7kمF |^jӁDLEO] 7zFD'?443HwаsYP1GӘEoWSP8P c-bSFk,^ËܩI@X틛3 ƞ +yҢbs=C5jϮO|%[PND3,vǼ#2G<8 J0rQǥQc"f׎jo7L4@Ύ^欯yZ +>R(3nx7zB.EG)0,5{[mtbE??)v[;b<\ܼA,e<[nc출B<0Op^z.}jpigP=7& [##ݙA^kmU_0> +endobj +113 0 obj +<< +/Length 13103 +/Length1 1830 +/Length2 11273 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR12 003.002 +%%Title: CMR12 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR12. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR12 known{/CMR12 findfont dup/UniqueID known{dup +/UniqueID get 5000794 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /RLYLLI+CMR12 def +/FontBBox {-34 -251 988 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR12.) readonly def +/FullName (CMR12) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 65 /A put +dup 66 /B put +dup 68 /D put +dup 71 /G put +dup 76 /L put +dup 77 /M put +dup 83 /S put +dup 86 /V put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 46 /period put +dup 114 /r put +dup 116 /t put +dup 50 /two put +dup 117 /u put +dup 122 /z put +dup 48 /zero put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl75R 9z(X*Rhn5&g\c9`EgwT!xIJz҈v*lcoƿsdm^%=谺D +u9#3P _] )w +UA8 HuG:DJ(W;]-0<.gSB NlZOLӡ5^9:K*|F +{É ڇE,q>j0^x떲Q'X酉i ;yZPt>p1SV}:ުad0h{JA)Θ[ U=y5pRU&0'-8tIAx*̣$!gRHS;RVU?!lM٬2gO.T7wϓ)?CߠVb7^kJ;c +N* ٍG|Ucͮߢɨl6h6[ 2ߵПZvUlP|%)VǸm׫=&a +Js_̲y|{R6ĴʗB7jIȘ2a% @74 @4(.= `h'p+xvX}?G3D:^ӟ*&4prx5e^hk@S_̎Cl^^}ڶ-q9@e @|wMrc9P(TkruY@MnuW`%?Q8wG3g; dlo 2 Uu6C֋%YT'Rjo1Mn}L+:O/`@ӟӎ4J +B $YaհH Ag0IQ<;v|<6G@tqX>ɏpI%(Xv7}19lAKڮ6]+l_6'3`k*T (]65R-[(EAJ!3s:e*Aܣ ZEsNьmcЪ..> ˆ>Q&x̹znkCfqW-ٕ6qo*p+.gjlZrht?3:2ty&F!w^9vӐy*'ImtӮ:dN#LaRx!d!R *9SDdkb$Vdž^t4}h5eHNrHI,O6'l +NO#xa OTV-(!JZyX !]z@. 5-DL5_rHqg/r秂gͯP%x d꿖xAcŘʺϡYd(*:od`AMPb-nt]#lg&eb5d*OE 5 UThlv9_)$pC+(M ռPVOptcC`ՠ0IJ85YA('针1J ) =n?Epaq\')_4}KY+d>^cV60EZt,)ie Oӟ5ni8B5*Ƅxn@EDP>e$I^na Y>k#w?p͓t!_1 dr{d ,@]+ضCzn{0RUK,&Ձ\ƭТ1LB#Jp0 XJK7ZLD"afI1?jt'8:/(IGʵ6 <+r xj=9zI!ƶreGNXNpA4Us]b;g-L:/ڮpaؖ:1xǔ`V&EE?c CۗǙ77-`$Mv|&sČ 6X!g#ndχ[w䄁n(dَoo_o2<ݻ  xMI^ +[$dDTZ jķi|O.E9wbSsBz֚ȴ!2g6bcrۑW1A"nX14nKOC-NA=9g5=W^x(xڞEt8}NIDʄ!"]}FET2mRi< r3a0!fS&W{V_ ħ/Wc + 15y8/ V㯧٧򁂝*^F}#? P掸-~m~j𔜒FvV K.\'YƎZ|9&fr7ᶀQ~n- L5Q/[[ORue>G zjP˯,jW灔Rڮu7q jml +3!9ri `u8!5$cUUO;~}ۨd>̖ glUov+"Q%z=$Uu<J6RGʴ̇vm%û]=PC}_2k& ;eG7גI0Qf/ e!S|2F;֐n3:Gj)~kM'AR>CM^}]dLBu(w& GJ*ԾS0|CxoiNK@N@f2ްir7%x478˷턀Ȣ5k~:Dwp";jA `SR\Y.wNCky~uH#(8N7 v/I g;0Mf{ؒF3 SwHnp}D0yafA3?E.RB偗cU|O+U$r=هn5`̕,/^r;5?9>QNGZigp={_ș0H>(˴uWӥz|T̴VIMf*ߣ6c^֟}@_ϷW&)#׀+$ɐ2i_Bzv`]C]c+老ь*M0\omV +,T[a'rھٷ=+.t_,'P)Чr*4Wp$ U{-тB qڠ +a`O|qd3ú$/|MR-` ;6M|şg~Y u[l(oԁglEwք+pdڳXlDXuG b2Me *eiRXx8AEnS\RyEƒjT91Pr]T|u0zWMS=nkčeԍ,AFk/b\vI QDksh>`aP(~j%P> +GWlL?ݑ&hu&A$%9c\P "G(" z+"ڸVH1GڟHxYTҫs-pSCq: +99xec]R{zC?yOS.+T#``" kk2A>&^Rz=f)gjAݓ'xbBPd<^Ҏ,!ávm J!*5ҋ.5(K>++4y@B[Y -`͑!-|RVMr6 d$jwe(%.`. t +`n1h nzeR#nmOنwwOu*NkxcV9Hq82ɤ3՛.S+@&\]bWߡ!Nޥpa0fln +ED pCr:Q=̝W8{mCUط;Qtߪjƚ|YQ4C<ZeoDs8HMH3jﻭ|p8=q?Ҽ=EEe>6K}f2wa]a>>jFɷ +s V5ˤ;*nb$Svh-8yː=isr(/ e8'VZL078L )EMрKD„&#SX ,}6kbbx.[醄Ӗ0I8a {g HV$告$jJer= cOa[Sk)rάC +T~d^ъEg4pkRm$1"o]~(}POi˶8=Xbڇ*g&J3[O%w ДyRG9c&ڈB8z_:.;с9 vJ\sl}OQ9@6e#e!K[5j2.t9hF"؀Q`orE2@iWl4QBZB9caS2nO@[T 17;̺_U-c HmlyM?hI[@򋛃v4{'lpk72Q9EA/H)Ja7}¸z]Uf{$:'R 8¢VkAڃ]m,P|.Sɬ},1LPa`3&:3 3FD5۟mўy 4otXGWثc M}\8=q-A5xo-Fmԍ}jw\}9 S T6@Ĩ^yBӾgV.B%"FHuXL3@KuYb[< /o&\/eZj OocI5@G/ܵ40;}+>,cA +?~S0f2BxEmD (A0ڱ)rdZڗ-`Nt=ue8\wg{S :4B-q(iuB{vJ3" MY:8.YrOL5˒ ƃ O42#ĜvEQ2'K碤_# do^;<Zr+.a-ȯ)OH@ ʴZ#g4p%@)N#=hq|y^ 4٧}ظo O.cGA';" p^7ù*2F) ϨeBwrIFB,EtDqi/U + nF| +&}%- 5/s?QIHL}̢JZ~s#YS.#'c*ٰHW4֏VPVi'amo Ey6c& f?r=Am1v8jP+l"n"Z'8J9?IC1j,H o-wQ!& Ik-oɳP؜8Ěmcqt8?t҉]oRg\gYtU5u%H6t1_gdwL B#!-J@n~sOΰ?tr1\0,sO]7uj+۔lA|J6yaz/2$E-v+Ϯp螔d{ؠmpۓӒDÝmP(iФqejlQ6#\}h9~i`\Q4jg0j3R͈RBn[e6cZJBMh;F:8<\aI}R.dik@YJ3o[/jdDӁ;äC!-T>Jq&IwTXs;sPx})'/89Ub sxqǶn7g-L[Gq$RRDzNcelTq3xVsOD)Xͽ-q| -HS;e Nn:as_zU[mK KeʽS/΄?H^ w$Z@<9[f]`G{"MD-#:*6b4E! @wd3M5y{5CYڭ#i3#@nl|ަ ek܂=&a`$>dhPvHjƜO{+J +vXً6!Zn%Fas|MИaaWBD$QDH) nIP7ȱJ !ĵzudRڟT uΌk +^ւ[TBAidP8v~G<|KS^OW9j]0FVЌd]7( Uܻ 2!0a4w^(PbbPCg.!h_LH֣5w)I7˗ZnI}.ga1%P_ewGoڋd D4遽@qڳp$B?p=ő d?Ej󌷩//mXcɾ+Yʘ!*>)3{n^!Q0e!xఐR$!#RCac~Y2]U%`[pA7<~a./JQ\rmE[,XE,){,uEn PhD[~Mw6^h t6ʇ3jј"Gt$s;;Cr0[U]n[RZ\w'#p7ӑ!/m'e,/r4P/wX k8zcZ~GI3%^ =8l6f5BWhe$nZ63X߿XI\І+[ ,uHbT6D-@B"6Gb*>K\h;eF˺hoOM1)?XM@C^Ov.xaso` +cL/Mduq.$@7g9"әgB]iا?R4AHm()qPX,`SuǕy{#ցRNu₲7I_Cve'iw ++J-W6ިy[oܳNQd xvnT>pp"ɄȶYe&.MU 1O/j.+Y4uJoc2IQ!R5JX1x䧞v +4gPH:@rOn ̭ObH4jNy?VX$5ľ^m %Om(fDj`;P؀q 6267@aٱ>QӔ|WMF&/m~& 7rn|w:tQ4D~qr%+ɇzdPe'A=_OXذG5YȤY٭w a+Q ,p< 0Վ(Je]Vg?J`*Y\ݍ LGF?1`M2() KgK-H&]-SL5kǕ؏l%cY=3^Ӫ2h{6/y[,rKaDCD:b3rEڦwZqf:CLz%Umqڎů-bgtf:\EGN,H*2e"ióNH 2 fŌIr"n/ ?LT^HS&\Tԅa%NyJ;jox* uЈ{תMfxg^T=F77Mxҩ!Sw25(%ʡ״$FTUa|SO(5~j#>-^@'Ao18In/VP,Ȭ>u LGGړI@'8KBm55h㽕A#DCaw޾Ģ)c{/om6:@ 큲f.@A1Q*IpҒqd< 4\;T@ SmV&Jn*"*e!<0i4ڽRs<6UtZU؛%G./+qo>Z'R ~67vh:@n$v6ήNaBJmMQ/2.+Ygl9eY p4qw0]x1DgG>X#QtY22R9@3 p<#cg|:JJ:$ ,)do|b'^:s.^ګm\Ǩg[yWa<--d<*@˫!> +endobj +115 0 obj +<< +/Length 11217 +/Length1 1721 +/Length2 9496 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR17 003.002 +%%Title: CMR17 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR17. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR17 known{/CMR17 findfont dup/UniqueID known{dup +/UniqueID get 5000795 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /DMPNDY+CMR17 def +/FontBBox {-33 -250 945 749 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR17.) readonly def +/FullName (CMR17) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 76 /L put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 124 /emdash put +dup 103 /g put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 49 /one put +dup 46 /period put +dup 114 /r put +dup 116 /t put +dup 50 /two put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{.2J] +J!(^{jKD&xe}zFCWYGx=mQo.cZ|uJѧib 0޹r +(:VZ},uxSؤgEʼnr8BYYP?GڢP7ݛ>`_;mR&W4*xhҼ4Iwp ʒ 9~@c]]Jˎ= 4 +wiH 2NaEdfsD-{y^QmwGE : +|:^Fz_Iwf@%)fn]}dяBڳin3Hj;tuANS}^{8a%Ϭ_K_3AaD;]^Ĉ>kU|=o_uzz!ؽ:`2;PD3@|tHt]kU@7f3p\MDE[k-ZmCH1@FO> T']0ڵ9R _GAɻwWYTƃt!|h+*,9Xhy5c3%h7j,OxӇܘTuھKQQ}'XIUp~ ֕ҺopMvnWdq-ԌuyǛ˓ʀ,IFk; R5H\|o"ǀ*ƃW0KDT ڄGTՃk7-OfB)UCfE8. IW0{GԦ BͅBRp#hK_߇M|UDޙՋ**Pxmr8/XT7RB/u wX2~WV ^hDieT;[1AIKQ1ނbViR~9#'\ pꬑJ55gz7gGHC(ڴ.-H<8DJZbسGxO&Y=A yeV^Fm܉=k.D(04@X=3c8˴k"gF֠cwz-\'*VR3Z'uQKMd +b̙9usTYhIm]d< 4=uX=Ro`ޝV`$/>zb7ٞ'jI,$io4¾.2)@W'NU%;ʊڒ+0=E)*)P[g=l*SwYlQWy*e) 2i1L~`LJ\o~CjKh~ҐmpFP`NƐٰA+1A ~Av/M ]^/i"Wj +oU<c줵X1/ݡ/FiȶMw5_Yтqco޿jbRѻ`"}]xS'2y&n2tjQS%JCI}LS[hK蓨4(Lꭋ."70ljVψҲeI,xN7VxݸցrNjokA ?Rot8 i!jp+䷿.<Q +0R=I5[Um2v/[XIvQ-^.)=\gPy) * ?[g%Гۋ" ~ lۭzL:scE=y +|ZO+*Ce_#>u}99h9Q`^Y7)pT`|3Uv6@SS*BelЂs8l }qF @9өvUP; y.fV1 +%Wp{0p +d$@":*O0JeڨNQkXlYy?پMv-^Ie-??V lG["C;$t(Qҥ +5TfcD9IBӢ[/CjO?$!oq{,ݞl yDv8!$f2ҋZby;!0yIWR5_־2>6{̂0]&V~YdNH v v>(ϭU%+[ſ8D-nU1GL ȩFN?'c?_[v cwT;zjXig*GnikU@Zi2펯ppܬ`٭=KBn9Md 6^beXy9#mEKe_C ß-('BގoZu#7stKã+ȗ)F):@يx%wkcA>՗ +R~9CSM9JH<GOU4jdd8D\Pi3:PN72gŭR5lq?{o:m& ؘu !p_?cvX, ~jiޠ<,]U|>BSEw߂=$jU'0yDálj`]XxT +̻lZ>i(N=(w{1aYuPi~5L$|3y=ȽvZEOgIfX2/q9ke(dw*?QcDa' S 0NC?N~ (EdF<y]ZiL, kAM ؁Qk 9LA@Jv, D$_xSz/$wŗEYlG~h"璲VK[UU;P61 㹣vʷ4p"uK(nh{ebI`C">>S5' ´V3nkg`jsh%LOQtRY nugP4\RM#%~#ŋO킣BZ^[ `iBڑo7Tƒߏ$qE ,)b;a'8nm*# +mhbkS.zI/=^arz`66nC_”+=Rm1eb}nFIs>u LgnWPCNvߝltyB:N@kln\K}+xn +z\}㏢O[FչW)4iSq?s"{-W+#Em[^ +͈%^K SK<eNM>WQmvW#Gn͛jRmh&MF\̕Q(S%> ǖs7nԚc.mj猊yE*HF_5a.^^Hu(! 48DF +)pߢz Ա9mEG U* F'>5/Ya0-)\uЇyk&KrS4ĎSϸ=^P3qFڏN=k|\f:/ߴؘ]+{A M,W"#O(Bk?1,Ԙ ߁Jֻfn)zhS5ػũ-[Q>PV晴 +<l_}@cޕ?|Pni8WQw 9 dkY0yhbO}pI;!cC((@r>9yӂ,oE}٤Ӟ X$=rϨKGq5jkQ?~w}3;0 CN Xd%7!́$>$ZA9}oB 3+VT0ky0l"I_>玦#7b4 "NaCt8Y0WsoP}wE`GJ>iS"KnG9>{-Qo^]#(PG1q߈Ii888ބ:' ϲ&_+`RT%#>DLW*IIQ c|YZFЏ#«L_.\jvR졚ʾrf+eܳw. Ee`{TG1ocJigX +lȣ8c;%|@ڟ!DmXJ` BQD!h#Hz' A48_ =BUTHIո'@KǁQX!*vVZ[2.UчÓ.3h}w=ߥ +^[7zɁ18 +fQ*JO!7/R0 ؄hy;Y%`z'NIDXE|_.EԵ]n80ESGݦVO=WX yjs1oM64줓].ǧ d9M(B7rkwNO}6|ۨߘ`W8Adԩ3Tk-jcM`*/*b +5FEȚAl +M(#ETY9W!;54ސ29cJ.KLɗd j<=۟i}b@&Aoѫbcj_HAFGg}[i4m}ފ#Tơp{ +$pZjI:[!i7/AlYHwv7N03c׍M(ZW%,^DE?¿oaG*F6xW(w)L46wm %5;n\ QAYf2-@">*71c_vmY # jú!b`Zܭrž8Z<6%⧐y .R~&ۊ'6L&U'`#駺"nvo)$ <3|eo͝|Jo9^^UTG1HJƷJG.u݄$ӏ(9X a@y1Cte$`ZjqO. Aj'0m.,<b+7f{'g%-cjMr>!^WĮg-qm(^ }CcR̐b*BQFO4&\/R*uaY{Ŵ֞b8AE`(tE? +dXoȟX&}Ѝz>B)Y(Ŗ d:jbvl-R3 ydH1[b ]##YoV0Y؅Ϝ-q]xO.A$/Qiˇ4e aj!ٷ]5RiZ#g[u)$ԑi ي}d!a|Y0[:s>6~1G?1.g~ /㕡Ѹ;ynI2D!D;½D'wi Y~joUІ=PG[}3 IX(zw{y0&E\2V4V-40uu{ VhDіwe$h%'WR ,Ώ*g5-rNLm;5Pӂ~TBiN'Z +pjȅ9?)M hdJɈ1VMaV@Y> OdJp]0F{wMJ:r#^%񍚽2Os=)p<=*U*D<ɨ~Dy'\:Rj뮹B#b{t*ԴQ…n@~mY<*gs=3׀=*]@s$2/eW6DDZ=+7cFRRcNb +[{,Gq>AVZUv|DW5}zdBi"zH>LJ!ig|Hٛ7wq7v潳n5I7RW#8m|`lp15ͦ@fԎCI[ ]r'_<WO3 +;o#Yy0F\Yi3'!GA_`_zV_dfat|0g'Bg7:3U22bC' $z'i::~v%B${-]|iY;MqVFsΏ@ݷ bʊRSp€[.7>\{FQ80k1bD9̄fʼnV1F(âH lVl96m|QN8Y\@]P\"Zq8)7_Dvݥ{'.Gyj&n +:PƱg=es'd=ZD#P7.ʰ,}me!K]v9MiW$BQ~hGP b5]%tlڨ}FOQ\! ++` Ke60J8 +'O1AM^VvZC 4 +>څt/:Mn#o-OȬ iގy ieiLE`̡{_2G-kjсN1ҧ i1\vV3j`-@&o6 >&^z)d;084c4+N%]lH#(/}?O4a3=,gŹVA`o?:)h";J3Nw'E=PCX9oĢZ il [S>QF 6+Iv?ڷlšSQ'v;aMm6$bC^sD> UCޜޤ +m{Ζ5d&DDOSaiFҎc.+*g&,'[itm\VS=}_ӨV"hv6kp_mIZRr|[pCI`@Z>&t8؊M ^K͉\ &Y@\5bEnf;&li@3p=Ꚑ+Ebo)#uրA00bi:d@ɮە?OKu}tݩvXicLLc_~ufJh(i8sc3ޢ3: !{Ȩ2,0hJ~ mP _뇀)34@!`io +#ֶW +endstream +endobj +116 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/L/a/b/c/caron/comma/d/e/emdash/g/i/j/k/l/m/n/o/one/period/r/t/two/v/z) +/Descent -195 +/Flags 4 +/FontBBox [ -33 -250 945 749 ] +/FontFile 115 0 R +/FontName /DMPNDY+CMR17 +/ItalicAngle 0 +/StemV 53 +/XHeight 430 +>> +endobj +117 0 obj +<< +/Length 7469 +/Length1 1373 +/Length2 6096 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR6 003.002 +%%Title: CMR6 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR6. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR6 known{/CMR6 findfont dup/UniqueID known{dup +/UniqueID get 5000789 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /XTJZVU+CMR6 def +/FontBBox {-20 -250 1193 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR6.) readonly def +/FullName (CMR6) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 49 /one put +dup 50 /two put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl7Ӧ!b^Ѵ-E>3t;G<;l: OSS*O?9-w yg8LsYtָE qHp0>ˇ +,qۊq mZD]7ʺOk-G_\SyGLN8g2Q}:ä|C/ɑl ѓčC2`Lu3D*Cǩ5љsLUkmH FqTfZ$|2xlڮOuxgG/|:&Nn$JEQyރ4>py'3ji.ǦX9~b0 ub;F8(PFY|DS%y=gn!QZИOi歨H,a7`_Z<gZeߟ՟q/~j'[E1 wg,Kom>M8;r CXVkg-/R@|lbC/zK_i,'1Q7^3EӪ9$Zdy]ltr=>K%a1\(t.EzW(#MN̑6~*E;ֿCa^1y5ݿ'hyf +s.8ϰ5ciG$5g0KTlp@>]fW7QGVn~˟=]Z`*~7 "ڌcw0U{Yn._xIPYQ]`MN!Xw:R;t+]gZɅ oswQU)8aA^av>xƍH_n~}StG7 K72fCi0Gm1u?4&]ژdFpmUhӲ$w\Jd8+SE=XnV%?ү֟G[4D)ҏ}<)%pD%qrkoX(&Ƕc<^ԺO;FIRCK-fjz hs+*U-\(=D[d)@%t)#ْMٗA=5N$1Qkh|)Zc׼=}6^w'eufH p!x."s!SpزvNȗy8~%_mD8ǸrɳhwWu_6[= +V]Y2?% +)/KR|e=b_0Sʖ531ؿmx> ՘OX![ؠ`vf|}R 4"~)uv E$U\W;댞K0 6$֥拐Pk?yy4<˒q=CG$ @d~A1Q8A-|߉b1`zj ۦZ\.r ~s"b]Ry&rD0hLS)z6M="'OOQk {2+$}<໒W` 1=',hkƏCfE5F]Ћynh|d/(~&PB9Cx9 + %,9OKLvH,>Ҏ,6"+DƸrhL<]A+6JJ9ۿ2jQ}bF[z'p&S*U$ؖa`RI=՞dv_\WB_5n[&UXiNcuοrvI]VI߮\S"Ivs qYpP]5||rOډccB0KV|נ40Cajps8A軝Y4-L ͯi FV{%xE_ *`LOU +ǔKGs|mJ%5ݯdAv<jா-W:,=BYme"r5tŧ>,wxI_ esxRtQeh; -[Gf҄(`*/I{w4iOa"č\%{-+`8@;dZxW'gA$vq%=@ Py_w駾{p6LMmM# +R +Y$Р쭀|6|噐ȏGI`fkqa}@tZ&'=3bIgU5eA},):ichZ:l҂ 2W#30rM$a ImvO", +:(%CMi@\[ +t=UMn[B_2_@nu?L,DWUx=u}#m6xA x^QZ+% *{ϊշr RH [*Yy0iǭ0abP7y־pvkTTR+%7!fF gGP2?S%|b%N&t:>EOYJJJZBH-!~yp̊Ҭ㠄֯d z/3j*(JP$'AT˪x"b4~4]Xպ撾99T<ԟʛKȟ9[I{P>5Ruc&(0ܪv;{3x}_%.beW2eSxD8o{ۻ}wn,WPz;+RtVX= \uBU(Cvw?H jt~DxtӃEP[x/2)+ഷʱx46IHgoE'nb\lLhcb/K}kVD u6#+9oi(gy5lS{ ZQ 0dpWg-Lbpy\z(gR6eKG=9U2ݧCH opr'FS+ U$κ h; I~Ζ:oDUEFyo;0?mP>"#Ǖ T5J!*S@M7#8&-yn95GTɄV ++WS[Om3Pmd,+ST졆kyR<$ ݀ 2a&=CԠN 97#~MT?BzR͹Qz]sTP@P G- R9Mz)3MHxV'.(s;|_OT՞X9`G $PW٤eY=fE%ԤOpdDmz]֥zK+xIVk +w:Mm4YV#⺸M]*Ǣף9t5#rm'Eeo$Κ+z8n/=?njѳ((,O2w <6Fnc1!AzVRIز+Tko9:W\v.yA5gf]?j6)xy!N5g,:2F%uE`Bxw(ݯɆ&^͂NV۞AB k+&@'јsƒ_;q(_:.:)[ ?bt.N|Pm}/u#7A"U)T\ZxH ro}o2Xa/vD3kU[+,뫲,O 4%߇$H'űC/ |,v=}醜Cy`6YP*r8%{o4c1OSB!dA6]W%gcTޟd>M2^Nj[N@*Z;#hhK7#2;Cݶ2 wC"[yDJ,#b‰ZV*7 xߘK;Дyv96I)I" $!/8o(PyRUS`<!{Ge+(CuAqlTcu[ j=E՟2C4%2+drQ/;ڑ}C`@|&cſ1IO}5& !v,+M1pp_㯎0iP͕񇐸gZ1:~i(l=kqa.1':;)]4,6uxcLAa^!L"u +ɜ~=C3[ .18jITOQ +Qy(E*>'߇߃5 h V`,vr3TT{3O_<΄D+ h3ʂpSV#u:>f`"_Bon!wN y/C5rb?7@?+V5خ +B6oYq^5Zp r,B^:NJ07Aϊߧrէ}E4zAWr%`HpZp={o.{#'uMTÕ[gI{dLAN }be/F? A]buvqݓ[3<4MBTparN[0O4\ۤ识BoƸF >'dnxN#ik_Aޛճs#;w͑2|ڜB8"f;GZ@ +?ZHu&mٚ< DVn>* ך< "™3`Â"0rؕ|,lQNeP0xݟ=ϺJ9mX-G.؀Ƭ 8i +'h=,0V Px8kA8(w}Bׅj)ȇ:x,=NqQT]2]~T/_J:x>`!e ֐p:s*#$p9ý<\Ϲ3ePB[Z89V:AJ@Ͷl@RՁ;hܜ :Snt(&#ސ K X,G +.~e/ +endstream +endobj +118 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/one/two) +/Descent -194 +/Flags 4 +/FontBBox [ -20 -250 1193 750 ] +/FontFile 117 0 R +/FontName /XTJZVU+CMR6 +/ItalicAngle 0 +/StemV 83 +/XHeight 431 +>> +endobj +119 0 obj +<< +/Length 7907 +/Length1 1405 +/Length2 6502 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR7 003.002 +%%Title: CMR7 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR7. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR7 known{/CMR7 findfont dup/UniqueID known{dup +/UniqueID get 5000790 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /ZRYLLV+CMR7 def +/FontBBox {-27 -250 1122 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR7.) readonly def +/FullName (CMR7) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 65 /A put +dup 49 /one put +dup 51 /three put +dup 50 /two put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{ޣ\u3]G~ 7G!/ Q FM~f/m*i("!i +K5> ţ d,J^,]^ +z* +khjOwq k&,_?Ɉc"n?W)Ջ kÖ投`Z/S *?c|Wgoʮbi8hesQiɺ4)FvP Vؐpik`j`EU)oW jBNfPTa_$ uDd3QBZSfyu4 螨x঺N<1Xk7I>%} +'T)~$I%qPI#-MVxkx@޼ۜZJ6h=hAڰ:#obv0e\¡0cPBz{f=d1G'{1@dD~yXrDOZE.ϐ=(%^/2V)(mfR20`މTLm/QL zKMmͥ +^vA +oEGxvXIxAW>xCª5!w^ ĥv(4,-eӻ?/R?Dqeq-xE $ܘ*3oᮘY+0{+N.>ψ'=IJ +f]̇C"spn21 {3=Ej4ZN2 +K~*w?#9; +A)Py 7}^muF2x~m64&G?r\|6L)ew¦ØB+rBc۞3v +!:0{uL +âAj}{q3W^B'(Yhn0WRS?u Zin=ٽڠǘ){s=m\ul^GhN@(s x6bM'*'6?nA{,1{E.RxmN4k(wl30M\Er +pty o> +{a_S +[D.tIEӽ ]fVՓj7Va_a"-{#- +:bO[)HAXE뻔Ug2zOqq" rI~$>s0Y@Ȩ5{I>y炲oCA2=B?"R +g_,~q.E| noϗT6;i?Xb4}teL1~&LdZ}2W.4.^%*D|Z?7W1 * DD?P_toKL'c ߇mS>-#| ;[R1ڢ` +@@onh.VF+w3ݟ)RX#9sz4X"#bwL{cFNj'ƌQԑt2Tn~. |_ߐk(Fm +n8*Y3".g~3SBج!͗s8 +݆ iD7D#oEMP00pn̋E\ٮ+7_ QzRĉ iDoB=|n$2bVÛWRu^]72# +x7SE5OU:?oq W\qPt<hR,v7EbZ5=>Û֜#hSRA>2O?l"q(DOuk4_}Ǟ# `N0N_CB<=gKO1/a!!ԓ(`J˭9.R˨y1jlnL`f~ͪuJjwD19K^W7L(ҿkH8rC/_! 1gg` bu VdoT_E$ LZCbΏ)#ue*<m}}<Z1]7n=6c~#`oM`IGCcIR(f 1?>+YKCZ%s)pxHODRhL⩩? +F,@۷l-%xWuLT7a5 +b=oюca +rPYqf3UeQ6ju! tYL,#Ev8?@<m?ĸӿY7^U0M`X,oz N]CSpbӿ\{2,1ߣT&JRCu& /D#eΓ|}J-ozOYTC]i/ K^QaCi{;ᤩ`; +@WCk2YHG$JԓO>K+ +F. %KWWZ ucQRT1 >r튌;FG֧':ũdXn|I]ͨxq/1siN$bppa5DC$6lg*4/*$Mmd$$0el7aa (w3\\XAȿ4`]|v21) d6.7FkC/1J5deGñqvTߞN|@\%eC_>$X8cB'f{ nQZNr Rn}R1Bz _Мך-Ekjmnk"5j/2~bE9#FmY۩~|NDpTT6Z%H ctjz3\ */09R[Ƣ3/c4֪K^ 3b%B@$Md$8(sPWcY:2N&q4$ +VYvHS Gr +?6>s{&@ Xz #xHH+D%vZ~WO?V33N FӁ9 +[" "rme{3L7gdzR`QK8\ڕf0h <8 y +9\PD^1L1̄\$CFblMQz.Iۯ8fv -%ڞOBTVHY+pJ}S +ɲmpJ3Yas ݟ*SQYLBP_[HWBQgf `~[x/yp +vi >zxup^ľ@#uw<4b,m*}p…N{fE@fNg.`d"ŵr sr45S-U_x`F#忐{+BUTK$GÚ t3#;8d TpLxcXdl!vFwאHњmA[w0\&CPx#5]^%U3z*g5PG%E)QG"0)zA=W J]QI7r:s>Wv Z8yey5HE <+lWJ"W}39oWv"o9aض8^>QL%@_\^b"Ap6@mVy +`0="nʉ?6* /zOMpGfT3ۘ!L3~r,}CN''HN<#`h-p?{/h:â3di|/*HEnz\5lѕ:;ܩ'$"X^Xˋ#HUдsĤ"خGrIdFΤ +endstream +endobj +120 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/A/one/three/two) +/Descent -194 +/Flags 4 +/FontBBox [ -27 -250 1122 750 ] +/FontFile 119 0 R +/FontName /ZRYLLV+CMR7 +/ItalicAngle 0 +/StemV 79 +/XHeight 431 +>> +endobj +121 0 obj +<< +/Length 13328 +/Length1 1851 +/Length2 11477 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR8 003.002 +%%Title: CMR8 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR8. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR8 known{/CMR8 findfont dup/UniqueID known{dup +/UniqueID get 5000791 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /TPJKYX+CMR8 def +/FontBBox {-36 -250 1070 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR8.) readonly def +/FullName (CMR8) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 67 /C put +dup 68 /D put +dup 70 /F put +dup 73 /I put +dup 76 /L put +dup 80 /P put +dup 84 /T put +dup 86 /V put +dup 88 /X put +dup 90 /Z put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 103 /g put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 46 /period put +dup 114 /r put +dup 115 /s put +dup 47 /slash put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl7_gѳs6;P}tx,IvJ3Yʫ] +=~Hrl;H :(xP/PL͍SI'sb~|PpNcOAͧBV")Th^Cx(Ry,s)+Hߋ;m*?>H"%N;8'bGZÕbd ^i$iaesF)l:}3X + Mv%GN,Ҧ/~`Љ"JO238ڐi -]IGcf7Ԁ2ڣ}T  @ &x߳8h +{ga5Lw'~=OLcgPv9F˛z%e|O/bV K ^Ć8ԇ<)M<m;疑}Od1]ZSmPf4Ժ)}MPg2вl1gFޢp V}{<[5iJOY>5XZ$157~Zڕ-UDm?3δ쩄'V+RGpyDHvx{pcL1w¾ FMNg(S ?)?;@ṂBN߬GXDio n PSSXD[kg[tU^?f27#xUým`jck$u:RمiEUա<.^Y&ۆo9s> û +8jzIC%oOn8Rg#;D2(J+|Gk9ڲփey/9+,-b3w9W7} z᣹өUyTpt_24a6s!O #i׌$޳\Apr$w5\plYn1upd[lk!lRv4_x_$V[HZKr\wu%_F ^ =ԝȆCf%-۷R>Qt@2 )~zx6mXFVCEOxJ +jFmh)XɽЇ8{u c*;e?blV|@-jAf9Vb 8Tdj4!VerZvZ,eV҆?0 +ZWGvl~و[5rL}qTvmjCbM:gÇ VOiڪ#|ym-4-, fFxWpsX!6q-M'ŏ"1,sxɵISĜV"^j73EvV(T^K-k?Ӓ.;d{)pBh+4uU *:m;<%s!- +8X+p&4jO^1TpvD^ x$+flx7=1S6>rMz 40] XC 2ƺ_s5uD^'? jeq (ӓQEuf%x(m"B (brqYqu]ΫHgp7:NQAdYQk(|_S/8aV%'ov"U2!kh5Q?)投g&J$,jS]&1Fq**X*ilSfN{qZ '@dnl{"KDŚ 4tTY9X}4heQ l_7@ZUĩ/Ac*A\4;N{45L=!V5. }rKqS*'R=:tF_}OV-F=;*ZGoe +ED,A$ CÚI9:Fω/%`,miSs1M>l搣Z՟_tJqǙJkuBy#+1HLabL 剙 Wb])Qjfnpht;\܌8:,{=JE2[WD{D7ܻ9'Jޞ#11j:n+G,,ls3݂FITHH`v=%.ayKyMBn!Sukyv"5Dz +֧'4Q| &֨ӷRc3k&ӼJ 4m [[h|]5 +9Jȍ +0g_ +wn{QAnGgIH]E oV值4:(\TYs7HAe{Ю?VN,pPTlΟ fg;I?"BDyв LM> +E,4c| +}=xbK2^^WUAV7xQ~e#EJf/5R2 jn@FԚI&d|+.;b^ɺN(S k< q/3?׏ƚ~sďS}V7+v8kܩ!ȿ}x =7Z}ǜ]c!j~?}&bXqiE3xmΏZ6զE7C+:Kꉓ~FdNg1Gκ%ׁۃ1ýwCl檬q1FQf1Ż9\@¼(ň^Eг%( fJz^ ' R 2͏aǃYֆZZgd U9/|VϽT_&$_=1zGGx /"Fo<,*#Yo:a&jCȯťuK`uŽ /uwaEt #l!} j؇'*eRh-.h;hMoجcx(iw N̸u T=6^ V$[f@[sk4kJ@/SOnYJ\"mz{1*JKْ|(nwCָ 4&j_G.Yb[J87*"&!Ν&${G?`lê);&|vMÞ\SSELok.N&@`S9eϋci n "*z(N(`(j>C1*CɚIbtrjcWqt?[Ii56߫AښIJ'{-Al$h;m#Q5dd0u3+CcZы|1B]; T}݁{*!O^5 ;6Iˑm-x@ʏs[2 NCb+i+Ɍnu}jlD=_}ٹ*13?9r5\ʥB24"F#KLE*Bmw c,ɰh,<#fx%+L54yR#Ss+j%rqJH엮`S|'a!7[Z&.BvK94{~ͯ'ElB9 6gŠnS&}FL5r1}X蝻?;HǯPO*E4%_Qy. +1}ށ;\SlKE@%ŤQ"%VD󩉬y!;0j`.(9d !0;/[ċ>#qod]O>=z-)dgWl|nLղ FEHқ\~l'҄u6UeGBnKM̉OeӁV?hoR5y?ݙvĸZ@'+my5@:pqU`y +2~&@ʹNt;=ΰ oY+KۛFtz/zRk]z,l93& ^ y&\ +v+vXuC2I~gs="(pQ"RQSq1x̦,1fɈ[G]x&͕k5E' zFm]mT{ςh1Z(vtO:kТ4oP~Ԣ 豟l;ݳ1`yI@!fLE6<+w/_+XNVLTI?Yuk6rga tq=M=?u4~h7ajGw֖ˣՙb8|7_Aǵ2s>@rk&$n·nٿ`ϼdKDNf60ƀ4#&649߮XGOUSV9'&F#U@VreN)tX{bn̷|C'Ob^Jp$:2}osre 3ꁈ#R@D eܾ-찮-#<<\-8ŷ:Ws}w Ӧ\|Jy:,xf~X0O @xLcfġ9Pj'7a3A }~P]T#ZWo T?2#[=UN3JMNS_{/,ӛkGZ$FG[B{S[VUii^l>9OC45ֹVqY@{$9oz@:6Oeb90i.fZH车$[ƾl0/f /@?BˆQ!Mђŀ +GX̺fNPiqJbb"ݣv/Qh/0i>h̒O iơwL/"B ǫH 4K_ r:ݡ`ќ nFW0+I4K3v#(2Gq]X8 k. gn߷!Hjl+@ OEb/ntpS)kI'i.OeQ[kգU)hRU؇9w_H,@^>hG9I`\4"wtS_vՆ,tk+y#2^lh rJ+T1LF4>ϒ_!^y@Sp)״TvIƲblfPxKYAݙihҿ[ϪGDZ2اpl.2@gv8}Qx鄒CZy50ǜ^UnM )D4|M,ff +pt οJD`͔0F1c5b4d bQ6p~es2*()G)L8edGؿ3E0@ꤹ/crSu$zS2zNekzDŽO+yr\/T1QwGxt6H5}3:CuXJ6[\bYNH7EA'0mp6AI Թ:FoAi'7G4G{YjL%à>2y%_g;MB^ш ڎz ^紤@fCz/3S@w`7)Qg^QÜ4f)XO[h_sYi+ UHKۮH&VЂ2_4X'RjG`8[m^ŀnej+;C-|pܥ!q7أ +2^HL*!AjӭA8" {\W)x +2k~_Rl`mVLaf8fg{9=͚-f>?mrkdΡIzuHa̤K@c#,z$Xu϶!"M4dOcGԧYbแQ ]J.Ϡ ep (wnD|]J´+XSL ++`]I9K_dnEd|lqU$ظ%ioMzƵuhԚ +u7?+cS,R!t-+=|~92*%-i^r"1r,d/c Ұ&9"iH!Y#puԁ Wl,Nd>uFHG$ޙ MN[z`@YU,@:Ab"~.m|1/[OxB?pKZ+s6V:Cٛ4?excТ9PƪNDHˮY oA~6D}Q$AP\GoZ RƱƝirs^-[Ж[l#5hBqyn{iEV]7{!` CUFL巜&G,3VµyMUylHmd)b|;5x#HTc;,vz!Ϧ]E.&C.h[_ltz;̈[%̨6YzgZ4G2Z@1 @0+~um`uH.j*,… JJ[Wjd8hb>鼔&y?2# BsZIDE᩽W:͡vMYTG]& #@kdH65jX%@Ң܇RA5nx|)9]Lm59ͤQT}[KisZS3L=-z&H赤ǁ!4N!v2AI.@QtJi1o\*\s$}=5ʥ1Z 9=C'3[/%O[9R53+RM\ bHOX#-ߗE r n* +{1{Dcs:[{x};bZZ3V r<[evie\KlPHb;M.V_KyD cYU@ ќ M<'gc9%`[i0aX=$cs" y ^wDk7RJ=%gwXRfUfHnʸ$N~REm35Ů Zw'NE\X^3NxdaW<Ŀd`DxR[uCj+(DE7wk^>C>-M7 7_s ]uy#J@{*ݯ|k/F>׫9_1O$^@CA-XTȼR4Np$e00K=kCq^'af /N8&^øx>SgTsu`Tl{e >N+bH "Ql|QiIqvqۼzHј;zDWc 5RiWrh!#hLnY ɉ=Wwi%/*b +\``w z#p)ǐR ef^;uxN;E<#ԇ|V =` Dg;T ALJ~c>#-܉sE}yգSQJ}>i<[h; ^(/׫?ڽ'Ka.~.*Nƽ¡ \6dh.i3krV;LE%K" sN6ŚY' +SQ*i 咸aw؝R iK2vO̒^]Jh?[R\dnSveYT\" +g!1Yg +_6ªG,R@M3M ++G~uZYt ?p bh$\7찁+1:>2 O $<ȦHbAib2ɚP[R%˜ -X0!ozUXoD`;̑>V=Keh grc=xGCgWsMtXsmc^֧hLQ +endstream +endobj +122 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/C/D/F/I/L/P/T/V/X/Z/a/b/c/caron/comma/d/e/g/i/j/k/l/m/n/o/p/period/r/s/slash/t/u/v/z) +/Descent -194 +/Flags 4 +/FontBBox [ -36 -250 1070 750 ] +/FontFile 121 0 R +/FontName /TPJKYX+CMR8 +/ItalicAngle 0 +/StemV 76 +/XHeight 431 +>> +endobj +123 0 obj +<< +/Length 13138 +/Length1 1736 +/Length2 11402 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR9 003.002 +%%Title: CMR9 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR9. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR9 known{/CMR9 findfont dup/UniqueID known{dup +/UniqueID get 5000792 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /SJNHCC+CMR9 def +/FontBBox {-39 -250 1036 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR9.) readonly def +/FullName (CMR9) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 75 /K put +dup 84 /T put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 103 /g put +dup 104 /h put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 46 /period put +dup 114 /r put +dup 115 /s put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{x< ,-.2iRnñvپ1䠕 '䓱_r"O_t3kefBݼVfj9ҳ 7! wX: 3Jwͤ푘IKjfWI.kvCW_5gWZWO~]!K"x؉ruJԥ?F6Jq>B^f'<2bSz>/kaɾP"jt}[#[p__ @Y!ɹsu~/8MeC2+{x$*|܆k)D 3CҊUDw/Õъ7uS2v΁ ~ytKd"f!Zυ?.ǥTmBlHEU[ZF`Qy)`gdeFIrU-J~xg4KX { 7$O@M?\(L⩎z%KNJ`ī}W6ĠAP6N錛"7`ܓuN +SX@*i,xIۜ*O/" +t1;$l% p#B+}ڀ'ƱRS^P˵aF(~#ۿB(I&@}-:{yA$m:'}ӧj^\ĺ>segz!,ܵ/u-9u}eIypӶs$dNQ/9<` _`m;4uacxr!LB Cu"KDPoѼczضgӅj=>1Im9!`Z&USYQoeȲ ׿ 0G> ?:. Ndơ]U5=:-z6g&QZI[)( Q ^6GB϶)Cflg=У +p#E뎶o%iiT8v,%&{6"I"Pu>Ul Ҧn}㪣ujyH^^?"8AÆKh_Wq(Wi4s_޾"/b,zVgl8_GjjxCFTģW"1v&V@}B8Wt9fggs Km }x[!.ZCgA۬<9vD(dh9,oK4Ѐ?Xe^E>miQ>L +|(2>!*'%芡N 7Ԣp> Wr1 N{L:+>+͖:U)h|NS&V<C.ꬼVݦmwҧG06RY H&9g>1iWI?ƗųȦ2•Y;yӂgo٧ji]WQy_6K1_@H{`xx +_gg\It5m%e|0/3Tizwq}ʖNIAeG ='XC8o]?ew(m*>[G9贰c.b7Eم}S(EJ~DRbx `bn* GoB)7!SԦ`o ?9h{Fk9B +L1yo(QG$0װ]3#,OJ8|~"Oog(ĻxCg픻4}Pe &ol0' %Y>VNo؋lj=;xĭ3)!GtfJ](2{)ir18/dYY1AgqHus'3;퐑˞RNt(n> +" +O`AoxbE ҚO(JݸtGhacb-iwS9϶](?##ͬ7ۆDh,,#X=@c 4?q>!7'CR :p\(rGVIʵh3̓1_ +տӄQsbv +tü$>y=-|犬DHB//gm?SFOEn7UߎUfݢ׼Exmþ_DRan*=vߕ2teX|uj 5Θ*{txbl&V֥ !Qz>!)x[5&\#@ag$5$h;mUx)|Rpf *YF˕Hs- +*=,$4zkbkv?JTEz0X_gS"TݿEԓfY S`9ڳs pc<ʨ?Dс] BG?8""t9ES)Bx:oafD&_<( 7NL'%_1T69ypF>\'Cx~LN)VޔO0"A \ũwyzN"3+aYI"" [Uw4Gׇ(ឳد4drچڨa*R+d,wVm~A)|Iy@ +A%0nje<3D]=KԪZ})Bi#ycJ&kusgWE[Rw;)TFY߁΃0u, LTˎ!l6p(RJ&4ҧ·zD(8eWEO (bHN9I2qM"Jp߳ȉLx91( j{x^P@XgS*HXbe&hZ_OVQ#J;Ĭ3q6KXQf M<PdhJ iJ@YoJ fڃAyuVi#84&D:dO&FB+0M\5bDl[Wj>Ju(RܨЗŇM;UFߵػ6ct(Qm})mh i1rn)Qشξw/{I3;4gs,dQs k_S+y>{DK3-z'C,b!HfYLA~q0.f2nco,g5r#|m05oJpHCou{ P1} i&T k!kZeni08amql!2ŧYs}ELDGS*)@N85)C,wҚ4=6"Mzt]AJ)]Lr*InC^Q!IQVZc2ՐU;BFbFկ8nXIAL ^*‚o.\SYIuyXs? 1Џ:GdqN$JgnLs{BqY]jfYBr뎊i5pSCq: +99xec]R{zC?yOS.+T#`J**Or: 1-Ga"FXb2OF+< PpT)Y(aVK +Zѡ̍@ݾO:r^:M9s q@*DY_<Ib>Ce[@Ч]%Ȁ#K7Rjk2A>&^Rz=f)gjAݓ'xbBPd<^Ҏ,!ávm J!*5ҋ.5(K>++4y@B[Y -`͑!-|RVMr6 d$jwe(%.`. t +`n1h nzeR#nmOنwwOu*NkxcV9Hq82ɤ3՛.S+@&\]bWߡ!Nޥpa0fln +ED pCr:Q=̝W8{mCUط;Qtߪjƚ|YQ4C<ZeoD>소V@R6I+jiM׍.;}Rց0!3+B04OqߤyDpk~rVUlF=~K,܏ Єʳre!3wr |fж|l24"le֙'IN,5LkME(9hRGM'W vnvq7R7nmpXr8&kfLSHJoe4+7' #l~zpIɀ=*k8? 15<ۜq_g]]FE5I /j_RMFsv3Fl5\sI\GCq{{* Yr*+'e8%7?`~wu9rYޛ'PdwƱ.=v힗su}]?~.ʙvj/g|ځ9hmag18&Q)ZYxqxgJq#_V{"^vуVWh6R^0CxxLJ`$dCbu;V,8;X zS4;AI#`!wwl[z~7pR/>(кɄ3ZʪOu?(땉aڣ) ڎwuE&]m'@tAtP.޳${nA~?*~>C7^9 %5g5v{~0?:XwELFM]ўX|JCe&Mׁ<̅ٱ+JmPAE$Zp햾7d}[<ƓѭC" q|߳1z O>;5tQ\)3l`ĞDtbjbQ NURPKltѱ![6MW/MH9L|f3+X+H;eg0GkO)M_ *ψ'wj (ţT++O`UrAiڡ ǹlzR9xr reiƞd_$|Cmci՚k̞-&%h +!7Uz;)y}`XRsv^%$|\2o&OkkRs!? &Ti~S"I)o0'%aҳ++ke-9FBց+ "R J!>dm`'c`$_;E&#/!X$+[UZ6 ΓOqh#v\/<>) +aLI\l4\ I@#ť+W:tugX|^{iH3hq=o:#eLĠ 7{t V&.k$?u*U8f͹hs_(k%7n5S +anR[%n +JO+e R_Wǯ +Lf픟H(4!zgބv2>Sv'&=@Z*mYC%i J6Oci.N,\j`s Jh^K!_{}5KK;U0{ 5i}ux1@"u +z1- +_%ū5 +z'Ɇ'ל}ɨXP儌6uj=T>H9CD1/T,W, ͱh*7X6DAF7y<tvc2mhAk;G5xZSi=aCN7b&kg.Š ]|4 yCBx0q'N,R4Uw|Xyi.yV֊5`Qj$UP7鍊{K97@Hw|n#7S둍7p!jw:d3p*1&(b䩋texm _OVq 92A~ 5mAp%z`UmJ<8:?DŎC,,V"'1c\gr? :hIvFk_Vv +2%(^!8?65!> 1 x2e!͎}9fEtz"*TU,]L8 j +thӦuA-xvB;n<2He 69:*n.iG\x -Z +;_Yy=x-RR4EsuG\Y h50 KO9yV\`_[3JUQב)`ϮX:2{oR$&j)Fa8H C5nI]=*pK0#(7|oB:Pᵢ]:sTl) +UUB[W8_믑gEʸx:-m1’G"F ԉq t{y捶'܈t7؍bk}IbUVSٴe|{7$Cdx@Y6.Bo.|?x|8$;`S4~dcz:0hV{"ZEoFo=c]T4rdQMf(IR=uG˧v~F5}iA:M{oHބý6?n)ص9>s#2GӞ5쨘e@b9e9nvOhO쿭1|f|{TS8t>78Ana-,"I8+ qN86g"Ryu; f quz rIp:6QL( gp +R*QQ}C7w]i$; AO=,~&A +HߠRdop;-IU5*wN/* +Ǜ2%>(qd$ƢS2xfZ+r^5Jk1/sP܄!{X1U[&_z_\vRn;#xIM7:Xξ1ZA}XS#y![;wxŹ+Im^UѥA lC8(WPꁯϋWvφ-&8e3.!mV+PI ۮ3-U,&jK_Ħq]BJ taɋv|ҤAXFr>@ #mVa1ǥ\Nz9 cTüV3X8B uA٬_+[2G:rp*zحlF؊Nh19\-{兹?:~Ogh]݆niʷ'QK)CUA:y-5 e.5!fHΩ=2DRv3WClXh)AYV]u[FpTqw%hEc@;&3KmzkR\__vUXa #3_cAʤ1@;s{Ō 5?)ʋv%K*zhlbF|Rdɓ+nKUULٕ79LyN/ % q_Plpa(?-!G|fj +{HmiN.:zJSͽf!'!wUpnz=\ i0kЦ1OT$w}Gr7^_(BYǏ-.Lv@cxdfdBO0 Z,,?nb$|H2 >n8~Xӎ}*H.)}ڝQǎ~H8qw< +o1|"PG>frtė-P, +ue2_-!O +v2]Eg.[K,!2.\ n&e,*3Ci( `9y2 Ym#X ԗ7"8'IN5pL&I>. 9!ћFoHR(91Y'ڬ* )d4ۣ@},;]ZKN{Gq!lOyQ6U}ɕ"R&-Cͧarc0@>!^uXi`=ĝ)o\5~|D|s^:5.J': =oe.Gvwv$BLʝY/|GPi>Ru/$B\*niOKO+.]ㄯꣷu\-?Q.N4Uy{%YVi(c9`D8h ѯ{%LH*62L5l_sM5y@qKP?L_<*NSJS> +endobj +125 0 obj +<< +/Length 7527 +/Length1 1419 +/Length2 6108 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMSY10 003.002 +%%Title: CMSY10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMSY10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMSY10 known{/CMSY10 findfont dup/UniqueID known{dup +/UniqueID get 5096651 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /OAQJWM+CMSY10 def +/FontBBox {-29 -960 1116 775 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSY10.) readonly def +/FullName (CMSY10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle -14.04 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 33 /arrowright put +dup 106 /bar put +dup 0 /minus put +readonly def +currentdict end +currentfile eexec +oc;jAw-ᾉYň5t&נ{hLGqB`d˗Pة|*x\ޖHtEB-gedog7Q`[['W73sZ9 m !tAY!$tY\r[uTIUiBy[Ȝŗ3Kï6zJ!˒Js&B5C"m&`7Ӣƻ3ugNC O~̶uo5=_T/ h,$B%dʘ3l MoYLڶ~3^`12]=l8B6PlpfW< %PIN!ju#,.iXnȼ‡o$ҁXꑷI5V*E6tKo_)RPG;Z@9"V3TTLN Y:Akڬ6̠==80~DQ Q^br/2^KZh`N'Jt4iBYҁ7ޟBU_~\fXAZl_ZƎý'xHbG:"l5CU[aLrf 1[;4p^NpqBD '؅93M&9{ VD 8 aе2n.hf +l?K[$Gp/JzcF8vP3/XO6yAo~]WqDMY4ߧY̢XPEL2_2 oH{ +1x'u|o WNRE홹&lF\LRh1Fb}+l C] (vfo+fM}l?c*ވ"^R]miKOҎ!I ӲR_tW;u@(#t*̧ U{|Q}a3Fl8xtHWA­;!V CVov?³;=>,㧫\"RvRCإQDh +@_,˜kbflAIP^wٚdIHzk(c3xɁSUPIf{KΩs Y/v[L%O@HdjyTõVmqgC9zTC/t~Řo*9rIojUKxj. ,+b1ֲ IlDLQZ3P-no'$F zg!Ј*oj-Nͥͭo8KwQgݍp*1^.֊ LV~m la ]%."`_QipŎs5y.Xͮ)Td1Kk̊jn0zGqaWQ%zJX3tIy0ľ.#[#D#EԂppF*ޘvrOdn7n f9*X:>Ǽ:*Lf͍9&aj;+{0 )AgðK*XKV'zZA) n TÙLJ^Di[:s<ܸ2!U|#5VfUqP}|=G5O|Ps9}* ++gpA,,=|j25Cɂ7 ./Fɹ0tRẊ."we hPempJo@▁_A3QBV~$9Ej= +]? {w_53Fgӿ4BAq41Pf ,Sş6r[v` xG$.} ̔ϾF͙c=f!*˽./wĉR8(@ًz c@N&Imݣ>X!me@lW"VCH8kՑŨj]n3X>Jz?D=Nbn {qbY(>"8*苾ky3o H Dw] d{EʥËw.$Vhtzk$kk$]4cfCW@3plQQ晉b/pTqF8_AnQmK{&z;<տm[i7뜣'*qXTnt<Ռk/?2m)fy#(`%{!Q/0&sxfB+rE[tgOKQ$$=ל?d@3c)]3%*M}H饞;Cdrp1jFcstG'C\p))_)( MM + qv&C3NLZswTPu{sϰP+-UFUP"KΆ+Ye7?0(idL;gk9(YI-l`;`AH:YHb1H{wR^Yњ, +$FԖHDV?pyїP%F=BGKPh~N[I_ꈀCTzf <Ӗ`4|mE1J'$`}R \N2kfaouJ73vKW{M3?׏M]:W;vX;B X.PI;?!T . sU]䮃=X 5rMt>y=*bC~^ tArl'Ŧ\؟L냡P&7ttuGz;Kg4э;u)";SvC~?J/F"6U.0>+KQӄ0"ӫ=sxoJ]ת!w6O.}t5V˩+7Us֩yēTC5GrgU5$&|~G8 Mv(jt Ϣn]]QWOؑm. R[ИoNng IF:?tؐSUOcj2Cm[O7>kWkX' #t'Xd9+E7Nd8{]m/ ׎dvYYwop!EP7F?ojP9"gBP;B^QO3*B 3un$I_Oe` +$`}-9Q/ĥMe?Ұh]b _2<͖+tª[ϜJO@%MI tv\/bMVF05+kI2W9>f} Ķ3tj|" +[LhY)o57k#%H\,x|ssxH͆|;` v%گT[c]e"GUj߫ytvx:udQuZy_Td"b+O]lx'6w6XCDKOf(g@w]fV[~1F^A3v Ovү2v +zT0b#[zyϒ$e1k5dRA`(Ņ@{=yW>>y@U;=H;c{30ü^ծ)ՙ-{OO2R´xQwBgБS"תlbz;Iy\EprkM @@e&3lʉtS%)/pR"2u +Ee5+ٰsZ'bQSlj zvހ~%.Kz\NE,eV2=Mo)-JcV:U2Ѹ>1ȓ"QWOё4*Oz.cjcY&=7Y,A5nIF/?̊ ]as.N*T 9Ͷ?=T"m grvdNxt(h,Dޝ_v +y`+W?od;&ȫAI`knywxż5č-ly SZܤ`Åq}ۥvkmT9ȻT 3"NlF9Tcb`eL֍lU_>iD@PnӃmHA.|Y/"BձO%fA7Si5=6cgI^ؗ Z/Ez4-l;¡^ |lTM~]9< +.t:Q1'ar|*ə11-VN"DM(xSRJk*YK9GW(Ru~|iBcC(†k0MugQK*4(vHy$dor]}o4e%h,OqAhxѪZ/=T +$$z67 +endstream +endobj +126 0 obj +<< +/Type /FontDescriptor +/Ascent 750 +/CapHeight 683 +/CharSet (/arrowright/bar/minus) +/Descent -194 +/Flags 4 +/FontBBox [ -29 -960 1116 775 ] +/FontFile 125 0 R +/FontName /OAQJWM+CMSY10 +/ItalicAngle -14 +/StemV 40 +/XHeight 431 +>> +endobj +127 0 obj +<< +/Length 10505 +/Length1 1593 +/Length2 8912 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMTI9 003.002 +%%Title: CMTI9 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMTI9. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMTI9 known{/CMTI9 findfont dup/UniqueID known{dup +/UniqueID get 5000827 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /FOJGQS+CMTI9 def +/FontBBox {-35 -250 1148 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTI9.) readonly def +/FullName (CMTI9) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle -14.04 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 76 /L put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 44 /comma put +dup 101 /e put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 114 /r put +dup 116 /t put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsS?#;IHIRd Ȅ'w7 Ἲa }j𙪎 =TU | Ӧ!b^~CJ?;UߨY,Ԭw34D2޻$Xec,IC0aq)-PUaVpSj*?4PDJ ƱNJO'L3nBg%dO޻ƞ BՌ:9v{Ұ%4II-{XM*4ZίORUJ O+"ґvO@3dJxl1Ԛ^}AKG]\Үӂw.@,I؝8ՙ^|٧ +HZsN2u զ,WӮA 33pqJIkEj¯АG8< eMi u}JymKP:cՆn~#/ ĊK'@`F,PFd/\*k\4 Ew>~I(G%w>hI7E?Oz&Pf} ʪշM`j:W24,hV=d *Nu5"$Q16PN--C&>MX ܴ/HG'+:Yӽ뜀fYM2~[z%Q #Tb[zNE!PX1G $zC«>nE|τr'xZ[L#{6@^.|a[bZP js|,dkb}~ā`9ش;ޗ`c,SՈTٚUIR $W\ΚOb_tsnV-8;rsIzAM7ŽL&UkD7§3D񃤐xV} y ǵ׏i³7N5 İiJϨA L1k$O rŃlϳT"ߧD;!U+AddD]t\4IqSҫ6tΟM,I6UFf?t.ZwdTcZ;z W,w)N!!\>07A&.~Πi#FMXz/~ddwwU'(j́t~qBc8i3=$[Uҟy?& O;4x cV haزò]矂FCRSFxR~uZ?2iUj<B'QFX8S tƚ({֟{x [:1YZkDP _ m+5> +kĿrv,=4flz. Nx]0ȆŁ0}Sz%A[7pX+2"o5T{i Ab,V"tCPُF6q@gH1nΈ_=zVǶoDַƸ럒RW\܂Y XtI@2p_'lR!2{+?FoRyR_mr9..>ýv+,]D_2WDujNnI2}X嚉[@-[a_oU6.wolJq *]A/m]#(1»!I! ;~PIg Ju4kh:qKmWRB}%"VJK8fX Ų3"GS3Jh;_3o4 {U4X)K+>fΨۜy~^v k` |BJK08j`- +4%.qQsK.FQe ڴWOlG9ْQeꍲ4Y +s +RՋ^Ff;9D=g%7%z»{`I1cmAH1oYmE&³$rN;*,W7_,HqE'ig^)b~f߀i%!7RN74tUQdد<"8z kK@A]0<6HQs%|?a#V<!C䠚${fT'2Ϙds @Nu UBT?P :\݆F/idl1IZ)ƒ7ֵ;+>wbJx6=tچSe﵎cIQ\/?39bݫ/i8Օ佪S1(+TBPWPxnԣ[9؇ԒG8NFӺOB͒;zwU2t00QI'4S)l#̀"4|ZBRlLC24uGw^Ǽ2FJ%[VgT@qɞV$/N]S;PG"ƥiZ?/e6#7$j,e@aS /?I'C*݌5 ] m*,,yđYG"~)WŠPQ_kM@% #mHOOQ.a.c;iݎ 9Myνq_ҨUaoM AxԎ01¤KIGf, 73nG5mH&-,bNP\|f u[:O%7F-%;棠j^2'Ӊ._|tƒqoidуs" br"(a 6m׽ SEi 5Rf%㺮=J)H)M&S~iLK4JArmj7iv|e+odsC WOя4?߂UF?ԉ k*N!ܲeRjK-iY^e&2RTs\m|y`4ZХng9&JX ^p +풩yf-/|lJϹlz# LY/=Fs7k2a|Rs|cq?d2E҃ŇKAz!w- +C-jiR1X}M:)T9,Iɺ\XٸQ,ܡp4YtF1aubgYcMZFO6I ; CR(P +1^~nI;ʾ9,rТR6LU[Mؚx-&ٳ!YBIV'Nf2uͼ[sJק."&ؒiTM* P5 kJKMGNpp||DQ2qAB7}Q `samoa~6vT!Ҝ\߂a>[((eN1(m ڪW h:{ADOʳ[q7;֑G˜'!3 wBj6f_[6u8\x#Qyb_*pY5 %Q6}&^\W! XVt 3xb]nw8"w=yprZb6 nmbB e, EɋNTSPo]7ઔPv93UU?hP~%us˪?, kRjF%oxڳr/D5oJJy]hޏtñC]A|l|5Tz%:SܸLm-H'X4dA4k#K򤾃}hBFۀe@Kt޼((R$ C]s9H"I_4obAw#t |(?K>Iu+ȡ)x>bϢwnћLBe ^3JPS3~WA#Z=K^mcRھ-qMT Žөm8T lYy}0O((`j|TsǪvR_o./9Rv"Uk/5AGM>n/o|L>7{ (Xի#hO45+DP#ʓfw̯lQ7 _2|]w `cd'-H|_:k/|_$ǁSUkxT86Y`?Rx/=gKA=[©IH :֊c5ckL(19&tP[C= 3: WsaV(Sk@нxw^kϚPxK +-/p״ٱ:Ͷ`hq tS +nGJHաb)}>U{[3bT,GDh4fAΈUchN䷢˶BxL;>b|?Ō[mEҽ80A SHfCdT߈j)}#hÅfǝG CsWl~I꼱`?_mޘTѕo/?t%v7IwcyYn &1kP,q`z D_ {&& TK"/ȿ%z0׻0}}Ԃ' U=ucK,c2++bYg\-XnS%\(_;L+EM'$(`翰Y*DŽ p{PSTsMɝ +4Ou([S,:ͨ{Hs^;'%v#r*:<5Κv#%KEt"gl=̰ƬcjRe]\ ׭X +@Fx "g.yhfjVJ7W!جVx53ʼnboPYJ-TdbXaw"CM*2=Q}vJ(),'$/w,j%^PyX+9 s=td#R_tkK Se鄎,W{f?cPxKSuʶw&LD_Ose5+T{p:`@`/r%ӓY06rS> >}!Cf P!%|> h.n-(~/SnB@#ߓ}ArѦ-ZGe;j`B̊4ܷ2%+D:(1{.6!˽,{~\BjZ0.(/Gx|\}9~S 2R Yl˛Rxb+$Juگ1͵doT J J"Tr<="v,q5nL>*-[v*%9{8o&U kFf/!7 +MQS8W?]9J^U6*75~$Ab IC j#.]1ȰF0Şk?I QXq| +x4ZqmT +rm1Ut_ 7bF[<xf«c1̉'e&k=\ˡy'nW!˗,r4ˡxZr2nL,&s'剚0)1Z[^.qg^nV')wF;-@x+A ӫ(>D1Q2S":̿ ;O-7\ +endstream +endobj +128 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/L/a/b/c/comma/e/i/j/k/m/n/o/r/t/v/z) +/Descent -194 +/Flags 4 +/FontBBox [ -35 -250 1148 750 ] +/FontFile 127 0 R +/FontName /FOJGQS+CMTI9 +/ItalicAngle -14 +/StemV 70 +/XHeight 431 +>> +endobj +129 0 obj +<< +/Length 13744 +/Length1 1867 +/Length2 11877 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMTT10 003.002 +%%Title: CMTT10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMTT10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMTT10 known{/CMTT10 findfont dup/UniqueID known{dup +/UniqueID get 5000832 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /IJKLSG+CMTT10 def +/FontBBox {-4 -233 537 696 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTT10.) readonly def +/FullName (CMTT10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch true def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 97 /a put +dup 126 /asciitilde put +dup 98 /b put +dup 99 /c put +dup 58 /colon put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 104 /h put +dup 45 /hyphen put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 49 /one put +dup 112 /p put +dup 46 /period put +dup 114 /r put +dup 115 /s put +dup 47 /slash put +dup 116 /t put +dup 51 /three put +dup 50 /two put +dup 117 /u put +dup 95 /underscore put +dup 118 /v put +dup 119 /w put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{=מ0).|˿!:[LI0lr9G$}/X S`p*p+fwwFGO^ȇ r+dMvNy{YK[z[f +ܷBDq}M8|j${jpxxSƫEu +7%ɑ4\ 9b \)[FU.q4Z8KzwwylϦI5bjcZ,7ɪK:#@Jd@ѻFM_d#g+=>ZaWNH5Y/ .rpf{0D|6@;]/h|.RAɰKml^&W܀{mFՙ3FK~I7@T7AMOP.;ݐH+iX;}jYXEu5ǻpېBIᡊS 7pQ40cH4u[ wYÖ2[tʖڣ?hb*$ +dƥ`$ P :")|UƩfDtd§=5+j7%i@)шT/qUF1tEςҷݢ@ Ѣ1ãF^R?-¦q^!*1gw24/3@\7zaz1).ExY'Ȫ5Fc=nj2cw1 3bI]y: f֡ꋓfg%p^`('m K'K '>EPN,:M{S3G2R@6\?-^X'F.qhYlawNUpͧ`M9_Jgbw! ̼sāTҔDb:Wq!]iơw`褩'`h^ TTInHel䶢͒à`じ 'p(=Y1UѬ/OT +%`&{(K:.CiK9xH-vE4x_5叠ٺ,dl5'bbq,H. O8 NNnZGquDZMgd/.o~*ĽẾʿep˵ +1}oK({AsM`?  }|^ڧ(1vMXAj!Vk5=&Yiw|vCPezFލ`FJO!zơãE.)8At`+o z`!|a*dU ).tIhq*0q>NU 3ȏ7Ā9Ot[3|5r0p8ߕWqDLŽ{`dw|ׄ GJz/H'Z$MΤ8Z̈<7{LpV)%k3ToCn}4>ZrȰ{rUZ9EGu49>`oq/~x▏S|f9׬?X.uBxfGbE.wW;o, BLkkK{9fgg,l|&Ma*$v#ܶ>7Ucö'nNЙ1WƫV Nu+947yG( "zoO_|cZzB@ZAݾ@aexb?>"YTgBlٍ9UFJ?"[p] phU8Փz޾L?:K;W%X$؇:b9pF^dBJR(6[-T*4!yY`'M( MPA#fT"f"?eX&RE ]2L6 ?h)8&/Baf!0tM<ŋX0z1$6$}W<1ji76$4e L,vΡTuQo:=}E˨(S0.1) d#I;P]ɵR蕺I,"?bB8|GϞ\;H +nc2߯xX1!?:t#?%gSe[ze} h)D j-O6vzu@b ixc`r&r Iڹ_> 1SSdY$`)­:] R]FITkxjgbHd.(: +﫜.%pq>>^zx,{^c]r6oެtHTC O;q]8$yBoLr {=f$' F}*%*tdsCNzc5G~¸e 2d]bsz':aWA>4+ +5u=JTH8Yn{-t}PtJx8R.\{`u[%37\rnNJFk Oj+WesMV)JYV˛81d#JL1?M?"śbQᄍfcӟr ar4ד@dv5꺜5eDfR+c=PisX8mm;EL]H|S° #ȿl S6e!3BYTg}TTaΈfgX_+t12)A{ߨcװzP*Q˩SRd*lN؏bjɇwu_ŧ03_m=/Quf +'I N?qj) +ʎӲ+Ar⻩6&HДC9mr|7rG%:Jr<(gG^Ĵ~xP^KYYD˓"$?f7ښ}Xo3'+Te|7~x9Fʓ u +ih +9Nt9uicsJw +cZ|$C[ie ";3|AzFY4WSHʘJ᧞)~%b[O?;Rw߹E5?"W|;ծI6X'\dKs}2{QA)wJtXi3uR3Tq5b|~<27bA}LXO6/'`:8gI$G,M`y}Gꦜ?)c7K !8Bʽl. ouv +KS?0Z<M^oE "1\eάI SsBITve赡 Rkvl$|i0qp +QxroHQvzŃe4`eb?V'ax * ǡ~MCC0"rsSC=y [^ՔI1d#J9&I# g߶c*B+FWndM}RYubPvc?_gMk5Zoof~G>ص͈,gk]E8?`aN/`p22it (/[@|;C]ar6X W,COQY``J_Bhq8 !;.*ĿLMbMKa{boKInUowg3Ս|Rq?'SoIV\]iTgȋ[_Z_j5'N8wM%+E:v +"Ӫax;Y `m e"bsiq>,Znè3Œe(go =$Rܬ'J:cj3f2 +N:3CC;Ov"<ȳA?9=ԇa{M˻&}Lnu4۟V[+._b$t1.}c{<0PBW*ZCƛOS 0aS5Ε-}7-*IC{1ȹAZųrO(G n69i5bDN'wL ,j"WvyMbfv&,ՆHѶG[f&Px&I뤏i=(˗z:[} $>]IlvyPd[tzw;hc9X S8{՝YJ4ks'$r+t7))m&LWQ L7)g͑".f E* +M:7jm !'3x<[r n^s:^M{9Eŷ8BtxW59%g.lK4k{܉rTI`mfl<=k)2cJ4;Um߄QM}= Dg}FBZL98 ˿kN> FfE4A9-Ps{wiw=vr-o{L;YoD?'${q/Vڌl据)]035)o6<;E٘7`Rv\G ,6h莥;]_Αa|:9j% "z7$s+$B 4*]>Q@I-oi9yUq|t[,F\}r&''8O#0Sm,Xd!b(n#ʷiޢ gWeW8$$c؂cq&W,a-Ǻ!|=4'Ը9~hZ4 u{]B.CiyMՋ+ݭZ +Fر]shl5؛~} E3+{y(خtbКĸ7_? q 2ed/=g8: MSM sbkOLؕrI^ l}坺Ff&TE54GpY%x@I$!(9;F8dC\ Ox:Bb(dTPYtv.<郁f/n|/6 SZI-Vt한kx.Dgګ +w~/[{]*2y_1Llp}b/}c>f倨w9Ъzʔ>ɆxNn:9lpD(?жT=&Kqg=geͶ+i#Wn >QX&evgt_0 qm!DI7$N7 obu2NYXU_ Xմ?)#rl9Da1K:$ Ry!tCVV_ܔV |t҂Gn2kn&M8pCq̱|ҐR]8 _rqYgTf^Ϳ30HR,خ4}@t-8ĝ#JE,@F\h7M?YNy˫fGgᅛV>P!%"қK8P 3VŷY,gf ߲9pūT9$P͇}vziMSrrF/J8%KBퟸP^k ܪ"'K+:U-ۯfqK-8: W~eq"Lߠ t5ȒѦoR0o%i%Er6A2S(A΍sݵftDXl?,VNCj4w~23vIJ{]Qz9UHva_^a!gQd _eQ:Ӡ0-bf.7TGW=NHf\'*~zUЊ-P``a2fIs#qGkkFv&}c72gٱ#Sé{Tqu _f/mH(Lnq@s߭LیH=.ЙG|aZB5I)i"zXVMt GQ}k3St݀^o +Ibh2FT6\r/A=ǖU;!o/Pӑ1Q&mCGHc[,Xπ}^!-ZP4]!)z|`y ޭ!G #~"*tJasXqƇo:"482yj QG~BWMNp]=O@BFaQpQ mVYLG 0&Ņ-7.ߪpkdZ$ݭx.mƁn/[n%4TTpqԮGD@Np=ZK{+w4V̢|DBqRocnEMf3 p67wΏIg>@SN=iϔXws^\\}ZPWLz0Q_⠜4'X"Y(pލhAWlhw"\Oqu`@Nxo{$B˫37COK0W>P];Z9bybr6m@(i{N駘ij1%߽q:zW, NScoY֥DȱU_^h>߲@փoKbӵwVF$~2SpBJR*8'|&w%fx>h),OpEYO1̂q"خЉw `f9pfӴf޶)B6U9Wev9UɆ*M5i%ݒI$d=FX?j nfQJ>KITp ksOҩ9@&WxxsFL[=[~] h9Qh!l Ƥ'#{W$"ĕcnY@u(Gr͐Usg w,gRk* ^7:dmNnMEWfPfjz +9@bG#._>A?{whOl`~#Xw +FO?]яO9~b;.gifosSKbφME+N1盇4EyK #g^H#{B#t/ur +cPwѷR\R{!x%6?4o5!ww:W#l^/p ̷{sXP٦KDF=PfrcҹAS(sè`bHPwŗg}q]Pd}#mՈbE1䏔\i?U=:)ԁ&nUCnQc6Υ1~Ԅs|(bK?Tû*0zod\8H`z+ ETlX$b>@F\B%f}gO>+UD f-R,Uu0Csyn'HpwkqZiTb*5D}[n~^UND TKU{yɅf%1si2ppO7vmyT_M K:e e-5`EW0 Z0@)(\ExfαA-]F}51YuELric53R8ތ쐳 }|)pf7tHƩέq;(K7t'Q[ShN 1|%;j.l2F\XւhE +9WQѴ2aq:}!@9Vb?ӯ'{EվڄT*4z`zQ?ڛ)pi&teg1(] rsX%KZ{V_~h(VFca1F\ۏlE^LCn=T{ 0%*T^@дGgws^P=-(/lAؽ"4e + 4{dȆ6 NB0jr붦~I=<>Y@G"\GͶ4ap:W< c/F2VWݪuԳ,;R8jU Qz8ߡ1!$J-NB*W6A.=X=а<<w}kC}uEƞ^WSq em' .iI_\5(1>e937A|vPw%8SʋL«Fר@h՞gX]^[cM?z;sCG6m'Kmz[66Ǩ((|Z "piÙ:ķki<ZuTBgt /ˁ zeruMŤCjhNG>SP2fgq(DNx F[]>MeboreWb ݲ h3.bϏMa-/1_]3!;KJyqx2R4>9 ΪǒtT6c]h~lG6>lG\p]Ǧ8Z;p X3K f.C^w1fBib*Z8R" ʼ/>;a;uu' /gBU&z(K'_m p{NfkVT l2D1D 8I EtXʂٍ5"ǡ[׬I$1zh4U"FT]a5%c`4>?3ye*c3,3""JCjfo 0nqpI|NP~@rL +q\9@qOQQv=[F'Ф+hb߼(@H +"F%Än%rvs}LbjBՙrv5;5=\tw +CxHeD[jO%:^BclX p! jo#]xOKi8F9wX[jW2S]HJ)a$R1 ~^\_{9EЍPo0-޻۠xOJzT[,5R>>cXJ;2J1/_D͜ɼJd5Wg Sv +1D,צ'g/اݑkt卜a-Mb1l" cv?cS q.)!14 y;SRnJ <' _.PF2Sm#ƿv0}Dī#T0%ڻ$M20Pr'A L˞F- ~s0_ /eR6[up\x5ɖȉ#,y רhcTym,KīQr)Z1pezŞ5 ߦ:d[$Y,P1VM,ngJ,FŇ +.F`2c]i7_Vk(_K> +endobj +131 0 obj +<< +/Length 3662 +/Length1 1466 +/Length2 2196 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMTT8 003.002 +%%Title: CMTT8 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMTT8. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMTT8 known{/CMTT8 findfont dup/UniqueID known{dup +/UniqueID get 5000830 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /ISIMRT+CMTT8 def +/FontBBox {-5 -232 545 699 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTT8.) readonly def +/FullName (CMTT8) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch true def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 76 /L put +dup 84 /T put +dup 88 /X put +dup 101 /e put +dup 105 /i put +dup 50 /two put +dup 118 /v put +dup 48 /zero put +readonly def +currentdict end +currentfile eexec +oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsP,WKT"0KDǯҖkIUܨf/+WN/r4qW@d̍OG|Babhy52+2upa,-I"MC㉮0גv\G\% ؊Z\+;7tamJsXPc0NqL%tWtį, );b&L}NֲGi$߲:[<+s\6qGq %E~@kִ[iYKq[ Pvbr~1zV +إh]\HZa2nqiNG84[(5~B.m{,?v;ɚ]QV-;S8HMKMcd;z%+R9$z\zIbp;%wsU?X)K Q +38hVrC6 {Gx|eRu{};jvfe!QYrBQqS9WJD?&;A +Q??.h3~^|w*?]PdPCʟD*E 1HG6Kt)֕hrWA-T7T㸅o*3%0yژ\]!۠z,Z\#ugA"xSJlZ}b 9uNM[]2͢h3RN͎Q9sZcLy\ɘg>}Ի5kV‡U2ZqҖ(jI4d93+- ɌMQ.C |^( +^_x4]bRcAvL !BBMcWUZb1Z$p,2t1[1,7LNkB 9QpSe5 #hx 00Λ{,B[(j/BibYc%%Zu<.xXO$BmKE.1F-4JS7KEp_ :$3ޝ?̼ ?v+Պ;#\ߗA\{VSlܺ1aPOtSâ2n㇈ArʳOV`E t RdhL͐u83$]BMR?hpW~Vԓի8 +& +c{ju]sPldAa|_}(1kMXbSLn&MXV-8oi%'R*+m뀂b@GOIfs{n?p_?5-Wuqǎ %— 1+41h )bP+&Fa?o%~O3?m|@Lsuoq9-4! cC)|v@*m6 ߩL0Gm^;#4[b,< {f6]ƒX9rsD[uu1C+!FoFcXL[&b@uT10% +> +endobj +133 0 obj +<< +/Type /Outlines +/Count 2 +/First 31 0 R +/Last 35 0 R +>> +endobj +134 0 obj +<< +/Limits [ (Doc-Start) (Item.3) ] +/Names [ (Doc-Start) 44 0 R (Hfootnote.1) 81 0 R (Hfootnote.2) 84 0 R (Item.1) 54 0 R (Item.2) 59 0 R +(Item.3) 60 0 R ] +>> +endobj +135 0 obj +<< +/Limits [ (Item.4) (section*.1) ] +/Names [ (Item.4) 61 0 R (Item.5) 62 0 R (Item.6) 63 0 R (page.1) 43 0 R (page.2) 74 0 R +(section*.1) 51 0 R ] +>> +endobj +136 0 obj +<< +/Limits [ (section*.2) (section.2) ] +/Names [ (section*.2) 79 0 R (section.1) 30 0 R (section.2) 34 0 R ] +>> +endobj +138 0 obj +<< +/Kids [ 134 0 R 135 0 R 136 0 R ] +/Limits [ (Doc-Start) (section.2) ] +>> +endobj +139 0 obj +<< +/Dests 138 0 R +>> +endobj +140 0 obj +<< +/Type /Catalog +/Names 139 0 R +/OpenAction 37 0 R +/Outlines 133 0 R +/PageMode /UseOutlines +/Pages 64 0 R +>> +endobj +141 0 obj +<< +/Author () +/CreationDate (D:20201220002337+01'00') +/Creator (LaTeX with hyperref) +/Keywords () +/ModDate (D:20201220002340+01'00') +/PTEX.Fullbanner (This is pdfTeX, Version 3.14159265-2.6-1.40.20 \(TeX Live 2019/Debian\) kpathsea version 6.3.1) +/Producer (pdfTeX-1.40.20) +/Subject () +/Title () +/Trapped /False +>> +endobj +142 0 obj +<< +/Type /XRef +/ID [ <8BDE9569A286CF89B3E0C7EE8CAF8343> <8BDE9569A286CF89B3E0C7EE8CAF8343> ] +/Index [ 0 143 ] +/Info 141 0 R +/Length 715 +/Root 140 0 R +/Size 143 +/W [ 1 3 1 ] +>> +stream + +,-Yma  +&`   2UTOPY[NQSRZW^ "$*,%\!#'V(X])./0123456789:;<=>T;?@AɣBC?_Dp]E=F3GHI6JSKzvLM_bcЏN +endstream +endobj +xref +0 143 +0000000006 65535 f +0000000015 00000 n +0000000036 00000 n +0000000057 00000 n +0000000111 00000 n +0000000272 00000 n +0000000013 00000 f +0000000862 00000 n +0000001023 00000 n +0000001613 00000 n +0000001775 00000 n +0000002366 00000 n +0000002529 00000 n +0000000014 00001 f +0000000015 00001 f +0000000016 00001 f +0000000019 00001 f +0000003120 00000 n +0000003283 00000 n +0000000022 00001 f +0000003903 00000 n +0000004066 00000 n +0000000025 00001 f +0000004686 00000 n +0000004849 00000 n +0000000028 00001 f +0000005469 00000 n +0000005632 00000 n +0000000137 00001 f +0000006352 00000 n +0000006398 00000 n +0000006465 00000 n +0000006540 00000 n +0000006608 00000 n +0000006654 00000 n +0000006721 00000 n +0000006796 00000 n +0000006824 00000 n +0000006874 00000 n +0000007024 00000 n +0000007197 00000 n +0000007370 00000 n +0000007620 00000 n +0000030371 00000 n +0000030438 00000 n +0000030505 00000 n +0000030647 00000 n +0000030788 00000 n +0000030930 00000 n +0000031071 00000 n +0000031211 00000 n +0000031352 00000 n +0000031419 00000 n +0000031561 00000 n +0000031705 00000 n +0000031772 00000 n +0000031913 00000 n +0000032055 00000 n +0000032196 00000 n +0000032335 00000 n +0000032402 00000 n +0000032469 00000 n +0000032536 00000 n +0000032603 00000 n +0000032670 00000 n +0000032738 00000 n +0000032914 00000 n +0000033136 00000 n +0000033387 00000 n +0000033648 00000 n +0000033921 00000 n +0000034097 00000 n +0000034287 00000 n +0000034486 00000 n +0000038408 00000 n +0000038475 00000 n +0000038617 00000 n +0000038838 00000 n +0000039097 00000 n +0000039369 00000 n +0000039436 00000 n +0000039575 00000 n +0000039642 00000 n +0000039782 00000 n +0000039923 00000 n +0000039989 00000 n +0000040790 00000 n +0000041938 00000 n +0000041980 00000 n +0000042328 00000 n +0000042521 00000 n +0000043540 00000 n +0000044188 00000 n +0000045186 00000 n +0000045889 00000 n +0000046809 00000 n +0000047615 00000 n +0000048672 00000 n +0000049152 00000 n +0000050155 00000 n +0000051064 00000 n +0000052226 00000 n +0000066583 00000 n +0000066919 00000 n +0000080824 00000 n +0000081153 00000 n +0000089564 00000 n +0000089798 00000 n +0000099154 00000 n +0000099397 00000 n +0000110984 00000 n +0000111247 00000 n +0000131200 00000 n +0000131594 00000 n +0000144792 00000 n +0000145092 00000 n +0000156403 00000 n +0000156691 00000 n +0000164253 00000 n +0000164479 00000 n +0000172479 00000 n +0000172713 00000 n +0000186136 00000 n +0000186439 00000 n +0000199672 00000 n +0000199955 00000 n +0000207575 00000 n +0000207818 00000 n +0000218417 00000 n +0000218674 00000 n +0000232513 00000 n +0000232839 00000 n +0000236594 00000 n +0000236832 00000 n +0000236907 00000 n +0000237083 00000 n +0000237251 00000 n +0000000000 00000 f +0000237380 00000 n +0000237473 00000 n +0000237511 00000 n +0000237638 00000 n +0000237970 00000 n +trailer +<< +/ID [ ] +/Info 141 0 R +/Root 140 0 R +/Size 143 +>> +startxref +238896 +%%EOF diff --git a/mat/domace_naloge/21/dokument-uncompressed.pdf b/mat/domace_naloge/21/dokument-uncompressed.pdf new file mode 100644 index 0000000..ce67d18 --- /dev/null +++ b/mat/domace_naloge/21/dokument-uncompressed.pdf @@ -0,0 +1,3991 @@ +%PDF-1.3 +% +1 0 obj +<< +>> +endobj +2 0 obj +<< +>> +endobj +3 0 obj +<< +/pgfprgb [ /Pattern /DeviceRGB ] +>> +endobj +4 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 5 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +5 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 0.000000 0 100.001280 0 ] +/Domain [ 0.000000 100.001280 ] +/Extend [ false false ] +/Function << +/Bounds [ 25.000320 75.000960 ] +/Domain [ 0.000000 100.001280 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 2 +>> +>> +>> +endobj +7 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 8 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +8 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 0.000000 0 100.001280 0 ] +/Domain [ 0.000000 100.001280 ] +/Extend [ false false ] +/Function << +/Bounds [ 25.000320 75.000960 ] +/Domain [ 0.000000 100.001280 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 2 +>> +>> +>> +endobj +9 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 10 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +10 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 0 0.000000 0 100.001280 ] +/Domain [ 0.000000 100.001280 ] +/Extend [ false false ] +/Function << +/Bounds [ 25.000320 75.000960 ] +/Domain [ 0.000000 100.001280 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 2 +>> +>> +>> +endobj +11 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 12 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +12 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 0 0.000000 0 100.001280 ] +/Domain [ 0.000000 100.001280 ] +/Extend [ false false ] +/Function << +/Bounds [ 25.000320 75.000960 ] +/Domain [ 0.000000 100.001280 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 100.001280 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 2 +>> +>> +>> +endobj +17 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 18 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +18 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] +/Domain [ 0.000000 50.000640 ] +/Extend [ true false ] +/Function << +/Bounds [ 22.500270 25.000320 ] +/Domain [ 0.000000 50.000640 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 3 +>> +>> +>> +endobj +20 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 21 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +21 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] +/Domain [ 0.000000 50.000640 ] +/Extend [ true false ] +/Function << +/Bounds [ 21.250260 25.000320 ] +/Domain [ 0.000000 50.000640 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 3 +>> +>> +>> +endobj +23 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 24 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +24 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] +/Domain [ 0.000000 50.000640 ] +/Extend [ true false ] +/Function << +/Bounds [ 20.000240 25.000320 ] +/Domain [ 0.000000 50.000640 ] +/Encode [ 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 1 1 1 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 3 +>> +>> +>> +endobj +26 0 obj +<< +/Type /XObject +/BBox [ 0 0 100 100 ] +/FormType 1 +/Length 7 +/Matrix [ 1 0 0 1 0 0 ] +/Resources 27 0 R +/Subtype /Form +>> +stream +/Sh sh + +endstream +endobj +27 0 obj +<< +/ProcSet [ /PDF ] +/Shading << +/Sh << +/ColorSpace /DeviceRGB +/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] +/Domain [ 0.000000 50.000640 ] +/Extend [ true false ] +/Function << +/Bounds [ 21.250260 23.125290 25.000320 ] +/Domain [ 0.000000 50.000640 ] +/Encode [ 0 1 0 1 0 1 0 1 ] +/FunctionType 3 +/Functions [ << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 1 1 1 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 1 1 1 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> << +/C0 [ 0 0 0 ] +/C1 [ 0 0 0 ] +/Domain [ 0.000000 50.000640 ] +/FunctionType 2 +/N 1 +>> ] +>> +/ShadingType 3 +>> +>> +>> +endobj +29 0 obj +<< +/D (section.1) +/S /GoTo +>> +endobj +30 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 500.158000 null ] +>> +endobj +31 0 obj +<< +/A 29 0 R +/Next 35 0 R +/Parent 133 0 R +/Title 32 0 R +>> +endobj +32 0 obj +(Vaje Matematika 2: stran 55, tiri naloge 349-361) +endobj +33 0 obj +<< +/D (section.2) +/S /GoTo +>> +endobj +34 0 obj +<< +/D [ 72 0 R /XYZ 45.638000 793.134000 null ] +>> +endobj +35 0 obj +<< +/A 33 0 R +/Parent 133 0 R +/Prev 31 0 R +/Title 36 0 R +>> +endobj +36 0 obj +(Zakljucek) +endobj +37 0 obj +<< +/D [ 38 0 R /Fit ] +/S /GoTo +>> +endobj +38 0 obj +<< +/Type /Page +/Annots [ 39 0 R 40 0 R ] +/Contents 42 0 R +/MediaBox [ 0 0 595.276000 841.890000 ] +/Parent 64 0 R +/Resources 41 0 R +>> +endobj +39 0 obj +<< +/Type /Annot +/A << +/D (section.1) +/S /GoTo +>> +/Border [ 0 0 0 ] +/C [ 1 0 0 ] +/H /I +/Rect [ 44.642000 536.092000 312.863000 546.940000 ] +/Subtype /Link +>> +endobj +40 0 obj +<< +/Type /Annot +/A << +/D (section.2) +/S /GoTo +>> +/Border [ 0 0 0 ] +/C [ 1 0 0 ] +/H /I +/Rect [ 44.642000 514.174000 109.634000 525.023000 ] +/Subtype /Link +>> +endobj +41 0 obj +<< +/ColorSpace 3 0 R +/ExtGState 1 0 R +/Font << +/F11 56 0 R +/F14 57 0 R +/F43 45 0 R +/F44 46 0 R +/F7 58 0 R +/F71 47 0 R +/F72 49 0 R +/F73 48 0 R +/F74 50 0 R +/F77 52 0 R +/F78 53 0 R +/F8 55 0 R +>> +/Pattern 2 0 R +/ProcSet [ /PDF /Text ] +>> +endobj +42 0 obj +<< +/Length 22697 +>> +stream +0 g 0 G +0 g 0 G +0 g 0 G +0 g 0 G +0 g 0 G +BT +/F43 17.2154 Tf 90.724 741.328 Td [(Linearna)-302(k)26(om)26(binacija)-302(v)27(ektor)-1(j)1(ev)-1(,)-301(baza)-302(|)-302(21.)-407(doma)26(\024)433(ca)-302(naloga)]TJ/F44 11.9552 Tf 122.252 -13.948 Td [(Matematik)55(a,)-327(Gimnazija)-326(Be)27(\024)463(zigrad)]TJ/F71 11.9552 Tf -11.907 -32.885 Td [(Profesor:)]TJ/F44 11.9552 Tf 64.866 0 Td [(prof.)-435(Vilk)27(o)-326(Doma)-55(jn)1(k)27(o)]TJ/F71 11.9552 Tf -50.394 -14.719 Td [(Avtor:)]TJ/F44 11.9552 Tf 50.394 0 Td [(An)27(ton)-326(Luk)54(a)]TJ 65.19 3.022 Td [(\024)]TJ -0.325 -3.022 Td [(Sijanec,)-326(2.)-435(a)]TJ -80.311 -23.446 Td [(20.)-326(decem)27(b)-27(er)-327(2)1(020)]TJ +0 g 0 G +0 g 0 G +/F73 8.9664 Tf 26.279 -35.865 Td [(P)33(o)33(vzetek)]TJ +0 g 0 G +0 g 0 G +/F72 8.9664 Tf -192.4 -15.617 Td [(T)86(a)-397(dokumen)29(t)-397(vsebuje)-397(doma)29(\024)485(co)-397(nalogo,)-410(ki)-397(za)-57(jema)-397(sno)29(v)]TJ/F74 8.9664 Tf 221.97 0 Td [(Line)52(arna)-417(kombinacija)-417(vektorjev,)-430(b)53(aza)]TJ/F72 8.9664 Tf 155.167 0 Td [(pri)-397(matematiki.)]TJ -390.961 -10.959 Td [(Kjer)-343(je)-342(bilo)-343(p)-28(otrebno)-343(izbrati)-342(nek)28(e)-342(p)-29(oljubne)-342(naloge,)-343(sem)-342(jih)-343(v)28(e)1(dno)-343(izbral)-343(naklju)29(\024)485(cno.)]TJ/F71 14.3462 Tf -24.906 -32.946 Td [(Kazalo)]TJ/F77 9.9626 Tf 0 -21.917 Td [(1)-925(V)96(a)-64(je)]TJ/F78 9.9626 Tf 41.428 0 Td [(Matematika)-414(2)]TJ/F77 9.9626 Tf 70.911 0 Td [(:)-511(stran)-384(55,)-322(\024)514(stiri)-383(naloge)-384(349-361)-23291(1)]TJ -112.339 -21.918 Td [(2)-925(Zaklju)32(\024)543(cek)]TJ 498.271 0 Td [(2)]TJ/F71 14.3462 Tf -498.271 -32.946 Td [(1)-1125(V)94(a)-63(je)]TJ/F78 14.3462 Tf 61.469 0 Td [(Matematika)-414(2)]TJ/F71 14.3462 Tf 102.112 0 Td [(:)-500(stran)-375(55,)-316(\024)504(stiri)-375(naloge)-375(349-361)]TJ +0 g 0 G +/F77 9.9626 Tf -164.024 -23.398 Td [(350.)]TJ +0 g 0 G +/F8 9.9626 Tf 25.349 0 Td [(Na)-56(j)-471(b)-28(o)-27(do)-472(v)28(ektorji)]TJ/F11 9.9626 Tf 84.336 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(,)]TJ/F11 9.9626 Tf 6.687 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 8.971 0 Td [(in)]TJ/F11 9.9626 Tf 12.45 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 9.554 0 Td [(bazni)-471(v)28(e)-1(kt)1(orji)-472(v)-471(prostoru.)-858(V)83(ektorja)]TJ/F11 9.9626 Tf 166.709 0 Td [(~)612(m)]TJ/F8 9.9626 Tf 12.326 0 Td [(in)]TJ/F11 9.9626 Tf 12.731 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 10.942 0 Td [(sta)-471(enak)55(a)]TJ/F11 9.9626 Tf 47.922 0 Td [(~)612(m)]TJ/F8 9.9626 Tf 12.689 0 Td [(=)]TJ/F14 9.9626 Tf 12.807 0 Td [(\000)]TJ/F8 9.9626 Tf 7.749 0 Td [(2)]TJ/F11 9.9626 Tf 4.357 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.02 0 Td [(+)]TJ/F7 6.9738 Tf 12.075 3.922 Td [(3)]TJ +ET +q +1 0 0 1 508.877 463.254 cm +[]0 d 0 J 0.398 w 0 0 m 3.971 0 l S +Q +BT +/F7 6.9738 Tf 508.877 457.328 Td [(2)]TJ/F11 9.9626 Tf 4.048 6.065 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.406 0 Td [(+)]TJ/F11 9.9626 Tf 10.331 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 9.555 0 Td [(in)]TJ/F11 9.9626 Tf -471.058 -14.179 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.014 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F7 6.9738 Tf 8.944 3.923 Td [(1)]TJ +ET +q +1 0 0 1 98.752 449.076 cm +[]0 d 0 J 0.398 w 0 0 m 3.971 0 l S +Q +BT +/F7 6.9738 Tf 98.752 443.15 Td [(2)]TJ/F11 9.9626 Tf 4.543 3.435 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.843 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 6.49 0 Td [(+)-222(2)]TJ/F11 9.9626 Tf 14.396 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 4.859 0 Td [(.)-444(V)83(ektor)-333(2)]TJ/F11 9.9626 Tf 45.7 0 Td [(~)612(m)]TJ/F14 9.9626 Tf 9.844 0 Td [(\000)]TJ/F11 9.9626 Tf 9.696 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.568 0 Td [(zapi)53(\024)447(si)-333(v)-334(dani)-333(bazi.)]TJ 43.487 -27.555 Td [(2)]TJ/F11 9.9626 Tf 6.098 0 Td [(~)612(m)]TJ/F14 9.9626 Tf 9.845 0 Td [(\000)]TJ/F11 9.9626 Tf 9.695 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.014 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 8.945 6.74 Td [(7)]TJ +ET +q +1 0 0 1 319.514 421.521 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 319.514 412.197 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.833 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ 11.158 6.74 Td [(1)]TJ +ET +q +1 0 0 1 344.329 421.521 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 344.329 412.197 Td [(3)]TJ/F11 9.9626 Tf 5.058 9.462 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ +0 g 0 G +/F77 9.9626 Tf -305.311 -29.249 Td [(352.)]TJ +0 g 0 G +/F8 9.9626 Tf 25.349 0 Td [(T)83(o)28(\024)472(ck)28(e)]TJ/F11 9.9626 Tf 28.838 0 Td [(A)]TJ/F8 9.9626 Tf 7.472 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(B)]TJ/F8 9.9626 Tf 8.057 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(C)]TJ/F8 9.9626 Tf 7.833 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(D)]TJ/F8 9.9626 Tf 12.18 0 Td [(in)]TJ/F11 9.9626 Tf 11.956 0 Td [(E)]TJ/F8 9.9626 Tf 11.583 0 Td [(le)28(\024)472(zijo)-367(na)-367(premici)-366(tak)27(o,)-375(da)-367(je)]TJ/F14 9.9626 Tf 126.645 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(AB)]TJ/F14 9.9626 Tf 15.528 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(:)]TJ/F14 9.9626 Tf 6.091 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(B)-50(C)]TJ/F14 9.9626 Tf 15.89 0 Td [(j)]TJ/F8 9.9626 Tf 6.09 0 Td [(:)]TJ/F14 9.9626 Tf 6.091 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(C)-72(D)]TJ/F14 9.9626 Tf 16.358 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(:)]TJ/F14 9.9626 Tf 6.09 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(D)-28(E)]TJ/F14 9.9626 Tf 16.453 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(=)-334(3)-333(:)-334(2)-333(:)-334(1)-333(:)-334(3.)-545(T)84(o)27(\024)473(cki)]TJ/F11 9.9626 Tf 94.888 0 Td [(B)]TJ/F8 9.9626 Tf 11.711 0 Td [(in)]TJ/F11 9.9626 Tf 11.957 0 Td [(D)]TJ/F8 9.9626 Tf -470.569 -13.95 Td [(le)28(\024)472(zita)-296(med)]TJ/F11 9.9626 Tf 47.406 0 Td [(A)]TJ/F8 9.9626 Tf 10.42 0 Td [(in)]TJ/F11 9.9626 Tf 11.249 0 Td [(C)]TJ/F8 9.9626 Tf 7.833 0 Td [(.)-432(to)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 32.988 0 Td [(D)]TJ/F8 9.9626 Tf 11.472 0 Td [(pa)-296(med)]TJ/F11 9.9626 Tf 34.676 0 Td [(B)]TJ/F8 9.9626 Tf 11.004 0 Td [(in)]TJ/F11 9.9626 Tf 11.25 0 Td [(E)]TJ/F8 9.9626 Tf 7.929 0 Td [(.)-432(Na)-55(j)-296(b)-28(o)-296(v)28(ektor)]TJ/F11 9.9626 Tf 69.558 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.657 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 6.808 Td [(\000)476(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(E)]TJ/F8 9.9626 Tf 18.933 0 Td [(bazni)-296(v)28(ektor.)-432(Z)-296(v)28(ektorjem)]TJ/F11 9.9626 Tf 115.247 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.837 0 Td [(izrazi)-296(v)28(ektorje)]TJ/F14 9.9626 Tf -417.975 -6.589 Td [(\000)457(\000)457(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(D)-28(C)]TJ/F8 9.9626 Tf 16.358 0 Td [(,)]TJ/F14 9.9626 Tf 6.089 6.807 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AC)]TJ/F8 9.9626 Tf 18.626 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.807 Td [(\000)452(\000)452(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(D)-28(E)]TJ/F8 9.9626 Tf 16.453 0 Td [(.)]TJ/F14 9.9626 Tf 99.708 -9.286 Td [(\000)457(\000)457(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(D)-28(C)]TJ/F8 9.9626 Tf 19.126 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ +ET +q +1 0 0 1 270.238 348.832 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 270.238 339.507 Td [(4)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 18.072 0 Td [(=)]TJ 11.712 6.74 Td [(5)]TJ +ET +q +1 0 0 1 319.214 348.832 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 319.214 339.507 Td [(3)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)452(\000)452(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(D)-28(E)]TJ/F8 9.9626 Tf 19.22 0 Td [(=)]TJ 11.712 6.74 Td [(3)]TJ +ET +q +1 0 0 1 369.338 348.832 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 369.338 339.507 Td [(4)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ +0 g 0 G +/F77 9.9626 Tf -329.696 -28.256 Td [(353.)]TJ +0 g 0 G +/F8 9.9626 Tf 25.349 0 Td [(T)83(o)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 28.918 0 Td [(M)]TJ/F8 9.9626 Tf 14.209 0 Td [(je)-347(razp)-28(olo)28(vi)53(\024)447(s)28(\024)472(ce)-347(daljice)]TJ/F11 9.9626 Tf 98.183 0 Td [(C)-72(D)]TJ/F8 9.9626 Tf 19.816 0 Td [(pra)28(v)28(ok)27(otni)1(k)55(a)]TJ/F11 9.9626 Tf 59.387 0 Td [(AB)-50(C)-72(D)]TJ/F8 9.9626 Tf 31.886 0 Td [(,)-351(v)28(ektorja)]TJ/F11 9.9626 Tf 44.544 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.885 0 Td [(=)]TJ/F14 9.9626 Tf 10.744 6.808 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AB)]TJ/F8 9.9626 Tf 18.987 0 Td [(in)]TJ/F11 9.9626 Tf 10.641 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.271 0 Td [(=)]TJ/F14 9.9626 Tf 10.744 6.808 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AD)]TJ/F8 9.9626 Tf 19.454 0 Td [(sta)-347(bazna)-347(v)28(ektorja.)-486(Z)]TJ/F11 9.9626 Tf -385.411 -13.396 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.21 0 Td [(in)]TJ/F11 9.9626 Tf 10.504 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.597 0 Td [(izrazi)]TJ/F14 9.9626 Tf 26.595 6.808 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 15.305 0 Td [(,)]TJ/F14 9.9626 Tf 6.088 6.808 Td [(\000)363(\000)363(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AM)]TJ/F8 9.9626 Tf 18.223 0 Td [(,)]TJ/F14 9.9626 Tf 6.089 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(M)]TJ/F8 9.9626 Tf 22.129 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(B)]TJ/F8 9.9626 Tf 18.808 0 Td [(.)]TJ/F14 9.9626 Tf -48.295 -19.248 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 18.072 0 Td [(=)]TJ/F11 9.9626 Tf 9.892 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)363(\000)363(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AM)]TJ/F8 9.9626 Tf 20.991 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ +ET +q +1 0 0 1 265.673 281.124 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 265.673 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(M)]TJ/F8 9.9626 Tf 21.575 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 8.945 6.74 Td [(1)]TJ +ET +q +1 0 0 1 342.353 281.124 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 342.353 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.843 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(;)]TJ/F14 9.9626 Tf 7.748 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(B)]TJ/F8 9.9626 Tf 21.576 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ +ET +q +1 0 0 1 411.283 281.124 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 411.283 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F14 9.9626 Tf 8.104 0 Td [(\000)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ +0 g 0 G +/F77 9.9626 Tf -393.983 -23.91 Td [(360.)]TJ +0 g 0 G +/F8 9.9626 Tf 25.349 0 Td [(Na)-279(strani)1(c)-1(ah)-278(paralelograma)]TJ/F11 9.9626 Tf 122.203 0 Td [(AB)-50(C)-72(D)]TJ/F8 9.9626 Tf 34.661 0 Td [(so)-279(dane)-278(to)28(\024)472(ck)28(e)]TJ/F11 9.9626 Tf 60.407 0 Td [(I)]TJ/F8 9.9626 Tf 5.161 0 Td [(,)]TJ/F11 9.9626 Tf 5.651 0 Td [(J)]TJ/F8 9.9626 Tf -228.083 -11.956 Td [(in)]TJ/F11 9.9626 Tf 11.727 0 Td [(K)]TJ/F8 9.9626 Tf 9.174 0 Td [(,)-346(tak)27(o)-343(da)-344(je)]TJ/F14 9.9626 Tf 53.299 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(D)-28(I)]TJ/F14 9.9626 Tf 13.686 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(I)-78(J)]TJ/F14 9.9626 Tf 11.644 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(J)-96(C)]TJ/F14 9.9626 Tf 14.315 0 Td [(j)]TJ/F8 9.9626 Tf 6.193 0 Td [(in)]TJ/F14 9.9626 Tf 11.726 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(B)-50(K)]TJ/F14 9.9626 Tf 17.23 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(K)-72(C)]TJ/F14 9.9626 Tf 17.007 0 Td [(j)]TJ/F8 9.9626 Tf 2.767 0 Td [(.)]TJ -231.798 -11.955 Td [(T)83(o)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 28.442 0 Td [(L)]TJ/F8 9.9626 Tf 9.761 0 Td [(je)-299(razp)-28(olo)28(vi)53(\024)447(s)28(\024)472(ce)-300(dalj)1(ico)]TJ/F11 9.9626 Tf 97.307 0 Td [(AI)]TJ/F8 9.9626 Tf 12.633 0 Td [(,)-306(to)28(\024)472(ck)55(a)]TJ/F11 9.9626 Tf 31.768 0 Td [(M)]TJ/F8 9.9626 Tf 13.732 0 Td [(pa)-299(razp)-28(o-)]TJ -193.643 -11.955 Td [(lo)28(vi)53(\024)447(s)28(\024)472(ce)-334(daljice)]TJ/F11 9.9626 Tf 62.876 0 Td [(LJ)]TJ/F8 9.9626 Tf 13.263 0 Td [(.)]TJ +0 g 0 G +/F77 9.9626 Tf -69.227 -19.422 Td [(a\051)]TJ +0 g 0 G +/F8 9.9626 Tf 15.006 0 Td [(Dana)-454(sta)-453(v)28(ektorja)]TJ/F14 9.9626 Tf 84.901 6.808 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AB)]TJ/F8 9.9626 Tf 20.292 0 Td [(=)]TJ/F11 9.9626 Tf 11.889 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 10.409 0 Td [(in)]TJ/F14 9.9626 Tf 12.821 6.808 Td [(\000)480(\000)481(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(C)]TJ/F8 9.9626 Tf 20.654 0 Td [(=)]TJ/F11 9.9626 Tf 11.394 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(.)-805(Izrazi)]TJ -177.754 -13.949 Td [(v)28(ektor)]TJ/F14 9.9626 Tf 30.746 6.807 Td [(\000)278(\000)278(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(M)-109(K)]TJ/F8 9.9626 Tf 23.246 0 Td [(z)-333(v)27(ektorjema)]TJ/F11 9.9626 Tf 58.627 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.21 0 Td [(in)]TJ/F11 9.9626 Tf 10.504 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(.)]TJ/F14 9.9626 Tf -67.624 -14.387 Td [(\000)278(\000)278(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(K)]TJ/F8 9.9626 Tf 22.693 0 Td [(=)]TJ 11.712 6.74 Td [(7)]TJ +ET +q +1 0 0 1 196.971 166.782 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 196.971 157.457 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F14 9.9626 Tf 8.104 0 Td [(\000)]TJ/F8 9.9626 Tf 11.158 6.74 Td [(1)]TJ +ET +q +1 0 0 1 221.786 166.782 cm +[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S +Q +BT +/F8 9.9626 Tf 221.786 157.457 Td [(4)]TJ/F11 9.9626 Tf 5.057 9.463 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(;)]TJ +0 g 0 G +/F77 9.9626 Tf -155.578 -24.414 Td [(b\051)]TJ +0 g 0 G +/F8 9.9626 Tf 15.802 0 Td [(Na)-56(j)-445(b)-28(osta)-446(bazna)-445(v)27(ektorja)]TJ/F14 9.9626 Tf 118.303 6.808 Td [(\000)579(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(LI)]TJ/F8 9.9626 Tf 16.575 0 Td [(=)]TJ/F11 9.9626 Tf 12.253 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 10.273 0 Td [(in)]TJ/F14 9.9626 Tf 12.742 6.808 Td [(\000)398(\000)398(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(LM)]TJ/F8 9.9626 Tf 22.165 0 Td [(=)]TJ/F11 9.9626 Tf 11.996 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.573 0 Td [(.)]TJ -209.88 -13.949 Td [(Izrazi)-333(v)27(ektorja)]TJ/F14 9.9626 Tf 66.197 6.807 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AD)]TJ/F8 9.9626 Tf 19.317 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.807 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AB)]TJ/F8 9.9626 Tf 18.85 0 Td [(z)-333(v)27(ektorjema)]TJ/F11 9.9626 Tf 59.122 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 9.152 0 Td [(in)]TJ/F11 9.9626 Tf 11.236 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.574 0 Td [(.)]TJ/F14 9.9626 Tf -164.571 -11.69 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AD)]TJ/F8 9.9626 Tf 18.764 0 Td [(=)-278(3)]TJ/F11 9.9626 Tf 15.369 0 Td [(~)487(u)]TJ/F14 9.9626 Tf 8.046 0 Td [(\000)]TJ/F8 9.9626 Tf 9.963 0 Td [(2)]TJ/F11 9.9626 Tf 4.594 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.573 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.807 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AB)]TJ/F8 9.9626 Tf 18.296 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 7.749 0 Td [(3)]TJ/F11 9.9626 Tf 4.853 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 8.045 0 Td [(+)-222(6)]TJ/F11 9.9626 Tf 14.557 0 Td [(~)461(v)]TJ +0 g 0 G +0 g 0 G +ET +1 0 0 1 316.766 149.606 cm +q +0 G +0 g +0.3985 w +q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +Q +q +0.59776 w +0 G +0 g +[ ] 0.0 d +1 0 0 rg 1 0 0 RG +0.0 0.0 m +0.0 0.0 l +170.08086 0.0 l +226.77448 113.38724 l +56.69362 113.38724 l +h +S +0 g 0 G +Q +q +0.59776 w +0 G +0 g +[ ] 0.0 d +0 0 1 rg 0 0 1 RG +0.0 0.0 m +0.0 0.0 m +113.38724 113.38724 l +S +0 g 0 G +Q +q +0.59776 w +0 G +0 g +[ ] 0.0 d +0 0 1 rg 0 0 1 RG +56.69362 56.69362 m +56.69362 56.69362 m +170.08086 113.38724 l +S +0 g 0 G +Q +q +0.59776 w +0 G +0 g +[ ] 0.0 d +0 0 1 rg 0 0 1 RG +113.38724 85.0404 m +113.38724 85.0404 m +198.42764 56.69362 l +S +0 g 0 G +Q +q +0 G +0 g +q +0 G +0 g +58.18803 113.38724 m +58.18803 114.21257 57.51895 114.88165 56.69362 114.88165 c +55.86827 114.88165 55.1992 114.21257 55.1992 113.38724 c +55.1992 112.56189 55.86827 111.89282 56.69362 111.89282 c +57.51895 111.89282 58.18803 112.56189 58.18803 113.38724 c +h +56.69362 113.38724 m +B +Q +q +1 0 0 1 56.693 113.386 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -56.693 -113.386 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +114.88165 113.38724 m +114.88165 114.21257 114.21257 114.88165 113.38724 114.88165 c +112.56189 114.88165 111.89282 114.21257 111.89282 113.38724 c +111.89282 112.56189 112.56189 111.89282 113.38724 111.89282 c +114.21257 111.89282 114.88165 112.56189 114.88165 113.38724 c +h +113.38724 113.38724 m +B +Q +q +1 0 0 1 113.386 113.386 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -113.386 -113.386 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +171.57527 113.38724 m +171.57527 114.21257 170.9062 114.88165 170.08086 114.88165 c +169.25551 114.88165 168.58644 114.21257 168.58644 113.38724 c +168.58644 112.56189 169.25551 111.89282 170.08086 111.89282 c +170.9062 111.89282 171.57527 112.56189 171.57527 113.38724 c +h +170.08086 113.38724 m +B +Q +q +1 0 0 1 170.079 113.386 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -170.079 -113.386 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +228.26889 113.38724 m +228.26889 114.21257 227.59982 114.88165 226.77448 114.88165 c +225.94913 114.88165 225.28006 114.21257 225.28006 113.38724 c +225.28006 112.56189 225.94913 111.89282 226.77448 111.89282 c +227.59982 111.89282 228.26889 112.56189 228.26889 113.38724 c +h +226.77448 113.38724 m +B +Q +q +1 0 0 1 226.772 113.386 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -226.772 -113.386 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +58.18803 56.69362 m +58.18803 57.51895 57.51895 58.18803 56.69362 58.18803 c +55.86827 58.18803 55.1992 57.51895 55.1992 56.69362 c +55.1992 55.86827 55.86827 55.1992 56.69362 55.1992 c +57.51895 55.1992 58.18803 55.86827 58.18803 56.69362 c +h +56.69362 56.69362 m +B +Q +q +1 0 0 1 56.693 56.693 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -56.693 -56.693 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +114.88165 85.0404 m +114.88165 85.86575 114.21257 86.53482 113.38724 86.53482 c +112.56189 86.53482 111.89282 85.86575 111.89282 85.0404 c +111.89282 84.21506 112.56189 83.54599 113.38724 83.54599 c +114.21257 83.54599 114.88165 84.21506 114.88165 85.0404 c +h +113.38724 85.0404 m +B +Q +q +1 0 0 1 113.386 85.039 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -113.386 -85.039 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +199.92206 56.69362 m +199.92206 57.51895 199.25299 58.18803 198.42764 58.18803 c +197.6023 58.18803 196.93323 57.51895 196.93323 56.69362 c +196.93323 55.86827 197.6023 55.1992 198.42764 55.1992 c +199.25299 55.1992 199.92206 55.86827 199.92206 56.69362 c +h +198.42764 56.69362 m +B +Q +q +1 0 0 1 198.425 56.693 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -198.425 -56.693 cm +Q +Q +q +0 G +0 g +q +0 G +0 g +1.49442 0.0 m +1.49442 0.82533 0.82533 1.49442 0.0 1.49442 c +-0.82533 1.49442 -1.49442 0.82533 -1.49442 0.0 c +-1.49442 -0.82533 -0.82533 -1.49442 0.0 -1.49442 c +0.82533 -1.49442 1.49442 -0.82533 1.49442 0.0 c +h +0.0 0.0 m +B +Q +q +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +Q +Q +q +0 G +0 g +q +0 G +0 g +171.57527 0.0 m +171.57527 0.82533 170.9062 1.49442 170.08086 1.49442 c +169.25551 1.49442 168.58644 0.82533 168.58644 0.0 c +168.58644 -0.82533 169.25551 -1.49442 170.08086 -1.49442 c +170.9062 -1.49442 171.57527 -0.82533 171.57527 0.0 c +h +170.08086 0.0 m +B +Q +q +1 0 0 1 170.079 0 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +Q +1 0 0 1 -170.079 0 cm +Q +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 60.213 103.058 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -376.979 -252.664 cm +BT +/F11 9.9626 Tf 376.979 252.664 Td [(D)]TJ +0 g 0 G +ET +1 0 0 1 376.979 252.664 cm +Q +1 0 0 1 -60.213 -103.058 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 116.906 103.058 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -433.672 -252.664 cm +BT +/F11 9.9626 Tf 433.672 252.664 Td [(I)]TJ +0 g 0 G +ET +1 0 0 1 433.672 252.664 cm +Q +1 0 0 1 -116.906 -103.058 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 173.599 103.058 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -490.365 -252.664 cm +BT +/F11 9.9626 Tf 490.365 252.664 Td [(J)]TJ +0 g 0 G +ET +1 0 0 1 490.365 252.664 cm +Q +1 0 0 1 -173.599 -103.058 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 230.291 103.058 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -547.057 -252.664 cm +BT +/F11 9.9626 Tf 547.057 252.664 Td [(C)]TJ +0 g 0 G +ET +1 0 0 1 547.057 252.664 cm +Q +1 0 0 1 -230.291 -103.058 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 60.213 46.365 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -376.979 -195.971 cm +BT +/F11 9.9626 Tf 376.979 195.971 Td [(L)]TJ +0 g 0 G +ET +1 0 0 1 376.979 195.971 cm +Q +1 0 0 1 -60.213 -46.365 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 116.906 74.712 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -433.672 -224.318 cm +BT +/F11 9.9626 Tf 433.672 224.318 Td [(M)]TJ +0 g 0 G +ET +1 0 0 1 433.672 224.318 cm +Q +1 0 0 1 -116.906 -74.712 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 201.945 46.365 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -518.711 -195.971 cm +BT +/F11 9.9626 Tf 518.711 195.971 Td [(K)]TJ +0 g 0 G +ET +1 0 0 1 518.711 195.971 cm +Q +1 0 0 1 -201.945 -46.365 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 3.52 -10.328 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -320.286 -139.278 cm +BT +/F11 9.9626 Tf 320.286 139.278 Td [(A)]TJ +0 g 0 G +ET +1 0 0 1 320.286 139.278 cm +Q +1 0 0 1 -3.52 10.328 cm +Q +0 g 0 G +Q +q +0 g 0 G +q +0 g 0 G +0 g 0 G +Q +q +1 0 0 1 173.599 -10.328 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm +q +0 G +0 g +0 g 0 G +1 0 0 1 -490.365 -139.278 cm +BT +/F11 9.9626 Tf 490.365 139.278 Td [(B)]TJ +0 g 0 G +ET +1 0 0 1 490.365 139.278 cm +Q +1 0 0 1 -173.599 10.328 cm +Q +0 g 0 G +Q +Q +n +Q +0 g 0 G +1 0 0 1 -316.766 -149.606 cm +BT +/F8 9.9626 Tf 295.147 43.246 Td [(1)]TJ +0 g 0 G +ET + +endstream +endobj +43 0 obj +<< +/D [ 38 0 R /XYZ 44.638000 830.996000 null ] +>> +endobj +44 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 793.134000 null ] +>> +endobj +45 0 obj +<< +/Type /Font +/BaseFont /DMPNDY+CMR17 +/FirstChar 20 +/FontDescriptor 116 0 R +/LastChar 124 +/Subtype /Type1 +/Widths 100 0 R +>> +endobj +46 0 obj +<< +/Type /Font +/BaseFont /RLYLLI+CMR12 +/FirstChar 20 +/FontDescriptor 114 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 99 0 R +>> +endobj +47 0 obj +<< +/Type /Font +/BaseFont /OLUUSQ+CMBX12 +/FirstChar 20 +/FontDescriptor 104 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 98 0 R +>> +endobj +48 0 obj +<< +/Type /Font +/BaseFont /HJGMPZ+CMBX9 +/FirstChar 80 +/FontDescriptor 106 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 97 0 R +>> +endobj +49 0 obj +<< +/Type /Font +/BaseFont /SJNHCC+CMR9 +/FirstChar 20 +/FontDescriptor 124 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 96 0 R +>> +endobj +50 0 obj +<< +/Type /Font +/BaseFont /FOJGQS+CMTI9 +/FirstChar 44 +/FontDescriptor 128 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 95 0 R +>> +endobj +51 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 578.876000 null ] +>> +endobj +52 0 obj +<< +/Type /Font +/BaseFont /ZOXHGW+CMBX10 +/FirstChar 20 +/FontDescriptor 102 0 R +/LastChar 117 +/Subtype /Type1 +/Widths 94 0 R +>> +endobj +53 0 obj +<< +/Type /Font +/BaseFont /FWTCDB+CMBXTI10 +/FirstChar 50 +/FontDescriptor 108 0 R +/LastChar 116 +/Subtype /Type1 +/Widths 93 0 R +>> +endobj +54 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 475.492000 null ] +>> +endobj +55 0 obj +<< +/Type /Font +/BaseFont /XGGYUK+CMR10 +/FirstChar 12 +/FontDescriptor 112 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 92 0 R +>> +endobj +56 0 obj +<< +/Type /Font +/BaseFont /ZOBLSI+CMMI10 +/FirstChar 65 +/FontDescriptor 110 0 R +/LastChar 126 +/Subtype /Type1 +/Widths 91 0 R +>> +endobj +57 0 obj +<< +/Type /Font +/BaseFont /OAQJWM+CMSY10 +/FirstChar 0 +/FontDescriptor 126 0 R +/LastChar 106 +/Subtype /Type1 +/Widths 90 0 R +>> +endobj +58 0 obj +<< +/Type /Font +/BaseFont /ZRYLLV+CMR7 +/FirstChar 49 +/FontDescriptor 120 0 R +/LastChar 65 +/Subtype /Type1 +/Widths 89 0 R +>> +endobj +59 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 402.234000 null ] +>> +endobj +60 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 333.530000 null ] +>> +endobj +61 0 obj +<< +/D [ 38 0 R /XYZ 45.638000 261.836000 null ] +>> +endobj +62 0 obj +<< +/D [ 38 0 R /XYZ 70.544000 211.915000 null ] +>> +endobj +63 0 obj +<< +/D [ 38 0 R /XYZ 70.544000 152.357000 null ] +>> +endobj +64 0 obj +<< +/Type /Pages +/Count 2 +/Kids [ 38 0 R 72 0 R ] +>> +endobj +65 0 obj +<< +/Type /Annot +/A << +/D (Hfootnote.1) +/S /GoTo +>> +/Border [ 0 0 0 ] +/C [ 1 0 0 ] +/H /I +/Rect [ 508.854000 758.209000 515.316000 770.456000 ] +/Subtype /Link +>> +endobj +66 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec.eu/sijanec/sola-gimb-2) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 485.877000 746.185000 550.634000 757.310000 ] +/Subtype /Link +>> +endobj +67 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec/sola-gimb-2/src/branch/master/mat/domace_naloge/21/) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 237.402000 733.953000 350.356000 745.908000 ] +/Subtype /Link +>> +endobj +68 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (http://razor.arnes.si/~asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.pdf) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 140.675000 722.275000 550.634000 733.400000 ] +/Subtype /Link +>> +endobj +69 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/mat/domace_naloge/21/dokument.pdf) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 88.560000 710.043000 550.634000 721.998000 ] +/Subtype /Link +>> +endobj +70 0 obj +<< +/Type /Annot +/A << +/D (Hfootnote.2) +/S /GoTo +>> +/Border [ 0 0 0 ] +/C [ 1 0 0 ] +/H /I +/Rect [ 330.044000 608.009000 336.506000 620.048000 ] +/Subtype /Link +>> +endobj +71 0 obj +<< +/ColorSpace 3 0 R +/ExtGState 1 0 R +/Font << +/F40 75 0 R +/F45 82 0 R +/F46 80 0 R +/F60 83 0 R +/F7 58 0 R +/F71 47 0 R +/F8 55 0 R +>> +/Pattern 2 0 R +/ProcSet [ /PDF /Text ] +>> +endobj +72 0 obj +<< +/Type /Page +/Annots [ 65 0 R 66 0 R 76 0 R 67 0 R 68 0 R 77 0 R 69 0 R 78 0 R 70 0 R ] +/Contents 73 0 R +/MediaBox [ 0 0 595.276000 841.890000 ] +/Parent 64 0 R +/Resources 71 0 R +>> +endobj +73 0 obj +<< +/Length 3869 +>> +stream +0 g 0 G +0 g 0 G +BT +/F71 14.3462 Tf 45.638 783.171 Td [(2)-1125(Zaklju)31(\024)531(cek)]TJ/F8 9.9626 Tf 0 -21.821 Td [(T)83(a)-375(dokumen)28(t)-376(je)-376(infor)1(m)-1(ati)1(vne)-376(nara)28(v)28(e)-376(in)-376(se)-375(lahk)28(o)-323(\024)447(se)-376(spreminja.)-571(Na)-55(jno)27(v)28(ej)53(\024)447(sa)-375(razli)27(\024)473(cica,)-387(torej)-375(PDFji)-376(in)-375(L)]TJ/F7 6.9738 Tf 441.285 2.043 Td [(A)]TJ/F8 9.9626 Tf 4.386 -2.043 Td [(T)]TJ 5.535 -2.144 Td [(E)]TJ 5.534 2.144 Td [(X)]TJ/F7 6.9738 Tf 7.472 3.616 Td [(1)]TJ/F8 9.9626 Tf 8.212 -3.616 Td [(izv)28(orna)]TJ -472.424 -11.955 Td [(k)28(o)-28(da,)-481(zgo)-28(do)28(vina)-451(spremem)28(b)-452(in)-451(prej)53(\024)447(snje)-451(razli)27(\024)473(cice,)-481(je)-452(na)-451(v)28(oljo)-451(v)-452(mo)-55(jem)-399(\024)447(solsk)28(em)-451(Git)-452(rep)-28(ozitorij)1(u)-452(na)]TJ/F40 9.9626 Tf 441.236 0 Td [(https://git.)]TJ -441.236 -11.955 Td [(sijanec.eu/sijanec/sola-)-50(gimb-)-50(2)]TJ/F8 9.9626 Tf 160.576 0 Td [(v)-268(mapi)-268(/mat/domace)]TJ +ET +q +1 0 0 1 298.772 737.639 cm +[]0 d 0 J 0.398 w 0 0 m 2.989 0 l S +Q +BT +/F8 9.9626 Tf 301.76 737.44 Td [(naloge/21/.)-423(P)28(o)28(v)28(eza)27(v)56(a)-268(za)-268(ogled)-268(zadnje)-268(razli)28(\024)472(cice)-268(tega)-268(doku-)]TJ -256.122 -11.955 Td [(men)28(ta)-231(v)-231(PDF)-230(obliki)-231(je)]TJ/F40 9.9626 Tf 96.033 0 Td [(http://razor.arnes.si/)]TJ 115.068 -1.93 Td [(~)]TJ 5.23 1.93 Td [(asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.)]TJ -216.331 -11.955 Td [(pdf)]TJ/F8 9.9626 Tf 17.905 0 Td [(in/ali)]TJ/F40 9.9626 Tf 26.013 0 Td [(https://git.sijanec.eu/sijanec/sola-)-50(gimb-)-50(2/raw/branch/master/mat/domace_naloge/21/dokument.)]TJ -43.918 -11.956 Td [(pdf)]TJ/F8 9.9626 Tf 15.691 0 Td [(.)]TJ/F71 14.3462 Tf -15.691 -32.945 Td [(Razhro)59(\024)504(s)31(\024)531(cev)63(alne)-375(inf)-1(orma)1(cij)-1(e)]TJ/F8 9.9626 Tf 0 -21.821 Td [(T)83(e)-307(informacije)-307(so)-307(generirane,)-313(k)28(er)-307(je)-307(omogo)28(\024)472(ceno)-307(razhro)52(\024)448(s)27(\024)473(ce)-1(v)56(anje.)-436(Pred)-307(ob)-55(ja)28(v)27(o)-307(dokumen)28(ta)-307(izklopite)-307(razhro)53(\024)447(s)28(\024)472(cev)55(anje.)-435(T)83(o)]TJ 0 -11.955 Td [(naredite)-333(tak)28(o,)-334(da)-333(nasta)28(vite)-334(uk)56(az)]TJ/F40 9.9626 Tf 143.158 0 Td [(razhroscevanje)]TJ/F8 9.9626 Tf 76.545 0 Td [(na)-333(0)-334(v)-333(za)28(\024)472(cetku)-333(dokumen)27(ta.)]TJ -204.759 -11.956 Td [(Gra\014)-333(ima)-56(jo)-333(natan)28(\024)472(cnost)-333(100)-334(to)28(\024)472(ck)-333(na)-333(graf.)]TJ 0 -11.955 Td [(Konec)-333(generiranja)-334(doku)1(m)-1(en)28(ta:)-444(20.)-333(dec)-1(em)28(b)-28(er)-333(2020)-333(ob)-334(00:23:37)]TJ/F7 6.9738 Tf 270.458 3.616 Td [(2)]TJ/F8 9.9626 Tf -270.458 -15.571 Td [(Dokumen)28(t)-334(se)-333(je)-333(generiral)-334(R0qK1KR2)-333(s.)]TJ +0 g 0 G +ET +q +1 0 0 1 45.638 101.61 cm +[]0 d 0 J 0.398 w 0 0 m 201.597 0 l S +Q +BT +/F46 5.9776 Tf 56.73 94.968 Td [(1)]TJ/F45 7.9701 Tf 4.151 -2.813 Td [(Za)-354(izdela)29(v)30(o)-354(dokumen)29(ta)-354(p)-29(otrebujete)]TJ/F60 7.9701 Tf 133.384 0 Td [(TeXLive)-531(2020)]TJ/F45 7.9701 Tf 50.81 0 Td [(.)]TJ/F46 5.9776 Tf -188.345 -6.691 Td [(2)]TJ/F45 7.9701 Tf 4.151 -2.813 Td [(T)89(o)-350(ne)-349(nak)59(azuje)-350(dejansk)30(ega)-320(\024)502(casa,)-351(k)30(o)-350(je)-349(bil)-350(dokumen)30(t)-350(napisan,)-350(tem)29(v)30(e)29(\024)502(c)-320(\024)502(cas,)-350(k)29(o)-349(je)-350(bi)-349(dokumen)29(t)-349(generiran)-350(v)-349(PDF/D)29(VI)-349(oblik)29(o.)-470(Isto)-350(v)30(elja)]TJ -15.243 -9.465 Td [(za)-354(datum)-354(v)-354(gla)29(vi)-354(dokumen)30(ta.)]TJ 113.147 2.015 Td [(\024)]TJ -0.941 -2.015 Td [(Ce)-354(b)-30(erete)-354(direktno)-354(iz)-354(LaT)88(eX)-354(datotek)30(e,)-354(b)-30(o)-354(to)-354(v)29(edno)-354(dana)56(\024)476(snji)-355(da)1(tum)-1(.)]TJ +0 g 0 G +0 g 0 G +/F8 9.9626 Tf 137.303 -29.94 Td [(2)]TJ +0 g 0 G +ET + +endstream +endobj +74 0 obj +<< +/D [ 72 0 R /XYZ 44.638000 830.996000 null ] +>> +endobj +75 0 obj +<< +/Type /Font +/BaseFont /IJKLSG+CMTT10 +/FirstChar 45 +/FontDescriptor 130 0 R +/LastChar 126 +/Subtype /Type1 +/Widths 88 0 R +>> +endobj +76 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec.eu/sijanec/sola-gimb-2) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 44.642000 733.953000 204.541000 745.908000 ] +/Subtype /Link +>> +endobj +77 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (http://razor.arnes.si/~asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.pdf) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 44.642000 710.043000 62.325000 721.998000 ] +/Subtype /Link +>> +endobj +78 0 obj +<< +/Type /Annot +/A << +/Type /Action +/S /URI +/URI (https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/mat/domace_naloge/21/dokument.pdf) +>> +/Border [ 0 0 0 ] +/C [ 0 1 1 ] +/H /I +/Rect [ 44.642000 698.364000 62.325000 708.659000 ] +/Subtype /Link +>> +endobj +79 0 obj +<< +/D [ 72 0 R /XYZ 45.638000 686.561000 null ] +>> +endobj +80 0 obj +<< +/Type /Font +/BaseFont /XTJZVU+CMR6 +/FirstChar 49 +/FontDescriptor 118 0 R +/LastChar 50 +/Subtype /Type1 +/Widths 87 0 R +>> +endobj +81 0 obj +<< +/D [ 72 0 R /XYZ 60.881000 101.620000 null ] +>> +endobj +82 0 obj +<< +/Type /Font +/BaseFont /TPJKYX+CMR8 +/FirstChar 20 +/FontDescriptor 122 0 R +/LastChar 122 +/Subtype /Type1 +/Widths 86 0 R +>> +endobj +83 0 obj +<< +/Type /Font +/BaseFont /ISIMRT+CMTT8 +/FirstChar 48 +/FontDescriptor 132 0 R +/LastChar 118 +/Subtype /Type1 +/Widths 85 0 R +>> +endobj +84 0 obj +<< +/D [ 72 0 R /XYZ 60.881000 92.115000 null ] +>> +endobj +85 0 obj +[ 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 +531.300000 ] +endobj +86 0 obj +[ 531.300000 531.300000 531.300000 795.800000 472.200000 531.300000 767.400000 826.400000 531.300000 958.700000 +1076.800000 826.400000 295.100000 295.100000 531.300000 885.400000 531.300000 885.400000 826.400000 295.100000 +413.200000 413.200000 531.300000 826.400000 295.100000 354.200000 295.100000 531.300000 531.300000 531.300000 +531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 295.100000 295.100000 +295.100000 826.400000 501.700000 501.700000 826.400000 795.800000 752.100000 767.400000 811.100000 722.600000 +693.100000 833.500000 795.800000 382.600000 545.500000 825.400000 663.600000 972.900000 795.800000 826.400000 +722.600000 826.400000 781.600000 590.300000 767.400000 795.800000 795.800000 1091 795.800000 795.800000 +649.300000 295.100000 531.300000 295.100000 531.300000 295.100000 295.100000 531.300000 590.300000 472.200000 +590.300000 472.200000 324.700000 531.300000 590.300000 295.100000 324.700000 560.800000 295.100000 885.400000 +590.300000 531.300000 590.300000 560.800000 414.100000 419.100000 413.200000 590.300000 560.800000 767.400000 +560.800000 560.800000 472.200000 ] +endobj +87 0 obj +[ 611.100000 611.100000 ] +endobj +88 0 obj +[ 525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 525 525 525 525 525 525 525 525 +525 525 ] +endobj +89 0 obj +[ 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 323.400000 +323.400000 323.400000 877 538.700000 538.700000 877 843.300000 ] +endobj +90 0 obj +[ 777.800000 277.800000 777.800000 500 777.800000 500 777.800000 777.800000 777.800000 777.800000 +777.800000 777.800000 777.800000 1000 500 500 777.800000 777.800000 777.800000 777.800000 +777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 1000 1000 +777.800000 777.800000 1000 1000 500 500 1000 1000 1000 777.800000 +1000 1000 611.100000 611.100000 1000 1000 1000 777.800000 275 1000 +666.700000 666.700000 888.900000 888.900000 0 0 555.600000 555.600000 666.700000 500 +722.200000 722.200000 777.800000 777.800000 611.100000 798.500000 656.800000 526.500000 771.400000 527.800000 +718.700000 594.900000 844.500000 544.500000 677.800000 762 689.700000 1200.900000 820.500000 796.100000 +695.600000 816.700000 847.500000 605.600000 544.600000 625.800000 612.800000 987.800000 713.300000 668.300000 +724.700000 666.700000 666.700000 666.700000 666.700000 666.700000 611.100000 611.100000 444.400000 444.400000 +444.400000 444.400000 500 500 388.900000 388.900000 277.800000 ] +endobj +91 0 obj +[ 750 758.500000 714.700000 827.900000 738.200000 643.100000 786.300000 831.300000 439.600000 554.500000 +849.300000 680.600000 970.100000 803.500000 762.800000 642 790.600000 759.300000 613.200000 584.400000 +682.800000 583.300000 944.400000 828.500000 580.600000 682.600000 388.900000 388.900000 388.900000 1000 +1000 416.700000 528.600000 429.200000 432.800000 520.500000 465.600000 489.600000 477 576.200000 +344.500000 411.800000 520.600000 298.400000 878 600.200000 484.700000 503.100000 446.400000 451.200000 +468.800000 361.100000 572.500000 484.700000 715.900000 571.500000 490.300000 465.100000 322.500000 384 +636.500000 500 ] +endobj +92 0 obj +[ 555.600000 555.600000 833.300000 833.300000 277.800000 305.600000 500 500 500 500 +500 750 444.400000 500 722.200000 777.800000 500 902.800000 1013.900000 777.800000 +277.800000 277.800000 500 833.300000 500 833.300000 777.800000 277.800000 388.900000 388.900000 +500 777.800000 277.800000 333.300000 277.800000 500 500 500 500 500 +500 500 500 500 500 500 277.800000 277.800000 277.800000 777.800000 +472.200000 472.200000 777.800000 750 708.300000 722.200000 763.900000 680.600000 652.800000 784.700000 +750 361.100000 513.900000 777.800000 625 916.700000 750 777.800000 680.600000 777.800000 +736.100000 555.600000 722.200000 750 750 1027.800000 750 750 611.100000 277.800000 +500 277.800000 500 277.800000 277.800000 500 555.600000 444.400000 555.600000 444.400000 +305.600000 500 555.600000 277.800000 305.600000 527.800000 277.800000 833.300000 555.600000 500 +555.600000 527.800000 391.700000 394.400000 388.900000 555.600000 527.800000 722.200000 527.800000 527.800000 +444.400000 ] +endobj +93 0 obj +[ 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 355.600000 355.600000 +386.100000 885.500000 591.100000 591.100000 885.500000 865.500000 816.700000 826.700000 875.500000 756.700000 +727.200000 895.300000 896.100000 471.700000 610.600000 895 697.800000 1072.800000 896.100000 855 +787.200000 855 859.400000 650 796.100000 880.800000 865.500000 1160 865.500000 865.500000 +708.900000 356.100000 620.600000 356.100000 591.100000 355.600000 355.600000 591.100000 532.200000 532.200000 +591.100000 532.200000 400 532.200000 591.100000 355.600000 355.600000 532.200000 296.700000 944.400000 +650 591.100000 591.100000 532.200000 501.700000 486.900000 385 ] +endobj +94 0 obj +[ 575 575 575 869.400000 511.100000 597.200000 830.600000 894.400000 575 1041.700000 +1169.400000 894.400000 319.400000 350 602.800000 958.300000 575 958.300000 894.400000 319.400000 +447.200000 447.200000 575 894.400000 319.400000 383.300000 319.400000 575 575 575 +575 575 575 575 575 575 575 575 319.400000 319.400000 +350 894.400000 543.100000 543.100000 894.400000 869.400000 818.100000 830.600000 881.900000 755.600000 +723.600000 904.200000 900 436.100000 594.400000 901.400000 691.700000 1091.700000 900 863.900000 +786.100000 863.900000 862.500000 638.900000 800 884.700000 869.400000 1188.900000 869.400000 869.400000 +702.800000 319.400000 602.800000 319.400000 575 319.400000 319.400000 559 638.900000 511.100000 +638.900000 527.100000 351.400000 575 638.900000 319.400000 351.400000 606.900000 319.400000 958.300000 +638.900000 575 638.900000 606.900000 473.600000 453.600000 447.200000 638.900000 ] +endobj +95 0 obj +[ 314.800000 367.300000 314.800000 524.700000 524.700000 524.700000 524.700000 524.700000 524.700000 524.700000 +524.700000 524.700000 524.700000 524.700000 314.800000 314.800000 314.800000 787 524.700000 524.700000 +787 763 722.500000 734.600000 775 696.300000 670.100000 794.100000 763 395.700000 +538.900000 789.200000 643.800000 920.400000 763 787 696.300000 787 748.800000 577.200000 +734.600000 763 763 1025.300000 763 763 629.600000 314.800000 527.800000 314.800000 +524.700000 314.800000 314.800000 524.700000 472.200000 472.200000 524.700000 472.200000 314.800000 472.200000 +524.700000 314.800000 314.800000 472.200000 262.300000 839.500000 577.200000 524.700000 524.700000 472.200000 +432.900000 419.800000 341.100000 550.900000 472.200000 682.100000 473.800000 498.500000 419.800000 ] +endobj +96 0 obj +[ 513.900000 513.900000 513.900000 770.700000 456.800000 513.900000 742.300000 799.400000 513.900000 927.800000 +1042 799.400000 285.500000 285.500000 513.900000 856.500000 513.900000 856.500000 799.400000 285.500000 +399.700000 399.700000 513.900000 799.400000 285.500000 342.600000 285.500000 513.900000 513.900000 513.900000 +513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 285.500000 285.500000 +285.500000 799.400000 485.300000 485.300000 799.400000 770.700000 727.900000 742.300000 785 699.400000 +670.800000 806.500000 770.700000 371 528.100000 799.200000 642.300000 942 770.700000 799.400000 +699.400000 799.400000 756.500000 571 742.300000 770.700000 770.700000 1056.200000 770.700000 770.700000 +628.100000 285.500000 513.900000 285.500000 513.900000 285.500000 285.500000 513.900000 571 456.800000 +571 457.200000 314 513.900000 571 285.500000 314 542.400000 285.500000 856.500000 +571 513.900000 571 542.400000 402 405.400000 399.700000 571 542.400000 742.300000 +542.400000 542.400000 456.800000 ] +endobj +97 0 obj +[ 808 888.900000 886.700000 657.400000 823.100000 908.600000 892.900000 1221.600000 892.900000 892.900000 +723.100000 328.700000 617.600000 328.700000 591.700000 328.700000 328.700000 575.200000 657.400000 525.900000 +657.400000 543 361.600000 591.700000 657.400000 328.700000 361.600000 624.500000 328.700000 986.100000 +657.400000 591.700000 657.400000 624.500000 488.100000 466.800000 460.200000 657.400000 624.500000 854.600000 +624.500000 624.500000 525.900000 ] +endobj +98 0 obj +[ 562.500000 562.500000 562.500000 849.500000 500 574.100000 812.500000 875 562.500000 1018.500000 +1143.500000 875 312.500000 342.600000 581 937.500000 562.500000 937.500000 875 312.500000 +437.500000 437.500000 562.500000 875 312.500000 375 312.500000 562.500000 562.500000 562.500000 +562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 312.500000 312.500000 +342.600000 875 531.200000 531.200000 875 849.500000 799.800000 812.500000 862.300000 738.400000 +707.200000 884.300000 879.600000 419 581 880.800000 675.900000 1067.100000 879.600000 844.900000 +768.500000 844.900000 839.100000 625 782.400000 864.600000 849.500000 1162 849.500000 849.500000 +687.500000 312.500000 581 312.500000 562.500000 312.500000 312.500000 546.900000 625 500 +625 513.300000 343.700000 562.500000 625 312.500000 343.700000 593.700000 312.500000 937.500000 +625 562.500000 625 593.700000 459.500000 443.700000 437.500000 625 593.700000 812.500000 +593.700000 593.700000 500 ] +endobj +99 0 obj +[ 489.600000 489.600000 489.600000 734 435.200000 489.600000 707.200000 761.600000 489.600000 883.800000 +992.600000 761.600000 272 272 489.600000 816 489.600000 816 761.600000 272 +380.800000 380.800000 489.600000 761.600000 272 326.400000 272 489.600000 489.600000 489.600000 +489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 272 272 +272 761.600000 462.400000 462.400000 761.600000 734 693.400000 707.200000 747.800000 666.200000 +639 768.300000 734 353.200000 503 761.200000 611.800000 897.200000 734 761.600000 +666.200000 761.600000 720.600000 544 707.200000 734 734 1006 734 734 +598.400000 272 489.600000 272 489.600000 272 272 489.600000 544 435.200000 +544 435.200000 299.200000 489.600000 544 272 299.200000 516.800000 272 816 +544 489.600000 544 516.800000 380.800000 386.200000 380.800000 544 516.800000 707.200000 +516.800000 516.800000 435.200000 ] +endobj +100 0 obj +[ 458.600000 458.600000 458.600000 693.300000 406.400000 458.600000 667.600000 719.800000 458.600000 837.200000 +941.700000 719.800000 249.600000 249.600000 458.600000 772.100000 458.600000 772.100000 719.800000 249.600000 +354.100000 354.100000 458.600000 719.800000 249.600000 301.900000 249.600000 458.600000 458.600000 458.600000 +458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 249.600000 249.600000 +249.600000 719.800000 432.500000 432.500000 719.800000 693.300000 654.300000 667.600000 706.600000 628.200000 +602.100000 726.300000 693.300000 327.600000 471.500000 719.400000 576 850 693.300000 719.800000 +628.200000 719.800000 680.500000 510.900000 667.600000 693.300000 693.300000 954.500000 693.300000 693.300000 +563.100000 249.600000 458.600000 249.600000 458.600000 249.600000 249.600000 458.600000 510.900000 406.400000 +510.900000 406.400000 275.800000 458.600000 510.900000 249.600000 275.800000 484.700000 249.600000 772.100000 +510.900000 458.600000 510.900000 484.700000 354.100000 359.400000 354.100000 510.900000 484.700000 667.600000 +484.700000 484.700000 406.400000 458.600000 917.200000 ] +endobj +101 0 obj +<< +/Length 14262 +/Length1 1854 +/Length2 12408 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMBX10 003.002 +%%Title: CMBX10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMBX10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMBX10 known{/CMBX10 findfont dup/UniqueID known{dup +/UniqueID get 5000768 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /ZOXHGW+CMBX10 def +/FontBBox {-56 -250 1164 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX10.) readonly def +/FullName (CMBX10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Bold) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 86 /V put +dup 90 /Z put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 58 /colon put +dup 44 /comma put +dup 101 /e put +dup 53 /five put +dup 52 /four put +dup 103 /g put +dup 45 /hyphen put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 110 /n put +dup 57 /nine put +dup 111 /o put +dup 49 /one put +dup 41 /parenright put +dup 46 /period put +dup 114 /r put +dup 115 /s put +dup 54 /six put +dup 116 /t put +dup 51 /three put +dup 50 /two put +dup 117 /u put +dup 48 /zero put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{=מ7ڄĒKV"~Pr-=L$wcrlVcN &'{%Gf#ɨ_i#SXd+U*|:1m=⾝~6/aGLf#NOS}ERs{[.-jj|tm\: x8PbPh[_9t237,I2B8J0msUWQdX!??Q4eRH ]ӊ.p_?8:o:UuDZ[m^/a4l4ȒtL<~&WwLa9gPqhQΠjv)]sqR"ЯDž#eZKPHrF"tw;*l5 FF BW1S!2*`8:XlUI?[wc &Z`ѩް sdHeF'*s ЁTd9Baऋ[a$g1f\0 7aR^(Lj#!mw2#nr$|TL]{X`4.Gw|P2BgܴwbkF Nfj;d?#l"+6g{* ,SQ2&'n\`]Q:ݹ6ln0b9m],/ڨ\Y$6[+UE#ƸMO( ϲ.DL\*@z3'&Е62%+(k`D/k(ɒkpt`^Bձ\H~Y_˒c%~(! +Jvs}9qw{6sΓM &Q-p'&M&7tZ\r|5M5"*<ΕD,Lfj+ʾɝ"x0h#u[@}"փ +dIE* , j]v.tx kEYl}d.-eJ C=KD jnI"yX D|&k>ixbu?ѱ ,VszAc  G 7H`Ď'Ķ)r +ҎG֯Z~C +U. EC3}henħE!C[xxnCq##Ti.iW/i*?K`ɞ}g;ο@>Hmn91-[ tj7 3Myz,?Z@RPBi>vVF\Ahko8*NIQv94z4m n8)Db]ٞ>=e3Q-'0y#JW 0݈7\t53=μغ|[R>5Ir xhhy!kVSȮ7I ThaToɁ( WdsUI=]әM|dJ\YRGy4d(N{"l\ ]kȮ8V +A==r V^*mx(e=\ʰ!Bb8йX ֙Mاi +p)r ~1 ׏<;d,^6f,PpΨ|kR87>i e ^NҢ@h`[BF,L%mUBe*$nox3K V$[[fU;4Qjggo !%Uh(ԝ 2ן, O[Ј_\?Wt<ȅ/; "Rm®)E\rW1 ђoy։)B̊\@gJ?m Eqqٔ84^Da97 㤸{ɧZ!_`-rlُ*qٺ؊t LCg +:nbJ Lqrj5^9NRVJ7en%ϰYƕut4ƸF΋ėvQj6%c#~ O e҉'aS1e F u s^i"yw,~ C~Rƒ`,j"+ȬKk Q5IjEbT)">wv|$.4*@s? +ipb\r 9AZx; +~c/Hϫ+%Bm-7 S2*Eoq;ջ/6[ LoT F>=8$d�otu[QEU!\ސswE6W׍ Q8 < %xl& +~Bh=F"2\],ӱ@re(lF*ŊY7ٍ` pS?%i|ˋt|[b<7M=7snѪw24ׅd/bD~[)g43G&/pN%;t :p }wM/{ Ϭ0.bj!Z@< zyl)" KUmoҙ2c})z:<ۄF oŃGLyT7;$^>,Y.Fܔ%Gj,&U&S0Sg\+h8.!ɧ?4}+dC֡;GľZ#AeqE>RL K@$|DW/PN^Е3*0KƷ)}JMg"$58_gCs2C7,K՞?λ)效4 1#oIXcP~1 a^46Ӕ)jOa a ^oy^&9ߗǫ%<mLLN9y a)U)D.?9f4R2X w#_RzZu)q{ 3hSߛPDŒx)8%֗Q]9 rf!:wn; @AK ?gNq48)ďT cݨRSK:k4S};3<ʵ< SU^΋opf"5@A bq]W*VOMt,Sg__]0-GXz+G|f_r]EGaqۜgm ]Mnv(D/LbdR;G??aJVTy^ۭgm~`Z2Ј|{AJcQR qnd(ۜyoD`TJCHzRaPהxƜC@Mp<[0?e;ZT+R[kgϧa"q^b *r|::VNBOUzHbaGDH$6$4tLJb +INIC֜qa.K,ƭ >Cy +l7'mf &o1:i҅u meNπ@1; BB}Z(P3>f`mwyج]}L0qoJ 4VCBBLx1s_(\2ZZ. +G?eu8 3p8Dq,ƾ&[3M st/ϪT ;C;]DDu0 դQ[=zʥP*KCUqk#?k )M GRWI "RY7Wư0+@γTNT?aJxy~8up| ?5$[)sNd<#UM(8 bEQHt.f6֡U3=a^~C]䨀2"nC_FJ82{[c1 fXɉ{IڅF ʨ0GON :bպF3ܞ_(8::`xyVZ$݊gFԶܛbHQ[Щ!oݛ "(4m;>QEW;+/f|<<*im${TL֝*\!1 -m~8aeTpc\'gխf7!%;gNs(rkӝQ'1r4ǘKD^Fy@zEoUd9YBr?SU8ܹ/]~CINp`&$/sau:2]zDt*IWbc|[1y@H וOD8R8BŮ1$CG?jMt&Ic7t!DG5RyXv[!y#M+^e+i@sշu3VN4P{iSъW3<9xbt3DB^(x;OL#Л0ٚ?xNpK<9V́`Y-Q? ;~f㸓$oW6CDaxdU/a65bnof=7c8H%蠛 sIn^~L7 Bz @ˑ>9YCFF(<T^ɨ)aI=X4 +@;TE76c,P\R<SQ<"%;S_qy j8~%#Þ %~;QcK B-|IeNRQʡ,`_Mc;0]bv8V=NVč"lc;Yw=ֱ3r~STw.f7 qPa ;9ܪy^伜DmG ζS:e80zm$k}$Yµ}i^,i)c/^vŲ/spMQ*S*zuA;9-q)žl"AV^:QgNrt9ѨJHmhDDg@e0AvyI }^-Fh>0jƜ;,~$.U.y XSG %Q|Qj~3wE0 +$pW={K(]WKS="K8OQEw%~Dovh<ĀDDIv!PQ4dҺ6*1d(G XY;e㡒]/5n,7SOD^"%Z%Ҭ4I:66Dqոw}NҪ_Պ½ iYJt`'K>"ɕD{^M0I()IB>ZlL3Z*膒jnZhts280jOXUm0n<{Dt\5`"X"g^)Ǖ\= +fN<ﳭPs*s5B P\l$?wW{֧'0[5ጐQ^/=|8/Rl5IGLk!cvIupaa{|&3C;Zzj1|uArǝkmZp9r"BhUY/sHqm,'ebyS Fn"8~(f\; G !1xaST\Hy &0zc-#>ރ >uUcT\o髚ZbY9iv]̕2|Jՙ5ÃTI;-ˋ:XnDio_ \JO_.,-"~ 5BUsWltAP٫"2CT"[E YDz'{?ѩۍ)_6%$R+Gu_CY'kr~)Þb1u2k6 iJfawoؒc& [xj"e^y`bJh^tQat0v0Oj%P;?a<J,Ewz*PZP4Xӊ1un\Z܈ `VIs#衽ep^Oę^K}>R} #RL*oP/cvrneȍwS49 gҭZf#*QL5E&͑*Pu\&Z ~H?RyWfmKK0,ksy}5bH ?7&y8?<.u(#҇/d:y%ʉ +vg=?`'FG.h̶@[m\k7jMŽ靈@Rt 'ר&{>'[&ʒw< 5%9hv z}a1U_X6ze?PHu;%$<9N=BGϐHZHlDD +g!X;E*Tz^ .殾򳿃x<#ɴ/ ސkg51._^x|'OVYLN{q 4μVJWP+cKfO7Ku#Kl9xÕ%qRdA5=A#GJ۶ ? pϜ.|៣!ZV"XBu-:?s +p[ KIw^-Rئa:UGYTCYʛ ņ4 1Mhߗ+\,|jTpY:JE!^qy%IC 0~u2vA ;<1[ ZD]gq1qtv`9%$CBvMdLj)䥮?VXT{iOaJo +l"JE;-۰\.KTodp=y%?3ymW{l mtcMXa;vms >|A#X$5m2AӓHvw#q5;'bDishwi5\V;GRҕh. ݷT>ȅ0#y$&x\oӸJIg zDނc/JsEm!ųSASj|-tBn +Hcc/n* MxAXJA % XXZgP{]F3  ASy}\ U2dPDq)AŏGTSs#ewJg;Tqf&WV8$-ӵw@H>[1Å +r%[ j13wgVI.2ӱHP#)Rf?""u.ʳ"T4!k:W⎺x54͛Bd@dB3Y"KsH,zPyJO2 4A??R,SxX}(-в\Vt)XOI#djhsZ@9WtLb%bkd!K x0"Տo!1 *zJ~.s;(a}HYS-7&X) /(q.~4S1YboR L!G\|QeY~Ö܆+G3`%{k$Ia% ?dr,6/.9*Uxksjө~f( !pXreza?6;mݘBt~Mu !RJt !U}s!zgFWգH:FRc.κWSKuk/?GC9¦`/qwmAЅ|KiYU&pWpn4ˏ )lT'Ļ_ + E?uM6|gzS_3zf2m&E075S `qu윊C^\݊ +2יjfhFv'-x.k3`36ډ{2s=6+9 Eؓg<[$RK׽HepQ&h+ +&~{MRc + >q4ʚDtn`-^ѥLc6ۮ%5sU;LqHwOShs򢖏hiTe<9*x3MŞт]V#9Wīo?M0~#zc $PbrS9r=VU*-A+G7ce͕J~$d.=X*8i|[ - 5:*?5gJ6QdIQ@V +TZ{poC|$0Enީ~1E戻$3Cf,dzx}Àx9z;pIEK@x֦y8*?O`S{#rarkQÈHŇIy>ֆzUq!hlxukN7_7egDLmڏ4p(O c.AJqiپŖ +{lǂ)O,γO k)u[ȹ?JH0׷;iOrs'R*L!ٳpET8\6>^A⌫#0ƄT"i#j4°:?Fpu^(KBp<)5f |0WM sp_}<d^YcX V%J-Ҋr' }5;* 0]9+}ֺq\,WqSR-.AA\҆~_&6ỈM[HYQ ݱcTi}" Lݐ,C쎾u9R T| cI62 +&Pu~/ʚ߽6V'0 y%MMLoux@bפi6Hp!r6IW$$ےw̲秾/:dr(>k[ңفAǑ]3Y ogRfFۃ2†{3C/>b%>)U7eJ`٩B&8֘`ׄzKvo3HQa/R8 +t;.liR~שcq~ 0hdhKȔ+cڬe2o}&^\RסSfFBlY-9gU>fBME X"s6+sUJAIDl +Vw렮;P? ^QrdЬn<RwNaCvVE (N=e,u\ ^[a~ :XRJTfi[b0| 6?y:7SoRa|7J]a_yTE7_c91Ώeؑ]'|l*!$zy#2zaYVۘTJ:9͈o_z!Sإ(PoۤP*b430:}bFZ\3C%(_y + ɬeT$5t7b1 qF9[co} +!nr7n> +endobj +103 0 obj +<< +/Length 13810 +/Length1 1912 +/Length2 11898 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMBX12 003.002 +%%Title: CMBX12 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMBX12. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMBX12 known{/CMBX12 findfont dup/UniqueID known{dup +/UniqueID get 5000769 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /OLUUSQ+CMBX12 def +/FontBBox {-53 -251 1139 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX12.) readonly def +/FullName (CMBX12) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Bold) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 65 /A put +dup 75 /K put +dup 80 /P put +dup 82 /R put +dup 86 /V put +dup 90 /Z put +dup 97 /a put +dup 99 /c put +dup 20 /caron put +dup 58 /colon put +dup 44 /comma put +dup 101 /e put +dup 102 /f put +dup 53 /five put +dup 52 /four put +dup 103 /g put +dup 104 /h put +dup 45 /hyphen put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 57 /nine put +dup 111 /o put +dup 49 /one put +dup 114 /r put +dup 115 /s put +dup 54 /six put +dup 116 /t put +dup 51 /three put +dup 50 /two put +dup 117 /u put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{Jf^ַ>aq4!<_CцcQ%BlS71_ +sQzԜr?ktP2Òl(?69~'@2bt[{ax 7}Gn[TY>T#a1h!;`WƮk>Kj̱JzNc?^<@ qTud[eюj:JnK#2S[ŝBb?̬Mo7aa'gP:δѩ҈ dBd|IH^wMe#DD13W.J.6׮r(N #>Zjhɵ+Uw +$\WN.C(V\N¸3A?l_sMP yfSyֿb`9upPȐNur)L=uhՂD١Pԋ^} +-zU*3~HwzQ:.cxv(P}F>48zeU+Jk <>,H~^U>~~)9G-_+ԇ2miΝ1r>Z?ώ8PZm#meDPњ69v=hE_X(yN(9d5p7LZC~ld1:/ g!, +}Q+93V{ QlG 7!;yq+ JA vj/rڜZP)4f+OpX_t~ 5[RZ$ҹ=#e@K*WEt_-J bΣZdh>xNpsGLOh>o련J;J+\m +J6km9"N `D[ h6w{Ac<=ޮv}PC*|sAחfK+1!Sn~#_*]\i!Jiq˘mJ K fy*S}iGV6wa$mv<zZQ^L0NRq!*7uLO=b~_J CI?<5 T zs}uL`M؀"7K 8yO {|v`).D3K$ ,3sÝDRT c2쑃%yD\MS9HQ՝rfG^\55#v[Yϴ)KS^~nMX,8&7a d$ݕ ^t/WyϿ4QK{)=WDd>oeZpٕi-e@PLb|#p"6KLPXzbZc})%LKfO2ݮ (NԴU-eru RyTkl>'H 9т-)u +u+ld4zcLsTJ[:v?WNM* NiLffF/? ̔o_a! Bt]z\ޔR/r4MFwe5']ZPp׶r?PaL'- +c3G}T'ڡn#^>Ҡ'-ހFwMOTDsJQ{ T޾2VNsҎ%Bh$,>oK"Hϯ 2BU7'J(Ǜc1PIݐ.lQjF%jP +1zb2ɮWM+mKf,"/3~į;7/7=o-R%nJB@n6A0hRF9T {(&$߅:hMj %FVڈGv?`S::JepR̶9y?O_4:╱bEV]1Vb,"KoF0dba̟f4G^̬k({: +]-eJbc?hs+΢_sS,atyir%F3gދ&M}ۨ3Dkh`\rud>;iA_ +oF_љckNԋn`v)2ۙ$# 6{⮶\FvUW l +%x[gj6~C "^klCy%)%nWFO/My~ZqiI$CT*x])it4ZV]m剁VO)gi +%-JUƠ[fTX7/.cU,h78M4 z9:̳jmrvP# >bx_Løğ y5R@/{fQC}d~r!4ѐfPo퀿M+^',6_/W{h/њjS}Jz sնj ޳~zL{qA\Rh$):zNSJLyj^Ĕǒ)T~KZAP0JP~(>~9&åv^")X5=hN҂aNز%1v1gv?467H!NjO4پb夹tFy&{wQ[+ZJq ++@ mn,jMnEfI m RGUY8šNK:]ĤB!N?J'A.k{c㣆+/lB~z- NWWcr酉?V,d\$;tTR%M8DLsY{D#4 D{a\j;$ndʟ'KE 'p a_C1daEE4"<[ɬ}77%غk/2Ik'wblZqq@`C,6|U[2ǩ{{_W{l[(Eㅐ&K!.0t)f7lnMwX< | w2#:|м6ޡ4Hkr~IEmvb,[xY@rL'3:`A7C~X+_显R#GAVt]Dd ! 0*uzbrYN%gUX&h͈6OW2^zG iNΫyf_S">.g`B6G +BdXXE}텅eW_llQ6ioF<3ԙZN%Q^w݃{&E:k= BI| +~ڛfKikx zm 3ٳ~mk +R-rHsډZ嬪.]]Mmјrx{%u_p[ +5~`31>pajdoT&]J[[@ǿ&#F8i ^9<we+-lBdv>B2p["j FSoa9"1ܟ`IC"9²xG@,ty +ďuo1H?$YM;oia=ۓe%[2Ax=7rܥVBe[˪?常%,Ƀ.$nYeWm!QiBԘte=L@&j*ފS3(W{kϰtu$%#!>R=k[>u>6ӣVϬNld>&VeR^- U*lY `s'ӕ)!-@;UIuvG*^ x8gyyg|)t#$ X0fمNWz M< t>&+4N%J"cqx=NJqҼmWҾ07js);'S] 3l i |M YL*g. /A|]Z;wĵ͓h'A4@@`J jٙ4JՎ$ +&G[A[8f i+o" I +{y }$teӜV o+m2\\IؘԏƳL¢#EadIOUOxA5>.ыKe=0@vJ:5bj̊_[,82 ޭ@J\rL8gy8i{CRᩞuG/W{8YDL?͏$j5,;ȁ|a쒤HPP8) +^NZ卯9vݑ7ᚮ{V^sfpZ~rw;gt$2 aڰ(iOd\Bvp + +ȑJrʂyyl +X!.X_K^?eT:C@`&nm/h˓n!HcC +/q(ހS2ײi@/ʤ1=ҙL>Dc'4 -ks)y.*%'vvGT3lz :a).ERex +ycQڅ|Syp| BN=9;+ 1(H-F/ fZ2dMpDj̖ߺB͞Y~>/( vk?.LpHS"'Q&k]]kQ7yZ #πYD}u #gŒtH,V$_6ڨsS.*U| DՓPFbB*Bu4ZB~*j?B/&ԌTފm奔Bu7!j9 alɋpwcsCpiyaJ: D08b>OPW@Yߔ눚( 32Nͤm*6p[Efw(`߬S_Nps1m5 +oHrcG٬R %G "dC*uIk_o*;tS!i0 (T(4T!8#Ʌj#([:۝ +F_p9WCU NZ|BIw> vu-OaO1,hp._`Øzq*~*`@׊V_^u'¦l.OS +&[<\FFl(63_Y|#+0 {XރA가o3) +?#n~՝@$Zb нW!7.Bˬ3~,X(yy/'Q&" G]TqiNąOt;|cWhP+"rˬf3Z3&"v d*M8d=*bFb[ -:oW=iJ`~mT0[NBmo-̡u0`Y$:!9^`#'4iΛ_6ƿŰ ٵdط(pɭUIrf~2jކD[[褔J;E&y/:x*Ɗ:6h|}9 6Whf-AOۇa|7x.eͤN M!LY;ƥyW`VNbw ^ӯPϋR%JZ]^Ffշfx5ǎqVo"vJV;#W th<ЯF5R IjyxyN-A(XʞU<Vh+`lqki;zҁمS~g"J2*6P+ ;dgh,yo I[7D%6z9(n-H;::;햋3@4({l q[vL+x$9,&TPRIa0u R\ h͝燪.O6#BtG +N5gL3A}R#^Ag*)jOxV*kBs _bklAW4:"weVZY +Z?h+LDiAں };(@!@x$Es_l.þ['bYe K9e"VWmoIcTY8Aoz/uc9&D 8Ua4/]aX1b+ZTž.,⩳Cql9NT9xaf-ĴN*M673t䏉s4z,O~1>ǿU]9WG . I#jFCY8j2[lk07> -ޒ+bWgZ7ӷfXWv]ȷ0$}:ː}7e&j@',Pt(ϙ o{;;S0}.LXOGv}Tg%$zB )'f[h9ʿ:{b u/4vCi(ذ y JAqb.6W*hkNrh|#ƷA2E(qhIsf +qZ$T4nj\|2a +~NT׹zKgd; B'LHRHB GL 7G +7ݱ= XJi]A&MD6fJX-3^s +ڮ H `hJ7D/arūR +oCEb]KNL~ +랔,j':q;tC- JB̚zx*5%"3=Yn~br†& :1DE_綝?,g'frkNJbCGRp\amA =vx"Շ&mS]TޏeG[W*M,pEgpK +5z%ݺ&L4Y9L6Yl*gg 1kǔK" ,8!tc$5#WbxwS S jǫBׁ$U>߁<vjعxIvn{IY$QDFh67ƮEv.cl6<•ؕk7]i}99c!_JB_W@Fi}UDyNCCVyɬ j,$xױmx4_IsutЧ}9ۧ >:xkaziLD%6E/8+y>}Ev?&m|A$%Anb!(͛ d,uT’QX@V C1#uy97p lkˣ_|~xi {~HZw#DbҞxn͞)g{iT#0`ylڝhEx Hܫ ~\2S8&'X:/t*%W@:n*cd=?X 9k[# +kQ{e"HuARulm&{I\Swe3q٧[A|̋K(i~1J7kl.[Ȟjc~A_xvFU=Z%TZ#]Auq~Z?j)ܴϐnZ"=}a*diQͧZꔀy8X6r'_{`c Vh +Jy=ܗ”#5Ivꮄ p9>ǫW,Gb>H (~N7?4]O ݃S#R7…1#[nY`eRwL5<K!PjirԳR>tQ^ \@o:37Ԛihɂ| a$Ӥw`Fk:jfc"φ$ +3xX`ɱ6;(=%ѪCI&Ò&L\󥫀m#~60(퍃ш̬‚CÇp /'<;>z_LIAB?ܚ-GvA-0z\.V9Hэ6 Hfi.ZY`}6Q"n4T]Ä6!%ul蹋*O]o +b5oB "*Gv^P/fi@W`^8K$_>zflX "jWjͤ;Lc3?u5DY;vҡWH_58Ȯ&f*0,(Oaq! +Ql fڜ +Iu|&fJj_# \ˑ],-<ΗPY]M+ƽgӨx@>{OD:[rJ́;3Z[@ ԪX{qw9FQKRzx#5|㟂x3ˀStZ+9!1O$zV!\.q\3%IO}*@D}81|A +endstream +endobj +104 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 686 +/CharSet (/A/K/P/R/V/Z/a/c/caron/colon/comma/e/f/five/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/r/s/six/t/three/two/u/v/z) +/Descent -194 +/Flags 4 +/FontBBox [ -53 -251 1139 750 ] +/FontFile 103 0 R +/FontName /OLUUSQ+CMBX12 +/ItalicAngle 0 +/StemV 109 +/XHeight 444 +>> +endobj +105 0 obj +<< +/Length 8318 +/Length1 1451 +/Length2 6867 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMBX9 003.002 +%%Title: CMBX9 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMBX9. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMBX9 known{/CMBX9 findfont dup/UniqueID known{dup +/UniqueID get 5000767 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /HJGMPZ+CMBX9 def +/FontBBox {-58 -250 1195 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX9.) readonly def +/FullName (CMBX9) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Bold) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 80 /P put +dup 101 /e put +dup 107 /k put +dup 111 /o put +dup 116 /t put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{Jf^ַ>aq4!<_CцcQ%BlS71_ +sQz5>?Q;8F}Q|-K,}>PD +65~`dU6+[\5тqFB>ֳ1^;!'VQ!<$6jT&UVDq~`XhZwU W67$hV%tj6~h<56{O.o"Fחlai!N;/ie L5sh!YB yֻM~|M{\B3ևxYXިmHo%l)CKFuԴlY~<,&Z#^gx'6wB8IWذ~D.TP>KoNzS6=('a`T seSdDVzL^|kb=yjaI>Ř(ץ4^? 'Kn`4Q9 . `3oh~Fq;zJ50EPX*ƚQ 㗘k4]aҡpM9\l[Z)uƔT\0kebIA;/{c Jn^GkgQ0Y'ISD;A39 h?ݦbJU5zw jpJBUY{e#Fws@rISp^YoZ|5h2*لEA4W?|PCx' А4 +v0U'J#oqӉY%egg|* )SZo8r;8Wlv"r`UkL==~V +X` +UvSw;8wwH_,^~q\3[l&8E};`Zګ)HZ/I ;3w +h$j/z/^,_C~A7kpRhbK0sQrI;YD4u-:p׼V1y&EF#RdȷnfNEzfL)3xg23) +pEY%NXA@WQQ X$r d7UmwK6+2a,n9VbA:)48z>Im8XCهLFʺߦkg'f 2 z?qe3?-&1VKl/>4(5p,Jr6`pԚd׌^d';@8]mB̾"D%i-{tx*yt:`Z]K=.;TƪXmj nѹ5&.F~P]^7FoQv3:2rHS7!S5ŷISvG0;=f/bkl9d n&CO l"*e@n!6}Zjou#|)f*,E^a(, L Ah_ȪRlgYhaƐi% )m`RDӇO4;X @4chC.4Fc|E-5 OA)R3N{o`aYUrBs-15s܏i%ZY+W;/J"u;DgI x9"rwh +Rʊ~KhR^44s7M֒kL%vOqT+ovlo\+pm\gw٧Ӡ9_8i-d) ĩ#CM# h8pU"w.WV:ʠǜOc #%^oFxEkl ȃ<6wyh[$fuq%_Cn \Ȫp#vMժd2 g jRZ,xrF8P<(F`~W/dCnǗtPf"'nLCeJ59&yۄe^OI0\^PKGd@2ʨ󌱇lW/rZ\~ldB (#o}HZswHo܆0%oE=pdK)d/gYR[+7! nIw8 MF'/`6-d9Wt{`>P)$w>]{ _JJ[|aJЪCWk΢gLs 1/U wwKOwZoYz8gʟ821ZYYK%UW`ߤlP`B?1e1 t߭c`jD]< j#Sk@_6&"|  135~j5jag+PCTo+LxI@UoW.0#6!$_ȧ`r{s{] + ݤ"Amөe~]i栛ox;Ģ)Ąv{ԒNˡʀ8z +D4>uqlGmt +ZбK`4ҳWL d)yZd\m:췋s0j +dɎat@әV$Kas)~$8+\[)K9+%?< $_nRnWQ-U*up4Š[i}H=`SUPa{0'QW^t>.9Nzlc [=ˆ]8D8"QL wek\/+w^8 ZLn}69α$uT[e/DjFhGČ3eWfTf!>3rn_&kJӍne mW%q*5sIsoVgoꡯ+EƿR7ll,#4~^$)Cȗ`P{R!0K?.&V퍗#fRG/0Q Spe,W4`W16 +Bo5@.{27qGiʣTjzpGrb`Bn] 5EP£*Ӝ-f?75ko2|pwleP iאI͒wsz;SfT`De/:M#,N C@Xrٓn_ʴM[H-f4#u/VNy\#x[6§4̷,.aI-D=(Ao.Q$-q 4rh!-i vfrؠ%/^ +)p*d'D_mӝ>lC~t/a$Go@ܞ+A9IcU!}pIG"RU)صJ@uІ`YϪCuJUm8*8>B +tk1@͠YlW3[>[6&pCKƣ܉f&N0]X?TpP Y,y簢)4Ubj"fhEWdjt_8 |\YNeԭ5쀬ы; 44Ye*C#JahT+vX{\6))rfESд5hsdU[YJ*L |og9w>!>C4?m/.q߉K|8R1!>ȱ:& Kkq h!ʅƝC4k<ídqaeX&Z;SRMsh><^.9٠3n5% +YLjQA4OV?r%Lxє*g0fLjl}Xl:D0_.4w-bm!xMᑘ]&(3CXjȃ;&t]ÈjqZDU7er!]i4yp;3UX@ae$ qvPԨ+ z,wK}YqYJ)vz!z{4_DI䃛0"Ɇuwۡ`c&96ûm cٮIkb~LP)ޚ^.k5jdK⒣x}=%c^*f(rH?g@&_M\lכ(Wr;En8zu*sWKkjVxYX9Y^ K"?gjDg% 2v0Zm/,P10kIm?~g⎌ȥӨ3 7pmĈVR\}>r> +endobj +107 0 obj +<< +/Length 9263 +/Length1 1495 +/Length2 7768 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMBXTI10 003.002 +%%Title: CMBXTI10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMBXTI10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMBXTI10 known{/CMBXTI10 findfont dup/UniqueID known{dup +/UniqueID get 5000771 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /FWTCDB+CMBXTI10 def +/FontBBox {-29 -250 1274 754 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBXTI10.) readonly def +/FullName (CMBXTI10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Bold) readonly def +/ItalicAngle -14.04 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 77 /M put +dup 97 /a put +dup 101 /e put +dup 105 /i put +dup 107 /k put +dup 109 /m put +dup 116 /t put +dup 50 /two put +readonly def +currentdict end +currentfile eexec +oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsPKyؙJG}_t9Ob1N;rIoF R q] s%ЄO"HVt7b6U)26=q-SʱEzͪk|+$hXz˖3{{c$rПpP.%]++@^+;@gK +wUNKF֡MӋJ . yZ-c*w`~r-w@BS|  + J`Ukj +֌O i3$Z"|u9a6s-SS:s$ db]\±6CF s[~6C̸{2 0~0 h:}e Օ]T|:rCF Wݞǰ\0J,,рhzdE5Úu@ ;Z/}o--mASDw)#zBy7*0/YJ Yd;Kݚe; кn%VeK_ݖ wA/J +> wg.+T]׺g&6r 6]{JŇ[l޴$Jv-ppd33r'(:9F Z7_cVn;lWɶu$ݗO0'Fi%o(7ǔKdZi]ɘZ`C>>$VؼF,E%o`fp'֬{⩅v$@A@]eԈ"BTQ*OQ)2:r@70' +^e &,JaR)x=*} zp$x^U*froIb?WQH7$B("O%;G\/4$(ru{jE%Y͞t'T>t*NZ-FQlr1jJA?9n3=Z(?t#/[^Yu*éQ'$J#9-lc85 o@ E(2+?8n){.OqBPb4(2gF^%"\FaFG ,(?R"w/Jo"%(mEC5zrk[ku}qUCol&7<|!E"UqZ KN:MjUkJ` lB6pV$Ѧ)K'ޫ/:N1P .f>Ԋw'#>}=+fHSg0wF@zNl`^ L[ժ85OO3;Htble4XF"㐬tt +5txڬStlG\8<%*9ٱ\'0/&%]9ɜ/"bzW7ś4.vLL3Cؒ$tؔ3H'-Mһ6Ϥ9w,yi' ͏)l{QCp$[Thݵz&)Rۿ(ڒVv\2f].g<.6ᖺ)NB̨RU"b,ސUwÿ!`dUӿnjPmÀE6XP!=` :Z BSY1CIᓽ)gF sIr>%8JưuD[7z!qZzަEzŊRlG_M^,򤪄RԔf=-:rỴx_ot-K,; xBh$(m!I)K "ÜfOq+ QA~BB3[iiFyښ^cE~eRpzZ]&7wdAд6h<sͷw-ad<l.<fL).'tT*w.n^YOzr0;oW*]Kf}QGB72vdMsGi!'J|+}[VYO;?2Mf}]0v(N:ZrZɇB|vl4x4|hirht8EV'pSjBzkf6d>P|1AA#ĤC{h.ӂ(PH@&hH/a :ko#;v9L3-]*xFA@4JUKAϼr/.gsIi:PК!d4*ЃL6|;S3uȣ[qk' Ƣ)l4+ $xP 7}w‚l6Gڒ)U-1ځ?'A6ޗoQK(ļ1E6˝A\wҟ@8W^*ڗLQM(:Fc W-l~bJ B1 ㆜~vrݳGvHb@,N.jT$D5葓J ~z#U^߸p =q5K[j5@Tnխ ._}m{gL$LjEU԰TN&H啷snr`7^1dW! bz݂z8{ׇj}\zU*GDEYs+)̪haQKE8iC4Sp{PK>T&cB +CTه C̚}`y8E4yK.G]=@/%sjYO>lrK\Wɗq;z3ݢ(ouݭ@E'evKw +$p@@x +,6rP(S4#0-8c<}C2A:ӺC]3ꪬpq|%QgdҤ n})N=WR)FxX`(F+[N´N:yRC_ن а@Gߠ/Eu ɚa4*B kڐhDC,3O$]f>5eJ٥4YqLlp8'N:ݶΒtAßYs5XCU Vr>s+-AՕƱ%%Eo'a Qưn22Hȵ\!_7% (^|VI٫~{gN vRSlC)'r1YjvtDwa|g6ɈM'8j(9]1V[FP}^@YYL JAD7m7jsjQnjA@2}מg#+=\y[ ͍ @*d_Wl6b@ٗ(/{MP1vXHZ)mZcz(#gDk\8:Dl{v7 $Zq˶?B#{z{TTC5&0;uo!Y:"@ϦCK9c~.Ղa()IBx ՚<|cqn7A](6ѻgwmNP/@~3;('{83W*CѴKE[wu؄qND0c#^Ͳ2qewNKZTs?x)xaV/T[xH~ovXu]z~'ՙi})%Bnh[6h{:Xߙ6s bJ/;-!=\dGOztMm\eu-r4j~5yy>cߛ-Je%#--tD`%:ɎLF㎹TAV+7сYlvr}ɮy53N„Ɍ.=}4Sm 7櫚+ݴLNQ# +l " +F tU1ȇߙ^n 3p|EDSng[2Ѣ,wÿɫ .氢Q< Qxrxe#UNP +d.c,n Ӟxcpg0%F+rIU)]d^[V-Q-c!ȨNq.{/(HH#W_W?֞t֤ȤYvgZ%ŰήGTO!moB +xh"fY BJO0yFSc1}A33\ +EW7m~'W | > R{Jg;ocŀ^/`wab,D2}I7BP)^OGT#sp ai\u!.5Y_yd'.eb1ޫ|]vPZ)Y=jXF^I;0ސ=qY[J;NYl F3<$X*d&z6136&&5;U7DECiց 8;a f[Ēss{N/b[Iv}IA FRR|돠_+J0,j=F!G,ּ~1|'AWv䭖ǩIVe殹- p8{cnNK7shy8ش`K^@L1ܢ!$$J yrOn6cSIJ:"8i@b`l`v*vO`r Cc-w, }VZk@$,ǶdT-Sv߳)j'trJH@^20~'ډ|sF YTh /u,t> +endobj +109 0 obj +<< +/Length 11493 +/Length1 1641 +/Length2 9852 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMMI10 003.002 +%%Title: CMMI10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMMI10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMMI10 known{/CMMI10 findfont dup/UniqueID known{dup +/UniqueID get 5087385 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /ZOBLSI+CMMI10 def +/FontBBox {-32 -250 1048 750 }readonly def +/PaintType 0 def +/FontInfo 10 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI10.) readonly def +/FullName (CMMI10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle -14.04 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +/ascent 750 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 68 /D put +dup 69 /E put +dup 73 /I put +dup 74 /J put +dup 75 /K put +dup 76 /L put +dup 77 /M put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 109 /m put +dup 110 /n put +dup 117 /u put +dup 118 /v put +dup 126 /vector put +readonly def +currentdict end +currentfile eexec +oc;jAw-<X2-Τ^tE_SKF1F^jNBq{y4-Fgbԓ{"WB:rP ?dgS%|'ؓw&F7JNL9VRtbT5'm\N"K< +wJv$tE;D4Vܢv{bG@dū)Nh]!(7h`f1zpBrd۞>sVÙiHޭkJKyuKI[Ƅ(,M=}%vf'E+)}f$l(W2[8hT>9X33 viU/Y{z4B&qnz|1/ɴcCzwm|x]Lmo}zm5o: 꿊."ĈdNo3 +vz N +pzP;Vҿg6Ǣ >,>OJ4mA0R3ֹ*{+9iuMO@h}-( Qȃ钏A)ӱ =.93g=[_bo_BVƂW"䶝aoZFsO)%d2wNH>D}۝Y1jZg1bJa|`hb)wYc[&0jX7yg +hS&}p-f^ a_ +l4zVnR_e@*z|Wi.9)ǙBSs3Ϗk,^bz˹a ˅4_B1+W2poDx>fH[]TEjRȊ~/+  l8zXܒpH!V܁d!;d4T5:,v#cK*;+zXz k Qw>aqb61IK&?e=f?ToRw: +e +/ y}tX"7qtf}є)8SRXyԍ/Cmo0%}pd{h4>^wD@eQdaidY^@?p i3;BŹAe "Kc_ + +>To=*y#p$Ua5Q2Z3:wXEk!XLǑU MlTHnyeUsAܜo3|] ]zN&GU1@./9;IFz$U/Klf6xq y +w}HH/*%bkYyoxжjxS\y)n?VJ+ka[zffI*[f=M3)%qO(\-Z!J +H)rQQ5TbL}/>5k=QwO75#:,U_LP?NCSMi > 3*j#WÝD8$|!F̊L;_ +dQJI$Y(mRqJ[~f9,6_1~w S,?1? Ayl(LtU m@*T9EWOg-ږHpaH"\z/EjV{11̃TVL5yWK|z|ڶtjBdV=z3TJ~[3`vpnrU MVW.Y-t虘鰭2z񑄥 +Kxq3å_t|W%0=E@.2^r:(H>ePݳ;ס}mW-MAzs`sb}s@_s/FOE«lh\G`ba8$(^U3qC"vj?Aӷ5.s:];H2?lcP!e-t1//ǑbK @3\SN:8'gU?)Rb%o>6 ~) O +Xw5/"|k(e$/JG 0Mo#hpT%-R(>* Ҩ25h|I.5u`QPւ)`QQǶ(45^ބM߯o5G*`?RFM Àgpfn51dK[L +yq B$@'6!W +ΐEI6,IT$yهHpiVch]l&ߡF:O$#Ȋ!D:%)aMx"_L?d*:02]7x(4p P8*.v5sb<]LQ0*K+@>e.-oӏCƀl\~R+$voDgya7s)ck1+.Ƚ#@cL ij;NCB|(ɯIL40Ƽ&bDT3C<= Dg}@?GԿ#Ӵ?H]K mv%M^=QdP A%}u$Ȑv3L -" +'![暰-,*5&Vۮ1=B1vW|P:؎c)»c/Leh:g)Vl<.IJ +T|PqQvi>-<+cVDܽp`JȭVkuZܦר|RIu"_!a~L x0Cc-bpCAʤ0% [D =$XKu&W(b ncg^PdK>R]5d_a*@,TB]'/-G.Ǟx%~dž"52WWa>3/V #F,_z|i1=IUj^[b'HԺrRvѨYuI%@G1`: Zwb!|^WnW^krZxPI~XY̓qY >3u}_l1iG}Z1BR@W7z^CUpBZ\-ѯÆas&\XA\`{YܻQ v0q˽뷚w۩Ƀ6U̿%}JDA_r؅ ]w疠^K݅V:ӝϏ2ӏ|jilzaxOaK<}qo[5sI\ !R y I w˜Qz0l; ۠gYnkϜ}H4'#l&1ҩc!+P)T}!:#,5 0h>ώ? 1E]R%{7zvպ2' ' =.8ƬdDЖÊ9(qo%ͯAv0Og{jEAOG,C[4h֪ LЂ13JYfA2{TMH)w?}+'Mc5 `L8h`V5 \)A yBYC$S;яjtiV!Ψ"p<NoZ*2]LV +̚ !涃oplz`(SL0͏<(0.O4\SaSԗ;*X>mGŻX3XR^^#1ó&3W֘@,`|-g`^pQηQ^ O(s$q;,; i@g toVdF4 s3()&oa2IPZtoKmBމa?0küUڴB L|_&hU:Ҏ͊NQγVA8= #96u0@PN߅yƆeRvWKx }h%ҁ}ުP!z‘ӧ|}9<$5;Ѳ:;ylʗO]Qv-2yhfԨs\\hd#ըtyri"Zu:!xā/p~K.,<̷W|XUƆ/al='a*ZAU(bl~.P |V0E }Sd{"x峝pngթ(U0c1r{twqxK1%DE/z*oz e7^YDBD+AI\Cj߰B@әZ[&(vi,K| \cGVpz9pR%A`A ^9>~Z0x<N?3<ذ!Z` +v@zIER3 L'7-E?6tS>zuux1ɱ,3o"U<5ߠ-`sXZq=9*0 ,KOMRו.~338quV Igko.  *l7[fh +4\߆@bջuv3,qޥqX>(웻5(hU Č>-ygaV66 +>#(;#2+O h5eSa?>[լJ6h zi.C\\Ɯa\B Kh%xy%7A0UXcs}1>)mQnЌ s?Tѯdm/U.-ogOF乣HogO*k(i4K|~o!Vsl14k~.Rũل؍Zß[CNU$8HP}*(8ZV=v@}!M(- #a4sA(T ˦9(D>t-rbݢJ=% LԄ UI_P= a +endstream +endobj +110 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/A/B/C/D/E/I/J/K/L/M/a/b/c/m/n/u/v/vector) +/Descent -194 +/Flags 4 +/FontBBox [ -32 -250 1048 750 ] +/FontFile 109 0 R +/FontName /ZOBLSI+CMMI10 +/ItalicAngle -14 +/StemV 72 +/XHeight 431 +>> +endobj +111 0 obj +<< +/Length 19858 +/Length1 2204 +/Length2 17654 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR10 003.002 +%%Title: CMR10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR10 known{/CMR10 findfont dup/UniqueID known{dup +/UniqueID get 5000793 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /XGGYUK+CMR10 def +/FontBBox {-40 -250 1009 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR10.) readonly def +/FullName (CMR10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 68 /D put +dup 69 /E put +dup 70 /F put +dup 71 /G put +dup 73 /I put +dup 75 /K put +dup 76 /L put +dup 78 /N put +dup 80 /P put +dup 82 /R put +dup 84 /T put +dup 86 /V put +dup 88 /X put +dup 90 /Z put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 58 /colon put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 61 /equal put +dup 102 /f put +dup 12 /fi put +dup 53 /five put +dup 52 /four put +dup 103 /g put +dup 104 /h put +dup 45 /hyphen put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 49 /one put +dup 112 /p put +dup 46 /period put +dup 43 /plus put +dup 113 /q put +dup 114 /r put +dup 115 /s put +dup 59 /semicolon put +dup 55 /seven put +dup 54 /six put +dup 47 /slash put +dup 116 /t put +dup 51 /three put +dup 50 /two put +dup 117 /u put +dup 118 /v put +dup 122 /z put +dup 48 /zero put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{x< ,-.2iRnñvپ1䠕 '䓱_r"O_t3kefBݼVfj9ҳ Yh뀸{q-ɷ}W??gw1*Eh[:tWeI,v8a<{B100Z85|}Nlw]6Nbh3E`(Eޏ'Q;eԃ/.DyL5$4IG׮Ɋ\yj9.VU5Q!-赁B9dB^oVwBɎT7RsOGA b#TBv!mWT=w,ID%'MK<|]D@2O( ݎ%#_ɷVBST#z!${l\4ĸ ;5l&!〚=(fUwAeB#30>H 'L+֓jz@=s\<=\Y$D?U 6xGQnǫi%֔! +L2[)!fXc<'ȲRP3E!-:'AJ.IJCJJt&{76 +#VH/Fgw"F5wS$|oQ<Η `~<10|;,zɴ% +oߠx0sW1Fx gmxVyѝ"]#z~pv Ũ.rB9$nYCC1td@#8kNԋK;ԓlF( ،N;d*<Ʀs9ZQ@It%[)7&hn Y'a¶T'Xrߙ/n_nJL (@ +К +N{KF^kbn~`L]aU{vLܺ41$rmAsnZ*=sob@{y !CC{c.WZ0n bpgsPd$-\ԛ&L27JBs/g(xQ,t>[8͓GsŸ:R$9]6&my)ivjWLRB^RBalx_Y:5M/j١!}`D&WȪQX$HߧtI .Y@nr_n܁ OtAN-L n?_^_g~Ə;`KB6eĶ +>lQp)/;S' ^:tJj@xE(0G;κQqǔkT'; ÃDHjsrxܖ +.>֯kl;&#<ښe)fFz`Ƿ?Ic@SH&<evn8F\V3aA!yy:+c!xbM։/f}3ߖ˦"G'fMsXWU}Yĵ^ %j!HOH͎_;臲Jv]# +$'Ch?5u-G:zHZ\%Uv z^By%NT⸶3=X?mJ-3iH@ܐfσkR.v'm.'SDly7 YCm^Gu5_G1t/ +41n_D>}p+fg9h$]@M`^ҹGK;5wIrqA3fAYiuYrD:dR At -,)aɺh9[ԧuS9KTKaX$wgɓO[xqǃyI(j5LIc}|h$zDUwY+Z:ϤŜ1le`u@|܈贚^6/y`a [Ί`ҾEwa ziLa}jʰ@}xWns0n*{l?Zz>8p-L&ȣK`> `%`ݿs?v˻^\*QNbf+ۼބo" ٧U zgga䎐uFљ<Xyݸ*g4?X2]4H͢^qLeoU~ 7>)ƤHnA7"{DRj)ע~eVDJ|X}ѧCrTA fP};"ӼK#ΑTF\^ԓ ; |R D\Ă Hu6QИ'Q3b;x#3S:jb%tJ/>ʡOrVށx]>)]l5o[F;,N&'i\NQIH?T:@FN SX0<)hW4fFDh.سT)^S-nw}, ZNEC Y Rez3\ +tY5`F~_xU|'XLJG@U6I \>:V_>զ9*I0}ӵ\"{3UzuFf٤Pߨ)E8Uw)gq:dj#hq so -@ +KG7"|QЇ Zzs|}LմS:fmA3S 2=[dؓJ\ܳc|tj1ƛArѮJv,K| ϕVސ +Q[s"=ôG#[71]'GA-u&_]nOSI*!GL{0^()Ɛظ]:1Y] c5@>rPq#fܳF6hZȀ,֯nрKD„-׸ݩTB<^x (va;{bQt[ eIBţnloi1>MoWM_v"h-ǰ-uh|]R[d"cWGcr"2P&yĔ$֬^S fx'$TQGUm/*BK-2"jܸf'Om:M|b]$~+ȏ>Ɏbtv2څ l-P4"Q5n$micnO԰P05aZrFhd]=Xcٓk dOBM@P.KX+QmtgD#/uyھRܸ(u׼΢MG oTgs]؆ٷ;*G R1)ٝ4 >odݿR{uxz4DXF9Tx:Rjpq"F\eL6j`H$rʹoW&N +cEawmGeZeX+TB_ǃ?oAZ;u.[T{lN]"?[t +VH_@{lj;KߑHŁ?hKY2MFUw^z6nf5^9뛅SS iw׳ʰg6Q.8zZZ72o Q.c]ƃ I1PiYg*z_H LWG +q3Rmv*GHp] ~\4#{+姕8X> B|L2}-sc~k;9W;[VZ)&a4c7}.8z+G ;$+Ω_]5{hL=ow VH Ay,`2uÆd-㥵4WΌ%n EguM7ԥ[jI}|di8&:ARA_;.lX*:׃nyj"⚛ܳMdCF|a͉G%izY mޅOi T%D@$KQIGeOVNF2VdA!d=ۭBR ]$~ 'ԑ+ez]|lAnm% |J;qIoh9I@N}N_M,bx#[n,7lIB֠3SĀiI<*1̗fE1=MJO@; z҃; X}ǁSţ!Mv7KT~ڎK?cj-x;GQOU4@tt U^3!>d5IwaүYPU$ q .uHR5g}_?|qLu@3.']:zx0r54r?Y0zmKyHiy#J7Qs1i?B+.{Kz+ebkjOdU9bb}0 < +{TB|n~Z&.Hu-LZ22; *8P6w,;3V=NQ϶-u9 ?;Kx W{ZalSxYC!OԈ@ +Ď5^{zۆ^iIɜ_CsO?cA'9)< \b[h%ٮp iBNҿ̓t&$0x} ,G&q}K3,}#0_GHsr_5ż@$B;&cdNݴ=>C}/YQF<A2[-!)ҏtLN) +X6\R|L|1v=fL? jX +![ЇU&iuТDj}'6 B7~@@Lt2_.Y~ada/ѷ\at8'!$@--ja@!:.gnf +d=N1fTVBSk`d{ܾOoS)qV%cNŠȔ;?9JnT噟B]lD0;\ZMؓ8V`kN0pQ+<8a_j'`(6rX7n0&|@|kS܊NP(ܣai>^4v sxm;[8@QAoN}H61(ZC,[R?_ c4dZXtR0E2H)R3ZͱI4ur`W+[s.[Ikdӆ&bœj$[ _AFΒU'ainfC6jWf{ DRVl/|D7/R\Iv{C t( M*)#MW!5=ArDv-bcPP'~ܿlIGF{+, :5}N%cqG܆*WPж}-_> AhHՈF7ulon>"3Q$ ,igi],)\т +<&6?>yKdLW114X rCDtCN{\;8^{ޜ\'I2Z4rʻ1"J;_]M~ QVʩrC5=.vUBN]i5Bw+@mE};Rd*Pc#1)U8J/A@7?4%;ȽoIx;| <%ڐa'f~P ɷd$Glm5Wå%4ɾ!&Σ vư@6ۈX=<0_PnCkX2YajŭE `>nқ0lcHҡVQ\Ή. +K e5_7 Za$W$W]*jd`ktv*^}ZWKʫ/~/@ˠ Aa%pAGw=-<NU?FO;jA`*C |,+7Hn.jER2 V|;>cee^˼Pf,9#nZ~xE'$|ϚnGyQI-!&iƓq0eA&G-M 2}vC-}+<;ڳ_Î?ay,-Zt%"MKI\ڐ'2?"S$"eᾞ]@$ΐU8̀Uxֺ =|Pyp;_5nSg\jr7O7J(G+;86_"-1մNcѸd6,lұM͆>;Bo7s7L;;21I&FX`gerhCqBy24яS_%,#;';d +WEm},)še/;)ѻ6wkd֙ #>g') Zypz$'Wl${{ׂ](HXj4I.E2],znw7}pIј^3|) q %GSW?3]* +>J*(sPeXc&v1'U2i'ңACvxuEtX8KّKYC8˸jRj&<׸l8oAjIPpN`@.!,^W2ΕO{{STa@\3]Y@e2l'UAS׀qjNkp(acN#dW`>yK3E9{dĽEA=ybw#-?\)sbHZ&^Z&|Ď=FiRaoRDDPa{71_~=ФShoSs;WUm:S5 +j_}p%ߵ2`K.}y) i*;bsхX<{b1: /@XѨ}&p5UI*$o&`l: ++'`uwqg(6'sL,(ژ{P nkv#ir"! z袑MCԥvM%.@;9f s^*XbXPʓpG{HGGJ1/בvҸ$rXSimV7\T~iYWxD2؅P1^)T ru]$K45LrlSβM+YY#j5(0uR7SP(pr6"2/+ވy"tH +URJP8yCu \؀ Gσ>WvB7 Glm'Mgv:k=ib]tǜ9m.F(([|=mXYNwV]ߛm S5̬9rYYWy햧vegl^f7kKQBo_h{}]6N.$"/󉗪l;۳Bli'=z&nM98"7`!gS`#sYP/d9: +1>;}'٠vPW9<qX㬽aTF_Ҟdzeo5l!&4PDE#ۺ8LS> JIHv<.&6 C\뽥Q=R\љYj惼XVL9T ^jtF_$4^N˃cX6DskH 1-'-ԋ0jv iJN.1bGiIT3Zp@1$UvC&Z̕tݲfblU,y֦$7Gff߲X.: 1.3  L.7Rm@ZZ}AwYђ/ĘyV2!ʄ2:5/;u?eeP:n$x}l-ҫK0Tco#|g-u9bC{yx'nj)/ΦSCXtO3c|OMݍ~Ѿp,GhP'b?Ig by;cRy~ #9c~¦*A]ynkfI +rue&@7&=J6m1&$M2vA鉙 zWwlkXg:+Uz&yIQx4NK}* ;6v'sZ hzLE;H +S^7mQAat|lnT ̑'hCoɆ;pOMUBX:XNFˢ PM)2L/ FGt`k}pn L㕣Oq ?mV] +BGBUYX3Je2ɊBC2yASLEpIAܠlJ2r+`߲A[2`Řsj|z)H~Ee8CX}xuV^^coeL/*6T!5Gj_Hk^2 EdŽ(SȺ&)ȾNH?ݮq +ٖhPc, l(Jqh+zJ8|U]&dQT}+\ +6diX ,UhbC? Xdc~z0svq4;¨JKy86u]7@JvnA11JI\W.˼L mųΞڻ$Z58̖ +@.5J+N]VnԆ97 ӷYv*} ~!bWۿo!ލi JAD9/o -t@YB_F)~"C6+SS}[ܟB g,$}}A!G@7v+/H"?m{yiƦJE(ǁG|Kv:@FLsfXލ[4b9 .or-o\u#_FWQ$=HS&[r*"^DY}D{k%9GO|]?،i(J!bg F,H?EF +- r4E "rc`߳D$2Dd4Z =]F⛺EK_lrm`)_MkFw%ΰsl=ƺ +Cph +.T~JPV*[3ql t!9: Ud +-2|CR-RܧwsbY4m!0 L.Sx.G#gS5*y^u@J}Ad:Y撅OUD_Ұ֣GSzZ*CL8;=;X#yk5fWD +_5vj:4Ê~Ć[V$otyI jf÷M+*6)oKt> ]rdtQ>6­VJPkL'uZ@}d+O*D5Z`7e>s0qWzE8{<1HUFDx;Y̖K+z`3 <^l Ŝ2_BwO6RwpD>vyo427ik+D.}YH~!\,l{n$T  *Z*B(0_DMcdƇ]=C|)#*ђ_a#iYe![QɕѭmpZ63jWxfZ`k0H Wԯpѫg*V0̔ mX`$WZm*Bz\⑜aɕ-Aqbq5máܣrpG{qM3 .#%D_܀vGkR0vY- .FeWm̢{Z^*AsTfX3!hؼ 0R"i=릕U1!wkg{GCc*8x2?rbjnހPC0"rGʐZn󻟾"ӝq< j7Nei"N~$`=A!fgy50ٶ,$37Q +~'}bM>xUu +So(eԃ&kӕzi=x+0M8.9@-&q +ObxYFg”"ˣC_yFbix$h:6fY5@QI<[:0{>(rK9|2CCg4 Cl)ںKgU?AeT//DT~8Yc%祔Mޜr_i%DpN,K `,-{7ܥ& ٢[6@ͬ/BMn^xצu!w'#iT6G̖Pv? -.;ȭ5߇g[+ g2Q퇒*f\YcM7 ו8" cATpɶbh\9KiۊJ?jg _*{u4R>{BW-|#m`XO.h.Lw5|ʷ^0o_hmn,eFqQOy.^$sBkR|ħ[]`7 +f.[vɻjocsQn6<ҳax/(MZl垜ThF_6LZ5kga^yC`4JϹuBO{Շvi`.j\7kمF |^jӁDLEO] 7zFD'?443HwаsYP1GӘEoWSP8P c-bSFk,^ËܩI@X틛3 ƞ +yҢbs=C5jϮO|%[PND3,vǼ#2G<8 J0rQǥQc"f׎jo7L4@Ύ^欯yZ +>R(3nx7zB.EG)0,5{[mtbE??)v[;b<\ܼA,e<[nc출B<0Op^z.}jpigP=7& [##ݙA^kmU_0> +endobj +113 0 obj +<< +/Length 13103 +/Length1 1830 +/Length2 11273 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR12 003.002 +%%Title: CMR12 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR12. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR12 known{/CMR12 findfont dup/UniqueID known{dup +/UniqueID get 5000794 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /RLYLLI+CMR12 def +/FontBBox {-34 -251 988 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR12.) readonly def +/FullName (CMR12) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 65 /A put +dup 66 /B put +dup 68 /D put +dup 71 /G put +dup 76 /L put +dup 77 /M put +dup 83 /S put +dup 86 /V put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 46 /period put +dup 114 /r put +dup 116 /t put +dup 50 /two put +dup 117 /u put +dup 122 /z put +dup 48 /zero put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl75R 9z(X*Rhn5&g\c9`EgwT!xIJz҈v*lcoƿsdm^%=谺D +u9#3P _] )w +UA8 HuG:DJ(W;]-0<.gSB NlZOLӡ5^9:K*|F +{É ڇE,q>j0^x떲Q'X酉i ;yZPt>p1SV}:ުad0h{JA)Θ[ U=y5pRU&0'-8tIAx*̣$!gRHS;RVU?!lM٬2gO.T7wϓ)?CߠVb7^kJ;c +N* ٍG|Ucͮߢɨl6h6[ 2ߵПZvUlP|%)VǸm׫=&a +Js_̲y|{R6ĴʗB7jIȘ2a% @74 @4(.= `h'p+xvX}?G3D:^ӟ*&4prx5e^hk@S_̎Cl^^}ڶ-q9@e @|wMrc9P(TkruY@MnuW`%?Q8wG3g; dlo 2 Uu6C֋%YT'Rjo1Mn}L+:O/`@ӟӎ4J +B $YaհH Ag0IQ<;v|<6G@tqX>ɏpI%(Xv7}19lAKڮ6]+l_6'3`k*T (]65R-[(EAJ!3s:e*Aܣ ZEsNьmcЪ..> ˆ>Q&x̹znkCfqW-ٕ6qo*p+.gjlZrht?3:2ty&F!w^9vӐy*'ImtӮ:dN#LaRx!d!R *9SDdkb$Vdž^t4}h5eHNrHI,O6'l +NO#xa OTV-(!JZyX !]z@. 5-DL5_rHqg/r秂gͯP%x d꿖xAcŘʺϡYd(*:od`AMPb-nt]#lg&eb5d*OE 5 UThlv9_)$pC+(M ռPVOptcC`ՠ0IJ85YA('针1J ) =n?Epaq\')_4}KY+d>^cV60EZt,)ie Oӟ5ni8B5*Ƅxn@EDP>e$I^na Y>k#w?p͓t!_1 dr{d ,@]+ضCzn{0RUK,&Ձ\ƭТ1LB#Jp0 XJK7ZLD"afI1?jt'8:/(IGʵ6 <+r xj=9zI!ƶreGNXNpA4Us]b;g-L:/ڮpaؖ:1xǔ`V&EE?c CۗǙ77-`$Mv|&sČ 6X!g#ndχ[w䄁n(dَoo_o2<ݻ  xMI^ +[$dDTZ jķi|O.E9wbSsBz֚ȴ!2g6bcrۑW1A"nX14nKOC-NA=9g5=W^x(xڞEt8}NIDʄ!"]}FET2mRi< r3a0!fS&W{V_ ħ/Wc + 15y8/ V㯧٧򁂝*^F}#? P掸-~m~j𔜒FvV K.\'YƎZ|9&fr7ᶀQ~n- L5Q/[[ORue>G zjP˯,jW灔Rڮu7q jml +3!9ri `u8!5$cUUO;~}ۨd>̖ glUov+"Q%z=$Uu<J6RGʴ̇vm%û]=PC}_2k& ;eG7גI0Qf/ e!S|2F;֐n3:Gj)~kM'AR>CM^}]dLBu(w& GJ*ԾS0|CxoiNK@N@f2ްir7%x478˷턀Ȣ5k~:Dwp";jA `SR\Y.wNCky~uH#(8N7 v/I g;0Mf{ؒF3 SwHnp}D0yafA3?E.RB偗cU|O+U$r=هn5`̕,/^r;5?9>QNGZigp={_ș0H>(˴uWӥz|T̴VIMf*ߣ6c^֟}@_ϷW&)#׀+$ɐ2i_Bzv`]C]c+老ь*M0\omV +,T[a'rھٷ=+.t_,'P)Чr*4Wp$ U{-тB qڠ +a`O|qd3ú$/|MR-` ;6M|şg~Y u[l(oԁglEwք+pdڳXlDXuG b2Me *eiRXx8AEnS\RyEƒjT91Pr]T|u0zWMS=nkčeԍ,AFk/b\vI QDksh>`aP(~j%P> +GWlL?ݑ&hu&A$%9c\P "G(" z+"ڸVH1GڟHxYTҫs-pSCq: +99xec]R{zC?yOS.+T#``" kk2A>&^Rz=f)gjAݓ'xbBPd<^Ҏ,!ávm J!*5ҋ.5(K>++4y@B[Y -`͑!-|RVMr6 d$jwe(%.`. t +`n1h nzeR#nmOنwwOu*NkxcV9Hq82ɤ3՛.S+@&\]bWߡ!Nޥpa0fln +ED pCr:Q=̝W8{mCUط;Qtߪjƚ|YQ4C<ZeoDs8HMH3jﻭ|p8=q?Ҽ=EEe>6K}f2wa]a>>jFɷ +s V5ˤ;*nb$Svh-8yː=isr(/ e8'VZL078L )EMрKD„&#SX ,}6kbbx.[醄Ӗ0I8a {g HV$告$jJer= cOa[Sk)rάC +T~d^ъEg4pkRm$1"o]~(}POi˶8=Xbڇ*g&J3[O%w ДyRG9c&ڈB8z_:.;с9 vJ\sl}OQ9@6e#e!K[5j2.t9hF"؀Q`orE2@iWl4QBZB9caS2nO@[T 17;̺_U-c HmlyM?hI[@򋛃v4{'lpk72Q9EA/H)Ja7}¸z]Uf{$:'R 8¢VkAڃ]m,P|.Sɬ},1LPa`3&:3 3FD5۟mўy 4otXGWثc M}\8=q-A5xo-Fmԍ}jw\}9 S T6@Ĩ^yBӾgV.B%"FHuXL3@KuYb[< /o&\/eZj OocI5@G/ܵ40;}+>,cA +?~S0f2BxEmD (A0ڱ)rdZڗ-`Nt=ue8\wg{S :4B-q(iuB{vJ3" MY:8.YrOL5˒ ƃ O42#ĜvEQ2'K碤_# do^;<Zr+.a-ȯ)OH@ ʴZ#g4p%@)N#=hq|y^ 4٧}ظo O.cGA';" p^7ù*2F) ϨeBwrIFB,EtDqi/U + nF| +&}%- 5/s?QIHL}̢JZ~s#YS.#'c*ٰHW4֏VPVi'amo Ey6c& f?r=Am1v8jP+l"n"Z'8J9?IC1j,H o-wQ!& Ik-oɳP؜8Ěmcqt8?t҉]oRg\gYtU5u%H6t1_gdwL B#!-J@n~sOΰ?tr1\0,sO]7uj+۔lA|J6yaz/2$E-v+Ϯp螔d{ؠmpۓӒDÝmP(iФqejlQ6#\}h9~i`\Q4jg0j3R͈RBn[e6cZJBMh;F:8<\aI}R.dik@YJ3o[/jdDӁ;äC!-T>Jq&IwTXs;sPx})'/89Ub sxqǶn7g-L[Gq$RRDzNcelTq3xVsOD)Xͽ-q| -HS;e Nn:as_zU[mK KeʽS/΄?H^ w$Z@<9[f]`G{"MD-#:*6b4E! @wd3M5y{5CYڭ#i3#@nl|ަ ek܂=&a`$>dhPvHjƜO{+J +vXً6!Zn%Fas|MИaaWBD$QDH) nIP7ȱJ !ĵzudRڟT uΌk +^ւ[TBAidP8v~G<|KS^OW9j]0FVЌd]7( Uܻ 2!0a4w^(PbbPCg.!h_LH֣5w)I7˗ZnI}.ga1%P_ewGoڋd D4遽@qڳp$B?p=ő d?Ej󌷩//mXcɾ+Yʘ!*>)3{n^!Q0e!xఐR$!#RCac~Y2]U%`[pA7<~a./JQ\rmE[,XE,){,uEn PhD[~Mw6^h t6ʇ3jј"Gt$s;;Cr0[U]n[RZ\w'#p7ӑ!/m'e,/r4P/wX k8zcZ~GI3%^ =8l6f5BWhe$nZ63X߿XI\І+[ ,uHbT6D-@B"6Gb*>K\h;eF˺hoOM1)?XM@C^Ov.xaso` +cL/Mduq.$@7g9"әgB]iا?R4AHm()qPX,`SuǕy{#ցRNu₲7I_Cve'iw ++J-W6ިy[oܳNQd xvnT>pp"ɄȶYe&.MU 1O/j.+Y4uJoc2IQ!R5JX1x䧞v +4gPH:@rOn ̭ObH4jNy?VX$5ľ^m %Om(fDj`;P؀q 6267@aٱ>QӔ|WMF&/m~& 7rn|w:tQ4D~qr%+ɇzdPe'A=_OXذG5YȤY٭w a+Q ,p< 0Վ(Je]Vg?J`*Y\ݍ LGF?1`M2() KgK-H&]-SL5kǕ؏l%cY=3^Ӫ2h{6/y[,rKaDCD:b3rEڦwZqf:CLz%Umqڎů-bgtf:\EGN,H*2e"ióNH 2 fŌIr"n/ ?LT^HS&\Tԅa%NyJ;jox* uЈ{תMfxg^T=F77Mxҩ!Sw25(%ʡ״$FTUa|SO(5~j#>-^@'Ao18In/VP,Ȭ>u LGGړI@'8KBm55h㽕A#DCaw޾Ģ)c{/om6:@ 큲f.@A1Q*IpҒqd< 4\;T@ SmV&Jn*"*e!<0i4ڽRs<6UtZU؛%G./+qo>Z'R ~67vh:@n$v6ήNaBJmMQ/2.+Ygl9eY p4qw0]x1DgG>X#QtY22R9@3 p<#cg|:JJ:$ ,)do|b'^:s.^ګm\Ǩg[yWa<--d<*@˫!> +endobj +115 0 obj +<< +/Length 11217 +/Length1 1721 +/Length2 9496 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR17 003.002 +%%Title: CMR17 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR17. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR17 known{/CMR17 findfont dup/UniqueID known{dup +/UniqueID get 5000795 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /DMPNDY+CMR17 def +/FontBBox {-33 -250 945 749 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR17.) readonly def +/FullName (CMR17) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 76 /L put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 124 /emdash put +dup 103 /g put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 49 /one put +dup 46 /period put +dup 114 /r put +dup 116 /t put +dup 50 /two put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{.2J] +J!(^{jKD&xe}zFCWYGx=mQo.cZ|uJѧib 0޹r +(:VZ},uxSؤgEʼnr8BYYP?GڢP7ݛ>`_;mR&W4*xhҼ4Iwp ʒ 9~@c]]Jˎ= 4 +wiH 2NaEdfsD-{y^QmwGE : +|:^Fz_Iwf@%)fn]}dяBڳin3Hj;tuANS}^{8a%Ϭ_K_3AaD;]^Ĉ>kU|=o_uzz!ؽ:`2;PD3@|tHt]kU@7f3p\MDE[k-ZmCH1@FO> T']0ڵ9R _GAɻwWYTƃt!|h+*,9Xhy5c3%h7j,OxӇܘTuھKQQ}'XIUp~ ֕ҺopMvnWdq-ԌuyǛ˓ʀ,IFk; R5H\|o"ǀ*ƃW0KDT ڄGTՃk7-OfB)UCfE8. IW0{GԦ BͅBRp#hK_߇M|UDޙՋ**Pxmr8/XT7RB/u wX2~WV ^hDieT;[1AIKQ1ނbViR~9#'\ pꬑJ55gz7gGHC(ڴ.-H<8DJZbسGxO&Y=A yeV^Fm܉=k.D(04@X=3c8˴k"gF֠cwz-\'*VR3Z'uQKMd +b̙9usTYhIm]d< 4=uX=Ro`ޝV`$/>zb7ٞ'jI,$io4¾.2)@W'NU%;ʊڒ+0=E)*)P[g=l*SwYlQWy*e) 2i1L~`LJ\o~CjKh~ҐmpFP`NƐٰA+1A ~Av/M ]^/i"Wj +oU<c줵X1/ݡ/FiȶMw5_Yтqco޿jbRѻ`"}]xS'2y&n2tjQS%JCI}LS[hK蓨4(Lꭋ."70ljVψҲeI,xN7VxݸցrNjokA ?Rot8 i!jp+䷿.<Q +0R=I5[Um2v/[XIvQ-^.)=\gPy) * ?[g%Гۋ" ~ lۭzL:scE=y +|ZO+*Ce_#>u}99h9Q`^Y7)pT`|3Uv6@SS*BelЂs8l }qF @9өvUP; y.fV1 +%Wp{0p +d$@":*O0JeڨNQkXlYy?پMv-^Ie-??V lG["C;$t(Qҥ +5TfcD9IBӢ[/CjO?$!oq{,ݞl yDv8!$f2ҋZby;!0yIWR5_־2>6{̂0]&V~YdNH v v>(ϭU%+[ſ8D-nU1GL ȩFN?'c?_[v cwT;zjXig*GnikU@Zi2펯ppܬ`٭=KBn9Md 6^beXy9#mEKe_C ß-('BގoZu#7stKã+ȗ)F):@يx%wkcA>՗ +R~9CSM9JH<GOU4jdd8D\Pi3:PN72gŭR5lq?{o:m& ؘu !p_?cvX, ~jiޠ<,]U|>BSEw߂=$jU'0yDálj`]XxT +̻lZ>i(N=(w{1aYuPi~5L$|3y=ȽvZEOgIfX2/q9ke(dw*?QcDa' S 0NC?N~ (EdF<y]ZiL, kAM ؁Qk 9LA@Jv, D$_xSz/$wŗEYlG~h"璲VK[UU;P61 㹣vʷ4p"uK(nh{ebI`C">>S5' ´V3nkg`jsh%LOQtRY nugP4\RM#%~#ŋO킣BZ^[ `iBڑo7Tƒߏ$qE ,)b;a'8nm*# +mhbkS.zI/=^arz`66nC_”+=Rm1eb}nFIs>u LgnWPCNvߝltyB:N@kln\K}+xn +z\}㏢O[FչW)4iSq?s"{-W+#Em[^ +͈%^K SK<eNM>WQmvW#Gn͛jRmh&MF\̕Q(S%> ǖs7nԚc.mj猊yE*HF_5a.^^Hu(! 48DF +)pߢz Ա9mEG U* F'>5/Ya0-)\uЇyk&KrS4ĎSϸ=^P3qFڏN=k|\f:/ߴؘ]+{A M,W"#O(Bk?1,Ԙ ߁Jֻfn)zhS5ػũ-[Q>PV晴 +<l_}@cޕ?|Pni8WQw 9 dkY0yhbO}pI;!cC((@r>9yӂ,oE}٤Ӟ X$=rϨKGq5jkQ?~w}3;0 CN Xd%7!́$>$ZA9}oB 3+VT0ky0l"I_>玦#7b4 "NaCt8Y0WsoP}wE`GJ>iS"KnG9>{-Qo^]#(PG1q߈Ii888ބ:' ϲ&_+`RT%#>DLW*IIQ c|YZFЏ#«L_.\jvR졚ʾrf+eܳw. Ee`{TG1ocJigX +lȣ8c;%|@ڟ!DmXJ` BQD!h#Hz' A48_ =BUTHIո'@KǁQX!*vVZ[2.UчÓ.3h}w=ߥ +^[7zɁ18 +fQ*JO!7/R0 ؄hy;Y%`z'NIDXE|_.EԵ]n80ESGݦVO=WX yjs1oM64줓].ǧ d9M(B7rkwNO}6|ۨߘ`W8Adԩ3Tk-jcM`*/*b +5FEȚAl +M(#ETY9W!;54ސ29cJ.KLɗd j<=۟i}b@&Aoѫbcj_HAFGg}[i4m}ފ#Tơp{ +$pZjI:[!i7/AlYHwv7N03c׍M(ZW%,^DE?¿oaG*F6xW(w)L46wm %5;n\ QAYf2-@">*71c_vmY # jú!b`Zܭrž8Z<6%⧐y .R~&ۊ'6L&U'`#駺"nvo)$ <3|eo͝|Jo9^^UTG1HJƷJG.u݄$ӏ(9X a@y1Cte$`ZjqO. Aj'0m.,<b+7f{'g%-cjMr>!^WĮg-qm(^ }CcR̐b*BQFO4&\/R*uaY{Ŵ֞b8AE`(tE? +dXoȟX&}Ѝz>B)Y(Ŗ d:jbvl-R3 ydH1[b ]##YoV0Y؅Ϝ-q]xO.A$/Qiˇ4e aj!ٷ]5RiZ#g[u)$ԑi ي}d!a|Y0[:s>6~1G?1.g~ /㕡Ѹ;ynI2D!D;½D'wi Y~joUІ=PG[}3 IX(zw{y0&E\2V4V-40uu{ VhDіwe$h%'WR ,Ώ*g5-rNLm;5Pӂ~TBiN'Z +pjȅ9?)M hdJɈ1VMaV@Y> OdJp]0F{wMJ:r#^%񍚽2Os=)p<=*U*D<ɨ~Dy'\:Rj뮹B#b{t*ԴQ…n@~mY<*gs=3׀=*]@s$2/eW6DDZ=+7cFRRcNb +[{,Gq>AVZUv|DW5}zdBi"zH>LJ!ig|Hٛ7wq7v潳n5I7RW#8m|`lp15ͦ@fԎCI[ ]r'_<WO3 +;o#Yy0F\Yi3'!GA_`_zV_dfat|0g'Bg7:3U22bC' $z'i::~v%B${-]|iY;MqVFsΏ@ݷ bʊRSp€[.7>\{FQ80k1bD9̄fʼnV1F(âH lVl96m|QN8Y\@]P\"Zq8)7_Dvݥ{'.Gyj&n +:PƱg=es'd=ZD#P7.ʰ,}me!K]v9MiW$BQ~hGP b5]%tlڨ}FOQ\! ++` Ke60J8 +'O1AM^VvZC 4 +>څt/:Mn#o-OȬ iގy ieiLE`̡{_2G-kjсN1ҧ i1\vV3j`-@&o6 >&^z)d;084c4+N%]lH#(/}?O4a3=,gŹVA`o?:)h";J3Nw'E=PCX9oĢZ il [S>QF 6+Iv?ڷlšSQ'v;aMm6$bC^sD> UCޜޤ +m{Ζ5d&DDOSaiFҎc.+*g&,'[itm\VS=}_ӨV"hv6kp_mIZRr|[pCI`@Z>&t8؊M ^K͉\ &Y@\5bEnf;&li@3p=Ꚑ+Ebo)#uրA00bi:d@ɮە?OKu}tݩvXicLLc_~ufJh(i8sc3ޢ3: !{Ȩ2,0hJ~ mP _뇀)34@!`io +#ֶW +endstream +endobj +116 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/L/a/b/c/caron/comma/d/e/emdash/g/i/j/k/l/m/n/o/one/period/r/t/two/v/z) +/Descent -195 +/Flags 4 +/FontBBox [ -33 -250 945 749 ] +/FontFile 115 0 R +/FontName /DMPNDY+CMR17 +/ItalicAngle 0 +/StemV 53 +/XHeight 430 +>> +endobj +117 0 obj +<< +/Length 7469 +/Length1 1373 +/Length2 6096 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR6 003.002 +%%Title: CMR6 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR6. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR6 known{/CMR6 findfont dup/UniqueID known{dup +/UniqueID get 5000789 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /XTJZVU+CMR6 def +/FontBBox {-20 -250 1193 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR6.) readonly def +/FullName (CMR6) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 49 /one put +dup 50 /two put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl7Ӧ!b^Ѵ-E>3t;G<;l: OSS*O?9-w yg8LsYtָE qHp0>ˇ +,qۊq mZD]7ʺOk-G_\SyGLN8g2Q}:ä|C/ɑl ѓčC2`Lu3D*Cǩ5љsLUkmH FqTfZ$|2xlڮOuxgG/|:&Nn$JEQyރ4>py'3ji.ǦX9~b0 ub;F8(PFY|DS%y=gn!QZИOi歨H,a7`_Z<gZeߟ՟q/~j'[E1 wg,Kom>M8;r CXVkg-/R@|lbC/zK_i,'1Q7^3EӪ9$Zdy]ltr=>K%a1\(t.EzW(#MN̑6~*E;ֿCa^1y5ݿ'hyf +s.8ϰ5ciG$5g0KTlp@>]fW7QGVn~˟=]Z`*~7 "ڌcw0U{Yn._xIPYQ]`MN!Xw:R;t+]gZɅ oswQU)8aA^av>xƍH_n~}StG7 K72fCi0Gm1u?4&]ژdFpmUhӲ$w\Jd8+SE=XnV%?ү֟G[4D)ҏ}<)%pD%qrkoX(&Ƕc<^ԺO;FIRCK-fjz hs+*U-\(=D[d)@%t)#ْMٗA=5N$1Qkh|)Zc׼=}6^w'eufH p!x."s!SpزvNȗy8~%_mD8ǸrɳhwWu_6[= +V]Y2?% +)/KR|e=b_0Sʖ531ؿmx> ՘OX![ؠ`vf|}R 4"~)uv E$U\W;댞K0 6$֥拐Pk?yy4<˒q=CG$ @d~A1Q8A-|߉b1`zj ۦZ\.r ~s"b]Ry&rD0hLS)z6M="'OOQk {2+$}<໒W` 1=',hkƏCfE5F]Ћynh|d/(~&PB9Cx9 + %,9OKLvH,>Ҏ,6"+DƸrhL<]A+6JJ9ۿ2jQ}bF[z'p&S*U$ؖa`RI=՞dv_\WB_5n[&UXiNcuοrvI]VI߮\S"Ivs qYpP]5||rOډccB0KV|נ40Cajps8A軝Y4-L ͯi FV{%xE_ *`LOU +ǔKGs|mJ%5ݯdAv<jா-W:,=BYme"r5tŧ>,wxI_ esxRtQeh; -[Gf҄(`*/I{w4iOa"č\%{-+`8@;dZxW'gA$vq%=@ Py_w駾{p6LMmM# +R +Y$Р쭀|6|噐ȏGI`fkqa}@tZ&'=3bIgU5eA},):ichZ:l҂ 2W#30rM$a ImvO", +:(%CMi@\[ +t=UMn[B_2_@nu?L,DWUx=u}#m6xA x^QZ+% *{ϊշr RH [*Yy0iǭ0abP7y־pvkTTR+%7!fF gGP2?S%|b%N&t:>EOYJJJZBH-!~yp̊Ҭ㠄֯d z/3j*(JP$'AT˪x"b4~4]Xպ撾99T<ԟʛKȟ9[I{P>5Ruc&(0ܪv;{3x}_%.beW2eSxD8o{ۻ}wn,WPz;+RtVX= \uBU(Cvw?H jt~DxtӃEP[x/2)+ഷʱx46IHgoE'nb\lLhcb/K}kVD u6#+9oi(gy5lS{ ZQ 0dpWg-Lbpy\z(gR6eKG=9U2ݧCH opr'FS+ U$κ h; I~Ζ:oDUEFyo;0?mP>"#Ǖ T5J!*S@M7#8&-yn95GTɄV ++WS[Om3Pmd,+ST졆kyR<$ ݀ 2a&=CԠN 97#~MT?BzR͹Qz]sTP@P G- R9Mz)3MHxV'.(s;|_OT՞X9`G $PW٤eY=fE%ԤOpdDmz]֥zK+xIVk +w:Mm4YV#⺸M]*Ǣף9t5#rm'Eeo$Κ+z8n/=?njѳ((,O2w <6Fnc1!AzVRIز+Tko9:W\v.yA5gf]?j6)xy!N5g,:2F%uE`Bxw(ݯɆ&^͂NV۞AB k+&@'јsƒ_;q(_:.:)[ ?bt.N|Pm}/u#7A"U)T\ZxH ro}o2Xa/vD3kU[+,뫲,O 4%߇$H'űC/ |,v=}醜Cy`6YP*r8%{o4c1OSB!dA6]W%gcTޟd>M2^Nj[N@*Z;#hhK7#2;Cݶ2 wC"[yDJ,#b‰ZV*7 xߘK;Дyv96I)I" $!/8o(PyRUS`<!{Ge+(CuAqlTcu[ j=E՟2C4%2+drQ/;ڑ}C`@|&cſ1IO}5& !v,+M1pp_㯎0iP͕񇐸gZ1:~i(l=kqa.1':;)]4,6uxcLAa^!L"u +ɜ~=C3[ .18jITOQ +Qy(E*>'߇߃5 h V`,vr3TT{3O_<΄D+ h3ʂpSV#u:>f`"_Bon!wN y/C5rb?7@?+V5خ +B6oYq^5Zp r,B^:NJ07Aϊߧrէ}E4zAWr%`HpZp={o.{#'uMTÕ[gI{dLAN }be/F? A]buvqݓ[3<4MBTparN[0O4\ۤ识BoƸF >'dnxN#ik_Aޛճs#;w͑2|ڜB8"f;GZ@ +?ZHu&mٚ< DVn>* ך< "™3`Â"0rؕ|,lQNeP0xݟ=ϺJ9mX-G.؀Ƭ 8i +'h=,0V Px8kA8(w}Bׅj)ȇ:x,=NqQT]2]~T/_J:x>`!e ֐p:s*#$p9ý<\Ϲ3ePB[Z89V:AJ@Ͷl@RՁ;hܜ :Snt(&#ސ K X,G +.~e/ +endstream +endobj +118 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/one/two) +/Descent -194 +/Flags 4 +/FontBBox [ -20 -250 1193 750 ] +/FontFile 117 0 R +/FontName /XTJZVU+CMR6 +/ItalicAngle 0 +/StemV 83 +/XHeight 431 +>> +endobj +119 0 obj +<< +/Length 7907 +/Length1 1405 +/Length2 6502 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR7 003.002 +%%Title: CMR7 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR7. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR7 known{/CMR7 findfont dup/UniqueID known{dup +/UniqueID get 5000790 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /ZRYLLV+CMR7 def +/FontBBox {-27 -250 1122 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR7.) readonly def +/FullName (CMR7) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 65 /A put +dup 49 /one put +dup 51 /three put +dup 50 /two put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{ޣ\u3]G~ 7G!/ Q FM~f/m*i("!i +K5> ţ d,J^,]^ +z* +khjOwq k&,_?Ɉc"n?W)Ջ kÖ投`Z/S *?c|Wgoʮbi8hesQiɺ4)FvP Vؐpik`j`EU)oW jBNfPTa_$ uDd3QBZSfyu4 螨x঺N<1Xk7I>%} +'T)~$I%qPI#-MVxkx@޼ۜZJ6h=hAڰ:#obv0e\¡0cPBz{f=d1G'{1@dD~yXrDOZE.ϐ=(%^/2V)(mfR20`މTLm/QL zKMmͥ +^vA +oEGxvXIxAW>xCª5!w^ ĥv(4,-eӻ?/R?Dqeq-xE $ܘ*3oᮘY+0{+N.>ψ'=IJ +f]̇C"spn21 {3=Ej4ZN2 +K~*w?#9; +A)Py 7}^muF2x~m64&G?r\|6L)ew¦ØB+rBc۞3v +!:0{uL +âAj}{q3W^B'(Yhn0WRS?u Zin=ٽڠǘ){s=m\ul^GhN@(s x6bM'*'6?nA{,1{E.RxmN4k(wl30M\Er +pty o> +{a_S +[D.tIEӽ ]fVՓj7Va_a"-{#- +:bO[)HAXE뻔Ug2zOqq" rI~$>s0Y@Ȩ5{I>y炲oCA2=B?"R +g_,~q.E| noϗT6;i?Xb4}teL1~&LdZ}2W.4.^%*D|Z?7W1 * DD?P_toKL'c ߇mS>-#| ;[R1ڢ` +@@onh.VF+w3ݟ)RX#9sz4X"#bwL{cFNj'ƌQԑt2Tn~. |_ߐk(Fm +n8*Y3".g~3SBج!͗s8 +݆ iD7D#oEMP00pn̋E\ٮ+7_ QzRĉ iDoB=|n$2bVÛWRu^]72# +x7SE5OU:?oq W\qPt<hR,v7EbZ5=>Û֜#hSRA>2O?l"q(DOuk4_}Ǟ# `N0N_CB<=gKO1/a!!ԓ(`J˭9.R˨y1jlnL`f~ͪuJjwD19K^W7L(ҿkH8rC/_! 1gg` bu VdoT_E$ LZCbΏ)#ue*<m}}<Z1]7n=6c~#`oM`IGCcIR(f 1?>+YKCZ%s)pxHODRhL⩩? +F,@۷l-%xWuLT7a5 +b=oюca +rPYqf3UeQ6ju! tYL,#Ev8?@<m?ĸӿY7^U0M`X,oz N]CSpbӿ\{2,1ߣT&JRCu& /D#eΓ|}J-ozOYTC]i/ K^QaCi{;ᤩ`; +@WCk2YHG$JԓO>K+ +F. %KWWZ ucQRT1 >r튌;FG֧':ũdXn|I]ͨxq/1siN$bppa5DC$6lg*4/*$Mmd$$0el7aa (w3\\XAȿ4`]|v21) d6.7FkC/1J5deGñqvTߞN|@\%eC_>$X8cB'f{ nQZNr Rn}R1Bz _Мך-Ekjmnk"5j/2~bE9#FmY۩~|NDpTT6Z%H ctjz3\ */09R[Ƣ3/c4֪K^ 3b%B@$Md$8(sPWcY:2N&q4$ +VYvHS Gr +?6>s{&@ Xz #xHH+D%vZ~WO?V33N FӁ9 +[" "rme{3L7gdzR`QK8\ڕf0h <8 y +9\PD^1L1̄\$CFblMQz.Iۯ8fv -%ڞOBTVHY+pJ}S +ɲmpJ3Yas ݟ*SQYLBP_[HWBQgf `~[x/yp +vi >zxup^ľ@#uw<4b,m*}p…N{fE@fNg.`d"ŵr sr45S-U_x`F#忐{+BUTK$GÚ t3#;8d TpLxcXdl!vFwאHњmA[w0\&CPx#5]^%U3z*g5PG%E)QG"0)zA=W J]QI7r:s>Wv Z8yey5HE <+lWJ"W}39oWv"o9aض8^>QL%@_\^b"Ap6@mVy +`0="nʉ?6* /zOMpGfT3ۘ!L3~r,}CN''HN<#`h-p?{/h:â3di|/*HEnz\5lѕ:;ܩ'$"X^Xˋ#HUдsĤ"خGrIdFΤ +endstream +endobj +120 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/A/one/three/two) +/Descent -194 +/Flags 4 +/FontBBox [ -27 -250 1122 750 ] +/FontFile 119 0 R +/FontName /ZRYLLV+CMR7 +/ItalicAngle 0 +/StemV 79 +/XHeight 431 +>> +endobj +121 0 obj +<< +/Length 13328 +/Length1 1851 +/Length2 11477 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR8 003.002 +%%Title: CMR8 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR8. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR8 known{/CMR8 findfont dup/UniqueID known{dup +/UniqueID get 5000791 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /TPJKYX+CMR8 def +/FontBBox {-36 -250 1070 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR8.) readonly def +/FullName (CMR8) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 67 /C put +dup 68 /D put +dup 70 /F put +dup 73 /I put +dup 76 /L put +dup 80 /P put +dup 84 /T put +dup 86 /V put +dup 88 /X put +dup 90 /Z put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 103 /g put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 46 /period put +dup 114 /r put +dup 115 /s put +dup 47 /slash put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl7_gѳs6;P}tx,IvJ3Yʫ] +=~Hrl;H :(xP/PL͍SI'sb~|PpNcOAͧBV")Th^Cx(Ry,s)+Hߋ;m*?>H"%N;8'bGZÕbd ^i$iaesF)l:}3X + Mv%GN,Ҧ/~`Љ"JO238ڐi -]IGcf7Ԁ2ڣ}T  @ &x߳8h +{ga5Lw'~=OLcgPv9F˛z%e|O/bV K ^Ć8ԇ<)M<m;疑}Od1]ZSmPf4Ժ)}MPg2вl1gFޢp V}{<[5iJOY>5XZ$157~Zڕ-UDm?3δ쩄'V+RGpyDHvx{pcL1w¾ FMNg(S ?)?;@ṂBN߬GXDio n PSSXD[kg[tU^?f27#xUým`jck$u:RمiEUա<.^Y&ۆo9s> û +8jzIC%oOn8Rg#;D2(J+|Gk9ڲփey/9+,-b3w9W7} z᣹өUyTpt_24a6s!O #i׌$޳\Apr$w5\plYn1upd[lk!lRv4_x_$V[HZKr\wu%_F ^ =ԝȆCf%-۷R>Qt@2 )~zx6mXFVCEOxJ +jFmh)XɽЇ8{u c*;e?blV|@-jAf9Vb 8Tdj4!VerZvZ,eV҆?0 +ZWGvl~و[5rL}qTvmjCbM:gÇ VOiڪ#|ym-4-, fFxWpsX!6q-M'ŏ"1,sxɵISĜV"^j73EvV(T^K-k?Ӓ.;d{)pBh+4uU *:m;<%s!- +8X+p&4jO^1TpvD^ x$+flx7=1S6>rMz 40] XC 2ƺ_s5uD^'? jeq (ӓQEuf%x(m"B (brqYqu]ΫHgp7:NQAdYQk(|_S/8aV%'ov"U2!kh5Q?)投g&J$,jS]&1Fq**X*ilSfN{qZ '@dnl{"KDŚ 4tTY9X}4heQ l_7@ZUĩ/Ac*A\4;N{45L=!V5. }rKqS*'R=:tF_}OV-F=;*ZGoe +ED,A$ CÚI9:Fω/%`,miSs1M>l搣Z՟_tJqǙJkuBy#+1HLabL 剙 Wb])Qjfnpht;\܌8:,{=JE2[WD{D7ܻ9'Jޞ#11j:n+G,,ls3݂FITHH`v=%.ayKyMBn!Sukyv"5Dz +֧'4Q| &֨ӷRc3k&ӼJ 4m [[h|]5 +9Jȍ +0g_ +wn{QAnGgIH]E oV值4:(\TYs7HAe{Ю?VN,pPTlΟ fg;I?"BDyв LM> +E,4c| +}=xbK2^^WUAV7xQ~e#EJf/5R2 jn@FԚI&d|+.;b^ɺN(S k< q/3?׏ƚ~sďS}V7+v8kܩ!ȿ}x =7Z}ǜ]c!j~?}&bXqiE3xmΏZ6զE7C+:Kꉓ~FdNg1Gκ%ׁۃ1ýwCl檬q1FQf1Ż9\@¼(ň^Eг%( fJz^ ' R 2͏aǃYֆZZgd U9/|VϽT_&$_=1zGGx /"Fo<,*#Yo:a&jCȯťuK`uŽ /uwaEt #l!} j؇'*eRh-.h;hMoجcx(iw N̸u T=6^ V$[f@[sk4kJ@/SOnYJ\"mz{1*JKْ|(nwCָ 4&j_G.Yb[J87*"&!Ν&${G?`lê);&|vMÞ\SSELok.N&@`S9eϋci n "*z(N(`(j>C1*CɚIbtrjcWqt?[Ii56߫AښIJ'{-Al$h;m#Q5dd0u3+CcZы|1B]; T}݁{*!O^5 ;6Iˑm-x@ʏs[2 NCb+i+Ɍnu}jlD=_}ٹ*13?9r5\ʥB24"F#KLE*Bmw c,ɰh,<#fx%+L54yR#Ss+j%rqJH엮`S|'a!7[Z&.BvK94{~ͯ'ElB9 6gŠnS&}FL5r1}X蝻?;HǯPO*E4%_Qy. +1}ށ;\SlKE@%ŤQ"%VD󩉬y!;0j`.(9d !0;/[ċ>#qod]O>=z-)dgWl|nLղ FEHқ\~l'҄u6UeGBnKM̉OeӁV?hoR5y?ݙvĸZ@'+my5@:pqU`y +2~&@ʹNt;=ΰ oY+KۛFtz/zRk]z,l93& ^ y&\ +v+vXuC2I~gs="(pQ"RQSq1x̦,1fɈ[G]x&͕k5E' zFm]mT{ςh1Z(vtO:kТ4oP~Ԣ 豟l;ݳ1`yI@!fLE6<+w/_+XNVLTI?Yuk6rga tq=M=?u4~h7ajGw֖ˣՙb8|7_Aǵ2s>@rk&$n·nٿ`ϼdKDNf60ƀ4#&649߮XGOUSV9'&F#U@VreN)tX{bn̷|C'Ob^Jp$:2}osre 3ꁈ#R@D eܾ-찮-#<<\-8ŷ:Ws}w Ӧ\|Jy:,xf~X0O @xLcfġ9Pj'7a3A }~P]T#ZWo T?2#[=UN3JMNS_{/,ӛkGZ$FG[B{S[VUii^l>9OC45ֹVqY@{$9oz@:6Oeb90i.fZH车$[ƾl0/f /@?BˆQ!Mђŀ +GX̺fNPiqJbb"ݣv/Qh/0i>h̒O iơwL/"B ǫH 4K_ r:ݡ`ќ nFW0+I4K3v#(2Gq]X8 k. gn߷!Hjl+@ OEb/ntpS)kI'i.OeQ[kգU)hRU؇9w_H,@^>hG9I`\4"wtS_vՆ,tk+y#2^lh rJ+T1LF4>ϒ_!^y@Sp)״TvIƲblfPxKYAݙihҿ[ϪGDZ2اpl.2@gv8}Qx鄒CZy50ǜ^UnM )D4|M,ff +pt οJD`͔0F1c5b4d bQ6p~es2*()G)L8edGؿ3E0@ꤹ/crSu$zS2zNekzDŽO+yr\/T1QwGxt6H5}3:CuXJ6[\bYNH7EA'0mp6AI Թ:FoAi'7G4G{YjL%à>2y%_g;MB^ш ڎz ^紤@fCz/3S@w`7)Qg^QÜ4f)XO[h_sYi+ UHKۮH&VЂ2_4X'RjG`8[m^ŀnej+;C-|pܥ!q7أ +2^HL*!AjӭA8" {\W)x +2k~_Rl`mVLaf8fg{9=͚-f>?mrkdΡIzuHa̤K@c#,z$Xu϶!"M4dOcGԧYbแQ ]J.Ϡ ep (wnD|]J´+XSL ++`]I9K_dnEd|lqU$ظ%ioMzƵuhԚ +u7?+cS,R!t-+=|~92*%-i^r"1r,d/c Ұ&9"iH!Y#puԁ Wl,Nd>uFHG$ޙ MN[z`@YU,@:Ab"~.m|1/[OxB?pKZ+s6V:Cٛ4?excТ9PƪNDHˮY oA~6D}Q$AP\GoZ RƱƝirs^-[Ж[l#5hBqyn{iEV]7{!` CUFL巜&G,3VµyMUylHmd)b|;5x#HTc;,vz!Ϧ]E.&C.h[_ltz;̈[%̨6YzgZ4G2Z@1 @0+~um`uH.j*,… JJ[Wjd8hb>鼔&y?2# BsZIDE᩽W:͡vMYTG]& #@kdH65jX%@Ң܇RA5nx|)9]Lm59ͤQT}[KisZS3L=-z&H赤ǁ!4N!v2AI.@QtJi1o\*\s$}=5ʥ1Z 9=C'3[/%O[9R53+RM\ bHOX#-ߗE r n* +{1{Dcs:[{x};bZZ3V r<[evie\KlPHb;M.V_KyD cYU@ ќ M<'gc9%`[i0aX=$cs" y ^wDk7RJ=%gwXRfUfHnʸ$N~REm35Ů Zw'NE\X^3NxdaW<Ŀd`DxR[uCj+(DE7wk^>C>-M7 7_s ]uy#J@{*ݯ|k/F>׫9_1O$^@CA-XTȼR4Np$e00K=kCq^'af /N8&^øx>SgTsu`Tl{e >N+bH "Ql|QiIqvqۼzHј;zDWc 5RiWrh!#hLnY ɉ=Wwi%/*b +\``w z#p)ǐR ef^;uxN;E<#ԇ|V =` Dg;T ALJ~c>#-܉sE}yգSQJ}>i<[h; ^(/׫?ڽ'Ka.~.*Nƽ¡ \6dh.i3krV;LE%K" sN6ŚY' +SQ*i 咸aw؝R iK2vO̒^]Jh?[R\dnSveYT\" +g!1Yg +_6ªG,R@M3M ++G~uZYt ?p bh$\7찁+1:>2 O $<ȦHbAib2ɚP[R%˜ -X0!ozUXoD`;̑>V=Keh grc=xGCgWsMtXsmc^֧hLQ +endstream +endobj +122 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/C/D/F/I/L/P/T/V/X/Z/a/b/c/caron/comma/d/e/g/i/j/k/l/m/n/o/p/period/r/s/slash/t/u/v/z) +/Descent -194 +/Flags 4 +/FontBBox [ -36 -250 1070 750 ] +/FontFile 121 0 R +/FontName /TPJKYX+CMR8 +/ItalicAngle 0 +/StemV 76 +/XHeight 431 +>> +endobj +123 0 obj +<< +/Length 13138 +/Length1 1736 +/Length2 11402 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMR9 003.002 +%%Title: CMR9 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMR9. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMR9 known{/CMR9 findfont dup/UniqueID known{dup +/UniqueID get 5000792 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /SJNHCC+CMR9 def +/FontBBox {-39 -250 1036 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR9.) readonly def +/FullName (CMR9) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 75 /K put +dup 84 /T put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 20 /caron put +dup 44 /comma put +dup 100 /d put +dup 101 /e put +dup 103 /g put +dup 104 /h put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 112 /p put +dup 46 /period put +dup 114 /r put +dup 115 /s put +dup 116 /t put +dup 117 /u put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{x< ,-.2iRnñvپ1䠕 '䓱_r"O_t3kefBݼVfj9ҳ 7! wX: 3Jwͤ푘IKjfWI.kvCW_5gWZWO~]!K"x؉ruJԥ?F6Jq>B^f'<2bSz>/kaɾP"jt}[#[p__ @Y!ɹsu~/8MeC2+{x$*|܆k)D 3CҊUDw/Õъ7uS2v΁ ~ytKd"f!Zυ?.ǥTmBlHEU[ZF`Qy)`gdeFIrU-J~xg4KX { 7$O@M?\(L⩎z%KNJ`ī}W6ĠAP6N錛"7`ܓuN +SX@*i,xIۜ*O/" +t1;$l% p#B+}ڀ'ƱRS^P˵aF(~#ۿB(I&@}-:{yA$m:'}ӧj^\ĺ>segz!,ܵ/u-9u}eIypӶs$dNQ/9<` _`m;4uacxr!LB Cu"KDPoѼczضgӅj=>1Im9!`Z&USYQoeȲ ׿ 0G> ?:. Ndơ]U5=:-z6g&QZI[)( Q ^6GB϶)Cflg=У +p#E뎶o%iiT8v,%&{6"I"Pu>Ul Ҧn}㪣ujyH^^?"8AÆKh_Wq(Wi4s_޾"/b,zVgl8_GjjxCFTģW"1v&V@}B8Wt9fggs Km }x[!.ZCgA۬<9vD(dh9,oK4Ѐ?Xe^E>miQ>L +|(2>!*'%芡N 7Ԣp> Wr1 N{L:+>+͖:U)h|NS&V<C.ꬼVݦmwҧG06RY H&9g>1iWI?ƗųȦ2•Y;yӂgo٧ji]WQy_6K1_@H{`xx +_gg\It5m%e|0/3Tizwq}ʖNIAeG ='XC8o]?ew(m*>[G9贰c.b7Eم}S(EJ~DRbx `bn* GoB)7!SԦ`o ?9h{Fk9B +L1yo(QG$0װ]3#,OJ8|~"Oog(ĻxCg픻4}Pe &ol0' %Y>VNo؋lj=;xĭ3)!GtfJ](2{)ir18/dYY1AgqHus'3;퐑˞RNt(n> +" +O`AoxbE ҚO(JݸtGhacb-iwS9϶](?##ͬ7ۆDh,,#X=@c 4?q>!7'CR :p\(rGVIʵh3̓1_ +տӄQsbv +tü$>y=-|犬DHB//gm?SFOEn7UߎUfݢ׼Exmþ_DRan*=vߕ2teX|uj 5Θ*{txbl&V֥ !Qz>!)x[5&\#@ag$5$h;mUx)|Rpf *YF˕Hs- +*=,$4zkbkv?JTEz0X_gS"TݿEԓfY S`9ڳs pc<ʨ?Dс] BG?8""t9ES)Bx:oafD&_<( 7NL'%_1T69ypF>\'Cx~LN)VޔO0"A \ũwyzN"3+aYI"" [Uw4Gׇ(ឳد4drچڨa*R+d,wVm~A)|Iy@ +A%0nje<3D]=KԪZ})Bi#ycJ&kusgWE[Rw;)TFY߁΃0u, LTˎ!l6p(RJ&4ҧ·zD(8eWEO (bHN9I2qM"Jp߳ȉLx91( j{x^P@XgS*HXbe&hZ_OVQ#J;Ĭ3q6KXQf M<PdhJ iJ@YoJ fڃAyuVi#84&D:dO&FB+0M\5bDl[Wj>Ju(RܨЗŇM;UFߵػ6ct(Qm})mh i1rn)Qشξw/{I3;4gs,dQs k_S+y>{DK3-z'C,b!HfYLA~q0.f2nco,g5r#|m05oJpHCou{ P1} i&T k!kZeni08amql!2ŧYs}ELDGS*)@N85)C,wҚ4=6"Mzt]AJ)]Lr*InC^Q!IQVZc2ՐU;BFbFկ8nXIAL ^*‚o.\SYIuyXs? 1Џ:GdqN$JgnLs{BqY]jfYBr뎊i5pSCq: +99xec]R{zC?yOS.+T#`J**Or: 1-Ga"FXb2OF+< PpT)Y(aVK +Zѡ̍@ݾO:r^:M9s q@*DY_<Ib>Ce[@Ч]%Ȁ#K7Rjk2A>&^Rz=f)gjAݓ'xbBPd<^Ҏ,!ávm J!*5ҋ.5(K>++4y@B[Y -`͑!-|RVMr6 d$jwe(%.`. t +`n1h nzeR#nmOنwwOu*NkxcV9Hq82ɤ3՛.S+@&\]bWߡ!Nޥpa0fln +ED pCr:Q=̝W8{mCUط;Qtߪjƚ|YQ4C<ZeoD>소V@R6I+jiM׍.;}Rց0!3+B04OqߤyDpk~rVUlF=~K,܏ Єʳre!3wr |fж|l24"le֙'IN,5LkME(9hRGM'W vnvq7R7nmpXr8&kfLSHJoe4+7' #l~zpIɀ=*k8? 15<ۜq_g]]FE5I /j_RMFsv3Fl5\sI\GCq{{* Yr*+'e8%7?`~wu9rYޛ'PdwƱ.=v힗su}]?~.ʙvj/g|ځ9hmag18&Q)ZYxqxgJq#_V{"^vуVWh6R^0CxxLJ`$dCbu;V,8;X zS4;AI#`!wwl[z~7pR/>(кɄ3ZʪOu?(땉aڣ) ڎwuE&]m'@tAtP.޳${nA~?*~>C7^9 %5g5v{~0?:XwELFM]ўX|JCe&Mׁ<̅ٱ+JmPAE$Zp햾7d}[<ƓѭC" q|߳1z O>;5tQ\)3l`ĞDtbjbQ NURPKltѱ![6MW/MH9L|f3+X+H;eg0GkO)M_ *ψ'wj (ţT++O`UrAiڡ ǹlzR9xr reiƞd_$|Cmci՚k̞-&%h +!7Uz;)y}`XRsv^%$|\2o&OkkRs!? &Ti~S"I)o0'%aҳ++ke-9FBց+ "R J!>dm`'c`$_;E&#/!X$+[UZ6 ΓOqh#v\/<>) +aLI\l4\ I@#ť+W:tugX|^{iH3hq=o:#eLĠ 7{t V&.k$?u*U8f͹hs_(k%7n5S +anR[%n +JO+e R_Wǯ +Lf픟H(4!zgބv2>Sv'&=@Z*mYC%i J6Oci.N,\j`s Jh^K!_{}5KK;U0{ 5i}ux1@"u +z1- +_%ū5 +z'Ɇ'ל}ɨXP儌6uj=T>H9CD1/T,W, ͱh*7X6DAF7y<tvc2mhAk;G5xZSi=aCN7b&kg.Š ]|4 yCBx0q'N,R4Uw|Xyi.yV֊5`Qj$UP7鍊{K97@Hw|n#7S둍7p!jw:d3p*1&(b䩋texm _OVq 92A~ 5mAp%z`UmJ<8:?DŎC,,V"'1c\gr? :hIvFk_Vv +2%(^!8?65!> 1 x2e!͎}9fEtz"*TU,]L8 j +thӦuA-xvB;n<2He 69:*n.iG\x -Z +;_Yy=x-RR4EsuG\Y h50 KO9yV\`_[3JUQב)`ϮX:2{oR$&j)Fa8H C5nI]=*pK0#(7|oB:Pᵢ]:sTl) +UUB[W8_믑gEʸx:-m1’G"F ԉq t{y捶'܈t7؍bk}IbUVSٴe|{7$Cdx@Y6.Bo.|?x|8$;`S4~dcz:0hV{"ZEoFo=c]T4rdQMf(IR=uG˧v~F5}iA:M{oHބý6?n)ص9>s#2GӞ5쨘e@b9e9nvOhO쿭1|f|{TS8t>78Ana-,"I8+ qN86g"Ryu; f quz rIp:6QL( gp +R*QQ}C7w]i$; AO=,~&A +HߠRdop;-IU5*wN/* +Ǜ2%>(qd$ƢS2xfZ+r^5Jk1/sP܄!{X1U[&_z_\vRn;#xIM7:Xξ1ZA}XS#y![;wxŹ+Im^UѥA lC8(WPꁯϋWvφ-&8e3.!mV+PI ۮ3-U,&jK_Ħq]BJ taɋv|ҤAXFr>@ #mVa1ǥ\Nz9 cTüV3X8B uA٬_+[2G:rp*zحlF؊Nh19\-{兹?:~Ogh]݆niʷ'QK)CUA:y-5 e.5!fHΩ=2DRv3WClXh)AYV]u[FpTqw%hEc@;&3KmzkR\__vUXa #3_cAʤ1@;s{Ō 5?)ʋv%K*zhlbF|Rdɓ+nKUULٕ79LyN/ % q_Plpa(?-!G|fj +{HmiN.:zJSͽf!'!wUpnz=\ i0kЦ1OT$w}Gr7^_(BYǏ-.Lv@cxdfdBO0 Z,,?nb$|H2 >n8~Xӎ}*H.)}ڝQǎ~H8qw< +o1|"PG>frtė-P, +ue2_-!O +v2]Eg.[K,!2.\ n&e,*3Ci( `9y2 Ym#X ԗ7"8'IN5pL&I>. 9!ћFoHR(91Y'ڬ* )d4ۣ@},;]ZKN{Gq!lOyQ6U}ɕ"R&-Cͧarc0@>!^uXi`=ĝ)o\5~|D|s^:5.J': =oe.Gvwv$BLʝY/|GPi>Ru/$B\*niOKO+.]ㄯꣷu\-?Q.N4Uy{%YVi(c9`D8h ѯ{%LH*62L5l_sM5y@qKP?L_<*NSJS> +endobj +125 0 obj +<< +/Length 7527 +/Length1 1419 +/Length2 6108 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMSY10 003.002 +%%Title: CMSY10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMSY10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMSY10 known{/CMSY10 findfont dup/UniqueID known{dup +/UniqueID get 5096651 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /OAQJWM+CMSY10 def +/FontBBox {-29 -960 1116 775 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSY10.) readonly def +/FullName (CMSY10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle -14.04 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 33 /arrowright put +dup 106 /bar put +dup 0 /minus put +readonly def +currentdict end +currentfile eexec +oc;jAw-ᾉYň5t&נ{hLGqB`d˗Pة|*x\ޖHtEB-gedog7Q`[['W73sZ9 m !tAY!$tY\r[uTIUiBy[Ȝŗ3Kï6zJ!˒Js&B5C"m&`7Ӣƻ3ugNC O~̶uo5=_T/ h,$B%dʘ3l MoYLڶ~3^`12]=l8B6PlpfW< %PIN!ju#,.iXnȼ‡o$ҁXꑷI5V*E6tKo_)RPG;Z@9"V3TTLN Y:Akڬ6̠==80~DQ Q^br/2^KZh`N'Jt4iBYҁ7ޟBU_~\fXAZl_ZƎý'xHbG:"l5CU[aLrf 1[;4p^NpqBD '؅93M&9{ VD 8 aе2n.hf +l?K[$Gp/JzcF8vP3/XO6yAo~]WqDMY4ߧY̢XPEL2_2 oH{ +1x'u|o WNRE홹&lF\LRh1Fb}+l C] (vfo+fM}l?c*ވ"^R]miKOҎ!I ӲR_tW;u@(#t*̧ U{|Q}a3Fl8xtHWA­;!V CVov?³;=>,㧫\"RvRCإQDh +@_,˜kbflAIP^wٚdIHzk(c3xɁSUPIf{KΩs Y/v[L%O@HdjyTõVmqgC9zTC/t~Řo*9rIojUKxj. ,+b1ֲ IlDLQZ3P-no'$F zg!Ј*oj-Nͥͭo8KwQgݍp*1^.֊ LV~m la ]%."`_QipŎs5y.Xͮ)Td1Kk̊jn0zGqaWQ%zJX3tIy0ľ.#[#D#EԂppF*ޘvrOdn7n f9*X:>Ǽ:*Lf͍9&aj;+{0 )AgðK*XKV'zZA) n TÙLJ^Di[:s<ܸ2!U|#5VfUqP}|=G5O|Ps9}* ++gpA,,=|j25Cɂ7 ./Fɹ0tRẊ."we hPempJo@▁_A3QBV~$9Ej= +]? {w_53Fgӿ4BAq41Pf ,Sş6r[v` xG$.} ̔ϾF͙c=f!*˽./wĉR8(@ًz c@N&Imݣ>X!me@lW"VCH8kՑŨj]n3X>Jz?D=Nbn {qbY(>"8*苾ky3o H Dw] d{EʥËw.$Vhtzk$kk$]4cfCW@3plQQ晉b/pTqF8_AnQmK{&z;<տm[i7뜣'*qXTnt<Ռk/?2m)fy#(`%{!Q/0&sxfB+rE[tgOKQ$$=ל?d@3c)]3%*M}H饞;Cdrp1jFcstG'C\p))_)( MM + qv&C3NLZswTPu{sϰP+-UFUP"KΆ+Ye7?0(idL;gk9(YI-l`;`AH:YHb1H{wR^Yњ, +$FԖHDV?pyїP%F=BGKPh~N[I_ꈀCTzf <Ӗ`4|mE1J'$`}R \N2kfaouJ73vKW{M3?׏M]:W;vX;B X.PI;?!T . sU]䮃=X 5rMt>y=*bC~^ tArl'Ŧ\؟L냡P&7ttuGz;Kg4э;u)";SvC~?J/F"6U.0>+KQӄ0"ӫ=sxoJ]ת!w6O.}t5V˩+7Us֩yēTC5GrgU5$&|~G8 Mv(jt Ϣn]]QWOؑm. R[ИoNng IF:?tؐSUOcj2Cm[O7>kWkX' #t'Xd9+E7Nd8{]m/ ׎dvYYwop!EP7F?ojP9"gBP;B^QO3*B 3un$I_Oe` +$`}-9Q/ĥMe?Ұh]b _2<͖+tª[ϜJO@%MI tv\/bMVF05+kI2W9>f} Ķ3tj|" +[LhY)o57k#%H\,x|ssxH͆|;` v%گT[c]e"GUj߫ytvx:udQuZy_Td"b+O]lx'6w6XCDKOf(g@w]fV[~1F^A3v Ovү2v +zT0b#[zyϒ$e1k5dRA`(Ņ@{=yW>>y@U;=H;c{30ü^ծ)ՙ-{OO2R´xQwBgБS"תlbz;Iy\EprkM @@e&3lʉtS%)/pR"2u +Ee5+ٰsZ'bQSlj zvހ~%.Kz\NE,eV2=Mo)-JcV:U2Ѹ>1ȓ"QWOё4*Oz.cjcY&=7Y,A5nIF/?̊ ]as.N*T 9Ͷ?=T"m grvdNxt(h,Dޝ_v +y`+W?od;&ȫAI`knywxż5č-ly SZܤ`Åq}ۥvkmT9ȻT 3"NlF9Tcb`eL֍lU_>iD@PnӃmHA.|Y/"BձO%fA7Si5=6cgI^ؗ Z/Ez4-l;¡^ |lTM~]9< +.t:Q1'ar|*ə11-VN"DM(xSRJk*YK9GW(Ru~|iBcC(†k0MugQK*4(vHy$dor]}o4e%h,OqAhxѪZ/=T +$$z67 +endstream +endobj +126 0 obj +<< +/Type /FontDescriptor +/Ascent 750 +/CapHeight 683 +/CharSet (/arrowright/bar/minus) +/Descent -194 +/Flags 4 +/FontBBox [ -29 -960 1116 775 ] +/FontFile 125 0 R +/FontName /OAQJWM+CMSY10 +/ItalicAngle -14 +/StemV 40 +/XHeight 431 +>> +endobj +127 0 obj +<< +/Length 10505 +/Length1 1593 +/Length2 8912 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMTI9 003.002 +%%Title: CMTI9 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMTI9. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMTI9 known{/CMTI9 findfont dup/UniqueID known{dup +/UniqueID get 5000827 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /FOJGQS+CMTI9 def +/FontBBox {-35 -250 1148 750 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTI9.) readonly def +/FullName (CMTI9) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle -14.04 def +/isFixedPitch false def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 76 /L put +dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 44 /comma put +dup 101 /e put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 114 /r put +dup 116 /t put +dup 118 /v put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsS?#;IHIRd Ȅ'w7 Ἲa }j𙪎 =TU | Ӧ!b^~CJ?;UߨY,Ԭw34D2޻$Xec,IC0aq)-PUaVpSj*?4PDJ ƱNJO'L3nBg%dO޻ƞ BՌ:9v{Ұ%4II-{XM*4ZίORUJ O+"ґvO@3dJxl1Ԛ^}AKG]\Үӂw.@,I؝8ՙ^|٧ +HZsN2u զ,WӮA 33pqJIkEj¯АG8< eMi u}JymKP:cՆn~#/ ĊK'@`F,PFd/\*k\4 Ew>~I(G%w>hI7E?Oz&Pf} ʪշM`j:W24,hV=d *Nu5"$Q16PN--C&>MX ܴ/HG'+:Yӽ뜀fYM2~[z%Q #Tb[zNE!PX1G $zC«>nE|τr'xZ[L#{6@^.|a[bZP js|,dkb}~ā`9ش;ޗ`c,SՈTٚUIR $W\ΚOb_tsnV-8;rsIzAM7ŽL&UkD7§3D񃤐xV} y ǵ׏i³7N5 İiJϨA L1k$O rŃlϳT"ߧD;!U+AddD]t\4IqSҫ6tΟM,I6UFf?t.ZwdTcZ;z W,w)N!!\>07A&.~Πi#FMXz/~ddwwU'(j́t~qBc8i3=$[Uҟy?& O;4x cV haزò]矂FCRSFxR~uZ?2iUj<B'QFX8S tƚ({֟{x [:1YZkDP _ m+5> +kĿrv,=4flz. Nx]0ȆŁ0}Sz%A[7pX+2"o5T{i Ab,V"tCPُF6q@gH1nΈ_=zVǶoDַƸ럒RW\܂Y XtI@2p_'lR!2{+?FoRyR_mr9..>ýv+,]D_2WDujNnI2}X嚉[@-[a_oU6.wolJq *]A/m]#(1»!I! ;~PIg Ju4kh:qKmWRB}%"VJK8fX Ų3"GS3Jh;_3o4 {U4X)K+>fΨۜy~^v k` |BJK08j`- +4%.qQsK.FQe ڴWOlG9ْQeꍲ4Y +s +RՋ^Ff;9D=g%7%z»{`I1cmAH1oYmE&³$rN;*,W7_,HqE'ig^)b~f߀i%!7RN74tUQdد<"8z kK@A]0<6HQs%|?a#V<!C䠚${fT'2Ϙds @Nu UBT?P :\݆F/idl1IZ)ƒ7ֵ;+>wbJx6=tچSe﵎cIQ\/?39bݫ/i8Օ佪S1(+TBPWPxnԣ[9؇ԒG8NFӺOB͒;zwU2t00QI'4S)l#̀"4|ZBRlLC24uGw^Ǽ2FJ%[VgT@qɞV$/N]S;PG"ƥiZ?/e6#7$j,e@aS /?I'C*݌5 ] m*,,yđYG"~)WŠPQ_kM@% #mHOOQ.a.c;iݎ 9Myνq_ҨUaoM AxԎ01¤KIGf, 73nG5mH&-,bNP\|f u[:O%7F-%;棠j^2'Ӊ._|tƒqoidуs" br"(a 6m׽ SEi 5Rf%㺮=J)H)M&S~iLK4JArmj7iv|e+odsC WOя4?߂UF?ԉ k*N!ܲeRjK-iY^e&2RTs\m|y`4ZХng9&JX ^p +풩yf-/|lJϹlz# LY/=Fs7k2a|Rs|cq?d2E҃ŇKAz!w- +C-jiR1X}M:)T9,Iɺ\XٸQ,ܡp4YtF1aubgYcMZFO6I ; CR(P +1^~nI;ʾ9,rТR6LU[Mؚx-&ٳ!YBIV'Nf2uͼ[sJק."&ؒiTM* P5 kJKMGNpp||DQ2qAB7}Q `samoa~6vT!Ҝ\߂a>[((eN1(m ڪW h:{ADOʳ[q7;֑G˜'!3 wBj6f_[6u8\x#Qyb_*pY5 %Q6}&^\W! XVt 3xb]nw8"w=yprZb6 nmbB e, EɋNTSPo]7ઔPv93UU?hP~%us˪?, kRjF%oxڳr/D5oJJy]hޏtñC]A|l|5Tz%:SܸLm-H'X4dA4k#K򤾃}hBFۀe@Kt޼((R$ C]s9H"I_4obAw#t |(?K>Iu+ȡ)x>bϢwnћLBe ^3JPS3~WA#Z=K^mcRھ-qMT Žөm8T lYy}0O((`j|TsǪvR_o./9Rv"Uk/5AGM>n/o|L>7{ (Xի#hO45+DP#ʓfw̯lQ7 _2|]w `cd'-H|_:k/|_$ǁSUkxT86Y`?Rx/=gKA=[©IH :֊c5ckL(19&tP[C= 3: WsaV(Sk@нxw^kϚPxK +-/p״ٱ:Ͷ`hq tS +nGJHաb)}>U{[3bT,GDh4fAΈUchN䷢˶BxL;>b|?Ō[mEҽ80A SHfCdT߈j)}#hÅfǝG CsWl~I꼱`?_mޘTѕo/?t%v7IwcyYn &1kP,q`z D_ {&& TK"/ȿ%z0׻0}}Ԃ' U=ucK,c2++bYg\-XnS%\(_;L+EM'$(`翰Y*DŽ p{PSTsMɝ +4Ou([S,:ͨ{Hs^;'%v#r*:<5Κv#%KEt"gl=̰ƬcjRe]\ ׭X +@Fx "g.yhfjVJ7W!جVx53ʼnboPYJ-TdbXaw"CM*2=Q}vJ(),'$/w,j%^PyX+9 s=td#R_tkK Se鄎,W{f?cPxKSuʶw&LD_Ose5+T{p:`@`/r%ӓY06rS> >}!Cf P!%|> h.n-(~/SnB@#ߓ}ArѦ-ZGe;j`B̊4ܷ2%+D:(1{.6!˽,{~\BjZ0.(/Gx|\}9~S 2R Yl˛Rxb+$Juگ1͵doT J J"Tr<="v,q5nL>*-[v*%9{8o&U kFf/!7 +MQS8W?]9J^U6*75~$Ab IC j#.]1ȰF0Şk?I QXq| +x4ZqmT +rm1Ut_ 7bF[<xf«c1̉'e&k=\ˡy'nW!˗,r4ˡxZr2nL,&s'剚0)1Z[^.qg^nV')wF;-@x+A ӫ(>D1Q2S":̿ ;O-7\ +endstream +endobj +128 0 obj +<< +/Type /FontDescriptor +/Ascent 694 +/CapHeight 683 +/CharSet (/L/a/b/c/comma/e/i/j/k/m/n/o/r/t/v/z) +/Descent -194 +/Flags 4 +/FontBBox [ -35 -250 1148 750 ] +/FontFile 127 0 R +/FontName /FOJGQS+CMTI9 +/ItalicAngle -14 +/StemV 70 +/XHeight 431 +>> +endobj +129 0 obj +<< +/Length 13744 +/Length1 1867 +/Length2 11877 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMTT10 003.002 +%%Title: CMTT10 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMTT10. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMTT10 known{/CMTT10 findfont dup/UniqueID known{dup +/UniqueID get 5000832 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /IJKLSG+CMTT10 def +/FontBBox {-4 -233 537 696 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTT10.) readonly def +/FullName (CMTT10) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch true def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 97 /a put +dup 126 /asciitilde put +dup 98 /b put +dup 99 /c put +dup 58 /colon put +dup 100 /d put +dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 104 /h put +dup 45 /hyphen put +dup 105 /i put +dup 106 /j put +dup 107 /k put +dup 108 /l put +dup 109 /m put +dup 110 /n put +dup 111 /o put +dup 49 /one put +dup 112 /p put +dup 46 /period put +dup 114 /r put +dup 115 /s put +dup 47 /slash put +dup 116 /t put +dup 51 /three put +dup 50 /two put +dup 117 /u put +dup 95 /underscore put +dup 118 /v put +dup 119 /w put +dup 122 /z put +readonly def +currentdict end +currentfile eexec +oc;jAw-=%W)-{ru)rAE(@{빴Q|_R +ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ +}3{Z2zݬT2s$Z&{BJ{=מ0).|˿!:[LI0lr9G$}/X S`p*p+fwwFGO^ȇ r+dMvNy{YK[z[f +ܷBDq}M8|j${jpxxSƫEu +7%ɑ4\ 9b \)[FU.q4Z8KzwwylϦI5bjcZ,7ɪK:#@Jd@ѻFM_d#g+=>ZaWNH5Y/ .rpf{0D|6@;]/h|.RAɰKml^&W܀{mFՙ3FK~I7@T7AMOP.;ݐH+iX;}jYXEu5ǻpېBIᡊS 7pQ40cH4u[ wYÖ2[tʖڣ?hb*$ +dƥ`$ P :")|UƩfDtd§=5+j7%i@)шT/qUF1tEςҷݢ@ Ѣ1ãF^R?-¦q^!*1gw24/3@\7zaz1).ExY'Ȫ5Fc=nj2cw1 3bI]y: f֡ꋓfg%p^`('m K'K '>EPN,:M{S3G2R@6\?-^X'F.qhYlawNUpͧ`M9_Jgbw! ̼sāTҔDb:Wq!]iơw`褩'`h^ TTInHel䶢͒à`じ 'p(=Y1UѬ/OT +%`&{(K:.CiK9xH-vE4x_5叠ٺ,dl5'bbq,H. O8 NNnZGquDZMgd/.o~*ĽẾʿep˵ +1}oK({AsM`?  }|^ڧ(1vMXAj!Vk5=&Yiw|vCPezFލ`FJO!zơãE.)8At`+o z`!|a*dU ).tIhq*0q>NU 3ȏ7Ā9Ot[3|5r0p8ߕWqDLŽ{`dw|ׄ GJz/H'Z$MΤ8Z̈<7{LpV)%k3ToCn}4>ZrȰ{rUZ9EGu49>`oq/~x▏S|f9׬?X.uBxfGbE.wW;o, BLkkK{9fgg,l|&Ma*$v#ܶ>7Ucö'nNЙ1WƫV Nu+947yG( "zoO_|cZzB@ZAݾ@aexb?>"YTgBlٍ9UFJ?"[p] phU8Փz޾L?:K;W%X$؇:b9pF^dBJR(6[-T*4!yY`'M( MPA#fT"f"?eX&RE ]2L6 ?h)8&/Baf!0tM<ŋX0z1$6$}W<1ji76$4e L,vΡTuQo:=}E˨(S0.1) d#I;P]ɵR蕺I,"?bB8|GϞ\;H +nc2߯xX1!?:t#?%gSe[ze} h)D j-O6vzu@b ixc`r&r Iڹ_> 1SSdY$`)­:] R]FITkxjgbHd.(: +﫜.%pq>>^zx,{^c]r6oެtHTC O;q]8$yBoLr {=f$' F}*%*tdsCNzc5G~¸e 2d]bsz':aWA>4+ +5u=JTH8Yn{-t}PtJx8R.\{`u[%37\rnNJFk Oj+WesMV)JYV˛81d#JL1?M?"śbQᄍfcӟr ar4ד@dv5꺜5eDfR+c=PisX8mm;EL]H|S° #ȿl S6e!3BYTg}TTaΈfgX_+t12)A{ߨcװzP*Q˩SRd*lN؏bjɇwu_ŧ03_m=/Quf +'I N?qj) +ʎӲ+Ar⻩6&HДC9mr|7rG%:Jr<(gG^Ĵ~xP^KYYD˓"$?f7ښ}Xo3'+Te|7~x9Fʓ u +ih +9Nt9uicsJw +cZ|$C[ie ";3|AzFY4WSHʘJ᧞)~%b[O?;Rw߹E5?"W|;ծI6X'\dKs}2{QA)wJtXi3uR3Tq5b|~<27bA}LXO6/'`:8gI$G,M`y}Gꦜ?)c7K !8Bʽl. ouv +KS?0Z<M^oE "1\eάI SsBITve赡 Rkvl$|i0qp +QxroHQvzŃe4`eb?V'ax * ǡ~MCC0"rsSC=y [^ՔI1d#J9&I# g߶c*B+FWndM}RYubPvc?_gMk5Zoof~G>ص͈,gk]E8?`aN/`p22it (/[@|;C]ar6X W,COQY``J_Bhq8 !;.*ĿLMbMKa{boKInUowg3Ս|Rq?'SoIV\]iTgȋ[_Z_j5'N8wM%+E:v +"Ӫax;Y `m e"bsiq>,Znè3Œe(go =$Rܬ'J:cj3f2 +N:3CC;Ov"<ȳA?9=ԇa{M˻&}Lnu4۟V[+._b$t1.}c{<0PBW*ZCƛOS 0aS5Ε-}7-*IC{1ȹAZųrO(G n69i5bDN'wL ,j"WvyMbfv&,ՆHѶG[f&Px&I뤏i=(˗z:[} $>]IlvyPd[tzw;hc9X S8{՝YJ4ks'$r+t7))m&LWQ L7)g͑".f E* +M:7jm !'3x<[r n^s:^M{9Eŷ8BtxW59%g.lK4k{܉rTI`mfl<=k)2cJ4;Um߄QM}= Dg}FBZL98 ˿kN> FfE4A9-Ps{wiw=vr-o{L;YoD?'${q/Vڌl据)]035)o6<;E٘7`Rv\G ,6h莥;]_Αa|:9j% "z7$s+$B 4*]>Q@I-oi9yUq|t[,F\}r&''8O#0Sm,Xd!b(n#ʷiޢ gWeW8$$c؂cq&W,a-Ǻ!|=4'Ը9~hZ4 u{]B.CiyMՋ+ݭZ +Fر]shl5؛~} E3+{y(خtbКĸ7_? q 2ed/=g8: MSM sbkOLؕrI^ l}坺Ff&TE54GpY%x@I$!(9;F8dC\ Ox:Bb(dTPYtv.<郁f/n|/6 SZI-Vt한kx.Dgګ +w~/[{]*2y_1Llp}b/}c>f倨w9Ъzʔ>ɆxNn:9lpD(?жT=&Kqg=geͶ+i#Wn >QX&evgt_0 qm!DI7$N7 obu2NYXU_ Xմ?)#rl9Da1K:$ Ry!tCVV_ܔV |t҂Gn2kn&M8pCq̱|ҐR]8 _rqYgTf^Ϳ30HR,خ4}@t-8ĝ#JE,@F\h7M?YNy˫fGgᅛV>P!%"қK8P 3VŷY,gf ߲9pūT9$P͇}vziMSrrF/J8%KBퟸP^k ܪ"'K+:U-ۯfqK-8: W~eq"Lߠ t5ȒѦoR0o%i%Er6A2S(A΍sݵftDXl?,VNCj4w~23vIJ{]Qz9UHva_^a!gQd _eQ:Ӡ0-bf.7TGW=NHf\'*~zUЊ-P``a2fIs#qGkkFv&}c72gٱ#Sé{Tqu _f/mH(Lnq@s߭LیH=.ЙG|aZB5I)i"zXVMt GQ}k3St݀^o +Ibh2FT6\r/A=ǖU;!o/Pӑ1Q&mCGHc[,Xπ}^!-ZP4]!)z|`y ޭ!G #~"*tJasXqƇo:"482yj QG~BWMNp]=O@BFaQpQ mVYLG 0&Ņ-7.ߪpkdZ$ݭx.mƁn/[n%4TTpqԮGD@Np=ZK{+w4V̢|DBqRocnEMf3 p67wΏIg>@SN=iϔXws^\\}ZPWLz0Q_⠜4'X"Y(pލhAWlhw"\Oqu`@Nxo{$B˫37COK0W>P];Z9bybr6m@(i{N駘ij1%߽q:zW, NScoY֥DȱU_^h>߲@փoKbӵwVF$~2SpBJR*8'|&w%fx>h),OpEYO1̂q"خЉw `f9pfӴf޶)B6U9Wev9UɆ*M5i%ݒI$d=FX?j nfQJ>KITp ksOҩ9@&WxxsFL[=[~] h9Qh!l Ƥ'#{W$"ĕcnY@u(Gr͐Usg w,gRk* ^7:dmNnMEWfPfjz +9@bG#._>A?{whOl`~#Xw +FO?]яO9~b;.gifosSKbφME+N1盇4EyK #g^H#{B#t/ur +cPwѷR\R{!x%6?4o5!ww:W#l^/p ̷{sXP٦KDF=PfrcҹAS(sè`bHPwŗg}q]Pd}#mՈbE1䏔\i?U=:)ԁ&nUCnQc6Υ1~Ԅs|(bK?Tû*0zod\8H`z+ ETlX$b>@F\B%f}gO>+UD f-R,Uu0Csyn'HpwkqZiTb*5D}[n~^UND TKU{yɅf%1si2ppO7vmyT_M K:e e-5`EW0 Z0@)(\ExfαA-]F}51YuELric53R8ތ쐳 }|)pf7tHƩέq;(K7t'Q[ShN 1|%;j.l2F\XւhE +9WQѴ2aq:}!@9Vb?ӯ'{EվڄT*4z`zQ?ڛ)pi&teg1(] rsX%KZ{V_~h(VFca1F\ۏlE^LCn=T{ 0%*T^@дGgws^P=-(/lAؽ"4e + 4{dȆ6 NB0jr붦~I=<>Y@G"\GͶ4ap:W< c/F2VWݪuԳ,;R8jU Qz8ߡ1!$J-NB*W6A.=X=а<<w}kC}uEƞ^WSq em' .iI_\5(1>e937A|vPw%8SʋL«Fר@h՞gX]^[cM?z;sCG6m'Kmz[66Ǩ((|Z "piÙ:ķki<ZuTBgt /ˁ zeruMŤCjhNG>SP2fgq(DNx F[]>MeboreWb ݲ h3.bϏMa-/1_]3!;KJyqx2R4>9 ΪǒtT6c]h~lG6>lG\p]Ǧ8Z;p X3K f.C^w1fBib*Z8R" ʼ/>;a;uu' /gBU&z(K'_m p{NfkVT l2D1D 8I EtXʂٍ5"ǡ[׬I$1zh4U"FT]a5%c`4>?3ye*c3,3""JCjfo 0nqpI|NP~@rL +q\9@qOQQv=[F'Ф+hb߼(@H +"F%Än%rvs}LbjBՙrv5;5=\tw +CxHeD[jO%:^BclX p! jo#]xOKi8F9wX[jW2S]HJ)a$R1 ~^\_{9EЍPo0-޻۠xOJzT[,5R>>cXJ;2J1/_D͜ɼJd5Wg Sv +1D,צ'g/اݑkt卜a-Mb1l" cv?cS q.)!14 y;SRnJ <' _.PF2Sm#ƿv0}Dī#T0%ڻ$M20Pr'A L˞F- ~s0_ /eR6[up\x5ɖȉ#,y רhcTym,KīQr)Z1pezŞ5 ߦ:d[$Y,P1VM,ngJ,FŇ +.F`2c]i7_Vk(_K> +endobj +131 0 obj +<< +/Length 3662 +/Length1 1466 +/Length2 2196 +/Length3 0 +>> +stream +%!PS-AdobeFont-1.0: CMTT8 003.002 +%%Title: CMTT8 +%Version: 003.002 +%%CreationDate: Mon Jul 13 16:17:00 2009 +%%Creator: David M. Jones +%Copyright: Copyright (c) 1997, 2009 American Mathematical Society +%Copyright: (), with Reserved Font Name CMTT8. +% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This license is in the accompanying file OFL.txt, and is also +% available with a FAQ at: http://scripts.sil.org/OFL. +%%EndComments +FontDirectory/CMTT8 known{/CMTT8 findfont dup/UniqueID known{dup +/UniqueID get 5000830 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /ISIMRT+CMTT8 def +/FontBBox {-5 -232 545 699 }readonly def +/PaintType 0 def +/FontInfo 9 dict dup begin +/version (003.002) readonly def +/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTT8.) readonly def +/FullName (CMTT8) readonly def +/FamilyName (Computer Modern) readonly def +/Weight (Medium) readonly def +/ItalicAngle 0 def +/isFixedPitch true def +/UnderlinePosition -100 def +/UnderlineThickness 50 def +end readonly def +/Encoding 256 array +0 1 255 {1 index exch /.notdef put} for +dup 76 /L put +dup 84 /T put +dup 88 /X put +dup 101 /e put +dup 105 /i put +dup 50 /two put +dup 118 /v put +dup 48 /zero put +readonly def +currentdict end +currentfile eexec +oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsP,WKT"0KDǯҖkIUܨf/+WN/r4qW@d̍OG|Babhy52+2upa,-I"MC㉮0גv\G\% ؊Z\+;7tamJsXPc0NqL%tWtį, );b&L}NֲGi$߲:[<+s\6qGq %E~@kִ[iYKq[ Pvbr~1zV +إh]\HZa2nqiNG84[(5~B.m{,?v;ɚ]QV-;S8HMKMcd;z%+R9$z\zIbp;%wsU?X)K Q +38hVrC6 {Gx|eRu{};jvfe!QYrBQqS9WJD?&;A +Q??.h3~^|w*?]PdPCʟD*E 1HG6Kt)֕hrWA-T7T㸅o*3%0yژ\]!۠z,Z\#ugA"xSJlZ}b 9uNM[]2͢h3RN͎Q9sZcLy\ɘg>}Ի5kV‡U2ZqҖ(jI4d93+- ɌMQ.C |^( +^_x4]bRcAvL !BBMcWUZb1Z$p,2t1[1,7LNkB 9QpSe5 #hx 00Λ{,B[(j/BibYc%%Zu<.xXO$BmKE.1F-4JS7KEp_ :$3ޝ?̼ ?v+Պ;#\ߗA\{VSlܺ1aPOtSâ2n㇈ArʳOV`E t RdhL͐u83$]BMR?hpW~Vԓի8 +& +c{ju]sPldAa|_}(1kMXbSLn&MXV-8oi%'R*+m뀂b@GOIfs{n?p_?5-Wuqǎ %— 1+41h )bP+&Fa?o%~O3?m|@Lsuoq9-4! cC)|v@*m6 ߩL0Gm^;#4[b,< {f6]ƒX9rsD[uu1C+!FoFcXL[&b@uT10% +> +endobj +133 0 obj +<< +/Type /Outlines +/Count 2 +/First 31 0 R +/Last 35 0 R +>> +endobj +134 0 obj +<< +/Limits [ (Doc-Start) (Item.3) ] +/Names [ (Doc-Start) 44 0 R (Hfootnote.1) 81 0 R (Hfootnote.2) 84 0 R (Item.1) 54 0 R (Item.2) 59 0 R +(Item.3) 60 0 R ] +>> +endobj +135 0 obj +<< +/Limits [ (Item.4) (section*.1) ] +/Names [ (Item.4) 61 0 R (Item.5) 62 0 R (Item.6) 63 0 R (page.1) 43 0 R (page.2) 74 0 R +(section*.1) 51 0 R ] +>> +endobj +136 0 obj +<< +/Limits [ (section*.2) (section.2) ] +/Names [ (section*.2) 79 0 R (section.1) 30 0 R (section.2) 34 0 R ] +>> +endobj +138 0 obj +<< +/Kids [ 134 0 R 135 0 R 136 0 R ] +/Limits [ (Doc-Start) (section.2) ] +>> +endobj +139 0 obj +<< +/Dests 138 0 R +>> +endobj +140 0 obj +<< +/Type /Catalog +/Names 139 0 R +/OpenAction 37 0 R +/Outlines 133 0 R +/PageMode /UseOutlines +/Pages 64 0 R +>> +endobj +141 0 obj +<< +/Author () +/CreationDate (D:20201220002337+01'00') +/Creator (LaTeX with hyperref) +/Keywords () +/ModDate (D:20201220002340+01'00') +/PTEX.Fullbanner (This is pdfTeX, Version 3.14159265-2.6-1.40.20 \(TeX Live 2019/Debian\) kpathsea version 6.3.1) +/Producer (pdfTeX-1.40.20) +/Subject () +/Title () +/Trapped /False +>> +endobj +142 0 obj +<< +/Type /XRef +/ID [ <8BDE9569A286CF89B3E0C7EE8CAF8343> <8BDE9569A286CF89B3E0C7EE8CAF8343> ] +/Index [ 0 143 ] +/Info 141 0 R +/Length 715 +/Root 140 0 R +/Size 143 +/W [ 1 3 1 ] +>> +stream + +,-Yma  +&`   2UTOPY[NQSRZW^ "$*,%\!#'V(X])./0123456789:;<=>T;?@AɣBC?_Dp]E=F3GHI6JSKzvLM_bcЏN +endstream +endobj +xref +0 143 +0000000006 65535 f +0000000015 00000 n +0000000036 00000 n +0000000057 00000 n +0000000111 00000 n +0000000272 00000 n +0000000013 00000 f +0000000862 00000 n +0000001023 00000 n +0000001613 00000 n +0000001775 00000 n +0000002366 00000 n +0000002529 00000 n +0000000014 00001 f +0000000015 00001 f +0000000016 00001 f +0000000019 00001 f +0000003120 00000 n +0000003283 00000 n +0000000022 00001 f +0000003903 00000 n +0000004066 00000 n +0000000025 00001 f +0000004686 00000 n +0000004849 00000 n +0000000028 00001 f +0000005469 00000 n +0000005632 00000 n +0000000137 00001 f +0000006352 00000 n +0000006398 00000 n +0000006465 00000 n +0000006540 00000 n +0000006608 00000 n +0000006654 00000 n +0000006721 00000 n +0000006796 00000 n +0000006824 00000 n +0000006874 00000 n +0000007024 00000 n +0000007197 00000 n +0000007370 00000 n +0000007620 00000 n +0000030371 00000 n +0000030438 00000 n +0000030505 00000 n +0000030647 00000 n +0000030788 00000 n +0000030930 00000 n +0000031071 00000 n +0000031211 00000 n +0000031352 00000 n +0000031419 00000 n +0000031561 00000 n +0000031705 00000 n +0000031772 00000 n +0000031913 00000 n +0000032055 00000 n +0000032196 00000 n +0000032335 00000 n +0000032402 00000 n +0000032469 00000 n +0000032536 00000 n +0000032603 00000 n +0000032670 00000 n +0000032738 00000 n +0000032914 00000 n +0000033136 00000 n +0000033387 00000 n +0000033648 00000 n +0000033921 00000 n +0000034097 00000 n +0000034287 00000 n +0000034486 00000 n +0000038408 00000 n +0000038475 00000 n +0000038617 00000 n +0000038838 00000 n +0000039097 00000 n +0000039369 00000 n +0000039436 00000 n +0000039575 00000 n +0000039642 00000 n +0000039782 00000 n +0000039923 00000 n +0000039989 00000 n +0000040790 00000 n +0000041938 00000 n +0000041980 00000 n +0000042328 00000 n +0000042521 00000 n +0000043540 00000 n +0000044188 00000 n +0000045186 00000 n +0000045889 00000 n +0000046809 00000 n +0000047615 00000 n +0000048672 00000 n +0000049152 00000 n +0000050155 00000 n +0000051064 00000 n +0000052226 00000 n +0000066583 00000 n +0000066919 00000 n +0000080824 00000 n +0000081153 00000 n +0000089564 00000 n +0000089798 00000 n +0000099154 00000 n +0000099397 00000 n +0000110984 00000 n +0000111247 00000 n +0000131200 00000 n +0000131594 00000 n +0000144792 00000 n +0000145092 00000 n +0000156403 00000 n +0000156691 00000 n +0000164253 00000 n +0000164479 00000 n +0000172479 00000 n +0000172713 00000 n +0000186136 00000 n +0000186439 00000 n +0000199672 00000 n +0000199955 00000 n +0000207575 00000 n +0000207818 00000 n +0000218417 00000 n +0000218674 00000 n +0000232513 00000 n +0000232839 00000 n +0000236594 00000 n +0000236832 00000 n +0000236907 00000 n +0000237083 00000 n +0000237251 00000 n +0000000000 00000 f +0000237380 00000 n +0000237473 00000 n +0000237511 00000 n +0000237638 00000 n +0000237970 00000 n +trailer +<< +/ID [ ] +/Info 141 0 R +/Root 140 0 R +/Size 143 +>> +startxref +238896 +%%EOF diff --git a/mat/domace_naloge/21/dokument.aux b/mat/domace_naloge/21/dokument.aux index a9ad8ff..a7b3de8 100644 --- a/mat/domace_naloge/21/dokument.aux +++ b/mat/domace_naloge/21/dokument.aux @@ -27,7 +27,7 @@ \babel@aux{slovene}{} \babel@aux{slovene}{} \@writefile{toc}{\contentsline {section}{\numberline {1}Vaje \textit {Matematika 2}: stran 55, štiri naloge 349-361}{1}{section.1}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2}Zaključek}{1}{section.2}\protected@file@percent } \exsheets@sum@of@points {0} \exsheets@sum@of@bonus {0} \gdef \numberofquestions {0} +\@writefile{toc}{\contentsline {section}{\numberline {2}Zaključek}{2}{section.2}\protected@file@percent } diff --git a/mat/domace_naloge/21/dokument.log b/mat/domace_naloge/21/dokument.log index f9e62bd..737705e 100644 --- a/mat/domace_naloge/21/dokument.log +++ b/mat/domace_naloge/21/dokument.log @@ -1,4 +1,4 @@ -This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=pdflatex 2020.11.12) 18 DEC 2020 19:15 +This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=pdflatex 2020.11.12) 20 DEC 2020 00:23 entering extended mode \write18 enabled. %&-line parsing enabled. @@ -533,1217 +533,4 @@ gfsupp_loader.code.tex tructure.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotslists tructureext.code.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray -.code.tex -\c@pgfplotsarray@tmp=\count279 -) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatri -x.code.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshare -d.code.tex -\c@pgfplotstable@counta=\count280 -\t@pgfplotstable@a=\toks35 -) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque -.code.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.te -x -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.co -de.tex)) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code -.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.sur -fshading.code.tex -\c@pgfplotslibrarysurf@no=\count281 - -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surf -shading.pgfsys-pdftex.def))) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code. -tex -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex -)) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.t -ex) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.t -ex -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.cod -e.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code. -tex))) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.cod -e.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex -) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex -) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarydecorations.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.cod -e.tex -\pgfdecoratedcompleteddistance=\dimen259 -\pgfdecoratedremainingdistance=\dimen260 -\pgfdecoratedinputsegmentcompleteddistance=\dimen261 -\pgfdecoratedinputsegmentremainingdistance=\dimen262 -\pgf@decorate@distancetomove=\dimen263 -\pgf@decorate@repeatstate=\count282 -\pgfdecorationsegmentamplitude=\dimen264 -\pgfdecorationsegmentlength=\dimen265 -) -\tikz@lib@dec@box=\box56 -) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarydecorations.pathmorphing.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary -decorations.pathmorphing.code.tex)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarydecorations.pathreplacing.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary -decorations.pathreplacing.code.tex)) -\pgfplots@numplots=\count283 -\pgfplots@xmin@reg=\dimen266 -\pgfplots@xmax@reg=\dimen267 -\pgfplots@ymin@reg=\dimen268 -\pgfplots@ymax@reg=\dimen269 -\pgfplots@zmin@reg=\dimen270 -\pgfplots@zmax@reg=\dimen271 -) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryplotmarks.code.tex -File: tikzlibraryplotmarks.code.tex 2020/01/08 v3.1.5b (3.1.5b) - -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.co -de.tex -File: pgflibraryplotmarks.code.tex 2020/01/08 v3.1.5b (3.1.5b) -))) (/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty -Package: enumitem 2019/06/20 v3.9 Customized lists -\labelindent=\skip50 -\enit@outerparindent=\dimen272 -\enit@toks=\toks36 -\enit@inbox=\box57 -\enit@count@id=\count284 -\enitdp@description=\count285 -) -(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx.sty -(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty -Package: expl3 2020-02-25 L3 programming layer (loader) - -(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def -File: l3backend-pdfmode.def 2020-02-23 L3 backend support: PDF mode -\l__kernel_color_stack_int=\count286 -\l__pdf_internal_box=\box58 -)) -(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty -Package: xparse 2020-02-25 L3 Experimental document command parser -\l__xparse_current_arg_int=\count287 -\g__xparse_grabber_int=\count288 -\l__xparse_m_args_int=\count289 -\l__xparse_v_nesting_int=\count290 -) -Package: siunitx 2020/02/25 v2.8b A comprehensive (SI) units package - -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty -Package: amstext 2000/06/29 v2.01 AMS text - -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty -File: amsgen.sty 1999/11/30 v2.0 generic functions -\@emptytoks=\toks37 -\ex@=\dimen273 -)) -(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty -Package: array 2019/08/31 v2.4l Tabular extension package (FMi) -\col@sep=\dimen274 -\ar@mcellbox=\box59 -\extrarowheight=\dimen275 -\NC@list=\toks38 -\extratabsurround=\skip51 -\backup@length=\skip52 -\ar@cellbox=\box60 -) -(/usr/share/texlive/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty -Package: l3keys2e 2020-02-25 LaTeX2e option processing using LaTeX3 keys -) -\l__siunitx_tmp_box=\box61 -\l__siunitx_tmp_dim=\dimen276 -\l__siunitx_tmp_int=\count291 -\l__siunitx_number_mantissa_length_int=\count292 -\l__siunitx_number_uncert_length_int=\count293 -\l__siunitx_round_int=\count294 -\l__siunitx_process_decimal_int=\count295 -\l__siunitx_process_uncertainty_int=\count296 -\l__siunitx_process_fixed_int=\count297 -\l__siunitx_process_integer_min_int=\count298 -\l__siunitx_process_precision_int=\count299 -\l__siunitx_group_min_int=\count300 -\l__siunitx_angle_marker_box=\box62 -\l__siunitx_angle_unit_box=\box63 -\l__siunitx_angle_marker_dim=\dimen277 -\l__siunitx_angle_unit_dim=\dimen278 -\l__siunitx_unit_int=\count301 -\l__siunitx_unit_denominator_int=\count302 -\l__siunitx_unit_numerator_int=\count303 -\l__siunitx_unit_prefix_int=\count304 -\l__siunitx_unit_prefix_base_int=\count305 -\l__siunitx_unit_prefix_gram_int=\count306 -\l__siunitx_number_product_int=\count307 -\c__siunitx_one_fill_skip=\skip53 -\l__siunitx_table_unit_align_skip=\skip54 -\l__siunitx_table_exponent_dim=\dimen279 -\l__siunitx_table_integer_dim=\dimen280 -\l__siunitx_table_mantissa_dim=\dimen281 -\l__siunitx_table_marker_dim=\dimen282 -\l__siunitx_table_result_dim=\dimen283 -\l__siunitx_table_uncert_dim=\dimen284 -\l__siunitx_table_fill_pre_dim=\dimen285 -\l__siunitx_table_fill_post_dim=\dimen286 -\l__siunitx_table_fill_mid_dim=\dimen287 -\l__siunitx_table_pre_box=\box64 -\l__siunitx_table_post_box=\box65 -\l__siunitx_table_mantissa_box=\box66 -\l__siunitx_table_result_box=\box67 -\l__siunitx_table_number_align_skip=\skip55 -\l__siunitx_table_text_align_skip=\skip56 - -(/usr/share/texlive/texmf-dist/tex/latex/translator/translator.sty -Package: translator 2019-05-31 v1.12a Easy translation of strings in LaTeX -)) -(/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty -Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi) -\c@tracingmulticols=\count308 -\mult@box=\box68 -\multicol@leftmargin=\dimen288 -\c@unbalance=\count309 -\c@collectmore=\count310 -\doublecol@number=\count311 -\multicoltolerance=\count312 -\multicolpretolerance=\count313 -\full@width=\dimen289 -\page@free=\dimen290 -\premulticols=\dimen291 -\postmulticols=\dimen292 -\multicolsep=\skip57 -\multicolbaselineskip=\skip58 -\partial@page=\box69 -\last@line=\box70 -\maxbalancingoverflow=\dimen293 -\mult@rightbox=\box71 -\mult@grightbox=\box72 -\mult@gfirstbox=\box73 -\mult@firstbox=\box74 -\@tempa=\box75 -\@tempa=\box76 -\@tempa=\box77 -\@tempa=\box78 -\@tempa=\box79 -\@tempa=\box80 -\@tempa=\box81 -\@tempa=\box82 -\@tempa=\box83 -\@tempa=\box84 -\@tempa=\box85 -\@tempa=\box86 -\@tempa=\box87 -\@tempa=\box88 -\@tempa=\box89 -\@tempa=\box90 -\@tempa=\box91 -\@tempa=\box92 -\@tempa=\box93 -\@tempa=\box94 -\@tempa=\box95 -\@tempa=\box96 -\@tempa=\box97 -\@tempa=\box98 -\@tempa=\box99 -\@tempa=\box100 -\@tempa=\box101 -\@tempa=\box102 -\@tempa=\box103 -\@tempa=\box104 -\@tempa=\box105 -\@tempa=\box106 -\@tempa=\box107 -\@tempa=\box108 -\@tempa=\box109 -\@tempa=\box110 -\@tempa=\box111 -\c@minrows=\count314 -\c@columnbadness=\count315 -\c@finalcolumnbadness=\count316 -\last@try=\dimen294 -\multicolovershoot=\dimen295 -\multicolundershoot=\dimen296 -\mult@nat@firstbox=\box112 -\colbreak@box=\box113 -\mc@col@check@num=\count317 -) -(/usr/share/texlive/texmf-dist/tex/latex/tabularcalc/tabularcalc.sty -Package: tabularcalc 2009/04/20 v0.2 Compute formulas in tables - -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp.sty -Package: fp 1995/04/02 - -`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich -(/usr/share/texlive/texmf-dist/tex/latex/fp/defpattern.sty -Package: defpattern 1994/10/12 -\actioncount=\count318 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-basic.sty -Package: fp-basic 1996/05/13 -\FP@xs=\count319 -\FP@xia=\count320 -\FP@xib=\count321 -\FP@xfa=\count322 -\FP@xfb=\count323 -\FP@rega=\count324 -\FP@regb=\count325 -\FP@regs=\count326 -\FP@times=\count327 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-addons.sty -Package: fp-addons 1995/03/15 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-snap.sty -Package: fp-snap 1995/04/05 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-exp.sty -Package: fp-exp 1995/04/03 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-trigo.sty -Package: fp-trigo 1995/04/14 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-pas.sty -Package: fp-pas 1994/08/29 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-random.sty -Package: fp-random 1995/02/23 -\FPseed=\count328 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eqn.sty -Package: fp-eqn 1995/04/03 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-upn.sty -Package: fp-upn 1996/10/21 -) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eval.sty -Package: fp-eval 1995/04/03 -)) -(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty -(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex -\integerpart=\count329 -\decimalpart=\count330 -) -Package: xstring 2019/02/06 v1.83 String manipulations (CT) -) -(/usr/share/texlive/texmf-dist/tex/latex/numprint/numprint.sty -Package: numprint 2012/08/20 v1.39 Print numbers (HH) -\c@nprt@mantissa@digitsbefore=\count331 -\c@nprt@mantissa@digitsafter=\count332 -\c@nprt@exponent@digitsbefore=\count333 -\c@nprt@exponent@digitsafter=\count334 -\nprt@digitwidth=\skip59 -\nprt@sepwidth=\skip60 -\nprt@decimalwidth=\skip61 -\nprt@blockwidth=\skip62 -\nprt@digittoks=\toks39 -\nprt@pretoks=\toks40 -\nprt@posttoks=\toks41 -\nprt@thisdigit=\count335 -\nprt@curpos=\count336 -\nprt@rndpos=\count337 -\c@nprt@digitsfirstblock=\count338 -\c@nprt@blockcnt=\count339 -\c@nprt@cntprint=\count340 - -No configuration file `numprint.cfg' found.) -\tccol=\count341 -\tclin=\count342 -\tc@export=\write4 -) -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty -Package: amsmath 2020/01/20 v2.17e AMS math features -\@mathmargin=\skip63 - -For additional information on amsmath, use the `?' option. -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty -Package: amsbsy 1999/11/29 v1.2d Bold Symbols -\pmbraise@=\dimen297 -) -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty -Package: amsopn 2016/03/08 v2.02 operator names -) -\inf@bad=\count343 -LaTeX Info: Redefining \frac on input line 227. -\uproot@=\count344 -\leftroot@=\count345 -LaTeX Info: Redefining \overline on input line 389. -\classnum@=\count346 -\DOTSCASE@=\count347 -LaTeX Info: Redefining \ldots on input line 486. -LaTeX Info: Redefining \dots on input line 489. -LaTeX Info: Redefining \cdots on input line 610. -\Mathstrutbox@=\box114 -\strutbox@=\box115 -\big@size=\dimen298 -LaTeX Font Info: Redeclaring font encoding OML on input line 733. -LaTeX Font Info: Redeclaring font encoding OMS on input line 734. -\macc@depth=\count348 -\c@MaxMatrixCols=\count349 -\dotsspace@=\muskip17 -\c@parentequation=\count350 -\dspbrk@lvl=\count351 -\tag@help=\toks42 -\row@=\count352 -\column@=\count353 -\maxfields@=\count354 -\andhelp@=\toks43 -\eqnshift@=\dimen299 -\alignsep@=\dimen300 -\tagshift@=\dimen301 -\tagwidth@=\dimen302 -\totwidth@=\dimen303 -\lineht@=\dimen304 -\@envbody=\toks44 -\multlinegap=\skip64 -\multlinetaggap=\skip65 -\mathdisplay@stack=\toks45 -LaTeX Info: Redefining \[ on input line 2859. -LaTeX Info: Redefining \] on input line 2860. -) -(/usr/share/texlive/texmf-dist/tex/latex/float/float.sty -Package: float 2001/11/08 v1.3d Float enhancements (AL) -\c@float@type=\count355 -\float@exts=\toks46 -\float@box=\box116 -\@float@everytoks=\toks47 -\@floatcapt=\box117 -) -(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.sty -(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty -Package: xtemplate 2020-02-25 L3 Experimental prototype document functions -\l__xtemplate_tmp_dim=\dimen305 -\l__xtemplate_tmp_int=\count356 -\l__xtemplate_tmp_muskip=\muskip18 -\l__xtemplate_tmp_skip=\skip66 -) -Package: tasks 2020/01/11 v1.1a horizontally columned lists -\g__tasks_total_items_int=\count357 -\l__tasks_columns_int=\count358 -\g__tasks_rows_int=\count359 -\g__tasks_current_col_num_int=\count360 -\g__tasks_current_row_num_int=\count361 -\l__tasks_item_columns_int=\count362 -\g__tasks_env_int=\count363 -\l__tasks_start_int=\count364 -\l__tasks_item_indent_dim=\dimen306 -\l__tasks_item_default_indent_dim=\dimen307 -\l__tasks_item_width_dim=\dimen308 -\l__tasks_label_width_dim=\dimen309 -\l__tasks_label_default_width_dim=\dimen310 -\l__tasks_label_offset_dim=\dimen311 -\l__tasks_label_default_offset_dim=\dimen312 -\l__tasks_column_sep_dim=\dimen313 -\l__tasks_correction_dim=\dimen314 -\l__tasks_full_width_dim=\dimen315 -\l__tasks_after_item_skip=\skip67 -\l__tasks_custom_after_item_skip=\skip68 -\l__tasks_before_list_skip=\skip69 -\l__tasks_after_list_skip=\skip70 -\l__tasks_item_coffin=\box118 -\l__tasks_label_coffin=\box119 -\c@task=\count365 -\l__tasks_tmpa_int=\count366 -\l__tasks_tmpb_int=\count367 -\l__tasks_tmpa_coffin=\box120 -\l__tasks_tmpa_box=\box121 - -Package xtemplate Info: Declaring object type 'tasks' taking 3 argument(s) on -(xtemplate) line 426. - - -(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.cfg)) -(/usr/share/texlive/texmf-dist/tex/latex/filecontents/filecontents.sty -Package: filecontents 2019/09/20 v1.5 Create an external file from within a LaT -eX document - - -Package filecontents Warning: This package is obsolete. Disabling it and -(filecontents) passing control to the filecontents environment -(filecontents) defined by the LaTeX kernel. - -) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty -Package: textcomp 2020/02/02 v2.0n Standard LaTeX package -) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-euclide.sty -2020/01/24 3.02c tkz-euclide.sty -Package: tkz-euclide 2020/01/24 3.02c for euclidan geometry -(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.sty -2020/01/24 3.02c tkz-base.sty -Package: tkz-base 2020/01/24 3.02c tkz-base - -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryangles.code.tex -File: tikzlibraryangles.code.tex 2020/01/08 v3.1.5b (3.1.5b) -) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryarrows.code.tex -File: tikzlibraryarrows.code.tex 2020/01/08 v3.1.5b (3.1.5b) - -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code. -tex -File: pgflibraryarrows.code.tex 2020/01/08 v3.1.5b (3.1.5b) -\arrowsize=\dimen316 -)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.meta. -code.tex -File: pgflibraryarrows.meta.code.tex 2020/01/08 v3.1.5b (3.1.5b) -\pgfarrowinset=\dimen317 -\pgfarrowlength=\dimen318 -\pgfarrowwidth=\dimen319 -\pgfarrowlinewidth=\dimen320 -) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarybabel.code.tex -File: tikzlibrarybabel.code.tex 2020/01/08 v3.1.5b (3.1.5b) -) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarycalc.code.tex -File: tikzlibrarycalc.code.tex 2020/01/08 v3.1.5b (3.1.5b) -) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarydecorations.markings.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary -decorations.markings.code.tex)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarydecorations.shapes.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary -decorations.shapes.code.tex)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarydecorations.text.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary -decorations.text.code.tex -\pgf@lib@dec@text@box=\box122 -) -\tikz@lib@dec@te@box=\box123 -) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryintersections.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryintersection -s.code.tex -\pgf@intersect@solutions=\count368 -)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarypatterns.code.tex -File: tikzlibrarypatterns.code.tex 2020/01/08 v3.1.5b (3.1.5b) - -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibrarypatterns.cod -e.tex -File: pgflibrarypatterns.code.tex 2020/01/08 v3.1.5b (3.1.5b) -)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarypositioning.code.tex -File: tikzlibrarypositioning.code.tex 2020/01/08 v3.1.5b (3.1.5b) -) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryquotes.code.tex -File: tikzlibraryquotes.code.tex 2020/01/08 v3.1.5b (3.1.5b) -) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryshadows.code.tex -File: tikzlibraryshadows.code.tex 2020/01/08 v3.1.5b (3.1.5b) - -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryfadings.code.tex -File: tikzlibraryfadings.code.tex 2020/01/08 v3.1.5b (3.1.5b) - -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code -.tex -File: pgflibraryfadings.code.tex 2020/01/08 v3.1.5b (3.1.5b) -))) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryshapes.misc.code.tex -File: tikzlibraryshapes.misc.code.tex 2020/01/08 v3.1.5b (3.1.5b) - -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshape -s.misc.code.tex -File: pgflibraryshapes.misc.code.tex 2020/01/08 v3.1.5b (3.1.5b) -)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarysnakes.code.tex -File: tikzlibrarysnakes.code.tex 2020/01/08 v3.1.5b (3.1.5b) - - -Package pgf Warning: Snakes have been superseded by decorations. Please use the - decoration libraries instead of the snakes library on input line 14. - -) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarythrough.code.tex -File: tikzlibrarythrough.code.tex 2020/01/08 v3.1.5b (3.1.5b) -) -(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfp/xfp.sty -Package: xfp 2020-02-25 L3 Floating point unit -) -\tkzRadius=\dimen321 -\tkzLength=\dimen322 -\tkz@radi=\dimen323 -\tkz@ax=\dimen324 -\tkz@ay=\dimen325 -\tkz@bx=\dimen326 -\tkz@by=\dimen327 -\tkz@cx=\dimen328 -\tkz@cy=\dimen329 -\tkz@dx=\dimen330 -\tkz@dy=\dimen331 -\tkz@tax=\dimen332 -\tkz@tay=\dimen333 -\tkz@tbx=\dimen334 -\tkz@tby=\dimen335 -\tkz@tcx=\dimen336 -\tkz@tcy=\dimen337 -\tkz@tdx=\dimen338 -\tkz@tdy=\dimen339 -\tkz@cntmk=\count369 - -Local configuration file tkz-base.cfg found and used -(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.cfg -2020/02/04 3.02c tkz-base.cfg -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex -2020/01/24 3.02c tkz-tools-utilities.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex -2020/01/24 3.02c tkz-lib-symbols.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex -2020/01/24 3.02c tkz-tools-base.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex -2020/01/24 3.02c tkz-tools-utilities.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-math.tex -2020/01/24 3.02c tkz-tools-math.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex -2020/01/24 3.02c tkz-tools-text.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex -2020/01/24 3.02c tkz-obj-BB.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex -2020/01/24 3.02c tkz-tools-arith.tex -File: tkz-tool-arith.tex tkz-tool-arith 3.02 c -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex -2020/01/24 3.02c tkz-tools-print.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex -2020/01/24 3.02c tkz-tools-misc.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex -2020/01/24 3.02c tkz-obj-axes.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex -2020/01/24 3.02c tkz-obj-grids.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex -2020/01/24 3.02c tkz-obj-marks.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex -2020/01/24 3.02c tkz-obj-points.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex -2020/01/24 3.02c tkz-obj-rep.tex -)) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-intersections.te -x -2020/01/24 3.02c tkz-tools-intersections.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-angles.tex -2020/01/24 3.02c tkz-tools-angles.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-angles.tex -2020/01/24 3.02c tkz-tool-eu-angles.tex -\tkz@arcsize=\dimen340 -\tkz@fillsize=\dimen341 -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-arcs.tex -2020/01/24 3.02c tkz-obj-eu-arcs.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-compass.tex -2020/01/24 3.02c tkz-obj-eu-compass.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-circles.tex -2020/01/24 3.02c tkz-obj-eu-circles.tex -) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-circles.te -x -2020/01/24 3.02c tkz-obj-eu-draw-circles.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-lines.tex -2020/01/24 3.02c tkz-obj-eu-lines.tex -) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-lines.tex -2020/01/24 3.02c tkz-obj-eu-draw-lines.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points.tex -2020/01/24 3.02c tkz-obj-eu-points.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-by.tex -2020/01/24 3.02c tkz-tools-eu-points-by.tex -) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-rnd.tex -2020/01/24 3.02c tkz-obj-eu-points-rnd.tex -) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-with.tex -2020/01/24 3.02c tkz-obj-eu-points-with.tex -) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-polygons.t -ex -2020/01/24 3.02c tkz-obj-eu-polygons.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-polygons.tex -2020/01/24 3.02c tkz-obj-eu-polygons.tex -) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-protractor.tex -2020/01/24 3.02c tkz-obj-eu-protractor.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-sectors.tex -2020/01/24 3.02c tkz-obj-eu-sectors.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-show.tex -2020/01/24 3.02c tkz-obj-eu-show.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-triangles.tex -2020/01/24 3.02c tkz-obj-eu-triangles.tex -)) (/usr/share/texlive/texmf-dist/tex/latex/dirtytalk/dirtytalk.sty -Package: dirtytalk 2010/11/21 A package making "quoting" easier - -(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty -Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) -) -\c@dirtytalk@qdepth=\count370 -) -(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.sty -Package: csquotes 2019-12-06 v5.2j context-sensitive quotations (JAW) -\csq@reset=\count371 -\csq@gtype=\count372 -\csq@glevel=\count373 -\csq@qlevel=\count374 -\csq@maxlvl=\count375 -\csq@tshold=\count376 -\csq@ltx@everypar=\toks48 - -(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.def -File: csquotes.def 2019-12-06 v5.2j csquotes generic definitions (JAW) -) -Package csquotes Info: Trying to load configuration file 'csquotes.cfg'... -Package csquotes Info: ... configuration file loaded successfully. - -(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.cfg -File: csquotes.cfg -)) -(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty -\lst@mode=\count377 -\lst@gtempboxa=\box124 -\lst@token=\toks49 -\lst@length=\count378 -\lst@currlwidth=\dimen342 -\lst@column=\count379 -\lst@pos=\count380 -\lst@lostspace=\dimen343 -\lst@width=\dimen344 -\lst@newlines=\count381 -\lst@lineno=\count382 -\lst@maxwidth=\dimen345 - -(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty -File: lstmisc.sty 2019/09/10 1.8c (Carsten Heinz) -\c@lstnumber=\count383 -\lst@skipnumbers=\count384 -\lst@framebox=\box125 -) -(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg -File: listings.cfg 2019/09/10 1.8c listings configuration -)) -Package: listings 2019/09/10 1.8c (Carsten Heinz) - -(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime.sty -Package: datetime 2015/03/20 v2.60 Date Time Package - -(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fmtcount.sty -Package: fmtcount 2020/01/30 v3.07 - -(/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty -Package: xkeyval 2014/12/03 v2.7a package option processing (HA) - -(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex -(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex -\XKV@toks=\toks50 -\XKV@tempa@toks=\toks51 -) -\XKV@depth=\count385 -File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) -)) -(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcprefix.sty -Package: fcprefix 2012/09/28 - -(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcnumparser.sty -Package: fcnumparser 2017/06/15 -\fc@digit@counter=\count386 -)) -\c@padzeroesN=\count387 -\fc@tmpcatcode=\count388 -\@DT@modctr=\count389 -\@ordinalctr=\count390 -\@orgargctr=\count391 -\@strctr=\count392 -\@tmpstrctr=\count393 -\@DT@loopN=\count394 -\@DT@X=\count395 -) -(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime-defaults.sty -Package: datetime-defaults 2013/09/10 -) -\@day=\count396 -\@month=\count397 -\@year=\count398 -\c@HOUR=\count399 -\c@HOURXII=\count400 -\c@MINUTE=\count401 -\c@TOHOUR=\count402 -\c@TOMINUTE=\count403 -\c@SECOND=\count404 -\currenthour=\count405 -\currentminute=\count406 -\currentsecond=\count407 -Package datetime Info: No datetime.cfg file found, using default settings on in -put line 308. -\@dtctr=\count408 -\dayofyear=\count409 -\dayofweek=\count410 -LaTeX Info: Redefining \today on input line 736. -\dt@a=\toks52 -\dt@b=\toks53 -) -(/usr/share/texlive/texmf-dist/tex/latex/ccicons/ccicons.sty -Package: ccicons 2017/10/30 v1.6 LaTeX support for Creative Commons icons -) -(/usr/share/texlive/texmf-dist/tex/latex/chemformula/chemformula.sty -(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfrac/xfrac.sty -Package: xfrac 2020-02-25 L3 Experimental split-level fractions -\l__xfrac_slash_box=\box126 -\l__xfrac_tmp_box=\box127 -\l__xfrac_denominator_bot_sep_dim=\dimen346 -\l__xfrac_numerator_bot_sep_dim=\dimen347 -\l__xfrac_numerator_top_sep_dim=\dimen348 -\l__xfrac_slash_left_sep_dim=\dimen349 -\l__xfrac_slash_right_sep_dim=\dimen350 -\l__xfrac_slash_left_muskip=\muskip19 -\l__xfrac_slash_right_muskip=\muskip20 - -Package xtemplate Info: Declaring object type 'xfrac' taking 3 argument(s) on -(xtemplate) line 80. - -) -(/usr/share/texlive/texmf-dist/tex/latex/units/nicefrac.sty -Package: nicefrac 1998/08/04 v0.9b Nice fractions -\L@UnitsRaiseDisplaystyle=\skip71 -\L@UnitsRaiseTextstyle=\skip72 -\L@UnitsRaiseScriptstyle=\skip73 -) -(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlfile.sty -Package: scrlfile 2020/01/24 v3.29 KOMA-Script package (loading files) -) -Package: chemformula 2020/02/01 v4.15i typeset chemical compounds and reactions - (CN) -\l__chemformula_tmpa_dim=\dimen351 -\l__chemformula_tmpb_dim=\dimen352 -\l__chemformula_tmpc_dim=\dimen353 -\l__chemformula_tmpa_int=\count411 -\l__chemformula_tmpb_int=\count412 -\l__chemformula_tmpc_int=\count413 -\l__chemformula_tmpa_box=\box128 -\l__chemformula_tmpb_box=\box129 -\l__chemformula_arrow_length_dim=\dimen354 -\l__chemformula_arrow_label_height_dim=\dimen355 -\l__chemformula_arrow_label_offset_dim=\dimen356 -\l__chemformula_arrow_minimum_length_dim=\dimen357 -\l__chemformula_arrow_shortage_dim=\dimen358 -\l__chemformula_arrow_offset_dim=\dimen359 -\l__chemformula_arrow_yshift_dim=\dimen360 -\l__chemformula_radical_radius_dim=\dimen361 -\l__chemformula_radical_hshift_dim=\dimen362 -\l__chemformula_radical_vshift_dim=\dimen363 -\l__chemformula_radical_space_dim=\dimen364 -\l__chemformula_arrow_head_dim=\dimen365 -\l__chemformula_name_dim=\dimen366 -\l__chemformula_adduct_space_dim=\dimen367 -\l__chemformula_charge_shift_dim=\dimen368 -\l__chemformula_subscript_shift_dim=\dimen369 -\l__chemformula_superscript_shift_dim=\dimen370 -\l__chemformula_subscript_dim=\dimen371 -\l__chemformula_superscript_dim=\dimen372 -\l__chemformula_bond_dim=\dimen373 -\l__chemformula_bond_space_dim=\dimen374 -\l__chemformula_elspec_pair_distance_dim=\dimen375 -\l__chemformula_elspec_pair_line_length_dim=\dimen376 -\l__chemformula_elspec_pair_width_dim=\dimen377 -\l__chemformula_kroegervink_positive_radius_dim=\dimen378 -\l__chemformula_kroegervink_positive_hshift_dim=\dimen379 -\l__chemformula_kroegervink_positive_vshift_dim=\dimen380 -\l__chemformula_kroegervink_positive_space_dim=\dimen381 -\l__chemformula_stoich_space_skip=\skip74 -\l__chemformula_math_space_skip=\skip75 -\l__chemformula_count_tokens_int=\count414 -\g__chemformula_lewis_int=\count415 -\l__chemformula_arrow_arg_i_box=\box130 -\l__chemformula_arrow_arg_ii_box=\box131 -\l__chemformula_superscript_box=\box132 -\l__chemformula_subscript_box=\box133 -\l__chemformula_additions_symbol_space_skip=\skip76 -\l__chemformula_plus_space_skip=\skip77 -\l__chemformula_minus_space_skip=\skip78 -) -(/usr/share/texlive/texmf-dist/tex/latex/was/gensymb.sty -Package: gensymb 2003/07/02 v1.0 (WaS) -) -(/usr/share/texlive/texmf-dist/tex/generic/ulem/ulem.sty -\UL@box=\box134 -\UL@hyphenbox=\box135 -\UL@skip=\skip79 -\UL@hook=\toks54 -\UL@height=\dimen382 -\UL@pe=\count416 -\UL@pixel=\dimen383 -\ULC@box=\box136 -Package: ulem 2019/11/18 -\ULdepth=\dimen384 -) -(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty -Package: babel 2020/02/28 3.41 The Babel package - -(/usr/share/texlive/texmf-dist/tex/generic/babel/switch.def -File: switch.def 2020/02/28 3.41 Babel switching mechanism -) -(/usr/share/texlive/texmf-dist/tex/generic/babel-slovenian/slovene.ldf -Language: slovene 2005/03/31 v1.2m Slovene support from the babel system - -(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def -File: babel.def 2020/02/28 3.41 Babel common definitions -\babel@savecnt=\count417 -\U@D=\dimen385 - -(/usr/share/texlive/texmf-dist/tex/generic/babel/txtbabel.def) -\bbl@readstream=\read3 -\bbl@dirlevel=\count418 -) -Package babel Info: Making " an active character on input line 79. -)) -(/usr/share/texlive/texmf-dist/tex/latex/cancel/cancel.sty -Package: cancel 2013/04/12 v2.2 Cancel math terms -) -(/usr/share/texlive/texmf-dist/tex/latex/tools/tabularx.sty -Package: tabularx 2020/01/15 v2.11c `tabularx' package (DPC) -\TX@col@width=\dimen386 -\TX@old@table=\dimen387 -\TX@old@col=\dimen388 -\TX@target=\dimen389 -\TX@delta=\dimen390 -\TX@cols=\count419 -\TX@ftn=\toks55 -) -(/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty -Package: colortbl 2020/01/04 v1.0e Color table columns (DPC) -\everycr=\toks56 -\minrowclearance=\skip80 -) -(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets.sty -Package: exsheets 2019/09/30 v0.21k Yet another package for the creation of exe -rcise sheets and exams. -\l__exsheets_tmpa_int=\count420 -\l__exsheets_tmpb_int=\count421 -\l__exsheets_tmpc_int=\count422 -\l__exsheets_tmpd_int=\count423 -\l__exsheets_tmpe_int=\count424 -\g__exsheets_tmpa_int=\count425 -\l__exsheets_tmpa_dim=\dimen391 -\l__exsheets_tmpb_dim=\dimen392 - -(/usr/share/texlive/texmf-dist/tex/latex/environ/environ.sty -Package: environ 2014/05/04 v0.3 A new way to define environments - -(/usr/share/texlive/texmf-dist/tex/latex/trimspaces/trimspaces.sty -Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list -)) -\l__exsheets_variations_int=\count426 -\g__exsheets_questions_id_int=\count427 -\g__exsheets_questions_used_int=\count428 -\l__exsheets_include_random_int=\count429 -\l__exsheets_questions_set_int=\count430 -\g__exsheets_select_random_int=\count431 -\g__exsheets_selection_number_int=\count432 -\l__exsheets_counter_ch_int=\count433 -\l__exsheets_current_ch_int=\count434 -\l__exsheets_counter_sec_int=\count435 -\l__exsheets_current_sec_int=\count436 -\l_exsheets_counter_qu_int=\count437 -\l__exsheets_questions_skip_below_dim=\dimen393 -\l__exsheets_solutions_skip_below_dim=\dimen394 -\l__exsheets_blank_dim=\dimen395 -\l__exsheets_blank_line_increment_dim=\dimen396 -\l__exsheets_blank_line_minimum_length_dim=\dimen397 -\l__exsheets_blank_box=\box137 - -(/usr/share/texlive/texmf-dist/tex/latex/cntformats/cntformats.sty -Package: cntformats 2014/07/20 v0.7 A different way to read counters. (CN) - -(/usr/share/texlive/texmf-dist/tex/latex/cnltx/cnltx-base.sty -Package: cnltx-base 2019/11/01 v0.15 LaTeX tools and documenting facilities (CN -) - -(/usr/share/texlive/texmf-dist/tex/latex/pgfopts/pgfopts.sty -Package: pgfopts 2014/07/10 v2.1a LaTeX package options with pgfkeys -\pgfopts@list@add@a@toks=\toks57 -\pgfopts@list@add@b@toks=\toks58 -) -\c@cnltx@tmpa=\count438 -\c@cnltx@tmpb=\count439 -\c@cnltx@tmpc=\count440 -\cnltx@tmpa@length=\skip81 -\cnltx@tmpb@length=\skip82 -\cnltx@tmpc@length=\skip83 -)) -\c@question=\count441 - -(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_headings.def -File: exsheets_headings.def 2019/09/30 v0.21k ExSheets headings object -\l__exsheets_heading_above_dim=\dimen398 -\l__exsheets_heading_below_dim=\dimen399 -\l__exsheets_heading_main_coffin=\box138 -\l__exsheets_heading_pre_coffin=\box139 -\l__exsheets_heading_post_coffin=\box140 -\l__exsheets_heading_title_coffin=\box141 -\l__exsheets_heading_number_coffin=\box142 -\l__exsheets_heading_points_coffin=\box143 -\l__exsheets_heading_subtitle_coffin=\box144 - -Package xtemplate Info: Declaring object type 'exsheets-heading' taking 5 -(xtemplate) argument(s) on line 184. - -) -(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_headings.cfg -File: exsheets_headings.cfg 2019/09/30 v0.21k ExSheets headings instances -) -(/usr/share/texlive/texmf-dist/tex/latex/translations/translations.sty -Package: translations 2018/02/28 v1.8 internationalization of LaTeX2e packages -(CN) -)) -(/usr/share/texlive/texmf-dist/tex/latex/harpoon/harpoon.sty -Package: harpoon 1994/11/02 Harpoon drawing package by Tobias Kuipers -\argwd=\skip84 -\arght=\skip85 -) - -Package tasks Warning: You've tried setting command `\NewTasks ' on line 114. -(tasks) However, command `\NewTasks ' is deprecated. Please use -(tasks) command `\NewTasksEnvironment ' instead. Refer to the -(tasks) manual for details. - -Package csquotes Info: Checking for multilingual support... -Package csquotes Info: ... found 'babel' package. -Package csquotes Info: Adjusting default style. - -Package csquotes Warning: No style for language 'slovene'. -(csquotes) Using fallback style on input line 129. - -Package csquotes Info: Redefining alias 'default' -> 'fallback'. -(./dokument.aux) -\openout1 = `dokument.aux'. - -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 129. -LaTeX Font Info: ... okay on input line 129. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 129. -LaTeX Font Info: ... okay on input line 129. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 129. -LaTeX Font Info: ... okay on input line 129. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 129. -LaTeX Font Info: ... okay on input line 129. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 129. -LaTeX Font Info: ... okay on input line 129. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 129. -LaTeX Font Info: ... okay on input line 129. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 129. -LaTeX Font Info: ... okay on input line 129. -LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 129. -LaTeX Font Info: ... okay on input line 129. -\AtBeginShipoutBox=\box145 -Package hyperref Info: Link coloring OFF on input line 129. - (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty -Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section - -(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty -Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) -) -(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty -Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) -) -\c@section@level=\count442 -) -LaTeX Info: Redefining \ref on input line 129. -LaTeX Info: Redefining \pageref on input line 129. -LaTeX Info: Redefining \nameref on input line 129. - -(./dokument.out) (./dokument.out) -\@outlinefile=\write5 -\openout5 = `dokument.out'. - - -*geometry* driver: auto-detecting -*geometry* detected driver: pdftex -*geometry* verbose mode - [ preamble ] result: -* driver: pdftex -* paper: a4paper -* layout: -* layoutoffset:(h,v)=(0.0pt,0.0pt) -* modes: -* h-part:(L,W,R)=(45.80893pt, 505.89pt, 45.80894pt) -* v-part:(T,H,B)=(48.93872pt, 722.7pt, 73.40813pt) -* \paperwidth=597.50787pt -* \paperheight=845.04684pt -* \textwidth=505.89pt -* \textheight=722.7pt -* \oddsidemargin=-26.46106pt -* \evensidemargin=-26.46106pt -* \topmargin=-60.33127pt -* \headheight=12.0pt -* \headsep=25.0pt -* \topskip=10.0pt -* \footskip=30.0pt -* \marginparwidth=65.0pt -* \marginparsep=11.0pt -* \columnsep=10.0pt -* \skip\footins=9.0pt plus 4.0pt minus 2.0pt -* \hoffset=0.0pt -* \voffset=0.0pt -* \mag=1000 -* \@twocolumnfalse -* \@twosidefalse -* \@mparswitchfalse -* \@reversemarginfalse -* (1in=72.27pt=25.4mm, 1cm=28.453pt) - -(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii -[Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count443 -\scratchdimen=\dimen400 -\scratchbox=\box146 -\nofMPsegments=\count444 -\nofMParguments=\count445 -\everyMPshowfont=\toks59 -\MPscratchCnt=\count446 -\MPscratchDim=\dimen401 -\MPnumerator=\count447 -\makeMPintoPDFobject=\count448 -\everyMPtoPDFconversion=\toks60 -) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty -Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf -Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 -85. - -(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg -File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv -e -)) -ABD: EveryShipout initializing macros - -Package pgfplots Warning: running in backwards compatibility mode (unsuitable t -ick labels; missing features). Consider writing \pgfplotsset{compat=1.16} into -your preamble. - on input line 129. - - -(/usr/share/texlive/texmf-dist/tex/latex/translator/translator-basic-dictionary --English.dict -Dictionary: translator-basic-dictionary, Language: English -) -(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg -File: siunitx-abbreviations.cfg 2017/11/26 v2.7k siunitx: Abbreviated units -) -\c@lstlisting=\count449 -\symgns@font=\mathgroup6 -LaTeX Font Info: Overwriting symbol font `gns@font' in version `bold' -(Font) TS1/cmr/m/n --> TS1/cmr/b/n on input line 129. -Package gensymb Info: Math companion symbols declared on input line 129. -LaTeX Info: Redefining \degree on input line 129. -LaTeX Info: Redefining \celsius on input line 129. -Package gensymb Info: Using text companion symbols for \degree, \celsius and \p -erthousand on input line 129. -LaTeX Info: Redefining \ohm on input line 129. -Package gensymb Info: Using \textohm for \ohm on input line 129. -LaTeX Info: Redefining \micro on input line 129. -Package gensymb Info: Using \textmu for \micro on input line 129. - -Package exsheets Info: Loading custom configurations file -(exsheets) `exsheets_configurations.cfg'. - - -(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_configurations.cfg -File: exsheets_configurations.cfg -) -LaTeX Font Info: Trying to load font information for U+msa on input line 129 -. - -(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd -File: umsa.fd 2013/01/14 v3.01 AMS symbols A -) -LaTeX Font Info: Trying to load font information for U+msb on input line 129 -. - -(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd -File: umsb.fd 2013/01/14 v3.01 AMS symbols B -) (./dokument.toc) -\tf@toc=\write6 -\openout6 = `dokument.toc'. - - -! Undefined control sequence. -l.143 \setcoutner - {enumi}{351} -The control sequence at the end of the top line -of your error message was never \def'ed. If you have -misspelled it (e.g., `\hobx'), type `I' and the correct -spelling (e.g., `I\hbox'). Otherwise just continue, -and I'll forget about whatever was undefined. - - -Overfull \hbox (8.60541pt too wide) in paragraph at lines 177--178 -[] - [] - - -Package hyperref Warning: Composite letter `\textasciicaron+c' -(hyperref) not defined in PD1 encoding, -(hyperref) removing `\textasciicaron' on input line 182. - - -Overfull \hbox (16.93909pt too wide) in paragraph at lines 183--188 -\OT1/cmtt/m/n/10 pdf$[] \OT1/cmr/m/n/10 in/ali []$\OT1/cmtt/m/n/10 https : / / -git . sijanec . eu / sijanec / sola-[]gimb-[]2 / raw / branch / master / mat / -domace _ naloge / 21 / dokument . - [] - -[1 - -{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2] -Package atveryend Info: Empty hook `BeforeClearDocument' on input line 200. -Package atveryend Info: Empty hook `AfterLastShipout' on input line 200. - (./dokument.aux) -Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 200. -Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 200. -Package rerunfilecheck Info: File `dokument.out' has not changed. -(rerunfilecheck) Checksum: A4CCA4DF4C96A52E44AC95CE1EB0B2D8;131. - ) -Here is how much of TeX's memory you used: - 43882 strings out of 482235 - 1032578 string characters out of 11690443 - 13458477 words of memory out of 24000000 - 58246 multiletter control sequences out of 15000+600000 - 546825 words of font info for 79 fonts, out of 12000000 for 9000 - 395 hyphenation exceptions out of 8191 - 68i,15n,98p,1061b,1010s stack positions out of 5000i,500n,10000p,12000000b,80000s -< -/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb> -Output written on dokument.pdf (2 pages, 185227 bytes). -PDF statistics: - 142 PDF objects out of 1000 (max. 8388607) - 104 compressed objects within 2 object streams - 15 named destinations out of 1000 (max. 500000) - 125 words of extra memory for PDF output out of 10000 (max. 10000000) - +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfpl \ No newline at end of file diff --git a/mat/domace_naloge/21/dokument.pdf b/mat/domace_naloge/21/dokument.pdf index 4425df7..57b41c0 100644 Binary files a/mat/domace_naloge/21/dokument.pdf and b/mat/domace_naloge/21/dokument.pdf differ diff --git a/mat/domace_naloge/21/dokument.synctex(busy) b/mat/domace_naloge/21/dokument.synctex(busy) new file mode 100644 index 0000000..e69de29 diff --git a/mat/domace_naloge/21/dokument.synctex.gz b/mat/domace_naloge/21/dokument.synctex.gz index 6649dfe..bdddbbe 100644 Binary files a/mat/domace_naloge/21/dokument.synctex.gz and b/mat/domace_naloge/21/dokument.synctex.gz differ diff --git a/mat/domace_naloge/21/dokument.tex b/mat/domace_naloge/21/dokument.tex index 52190a6..a2c40e3 100644 --- a/mat/domace_naloge/21/dokument.tex +++ b/mat/domace_naloge/21/dokument.tex @@ -129,7 +129,7 @@ \begin{document} \maketitle \begin{abstract} -Ta dokument vsebuje domačo nalogo, ki zajema snov \textit{\snovdn}pri matematiki, in njene rešitve, ki sem jih spisal sam. Kjer je bilo potrebno izbrati neke poljubne naloge, sem jih vedno izbral naključno. +Ta dokument vsebuje domačo nalogo, ki zajema snov \textit{\snovdn}pri matematiki. Kjer je bilo potrebno izbrati neke poljubne naloge, sem jih vedno izbral naključno. \end{abstract} \tableofcontents \section{Vaje \textit{Matematika 2}: stran 55, štiri naloge 349-361} @@ -140,11 +140,25 @@ Ta dokument vsebuje domačo nalogo, ki zajema snov \textit{\snovdn}pri matematik $\Vec{m}=-2\Vec{a}+\frac{3}{2}\Vec{b}+\Vec{c}$ in $\Vec{n}=-\frac{1}{2}\Vec{a}+\Vec{b}+2\Vec{c}$. Vektor $2\Vec{m}-\Vec{n}$ zapiši v dani bazi. % 350 - \setcoutner{enumi}{351} + $$ + 2\Vec{m}-\Vec{n}=-\frac{7}{2}\Vec{a}+\frac{1}{3}\Vec{b} + $$ + \setcounter{enumi}{351} \item Točke $A$, $B$, $C$, $D$ in $E$ ležijo na premici tako, da je $|AB|:|BC|:|CD|:|DE|=3:2:1:3$. Točki $B$ in $D$ ležita med $A$ in $C$. točka $D$ pa med $B$ in $E$. Naj bo vektor $\Vec{a}=\vektor{BE}$ bazni vektor. Z vektorjem $\Vec{a}$ izrazi vektorje $\vektor{DC}$, $\vektor{AC}$ in $\vektor{DE}$. % 352 + $$ + \vektor{DC} = \frac{1}{4}\Vec{a};\ % + \vektor{AC} = \frac{5}{3}\Vec{a};\ % + \vektor{DE} = \frac{3}{4}\Vec{a}% + $$ \item Točka $M$ je razpolovišče daljice $CD$ pravokotnika $ABCD$, vektorja $\Vec{a}=\vektor{AB}$ in $\Vec{b}=\vektor{AD}$ sta bazna vektorja. Z $\Vec{a}$ in $\Vec{b}$ izrazi $\vektor{AC}$, $\vektor{AM}$, $\vektor{BM}$ in $\vektor{MB}$. % 353 + $$ + \vektor{AC} = \Vec{a}+\Vec{b};\ % + \vektor{AM} = \frac{1}{2}\Vec{a}+\Vec{b};\ % + \vektor{BM} = -\frac{1}{2}\Vec{a}+\Vec{b};\ % + \vektor{MB} = \frac{1}{2}\Vec{a}-\Vec{b};\ % + $$ \setcounter{enumi}{359} \item % 360 \begin{multicols}{2} @@ -153,9 +167,16 @@ Ta dokument vsebuje domačo nalogo, ki zajema snov \textit{\snovdn}pri matematik \begin{enumerate}[label=\textbf{\xslalph*)}] \item Dana sta vektorja $\vektor{AB}=\Vec{a}$ in $\vektor{BC}=\Vec{b}$. Izrazi vektor $\vektor{MK}$ z vektorjema $\Vec{a}$ in $\Vec{b}$. + $$ + \vektor{MK} = \frac{7}{2}\Vec{a}-\frac{1}{4}\Vec{b}; + $$ \item Naj bosta bazna vektorja $\vektor{LI}=\Vec{u}$ in $\vektor{LM}=\Vec{v}$. Izrazi vektorja $\vektor{AD}$ in $\vektor{AB}$ z vektorjema $\Vec{u}$ in $\Vec{v}$. + $$ + \vektor{AD} = 3\Vec{u}-2\Vec{v};\ % + \vektor{AB} = -3\Vec{u}+6\Vec{v} + $$ \end{enumerate} \vfill\null\columnbreak \begin{tikzpicture}[scale=2] diff --git a/mat/domace_naloge/21/dokument.toc b/mat/domace_naloge/21/dokument.toc index 3358445..6606006 100644 --- a/mat/domace_naloge/21/dokument.toc +++ b/mat/domace_naloge/21/dokument.toc @@ -1,4 +1,4 @@ \babel@toc {slovene}{} \babel@toc {slovene}{} \contentsline {section}{\numberline {1}Vaje \textit {Matematika 2}: stran 55, štiri naloge 349-361}{1}{section.1}% -\contentsline {section}{\numberline {2}Zaključek}{1}{section.2}% +\contentsline {section}{\numberline {2}Zaključek}{2}{section.2}% diff --git a/mat/domace_naloge/21/stderr.log b/mat/domace_naloge/21/stderr.log index 7464410..2017c6d 100644 --- a/mat/domace_naloge/21/stderr.log +++ b/mat/domace_naloge/21/stderr.log @@ -1 +1 @@ -<<75F40139103067DB4935B23B6287835A>]/Index[ 0 143]/Info 141 0 R/Length 369/Root 140 0 R/Size 143/W[ 1 3 1]>> +<<8BDE9569A286CF89B3E0C7EE8CAF8343>]/Index[ 0 143]/Info 141 0 R/Length 372/Root 140 0 R/Size 143/W[ 1 3 1]>> diff --git a/mat/domace_naloge/21/stdout.log b/mat/domace_naloge/21/stdout.log index df1ebbc..b547d19 100644 --- a/mat/domace_naloge/21/stdout.log +++ b/mat/domace_naloge/21/stdout.log @@ -205,311 +205,8 @@ zlibrarydecorations.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.cod e.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarydecorations.pathmorphing.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary -decorations.pathmorphing.code.tex)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarydecorations.pathreplacing.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary -decorations.pathreplacing.code.tex))) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryplotmarks.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.co -de.tex))) (/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty) -(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx.sty -(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty -(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def)) -(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty) -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty)) -(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty) -(/usr/share/texlive/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty) -(/usr/share/texlive/texmf-dist/tex/latex/translator/translator.sty)) -(/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty) -(/usr/share/texlive/texmf-dist/tex/latex/tabularcalc/tabularcalc.sty -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp.sty -`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich -(/usr/share/texlive/texmf-dist/tex/latex/fp/defpattern.sty) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-basic.sty) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-addons.sty) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-snap.sty) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-exp.sty) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-trigo.sty) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-pas.sty) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-random.sty) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eqn.sty) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-upn.sty) -(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eval.sty)) -(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty -(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex)) -(/usr/share/texlive/texmf-dist/tex/latex/numprint/numprint.sty -No configuration file `numprint.cfg' found.)) -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty -For additional information on amsmath, use the `?' option. -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty) -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty)) -(/usr/share/texlive/texmf-dist/tex/latex/float/float.sty) -(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.sty -(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty) -(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.cfg)) -(/usr/share/texlive/texmf-dist/tex/latex/filecontents/filecontents.sty - -Package filecontents Warning: This package is obsolete. Disabling it and -(filecontents) passing control to the filecontents environment -(filecontents) defined by the LaTeX kernel. - -) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-euclide.sty -2020/01/24 3.02c tkz-euclide.sty -(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.sty -2020/01/24 3.02c tkz-base.sty - -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryangles.code.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryarrows.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code. -tex)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.meta. -code.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarybabel.code.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarycalc.code.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarydecorations.markings.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary -decorations.markings.code.tex)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarydecorations.shapes.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary -decorations.shapes.code.tex)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarydecorations.text.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary -decorations.text.code.tex)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryintersections.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryintersection -s.code.tex)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarypatterns.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibrarypatterns.cod -e.tex)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarypositioning.code.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryquotes.code.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryshadows.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryfadings.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code -.tex))) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibraryshapes.misc.code.tex -(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshape -s.misc.code.tex)) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarysnakes.code.tex - -Package pgf Warning: Snakes have been superseded by decorations. Please use the - decoration libraries instead of the snakes library on input line 14. - -) -(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarythrough.code.tex) -(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfp/xfp.sty) -Local configuration file tkz-base.cfg found and used -(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.cfg -2020/02/04 3.02c tkz-base.cfg -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex -2020/01/24 3.02c tkz-tools-utilities.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex -2020/01/24 3.02c tkz-lib-symbols.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex -2020/01/24 3.02c tkz-tools-base.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex -2020/01/24 3.02c tkz-tools-utilities.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-math.tex -2020/01/24 3.02c tkz-tools-math.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex -2020/01/24 3.02c tkz-tools-text.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex -2020/01/24 3.02c tkz-obj-BB.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex -2020/01/24 3.02c tkz-tools-arith.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex -2020/01/24 3.02c tkz-tools-print.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex -2020/01/24 3.02c tkz-tools-misc.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex -2020/01/24 3.02c tkz-obj-axes.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex -2020/01/24 3.02c tkz-obj-grids.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex -2020/01/24 3.02c tkz-obj-marks.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex -2020/01/24 3.02c tkz-obj-points.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex -2020/01/24 3.02c tkz-obj-rep.tex -)) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-intersections.te -x -2020/01/24 3.02c tkz-tools-intersections.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-angles.tex -2020/01/24 3.02c tkz-tools-angles.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-angles.tex -2020/01/24 3.02c tkz-tool-eu-angles.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-arcs.tex -2020/01/24 3.02c tkz-obj-eu-arcs.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-compass.tex -2020/01/24 3.02c tkz-obj-eu-compass.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-circles.tex -2020/01/24 3.02c tkz-obj-eu-circles.tex -) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-circles.te -x -2020/01/24 3.02c tkz-obj-eu-draw-circles.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-lines.tex -2020/01/24 3.02c tkz-obj-eu-lines.tex -) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-lines.tex -2020/01/24 3.02c tkz-obj-eu-draw-lines.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points.tex -2020/01/24 3.02c tkz-obj-eu-points.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-by.tex -2020/01/24 3.02c tkz-tools-eu-points-by.tex -) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-rnd.tex -2020/01/24 3.02c tkz-obj-eu-points-rnd.tex -) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-with.tex -2020/01/24 3.02c tkz-obj-eu-points-with.tex -) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-polygons.t -ex -2020/01/24 3.02c tkz-obj-eu-polygons.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-polygons.tex -2020/01/24 3.02c tkz-obj-eu-polygons.tex -) -(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-protractor.tex -2020/01/24 3.02c tkz-obj-eu-protractor.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-sectors.tex -2020/01/24 3.02c tkz-obj-eu-sectors.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-show.tex -2020/01/24 3.02c tkz-obj-eu-show.tex -) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-triangles.tex -2020/01/24 3.02c tkz-obj-eu-triangles.tex -)) (/usr/share/texlive/texmf-dist/tex/latex/dirtytalk/dirtytalk.sty -(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty)) -(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.sty -(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.def) -(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.cfg)) -(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty -(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty) -(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg)) -(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime.sty -(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fmtcount.sty -(/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty -(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex -(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex))) -(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcprefix.sty -(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcnumparser.sty))) -(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime-defaults.sty)) -(/usr/share/texlive/texmf-dist/tex/latex/ccicons/ccicons.sty) -(/usr/share/texlive/texmf-dist/tex/latex/chemformula/chemformula.sty -(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfrac/xfrac.sty) -(/usr/share/texlive/texmf-dist/tex/latex/units/nicefrac.sty) -(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlfile.sty)) -(/usr/share/texlive/texmf-dist/tex/latex/was/gensymb.sty) -(/usr/share/texlive/texmf-dist/tex/generic/ulem/ulem.sty) -(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty -(/usr/share/texlive/texmf-dist/tex/generic/babel/switch.def) -(/usr/share/texlive/texmf-dist/tex/generic/babel-slovenian/slovene.ldf -(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def -(/usr/share/texlive/texmf-dist/tex/generic/babel/txtbabel.def)))) -(/usr/share/texlive/texmf-dist/tex/latex/cancel/cancel.sty) -(/usr/share/texlive/texmf-dist/tex/latex/tools/tabularx.sty) -(/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty) -(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets.sty -(/usr/share/texlive/texmf-dist/tex/latex/environ/environ.sty -(/usr/share/texlive/texmf-dist/tex/latex/trimspaces/trimspaces.sty)) -(/usr/share/texlive/texmf-dist/tex/latex/cntformats/cntformats.sty -(/usr/share/texlive/texmf-dist/tex/latex/cnltx/cnltx-base.sty -(/usr/share/texlive/texmf-dist/tex/latex/pgfopts/pgfopts.sty))) -(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_headings.def) -(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_headings.cfg) -(/usr/share/texlive/texmf-dist/tex/latex/translations/translations.sty)) -(/usr/share/texlive/texmf-dist/tex/latex/harpoon/harpoon.sty) - -Package tasks Warning: You've tried setting command `\NewTasks ' on line 114. -(tasks) However, command `\NewTasks ' is deprecated. Please use -(tasks) command `\NewTasksEnvironment ' instead. Refer to the -(tasks) manual for details. - - -Package csquotes Warning: No style for language 'slovene'. -(csquotes) Using fallback style on input line 129. - -(./dokument.aux) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty -(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty) -(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty)) -(./dokument.out) (./dokument.out) -*geometry* driver: auto-detecting -*geometry* detected driver: pdftex -(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii -[Loading MPS to PDF converter (version 2006.09.02).] -) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty -(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg)) -ABD: EveryShipout initializing macros - -Package pgfplots Warning: running in backwards compatibility mode (unsuitable t -ick labels; missing features). Consider writing \pgfplotsset{compat=1.16} into -your preamble. - on input line 129. - - -(/usr/share/texlive/texmf-dist/tex/latex/translator/translator-basic-dictionary --English.dict) -(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg) -(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_configurations.cfg) -(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd) -(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd) (./dokument.toc) -! Undefined control sequence. -l.143 \setcoutner - {enumi}{351} - -Overfull \hbox (8.60541pt too wide) in paragraph at lines 177--178 -[] - -Package hyperref Warning: Composite letter `\textasciicaron+c' -(hyperref) not defined in PD1 encoding, -(hyperref) removing `\textasciicaron' on input line 182. - - -Overfull \hbox (16.93909pt too wide) in paragraph at lines 183--188 -\OT1/cmtt/m/n/10 pdf$[] \OT1/cmr/m/n/10 in/ali []$\OT1/cmtt/m/n/10 https : / / -git . sijanec . eu / sijanec / sola-[]gimb-[]2 / raw / branch / master / mat / -domace _ naloge / 21 / dokument . -[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2] (./dokument.aux) ) -(see the transcript file for additional information) -Output written on dokument.pdf (2 pages, 185227 bytes). +zlibrarydecorations.pathmorphing.code.tex> +Output written on dokument.pdf (2 pages, 185401 bytes). SyncTeX written on dokument.synctex.gz. Transcript written on dokument.log. Reading 1 0 R @@ -569,14 +266,14 @@ Reading 39 0 R Reading 40 0 R Reading 41 0 R Reading 42 0 R +-> Uncompressing object 42 0 +-> Original Length: 4522 +-> Uncompressed Length: 22697 Reading 43 0 R Reading 44 0 R Reading 45 0 R Reading 46 0 R Reading 47 0 R --> Uncompressing object 47 0 --> Original Length: 4829 --> Uncompressed Length: 20422 Reading 48 0 R Reading 49 0 R Reading 50 0 R @@ -603,6 +300,9 @@ Reading 70 0 R Reading 71 0 R Reading 72 0 R Reading 73 0 R +-> Uncompressing object 73 0 +-> Original Length: 1592 +-> Uncompressed Length: 3869 Reading 74 0 R Reading 75 0 R Reading 76 0 R @@ -611,9 +311,6 @@ Reading 78 0 R Reading 79 0 R Reading 80 0 R Reading 81 0 R --> Uncompressing object 81 0 --> Original Length: 889 --> Uncompressed Length: 1910 Reading 82 0 R Reading 83 0 R Reading 84 0 R @@ -660,13 +357,13 @@ Reading 109 0 R Reading 110 0 R Reading 111 0 R -> Uncompressing object 111 0 --> Original Length: 18901 --> Uncompressed Length: 19778 +-> Original Length: 18977 +-> Uncompressed Length: 19858 Reading 112 0 R Reading 113 0 R -> Uncompressing object 113 0 --> Original Length: 12734 --> Uncompressed Length: 13433 +-> Original Length: 12421 +-> Uncompressed Length: 13103 Reading 114 0 R Reading 115 0 R -> Uncompressing object 115 0 @@ -723,7 +420,7 @@ Reading 140 0 R Reading 141 0 R Reading 142 0 R -> Uncompressing object 142 0 --> Original Length: 369 +-> Original Length: 372 -> Uncompressed Length: 715 /home/a/Documents/sola/gimb/2/mat/domace_naloge/21/dokument.pdf was successfully uncompressed to: /home/a/Documents/sola/gimb/2/mat/domace_naloge/21/dokument-uncompressed.pdf **** Error: An error occurred while reading an XREF table. @@ -731,5 +428,3 @@ Reading 142 0 R **** by a problem while converting or transfering the file. **** Ghostscript will attempt to recover the data. **** However, the output may be incorrect. - **** Error: stream Length incorrect. - Output may be incorrect. -- cgit v1.2.3 From 8075d11501c85e86af80270ce5a53ef0cd9c6e79 Mon Sep 17 00:00:00 2001 From: sijanec Date: Sun, 20 Dec 2020 00:24:09 +0100 Subject: =?UTF-8?q?linearna=20kombinacija=20vektorjev,=20baza=20-=20doma?= =?UTF-8?q?=C4=8Da=20naloga=2021=20za=20matematiko,=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mat/domace_naloge/21/dokument-modified.pdf | 3991 ------------------------ mat/domace_naloge/21/dokument-recompressed.pdf | 0 mat/domace_naloge/21/dokument-tmp.pdf | 3991 ------------------------ mat/domace_naloge/21/dokument-uncompressed.pdf | 3991 ------------------------ mat/domace_naloge/21/dokument.log | 1206 ++++++- mat/domace_naloge/21/dokument.pdf | Bin 185401 -> 63307 bytes mat/domace_naloge/21/dokument.synctex(busy) | 0 mat/domace_naloge/21/stderr.log | 2 +- mat/domace_naloge/21/stdout.log | 304 +- 9 files changed, 1509 insertions(+), 11976 deletions(-) delete mode 100644 mat/domace_naloge/21/dokument-modified.pdf delete mode 100644 mat/domace_naloge/21/dokument-recompressed.pdf delete mode 100644 mat/domace_naloge/21/dokument-tmp.pdf delete mode 100644 mat/domace_naloge/21/dokument-uncompressed.pdf delete mode 100644 mat/domace_naloge/21/dokument.synctex(busy) diff --git a/mat/domace_naloge/21/dokument-modified.pdf b/mat/domace_naloge/21/dokument-modified.pdf deleted file mode 100644 index b349971..0000000 --- a/mat/domace_naloge/21/dokument-modified.pdf +++ /dev/null @@ -1,3991 +0,0 @@ -%PDF-1.3 -% -1 0 obj -<< ->> -endobj -2 0 obj -<< ->> -endobj -3 0 obj -<< -/pgfprgb [ /Pattern /DeviceRGB ] ->> -endobj -4 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 5 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -5 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 0.000000 0 100.001280 0 ] -/Domain [ 0.000000 100.001280 ] -/Extend [ false false ] -/Function << -/Bounds [ 25.000320 75.000960 ] -/Domain [ 0.000000 100.001280 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 2 ->> ->> ->> -endobj -7 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 8 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -8 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 0.000000 0 100.001280 0 ] -/Domain [ 0.000000 100.001280 ] -/Extend [ false false ] -/Function << -/Bounds [ 25.000320 75.000960 ] -/Domain [ 0.000000 100.001280 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 2 ->> ->> ->> -endobj -9 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 10 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -10 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 0 0.000000 0 100.001280 ] -/Domain [ 0.000000 100.001280 ] -/Extend [ false false ] -/Function << -/Bounds [ 25.000320 75.000960 ] -/Domain [ 0.000000 100.001280 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 2 ->> ->> ->> -endobj -11 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 12 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -12 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 0 0.000000 0 100.001280 ] -/Domain [ 0.000000 100.001280 ] -/Extend [ false false ] -/Function << -/Bounds [ 25.000320 75.000960 ] -/Domain [ 0.000000 100.001280 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 2 ->> ->> ->> -endobj -17 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 18 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -18 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] -/Domain [ 0.000000 50.000640 ] -/Extend [ true false ] -/Function << -/Bounds [ 22.500270 25.000320 ] -/Domain [ 0.000000 50.000640 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 3 ->> ->> ->> -endobj -20 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 21 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -21 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] -/Domain [ 0.000000 50.000640 ] -/Extend [ true false ] -/Function << -/Bounds [ 21.250260 25.000320 ] -/Domain [ 0.000000 50.000640 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 3 ->> ->> ->> -endobj -23 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 24 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -24 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] -/Domain [ 0.000000 50.000640 ] -/Extend [ true false ] -/Function << -/Bounds [ 20.000240 25.000320 ] -/Domain [ 0.000000 50.000640 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 3 ->> ->> ->> -endobj -26 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 27 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -27 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] -/Domain [ 0.000000 50.000640 ] -/Extend [ true false ] -/Function << -/Bounds [ 21.250260 23.125290 25.000320 ] -/Domain [ 0.000000 50.000640 ] -/Encode [ 0 1 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 3 ->> ->> ->> -endobj -29 0 obj -<< -/D (section.1) -/S /GoTo ->> -endobj -30 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 500.158000 null ] ->> -endobj -31 0 obj -<< -/A 29 0 R -/Next 35 0 R -/Parent 133 0 R -/Title 32 0 R ->> -endobj -32 0 obj -(Vaje Matematika 2: stran 55, tiri naloge 349-361) -endobj -33 0 obj -<< -/D (section.2) -/S /GoTo ->> -endobj -34 0 obj -<< -/D [ 72 0 R /XYZ 45.638000 793.134000 null ] ->> -endobj -35 0 obj -<< -/A 33 0 R -/Parent 133 0 R -/Prev 31 0 R -/Title 36 0 R ->> -endobj -36 0 obj -(Zakljucek) -endobj -37 0 obj -<< -/D [ 38 0 R /Fit ] -/S /GoTo ->> -endobj -38 0 obj -<< -/Type /Page -/Annots [ 39 0 R 40 0 R ] -/Contents 42 0 R -/MediaBox [ 0 0 595.276000 841.890000 ] -/Parent 64 0 R -/Resources 41 0 R ->> -endobj -39 0 obj -<< -/Type /Annot -/A << -/D (section.1) -/S /GoTo ->> -/Border [ 0 0 0 ] -/C [ 1 0 0 ] -/H /I -/Rect [ 44.642000 536.092000 312.863000 546.940000 ] -/Subtype /Link ->> -endobj -40 0 obj -<< -/Type /Annot -/A << -/D (section.2) -/S /GoTo ->> -/Border [ 0 0 0 ] -/C [ 1 0 0 ] -/H /I -/Rect [ 44.642000 514.174000 109.634000 525.023000 ] -/Subtype /Link ->> -endobj -41 0 obj -<< -/ColorSpace 3 0 R -/ExtGState 1 0 R -/Font << -/F11 56 0 R -/F14 57 0 R -/F43 45 0 R -/F44 46 0 R -/F7 58 0 R -/F71 47 0 R -/F72 49 0 R -/F73 48 0 R -/F74 50 0 R -/F77 52 0 R -/F78 53 0 R -/F8 55 0 R ->> -/Pattern 2 0 R -/ProcSet [ /PDF /Text ] ->> -endobj -42 0 obj -<< -/Length 22697 ->> -stream -0 g 0 G -0 g 0 G -0 g 0 G -0 g 0 G -0 g 0 G -BT -/F43 17.2154 Tf 90.724 741.328 Td [(Linearna)-302(k)26(om)26(binacija)-302(v)27(ektor)-1(j)1(ev)-1(,)-301(baza)-302(|)-302(21.)-407(doma)26(\024)433(ca)-302(naloga)]TJ/F44 11.9552 Tf 122.252 -13.948 Td [(Matematik)55(a,)-327(Gimnazija)-326(Be)27(\024)463(zigrad)]TJ/F71 11.9552 Tf -11.907 -32.885 Td [(Profesor:)]TJ/F44 11.9552 Tf 64.866 0 Td [(prof.)-435(Vilk)27(o)-326(Doma)-55(jn)1(k)27(o)]TJ/F71 11.9552 Tf -50.394 -14.719 Td [(Avtor:)]TJ/F44 11.9552 Tf 50.394 0 Td [(An)27(ton)-326(Luk)54(a)]TJ 65.19 3.022 Td [(\024)]TJ -0.325 -3.022 Td [(Sijanec,)-326(2.)-435(a)]TJ -80.311 -23.446 Td [(20.)-326(decem)27(b)-27(er)-327(2)1(020)]TJ -0 g 0 G -0 g 0 G -/F73 8.9664 Tf 26.279 -35.865 Td [(P)33(o)33(vzetek)]TJ -0 g 0 G -0 g 0 G -/F72 8.9664 Tf -192.4 -15.617 Td [(T)86(a)-397(dokumen)29(t)-397(vsebuje)-397(doma)29(\024)485(co)-397(nalogo,)-410(ki)-397(za)-57(jema)-397(sno)29(v)]TJ/F74 8.9664 Tf 221.97 0 Td [(Line)52(arna)-417(kombinacija)-417(vektorjev,)-430(b)53(aza)]TJ/F72 8.9664 Tf 155.167 0 Td [(pri)-397(matematiki.)]TJ -390.961 -10.959 Td [(Kjer)-343(je)-342(bilo)-343(p)-28(otrebno)-343(izbrati)-342(nek)28(e)-342(p)-29(oljubne)-342(naloge,)-343(sem)-342(jih)-343(v)28(e)1(dno)-343(izbral)-343(naklju)29(\024)485(cno.)]TJ/F71 14.3462 Tf -24.906 -32.946 Td [(Kazalo)]TJ/F77 9.9626 Tf 0 -21.917 Td [(1)-925(V)96(a)-64(je)]TJ/F78 9.9626 Tf 41.428 0 Td [(Matematika)-414(2)]TJ/F77 9.9626 Tf 70.911 0 Td [(:)-511(stran)-384(55,)-322(\024)514(stiri)-383(naloge)-384(349-361)-23291(1)]TJ -112.339 -21.918 Td [(2)-925(Zaklju)32(\024)543(cek)]TJ 498.271 0 Td [(2)]TJ/F71 14.3462 Tf -498.271 -32.946 Td [(1)-1125(V)94(a)-63(je)]TJ/F78 14.3462 Tf 61.469 0 Td [(Matematika)-414(2)]TJ/F71 14.3462 Tf 102.112 0 Td [(:)-500(stran)-375(55,)-316(\024)504(stiri)-375(naloge)-375(349-361)]TJ -0 g 0 G -/F77 9.9626 Tf -164.024 -23.398 Td [(350.)]TJ -0 g 0 G -/F8 9.9626 Tf 25.349 0 Td [(Na)-56(j)-471(b)-28(o)-27(do)-472(v)28(ektorji)]TJ/F11 9.9626 Tf 84.336 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(,)]TJ/F11 9.9626 Tf 6.687 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 8.971 0 Td [(in)]TJ/F11 9.9626 Tf 12.45 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 9.554 0 Td [(bazni)-471(v)28(e)-1(kt)1(orji)-472(v)-471(prostoru.)-858(V)83(ektorja)]TJ/F11 9.9626 Tf 166.709 0 Td [(~)612(m)]TJ/F8 9.9626 Tf 12.326 0 Td [(in)]TJ/F11 9.9626 Tf 12.731 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 10.942 0 Td [(sta)-471(enak)55(a)]TJ/F11 9.9626 Tf 47.922 0 Td [(~)612(m)]TJ/F8 9.9626 Tf 12.689 0 Td [(=)]TJ/F14 9.9626 Tf 12.807 0 Td [(\000)]TJ/F8 9.9626 Tf 7.749 0 Td [(2)]TJ/F11 9.9626 Tf 4.357 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.02 0 Td [(+)]TJ/F7 6.9738 Tf 12.075 3.922 Td [(3)]TJ -ET -q -1 0 0 1 508.877 463.254 cm -[]0 d 0 J 0.398 w 0 0 m 3.971 0 l S -Q -BT -/F7 6.9738 Tf 508.877 457.328 Td [(2)]TJ/F11 9.9626 Tf 4.048 6.065 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.406 0 Td [(+)]TJ/F11 9.9626 Tf 10.331 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 9.555 0 Td [(in)]TJ/F11 9.9626 Tf -471.058 -14.179 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.014 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F7 6.9738 Tf 8.944 3.923 Td [(1)]TJ -ET -q -1 0 0 1 98.752 449.076 cm -[]0 d 0 J 0.398 w 0 0 m 3.971 0 l S -Q -BT -/F7 6.9738 Tf 98.752 443.15 Td [(2)]TJ/F11 9.9626 Tf 4.543 3.435 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.843 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 6.49 0 Td [(+)-222(2)]TJ/F11 9.9626 Tf 14.396 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 4.859 0 Td [(.)-444(V)83(ektor)-333(2)]TJ/F11 9.9626 Tf 45.7 0 Td [(~)612(m)]TJ/F14 9.9626 Tf 9.844 0 Td [(\000)]TJ/F11 9.9626 Tf 9.696 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.568 0 Td [(zapi)53(\024)447(si)-333(v)-334(dani)-333(bazi.)]TJ 43.487 -27.555 Td [(2)]TJ/F11 9.9626 Tf 6.098 0 Td [(~)612(m)]TJ/F14 9.9626 Tf 9.845 0 Td [(\000)]TJ/F11 9.9626 Tf 9.695 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.014 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 8.945 6.74 Td [(7)]TJ -ET -q -1 0 0 1 319.514 421.521 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 319.514 412.197 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.833 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ 11.158 6.74 Td [(1)]TJ -ET -q -1 0 0 1 344.329 421.521 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 344.329 412.197 Td [(3)]TJ/F11 9.9626 Tf 5.058 9.462 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ -0 g 0 G -/F77 9.9626 Tf -305.311 -29.249 Td [(352.)]TJ -0 g 0 G -/F8 9.9626 Tf 25.349 0 Td [(T)83(o)28(\024)472(ck)28(e)]TJ/F11 9.9626 Tf 28.838 0 Td [(A)]TJ/F8 9.9626 Tf 7.472 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(B)]TJ/F8 9.9626 Tf 8.057 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(C)]TJ/F8 9.9626 Tf 7.833 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(D)]TJ/F8 9.9626 Tf 12.18 0 Td [(in)]TJ/F11 9.9626 Tf 11.956 0 Td [(E)]TJ/F8 9.9626 Tf 11.583 0 Td [(le)28(\024)472(zijo)-367(na)-367(premici)-366(tak)27(o,)-375(da)-367(je)]TJ/F14 9.9626 Tf 126.645 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(AB)]TJ/F14 9.9626 Tf 15.528 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(:)]TJ/F14 9.9626 Tf 6.091 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(B)-50(C)]TJ/F14 9.9626 Tf 15.89 0 Td [(j)]TJ/F8 9.9626 Tf 6.09 0 Td [(:)]TJ/F14 9.9626 Tf 6.091 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(C)-72(D)]TJ/F14 9.9626 Tf 16.358 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(:)]TJ/F14 9.9626 Tf 6.09 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(D)-28(E)]TJ/F14 9.9626 Tf 16.453 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(=)-334(3)-333(:)-334(2)-333(:)-334(1)-333(:)-334(3.)-545(T)84(o)27(\024)473(cki)]TJ/F11 9.9626 Tf 94.888 0 Td [(B)]TJ/F8 9.9626 Tf 11.711 0 Td [(in)]TJ/F11 9.9626 Tf 11.957 0 Td [(D)]TJ/F8 9.9626 Tf -470.569 -13.95 Td [(le)28(\024)472(zita)-296(med)]TJ/F11 9.9626 Tf 47.406 0 Td [(A)]TJ/F8 9.9626 Tf 10.42 0 Td [(in)]TJ/F11 9.9626 Tf 11.249 0 Td [(C)]TJ/F8 9.9626 Tf 7.833 0 Td [(.)-432(to)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 32.988 0 Td [(D)]TJ/F8 9.9626 Tf 11.472 0 Td [(pa)-296(med)]TJ/F11 9.9626 Tf 34.676 0 Td [(B)]TJ/F8 9.9626 Tf 11.004 0 Td [(in)]TJ/F11 9.9626 Tf 11.25 0 Td [(E)]TJ/F8 9.9626 Tf 7.929 0 Td [(.)-432(Na)-55(j)-296(b)-28(o)-296(v)28(ektor)]TJ/F11 9.9626 Tf 69.558 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.657 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 6.808 Td [(\000)476(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(E)]TJ/F8 9.9626 Tf 18.933 0 Td [(bazni)-296(v)28(ektor.)-432(Z)-296(v)28(ektorjem)]TJ/F11 9.9626 Tf 115.247 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.837 0 Td [(izrazi)-296(v)28(ektorje)]TJ/F14 9.9626 Tf -417.975 -6.589 Td [(\000)457(\000)457(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(D)-28(C)]TJ/F8 9.9626 Tf 16.358 0 Td [(,)]TJ/F14 9.9626 Tf 6.089 6.807 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AC)]TJ/F8 9.9626 Tf 18.626 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.807 Td [(\000)452(\000)452(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(D)-28(E)]TJ/F8 9.9626 Tf 16.453 0 Td [(.)]TJ/F14 9.9626 Tf 99.708 -9.286 Td [(\000)457(\000)457(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(D)-28(C)]TJ/F8 9.9626 Tf 19.126 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ -ET -q -1 0 0 1 270.238 348.832 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 270.238 339.507 Td [(4)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 18.072 0 Td [(=)]TJ 11.712 6.74 Td [(5)]TJ -ET -q -1 0 0 1 319.214 348.832 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 319.214 339.507 Td [(3)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)452(\000)452(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(D)-28(E)]TJ/F8 9.9626 Tf 19.22 0 Td [(=)]TJ 11.712 6.74 Td [(3)]TJ -ET -q -1 0 0 1 369.338 348.832 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 369.338 339.507 Td [(4)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ -0 g 0 G -/F77 9.9626 Tf -329.696 -28.256 Td [(353.)]TJ -0 g 0 G -/F8 9.9626 Tf 25.349 0 Td [(T)83(o)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 28.918 0 Td [(M)]TJ/F8 9.9626 Tf 14.209 0 Td [(je)-347(razp)-28(olo)28(vi)53(\024)447(s)28(\024)472(ce)-347(daljice)]TJ/F11 9.9626 Tf 98.183 0 Td [(C)-72(D)]TJ/F8 9.9626 Tf 19.816 0 Td [(pra)28(v)28(ok)27(otni)1(k)55(a)]TJ/F11 9.9626 Tf 59.387 0 Td [(AB)-50(C)-72(D)]TJ/F8 9.9626 Tf 31.886 0 Td [(,)-351(v)28(ektorja)]TJ/F11 9.9626 Tf 44.544 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.885 0 Td [(=)]TJ/F14 9.9626 Tf 10.744 6.808 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AB)]TJ/F8 9.9626 Tf 18.987 0 Td [(in)]TJ/F11 9.9626 Tf 10.641 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.271 0 Td [(=)]TJ/F14 9.9626 Tf 10.744 6.808 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AD)]TJ/F8 9.9626 Tf 19.454 0 Td [(sta)-347(bazna)-347(v)28(ektorja.)-486(Z)]TJ/F11 9.9626 Tf -385.411 -13.396 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.21 0 Td [(in)]TJ/F11 9.9626 Tf 10.504 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.597 0 Td [(izrazi)]TJ/F14 9.9626 Tf 26.595 6.808 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 15.305 0 Td [(,)]TJ/F14 9.9626 Tf 6.088 6.808 Td [(\000)363(\000)363(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AM)]TJ/F8 9.9626 Tf 18.223 0 Td [(,)]TJ/F14 9.9626 Tf 6.089 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(M)]TJ/F8 9.9626 Tf 22.129 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(B)]TJ/F8 9.9626 Tf 18.808 0 Td [(.)]TJ/F14 9.9626 Tf -48.295 -19.248 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 18.072 0 Td [(=)]TJ/F11 9.9626 Tf 9.892 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)363(\000)363(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AM)]TJ/F8 9.9626 Tf 20.991 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ -ET -q -1 0 0 1 265.673 281.124 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 265.673 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(M)]TJ/F8 9.9626 Tf 21.575 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 8.945 6.74 Td [(1)]TJ -ET -q -1 0 0 1 342.353 281.124 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 342.353 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.843 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(;)]TJ/F14 9.9626 Tf 7.748 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(B)]TJ/F8 9.9626 Tf 21.576 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ -ET -q -1 0 0 1 411.283 281.124 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 411.283 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F14 9.9626 Tf 8.104 0 Td [(\000)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ -0 g 0 G -/F77 9.9626 Tf -393.983 -23.91 Td [(360.)]TJ -0 g 0 G -/F8 9.9626 Tf 25.349 0 Td [(Na)-279(strani)1(c)-1(ah)-278(paralelograma)]TJ/F11 9.9626 Tf 122.203 0 Td [(AB)-50(C)-72(D)]TJ/F8 9.9626 Tf 34.661 0 Td [(so)-279(dane)-278(to)28(\024)472(ck)28(e)]TJ/F11 9.9626 Tf 60.407 0 Td [(I)]TJ/F8 9.9626 Tf 5.161 0 Td [(,)]TJ/F11 9.9626 Tf 5.651 0 Td [(J)]TJ/F8 9.9626 Tf -228.083 -11.956 Td [(in)]TJ/F11 9.9626 Tf 11.727 0 Td [(K)]TJ/F8 9.9626 Tf 9.174 0 Td [(,)-346(tak)27(o)-343(da)-344(je)]TJ/F14 9.9626 Tf 53.299 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(D)-28(I)]TJ/F14 9.9626 Tf 13.686 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(I)-78(J)]TJ/F14 9.9626 Tf 11.644 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(J)-96(C)]TJ/F14 9.9626 Tf 14.315 0 Td [(j)]TJ/F8 9.9626 Tf 6.193 0 Td [(in)]TJ/F14 9.9626 Tf 11.726 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(B)-50(K)]TJ/F14 9.9626 Tf 17.23 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(K)-72(C)]TJ/F14 9.9626 Tf 17.007 0 Td [(j)]TJ/F8 9.9626 Tf 2.767 0 Td [(.)]TJ -231.798 -11.955 Td [(T)83(o)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 28.442 0 Td [(L)]TJ/F8 9.9626 Tf 9.761 0 Td [(je)-299(razp)-28(olo)28(vi)53(\024)447(s)28(\024)472(ce)-300(dalj)1(ico)]TJ/F11 9.9626 Tf 97.307 0 Td [(AI)]TJ/F8 9.9626 Tf 12.633 0 Td [(,)-306(to)28(\024)472(ck)55(a)]TJ/F11 9.9626 Tf 31.768 0 Td [(M)]TJ/F8 9.9626 Tf 13.732 0 Td [(pa)-299(razp)-28(o-)]TJ -193.643 -11.955 Td [(lo)28(vi)53(\024)447(s)28(\024)472(ce)-334(daljice)]TJ/F11 9.9626 Tf 62.876 0 Td [(LJ)]TJ/F8 9.9626 Tf 13.263 0 Td [(.)]TJ -0 g 0 G -/F77 9.9626 Tf -69.227 -19.422 Td [(a\051)]TJ -0 g 0 G -/F8 9.9626 Tf 15.006 0 Td [(Dana)-454(sta)-453(v)28(ektorja)]TJ/F14 9.9626 Tf 84.901 6.808 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AB)]TJ/F8 9.9626 Tf 20.292 0 Td [(=)]TJ/F11 9.9626 Tf 11.889 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 10.409 0 Td [(in)]TJ/F14 9.9626 Tf 12.821 6.808 Td [(\000)480(\000)481(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(C)]TJ/F8 9.9626 Tf 20.654 0 Td [(=)]TJ/F11 9.9626 Tf 11.394 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(.)-805(Izrazi)]TJ -177.754 -13.949 Td [(v)28(ektor)]TJ/F14 9.9626 Tf 30.746 6.807 Td [(\000)278(\000)278(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(M)-109(K)]TJ/F8 9.9626 Tf 23.246 0 Td [(z)-333(v)27(ektorjema)]TJ/F11 9.9626 Tf 58.627 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.21 0 Td [(in)]TJ/F11 9.9626 Tf 10.504 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(.)]TJ/F14 9.9626 Tf -67.624 -14.387 Td [(\000)278(\000)278(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(K)]TJ/F8 9.9626 Tf 22.693 0 Td [(=)]TJ 11.712 6.74 Td [(7)]TJ -ET -q -1 0 0 1 196.971 166.782 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 196.971 157.457 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F14 9.9626 Tf 8.104 0 Td [(\000)]TJ/F8 9.9626 Tf 11.158 6.74 Td [(1)]TJ -ET -q -1 0 0 1 221.786 166.782 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 221.786 157.457 Td [(4)]TJ/F11 9.9626 Tf 5.057 9.463 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(;)]TJ -0 g 0 G -/F77 9.9626 Tf -155.578 -24.414 Td [(b\051)]TJ -0 g 0 G -/F8 9.9626 Tf 15.802 0 Td [(Na)-56(j)-445(b)-28(osta)-446(bazna)-445(v)27(ektorja)]TJ/F14 9.9626 Tf 118.303 6.808 Td [(\000)579(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(LI)]TJ/F8 9.9626 Tf 16.575 0 Td [(=)]TJ/F11 9.9626 Tf 12.253 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 10.273 0 Td [(in)]TJ/F14 9.9626 Tf 12.742 6.808 Td [(\000)398(\000)398(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(LM)]TJ/F8 9.9626 Tf 22.165 0 Td [(=)]TJ/F11 9.9626 Tf 11.996 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.573 0 Td [(.)]TJ -209.88 -13.949 Td [(Izrazi)-333(v)27(ektorja)]TJ/F14 9.9626 Tf 66.197 6.807 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AD)]TJ/F8 9.9626 Tf 19.317 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.807 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AB)]TJ/F8 9.9626 Tf 18.85 0 Td [(z)-333(v)27(ektorjema)]TJ/F11 9.9626 Tf 59.122 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 9.152 0 Td [(in)]TJ/F11 9.9626 Tf 11.236 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.574 0 Td [(.)]TJ/F14 9.9626 Tf -164.571 -11.69 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AD)]TJ/F8 9.9626 Tf 18.764 0 Td [(=)-278(3)]TJ/F11 9.9626 Tf 15.369 0 Td [(~)487(u)]TJ/F14 9.9626 Tf 8.046 0 Td [(\000)]TJ/F8 9.9626 Tf 9.963 0 Td [(2)]TJ/F11 9.9626 Tf 4.594 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.573 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.807 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AB)]TJ/F8 9.9626 Tf 18.296 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 7.749 0 Td [(3)]TJ/F11 9.9626 Tf 4.853 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 8.045 0 Td [(+)-222(6)]TJ/F11 9.9626 Tf 14.557 0 Td [(~)461(v)]TJ -0 g 0 G -0 g 0 G -ET -1 0 0 1 316.766 149.606 cm -q -0 G -0 g -0.3985 w -q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -0.59776 w -0 G -0 g -[ ] 0.0 d -1 0 0 rg 1 0 0 RG -0.0 0.0 m -0.0 0.0 l -170.08086 0.0 l -226.77448 113.38724 l -56.69362 113.38724 l -h -S -0 g 0 G -Q -q -0.59776 w -0 G -0 g -[ ] 0.0 d -0 0 1 rg 0 0 1 RG -0.0 0.0 m -0.0 0.0 m -113.38724 113.38724 l -S -0 g 0 G -Q -q -0.59776 w -0 G -0 g -[ ] 0.0 d -0 0 1 rg 0 0 1 RG -56.69362 56.69362 m -56.69362 56.69362 m -170.08086 113.38724 l -S -0 g 0 G -Q -q -0.59776 w -0 G -0 g -[ ] 0.0 d -0 0 1 rg 0 0 1 RG -113.38724 85.0404 m -113.38724 85.0404 m -198.42764 56.69362 l -S -0 g 0 G -Q -q -0 G -0 g -q -0 G -0 g -58.18803 113.38724 m -58.18803 114.21257 57.51895 114.88165 56.69362 114.88165 c -55.86827 114.88165 55.1992 114.21257 55.1992 113.38724 c -55.1992 112.56189 55.86827 111.89282 56.69362 111.89282 c -57.51895 111.89282 58.18803 112.56189 58.18803 113.38724 c -h -56.69362 113.38724 m -B -Q -q -1 0 0 1 56.693 113.386 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -56.693 -113.386 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -114.88165 113.38724 m -114.88165 114.21257 114.21257 114.88165 113.38724 114.88165 c -112.56189 114.88165 111.89282 114.21257 111.89282 113.38724 c -111.89282 112.56189 112.56189 111.89282 113.38724 111.89282 c -114.21257 111.89282 114.88165 112.56189 114.88165 113.38724 c -h -113.38724 113.38724 m -B -Q -q -1 0 0 1 113.386 113.386 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -113.386 -113.386 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -171.57527 113.38724 m -171.57527 114.21257 170.9062 114.88165 170.08086 114.88165 c -169.25551 114.88165 168.58644 114.21257 168.58644 113.38724 c -168.58644 112.56189 169.25551 111.89282 170.08086 111.89282 c -170.9062 111.89282 171.57527 112.56189 171.57527 113.38724 c -h -170.08086 113.38724 m -B -Q -q -1 0 0 1 170.079 113.386 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -170.079 -113.386 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -228.26889 113.38724 m -228.26889 114.21257 227.59982 114.88165 226.77448 114.88165 c -225.94913 114.88165 225.28006 114.21257 225.28006 113.38724 c -225.28006 112.56189 225.94913 111.89282 226.77448 111.89282 c -227.59982 111.89282 228.26889 112.56189 228.26889 113.38724 c -h -226.77448 113.38724 m -B -Q -q -1 0 0 1 226.772 113.386 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -226.772 -113.386 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -58.18803 56.69362 m -58.18803 57.51895 57.51895 58.18803 56.69362 58.18803 c -55.86827 58.18803 55.1992 57.51895 55.1992 56.69362 c -55.1992 55.86827 55.86827 55.1992 56.69362 55.1992 c -57.51895 55.1992 58.18803 55.86827 58.18803 56.69362 c -h -56.69362 56.69362 m -B -Q -q -1 0 0 1 56.693 56.693 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -56.693 -56.693 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -114.88165 85.0404 m -114.88165 85.86575 114.21257 86.53482 113.38724 86.53482 c -112.56189 86.53482 111.89282 85.86575 111.89282 85.0404 c -111.89282 84.21506 112.56189 83.54599 113.38724 83.54599 c -114.21257 83.54599 114.88165 84.21506 114.88165 85.0404 c -h -113.38724 85.0404 m -B -Q -q -1 0 0 1 113.386 85.039 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -113.386 -85.039 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -199.92206 56.69362 m -199.92206 57.51895 199.25299 58.18803 198.42764 58.18803 c -197.6023 58.18803 196.93323 57.51895 196.93323 56.69362 c -196.93323 55.86827 197.6023 55.1992 198.42764 55.1992 c -199.25299 55.1992 199.92206 55.86827 199.92206 56.69362 c -h -198.42764 56.69362 m -B -Q -q -1 0 0 1 198.425 56.693 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -198.425 -56.693 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -1.49442 0.0 m -1.49442 0.82533 0.82533 1.49442 0.0 1.49442 c --0.82533 1.49442 -1.49442 0.82533 -1.49442 0.0 c --1.49442 -0.82533 -0.82533 -1.49442 0.0 -1.49442 c -0.82533 -1.49442 1.49442 -0.82533 1.49442 0.0 c -h -0.0 0.0 m -B -Q -q -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -Q -Q -q -0 G -0 g -q -0 G -0 g -171.57527 0.0 m -171.57527 0.82533 170.9062 1.49442 170.08086 1.49442 c -169.25551 1.49442 168.58644 0.82533 168.58644 0.0 c -168.58644 -0.82533 169.25551 -1.49442 170.08086 -1.49442 c -170.9062 -1.49442 171.57527 -0.82533 171.57527 0.0 c -h -170.08086 0.0 m -B -Q -q -1 0 0 1 170.079 0 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -170.079 0 cm -Q -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 60.213 103.058 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -376.979 -252.664 cm -BT -/F11 9.9626 Tf 376.979 252.664 Td [(D)]TJ -0 g 0 G -ET -1 0 0 1 376.979 252.664 cm -Q -1 0 0 1 -60.213 -103.058 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 116.906 103.058 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -433.672 -252.664 cm -BT -/F11 9.9626 Tf 433.672 252.664 Td [(I)]TJ -0 g 0 G -ET -1 0 0 1 433.672 252.664 cm -Q -1 0 0 1 -116.906 -103.058 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 173.599 103.058 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -490.365 -252.664 cm -BT -/F11 9.9626 Tf 490.365 252.664 Td [(J)]TJ -0 g 0 G -ET -1 0 0 1 490.365 252.664 cm -Q -1 0 0 1 -173.599 -103.058 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 230.291 103.058 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -547.057 -252.664 cm -BT -/F11 9.9626 Tf 547.057 252.664 Td [(C)]TJ -0 g 0 G -ET -1 0 0 1 547.057 252.664 cm -Q -1 0 0 1 -230.291 -103.058 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 60.213 46.365 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -376.979 -195.971 cm -BT -/F11 9.9626 Tf 376.979 195.971 Td [(L)]TJ -0 g 0 G -ET -1 0 0 1 376.979 195.971 cm -Q -1 0 0 1 -60.213 -46.365 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 116.906 74.712 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -433.672 -224.318 cm -BT -/F11 9.9626 Tf 433.672 224.318 Td [(M)]TJ -0 g 0 G -ET -1 0 0 1 433.672 224.318 cm -Q -1 0 0 1 -116.906 -74.712 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 201.945 46.365 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -518.711 -195.971 cm -BT -/F11 9.9626 Tf 518.711 195.971 Td [(K)]TJ -0 g 0 G -ET -1 0 0 1 518.711 195.971 cm -Q -1 0 0 1 -201.945 -46.365 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 3.52 -10.328 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -320.286 -139.278 cm -BT -/F11 9.9626 Tf 320.286 139.278 Td [(A)]TJ -0 g 0 G -ET -1 0 0 1 320.286 139.278 cm -Q -1 0 0 1 -3.52 10.328 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 173.599 -10.328 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -490.365 -139.278 cm -BT -/F11 9.9626 Tf 490.365 139.278 Td [(B)]TJ -0 g 0 G -ET -1 0 0 1 490.365 139.278 cm -Q -1 0 0 1 -173.599 10.328 cm -Q -0 g 0 G -Q -Q -n -Q -0 g 0 G -1 0 0 1 -316.766 -149.606 cm -BT -/F8 9.9626 Tf 295.147 43.246 Td [(1)]TJ -0 g 0 G -ET - -endstream -endobj -43 0 obj -<< -/D [ 38 0 R /XYZ 44.638000 830.996000 null ] ->> -endobj -44 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 793.134000 null ] ->> -endobj -45 0 obj -<< -/Type /Font -/BaseFont /DMPNDY+CMR17 -/FirstChar 20 -/FontDescriptor 116 0 R -/LastChar 124 -/Subtype /Type1 -/Widths 100 0 R ->> -endobj -46 0 obj -<< -/Type /Font -/BaseFont /RLYLLI+CMR12 -/FirstChar 20 -/FontDescriptor 114 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 99 0 R ->> -endobj -47 0 obj -<< -/Type /Font -/BaseFont /OLUUSQ+CMBX12 -/FirstChar 20 -/FontDescriptor 104 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 98 0 R ->> -endobj -48 0 obj -<< -/Type /Font -/BaseFont /HJGMPZ+CMBX9 -/FirstChar 80 -/FontDescriptor 106 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 97 0 R ->> -endobj -49 0 obj -<< -/Type /Font -/BaseFont /SJNHCC+CMR9 -/FirstChar 20 -/FontDescriptor 124 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 96 0 R ->> -endobj -50 0 obj -<< -/Type /Font -/BaseFont /FOJGQS+CMTI9 -/FirstChar 44 -/FontDescriptor 128 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 95 0 R ->> -endobj -51 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 578.876000 null ] ->> -endobj -52 0 obj -<< -/Type /Font -/BaseFont /ZOXHGW+CMBX10 -/FirstChar 20 -/FontDescriptor 102 0 R -/LastChar 117 -/Subtype /Type1 -/Widths 94 0 R ->> -endobj -53 0 obj -<< -/Type /Font -/BaseFont /FWTCDB+CMBXTI10 -/FirstChar 50 -/FontDescriptor 108 0 R -/LastChar 116 -/Subtype /Type1 -/Widths 93 0 R ->> -endobj -54 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 475.492000 null ] ->> -endobj -55 0 obj -<< -/Type /Font -/BaseFont /XGGYUK+CMR10 -/FirstChar 12 -/FontDescriptor 112 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 92 0 R ->> -endobj -56 0 obj -<< -/Type /Font -/BaseFont /ZOBLSI+CMMI10 -/FirstChar 65 -/FontDescriptor 110 0 R -/LastChar 126 -/Subtype /Type1 -/Widths 91 0 R ->> -endobj -57 0 obj -<< -/Type /Font -/BaseFont /OAQJWM+CMSY10 -/FirstChar 0 -/FontDescriptor 126 0 R -/LastChar 106 -/Subtype /Type1 -/Widths 90 0 R ->> -endobj -58 0 obj -<< -/Type /Font -/BaseFont /ZRYLLV+CMR7 -/FirstChar 49 -/FontDescriptor 120 0 R -/LastChar 65 -/Subtype /Type1 -/Widths 89 0 R ->> -endobj -59 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 402.234000 null ] ->> -endobj -60 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 333.530000 null ] ->> -endobj -61 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 261.836000 null ] ->> -endobj -62 0 obj -<< -/D [ 38 0 R /XYZ 70.544000 211.915000 null ] ->> -endobj -63 0 obj -<< -/D [ 38 0 R /XYZ 70.544000 152.357000 null ] ->> -endobj -64 0 obj -<< -/Type /Pages -/Count 2 -/Kids [ 38 0 R 72 0 R ] ->> -endobj -65 0 obj -<< -/Type /Annot -/A << -/D (Hfootnote.1) -/S /GoTo ->> -/Border [ 0 0 0 ] -/C [ 1 0 0 ] -/H /I -/Rect [ 508.854000 758.209000 515.316000 770.456000 ] -/Subtype /Link ->> -endobj -66 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec.eu/sijanec/sola-gimb-2) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 485.877000 746.185000 550.634000 757.310000 ] -/Subtype /Link ->> -endobj -67 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec/sola-gimb-2/src/branch/master/mat/domace_naloge/21/) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 237.402000 733.953000 350.356000 745.908000 ] -/Subtype /Link ->> -endobj -68 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (http://razor.arnes.si/~asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.pdf) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 140.675000 722.275000 550.634000 733.400000 ] -/Subtype /Link ->> -endobj -69 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/mat/domace_naloge/21/dokument.pdf) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 88.560000 710.043000 550.634000 721.998000 ] -/Subtype /Link ->> -endobj -70 0 obj -<< -/Type /Annot -/A << -/D (Hfootnote.2) -/S /GoTo ->> -/Border [ 0 0 0 ] -/C [ 1 0 0 ] -/H /I -/Rect [ 330.044000 608.009000 336.506000 620.048000 ] -/Subtype /Link ->> -endobj -71 0 obj -<< -/ColorSpace 3 0 R -/ExtGState 1 0 R -/Font << -/F40 75 0 R -/F45 82 0 R -/F46 80 0 R -/F60 83 0 R -/F7 58 0 R -/F71 47 0 R -/F8 55 0 R ->> -/Pattern 2 0 R -/ProcSet [ /PDF /Text ] ->> -endobj -72 0 obj -<< -/Type /Page -/Annots [ 65 0 R 66 0 R 76 0 R 67 0 R 68 0 R 77 0 R 69 0 R 78 0 R 70 0 R ] -/Contents 73 0 R -/MediaBox [ 0 0 595.276000 841.890000 ] -/Parent 64 0 R -/Resources 71 0 R ->> -endobj -73 0 obj -<< -/Length 3869 ->> -stream -0 g 0 G -0 g 0 G -BT -/F71 14.3462 Tf 45.638 783.171 Td [(2)-1125(Zaklju)31(\024)531(cek)]TJ/F8 9.9626 Tf 0 -21.821 Td [(T)83(a)-375(dokumen)28(t)-376(je)-376(infor)1(m)-1(ati)1(vne)-376(nara)28(v)28(e)-376(in)-376(se)-375(lahk)28(o)-323(\024)447(se)-376(spreminja.)-571(Na)-55(jno)27(v)28(ej)53(\024)447(sa)-375(razli)27(\024)473(cica,)-387(torej)-375(PDFji)-376(in)-375(L)]TJ/F7 6.9738 Tf 441.285 2.043 Td [(A)]TJ/F8 9.9626 Tf 4.386 -2.043 Td [(T)]TJ 5.535 -2.144 Td [(E)]TJ 5.534 2.144 Td [(X)]TJ/F7 6.9738 Tf 7.472 3.616 Td [(1)]TJ/F8 9.9626 Tf 8.212 -3.616 Td [(izv)28(orna)]TJ -472.424 -11.955 Td [(k)28(o)-28(da,)-481(zgo)-28(do)28(vina)-451(spremem)28(b)-452(in)-451(prej)53(\024)447(snje)-451(razli)27(\024)473(cice,)-481(je)-452(na)-451(v)28(oljo)-451(v)-452(mo)-55(jem)-399(\024)447(solsk)28(em)-451(Git)-452(rep)-28(ozitorij)1(u)-452(na)]TJ/F40 9.9626 Tf 441.236 0 Td [(https://git.)]TJ -441.236 -11.955 Td [(sijanec.eu/sijanec/sola-)-50(gimb-)-50(2)]TJ/F8 9.9626 Tf 160.576 0 Td [(v)-268(mapi)-268(/mat/domace)]TJ -ET -q -1 0 0 1 298.772 737.639 cm -[]0 d 0 J 0.398 w 0 0 m 2.989 0 l S -Q -BT -/F8 9.9626 Tf 301.76 737.44 Td [(naloge/21/.)-423(P)28(o)28(v)28(eza)27(v)56(a)-268(za)-268(ogled)-268(zadnje)-268(razli)28(\024)472(cice)-268(tega)-268(doku-)]TJ -256.122 -11.955 Td [(men)28(ta)-231(v)-231(PDF)-230(obliki)-231(je)]TJ/F40 9.9626 Tf 96.033 0 Td [(http://razor.arnes.si/)]TJ 115.068 -1.93 Td [(~)]TJ 5.23 1.93 Td [(asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.)]TJ -216.331 -11.955 Td [(pdf)]TJ/F8 9.9626 Tf 17.905 0 Td [(in/ali)]TJ/F40 9.9626 Tf 26.013 0 Td [(https://git.sijanec.eu/sijanec/sola-)-50(gimb-)-50(2/raw/branch/master/mat/domace_naloge/21/dokument.)]TJ -43.918 -11.956 Td [(pdf)]TJ/F8 9.9626 Tf 15.691 0 Td [(.)]TJ/F71 14.3462 Tf -15.691 -32.945 Td [(Razhro)59(\024)504(s)31(\024)531(cev)63(alne)-375(inf)-1(orma)1(cij)-1(e)]TJ/F8 9.9626 Tf 0 -21.821 Td [(T)83(e)-307(informacije)-307(so)-307(generirane,)-313(k)28(er)-307(je)-307(omogo)28(\024)472(ceno)-307(razhro)52(\024)448(s)27(\024)473(ce)-1(v)56(anje.)-436(Pred)-307(ob)-55(ja)28(v)27(o)-307(dokumen)28(ta)-307(izklopite)-307(razhro)53(\024)447(s)28(\024)472(cev)55(anje.)-435(T)83(o)]TJ 0 -11.955 Td [(naredite)-333(tak)28(o,)-334(da)-333(nasta)28(vite)-334(uk)56(az)]TJ/F40 9.9626 Tf 143.158 0 Td [(razhroscevanje)]TJ/F8 9.9626 Tf 76.545 0 Td [(na)-333(0)-334(v)-333(za)28(\024)472(cetku)-333(dokumen)27(ta.)]TJ -204.759 -11.956 Td [(Gra\014)-333(ima)-56(jo)-333(natan)28(\024)472(cnost)-333(100)-334(to)28(\024)472(ck)-333(na)-333(graf.)]TJ 0 -11.955 Td [(Konec)-333(generiranja)-334(doku)1(m)-1(en)28(ta:)-444(20.)-333(dec)-1(em)28(b)-28(er)-333(2020)-333(ob)-334(00:23:37)]TJ/F7 6.9738 Tf 270.458 3.616 Td [(2)]TJ/F8 9.9626 Tf -270.458 -15.571 Td [(Dokumen)28(t)-334(se)-333(je)-333(generiral)-334(4)-333(s.)]TJ -0 g 0 G -ET -q -1 0 0 1 45.638 101.61 cm -[]0 d 0 J 0.398 w 0 0 m 201.597 0 l S -Q -BT -/F46 5.9776 Tf 56.73 94.968 Td [(1)]TJ/F45 7.9701 Tf 4.151 -2.813 Td [(Za)-354(izdela)29(v)30(o)-354(dokumen)29(ta)-354(p)-29(otrebujete)]TJ/F60 7.9701 Tf 133.384 0 Td [(TeXLive)-531(2020)]TJ/F45 7.9701 Tf 50.81 0 Td [(.)]TJ/F46 5.9776 Tf -188.345 -6.691 Td [(2)]TJ/F45 7.9701 Tf 4.151 -2.813 Td [(T)89(o)-350(ne)-349(nak)59(azuje)-350(dejansk)30(ega)-320(\024)502(casa,)-351(k)30(o)-350(je)-349(bil)-350(dokumen)30(t)-350(napisan,)-350(tem)29(v)30(e)29(\024)502(c)-320(\024)502(cas,)-350(k)29(o)-349(je)-350(bi)-349(dokumen)29(t)-349(generiran)-350(v)-349(PDF/D)29(VI)-349(oblik)29(o.)-470(Isto)-350(v)30(elja)]TJ -15.243 -9.465 Td [(za)-354(datum)-354(v)-354(gla)29(vi)-354(dokumen)30(ta.)]TJ 113.147 2.015 Td [(\024)]TJ -0.941 -2.015 Td [(Ce)-354(b)-30(erete)-354(direktno)-354(iz)-354(LaT)88(eX)-354(datotek)30(e,)-354(b)-30(o)-354(to)-354(v)29(edno)-354(dana)56(\024)476(snji)-355(da)1(tum)-1(.)]TJ -0 g 0 G -0 g 0 G -/F8 9.9626 Tf 137.303 -29.94 Td [(2)]TJ -0 g 0 G -ET - -endstream -endobj -74 0 obj -<< -/D [ 72 0 R /XYZ 44.638000 830.996000 null ] ->> -endobj -75 0 obj -<< -/Type /Font -/BaseFont /IJKLSG+CMTT10 -/FirstChar 45 -/FontDescriptor 130 0 R -/LastChar 126 -/Subtype /Type1 -/Widths 88 0 R ->> -endobj -76 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec.eu/sijanec/sola-gimb-2) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 44.642000 733.953000 204.541000 745.908000 ] -/Subtype /Link ->> -endobj -77 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (http://razor.arnes.si/~asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.pdf) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 44.642000 710.043000 62.325000 721.998000 ] -/Subtype /Link ->> -endobj -78 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/mat/domace_naloge/21/dokument.pdf) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 44.642000 698.364000 62.325000 708.659000 ] -/Subtype /Link ->> -endobj -79 0 obj -<< -/D [ 72 0 R /XYZ 45.638000 686.561000 null ] ->> -endobj -80 0 obj -<< -/Type /Font -/BaseFont /XTJZVU+CMR6 -/FirstChar 49 -/FontDescriptor 118 0 R -/LastChar 50 -/Subtype /Type1 -/Widths 87 0 R ->> -endobj -81 0 obj -<< -/D [ 72 0 R /XYZ 60.881000 101.620000 null ] ->> -endobj -82 0 obj -<< -/Type /Font -/BaseFont /TPJKYX+CMR8 -/FirstChar 20 -/FontDescriptor 122 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 86 0 R ->> -endobj -83 0 obj -<< -/Type /Font -/BaseFont /ISIMRT+CMTT8 -/FirstChar 48 -/FontDescriptor 132 0 R -/LastChar 118 -/Subtype /Type1 -/Widths 85 0 R ->> -endobj -84 0 obj -<< -/D [ 72 0 R /XYZ 60.881000 92.115000 null ] ->> -endobj -85 0 obj -[ 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 ] -endobj -86 0 obj -[ 531.300000 531.300000 531.300000 795.800000 472.200000 531.300000 767.400000 826.400000 531.300000 958.700000 -1076.800000 826.400000 295.100000 295.100000 531.300000 885.400000 531.300000 885.400000 826.400000 295.100000 -413.200000 413.200000 531.300000 826.400000 295.100000 354.200000 295.100000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 295.100000 295.100000 -295.100000 826.400000 501.700000 501.700000 826.400000 795.800000 752.100000 767.400000 811.100000 722.600000 -693.100000 833.500000 795.800000 382.600000 545.500000 825.400000 663.600000 972.900000 795.800000 826.400000 -722.600000 826.400000 781.600000 590.300000 767.400000 795.800000 795.800000 1091 795.800000 795.800000 -649.300000 295.100000 531.300000 295.100000 531.300000 295.100000 295.100000 531.300000 590.300000 472.200000 -590.300000 472.200000 324.700000 531.300000 590.300000 295.100000 324.700000 560.800000 295.100000 885.400000 -590.300000 531.300000 590.300000 560.800000 414.100000 419.100000 413.200000 590.300000 560.800000 767.400000 -560.800000 560.800000 472.200000 ] -endobj -87 0 obj -[ 611.100000 611.100000 ] -endobj -88 0 obj -[ 525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 ] -endobj -89 0 obj -[ 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 323.400000 -323.400000 323.400000 877 538.700000 538.700000 877 843.300000 ] -endobj -90 0 obj -[ 777.800000 277.800000 777.800000 500 777.800000 500 777.800000 777.800000 777.800000 777.800000 -777.800000 777.800000 777.800000 1000 500 500 777.800000 777.800000 777.800000 777.800000 -777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 1000 1000 -777.800000 777.800000 1000 1000 500 500 1000 1000 1000 777.800000 -1000 1000 611.100000 611.100000 1000 1000 1000 777.800000 275 1000 -666.700000 666.700000 888.900000 888.900000 0 0 555.600000 555.600000 666.700000 500 -722.200000 722.200000 777.800000 777.800000 611.100000 798.500000 656.800000 526.500000 771.400000 527.800000 -718.700000 594.900000 844.500000 544.500000 677.800000 762 689.700000 1200.900000 820.500000 796.100000 -695.600000 816.700000 847.500000 605.600000 544.600000 625.800000 612.800000 987.800000 713.300000 668.300000 -724.700000 666.700000 666.700000 666.700000 666.700000 666.700000 611.100000 611.100000 444.400000 444.400000 -444.400000 444.400000 500 500 388.900000 388.900000 277.800000 ] -endobj -91 0 obj -[ 750 758.500000 714.700000 827.900000 738.200000 643.100000 786.300000 831.300000 439.600000 554.500000 -849.300000 680.600000 970.100000 803.500000 762.800000 642 790.600000 759.300000 613.200000 584.400000 -682.800000 583.300000 944.400000 828.500000 580.600000 682.600000 388.900000 388.900000 388.900000 1000 -1000 416.700000 528.600000 429.200000 432.800000 520.500000 465.600000 489.600000 477 576.200000 -344.500000 411.800000 520.600000 298.400000 878 600.200000 484.700000 503.100000 446.400000 451.200000 -468.800000 361.100000 572.500000 484.700000 715.900000 571.500000 490.300000 465.100000 322.500000 384 -636.500000 500 ] -endobj -92 0 obj -[ 555.600000 555.600000 833.300000 833.300000 277.800000 305.600000 500 500 500 500 -500 750 444.400000 500 722.200000 777.800000 500 902.800000 1013.900000 777.800000 -277.800000 277.800000 500 833.300000 500 833.300000 777.800000 277.800000 388.900000 388.900000 -500 777.800000 277.800000 333.300000 277.800000 500 500 500 500 500 -500 500 500 500 500 500 277.800000 277.800000 277.800000 777.800000 -472.200000 472.200000 777.800000 750 708.300000 722.200000 763.900000 680.600000 652.800000 784.700000 -750 361.100000 513.900000 777.800000 625 916.700000 750 777.800000 680.600000 777.800000 -736.100000 555.600000 722.200000 750 750 1027.800000 750 750 611.100000 277.800000 -500 277.800000 500 277.800000 277.800000 500 555.600000 444.400000 555.600000 444.400000 -305.600000 500 555.600000 277.800000 305.600000 527.800000 277.800000 833.300000 555.600000 500 -555.600000 527.800000 391.700000 394.400000 388.900000 555.600000 527.800000 722.200000 527.800000 527.800000 -444.400000 ] -endobj -93 0 obj -[ 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 355.600000 355.600000 -386.100000 885.500000 591.100000 591.100000 885.500000 865.500000 816.700000 826.700000 875.500000 756.700000 -727.200000 895.300000 896.100000 471.700000 610.600000 895 697.800000 1072.800000 896.100000 855 -787.200000 855 859.400000 650 796.100000 880.800000 865.500000 1160 865.500000 865.500000 -708.900000 356.100000 620.600000 356.100000 591.100000 355.600000 355.600000 591.100000 532.200000 532.200000 -591.100000 532.200000 400 532.200000 591.100000 355.600000 355.600000 532.200000 296.700000 944.400000 -650 591.100000 591.100000 532.200000 501.700000 486.900000 385 ] -endobj -94 0 obj -[ 575 575 575 869.400000 511.100000 597.200000 830.600000 894.400000 575 1041.700000 -1169.400000 894.400000 319.400000 350 602.800000 958.300000 575 958.300000 894.400000 319.400000 -447.200000 447.200000 575 894.400000 319.400000 383.300000 319.400000 575 575 575 -575 575 575 575 575 575 575 575 319.400000 319.400000 -350 894.400000 543.100000 543.100000 894.400000 869.400000 818.100000 830.600000 881.900000 755.600000 -723.600000 904.200000 900 436.100000 594.400000 901.400000 691.700000 1091.700000 900 863.900000 -786.100000 863.900000 862.500000 638.900000 800 884.700000 869.400000 1188.900000 869.400000 869.400000 -702.800000 319.400000 602.800000 319.400000 575 319.400000 319.400000 559 638.900000 511.100000 -638.900000 527.100000 351.400000 575 638.900000 319.400000 351.400000 606.900000 319.400000 958.300000 -638.900000 575 638.900000 606.900000 473.600000 453.600000 447.200000 638.900000 ] -endobj -95 0 obj -[ 314.800000 367.300000 314.800000 524.700000 524.700000 524.700000 524.700000 524.700000 524.700000 524.700000 -524.700000 524.700000 524.700000 524.700000 314.800000 314.800000 314.800000 787 524.700000 524.700000 -787 763 722.500000 734.600000 775 696.300000 670.100000 794.100000 763 395.700000 -538.900000 789.200000 643.800000 920.400000 763 787 696.300000 787 748.800000 577.200000 -734.600000 763 763 1025.300000 763 763 629.600000 314.800000 527.800000 314.800000 -524.700000 314.800000 314.800000 524.700000 472.200000 472.200000 524.700000 472.200000 314.800000 472.200000 -524.700000 314.800000 314.800000 472.200000 262.300000 839.500000 577.200000 524.700000 524.700000 472.200000 -432.900000 419.800000 341.100000 550.900000 472.200000 682.100000 473.800000 498.500000 419.800000 ] -endobj -96 0 obj -[ 513.900000 513.900000 513.900000 770.700000 456.800000 513.900000 742.300000 799.400000 513.900000 927.800000 -1042 799.400000 285.500000 285.500000 513.900000 856.500000 513.900000 856.500000 799.400000 285.500000 -399.700000 399.700000 513.900000 799.400000 285.500000 342.600000 285.500000 513.900000 513.900000 513.900000 -513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 285.500000 285.500000 -285.500000 799.400000 485.300000 485.300000 799.400000 770.700000 727.900000 742.300000 785 699.400000 -670.800000 806.500000 770.700000 371 528.100000 799.200000 642.300000 942 770.700000 799.400000 -699.400000 799.400000 756.500000 571 742.300000 770.700000 770.700000 1056.200000 770.700000 770.700000 -628.100000 285.500000 513.900000 285.500000 513.900000 285.500000 285.500000 513.900000 571 456.800000 -571 457.200000 314 513.900000 571 285.500000 314 542.400000 285.500000 856.500000 -571 513.900000 571 542.400000 402 405.400000 399.700000 571 542.400000 742.300000 -542.400000 542.400000 456.800000 ] -endobj -97 0 obj -[ 808 888.900000 886.700000 657.400000 823.100000 908.600000 892.900000 1221.600000 892.900000 892.900000 -723.100000 328.700000 617.600000 328.700000 591.700000 328.700000 328.700000 575.200000 657.400000 525.900000 -657.400000 543 361.600000 591.700000 657.400000 328.700000 361.600000 624.500000 328.700000 986.100000 -657.400000 591.700000 657.400000 624.500000 488.100000 466.800000 460.200000 657.400000 624.500000 854.600000 -624.500000 624.500000 525.900000 ] -endobj -98 0 obj -[ 562.500000 562.500000 562.500000 849.500000 500 574.100000 812.500000 875 562.500000 1018.500000 -1143.500000 875 312.500000 342.600000 581 937.500000 562.500000 937.500000 875 312.500000 -437.500000 437.500000 562.500000 875 312.500000 375 312.500000 562.500000 562.500000 562.500000 -562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 312.500000 312.500000 -342.600000 875 531.200000 531.200000 875 849.500000 799.800000 812.500000 862.300000 738.400000 -707.200000 884.300000 879.600000 419 581 880.800000 675.900000 1067.100000 879.600000 844.900000 -768.500000 844.900000 839.100000 625 782.400000 864.600000 849.500000 1162 849.500000 849.500000 -687.500000 312.500000 581 312.500000 562.500000 312.500000 312.500000 546.900000 625 500 -625 513.300000 343.700000 562.500000 625 312.500000 343.700000 593.700000 312.500000 937.500000 -625 562.500000 625 593.700000 459.500000 443.700000 437.500000 625 593.700000 812.500000 -593.700000 593.700000 500 ] -endobj -99 0 obj -[ 489.600000 489.600000 489.600000 734 435.200000 489.600000 707.200000 761.600000 489.600000 883.800000 -992.600000 761.600000 272 272 489.600000 816 489.600000 816 761.600000 272 -380.800000 380.800000 489.600000 761.600000 272 326.400000 272 489.600000 489.600000 489.600000 -489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 272 272 -272 761.600000 462.400000 462.400000 761.600000 734 693.400000 707.200000 747.800000 666.200000 -639 768.300000 734 353.200000 503 761.200000 611.800000 897.200000 734 761.600000 -666.200000 761.600000 720.600000 544 707.200000 734 734 1006 734 734 -598.400000 272 489.600000 272 489.600000 272 272 489.600000 544 435.200000 -544 435.200000 299.200000 489.600000 544 272 299.200000 516.800000 272 816 -544 489.600000 544 516.800000 380.800000 386.200000 380.800000 544 516.800000 707.200000 -516.800000 516.800000 435.200000 ] -endobj -100 0 obj -[ 458.600000 458.600000 458.600000 693.300000 406.400000 458.600000 667.600000 719.800000 458.600000 837.200000 -941.700000 719.800000 249.600000 249.600000 458.600000 772.100000 458.600000 772.100000 719.800000 249.600000 -354.100000 354.100000 458.600000 719.800000 249.600000 301.900000 249.600000 458.600000 458.600000 458.600000 -458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 249.600000 249.600000 -249.600000 719.800000 432.500000 432.500000 719.800000 693.300000 654.300000 667.600000 706.600000 628.200000 -602.100000 726.300000 693.300000 327.600000 471.500000 719.400000 576 850 693.300000 719.800000 -628.200000 719.800000 680.500000 510.900000 667.600000 693.300000 693.300000 954.500000 693.300000 693.300000 -563.100000 249.600000 458.600000 249.600000 458.600000 249.600000 249.600000 458.600000 510.900000 406.400000 -510.900000 406.400000 275.800000 458.600000 510.900000 249.600000 275.800000 484.700000 249.600000 772.100000 -510.900000 458.600000 510.900000 484.700000 354.100000 359.400000 354.100000 510.900000 484.700000 667.600000 -484.700000 484.700000 406.400000 458.600000 917.200000 ] -endobj -101 0 obj -<< -/Length 14262 -/Length1 1854 -/Length2 12408 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMBX10 003.002 -%%Title: CMBX10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMBX10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMBX10 known{/CMBX10 findfont dup/UniqueID known{dup -/UniqueID get 5000768 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /ZOXHGW+CMBX10 def -/FontBBox {-56 -250 1164 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX10.) readonly def -/FullName (CMBX10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Bold) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 86 /V put -dup 90 /Z put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 58 /colon put -dup 44 /comma put -dup 101 /e put -dup 53 /five put -dup 52 /four put -dup 103 /g put -dup 45 /hyphen put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 110 /n put -dup 57 /nine put -dup 111 /o put -dup 49 /one put -dup 41 /parenright put -dup 46 /period put -dup 114 /r put -dup 115 /s put -dup 54 /six put -dup 116 /t put -dup 51 /three put -dup 50 /two put -dup 117 /u put -dup 48 /zero put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{=מ7ڄĒKV"~Pr-=L$wcrlVcN &'{%Gf#ɨ_i#SXd+U*|:1m=⾝~6/aGLf#NOS}ERs{[.-jj|tm\: x8PbPh[_9t237,I2B8J0msUWQdX!??Q4eRH ]ӊ.p_?8:o:UuDZ[m^/a4l4ȒtL<~&WwLa9gPqhQΠjv)]sqR"ЯDž#eZKPHrF"tw;*l5 FF BW1S!2*`8:XlUI?[wc &Z`ѩް sdHeF'*s ЁTd9Baऋ[a$g1f\0 7aR^(Lj#!mw2#nr$|TL]{X`4.Gw|P2BgܴwbkF Nfj;d?#l"+6g{* ,SQ2&'n\`]Q:ݹ6ln0b9m],/ڨ\Y$6[+UE#ƸMO( ϲ.DL\*@z3'&Е62%+(k`D/k(ɒkpt`^Bձ\H~Y_˒c%~(! -Jvs}9qw{6sΓM &Q-p'&M&7tZ\r|5M5"*<ΕD,Lfj+ʾɝ"x0h#u[@}"փ -dIE* , j]v.tx kEYl}d.-eJ C=KD jnI"yX D|&k>ixbu?ѱ ,VszAc  G 7H`Ď'Ķ)r -ҎG֯Z~C -U. EC3}henħE!C[xxnCq##Ti.iW/i*?K`ɞ}g;ο@>Hmn91-[ tj7 3Myz,?Z@RPBi>vVF\Ahko8*NIQv94z4m n8)Db]ٞ>=e3Q-'0y#JW 0݈7\t53=μغ|[R>5Ir xhhy!kVSȮ7I ThaToɁ( WdsUI=]әM|dJ\YRGy4d(N{"l\ ]kȮ8V -A==r V^*mx(e=\ʰ!Bb8йX ֙Mاi -p)r ~1 ׏<;d,^6f,PpΨ|kR87>i e ^NҢ@h`[BF,L%mUBe*$nox3K V$[[fU;4Qjggo !%Uh(ԝ 2ן, O[Ј_\?Wt<ȅ/; "Rm®)E\rW1 ђoy։)B̊\@gJ?m Eqqٔ84^Da97 㤸{ɧZ!_`-rlُ*qٺ؊t LCg -:nbJ Lqrj5^9NRVJ7en%ϰYƕut4ƸF΋ėvQj6%c#~ O e҉'aS1e F u s^i"yw,~ C~Rƒ`,j"+ȬKk Q5IjEbT)">wv|$.4*@s? -ipb\r 9AZx; -~c/Hϫ+%Bm-7 S2*Eoq;ջ/6[ LoT F>=8$d�otu[QEU!\ސswE6W׍ Q8 < %xl& -~Bh=F"2\],ӱ@re(lF*ŊY7ٍ` pS?%i|ˋt|[b<7M=7snѪw24ׅd/bD~[)g43G&/pN%;t :p }wM/{ Ϭ0.bj!Z@< zyl)" KUmoҙ2c})z:<ۄF oŃGLyT7;$^>,Y.Fܔ%Gj,&U&S0Sg\+h8.!ɧ?4}+dC֡;GľZ#AeqE>RL K@$|DW/PN^Е3*0KƷ)}JMg"$58_gCs2C7,K՞?λ)效4 1#oIXcP~1 a^46Ӕ)jOa a ^oy^&9ߗǫ%<mLLN9y a)U)D.?9f4R2X w#_RzZu)q{ 3hSߛPDŒx)8%֗Q]9 rf!:wn; @AK ?gNq48)ďT cݨRSK:k4S};3<ʵ< SU^΋opf"5@A bq]W*VOMt,Sg__]0-GXz+G|f_r]EGaqۜgm ]Mnv(D/LbdR;G??aJVTy^ۭgm~`Z2Ј|{AJcQR qnd(ۜyoD`TJCHzRaPהxƜC@Mp<[0?e;ZT+R[kgϧa"q^b *r|::VNBOUzHbaGDH$6$4tLJb -INIC֜qa.K,ƭ >Cy -l7'mf &o1:i҅u meNπ@1; BB}Z(P3>f`mwyج]}L0qoJ 4VCBBLx1s_(\2ZZ. -G?eu8 3p8Dq,ƾ&[3M st/ϪT ;C;]DDu0 դQ[=zʥP*KCUqk#?k )M GRWI "RY7Wư0+@γTNT?aJxy~8up| ?5$[)sNd<#UM(8 bEQHt.f6֡U3=a^~C]䨀2"nC_FJ82{[c1 fXɉ{IڅF ʨ0GON :bպF3ܞ_(8::`xyVZ$݊gFԶܛbHQ[Щ!oݛ "(4m;>QEW;+/f|<<*im${TL֝*\!1 -m~8aeTpc\'gխf7!%;gNs(rkӝQ'1r4ǘKD^Fy@zEoUd9YBr?SU8ܹ/]~CINp`&$/sau:2]zDt*IWbc|[1y@H וOD8R8BŮ1$CG?jMt&Ic7t!DG5RyXv[!y#M+^e+i@sշu3VN4P{iSъW3<9xbt3DB^(x;OL#Л0ٚ?xNpK<9V́`Y-Q? ;~f㸓$oW6CDaxdU/a65bnof=7c8H%蠛 sIn^~L7 Bz @ˑ>9YCFF(<T^ɨ)aI=X4 +@;TE76c,P\R<SQ<"%;S_qy j8~%#Þ %~;QcK B-|IeNRQʡ,`_Mc;0]bv8V=NVč"lc;Yw=ֱ3r~STw.f7 qPa ;9ܪy^伜DmG ζS:e80zm$k}$Yµ}i^,i)c/^vŲ/spMQ*S*zuA;9-q)žl"AV^:QgNrt9ѨJHmhDDg@e0AvyI }^-Fh>0jƜ;,~$.U.y XSG %Q|Qj~3wE0 -$pW={K(]WKS="K8OQEw%~Dovh<ĀDDIv!PQ4dҺ6*1d(G XY;e㡒]/5n,7SOD^"%Z%Ҭ4I:66Dqոw}NҪ_Պ½ iYJt`'K>"ɕD{^M0I()IB>ZlL3Z*膒jnZhts280jOXUm0n<{Dt\5`"X"g^)Ǖ\= -fN<ﳭPs*s5B P\l$?wW{֧'0[5ጐQ^/=|8/Rl5IGLk!cvIupaa{|&3C;Zzj1|uArǝkmZp9r"BhUY/sHqm,'ebyS Fn"8~(f\; G !1xaST\Hy &0zc-#>ރ >uUcT\o髚ZbY9iv]̕2|Jՙ5ÃTI;-ˋ:XnDio_ \JO_.,-"~ 5BUsWltAP٫"2CT"[E YDz'{?ѩۍ)_6%$R+Gu_CY'kr~)Þb1u2k6 iJfawoؒc& [xj"e^y`bJh^tQat0v0Oj%P;?a<J,Ewz*PZP4Xӊ1un\Z܈ `VIs#衽ep^Oę^K}>R} #RL*oP/cvrneȍwS49 gҭZf#*QL5E&͑*Pu\&Z ~H?RyWfmKK0,ksy}5bH ?7&y8?<.u(#҇/d:y%ʉ +vg=?`'FG.h̶@[m\k7jMŽ靈@Rt 'ר&{>'[&ʒw< 5%9hv z}a1U_X6ze?PHu;%$<9N=BGϐHZHlDD -g!X;E*Tz^ .殾򳿃x<#ɴ/ ސkg51._^x|'OVYLN{q 4μVJWP+cKfO7Ku#Kl9xÕ%qRdA5=A#GJ۶ ? pϜ.|៣!ZV"XBu-:?s -p[ KIw^-Rئa:UGYTCYʛ ņ4 1Mhߗ+\,|jTpY:JE!^qy%IC 0~u2vA ;<1[ ZD]gq1qtv`9%$CBvMdLj)䥮?VXT{iOaJo -l"JE;-۰\.KTodp=y%?3ymW{l mtcMXa;vms >|A#X$5m2AӓHvw#q5;'bDishwi5\V;GRҕh. ݷT>ȅ0#y$&x\oӸJIg zDނc/JsEm!ųSASj|-tBn -Hcc/n* MxAXJA % XXZgP{]F3  ASy}\ U2dPDq)AŏGTSs#ewJg;Tqf&WV8$-ӵw@H>[1Å -r%[ j13wgVI.2ӱHP#)Rf?""u.ʳ"T4!k:W⎺x54͛Bd@dB3Y"KsH,zPyJO2 4A??R,SxX}(-в\Vt)XOI#djhsZ@9WtLb%bkd!K x0"Տo!1 *zJ~.s;(a}HYS-7&X) /(q.~4S1YboR L!G\|QeY~Ö܆+G3`%{k$Ia% ?dr,6/.9*Uxksjө~f( !pXreza?6;mݘBt~Mu !RJt !U}s!zgFWգH:FRc.κWSKuk/?GC9¦`/qwmAЅ|KiYU&pWpn4ˏ )lT'Ļ_ - E?uM6|gzS_3zf2m&E075S `qu윊C^\݊ -2יjfhFv'-x.k3`36ډ{2s=6+9 Eؓg<[$RK׽HepQ&h+ -&~{MRc - >q4ʚDtn`-^ѥLc6ۮ%5sU;LqHwOShs򢖏hiTe<9*x3MŞт]V#9Wīo?M0~#zc $PbrS9r=VU*-A+G7ce͕J~$d.=X*8i|[ - 5:*?5gJ6QdIQ@V -TZ{poC|$0Enީ~1E戻$3Cf,dzx}Àx9z;pIEK@x֦y8*?O`S{#rarkQÈHŇIy>ֆzUq!hlxukN7_7egDLmڏ4p(O c.AJqiپŖ -{lǂ)O,γO k)u[ȹ?JH0׷;iOrs'R*L!ٳpET8\6>^A⌫#0ƄT"i#j4°:?Fpu^(KBp<)5f |0WM sp_}<d^YcX V%J-Ҋr' }5;* 0]9+}ֺq\,WqSR-.AA\҆~_&6ỈM[HYQ ݱcTi}" Lݐ,C쎾u9R T| cI62 +&Pu~/ʚ߽6V'0 y%MMLoux@bפi6Hp!r6IW$$ےw̲秾/:dr(>k[ңفAǑ]3Y ogRfFۃ2†{3C/>b%>)U7eJ`٩B&8֘`ׄzKvo3HQa/R8 -t;.liR~שcq~ 0hdhKȔ+cڬe2o}&^\RסSfFBlY-9gU>fBME X"s6+sUJAIDl -Vw렮;P? ^QrdЬn<RwNaCvVE (N=e,u\ ^[a~ :XRJTfi[b0| 6?y:7SoRa|7J]a_yTE7_c91Ώeؑ]'|l*!$zy#2zaYVۘTJ:9͈o_z!Sإ(PoۤP*b430:}bFZ\3C%(_y - ɬeT$5t7b1 qF9[co} -!nr7n> -endobj -103 0 obj -<< -/Length 13810 -/Length1 1912 -/Length2 11898 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMBX12 003.002 -%%Title: CMBX12 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMBX12. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMBX12 known{/CMBX12 findfont dup/UniqueID known{dup -/UniqueID get 5000769 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /OLUUSQ+CMBX12 def -/FontBBox {-53 -251 1139 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX12.) readonly def -/FullName (CMBX12) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Bold) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 65 /A put -dup 75 /K put -dup 80 /P put -dup 82 /R put -dup 86 /V put -dup 90 /Z put -dup 97 /a put -dup 99 /c put -dup 20 /caron put -dup 58 /colon put -dup 44 /comma put -dup 101 /e put -dup 102 /f put -dup 53 /five put -dup 52 /four put -dup 103 /g put -dup 104 /h put -dup 45 /hyphen put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 57 /nine put -dup 111 /o put -dup 49 /one put -dup 114 /r put -dup 115 /s put -dup 54 /six put -dup 116 /t put -dup 51 /three put -dup 50 /two put -dup 117 /u put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{Jf^ַ>aq4!<_CцcQ%BlS71_ -sQzԜr?ktP2Òl(?69~'@2bt[{ax 7}Gn[TY>T#a1h!;`WƮk>Kj̱JzNc?^<@ qTud[eюj:JnK#2S[ŝBb?̬Mo7aa'gP:δѩ҈ dBd|IH^wMe#DD13W.J.6׮r(N #>Zjhɵ+Uw -$\WN.C(V\N¸3A?l_sMP yfSyֿb`9upPȐNur)L=uhՂD١Pԋ^} --zU*3~HwzQ:.cxv(P}F>48zeU+Jk <>,H~^U>~~)9G-_+ԇ2miΝ1r>Z?ώ8PZm#meDPњ69v=hE_X(yN(9d5p7LZC~ld1:/ g!, -}Q+93V{ QlG 7!;yq+ JA vj/rڜZP)4f+OpX_t~ 5[RZ$ҹ=#e@K*WEt_-J bΣZdh>xNpsGLOh>o련J;J+\m -J6km9"N `D[ h6w{Ac<=ޮv}PC*|sAחfK+1!Sn~#_*]\i!Jiq˘mJ K fy*S}iGV6wa$mv<zZQ^L0NRq!*7uLO=b~_J CI?<5 T zs}uL`M؀"7K 8yO {|v`).D3K$ ,3sÝDRT c2쑃%yD\MS9HQ՝rfG^\55#v[Yϴ)KS^~nMX,8&7a d$ݕ ^t/WyϿ4QK{)=WDd>oeZpٕi-e@PLb|#p"6KLPXzbZc})%LKfO2ݮ (NԴU-eru RyTkl>'H 9т-)u -u+ld4zcLsTJ[:v?WNM* NiLffF/? ̔o_a! Bt]z\ޔR/r4MFwe5']ZPp׶r?PaL'- -c3G}T'ڡn#^>Ҡ'-ހFwMOTDsJQ{ T޾2VNsҎ%Bh$,>oK"Hϯ 2BU7'J(Ǜc1PIݐ.lQjF%jP -1zb2ɮWM+mKf,"/3~į;7/7=o-R%nJB@n6A0hRF9T {(&$߅:hMj %FVڈGv?`S::JepR̶9y?O_4:╱bEV]1Vb,"KoF0dba̟f4G^̬k({: -]-eJbc?hs+΢_sS,atyir%F3gދ&M}ۨ3Dkh`\rud>;iA_ -oF_љckNԋn`v)2ۙ$# 6{⮶\FvUW l -%x[gj6~C "^klCy%)%nWFO/My~ZqiI$CT*x])it4ZV]m剁VO)gi -%-JUƠ[fTX7/.cU,h78M4 z9:̳jmrvP# >bx_Løğ y5R@/{fQC}d~r!4ѐfPo퀿M+^',6_/W{h/њjS}Jz sնj ޳~zL{qA\Rh$):zNSJLyj^Ĕǒ)T~KZAP0JP~(>~9&åv^")X5=hN҂aNز%1v1gv?467H!NjO4پb夹tFy&{wQ[+ZJq -+@ mn,jMnEfI m RGUY8šNK:]ĤB!N?J'A.k{c㣆+/lB~z- NWWcr酉?V,d\$;tTR%M8DLsY{D#4 D{a\j;$ndʟ'KE 'p a_C1daEE4"<[ɬ}77%غk/2Ik'wblZqq@`C,6|U[2ǩ{{_W{l[(Eㅐ&K!.0t)f7lnMwX< | w2#:|м6ޡ4Hkr~IEmvb,[xY@rL'3:`A7C~X+_显R#GAVt]Dd ! 0*uzbrYN%gUX&h͈6OW2^zG iNΫyf_S">.g`B6G -BdXXE}텅eW_llQ6ioF<3ԙZN%Q^w݃{&E:k= BI| -~ڛfKikx zm 3ٳ~mk -R-rHsډZ嬪.]]Mmјrx{%u_p[ -5~`31>pajdoT&]J[[@ǿ&#F8i ^9<we+-lBdv>B2p["j FSoa9"1ܟ`IC"9²xG@,ty -ďuo1H?$YM;oia=ۓe%[2Ax=7rܥVBe[˪?常%,Ƀ.$nYeWm!QiBԘte=L@&j*ފS3(W{kϰtu$%#!>R=k[>u>6ӣVϬNld>&VeR^- U*lY `s'ӕ)!-@;UIuvG*^ x8gyyg|)t#$ X0fمNWz M< t>&+4N%J"cqx=NJqҼmWҾ07js);'S] 3l i |M YL*g. /A|]Z;wĵ͓h'A4@@`J jٙ4JՎ$ +&G[A[8f i+o" I -{y }$teӜV o+m2\\IؘԏƳL¢#EadIOUOxA5>.ыKe=0@vJ:5bj̊_[,82 ޭ@J\rL8gy8i{CRᩞuG/W{8YDL?͏$j5,;ȁ|a쒤HPP8) -^NZ卯9vݑ7ᚮ{V^sfpZ~rw;gt$2 aڰ(iOd\Bvp - -ȑJrʂyyl -X!.X_K^?eT:C@`&nm/h˓n!HcC -/q(ހS2ײi@/ʤ1=ҙL>Dc'4 -ks)y.*%'vvGT3lz :a).ERex -ycQڅ|Syp| BN=9;+ 1(H-F/ fZ2dMpDj̖ߺB͞Y~>/( vk?.LpHS"'Q&k]]kQ7yZ #πYD}u #gŒtH,V$_6ڨsS.*U| DՓPFbB*Bu4ZB~*j?B/&ԌTފm奔Bu7!j9 alɋpwcsCpiyaJ: D08b>OPW@Yߔ눚( 32Nͤm*6p[Efw(`߬S_Nps1m5 -oHrcG٬R %G "dC*uIk_o*;tS!i0 (T(4T!8#Ʌj#([:۝ -F_p9WCU NZ|BIw> vu-OaO1,hp._`Øzq*~*`@׊V_^u'¦l.OS -&[<\FFl(63_Y|#+0 {XރA가o3) -?#n~՝@$Zb нW!7.Bˬ3~,X(yy/'Q&" G]TqiNąOt;|cWhP+"rˬf3Z3&"v d*M8d=*bFb[ -:oW=iJ`~mT0[NBmo-̡u0`Y$:!9^`#'4iΛ_6ƿŰ ٵdط(pɭUIrf~2jކD[[褔J;E&y/:x*Ɗ:6h|}9 6Whf-AOۇa|7x.eͤN M!LY;ƥyW`VNbw ^ӯPϋR%JZ]^Ffշfx5ǎqVo"vJV;#W th<ЯF5R IjyxyN-A(XʞU<Vh+`lqki;zҁمS~g"J2*6P+ ;dgh,yo I[7D%6z9(n-H;::;햋3@4({l q[vL+x$9,&TPRIa0u R\ h͝燪.O6#BtG -N5gL3A}R#^Ag*)jOxV*kBs _bklAW4:"weVZY -Z?h+LDiAں };(@!@x$Es_l.þ['bYe K9e"VWmoIcTY8Aoz/uc9&D 8Ua4/]aX1b+ZTž.,⩳Cql9NT9xaf-ĴN*M673t䏉s4z,O~1>ǿU]9WG . I#jFCY8j2[lk07> -ޒ+bWgZ7ӷfXWv]ȷ0$}:ː}7e&j@',Pt(ϙ o{;;S0}.LXOGv}Tg%$zB )'f[h9ʿ:{b u/4vCi(ذ y JAqb.6W*hkNrh|#ƷA2E(qhIsf -qZ$T4nj\|2a -~NT׹zKgd; B'LHRHB GL 7G -7ݱ= XJi]A&MD6fJX-3^s -ڮ H `hJ7D/arūR +oCEb]KNL~ -랔,j':q;tC- JB̚zx*5%"3=Yn~br†& :1DE_綝?,g'frkNJbCGRp\amA =vx"Շ&mS]TޏeG[W*M,pEgpK -5z%ݺ&L4Y9L6Yl*gg 1kǔK" ,8!tc$5#WbxwS S jǫBׁ$U>߁<vjعxIvn{IY$QDFh67ƮEv.cl6<•ؕk7]i}99c!_JB_W@Fi}UDyNCCVyɬ j,$xױmx4_IsutЧ}9ۧ >:xkaziLD%6E/8+y>}Ev?&m|A$%Anb!(͛ d,uT’QX@V C1#uy97p lkˣ_|~xi {~HZw#DbҞxn͞)g{iT#0`ylڝhEx Hܫ ~\2S8&'X:/t*%W@:n*cd=?X 9k[# -kQ{e"HuARulm&{I\Swe3q٧[A|̋K(i~1J7kl.[Ȟjc~A_xvFU=Z%TZ#]Auq~Z?j)ܴϐnZ"=}a*diQͧZꔀy8X6r'_{`c Vh -Jy=ܗ”#5Ivꮄ p9>ǫW,Gb>H (~N7?4]O ݃S#R7…1#[nY`eRwL5<K!PjirԳR>tQ^ \@o:37Ԛihɂ| a$Ӥw`Fk:jfc"φ$ -3xX`ɱ6;(=%ѪCI&Ò&L\󥫀m#~60(퍃ш̬‚CÇp /'<;>z_LIAB?ܚ-GvA-0z\.V9Hэ6 Hfi.ZY`}6Q"n4T]Ä6!%ul蹋*O]o -b5oB "*Gv^P/fi@W`^8K$_>zflX "jWjͤ;Lc3?u5DY;vҡWH_58Ȯ&f*0,(Oaq! -Ql fڜ -Iu|&fJj_# \ˑ],-<ΗPY]M+ƽgӨx@>{OD:[rJ́;3Z[@ ԪX{qw9FQKRzx#5|㟂x3ˀStZ+9!1O$zV!\.q\3%IO}*@D}81|A -endstream -endobj -104 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 686 -/CharSet (/A/K/P/R/V/Z/a/c/caron/colon/comma/e/f/five/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/r/s/six/t/three/two/u/v/z) -/Descent -194 -/Flags 4 -/FontBBox [ -53 -251 1139 750 ] -/FontFile 103 0 R -/FontName /OLUUSQ+CMBX12 -/ItalicAngle 0 -/StemV 109 -/XHeight 444 ->> -endobj -105 0 obj -<< -/Length 8318 -/Length1 1451 -/Length2 6867 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMBX9 003.002 -%%Title: CMBX9 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMBX9. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMBX9 known{/CMBX9 findfont dup/UniqueID known{dup -/UniqueID get 5000767 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /HJGMPZ+CMBX9 def -/FontBBox {-58 -250 1195 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX9.) readonly def -/FullName (CMBX9) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Bold) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 80 /P put -dup 101 /e put -dup 107 /k put -dup 111 /o put -dup 116 /t put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{Jf^ַ>aq4!<_CцcQ%BlS71_ -sQz5>?Q;8F}Q|-K,}>PD -65~`dU6+[\5тqFB>ֳ1^;!'VQ!<$6jT&UVDq~`XhZwU W67$hV%tj6~h<56{O.o"Fחlai!N;/ie L5sh!YB yֻM~|M{\B3ևxYXިmHo%l)CKFuԴlY~<,&Z#^gx'6wB8IWذ~D.TP>KoNzS6=('a`T seSdDVzL^|kb=yjaI>Ř(ץ4^? 'Kn`4Q9 . `3oh~Fq;zJ50EPX*ƚQ 㗘k4]aҡpM9\l[Z)uƔT\0kebIA;/{c Jn^GkgQ0Y'ISD;A39 h?ݦbJU5zw jpJBUY{e#Fws@rISp^YoZ|5h2*لEA4W?|PCx' А4 -v0U'J#oqӉY%egg|* )SZo8r;8Wlv"r`UkL==~V -X` -UvSw;8wwH_,^~q\3[l&8E};`Zګ)HZ/I ;3w -h$j/z/^,_C~A7kpRhbK0sQrI;YD4u-:p׼V1y&EF#RdȷnfNEzfL)3xg23) -pEY%NXA@WQQ X$r d7UmwK6+2a,n9VbA:)48z>Im8XCهLFʺߦkg'f 2 z?qe3?-&1VKl/>4(5p,Jr6`pԚd׌^d';@8]mB̾"D%i-{tx*yt:`Z]K=.;TƪXmj nѹ5&.F~P]^7FoQv3:2rHS7!S5ŷISvG0;=f/bkl9d n&CO l"*e@n!6}Zjou#|)f*,E^a(, L Ah_ȪRlgYhaƐi% )m`RDӇO4;X @4chC.4Fc|E-5 OA)R3N{o`aYUrBs-15s܏i%ZY+W;/J"u;DgI x9"rwh -Rʊ~KhR^44s7M֒kL%vOqT+ovlo\+pm\gw٧Ӡ9_8i-d) ĩ#CM# h8pU"w.WV:ʠǜOc #%^oFxEkl ȃ<6wyh[$fuq%_Cn \Ȫp#vMժd2 g jRZ,xrF8P<(F`~W/dCnǗtPf"'nLCeJ59&yۄe^OI0\^PKGd@2ʨ󌱇lW/rZ\~ldB (#o}HZswHo܆0%oE=pdK)d/gYR[+7! nIw8 MF'/`6-d9Wt{`>P)$w>]{ _JJ[|aJЪCWk΢gLs 1/U wwKOwZoYz8gʟ821ZYYK%UW`ߤlP`B?1e1 t߭c`jD]< j#Sk@_6&"|  135~j5jag+PCTo+LxI@UoW.0#6!$_ȧ`r{s{] - ݤ"Amөe~]i栛ox;Ģ)Ąv{ԒNˡʀ8z -D4>uqlGmt -ZбK`4ҳWL d)yZd\m:췋s0j -dɎat@әV$Kas)~$8+\[)K9+%?< $_nRnWQ-U*up4Š[i}H=`SUPa{0'QW^t>.9Nzlc [=ˆ]8D8"QL wek\/+w^8 ZLn}69α$uT[e/DjFhGČ3eWfTf!>3rn_&kJӍne mW%q*5sIsoVgoꡯ+EƿR7ll,#4~^$)Cȗ`P{R!0K?.&V퍗#fRG/0Q Spe,W4`W16 +Bo5@.{27qGiʣTjzpGrb`Bn] 5EP£*Ӝ-f?75ko2|pwleP iאI͒wsz;SfT`De/:M#,N C@Xrٓn_ʴM[H-f4#u/VNy\#x[6§4̷,.aI-D=(Ao.Q$-q 4rh!-i vfrؠ%/^ -)p*d'D_mӝ>lC~t/a$Go@ܞ+A9IcU!}pIG"RU)صJ@uІ`YϪCuJUm8*8>B -tk1@͠YlW3[>[6&pCKƣ܉f&N0]X?TpP Y,y簢)4Ubj"fhEWdjt_8 |\YNeԭ5쀬ы; 44Ye*C#JahT+vX{\6))rfESд5hsdU[YJ*L |og9w>!>C4?m/.q߉K|8R1!>ȱ:& Kkq h!ʅƝC4k<ídqaeX&Z;SRMsh><^.9٠3n5% +YLjQA4OV?r%Lxє*g0fLjl}Xl:D0_.4w-bm!xMᑘ]&(3CXjȃ;&t]ÈjqZDU7er!]i4yp;3UX@ae$ qvPԨ+ z,wK}YqYJ)vz!z{4_DI䃛0"Ɇuwۡ`c&96ûm cٮIkb~LP)ޚ^.k5jdK⒣x}=%c^*f(rH?g@&_M\lכ(Wr;En8zu*sWKkjVxYX9Y^ K"?gjDg% 2v0Zm/,P10kIm?~g⎌ȥӨ3 7pmĈVR\}>r> -endobj -107 0 obj -<< -/Length 9263 -/Length1 1495 -/Length2 7768 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMBXTI10 003.002 -%%Title: CMBXTI10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMBXTI10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMBXTI10 known{/CMBXTI10 findfont dup/UniqueID known{dup -/UniqueID get 5000771 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /FWTCDB+CMBXTI10 def -/FontBBox {-29 -250 1274 754 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBXTI10.) readonly def -/FullName (CMBXTI10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Bold) readonly def -/ItalicAngle -14.04 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 77 /M put -dup 97 /a put -dup 101 /e put -dup 105 /i put -dup 107 /k put -dup 109 /m put -dup 116 /t put -dup 50 /two put -readonly def -currentdict end -currentfile eexec -oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsPKyؙJG}_t9Ob1N;rIoF R q] s%ЄO"HVt7b6U)26=q-SʱEzͪk|+$hXz˖3{{c$rПpP.%]++@^+;@gK -wUNKF֡MӋJ . yZ-c*w`~r-w@BS|  - J`Ukj -֌O i3$Z"|u9a6s-SS:s$ db]\±6CF s[~6C̸{2 0~0 h:}e Օ]T|:rCF Wݞǰ\0J,,рhzdE5Úu@ ;Z/}o--mASDw)#zBy7*0/YJ Yd;Kݚe; кn%VeK_ݖ wA/J -> wg.+T]׺g&6r 6]{JŇ[l޴$Jv-ppd33r'(:9F Z7_cVn;lWɶu$ݗO0'Fi%o(7ǔKdZi]ɘZ`C>>$VؼF,E%o`fp'֬{⩅v$@A@]eԈ"BTQ*OQ)2:r@70' -^e &,JaR)x=*} zp$x^U*froIb?WQH7$B("O%;G\/4$(ru{jE%Y͞t'T>t*NZ-FQlr1jJA?9n3=Z(?t#/[^Yu*éQ'$J#9-lc85 o@ E(2+?8n){.OqBPb4(2gF^%"\FaFG ,(?R"w/Jo"%(mEC5zrk[ku}qUCol&7<|!E"UqZ KN:MjUkJ` lB6pV$Ѧ)K'ޫ/:N1P .f>Ԋw'#>}=+fHSg0wF@zNl`^ L[ժ85OO3;Htble4XF"㐬tt -5txڬStlG\8<%*9ٱ\'0/&%]9ɜ/"bzW7ś4.vLL3Cؒ$tؔ3H'-Mһ6Ϥ9w,yi' ͏)l{QCp$[Thݵz&)Rۿ(ڒVv\2f].g<.6ᖺ)NB̨RU"b,ސUwÿ!`dUӿnjPmÀE6XP!=` :Z BSY1CIᓽ)gF sIr>%8JưuD[7z!qZzަEzŊRlG_M^,򤪄RԔf=-:rỴx_ot-K,; xBh$(m!I)K "ÜfOq+ QA~BB3[iiFyښ^cE~eRpzZ]&7wdAд6h<sͷw-ad<l.<fL).'tT*w.n^YOzr0;oW*]Kf}QGB72vdMsGi!'J|+}[VYO;?2Mf}]0v(N:ZrZɇB|vl4x4|hirht8EV'pSjBzkf6d>P|1AA#ĤC{h.ӂ(PH@&hH/a :ko#;v9L3-]*xFA@4JUKAϼr/.gsIi:PК!d4*ЃL6|;S3uȣ[qk' Ƣ)l4+ $xP 7}w‚l6Gڒ)U-1ځ?'A6ޗoQK(ļ1E6˝A\wҟ@8W^*ڗLQM(:Fc W-l~bJ B1 ㆜~vrݳGvHb@,N.jT$D5葓J ~z#U^߸p =q5K[j5@Tnխ ._}m{gL$LjEU԰TN&H啷snr`7^1dW! bz݂z8{ׇj}\zU*GDEYs+)̪haQKE8iC4Sp{PK>T&cB -CTه C̚}`y8E4yK.G]=@/%sjYO>lrK\Wɗq;z3ݢ(ouݭ@E'evKw -$p@@x -,6rP(S4#0-8c<}C2A:ӺC]3ꪬpq|%QgdҤ n})N=WR)FxX`(F+[N´N:yRC_ن а@Gߠ/Eu ɚa4*B kڐhDC,3O$]f>5eJ٥4YqLlp8'N:ݶΒtAßYs5XCU Vr>s+-AՕƱ%%Eo'a Qưn22Hȵ\!_7% (^|VI٫~{gN vRSlC)'r1YjvtDwa|g6ɈM'8j(9]1V[FP}^@YYL JAD7m7jsjQnjA@2}מg#+=\y[ ͍ @*d_Wl6b@ٗ(/{MP1vXHZ)mZcz(#gDk\8:Dl{v7 $Zq˶?B#{z{TTC5&0;uo!Y:"@ϦCK9c~.Ղa()IBx ՚<|cqn7A](6ѻgwmNP/@~3;('{83W*CѴKE[wu؄qND0c#^Ͳ2qewNKZTs?x)xaV/T[xH~ovXu]z~'ՙi})%Bnh[6h{:Xߙ6s bJ/;-!=\dGOztMm\eu-r4j~5yy>cߛ-Je%#--tD`%:ɎLF㎹TAV+7сYlvr}ɮy53N„Ɍ.=}4Sm 7櫚+ݴLNQ# -l " -F tU1ȇߙ^n 3p|EDSng[2Ѣ,wÿɫ .氢Q< Qxrxe#UNP -d.c,n Ӟxcpg0%F+rIU)]d^[V-Q-c!ȨNq.{/(HH#W_W?֞t֤ȤYvgZ%ŰήGTO!moB -xh"fY BJO0yFSc1}A33\ -EW7m~'W | > R{Jg;ocŀ^/`wab,D2}I7BP)^OGT#sp ai\u!.5Y_yd'.eb1ޫ|]vPZ)Y=jXF^I;0ސ=qY[J;NYl F3<$X*d&z6136&&5;U7DECiց 8;a f[Ēss{N/b[Iv}IA FRR|돠_+J0,j=F!G,ּ~1|'AWv䭖ǩIVe殹- p8{cnNK7shy8ش`K^@L1ܢ!$$J yrOn6cSIJ:"8i@b`l`v*vO`r Cc-w, }VZk@$,ǶdT-Sv߳)j'trJH@^20~'ډ|sF YTh /u,t> -endobj -109 0 obj -<< -/Length 11493 -/Length1 1641 -/Length2 9852 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMMI10 003.002 -%%Title: CMMI10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMMI10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMMI10 known{/CMMI10 findfont dup/UniqueID known{dup -/UniqueID get 5087385 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /ZOBLSI+CMMI10 def -/FontBBox {-32 -250 1048 750 }readonly def -/PaintType 0 def -/FontInfo 10 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI10.) readonly def -/FullName (CMMI10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle -14.04 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -/ascent 750 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 68 /D put -dup 69 /E put -dup 73 /I put -dup 74 /J put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 109 /m put -dup 110 /n put -dup 117 /u put -dup 118 /v put -dup 126 /vector put -readonly def -currentdict end -currentfile eexec -oc;jAw-<X2-Τ^tE_SKF1F^jNBq{y4-Fgbԓ{"WB:rP ?dgS%|'ؓw&F7JNL9VRtbT5'm\N"K< -wJv$tE;D4Vܢv{bG@dū)Nh]!(7h`f1zpBrd۞>sVÙiHޭkJKyuKI[Ƅ(,M=}%vf'E+)}f$l(W2[8hT>9X33 viU/Y{z4B&qnz|1/ɴcCzwm|x]Lmo}zm5o: 꿊."ĈdNo3 -vz N -pzP;Vҿg6Ǣ >,>OJ4mA0R3ֹ*{+9iuMO@h}-( Qȃ钏A)ӱ =.93g=[_bo_BVƂW"䶝aoZFsO)%d2wNH>D}۝Y1jZg1bJa|`hb)wYc[&0jX7yg -hS&}p-f^ a_ -l4zVnR_e@*z|Wi.9)ǙBSs3Ϗk,^bz˹a ˅4_B1+W2poDx>fH[]TEjRȊ~/+  l8zXܒpH!V܁d!;d4T5:,v#cK*;+zXz k Qw>aqb61IK&?e=f?ToRw: -e -/ y}tX"7qtf}є)8SRXyԍ/Cmo0%}pd{h4>^wD@eQdaidY^@?p i3;BŹAe "Kc_ - ->To=*y#p$Ua5Q2Z3:wXEk!XLǑU MlTHnyeUsAܜo3|] ]zN&GU1@./9;IFz$U/Klf6xq y -w}HH/*%bkYyoxжjxS\y)n?VJ+ka[zffI*[f=M3)%qO(\-Z!J -H)rQQ5TbL}/>5k=QwO75#:,U_LP?NCSMi > 3*j#WÝD8$|!F̊L;_ -dQJI$Y(mRqJ[~f9,6_1~w S,?1? Ayl(LtU m@*T9EWOg-ږHpaH"\z/EjV{11̃TVL5yWK|z|ڶtjBdV=z3TJ~[3`vpnrU MVW.Y-t虘鰭2z񑄥 -Kxq3å_t|W%0=E@.2^r:(H>ePݳ;ס}mW-MAzs`sb}s@_s/FOE«lh\G`ba8$(^U3qC"vj?Aӷ5.s:];H2?lcP!e-t1//ǑbK @3\SN:8'gU?)Rb%o>6 ~) O -Xw5/"|k(e$/JG 0Mo#hpT%-R(>* Ҩ25h|I.5u`QPւ)`QQǶ(45^ބM߯o5G*`?RFM Àgpfn51dK[L -yq B$@'6!W -ΐEI6,IT$yهHpiVch]l&ߡF:O$#Ȋ!D:%)aMx"_L?d*:02]7x(4p P8*.v5sb<]LQ0*K+@>e.-oӏCƀl\~R+$voDgya7s)ck1+.Ƚ#@cL ij;NCB|(ɯIL40Ƽ&bDT3C<= Dg}@?GԿ#Ӵ?H]K mv%M^=QdP A%}u$Ȑv3L -" -'![暰-,*5&Vۮ1=B1vW|P:؎c)»c/Leh:g)Vl<.IJ -T|PqQvi>-<+cVDܽp`JȭVkuZܦר|RIu"_!a~L x0Cc-bpCAʤ0% [D =$XKu&W(b ncg^PdK>R]5d_a*@,TB]'/-G.Ǟx%~dž"52WWa>3/V #F,_z|i1=IUj^[b'HԺrRvѨYuI%@G1`: Zwb!|^WnW^krZxPI~XY̓qY >3u}_l1iG}Z1BR@W7z^CUpBZ\-ѯÆas&\XA\`{YܻQ v0q˽뷚w۩Ƀ6U̿%}JDA_r؅ ]w疠^K݅V:ӝϏ2ӏ|jilzaxOaK<}qo[5sI\ !R y I w˜Qz0l; ۠gYnkϜ}H4'#l&1ҩc!+P)T}!:#,5 0h>ώ? 1E]R%{7zvպ2' ' =.8ƬdDЖÊ9(qo%ͯAv0Og{jEAOG,C[4h֪ LЂ13JYfA2{TMH)w?}+'Mc5 `L8h`V5 \)A yBYC$S;яjtiV!Ψ"p<NoZ*2]LV -̚ !涃oplz`(SL0͏<(0.O4\SaSԗ;*X>mGŻX3XR^^#1ó&3W֘@,`|-g`^pQηQ^ O(s$q;,; i@g toVdF4 s3()&oa2IPZtoKmBމa?0küUڴB L|_&hU:Ҏ͊NQγVA8= #96u0@PN߅yƆeRvWKx }h%ҁ}ުP!z‘ӧ|}9<$5;Ѳ:;ylʗO]Qv-2yhfԨs\\hd#ըtyri"Zu:!xā/p~K.,<̷W|XUƆ/al='a*ZAU(bl~.P |V0E }Sd{"x峝pngթ(U0c1r{twqxK1%DE/z*oz e7^YDBD+AI\Cj߰B@әZ[&(vi,K| \cGVpz9pR%A`A ^9>~Z0x<N?3<ذ!Z` -v@zIER3 L'7-E?6tS>zuux1ɱ,3o"U<5ߠ-`sXZq=9*0 ,KOMRו.~338quV Igko.  *l7[fh -4\߆@bջuv3,qޥqX>(웻5(hU Č>-ygaV66 ->#(;#2+O h5eSa?>[լJ6h zi.C\\Ɯa\B Kh%xy%7A0UXcs}1>)mQnЌ s?Tѯdm/U.-ogOF乣HogO*k(i4K|~o!Vsl14k~.Rũل؍Zß[CNU$8HP}*(8ZV=v@}!M(- #a4sA(T ˦9(D>t-rbݢJ=% LԄ UI_P= a -endstream -endobj -110 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/A/B/C/D/E/I/J/K/L/M/a/b/c/m/n/u/v/vector) -/Descent -194 -/Flags 4 -/FontBBox [ -32 -250 1048 750 ] -/FontFile 109 0 R -/FontName /ZOBLSI+CMMI10 -/ItalicAngle -14 -/StemV 72 -/XHeight 431 ->> -endobj -111 0 obj -<< -/Length 19858 -/Length1 2204 -/Length2 17654 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR10 003.002 -%%Title: CMR10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR10 known{/CMR10 findfont dup/UniqueID known{dup -/UniqueID get 5000793 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /XGGYUK+CMR10 def -/FontBBox {-40 -250 1009 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR10.) readonly def -/FullName (CMR10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 68 /D put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 73 /I put -dup 75 /K put -dup 76 /L put -dup 78 /N put -dup 80 /P put -dup 82 /R put -dup 84 /T put -dup 86 /V put -dup 88 /X put -dup 90 /Z put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 58 /colon put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 61 /equal put -dup 102 /f put -dup 12 /fi put -dup 53 /five put -dup 52 /four put -dup 103 /g put -dup 104 /h put -dup 45 /hyphen put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 49 /one put -dup 112 /p put -dup 46 /period put -dup 43 /plus put -dup 113 /q put -dup 114 /r put -dup 115 /s put -dup 59 /semicolon put -dup 55 /seven put -dup 54 /six put -dup 47 /slash put -dup 116 /t put -dup 51 /three put -dup 50 /two put -dup 117 /u put -dup 118 /v put -dup 122 /z put -dup 48 /zero put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{x< ,-.2iRnñvپ1䠕 '䓱_r"O_t3kefBݼVfj9ҳ Yh뀸{q-ɷ}W??gw1*Eh[:tWeI,v8a<{B100Z85|}Nlw]6Nbh3E`(Eޏ'Q;eԃ/.DyL5$4IG׮Ɋ\yj9.VU5Q!-赁B9dB^oVwBɎT7RsOGA b#TBv!mWT=w,ID%'MK<|]D@2O( ݎ%#_ɷVBST#z!${l\4ĸ ;5l&!〚=(fUwAeB#30>H 'L+֓jz@=s\<=\Y$D?U 6xGQnǫi%֔! -L2[)!fXc<'ȲRP3E!-:'AJ.IJCJJt&{76 -#VH/Fgw"F5wS$|oQ<Η `~<10|;,zɴ% -oߠx0sW1Fx gmxVyѝ"]#z~pv Ũ.rB9$nYCC1td@#8kNԋK;ԓlF( ،N;d*<Ʀs9ZQ@It%[)7&hn Y'a¶T'Xrߙ/n_nJL (@ -К -N{KF^kbn~`L]aU{vLܺ41$rmAsnZ*=sob@{y !CC{c.WZ0n bpgsPd$-\ԛ&L27JBs/g(xQ,t>[8͓GsŸ:R$9]6&my)ivjWLRB^RBalx_Y:5M/j١!}`D&WȪQX$HߧtI .Y@nr_n܁ OtAN-L n?_^_g~Ə;`KB6eĶ ->lQp)/;S' ^:tJj@xE(0G;κQqǔkT'; ÃDHjsrxܖ -.>֯kl;&#<ښe)fFz`Ƿ?Ic@SH&<evn8F\V3aA!yy:+c!xbM։/f}3ߖ˦"G'fMsXWU}Yĵ^ %j!HOH͎_;臲Jv]# -$'Ch?5u-G:zHZ\%Uv z^By%NT⸶3=X?mJ-3iH@ܐfσkR.v'm.'SDly7 YCm^Gu5_G1t/ -41n_D>}p+fg9h$]@M`^ҹGK;5wIrqA3fAYiuYrD:dR At -,)aɺh9[ԧuS9KTKaX$wgɓO[xqǃyI(j5LIc}|h$zDUwY+Z:ϤŜ1le`u@|܈贚^6/y`a [Ί`ҾEwa ziLa}jʰ@}xWns0n*{l?Zz>8p-L&ȣK`> `%`ݿs?v˻^\*QNbf+ۼބo" ٧U zgga䎐uFљ<Xyݸ*g4?X2]4H͢^qLeoU~ 7>)ƤHnA7"{DRj)ע~eVDJ|X}ѧCrTA fP};"ӼK#ΑTF\^ԓ ; |R D\Ă Hu6QИ'Q3b;x#3S:jb%tJ/>ʡOrVށx]>)]l5o[F;,N&'i\NQIH?T:@FN SX0<)hW4fFDh.سT)^S-nw}, ZNEC Y Rez3\ -tY5`F~_xU|'XLJG@U6I \>:V_>զ9*I0}ӵ\"{3UzuFf٤Pߨ)E8Uw)gq:dj#hq so -@ -KG7"|QЇ Zzs|}LմS:fmA3S 2=[dؓJ\ܳc|tj1ƛArѮJv,K| ϕVސ -Q[s"=ôG#[71]'GA-u&_]nOSI*!GL{0^()Ɛظ]:1Y] c5@>rPq#fܳF6hZȀ,֯nрKD„-׸ݩTB<^x (va;{bQt[ eIBţnloi1>MoWM_v"h-ǰ-uh|]R[d"cWGcr"2P&yĔ$֬^S fx'$TQGUm/*BK-2"jܸf'Om:M|b]$~+ȏ>Ɏbtv2څ l-P4"Q5n$micnO԰P05aZrFhd]=Xcٓk dOBM@P.KX+QmtgD#/uyھRܸ(u׼΢MG oTgs]؆ٷ;*G R1)ٝ4 >odݿR{uxz4DXF9Tx:Rjpq"F\eL6j`H$rʹoW&N -cEawmGeZeX+TB_ǃ?oAZ;u.[T{lN]"?[t -VH_@{lj;KߑHŁ?hKY2MFUw^z6nf5^9뛅SS iw׳ʰg6Q.8zZZ72o Q.c]ƃ I1PiYg*z_H LWG -q3Rmv*GHp] ~\4#{+姕8X> B|L2}-sc~k;9W;[VZ)&a4c7}.8z+G ;$+Ω_]5{hL=ow VH Ay,`2uÆd-㥵4WΌ%n EguM7ԥ[jI}|di8&:ARA_;.lX*:׃nyj"⚛ܳMdCF|a͉G%izY mޅOi T%D@$KQIGeOVNF2VdA!d=ۭBR ]$~ 'ԑ+ez]|lAnm% |J;qIoh9I@N}N_M,bx#[n,7lIB֠3SĀiI<*1̗fE1=MJO@; z҃; X}ǁSţ!Mv7KT~ڎK?cj-x;GQOU4@tt U^3!>d5IwaүYPU$ q .uHR5g}_?|qLu@3.']:zx0r54r?Y0zmKyHiy#J7Qs1i?B+.{Kz+ebkjOdU9bb}0 < -{TB|n~Z&.Hu-LZ22; *8P6w,;3V=NQ϶-u9 ?;Kx W{ZalSxYC!OԈ@ -Ď5^{zۆ^iIɜ_CsO?cA'9)< \b[h%ٮp iBNҿ̓t&$0x} ,G&q}K3,}#0_GHsr_5ż@$B;&cdNݴ=>C}/YQF<A2[-!)ҏtLN) -X6\R|L|1v=fL? jX -![ЇU&iuТDj}'6 B7~@@Lt2_.Y~ada/ѷ\at8'!$@--ja@!:.gnf -d=N1fTVBSk`d{ܾOoS)qV%cNŠȔ;?9JnT噟B]lD0;\ZMؓ8V`kN0pQ+<8a_j'`(6rX7n0&|@|kS܊NP(ܣai>^4v sxm;[8@QAoN}H61(ZC,[R?_ c4dZXtR0E2H)R3ZͱI4ur`W+[s.[Ikdӆ&bœj$[ _AFΒU'ainfC6jWf{ DRVl/|D7/R\Iv{C t( M*)#MW!5=ArDv-bcPP'~ܿlIGF{+, :5}N%cqG܆*WPж}-_> AhHՈF7ulon>"3Q$ ,igi],)\т -<&6?>yKdLW114X rCDtCN{\;8^{ޜ\'I2Z4rʻ1"J;_]M~ QVʩrC5=.vUBN]i5Bw+@mE};Rd*Pc#1)U8J/A@7?4%;ȽoIx;| <%ڐa'f~P ɷd$Glm5Wå%4ɾ!&Σ vư@6ۈX=<0_PnCkX2YajŭE `>nқ0lcHҡVQ\Ή. -K e5_7 Za$W$W]*jd`ktv*^}ZWKʫ/~/@ˠ Aa%pAGw=-<NU?FO;jA`*C |,+7Hn.jER2 V|;>cee^˼Pf,9#nZ~xE'$|ϚnGyQI-!&iƓq0eA&G-M 2}vC-}+<;ڳ_Î?ay,-Zt%"MKI\ڐ'2?"S$"eᾞ]@$ΐU8̀Uxֺ =|Pyp;_5nSg\jr7O7J(G+;86_"-1մNcѸd6,lұM͆>;Bo7s7L;;21I&FX`gerhCqBy24яS_%,#;';d -WEm},)še/;)ѻ6wkd֙ #>g') Zypz$'Wl${{ׂ](HXj4I.E2],znw7}pIј^3|) q %GSW?3]* +>J*(sPeXc&v1'U2i'ңACvxuEtX8KّKYC8˸jRj&<׸l8oAjIPpN`@.!,^W2ΕO{{STa@\3]Y@e2l'UAS׀qjNkp(acN#dW`>yK3E9{dĽEA=ybw#-?\)sbHZ&^Z&|Ď=FiRaoRDDPa{71_~=ФShoSs;WUm:S5 -j_}p%ߵ2`K.}y) i*;bsхX<{b1: /@XѨ}&p5UI*$o&`l: -+'`uwqg(6'sL,(ژ{P nkv#ir"! z袑MCԥvM%.@;9f s^*XbXPʓpG{HGGJ1/בvҸ$rXSimV7\T~iYWxD2؅P1^)T ru]$K45LrlSβM+YY#j5(0uR7SP(pr6"2/+ވy"tH -URJP8yCu \؀ Gσ>WvB7 Glm'Mgv:k=ib]tǜ9m.F(([|=mXYNwV]ߛm S5̬9rYYWy햧vegl^f7kKQBo_h{}]6N.$"/󉗪l;۳Bli'=z&nM98"7`!gS`#sYP/d9: -1>;}'٠vPW9<qX㬽aTF_Ҟdzeo5l!&4PDE#ۺ8LS> JIHv<.&6 C\뽥Q=R\љYj惼XVL9T ^jtF_$4^N˃cX6DskH 1-'-ԋ0jv iJN.1bGiIT3Zp@1$UvC&Z̕tݲfblU,y֦$7Gff߲X.: 1.3  L.7Rm@ZZ}AwYђ/ĘyV2!ʄ2:5/;u?eeP:n$x}l-ҫK0Tco#|g-u9bC{yx'nj)/ΦSCXtO3c|OMݍ~Ѿp,GhP'b?Ig by;cRy~ #9c~¦*A]ynkfI -rue&@7&=J6m1&$M2vA鉙 zWwlkXg:+Uz&yIQx4NK}* ;6v'sZ hzLE;H -S^7mQAat|lnT ̑'hCoɆ;pOMUBX:XNFˢ PM)2L/ FGt`k}pn L㕣Oq ?mV] -BGBUYX3Je2ɊBC2yASLEpIAܠlJ2r+`߲A[2`Řsj|z)H~Ee8CX}xuV^^coeL/*6T!5Gj_Hk^2 EdŽ(SȺ&)ȾNH?ݮq -ٖhPc, l(Jqh+zJ8|U]&dQT}+\ -6diX ,UhbC? Xdc~z0svq4;¨JKy86u]7@JvnA11JI\W.˼L mųΞڻ$Z58̖ -@.5J+N]VnԆ97 ӷYv*} ~!bWۿo!ލi JAD9/o -t@YB_F)~"C6+SS}[ܟB g,$}}A!G@7v+/H"?m{yiƦJE(ǁG|Kv:@FLsfXލ[4b9 .or-o\u#_FWQ$=HS&[r*"^DY}D{k%9GO|]?،i(J!bg F,H?EF -- r4E "rc`߳D$2Dd4Z =]F⛺EK_lrm`)_MkFw%ΰsl=ƺ +Cph -.T~JPV*[3ql t!9: Ud --2|CR-RܧwsbY4m!0 L.Sx.G#gS5*y^u@J}Ad:Y撅OUD_Ұ֣GSzZ*CL8;=;X#yk5fWD -_5vj:4Ê~Ć[V$otyI jf÷M+*6)oKt> ]rdtQ>6­VJPkL'uZ@}d+O*D5Z`7e>s0qWzE8{<1HUFDx;Y̖K+z`3 <^l Ŝ2_BwO6RwpD>vyo427ik+D.}YH~!\,l{n$T  *Z*B(0_DMcdƇ]=C|)#*ђ_a#iYe![QɕѭmpZ63jWxfZ`k0H Wԯpѫg*V0̔ mX`$WZm*Bz\⑜aɕ-Aqbq5máܣrpG{qM3 .#%D_܀vGkR0vY- .FeWm̢{Z^*AsTfX3!hؼ 0R"i=릕U1!wkg{GCc*8x2?rbjnހPC0"rGʐZn󻟾"ӝq< j7Nei"N~$`=A!fgy50ٶ,$37Q -~'}bM>xUu -So(eԃ&kӕzi=x+0M8.9@-&q -ObxYFg”"ˣC_yFbix$h:6fY5@QI<[:0{>(rK9|2CCg4 Cl)ںKgU?AeT//DT~8Yc%祔Mޜr_i%DpN,K `,-{7ܥ& ٢[6@ͬ/BMn^xצu!w'#iT6G̖Pv? -.;ȭ5߇g[+ g2Q퇒*f\YcM7 ו8" cATpɶbh\9KiۊJ?jg _*{u4R>{BW-|#m`XO.h.Lw5|ʷ^0o_hmn,eFqQOy.^$sBkR|ħ[]`7 -f.[vɻjocsQn6<ҳax/(MZl垜ThF_6LZ5kga^yC`4JϹuBO{Շvi`.j\7kمF |^jӁDLEO] 7zFD'?443HwаsYP1GӘEoWSP8P c-bSFk,^ËܩI@X틛3 ƞ -yҢbs=C5jϮO|%[PND3,vǼ#2G<8 J0rQǥQc"f׎jo7L4@Ύ^欯yZ ->R(3nx7zB.EG)0,5{[mtbE??)v[;b<\ܼA,e<[nc출B<0Op^z.}jpigP=7& [##ݙA^kmU_0> -endobj -113 0 obj -<< -/Length 13103 -/Length1 1830 -/Length2 11273 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR12 003.002 -%%Title: CMR12 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR12. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR12 known{/CMR12 findfont dup/UniqueID known{dup -/UniqueID get 5000794 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /RLYLLI+CMR12 def -/FontBBox {-34 -251 988 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR12.) readonly def -/FullName (CMR12) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 65 /A put -dup 66 /B put -dup 68 /D put -dup 71 /G put -dup 76 /L put -dup 77 /M put -dup 83 /S put -dup 86 /V put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 46 /period put -dup 114 /r put -dup 116 /t put -dup 50 /two put -dup 117 /u put -dup 122 /z put -dup 48 /zero put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl75R 9z(X*Rhn5&g\c9`EgwT!xIJz҈v*lcoƿsdm^%=谺D +u9#3P _] )w -UA8 HuG:DJ(W;]-0<.gSB NlZOLӡ5^9:K*|F -{É ڇE,q>j0^x떲Q'X酉i ;yZPt>p1SV}:ުad0h{JA)Θ[ U=y5pRU&0'-8tIAx*̣$!gRHS;RVU?!lM٬2gO.T7wϓ)?CߠVb7^kJ;c -N* ٍG|Ucͮߢɨl6h6[ 2ߵПZvUlP|%)VǸm׫=&a -Js_̲y|{R6ĴʗB7jIȘ2a% @74 @4(.= `h'p+xvX}?G3D:^ӟ*&4prx5e^hk@S_̎Cl^^}ڶ-q9@e @|wMrc9P(TkruY@MnuW`%?Q8wG3g; dlo 2 Uu6C֋%YT'Rjo1Mn}L+:O/`@ӟӎ4J -B $YaհH Ag0IQ<;v|<6G@tqX>ɏpI%(Xv7}19lAKڮ6]+l_6'3`k*T (]65R-[(EAJ!3s:e*Aܣ ZEsNьmcЪ..> ˆ>Q&x̹znkCfqW-ٕ6qo*p+.gjlZrht?3:2ty&F!w^9vӐy*'ImtӮ:dN#LaRx!d!R *9SDdkb$Vdž^t4}h5eHNrHI,O6'l -NO#xa OTV-(!JZyX !]z@. 5-DL5_rHqg/r秂gͯP%x d꿖xAcŘʺϡYd(*:od`AMPb-nt]#lg&eb5d*OE 5 UThlv9_)$pC+(M ռPVOptcC`ՠ0IJ85YA('针1J ) =n?Epaq\')_4}KY+d>^cV60EZt,)ie Oӟ5ni8B5*Ƅxn@EDP>e$I^na Y>k#w?p͓t!_1 dr{d ,@]+ضCzn{0RUK,&Ձ\ƭТ1LB#Jp0 XJK7ZLD"afI1?jt'8:/(IGʵ6 <+r xj=9zI!ƶreGNXNpA4Us]b;g-L:/ڮpaؖ:1xǔ`V&EE?c CۗǙ77-`$Mv|&sČ 6X!g#ndχ[w䄁n(dَoo_o2<ݻ  xMI^ -[$dDTZ jķi|O.E9wbSsBz֚ȴ!2g6bcrۑW1A"nX14nKOC-NA=9g5=W^x(xڞEt8}NIDʄ!"]}FET2mRi< r3a0!fS&W{V_ ħ/Wc - 15y8/ V㯧٧򁂝*^F}#? P掸-~m~j𔜒FvV K.\'YƎZ|9&fr7ᶀQ~n- L5Q/[[ORue>G zjP˯,jW灔Rڮu7q jml -3!9ri `u8!5$cUUO;~}ۨd>̖ glUov+"Q%z=$Uu<J6RGʴ̇vm%û]=PC}_2k& ;eG7גI0Qf/ e!S|2F;֐n3:Gj)~kM'AR>CM^}]dLBu(w& GJ*ԾS0|CxoiNK@N@f2ްir7%x478˷턀Ȣ5k~:Dwp";jA `SR\Y.wNCky~uH#(8N7 v/I g;0Mf{ؒF3 SwHnp}D0yafA3?E.RB偗cU|O+U$r=هn5`̕,/^r;5?9>QNGZigp={_ș0H>(˴uWӥz|T̴VIMf*ߣ6c^֟}@_ϷW&)#׀+$ɐ2i_Bzv`]C]c+老ь*M0\omV -,T[a'rھٷ=+.t_,'P)Чr*4Wp$ U{-тB qڠ -a`O|qd3ú$/|MR-` ;6M|şg~Y u[l(oԁglEwք+pdڳXlDXuG b2Me *eiRXx8AEnS\RyEƒjT91Pr]T|u0zWMS=nkčeԍ,AFk/b\vI QDksh>`aP(~j%P> -GWlL?ݑ&hu&A$%9c\P "G(" z+"ڸVH1GڟHxYTҫs-pSCq: -99xec]R{zC?yOS.+T#``" kk2A>&^Rz=f)gjAݓ'xbBPd<^Ҏ,!ávm J!*5ҋ.5(K>++4y@B[Y -`͑!-|RVMr6 d$jwe(%.`. t -`n1h nzeR#nmOنwwOu*NkxcV9Hq82ɤ3՛.S+@&\]bWߡ!Nޥpa0fln -ED pCr:Q=̝W8{mCUط;Qtߪjƚ|YQ4C<ZeoDs8HMH3jﻭ|p8=q?Ҽ=EEe>6K}f2wa]a>>jFɷ -s V5ˤ;*nb$Svh-8yː=isr(/ e8'VZL078L )EMрKD„&#SX ,}6kbbx.[醄Ӗ0I8a {g HV$告$jJer= cOa[Sk)rάC -T~d^ъEg4pkRm$1"o]~(}POi˶8=Xbڇ*g&J3[O%w ДyRG9c&ڈB8z_:.;с9 vJ\sl}OQ9@6e#e!K[5j2.t9hF"؀Q`orE2@iWl4QBZB9caS2nO@[T 17;̺_U-c HmlyM?hI[@򋛃v4{'lpk72Q9EA/H)Ja7}¸z]Uf{$:'R 8¢VkAڃ]m,P|.Sɬ},1LPa`3&:3 3FD5۟mўy 4otXGWثc M}\8=q-A5xo-Fmԍ}jw\}9 S T6@Ĩ^yBӾgV.B%"FHuXL3@KuYb[< /o&\/eZj OocI5@G/ܵ40;}+>,cA -?~S0f2BxEmD (A0ڱ)rdZڗ-`Nt=ue8\wg{S :4B-q(iuB{vJ3" MY:8.YrOL5˒ ƃ O42#ĜvEQ2'K碤_# do^;<Zr+.a-ȯ)OH@ ʴZ#g4p%@)N#=hq|y^ 4٧}ظo O.cGA';" p^7ù*2F) ϨeBwrIFB,EtDqi/U - nF| -&}%- 5/s?QIHL}̢JZ~s#YS.#'c*ٰHW4֏VPVi'amo Ey6c& f?r=Am1v8jP+l"n"Z'8J9?IC1j,H o-wQ!& Ik-oɳP؜8Ěmcqt8?t҉]oRg\gYtU5u%H6t1_gdwL B#!-J@n~sOΰ?tr1\0,sO]7uj+۔lA|J6yaz/2$E-v+Ϯp螔d{ؠmpۓӒDÝmP(iФqejlQ6#\}h9~i`\Q4jg0j3R͈RBn[e6cZJBMh;F:8<\aI}R.dik@YJ3o[/jdDӁ;äC!-T>Jq&IwTXs;sPx})'/89Ub sxqǶn7g-L[Gq$RRDzNcelTq3xVsOD)Xͽ-q| -HS;e Nn:as_zU[mK KeʽS/΄?H^ w$Z@<9[f]`G{"MD-#:*6b4E! @wd3M5y{5CYڭ#i3#@nl|ަ ek܂=&a`$>dhPvHjƜO{+J -vXً6!Zn%Fas|MИaaWBD$QDH) nIP7ȱJ !ĵzudRڟT uΌk -^ւ[TBAidP8v~G<|KS^OW9j]0FVЌd]7( Uܻ 2!0a4w^(PbbPCg.!h_LH֣5w)I7˗ZnI}.ga1%P_ewGoڋd D4遽@qڳp$B?p=ő d?Ej󌷩//mXcɾ+Yʘ!*>)3{n^!Q0e!xఐR$!#RCac~Y2]U%`[pA7<~a./JQ\rmE[,XE,){,uEn PhD[~Mw6^h t6ʇ3jј"Gt$s;;Cr0[U]n[RZ\w'#p7ӑ!/m'e,/r4P/wX k8zcZ~GI3%^ =8l6f5BWhe$nZ63X߿XI\І+[ ,uHbT6D-@B"6Gb*>K\h;eF˺hoOM1)?XM@C^Ov.xaso` -cL/Mduq.$@7g9"әgB]iا?R4AHm()qPX,`SuǕy{#ցRNu₲7I_Cve'iw -+J-W6ިy[oܳNQd xvnT>pp"ɄȶYe&.MU 1O/j.+Y4uJoc2IQ!R5JX1x䧞v -4gPH:@rOn ̭ObH4jNy?VX$5ľ^m %Om(fDj`;P؀q 6267@aٱ>QӔ|WMF&/m~& 7rn|w:tQ4D~qr%+ɇzdPe'A=_OXذG5YȤY٭w a+Q ,p< 0Վ(Je]Vg?J`*Y\ݍ LGF?1`M2() KgK-H&]-SL5kǕ؏l%cY=3^Ӫ2h{6/y[,rKaDCD:b3rEڦwZqf:CLz%Umqڎů-bgtf:\EGN,H*2e"ióNH 2 fŌIr"n/ ?LT^HS&\Tԅa%NyJ;jox* uЈ{תMfxg^T=F77Mxҩ!Sw25(%ʡ״$FTUa|SO(5~j#>-^@'Ao18In/VP,Ȭ>u LGGړI@'8KBm55h㽕A#DCaw޾Ģ)c{/om6:@ 큲f.@A1Q*IpҒqd< 4\;T@ SmV&Jn*"*e!<0i4ڽRs<6UtZU؛%G./+qo>Z'R ~67vh:@n$v6ήNaBJmMQ/2.+Ygl9eY p4qw0]x1DgG>X#QtY22R9@3 p<#cg|:JJ:$ ,)do|b'^:s.^ګm\Ǩg[yWa<--d<*@˫!> -endobj -115 0 obj -<< -/Length 11217 -/Length1 1721 -/Length2 9496 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR17 003.002 -%%Title: CMR17 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR17. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR17 known{/CMR17 findfont dup/UniqueID known{dup -/UniqueID get 5000795 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /DMPNDY+CMR17 def -/FontBBox {-33 -250 945 749 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR17.) readonly def -/FullName (CMR17) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 76 /L put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 124 /emdash put -dup 103 /g put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 49 /one put -dup 46 /period put -dup 114 /r put -dup 116 /t put -dup 50 /two put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{.2J] -J!(^{jKD&xe}zFCWYGx=mQo.cZ|uJѧib 0޹r -(:VZ},uxSؤgEʼnr8BYYP?GڢP7ݛ>`_;mR&W4*xhҼ4Iwp ʒ 9~@c]]Jˎ= 4 -wiH 2NaEdfsD-{y^QmwGE : -|:^Fz_Iwf@%)fn]}dяBڳin3Hj;tuANS}^{8a%Ϭ_K_3AaD;]^Ĉ>kU|=o_uzz!ؽ:`2;PD3@|tHt]kU@7f3p\MDE[k-ZmCH1@FO> T']0ڵ9R _GAɻwWYTƃt!|h+*,9Xhy5c3%h7j,OxӇܘTuھKQQ}'XIUp~ ֕ҺopMvnWdq-ԌuyǛ˓ʀ,IFk; R5H\|o"ǀ*ƃW0KDT ڄGTՃk7-OfB)UCfE8. IW0{GԦ BͅBRp#hK_߇M|UDޙՋ**Pxmr8/XT7RB/u wX2~WV ^hDieT;[1AIKQ1ނbViR~9#'\ pꬑJ55gz7gGHC(ڴ.-H<8DJZbسGxO&Y=A yeV^Fm܉=k.D(04@X=3c8˴k"gF֠cwz-\'*VR3Z'uQKMd -b̙9usTYhIm]d< 4=uX=Ro`ޝV`$/>zb7ٞ'jI,$io4¾.2)@W'NU%;ʊڒ+0=E)*)P[g=l*SwYlQWy*e) 2i1L~`LJ\o~CjKh~ҐmpFP`NƐٰA+1A ~Av/M ]^/i"Wj -oU<c줵X1/ݡ/FiȶMw5_Yтqco޿jbRѻ`"}]xS'2y&n2tjQS%JCI}LS[hK蓨4(Lꭋ."70ljVψҲeI,xN7VxݸցrNjokA ?Rot8 i!jp+䷿.<Q -0R=I5[Um2v/[XIvQ-^.)=\gPy) * ?[g%Гۋ" ~ lۭzL:scE=y -|ZO+*Ce_#>u}99h9Q`^Y7)pT`|3Uv6@SS*BelЂs8l }qF @9өvUP; y.fV1 -%Wp{0p -d$@":*O0JeڨNQkXlYy?پMv-^Ie-??V lG["C;$t(Qҥ -5TfcD9IBӢ[/CjO?$!oq{,ݞl yDv8!$f2ҋZby;!0yIWR5_־2>6{̂0]&V~YdNH v v>(ϭU%+[ſ8D-nU1GL ȩFN?'c?_[v cwT;zjXig*GnikU@Zi2펯ppܬ`٭=KBn9Md 6^beXy9#mEKe_C ß-('BގoZu#7stKã+ȗ)F):@يx%wkcA>՗ -R~9CSM9JH<GOU4jdd8D\Pi3:PN72gŭR5lq?{o:m& ؘu !p_?cvX, ~jiޠ<,]U|>BSEw߂=$jU'0yDálj`]XxT -̻lZ>i(N=(w{1aYuPi~5L$|3y=ȽvZEOgIfX2/q9ke(dw*?QcDa' S 0NC?N~ (EdF<y]ZiL, kAM ؁Qk 9LA@Jv, D$_xSz/$wŗEYlG~h"璲VK[UU;P61 㹣vʷ4p"uK(nh{ebI`C">>S5' ´V3nkg`jsh%LOQtRY nugP4\RM#%~#ŋO킣BZ^[ `iBڑo7Tƒߏ$qE ,)b;a'8nm*# -mhbkS.zI/=^arz`66nC_”+=Rm1eb}nFIs>u LgnWPCNvߝltyB:N@kln\K}+xn -z\}㏢O[FչW)4iSq?s"{-W+#Em[^ -͈%^K SK<eNM>WQmvW#Gn͛jRmh&MF\̕Q(S%> ǖs7nԚc.mj猊yE*HF_5a.^^Hu(! 48DF -)pߢz Ա9mEG U* F'>5/Ya0-)\uЇyk&KrS4ĎSϸ=^P3qFڏN=k|\f:/ߴؘ]+{A M,W"#O(Bk?1,Ԙ ߁Jֻfn)zhS5ػũ-[Q>PV晴 -<l_}@cޕ?|Pni8WQw 9 dkY0yhbO}pI;!cC((@r>9yӂ,oE}٤Ӟ X$=rϨKGq5jkQ?~w}3;0 CN Xd%7!́$>$ZA9}oB 3+VT0ky0l"I_>玦#7b4 "NaCt8Y0WsoP}wE`GJ>iS"KnG9>{-Qo^]#(PG1q߈Ii888ބ:' ϲ&_+`RT%#>DLW*IIQ c|YZFЏ#«L_.\jvR졚ʾrf+eܳw. Ee`{TG1ocJigX -lȣ8c;%|@ڟ!DmXJ` BQD!h#Hz' A48_ =BUTHIո'@KǁQX!*vVZ[2.UчÓ.3h}w=ߥ -^[7zɁ18 -fQ*JO!7/R0 ؄hy;Y%`z'NIDXE|_.EԵ]n80ESGݦVO=WX yjs1oM64줓].ǧ d9M(B7rkwNO}6|ۨߘ`W8Adԩ3Tk-jcM`*/*b -5FEȚAl -M(#ETY9W!;54ސ29cJ.KLɗd j<=۟i}b@&Aoѫbcj_HAFGg}[i4m}ފ#Tơp{ -$pZjI:[!i7/AlYHwv7N03c׍M(ZW%,^DE?¿oaG*F6xW(w)L46wm %5;n\ QAYf2-@">*71c_vmY # jú!b`Zܭrž8Z<6%⧐y .R~&ۊ'6L&U'`#駺"nvo)$ <3|eo͝|Jo9^^UTG1HJƷJG.u݄$ӏ(9X a@y1Cte$`ZjqO. Aj'0m.,<b+7f{'g%-cjMr>!^WĮg-qm(^ }CcR̐b*BQFO4&\/R*uaY{Ŵ֞b8AE`(tE? -dXoȟX&}Ѝz>B)Y(Ŗ d:jbvl-R3 ydH1[b ]##YoV0Y؅Ϝ-q]xO.A$/Qiˇ4e aj!ٷ]5RiZ#g[u)$ԑi ي}d!a|Y0[:s>6~1G?1.g~ /㕡Ѹ;ynI2D!D;½D'wi Y~joUІ=PG[}3 IX(zw{y0&E\2V4V-40uu{ VhDіwe$h%'WR ,Ώ*g5-rNLm;5Pӂ~TBiN'Z -pjȅ9?)M hdJɈ1VMaV@Y> OdJp]0F{wMJ:r#^%񍚽2Os=)p<=*U*D<ɨ~Dy'\:Rj뮹B#b{t*ԴQ…n@~mY<*gs=3׀=*]@s$2/eW6DDZ=+7cFRRcNb -[{,Gq>AVZUv|DW5}zdBi"zH>LJ!ig|Hٛ7wq7v潳n5I7RW#8m|`lp15ͦ@fԎCI[ ]r'_<WO3 -;o#Yy0F\Yi3'!GA_`_zV_dfat|0g'Bg7:3U22bC' $z'i::~v%B${-]|iY;MqVFsΏ@ݷ bʊRSp€[.7>\{FQ80k1bD9̄fʼnV1F(âH lVl96m|QN8Y\@]P\"Zq8)7_Dvݥ{'.Gyj&n -:PƱg=es'd=ZD#P7.ʰ,}me!K]v9MiW$BQ~hGP b5]%tlڨ}FOQ\! -+` Ke60J8 -'O1AM^VvZC 4 ->څt/:Mn#o-OȬ iގy ieiLE`̡{_2G-kjсN1ҧ i1\vV3j`-@&o6 >&^z)d;084c4+N%]lH#(/}?O4a3=,gŹVA`o?:)h";J3Nw'E=PCX9oĢZ il [S>QF 6+Iv?ڷlšSQ'v;aMm6$bC^sD> UCޜޤ -m{Ζ5d&DDOSaiFҎc.+*g&,'[itm\VS=}_ӨV"hv6kp_mIZRr|[pCI`@Z>&t8؊M ^K͉\ &Y@\5bEnf;&li@3p=Ꚑ+Ebo)#uրA00bi:d@ɮە?OKu}tݩvXicLLc_~ufJh(i8sc3ޢ3: !{Ȩ2,0hJ~ mP _뇀)34@!`io -#ֶW -endstream -endobj -116 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/L/a/b/c/caron/comma/d/e/emdash/g/i/j/k/l/m/n/o/one/period/r/t/two/v/z) -/Descent -195 -/Flags 4 -/FontBBox [ -33 -250 945 749 ] -/FontFile 115 0 R -/FontName /DMPNDY+CMR17 -/ItalicAngle 0 -/StemV 53 -/XHeight 430 ->> -endobj -117 0 obj -<< -/Length 7469 -/Length1 1373 -/Length2 6096 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR6 003.002 -%%Title: CMR6 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR6. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR6 known{/CMR6 findfont dup/UniqueID known{dup -/UniqueID get 5000789 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /XTJZVU+CMR6 def -/FontBBox {-20 -250 1193 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR6.) readonly def -/FullName (CMR6) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 49 /one put -dup 50 /two put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl7Ӧ!b^Ѵ-E>3t;G<;l: OSS*O?9-w yg8LsYtָE qHp0>ˇ -,qۊq mZD]7ʺOk-G_\SyGLN8g2Q}:ä|C/ɑl ѓčC2`Lu3D*Cǩ5љsLUkmH FqTfZ$|2xlڮOuxgG/|:&Nn$JEQyރ4>py'3ji.ǦX9~b0 ub;F8(PFY|DS%y=gn!QZИOi歨H,a7`_Z<gZeߟ՟q/~j'[E1 wg,Kom>M8;r CXVkg-/R@|lbC/zK_i,'1Q7^3EӪ9$Zdy]ltr=>K%a1\(t.EzW(#MN̑6~*E;ֿCa^1y5ݿ'hyf -s.8ϰ5ciG$5g0KTlp@>]fW7QGVn~˟=]Z`*~7 "ڌcw0U{Yn._xIPYQ]`MN!Xw:R;t+]gZɅ oswQU)8aA^av>xƍH_n~}StG7 K72fCi0Gm1u?4&]ژdFpmUhӲ$w\Jd8+SE=XnV%?ү֟G[4D)ҏ}<)%pD%qrkoX(&Ƕc<^ԺO;FIRCK-fjz hs+*U-\(=D[d)@%t)#ْMٗA=5N$1Qkh|)Zc׼=}6^w'eufH p!x."s!SpزvNȗy8~%_mD8ǸrɳhwWu_6[= -V]Y2?% -)/KR|e=b_0Sʖ531ؿmx> ՘OX![ؠ`vf|}R 4"~)uv E$U\W;댞K0 6$֥拐Pk?yy4<˒q=CG$ @d~A1Q8A-|߉b1`zj ۦZ\.r ~s"b]Ry&rD0hLS)z6M="'OOQk {2+$}<໒W` 1=',hkƏCfE5F]Ћynh|d/(~&PB9Cx9 - %,9OKLvH,>Ҏ,6"+DƸrhL<]A+6JJ9ۿ2jQ}bF[z'p&S*U$ؖa`RI=՞dv_\WB_5n[&UXiNcuοrvI]VI߮\S"Ivs qYpP]5||rOډccB0KV|נ40Cajps8A軝Y4-L ͯi FV{%xE_ *`LOU -ǔKGs|mJ%5ݯdAv<jா-W:,=BYme"r5tŧ>,wxI_ esxRtQeh; -[Gf҄(`*/I{w4iOa"č\%{-+`8@;dZxW'gA$vq%=@ Py_w駾{p6LMmM# -R -Y$Р쭀|6|噐ȏGI`fkqa}@tZ&'=3bIgU5eA},):ichZ:l҂ 2W#30rM$a ImvO", -:(%CMi@\[ -t=UMn[B_2_@nu?L,DWUx=u}#m6xA x^QZ+% *{ϊշr RH [*Yy0iǭ0abP7y־pvkTTR+%7!fF gGP2?S%|b%N&t:>EOYJJJZBH-!~yp̊Ҭ㠄֯d z/3j*(JP$'AT˪x"b4~4]Xպ撾99T<ԟʛKȟ9[I{P>5Ruc&(0ܪv;{3x}_%.beW2eSxD8o{ۻ}wn,WPz;+RtVX= \uBU(Cvw?H jt~DxtӃEP[x/2)+ഷʱx46IHgoE'nb\lLhcb/K}kVD u6#+9oi(gy5lS{ ZQ 0dpWg-Lbpy\z(gR6eKG=9U2ݧCH opr'FS+ U$κ h; I~Ζ:oDUEFyo;0?mP>"#Ǖ T5J!*S@M7#8&-yn95GTɄV -+WS[Om3Pmd,+ST졆kyR<$ ݀ 2a&=CԠN 97#~MT?BzR͹Qz]sTP@P G- R9Mz)3MHxV'.(s;|_OT՞X9`G $PW٤eY=fE%ԤOpdDmz]֥zK+xIVk -w:Mm4YV#⺸M]*Ǣף9t5#rm'Eeo$Κ+z8n/=?njѳ((,O2w <6Fnc1!AzVRIز+Tko9:W\v.yA5gf]?j6)xy!N5g,:2F%uE`Bxw(ݯɆ&^͂NV۞AB k+&@'јsƒ_;q(_:.:)[ ?bt.N|Pm}/u#7A"U)T\ZxH ro}o2Xa/vD3kU[+,뫲,O 4%߇$H'űC/ |,v=}醜Cy`6YP*r8%{o4c1OSB!dA6]W%gcTޟd>M2^Nj[N@*Z;#hhK7#2;Cݶ2 wC"[yDJ,#b‰ZV*7 xߘK;Дyv96I)I" $!/8o(PyRUS`<!{Ge+(CuAqlTcu[ j=E՟2C4%2+drQ/;ڑ}C`@|&cſ1IO}5& !v,+M1pp_㯎0iP͕񇐸gZ1:~i(l=kqa.1':;)]4,6uxcLAa^!L"u -ɜ~=C3[ .18jITOQ -Qy(E*>'߇߃5 h V`,vr3TT{3O_<΄D+ h3ʂpSV#u:>f`"_Bon!wN y/C5rb?7@?+V5خ -B6oYq^5Zp r,B^:NJ07Aϊߧrէ}E4zAWr%`HpZp={o.{#'uMTÕ[gI{dLAN }be/F? A]buvqݓ[3<4MBTparN[0O4\ۤ识BoƸF >'dnxN#ik_Aޛճs#;w͑2|ڜB8"f;GZ@ -?ZHu&mٚ< DVn>* ך< "™3`Â"0rؕ|,lQNeP0xݟ=ϺJ9mX-G.؀Ƭ 8i -'h=,0V Px8kA8(w}Bׅj)ȇ:x,=NqQT]2]~T/_J:x>`!e ֐p:s*#$p9ý<\Ϲ3ePB[Z89V:AJ@Ͷl@RՁ;hܜ :Snt(&#ސ K X,G -.~e/ -endstream -endobj -118 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/one/two) -/Descent -194 -/Flags 4 -/FontBBox [ -20 -250 1193 750 ] -/FontFile 117 0 R -/FontName /XTJZVU+CMR6 -/ItalicAngle 0 -/StemV 83 -/XHeight 431 ->> -endobj -119 0 obj -<< -/Length 7907 -/Length1 1405 -/Length2 6502 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR7 003.002 -%%Title: CMR7 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR7. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR7 known{/CMR7 findfont dup/UniqueID known{dup -/UniqueID get 5000790 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /ZRYLLV+CMR7 def -/FontBBox {-27 -250 1122 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR7.) readonly def -/FullName (CMR7) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 65 /A put -dup 49 /one put -dup 51 /three put -dup 50 /two put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{ޣ\u3]G~ 7G!/ Q FM~f/m*i("!i -K5> ţ d,J^,]^ -z* +khjOwq k&,_?Ɉc"n?W)Ջ kÖ投`Z/S *?c|Wgoʮbi8hesQiɺ4)FvP Vؐpik`j`EU)oW jBNfPTa_$ uDd3QBZSfyu4 螨x঺N<1Xk7I>%} -'T)~$I%qPI#-MVxkx@޼ۜZJ6h=hAڰ:#obv0e\¡0cPBz{f=d1G'{1@dD~yXrDOZE.ϐ=(%^/2V)(mfR20`މTLm/QL zKMmͥ +^vA -oEGxvXIxAW>xCª5!w^ ĥv(4,-eӻ?/R?Dqeq-xE $ܘ*3oᮘY+0{+N.>ψ'=IJ -f]̇C"spn21 {3=Ej4ZN2 -K~*w?#9; -A)Py 7}^muF2x~m64&G?r\|6L)ew¦ØB+rBc۞3v -!:0{uL -âAj}{q3W^B'(Yhn0WRS?u Zin=ٽڠǘ){s=m\ul^GhN@(s x6bM'*'6?nA{,1{E.RxmN4k(wl30M\Er -pty o> -{a_S -[D.tIEӽ ]fVՓj7Va_a"-{#- -:bO[)HAXE뻔Ug2zOqq" rI~$>s0Y@Ȩ5{I>y炲oCA2=B?"R -g_,~q.E| noϗT6;i?Xb4}teL1~&LdZ}2W.4.^%*D|Z?7W1 * DD?P_toKL'c ߇mS>-#| ;[R1ڢ` -@@onh.VF+w3ݟ)RX#9sz4X"#bwL{cFNj'ƌQԑt2Tn~. |_ߐk(Fm -n8*Y3".g~3SBج!͗s8 +݆ iD7D#oEMP00pn̋E\ٮ+7_ QzRĉ iDoB=|n$2bVÛWRu^]72# -x7SE5OU:?oq W\qPt<hR,v7EbZ5=>Û֜#hSRA>2O?l"q(DOuk4_}Ǟ# `N0N_CB<=gKO1/a!!ԓ(`J˭9.R˨y1jlnL`f~ͪuJjwD19K^W7L(ҿkH8rC/_! 1gg` bu VdoT_E$ LZCbΏ)#ue*<m}}<Z1]7n=6c~#`oM`IGCcIR(f 1?>+YKCZ%s)pxHODRhL⩩? -F,@۷l-%xWuLT7a5 -b=oюca -rPYqf3UeQ6ju! tYL,#Ev8?@<m?ĸӿY7^U0M`X,oz N]CSpbӿ\{2,1ߣT&JRCu& /D#eΓ|}J-ozOYTC]i/ K^QaCi{;ᤩ`; -@WCk2YHG$JԓO>K+ +F. %KWWZ ucQRT1 >r튌;FG֧':ũdXn|I]ͨxq/1siN$bppa5DC$6lg*4/*$Mmd$$0el7aa (w3\\XAȿ4`]|v21) d6.7FkC/1J5deGñqvTߞN|@\%eC_>$X8cB'f{ nQZNr Rn}R1Bz _Мך-Ekjmnk"5j/2~bE9#FmY۩~|NDpTT6Z%H ctjz3\ */09R[Ƣ3/c4֪K^ 3b%B@$Md$8(sPWcY:2N&q4$ -VYvHS Gr +?6>s{&@ Xz #xHH+D%vZ~WO?V33N FӁ9 -[" "rme{3L7gdzR`QK8\ڕf0h <8 y -9\PD^1L1̄\$CFblMQz.Iۯ8fv -%ڞOBTVHY+pJ}S -ɲmpJ3Yas ݟ*SQYLBP_[HWBQgf `~[x/yp -vi >zxup^ľ@#uw<4b,m*}p…N{fE@fNg.`d"ŵr sr45S-U_x`F#忐{+BUTK$GÚ t3#;8d TpLxcXdl!vFwאHњmA[w0\&CPx#5]^%U3z*g5PG%E)QG"0)zA=W J]QI7r:s>Wv Z8yey5HE <+lWJ"W}39oWv"o9aض8^>QL%@_\^b"Ap6@mVy -`0="nʉ?6* /zOMpGfT3ۘ!L3~r,}CN''HN<#`h-p?{/h:â3di|/*HEnz\5lѕ:;ܩ'$"X^Xˋ#HUдsĤ"خGrIdFΤ -endstream -endobj -120 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/A/one/three/two) -/Descent -194 -/Flags 4 -/FontBBox [ -27 -250 1122 750 ] -/FontFile 119 0 R -/FontName /ZRYLLV+CMR7 -/ItalicAngle 0 -/StemV 79 -/XHeight 431 ->> -endobj -121 0 obj -<< -/Length 13328 -/Length1 1851 -/Length2 11477 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR8 003.002 -%%Title: CMR8 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR8. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR8 known{/CMR8 findfont dup/UniqueID known{dup -/UniqueID get 5000791 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /TPJKYX+CMR8 def -/FontBBox {-36 -250 1070 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR8.) readonly def -/FullName (CMR8) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 67 /C put -dup 68 /D put -dup 70 /F put -dup 73 /I put -dup 76 /L put -dup 80 /P put -dup 84 /T put -dup 86 /V put -dup 88 /X put -dup 90 /Z put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 103 /g put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 46 /period put -dup 114 /r put -dup 115 /s put -dup 47 /slash put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl7_gѳs6;P}tx,IvJ3Yʫ] -=~Hrl;H :(xP/PL͍SI'sb~|PpNcOAͧBV")Th^Cx(Ry,s)+Hߋ;m*?>H"%N;8'bGZÕbd ^i$iaesF)l:}3X - Mv%GN,Ҧ/~`Љ"JO238ڐi -]IGcf7Ԁ2ڣ}T  @ &x߳8h -{ga5Lw'~=OLcgPv9F˛z%e|O/bV K ^Ć8ԇ<)M<m;疑}Od1]ZSmPf4Ժ)}MPg2вl1gFޢp V}{<[5iJOY>5XZ$157~Zڕ-UDm?3δ쩄'V+RGpyDHvx{pcL1w¾ FMNg(S ?)?;@ṂBN߬GXDio n PSSXD[kg[tU^?f27#xUým`jck$u:RمiEUա<.^Y&ۆo9s> û -8jzIC%oOn8Rg#;D2(J+|Gk9ڲփey/9+,-b3w9W7} z᣹өUyTpt_24a6s!O #i׌$޳\Apr$w5\plYn1upd[lk!lRv4_x_$V[HZKr\wu%_F ^ =ԝȆCf%-۷R>Qt@2 )~zx6mXFVCEOxJ -jFmh)XɽЇ8{u c*;e?blV|@-jAf9Vb 8Tdj4!VerZvZ,eV҆?0 -ZWGvl~و[5rL}qTvmjCbM:gÇ VOiڪ#|ym-4-, fFxWpsX!6q-M'ŏ"1,sxɵISĜV"^j73EvV(T^K-k?Ӓ.;d{)pBh+4uU *:m;<%s!- -8X+p&4jO^1TpvD^ x$+flx7=1S6>rMz 40] XC 2ƺ_s5uD^'? jeq (ӓQEuf%x(m"B (brqYqu]ΫHgp7:NQAdYQk(|_S/8aV%'ov"U2!kh5Q?)投g&J$,jS]&1Fq**X*ilSfN{qZ '@dnl{"KDŚ 4tTY9X}4heQ l_7@ZUĩ/Ac*A\4;N{45L=!V5. }rKqS*'R=:tF_}OV-F=;*ZGoe -ED,A$ CÚI9:Fω/%`,miSs1M>l搣Z՟_tJqǙJkuBy#+1HLabL 剙 Wb])Qjfnpht;\܌8:,{=JE2[WD{D7ܻ9'Jޞ#11j:n+G,,ls3݂FITHH`v=%.ayKyMBn!Sukyv"5Dz -֧'4Q| &֨ӷRc3k&ӼJ 4m [[h|]5 -9Jȍ -0g_ -wn{QAnGgIH]E oV值4:(\TYs7HAe{Ю?VN,pPTlΟ fg;I?"BDyв LM> -E,4c| -}=xbK2^^WUAV7xQ~e#EJf/5R2 jn@FԚI&d|+.;b^ɺN(S k< q/3?׏ƚ~sďS}V7+v8kܩ!ȿ}x =7Z}ǜ]c!j~?}&bXqiE3xmΏZ6զE7C+:Kꉓ~FdNg1Gκ%ׁۃ1ýwCl檬q1FQf1Ż9\@¼(ň^Eг%( fJz^ ' R 2͏aǃYֆZZgd U9/|VϽT_&$_=1zGGx /"Fo<,*#Yo:a&jCȯťuK`uŽ /uwaEt #l!} j؇'*eRh-.h;hMoجcx(iw N̸u T=6^ V$[f@[sk4kJ@/SOnYJ\"mz{1*JKْ|(nwCָ 4&j_G.Yb[J87*"&!Ν&${G?`lê);&|vMÞ\SSELok.N&@`S9eϋci n "*z(N(`(j>C1*CɚIbtrjcWqt?[Ii56߫AښIJ'{-Al$h;m#Q5dd0u3+CcZы|1B]; T}݁{*!O^5 ;6Iˑm-x@ʏs[2 NCb+i+Ɍnu}jlD=_}ٹ*13?9r5\ʥB24"F#KLE*Bmw c,ɰh,<#fx%+L54yR#Ss+j%rqJH엮`S|'a!7[Z&.BvK94{~ͯ'ElB9 6gŠnS&}FL5r1}X蝻?;HǯPO*E4%_Qy. +1}ށ;\SlKE@%ŤQ"%VD󩉬y!;0j`.(9d !0;/[ċ>#qod]O>=z-)dgWl|nLղ FEHқ\~l'҄u6UeGBnKM̉OeӁV?hoR5y?ݙvĸZ@'+my5@:pqU`y -2~&@ʹNt;=ΰ oY+KۛFtz/zRk]z,l93& ^ y&\ -v+vXuC2I~gs="(pQ"RQSq1x̦,1fɈ[G]x&͕k5E' zFm]mT{ςh1Z(vtO:kТ4oP~Ԣ 豟l;ݳ1`yI@!fLE6<+w/_+XNVLTI?Yuk6rga tq=M=?u4~h7ajGw֖ˣՙb8|7_Aǵ2s>@rk&$n·nٿ`ϼdKDNf60ƀ4#&649߮XGOUSV9'&F#U@VreN)tX{bn̷|C'Ob^Jp$:2}osre 3ꁈ#R@D eܾ-찮-#<<\-8ŷ:Ws}w Ӧ\|Jy:,xf~X0O @xLcfġ9Pj'7a3A }~P]T#ZWo T?2#[=UN3JMNS_{/,ӛkGZ$FG[B{S[VUii^l>9OC45ֹVqY@{$9oz@:6Oeb90i.fZH车$[ƾl0/f /@?BˆQ!Mђŀ -GX̺fNPiqJbb"ݣv/Qh/0i>h̒O iơwL/"B ǫH 4K_ r:ݡ`ќ nFW0+I4K3v#(2Gq]X8 k. gn߷!Hjl+@ OEb/ntpS)kI'i.OeQ[kգU)hRU؇9w_H,@^>hG9I`\4"wtS_vՆ,tk+y#2^lh rJ+T1LF4>ϒ_!^y@Sp)״TvIƲblfPxKYAݙihҿ[ϪGDZ2اpl.2@gv8}Qx鄒CZy50ǜ^UnM )D4|M,ff +pt οJD`͔0F1c5b4d bQ6p~es2*()G)L8edGؿ3E0@ꤹ/crSu$zS2zNekzDŽO+yr\/T1QwGxt6H5}3:CuXJ6[\bYNH7EA'0mp6AI Թ:FoAi'7G4G{YjL%à>2y%_g;MB^ш ڎz ^紤@fCz/3S@w`7)Qg^QÜ4f)XO[h_sYi+ UHKۮH&VЂ2_4X'RjG`8[m^ŀnej+;C-|pܥ!q7أ -2^HL*!AjӭA8" {\W)x -2k~_Rl`mVLaf8fg{9=͚-f>?mrkdΡIzuHa̤K@c#,z$Xu϶!"M4dOcGԧYbแQ ]J.Ϡ ep (wnD|]J´+XSL -+`]I9K_dnEd|lqU$ظ%ioMzƵuhԚ -u7?+cS,R!t-+=|~92*%-i^r"1r,d/c Ұ&9"iH!Y#puԁ Wl,Nd>uFHG$ޙ MN[z`@YU,@:Ab"~.m|1/[OxB?pKZ+s6V:Cٛ4?excТ9PƪNDHˮY oA~6D}Q$AP\GoZ RƱƝirs^-[Ж[l#5hBqyn{iEV]7{!` CUFL巜&G,3VµyMUylHmd)b|;5x#HTc;,vz!Ϧ]E.&C.h[_ltz;̈[%̨6YzgZ4G2Z@1 @0+~um`uH.j*,… JJ[Wjd8hb>鼔&y?2# BsZIDE᩽W:͡vMYTG]& #@kdH65jX%@Ң܇RA5nx|)9]Lm59ͤQT}[KisZS3L=-z&H赤ǁ!4N!v2AI.@QtJi1o\*\s$}=5ʥ1Z 9=C'3[/%O[9R53+RM\ bHOX#-ߗE r n* -{1{Dcs:[{x};bZZ3V r<[evie\KlPHb;M.V_KyD cYU@ ќ M<'gc9%`[i0aX=$cs" y ^wDk7RJ=%gwXRfUfHnʸ$N~REm35Ů Zw'NE\X^3NxdaW<Ŀd`DxR[uCj+(DE7wk^>C>-M7 7_s ]uy#J@{*ݯ|k/F>׫9_1O$^@CA-XTȼR4Np$e00K=kCq^'af /N8&^øx>SgTsu`Tl{e >N+bH "Ql|QiIqvqۼzHј;zDWc 5RiWrh!#hLnY ɉ=Wwi%/*b -\``w z#p)ǐR ef^;uxN;E<#ԇ|V =` Dg;T ALJ~c>#-܉sE}yգSQJ}>i<[h; ^(/׫?ڽ'Ka.~.*Nƽ¡ \6dh.i3krV;LE%K" sN6ŚY' -SQ*i 咸aw؝R iK2vO̒^]Jh?[R\dnSveYT\" -g!1Yg -_6ªG,R@M3M -+G~uZYt ?p bh$\7찁+1:>2 O $<ȦHbAib2ɚP[R%˜ -X0!ozUXoD`;̑>V=Keh grc=xGCgWsMtXsmc^֧hLQ -endstream -endobj -122 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/C/D/F/I/L/P/T/V/X/Z/a/b/c/caron/comma/d/e/g/i/j/k/l/m/n/o/p/period/r/s/slash/t/u/v/z) -/Descent -194 -/Flags 4 -/FontBBox [ -36 -250 1070 750 ] -/FontFile 121 0 R -/FontName /TPJKYX+CMR8 -/ItalicAngle 0 -/StemV 76 -/XHeight 431 ->> -endobj -123 0 obj -<< -/Length 13138 -/Length1 1736 -/Length2 11402 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR9 003.002 -%%Title: CMR9 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR9. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR9 known{/CMR9 findfont dup/UniqueID known{dup -/UniqueID get 5000792 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /SJNHCC+CMR9 def -/FontBBox {-39 -250 1036 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR9.) readonly def -/FullName (CMR9) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 75 /K put -dup 84 /T put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 103 /g put -dup 104 /h put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 46 /period put -dup 114 /r put -dup 115 /s put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{x< ,-.2iRnñvپ1䠕 '䓱_r"O_t3kefBݼVfj9ҳ 7! wX: 3Jwͤ푘IKjfWI.kvCW_5gWZWO~]!K"x؉ruJԥ?F6Jq>B^f'<2bSz>/kaɾP"jt}[#[p__ @Y!ɹsu~/8MeC2+{x$*|܆k)D 3CҊUDw/Õъ7uS2v΁ ~ytKd"f!Zυ?.ǥTmBlHEU[ZF`Qy)`gdeFIrU-J~xg4KX { 7$O@M?\(L⩎z%KNJ`ī}W6ĠAP6N錛"7`ܓuN -SX@*i,xIۜ*O/" -t1;$l% p#B+}ڀ'ƱRS^P˵aF(~#ۿB(I&@}-:{yA$m:'}ӧj^\ĺ>segz!,ܵ/u-9u}eIypӶs$dNQ/9<` _`m;4uacxr!LB Cu"KDPoѼczضgӅj=>1Im9!`Z&USYQoeȲ ׿ 0G> ?:. Ndơ]U5=:-z6g&QZI[)( Q ^6GB϶)Cflg=У -p#E뎶o%iiT8v,%&{6"I"Pu>Ul Ҧn}㪣ujyH^^?"8AÆKh_Wq(Wi4s_޾"/b,zVgl8_GjjxCFTģW"1v&V@}B8Wt9fggs Km }x[!.ZCgA۬<9vD(dh9,oK4Ѐ?Xe^E>miQ>L -|(2>!*'%芡N 7Ԣp> Wr1 N{L:+>+͖:U)h|NS&V<C.ꬼVݦmwҧG06RY H&9g>1iWI?ƗųȦ2•Y;yӂgo٧ji]WQy_6K1_@H{`xx -_gg\It5m%e|0/3Tizwq}ʖNIAeG ='XC8o]?ew(m*>[G9贰c.b7Eم}S(EJ~DRbx `bn* GoB)7!SԦ`o ?9h{Fk9B -L1yo(QG$0װ]3#,OJ8|~"Oog(ĻxCg픻4}Pe &ol0' %Y>VNo؋lj=;xĭ3)!GtfJ](2{)ir18/dYY1AgqHus'3;퐑˞RNt(n> -" -O`AoxbE ҚO(JݸtGhacb-iwS9϶](?##ͬ7ۆDh,,#X=@c 4?q>!7'CR :p\(rGVIʵh3̓1_ -տӄQsbv -tü$>y=-|犬DHB//gm?SFOEn7UߎUfݢ׼Exmþ_DRan*=vߕ2teX|uj 5Θ*{txbl&V֥ !Qz>!)x[5&\#@ag$5$h;mUx)|Rpf *YF˕Hs- -*=,$4zkbkv?JTEz0X_gS"TݿEԓfY S`9ڳs pc<ʨ?Dс] BG?8""t9ES)Bx:oafD&_<( 7NL'%_1T69ypF>\'Cx~LN)VޔO0"A \ũwyzN"3+aYI"" [Uw4Gׇ(ឳد4drچڨa*R+d,wVm~A)|Iy@ -A%0nje<3D]=KԪZ})Bi#ycJ&kusgWE[Rw;)TFY߁΃0u, LTˎ!l6p(RJ&4ҧ·zD(8eWEO (bHN9I2qM"Jp߳ȉLx91( j{x^P@XgS*HXbe&hZ_OVQ#J;Ĭ3q6KXQf M<PdhJ iJ@YoJ fڃAyuVi#84&D:dO&FB+0M\5bDl[Wj>Ju(RܨЗŇM;UFߵػ6ct(Qm})mh i1rn)Qشξw/{I3;4gs,dQs k_S+y>{DK3-z'C,b!HfYLA~q0.f2nco,g5r#|m05oJpHCou{ P1} i&T k!kZeni08amql!2ŧYs}ELDGS*)@N85)C,wҚ4=6"Mzt]AJ)]Lr*InC^Q!IQVZc2ՐU;BFbFկ8nXIAL ^*‚o.\SYIuyXs? 1Џ:GdqN$JgnLs{BqY]jfYBr뎊i5pSCq: -99xec]R{zC?yOS.+T#`J**Or: 1-Ga"FXb2OF+< PpT)Y(aVK -Zѡ̍@ݾO:r^:M9s q@*DY_<Ib>Ce[@Ч]%Ȁ#K7Rjk2A>&^Rz=f)gjAݓ'xbBPd<^Ҏ,!ávm J!*5ҋ.5(K>++4y@B[Y -`͑!-|RVMr6 d$jwe(%.`. t -`n1h nzeR#nmOنwwOu*NkxcV9Hq82ɤ3՛.S+@&\]bWߡ!Nޥpa0fln -ED pCr:Q=̝W8{mCUط;Qtߪjƚ|YQ4C<ZeoD>소V@R6I+jiM׍.;}Rց0!3+B04OqߤyDpk~rVUlF=~K,܏ Єʳre!3wr |fж|l24"le֙'IN,5LkME(9hRGM'W vnvq7R7nmpXr8&kfLSHJoe4+7' #l~zpIɀ=*k8? 15<ۜq_g]]FE5I /j_RMFsv3Fl5\sI\GCq{{* Yr*+'e8%7?`~wu9rYޛ'PdwƱ.=v힗su}]?~.ʙvj/g|ځ9hmag18&Q)ZYxqxgJq#_V{"^vуVWh6R^0CxxLJ`$dCbu;V,8;X zS4;AI#`!wwl[z~7pR/>(кɄ3ZʪOu?(땉aڣ) ڎwuE&]m'@tAtP.޳${nA~?*~>C7^9 %5g5v{~0?:XwELFM]ўX|JCe&Mׁ<̅ٱ+JmPAE$Zp햾7d}[<ƓѭC" q|߳1z O>;5tQ\)3l`ĞDtbjbQ NURPKltѱ![6MW/MH9L|f3+X+H;eg0GkO)M_ *ψ'wj (ţT++O`UrAiڡ ǹlzR9xr reiƞd_$|Cmci՚k̞-&%h -!7Uz;)y}`XRsv^%$|\2o&OkkRs!? &Ti~S"I)o0'%aҳ++ke-9FBց+ "R J!>dm`'c`$_;E&#/!X$+[UZ6 ΓOqh#v\/<>) -aLI\l4\ I@#ť+W:tugX|^{iH3hq=o:#eLĠ 7{t V&.k$?u*U8f͹hs_(k%7n5S -anR[%n -JO+e R_Wǯ -Lf픟H(4!zgބv2>Sv'&=@Z*mYC%i J6Oci.N,\j`s Jh^K!_{}5KK;U0{ 5i}ux1@"u -z1- -_%ū5 -z'Ɇ'ל}ɨXP儌6uj=T>H9CD1/T,W, ͱh*7X6DAF7y<tvc2mhAk;G5xZSi=aCN7b&kg.Š ]|4 yCBx0q'N,R4Uw|Xyi.yV֊5`Qj$UP7鍊{K97@Hw|n#7S둍7p!jw:d3p*1&(b䩋texm _OVq 92A~ 5mAp%z`UmJ<8:?DŎC,,V"'1c\gr? :hIvFk_Vv -2%(^!8?65!> 1 x2e!͎}9fEtz"*TU,]L8 j -thӦuA-xvB;n<2He 69:*n.iG\x -Z -;_Yy=x-RR4EsuG\Y h50 KO9yV\`_[3JUQב)`ϮX:2{oR$&j)Fa8H C5nI]=*pK0#(7|oB:Pᵢ]:sTl) -UUB[W8_믑gEʸx:-m1’G"F ԉq t{y捶'܈t7؍bk}IbUVSٴe|{7$Cdx@Y6.Bo.|?x|8$;`S4~dcz:0hV{"ZEoFo=c]T4rdQMf(IR=uG˧v~F5}iA:M{oHބý6?n)ص9>s#2GӞ5쨘e@b9e9nvOhO쿭1|f|{TS8t>78Ana-,"I8+ qN86g"Ryu; f quz rIp:6QL( gp -R*QQ}C7w]i$; AO=,~&A -HߠRdop;-IU5*wN/* -Ǜ2%>(qd$ƢS2xfZ+r^5Jk1/sP܄!{X1U[&_z_\vRn;#xIM7:Xξ1ZA}XS#y![;wxŹ+Im^UѥA lC8(WPꁯϋWvφ-&8e3.!mV+PI ۮ3-U,&jK_Ħq]BJ taɋv|ҤAXFr>@ #mVa1ǥ\Nz9 cTüV3X8B uA٬_+[2G:rp*zحlF؊Nh19\-{兹?:~Ogh]݆niʷ'QK)CUA:y-5 e.5!fHΩ=2DRv3WClXh)AYV]u[FpTqw%hEc@;&3KmzkR\__vUXa #3_cAʤ1@;s{Ō 5?)ʋv%K*zhlbF|Rdɓ+nKUULٕ79LyN/ % q_Plpa(?-!G|fj -{HmiN.:zJSͽf!'!wUpnz=\ i0kЦ1OT$w}Gr7^_(BYǏ-.Lv@cxdfdBO0 Z,,?nb$|H2 >n8~Xӎ}*H.)}ڝQǎ~H8qw< -o1|"PG>frtė-P, -ue2_-!O -v2]Eg.[K,!2.\ n&e,*3Ci( `9y2 Ym#X ԗ7"8'IN5pL&I>. 9!ћFoHR(91Y'ڬ* )d4ۣ@},;]ZKN{Gq!lOyQ6U}ɕ"R&-Cͧarc0@>!^uXi`=ĝ)o\5~|D|s^:5.J': =oe.Gvwv$BLʝY/|GPi>Ru/$B\*niOKO+.]ㄯꣷu\-?Q.N4Uy{%YVi(c9`D8h ѯ{%LH*62L5l_sM5y@qKP?L_<*NSJS> -endobj -125 0 obj -<< -/Length 7527 -/Length1 1419 -/Length2 6108 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMSY10 003.002 -%%Title: CMSY10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMSY10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMSY10 known{/CMSY10 findfont dup/UniqueID known{dup -/UniqueID get 5096651 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /OAQJWM+CMSY10 def -/FontBBox {-29 -960 1116 775 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSY10.) readonly def -/FullName (CMSY10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle -14.04 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 33 /arrowright put -dup 106 /bar put -dup 0 /minus put -readonly def -currentdict end -currentfile eexec -oc;jAw-ᾉYň5t&נ{hLGqB`d˗Pة|*x\ޖHtEB-gedog7Q`[['W73sZ9 m !tAY!$tY\r[uTIUiBy[Ȝŗ3Kï6zJ!˒Js&B5C"m&`7Ӣƻ3ugNC O~̶uo5=_T/ h,$B%dʘ3l MoYLڶ~3^`12]=l8B6PlpfW< %PIN!ju#,.iXnȼ‡o$ҁXꑷI5V*E6tKo_)RPG;Z@9"V3TTLN Y:Akڬ6̠==80~DQ Q^br/2^KZh`N'Jt4iBYҁ7ޟBU_~\fXAZl_ZƎý'xHbG:"l5CU[aLrf 1[;4p^NpqBD '؅93M&9{ VD 8 aе2n.hf -l?K[$Gp/JzcF8vP3/XO6yAo~]WqDMY4ߧY̢XPEL2_2 oH{ -1x'u|o WNRE홹&lF\LRh1Fb}+l C] (vfo+fM}l?c*ވ"^R]miKOҎ!I ӲR_tW;u@(#t*̧ U{|Q}a3Fl8xtHWA­;!V CVov?³;=>,㧫\"RvRCإQDh -@_,˜kbflAIP^wٚdIHzk(c3xɁSUPIf{KΩs Y/v[L%O@HdjyTõVmqgC9zTC/t~Řo*9rIojUKxj. ,+b1ֲ IlDLQZ3P-no'$F zg!Ј*oj-Nͥͭo8KwQgݍp*1^.֊ LV~m la ]%."`_QipŎs5y.Xͮ)Td1Kk̊jn0zGqaWQ%zJX3tIy0ľ.#[#D#EԂppF*ޘvrOdn7n f9*X:>Ǽ:*Lf͍9&aj;+{0 )AgðK*XKV'zZA) n TÙLJ^Di[:s<ܸ2!U|#5VfUqP}|=G5O|Ps9}* -+gpA,,=|j25Cɂ7 ./Fɹ0tRẊ."we hPempJo@▁_A3QBV~$9Ej= -]? {w_53Fgӿ4BAq41Pf ,Sş6r[v` xG$.} ̔ϾF͙c=f!*˽./wĉR8(@ًz c@N&Imݣ>X!me@lW"VCH8kՑŨj]n3X>Jz?D=Nbn {qbY(>"8*苾ky3o H Dw] d{EʥËw.$Vhtzk$kk$]4cfCW@3plQQ晉b/pTqF8_AnQmK{&z;<տm[i7뜣'*qXTnt<Ռk/?2m)fy#(`%{!Q/0&sxfB+rE[tgOKQ$$=ל?d@3c)]3%*M}H饞;Cdrp1jFcstG'C\p))_)( MM - qv&C3NLZswTPu{sϰP+-UFUP"KΆ+Ye7?0(idL;gk9(YI-l`;`AH:YHb1H{wR^Yњ, -$FԖHDV?pyїP%F=BGKPh~N[I_ꈀCTzf <Ӗ`4|mE1J'$`}R \N2kfaouJ73vKW{M3?׏M]:W;vX;B X.PI;?!T . sU]䮃=X 5rMt>y=*bC~^ tArl'Ŧ\؟L냡P&7ttuGz;Kg4э;u)";SvC~?J/F"6U.0>+KQӄ0"ӫ=sxoJ]ת!w6O.}t5V˩+7Us֩yēTC5GrgU5$&|~G8 Mv(jt Ϣn]]QWOؑm. R[ИoNng IF:?tؐSUOcj2Cm[O7>kWkX' #t'Xd9+E7Nd8{]m/ ׎dvYYwop!EP7F?ojP9"gBP;B^QO3*B 3un$I_Oe` -$`}-9Q/ĥMe?Ұh]b _2<͖+tª[ϜJO@%MI tv\/bMVF05+kI2W9>f} Ķ3tj|" -[LhY)o57k#%H\,x|ssxH͆|;` v%گT[c]e"GUj߫ytvx:udQuZy_Td"b+O]lx'6w6XCDKOf(g@w]fV[~1F^A3v Ovү2v -zT0b#[zyϒ$e1k5dRA`(Ņ@{=yW>>y@U;=H;c{30ü^ծ)ՙ-{OO2R´xQwBgБS"תlbz;Iy\EprkM @@e&3lʉtS%)/pR"2u -Ee5+ٰsZ'bQSlj zvހ~%.Kz\NE,eV2=Mo)-JcV:U2Ѹ>1ȓ"QWOё4*Oz.cjcY&=7Y,A5nIF/?̊ ]as.N*T 9Ͷ?=T"m grvdNxt(h,Dޝ_v -y`+W?od;&ȫAI`knywxż5č-ly SZܤ`Åq}ۥvkmT9ȻT 3"NlF9Tcb`eL֍lU_>iD@PnӃmHA.|Y/"BձO%fA7Si5=6cgI^ؗ Z/Ez4-l;¡^ |lTM~]9< -.t:Q1'ar|*ə11-VN"DM(xSRJk*YK9GW(Ru~|iBcC(†k0MugQK*4(vHy$dor]}o4e%h,OqAhxѪZ/=T -$$z67 -endstream -endobj -126 0 obj -<< -/Type /FontDescriptor -/Ascent 750 -/CapHeight 683 -/CharSet (/arrowright/bar/minus) -/Descent -194 -/Flags 4 -/FontBBox [ -29 -960 1116 775 ] -/FontFile 125 0 R -/FontName /OAQJWM+CMSY10 -/ItalicAngle -14 -/StemV 40 -/XHeight 431 ->> -endobj -127 0 obj -<< -/Length 10505 -/Length1 1593 -/Length2 8912 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMTI9 003.002 -%%Title: CMTI9 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMTI9. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMTI9 known{/CMTI9 findfont dup/UniqueID known{dup -/UniqueID get 5000827 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /FOJGQS+CMTI9 def -/FontBBox {-35 -250 1148 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTI9.) readonly def -/FullName (CMTI9) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle -14.04 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 76 /L put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 44 /comma put -dup 101 /e put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 114 /r put -dup 116 /t put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsS?#;IHIRd Ȅ'w7 Ἲa }j𙪎 =TU | Ӧ!b^~CJ?;UߨY,Ԭw34D2޻$Xec,IC0aq)-PUaVpSj*?4PDJ ƱNJO'L3nBg%dO޻ƞ BՌ:9v{Ұ%4II-{XM*4ZίORUJ O+"ґvO@3dJxl1Ԛ^}AKG]\Үӂw.@,I؝8ՙ^|٧ -HZsN2u զ,WӮA 33pqJIkEj¯АG8< eMi u}JymKP:cՆn~#/ ĊK'@`F,PFd/\*k\4 Ew>~I(G%w>hI7E?Oz&Pf} ʪշM`j:W24,hV=d *Nu5"$Q16PN--C&>MX ܴ/HG'+:Yӽ뜀fYM2~[z%Q #Tb[zNE!PX1G $zC«>nE|τr'xZ[L#{6@^.|a[bZP js|,dkb}~ā`9ش;ޗ`c,SՈTٚUIR $W\ΚOb_tsnV-8;rsIzAM7ŽL&UkD7§3D񃤐xV} y ǵ׏i³7N5 İiJϨA L1k$O rŃlϳT"ߧD;!U+AddD]t\4IqSҫ6tΟM,I6UFf?t.ZwdTcZ;z W,w)N!!\>07A&.~Πi#FMXz/~ddwwU'(j́t~qBc8i3=$[Uҟy?& O;4x cV haزò]矂FCRSFxR~uZ?2iUj<B'QFX8S tƚ({֟{x [:1YZkDP _ m+5> -kĿrv,=4flz. Nx]0ȆŁ0}Sz%A[7pX+2"o5T{i Ab,V"tCPُF6q@gH1nΈ_=zVǶoDַƸ럒RW\܂Y XtI@2p_'lR!2{+?FoRyR_mr9..>ýv+,]D_2WDujNnI2}X嚉[@-[a_oU6.wolJq *]A/m]#(1»!I! ;~PIg Ju4kh:qKmWRB}%"VJK8fX Ų3"GS3Jh;_3o4 {U4X)K+>fΨۜy~^v k` |BJK08j`- -4%.qQsK.FQe ڴWOlG9ْQeꍲ4Y -s -RՋ^Ff;9D=g%7%z»{`I1cmAH1oYmE&³$rN;*,W7_,HqE'ig^)b~f߀i%!7RN74tUQdد<"8z kK@A]0<6HQs%|?a#V<!C䠚${fT'2Ϙds @Nu UBT?P :\݆F/idl1IZ)ƒ7ֵ;+>wbJx6=tچSe﵎cIQ\/?39bݫ/i8Օ佪S1(+TBPWPxnԣ[9؇ԒG8NFӺOB͒;zwU2t00QI'4S)l#̀"4|ZBRlLC24uGw^Ǽ2FJ%[VgT@qɞV$/N]S;PG"ƥiZ?/e6#7$j,e@aS /?I'C*݌5 ] m*,,yđYG"~)WŠPQ_kM@% #mHOOQ.a.c;iݎ 9Myνq_ҨUaoM AxԎ01¤KIGf, 73nG5mH&-,bNP\|f u[:O%7F-%;棠j^2'Ӊ._|tƒqoidуs" br"(a 6m׽ SEi 5Rf%㺮=J)H)M&S~iLK4JArmj7iv|e+odsC WOя4?߂UF?ԉ k*N!ܲeRjK-iY^e&2RTs\m|y`4ZХng9&JX ^p -풩yf-/|lJϹlz# LY/=Fs7k2a|Rs|cq?d2E҃ŇKAz!w- -C-jiR1X}M:)T9,Iɺ\XٸQ,ܡp4YtF1aubgYcMZFO6I ; CR(P -1^~nI;ʾ9,rТR6LU[Mؚx-&ٳ!YBIV'Nf2uͼ[sJק."&ؒiTM* P5 kJKMGNpp||DQ2qAB7}Q `samoa~6vT!Ҝ\߂a>[((eN1(m ڪW h:{ADOʳ[q7;֑G˜'!3 wBj6f_[6u8\x#Qyb_*pY5 %Q6}&^\W! XVt 3xb]nw8"w=yprZb6 nmbB e, EɋNTSPo]7ઔPv93UU?hP~%us˪?, kRjF%oxڳr/D5oJJy]hޏtñC]A|l|5Tz%:SܸLm-H'X4dA4k#K򤾃}hBFۀe@Kt޼((R$ C]s9H"I_4obAw#t |(?K>Iu+ȡ)x>bϢwnћLBe ^3JPS3~WA#Z=K^mcRھ-qMT Žөm8T lYy}0O((`j|TsǪvR_o./9Rv"Uk/5AGM>n/o|L>7{ (Xի#hO45+DP#ʓfw̯lQ7 _2|]w `cd'-H|_:k/|_$ǁSUkxT86Y`?Rx/=gKA=[©IH :֊c5ckL(19&tP[C= 3: WsaV(Sk@нxw^kϚPxK --/p״ٱ:Ͷ`hq tS -nGJHաb)}>U{[3bT,GDh4fAΈUchN䷢˶BxL;>b|?Ō[mEҽ80A SHfCdT߈j)}#hÅfǝG CsWl~I꼱`?_mޘTѕo/?t%v7IwcyYn &1kP,q`z D_ {&& TK"/ȿ%z0׻0}}Ԃ' U=ucK,c2++bYg\-XnS%\(_;L+EM'$(`翰Y*DŽ p{PSTsMɝ -4Ou([S,:ͨ{Hs^;'%v#r*:<5Κv#%KEt"gl=̰ƬcjRe]\ ׭X -@Fx "g.yhfjVJ7W!جVx53ʼnboPYJ-TdbXaw"CM*2=Q}vJ(),'$/w,j%^PyX+9 s=td#R_tkK Se鄎,W{f?cPxKSuʶw&LD_Ose5+T{p:`@`/r%ӓY06rS> >}!Cf P!%|> h.n-(~/SnB@#ߓ}ArѦ-ZGe;j`B̊4ܷ2%+D:(1{.6!˽,{~\BjZ0.(/Gx|\}9~S 2R Yl˛Rxb+$Juگ1͵doT J J"Tr<="v,q5nL>*-[v*%9{8o&U kFf/!7 -MQS8W?]9J^U6*75~$Ab IC j#.]1ȰF0Şk?I QXq| -x4ZqmT -rm1Ut_ 7bF[<xf«c1̉'e&k=\ˡy'nW!˗,r4ˡxZr2nL,&s'剚0)1Z[^.qg^nV')wF;-@x+A ӫ(>D1Q2S":̿ ;O-7\ -endstream -endobj -128 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/L/a/b/c/comma/e/i/j/k/m/n/o/r/t/v/z) -/Descent -194 -/Flags 4 -/FontBBox [ -35 -250 1148 750 ] -/FontFile 127 0 R -/FontName /FOJGQS+CMTI9 -/ItalicAngle -14 -/StemV 70 -/XHeight 431 ->> -endobj -129 0 obj -<< -/Length 13744 -/Length1 1867 -/Length2 11877 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMTT10 003.002 -%%Title: CMTT10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMTT10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMTT10 known{/CMTT10 findfont dup/UniqueID known{dup -/UniqueID get 5000832 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /IJKLSG+CMTT10 def -/FontBBox {-4 -233 537 696 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTT10.) readonly def -/FullName (CMTT10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch true def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 97 /a put -dup 126 /asciitilde put -dup 98 /b put -dup 99 /c put -dup 58 /colon put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 104 /h put -dup 45 /hyphen put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 49 /one put -dup 112 /p put -dup 46 /period put -dup 114 /r put -dup 115 /s put -dup 47 /slash put -dup 116 /t put -dup 51 /three put -dup 50 /two put -dup 117 /u put -dup 95 /underscore put -dup 118 /v put -dup 119 /w put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{=מ0).|˿!:[LI0lr9G$}/X S`p*p+fwwFGO^ȇ r+dMvNy{YK[z[f -ܷBDq}M8|j${jpxxSƫEu -7%ɑ4\ 9b \)[FU.q4Z8KzwwylϦI5bjcZ,7ɪK:#@Jd@ѻFM_d#g+=>ZaWNH5Y/ .rpf{0D|6@;]/h|.RAɰKml^&W܀{mFՙ3FK~I7@T7AMOP.;ݐH+iX;}jYXEu5ǻpېBIᡊS 7pQ40cH4u[ wYÖ2[tʖڣ?hb*$ -dƥ`$ P :")|UƩfDtd§=5+j7%i@)шT/qUF1tEςҷݢ@ Ѣ1ãF^R?-¦q^!*1gw24/3@\7zaz1).ExY'Ȫ5Fc=nj2cw1 3bI]y: f֡ꋓfg%p^`('m K'K '>EPN,:M{S3G2R@6\?-^X'F.qhYlawNUpͧ`M9_Jgbw! ̼sāTҔDb:Wq!]iơw`褩'`h^ TTInHel䶢͒à`じ 'p(=Y1UѬ/OT -%`&{(K:.CiK9xH-vE4x_5叠ٺ,dl5'bbq,H. O8 NNnZGquDZMgd/.o~*ĽẾʿep˵ -1}oK({AsM`?  }|^ڧ(1vMXAj!Vk5=&Yiw|vCPezFލ`FJO!zơãE.)8At`+o z`!|a*dU ).tIhq*0q>NU 3ȏ7Ā9Ot[3|5r0p8ߕWqDLŽ{`dw|ׄ GJz/H'Z$MΤ8Z̈<7{LpV)%k3ToCn}4>ZrȰ{rUZ9EGu49>`oq/~x▏S|f9׬?X.uBxfGbE.wW;o, BLkkK{9fgg,l|&Ma*$v#ܶ>7Ucö'nNЙ1WƫV Nu+947yG( "zoO_|cZzB@ZAݾ@aexb?>"YTgBlٍ9UFJ?"[p] phU8Փz޾L?:K;W%X$؇:b9pF^dBJR(6[-T*4!yY`'M( MPA#fT"f"?eX&RE ]2L6 ?h)8&/Baf!0tM<ŋX0z1$6$}W<1ji76$4e L,vΡTuQo:=}E˨(S0.1) d#I;P]ɵR蕺I,"?bB8|GϞ\;H -nc2߯xX1!?:t#?%gSe[ze} h)D j-O6vzu@b ixc`r&r Iڹ_> 1SSdY$`)­:] R]FITkxjgbHd.(: -﫜.%pq>>^zx,{^c]r6oެtHTC O;q]8$yBoLr {=f$' F}*%*tdsCNzc5G~¸e 2d]bsz':aWA>4+ -5u=JTH8Yn{-t}PtJx8R.\{`u[%37\rnNJFk Oj+WesMV)JYV˛81d#JL1?M?"śbQᄍfcӟr ar4ד@dv5꺜5eDfR+c=PisX8mm;EL]H|S° #ȿl S6e!3BYTg}TTaΈfgX_+t12)A{ߨcװzP*Q˩SRd*lN؏bjɇwu_ŧ03_m=/Quf -'I N?qj) -ʎӲ+Ar⻩6&HДC9mr|7rG%:Jr<(gG^Ĵ~xP^KYYD˓"$?f7ښ}Xo3'+Te|7~x9Fʓ u -ih -9Nt9uicsJw -cZ|$C[ie ";3|AzFY4WSHʘJ᧞)~%b[O?;Rw߹E5?"W|;ծI6X'\dKs}2{QA)wJtXi3uR3Tq5b|~<27bA}LXO6/'`:8gI$G,M`y}Gꦜ?)c7K !8Bʽl. ouv -KS?0Z<M^oE "1\eάI SsBITve赡 Rkvl$|i0qp -QxroHQvzŃe4`eb?V'ax * ǡ~MCC0"rsSC=y [^ՔI1d#J9&I# g߶c*B+FWndM}RYubPvc?_gMk5Zoof~G>ص͈,gk]E8?`aN/`p22it (/[@|;C]ar6X W,COQY``J_Bhq8 !;.*ĿLMbMKa{boKInUowg3Ս|Rq?'SoIV\]iTgȋ[_Z_j5'N8wM%+E:v -"Ӫax;Y `m e"bsiq>,Znè3Œe(go =$Rܬ'J:cj3f2 -N:3CC;Ov"<ȳA?9=ԇa{M˻&}Lnu4۟V[+._b$t1.}c{<0PBW*ZCƛOS 0aS5Ε-}7-*IC{1ȹAZųrO(G n69i5bDN'wL ,j"WvyMbfv&,ՆHѶG[f&Px&I뤏i=(˗z:[} $>]IlvyPd[tzw;hc9X S8{՝YJ4ks'$r+t7))m&LWQ L7)g͑".f E* -M:7jm !'3x<[r n^s:^M{9Eŷ8BtxW59%g.lK4k{܉rTI`mfl<=k)2cJ4;Um߄QM}= Dg}FBZL98 ˿kN> FfE4A9-Ps{wiw=vr-o{L;YoD?'${q/Vڌl据)]035)o6<;E٘7`Rv\G ,6h莥;]_Αa|:9j% "z7$s+$B 4*]>Q@I-oi9yUq|t[,F\}r&''8O#0Sm,Xd!b(n#ʷiޢ gWeW8$$c؂cq&W,a-Ǻ!|=4'Ը9~hZ4 u{]B.CiyMՋ+ݭZ -Fر]shl5؛~} E3+{y(خtbКĸ7_? q 2ed/=g8: MSM sbkOLؕrI^ l}坺Ff&TE54GpY%x@I$!(9;F8dC\ Ox:Bb(dTPYtv.<郁f/n|/6 SZI-Vt한kx.Dgګ -w~/[{]*2y_1Llp}b/}c>f倨w9Ъzʔ>ɆxNn:9lpD(?жT=&Kqg=geͶ+i#Wn >QX&evgt_0 qm!DI7$N7 obu2NYXU_ Xմ?)#rl9Da1K:$ Ry!tCVV_ܔV |t҂Gn2kn&M8pCq̱|ҐR]8 _rqYgTf^Ϳ30HR,خ4}@t-8ĝ#JE,@F\h7M?YNy˫fGgᅛV>P!%"қK8P 3VŷY,gf ߲9pūT9$P͇}vziMSrrF/J8%KBퟸP^k ܪ"'K+:U-ۯfqK-8: W~eq"Lߠ t5ȒѦoR0o%i%Er6A2S(A΍sݵftDXl?,VNCj4w~23vIJ{]Qz9UHva_^a!gQd _eQ:Ӡ0-bf.7TGW=NHf\'*~zUЊ-P``a2fIs#qGkkFv&}c72gٱ#Sé{Tqu _f/mH(Lnq@s߭LیH=.ЙG|aZB5I)i"zXVMt GQ}k3St݀^o -Ibh2FT6\r/A=ǖU;!o/Pӑ1Q&mCGHc[,Xπ}^!-ZP4]!)z|`y ޭ!G #~"*tJasXqƇo:"482yj QG~BWMNp]=O@BFaQpQ mVYLG 0&Ņ-7.ߪpkdZ$ݭx.mƁn/[n%4TTpqԮGD@Np=ZK{+w4V̢|DBqRocnEMf3 p67wΏIg>@SN=iϔXws^\\}ZPWLz0Q_⠜4'X"Y(pލhAWlhw"\Oqu`@Nxo{$B˫37COK0W>P];Z9bybr6m@(i{N駘ij1%߽q:zW, NScoY֥DȱU_^h>߲@փoKbӵwVF$~2SpBJR*8'|&w%fx>h),OpEYO1̂q"خЉw `f9pfӴf޶)B6U9Wev9UɆ*M5i%ݒI$d=FX?j nfQJ>KITp ksOҩ9@&WxxsFL[=[~] h9Qh!l Ƥ'#{W$"ĕcnY@u(Gr͐Usg w,gRk* ^7:dmNnMEWfPfjz -9@bG#._>A?{whOl`~#Xw -FO?]яO9~b;.gifosSKbφME+N1盇4EyK #g^H#{B#t/ur -cPwѷR\R{!x%6?4o5!ww:W#l^/p ̷{sXP٦KDF=PfrcҹAS(sè`bHPwŗg}q]Pd}#mՈbE1䏔\i?U=:)ԁ&nUCnQc6Υ1~Ԅs|(bK?Tû*0zod\8H`z+ ETlX$b>@F\B%f}gO>+UD f-R,Uu0Csyn'HpwkqZiTb*5D}[n~^UND TKU{yɅf%1si2ppO7vmyT_M K:e e-5`EW0 Z0@)(\ExfαA-]F}51YuELric53R8ތ쐳 }|)pf7tHƩέq;(K7t'Q[ShN 1|%;j.l2F\XւhE -9WQѴ2aq:}!@9Vb?ӯ'{EվڄT*4z`zQ?ڛ)pi&teg1(] rsX%KZ{V_~h(VFca1F\ۏlE^LCn=T{ 0%*T^@дGgws^P=-(/lAؽ"4e - 4{dȆ6 NB0jr붦~I=<>Y@G"\GͶ4ap:W< c/F2VWݪuԳ,;R8jU Qz8ߡ1!$J-NB*W6A.=X=а<<w}kC}uEƞ^WSq em' .iI_\5(1>e937A|vPw%8SʋL«Fר@h՞gX]^[cM?z;sCG6m'Kmz[66Ǩ((|Z "piÙ:ķki<ZuTBgt /ˁ zeruMŤCjhNG>SP2fgq(DNx F[]>MeboreWb ݲ h3.bϏMa-/1_]3!;KJyqx2R4>9 ΪǒtT6c]h~lG6>lG\p]Ǧ8Z;p X3K f.C^w1fBib*Z8R" ʼ/>;a;uu' /gBU&z(K'_m p{NfkVT l2D1D 8I EtXʂٍ5"ǡ[׬I$1zh4U"FT]a5%c`4>?3ye*c3,3""JCjfo 0nqpI|NP~@rL -q\9@qOQQv=[F'Ф+hb߼(@H -"F%Än%rvs}LbjBՙrv5;5=\tw -CxHeD[jO%:^BclX p! jo#]xOKi8F9wX[jW2S]HJ)a$R1 ~^\_{9EЍPo0-޻۠xOJzT[,5R>>cXJ;2J1/_D͜ɼJd5Wg Sv -1D,צ'g/اݑkt卜a-Mb1l" cv?cS q.)!14 y;SRnJ <' _.PF2Sm#ƿv0}Dī#T0%ڻ$M20Pr'A L˞F- ~s0_ /eR6[up\x5ɖȉ#,y רhcTym,KīQr)Z1pezŞ5 ߦ:d[$Y,P1VM,ngJ,FŇ -.F`2c]i7_Vk(_K> -endobj -131 0 obj -<< -/Length 3662 -/Length1 1466 -/Length2 2196 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMTT8 003.002 -%%Title: CMTT8 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMTT8. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMTT8 known{/CMTT8 findfont dup/UniqueID known{dup -/UniqueID get 5000830 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /ISIMRT+CMTT8 def -/FontBBox {-5 -232 545 699 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTT8.) readonly def -/FullName (CMTT8) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch true def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 76 /L put -dup 84 /T put -dup 88 /X put -dup 101 /e put -dup 105 /i put -dup 50 /two put -dup 118 /v put -dup 48 /zero put -readonly def -currentdict end -currentfile eexec -oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsP,WKT"0KDǯҖkIUܨf/+WN/r4qW@d̍OG|Babhy52+2upa,-I"MC㉮0גv\G\% ؊Z\+;7tamJsXPc0NqL%tWtį, );b&L}NֲGi$߲:[<+s\6qGq %E~@kִ[iYKq[ Pvbr~1zV -إh]\HZa2nqiNG84[(5~B.m{,?v;ɚ]QV-;S8HMKMcd;z%+R9$z\zIbp;%wsU?X)K Q -38hVrC6 {Gx|eRu{};jvfe!QYrBQqS9WJD?&;A -Q??.h3~^|w*?]PdPCʟD*E 1HG6Kt)֕hrWA-T7T㸅o*3%0yژ\]!۠z,Z\#ugA"xSJlZ}b 9uNM[]2͢h3RN͎Q9sZcLy\ɘg>}Ի5kV‡U2ZqҖ(jI4d93+- ɌMQ.C |^( -^_x4]bRcAvL !BBMcWUZb1Z$p,2t1[1,7LNkB 9QpSe5 #hx 00Λ{,B[(j/BibYc%%Zu<.xXO$BmKE.1F-4JS7KEp_ :$3ޝ?̼ ?v+Պ;#\ߗA\{VSlܺ1aPOtSâ2n㇈ArʳOV`E t RdhL͐u83$]BMR?hpW~Vԓի8 -& -c{ju]sPldAa|_}(1kMXbSLn&MXV-8oi%'R*+m뀂b@GOIfs{n?p_?5-Wuqǎ %— 1+41h )bP+&Fa?o%~O3?m|@Lsuoq9-4! cC)|v@*m6 ߩL0Gm^;#4[b,< {f6]ƒX9rsD[uu1C+!FoFcXL[&b@uT10% -> -endobj -133 0 obj -<< -/Type /Outlines -/Count 2 -/First 31 0 R -/Last 35 0 R ->> -endobj -134 0 obj -<< -/Limits [ (Doc-Start) (Item.3) ] -/Names [ (Doc-Start) 44 0 R (Hfootnote.1) 81 0 R (Hfootnote.2) 84 0 R (Item.1) 54 0 R (Item.2) 59 0 R -(Item.3) 60 0 R ] ->> -endobj -135 0 obj -<< -/Limits [ (Item.4) (section*.1) ] -/Names [ (Item.4) 61 0 R (Item.5) 62 0 R (Item.6) 63 0 R (page.1) 43 0 R (page.2) 74 0 R -(section*.1) 51 0 R ] ->> -endobj -136 0 obj -<< -/Limits [ (section*.2) (section.2) ] -/Names [ (section*.2) 79 0 R (section.1) 30 0 R (section.2) 34 0 R ] ->> -endobj -138 0 obj -<< -/Kids [ 134 0 R 135 0 R 136 0 R ] -/Limits [ (Doc-Start) (section.2) ] ->> -endobj -139 0 obj -<< -/Dests 138 0 R ->> -endobj -140 0 obj -<< -/Type /Catalog -/Names 139 0 R -/OpenAction 37 0 R -/Outlines 133 0 R -/PageMode /UseOutlines -/Pages 64 0 R ->> -endobj -141 0 obj -<< -/Author () -/CreationDate (D:20201220002337+01'00') -/Creator (LaTeX with hyperref) -/Keywords () -/ModDate (D:20201220002340+01'00') -/PTEX.Fullbanner (This is pdfTeX, Version 3.14159265-2.6-1.40.20 \(TeX Live 2019/Debian\) kpathsea version 6.3.1) -/Producer (pdfTeX-1.40.20) -/Subject () -/Title () -/Trapped /False ->> -endobj -142 0 obj -<< -/Type /XRef -/ID [ <8BDE9569A286CF89B3E0C7EE8CAF8343> <8BDE9569A286CF89B3E0C7EE8CAF8343> ] -/Index [ 0 143 ] -/Info 141 0 R -/Length 715 -/Root 140 0 R -/Size 143 -/W [ 1 3 1 ] ->> -stream - +,-Yma  -&`   2UTOPY[NQSRZW^ "$*,%\!#'V(X])./0123456789:;<=>T;?@AɣBC?_Dp]E=F3GHI6JSKzvLM_bcЏN -endstream -endobj -xref -0 143 -0000000006 65535 f -0000000015 00000 n -0000000036 00000 n -0000000057 00000 n -0000000111 00000 n -0000000272 00000 n -0000000013 00000 f -0000000862 00000 n -0000001023 00000 n -0000001613 00000 n -0000001775 00000 n -0000002366 00000 n -0000002529 00000 n -0000000014 00001 f -0000000015 00001 f -0000000016 00001 f -0000000019 00001 f -0000003120 00000 n -0000003283 00000 n -0000000022 00001 f -0000003903 00000 n -0000004066 00000 n -0000000025 00001 f -0000004686 00000 n -0000004849 00000 n -0000000028 00001 f -0000005469 00000 n -0000005632 00000 n -0000000137 00001 f -0000006352 00000 n -0000006398 00000 n -0000006465 00000 n -0000006540 00000 n -0000006608 00000 n -0000006654 00000 n -0000006721 00000 n -0000006796 00000 n -0000006824 00000 n -0000006874 00000 n -0000007024 00000 n -0000007197 00000 n -0000007370 00000 n -0000007620 00000 n -0000030371 00000 n -0000030438 00000 n -0000030505 00000 n -0000030647 00000 n -0000030788 00000 n -0000030930 00000 n -0000031071 00000 n -0000031211 00000 n -0000031352 00000 n -0000031419 00000 n -0000031561 00000 n -0000031705 00000 n -0000031772 00000 n -0000031913 00000 n -0000032055 00000 n -0000032196 00000 n -0000032335 00000 n -0000032402 00000 n -0000032469 00000 n -0000032536 00000 n -0000032603 00000 n -0000032670 00000 n -0000032738 00000 n -0000032914 00000 n -0000033136 00000 n -0000033387 00000 n -0000033648 00000 n -0000033921 00000 n -0000034097 00000 n -0000034287 00000 n -0000034486 00000 n -0000038408 00000 n -0000038475 00000 n -0000038617 00000 n -0000038838 00000 n -0000039097 00000 n -0000039369 00000 n -0000039436 00000 n -0000039575 00000 n -0000039642 00000 n -0000039782 00000 n -0000039923 00000 n -0000039989 00000 n -0000040790 00000 n -0000041938 00000 n -0000041980 00000 n -0000042328 00000 n -0000042521 00000 n -0000043540 00000 n -0000044188 00000 n -0000045186 00000 n -0000045889 00000 n -0000046809 00000 n -0000047615 00000 n -0000048672 00000 n -0000049152 00000 n -0000050155 00000 n -0000051064 00000 n -0000052226 00000 n -0000066583 00000 n -0000066919 00000 n -0000080824 00000 n -0000081153 00000 n -0000089564 00000 n -0000089798 00000 n -0000099154 00000 n -0000099397 00000 n -0000110984 00000 n -0000111247 00000 n -0000131200 00000 n -0000131594 00000 n -0000144792 00000 n -0000145092 00000 n -0000156403 00000 n -0000156691 00000 n -0000164253 00000 n -0000164479 00000 n -0000172479 00000 n -0000172713 00000 n -0000186136 00000 n -0000186439 00000 n -0000199672 00000 n -0000199955 00000 n -0000207575 00000 n -0000207818 00000 n -0000218417 00000 n -0000218674 00000 n -0000232513 00000 n -0000232839 00000 n -0000236594 00000 n -0000236832 00000 n -0000236907 00000 n -0000237083 00000 n -0000237251 00000 n -0000000000 00000 f -0000237380 00000 n -0000237473 00000 n -0000237511 00000 n -0000237638 00000 n -0000237970 00000 n -trailer -<< -/ID [ ] -/Info 141 0 R -/Root 140 0 R -/Size 143 ->> -startxref -238896 -%%EOF diff --git a/mat/domace_naloge/21/dokument-recompressed.pdf b/mat/domace_naloge/21/dokument-recompressed.pdf deleted file mode 100644 index e69de29..0000000 diff --git a/mat/domace_naloge/21/dokument-tmp.pdf b/mat/domace_naloge/21/dokument-tmp.pdf deleted file mode 100644 index ce67d18..0000000 --- a/mat/domace_naloge/21/dokument-tmp.pdf +++ /dev/null @@ -1,3991 +0,0 @@ -%PDF-1.3 -% -1 0 obj -<< ->> -endobj -2 0 obj -<< ->> -endobj -3 0 obj -<< -/pgfprgb [ /Pattern /DeviceRGB ] ->> -endobj -4 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 5 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -5 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 0.000000 0 100.001280 0 ] -/Domain [ 0.000000 100.001280 ] -/Extend [ false false ] -/Function << -/Bounds [ 25.000320 75.000960 ] -/Domain [ 0.000000 100.001280 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 2 ->> ->> ->> -endobj -7 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 8 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -8 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 0.000000 0 100.001280 0 ] -/Domain [ 0.000000 100.001280 ] -/Extend [ false false ] -/Function << -/Bounds [ 25.000320 75.000960 ] -/Domain [ 0.000000 100.001280 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 2 ->> ->> ->> -endobj -9 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 10 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -10 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 0 0.000000 0 100.001280 ] -/Domain [ 0.000000 100.001280 ] -/Extend [ false false ] -/Function << -/Bounds [ 25.000320 75.000960 ] -/Domain [ 0.000000 100.001280 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 2 ->> ->> ->> -endobj -11 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 12 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -12 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 0 0.000000 0 100.001280 ] -/Domain [ 0.000000 100.001280 ] -/Extend [ false false ] -/Function << -/Bounds [ 25.000320 75.000960 ] -/Domain [ 0.000000 100.001280 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 2 ->> ->> ->> -endobj -17 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 18 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -18 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] -/Domain [ 0.000000 50.000640 ] -/Extend [ true false ] -/Function << -/Bounds [ 22.500270 25.000320 ] -/Domain [ 0.000000 50.000640 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 3 ->> ->> ->> -endobj -20 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 21 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -21 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] -/Domain [ 0.000000 50.000640 ] -/Extend [ true false ] -/Function << -/Bounds [ 21.250260 25.000320 ] -/Domain [ 0.000000 50.000640 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 3 ->> ->> ->> -endobj -23 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 24 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -24 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] -/Domain [ 0.000000 50.000640 ] -/Extend [ true false ] -/Function << -/Bounds [ 20.000240 25.000320 ] -/Domain [ 0.000000 50.000640 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 3 ->> ->> ->> -endobj -26 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 27 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -27 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] -/Domain [ 0.000000 50.000640 ] -/Extend [ true false ] -/Function << -/Bounds [ 21.250260 23.125290 25.000320 ] -/Domain [ 0.000000 50.000640 ] -/Encode [ 0 1 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 3 ->> ->> ->> -endobj -29 0 obj -<< -/D (section.1) -/S /GoTo ->> -endobj -30 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 500.158000 null ] ->> -endobj -31 0 obj -<< -/A 29 0 R -/Next 35 0 R -/Parent 133 0 R -/Title 32 0 R ->> -endobj -32 0 obj -(Vaje Matematika 2: stran 55, tiri naloge 349-361) -endobj -33 0 obj -<< -/D (section.2) -/S /GoTo ->> -endobj -34 0 obj -<< -/D [ 72 0 R /XYZ 45.638000 793.134000 null ] ->> -endobj -35 0 obj -<< -/A 33 0 R -/Parent 133 0 R -/Prev 31 0 R -/Title 36 0 R ->> -endobj -36 0 obj -(Zakljucek) -endobj -37 0 obj -<< -/D [ 38 0 R /Fit ] -/S /GoTo ->> -endobj -38 0 obj -<< -/Type /Page -/Annots [ 39 0 R 40 0 R ] -/Contents 42 0 R -/MediaBox [ 0 0 595.276000 841.890000 ] -/Parent 64 0 R -/Resources 41 0 R ->> -endobj -39 0 obj -<< -/Type /Annot -/A << -/D (section.1) -/S /GoTo ->> -/Border [ 0 0 0 ] -/C [ 1 0 0 ] -/H /I -/Rect [ 44.642000 536.092000 312.863000 546.940000 ] -/Subtype /Link ->> -endobj -40 0 obj -<< -/Type /Annot -/A << -/D (section.2) -/S /GoTo ->> -/Border [ 0 0 0 ] -/C [ 1 0 0 ] -/H /I -/Rect [ 44.642000 514.174000 109.634000 525.023000 ] -/Subtype /Link ->> -endobj -41 0 obj -<< -/ColorSpace 3 0 R -/ExtGState 1 0 R -/Font << -/F11 56 0 R -/F14 57 0 R -/F43 45 0 R -/F44 46 0 R -/F7 58 0 R -/F71 47 0 R -/F72 49 0 R -/F73 48 0 R -/F74 50 0 R -/F77 52 0 R -/F78 53 0 R -/F8 55 0 R ->> -/Pattern 2 0 R -/ProcSet [ /PDF /Text ] ->> -endobj -42 0 obj -<< -/Length 22697 ->> -stream -0 g 0 G -0 g 0 G -0 g 0 G -0 g 0 G -0 g 0 G -BT -/F43 17.2154 Tf 90.724 741.328 Td [(Linearna)-302(k)26(om)26(binacija)-302(v)27(ektor)-1(j)1(ev)-1(,)-301(baza)-302(|)-302(21.)-407(doma)26(\024)433(ca)-302(naloga)]TJ/F44 11.9552 Tf 122.252 -13.948 Td [(Matematik)55(a,)-327(Gimnazija)-326(Be)27(\024)463(zigrad)]TJ/F71 11.9552 Tf -11.907 -32.885 Td [(Profesor:)]TJ/F44 11.9552 Tf 64.866 0 Td [(prof.)-435(Vilk)27(o)-326(Doma)-55(jn)1(k)27(o)]TJ/F71 11.9552 Tf -50.394 -14.719 Td [(Avtor:)]TJ/F44 11.9552 Tf 50.394 0 Td [(An)27(ton)-326(Luk)54(a)]TJ 65.19 3.022 Td [(\024)]TJ -0.325 -3.022 Td [(Sijanec,)-326(2.)-435(a)]TJ -80.311 -23.446 Td [(20.)-326(decem)27(b)-27(er)-327(2)1(020)]TJ -0 g 0 G -0 g 0 G -/F73 8.9664 Tf 26.279 -35.865 Td [(P)33(o)33(vzetek)]TJ -0 g 0 G -0 g 0 G -/F72 8.9664 Tf -192.4 -15.617 Td [(T)86(a)-397(dokumen)29(t)-397(vsebuje)-397(doma)29(\024)485(co)-397(nalogo,)-410(ki)-397(za)-57(jema)-397(sno)29(v)]TJ/F74 8.9664 Tf 221.97 0 Td [(Line)52(arna)-417(kombinacija)-417(vektorjev,)-430(b)53(aza)]TJ/F72 8.9664 Tf 155.167 0 Td [(pri)-397(matematiki.)]TJ -390.961 -10.959 Td [(Kjer)-343(je)-342(bilo)-343(p)-28(otrebno)-343(izbrati)-342(nek)28(e)-342(p)-29(oljubne)-342(naloge,)-343(sem)-342(jih)-343(v)28(e)1(dno)-343(izbral)-343(naklju)29(\024)485(cno.)]TJ/F71 14.3462 Tf -24.906 -32.946 Td [(Kazalo)]TJ/F77 9.9626 Tf 0 -21.917 Td [(1)-925(V)96(a)-64(je)]TJ/F78 9.9626 Tf 41.428 0 Td [(Matematika)-414(2)]TJ/F77 9.9626 Tf 70.911 0 Td [(:)-511(stran)-384(55,)-322(\024)514(stiri)-383(naloge)-384(349-361)-23291(1)]TJ -112.339 -21.918 Td [(2)-925(Zaklju)32(\024)543(cek)]TJ 498.271 0 Td [(2)]TJ/F71 14.3462 Tf -498.271 -32.946 Td [(1)-1125(V)94(a)-63(je)]TJ/F78 14.3462 Tf 61.469 0 Td [(Matematika)-414(2)]TJ/F71 14.3462 Tf 102.112 0 Td [(:)-500(stran)-375(55,)-316(\024)504(stiri)-375(naloge)-375(349-361)]TJ -0 g 0 G -/F77 9.9626 Tf -164.024 -23.398 Td [(350.)]TJ -0 g 0 G -/F8 9.9626 Tf 25.349 0 Td [(Na)-56(j)-471(b)-28(o)-27(do)-472(v)28(ektorji)]TJ/F11 9.9626 Tf 84.336 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(,)]TJ/F11 9.9626 Tf 6.687 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 8.971 0 Td [(in)]TJ/F11 9.9626 Tf 12.45 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 9.554 0 Td [(bazni)-471(v)28(e)-1(kt)1(orji)-472(v)-471(prostoru.)-858(V)83(ektorja)]TJ/F11 9.9626 Tf 166.709 0 Td [(~)612(m)]TJ/F8 9.9626 Tf 12.326 0 Td [(in)]TJ/F11 9.9626 Tf 12.731 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 10.942 0 Td [(sta)-471(enak)55(a)]TJ/F11 9.9626 Tf 47.922 0 Td [(~)612(m)]TJ/F8 9.9626 Tf 12.689 0 Td [(=)]TJ/F14 9.9626 Tf 12.807 0 Td [(\000)]TJ/F8 9.9626 Tf 7.749 0 Td [(2)]TJ/F11 9.9626 Tf 4.357 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.02 0 Td [(+)]TJ/F7 6.9738 Tf 12.075 3.922 Td [(3)]TJ -ET -q -1 0 0 1 508.877 463.254 cm -[]0 d 0 J 0.398 w 0 0 m 3.971 0 l S -Q -BT -/F7 6.9738 Tf 508.877 457.328 Td [(2)]TJ/F11 9.9626 Tf 4.048 6.065 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.406 0 Td [(+)]TJ/F11 9.9626 Tf 10.331 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 9.555 0 Td [(in)]TJ/F11 9.9626 Tf -471.058 -14.179 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.014 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F7 6.9738 Tf 8.944 3.923 Td [(1)]TJ -ET -q -1 0 0 1 98.752 449.076 cm -[]0 d 0 J 0.398 w 0 0 m 3.971 0 l S -Q -BT -/F7 6.9738 Tf 98.752 443.15 Td [(2)]TJ/F11 9.9626 Tf 4.543 3.435 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.843 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 6.49 0 Td [(+)-222(2)]TJ/F11 9.9626 Tf 14.396 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 4.859 0 Td [(.)-444(V)83(ektor)-333(2)]TJ/F11 9.9626 Tf 45.7 0 Td [(~)612(m)]TJ/F14 9.9626 Tf 9.844 0 Td [(\000)]TJ/F11 9.9626 Tf 9.696 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.568 0 Td [(zapi)53(\024)447(si)-333(v)-334(dani)-333(bazi.)]TJ 43.487 -27.555 Td [(2)]TJ/F11 9.9626 Tf 6.098 0 Td [(~)612(m)]TJ/F14 9.9626 Tf 9.845 0 Td [(\000)]TJ/F11 9.9626 Tf 9.695 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.014 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 8.945 6.74 Td [(7)]TJ -ET -q -1 0 0 1 319.514 421.521 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 319.514 412.197 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.833 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ 11.158 6.74 Td [(1)]TJ -ET -q -1 0 0 1 344.329 421.521 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 344.329 412.197 Td [(3)]TJ/F11 9.9626 Tf 5.058 9.462 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ -0 g 0 G -/F77 9.9626 Tf -305.311 -29.249 Td [(352.)]TJ -0 g 0 G -/F8 9.9626 Tf 25.349 0 Td [(T)83(o)28(\024)472(ck)28(e)]TJ/F11 9.9626 Tf 28.838 0 Td [(A)]TJ/F8 9.9626 Tf 7.472 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(B)]TJ/F8 9.9626 Tf 8.057 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(C)]TJ/F8 9.9626 Tf 7.833 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(D)]TJ/F8 9.9626 Tf 12.18 0 Td [(in)]TJ/F11 9.9626 Tf 11.956 0 Td [(E)]TJ/F8 9.9626 Tf 11.583 0 Td [(le)28(\024)472(zijo)-367(na)-367(premici)-366(tak)27(o,)-375(da)-367(je)]TJ/F14 9.9626 Tf 126.645 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(AB)]TJ/F14 9.9626 Tf 15.528 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(:)]TJ/F14 9.9626 Tf 6.091 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(B)-50(C)]TJ/F14 9.9626 Tf 15.89 0 Td [(j)]TJ/F8 9.9626 Tf 6.09 0 Td [(:)]TJ/F14 9.9626 Tf 6.091 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(C)-72(D)]TJ/F14 9.9626 Tf 16.358 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(:)]TJ/F14 9.9626 Tf 6.09 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(D)-28(E)]TJ/F14 9.9626 Tf 16.453 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(=)-334(3)-333(:)-334(2)-333(:)-334(1)-333(:)-334(3.)-545(T)84(o)27(\024)473(cki)]TJ/F11 9.9626 Tf 94.888 0 Td [(B)]TJ/F8 9.9626 Tf 11.711 0 Td [(in)]TJ/F11 9.9626 Tf 11.957 0 Td [(D)]TJ/F8 9.9626 Tf -470.569 -13.95 Td [(le)28(\024)472(zita)-296(med)]TJ/F11 9.9626 Tf 47.406 0 Td [(A)]TJ/F8 9.9626 Tf 10.42 0 Td [(in)]TJ/F11 9.9626 Tf 11.249 0 Td [(C)]TJ/F8 9.9626 Tf 7.833 0 Td [(.)-432(to)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 32.988 0 Td [(D)]TJ/F8 9.9626 Tf 11.472 0 Td [(pa)-296(med)]TJ/F11 9.9626 Tf 34.676 0 Td [(B)]TJ/F8 9.9626 Tf 11.004 0 Td [(in)]TJ/F11 9.9626 Tf 11.25 0 Td [(E)]TJ/F8 9.9626 Tf 7.929 0 Td [(.)-432(Na)-55(j)-296(b)-28(o)-296(v)28(ektor)]TJ/F11 9.9626 Tf 69.558 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.657 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 6.808 Td [(\000)476(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(E)]TJ/F8 9.9626 Tf 18.933 0 Td [(bazni)-296(v)28(ektor.)-432(Z)-296(v)28(ektorjem)]TJ/F11 9.9626 Tf 115.247 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.837 0 Td [(izrazi)-296(v)28(ektorje)]TJ/F14 9.9626 Tf -417.975 -6.589 Td [(\000)457(\000)457(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(D)-28(C)]TJ/F8 9.9626 Tf 16.358 0 Td [(,)]TJ/F14 9.9626 Tf 6.089 6.807 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AC)]TJ/F8 9.9626 Tf 18.626 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.807 Td [(\000)452(\000)452(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(D)-28(E)]TJ/F8 9.9626 Tf 16.453 0 Td [(.)]TJ/F14 9.9626 Tf 99.708 -9.286 Td [(\000)457(\000)457(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(D)-28(C)]TJ/F8 9.9626 Tf 19.126 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ -ET -q -1 0 0 1 270.238 348.832 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 270.238 339.507 Td [(4)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 18.072 0 Td [(=)]TJ 11.712 6.74 Td [(5)]TJ -ET -q -1 0 0 1 319.214 348.832 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 319.214 339.507 Td [(3)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)452(\000)452(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(D)-28(E)]TJ/F8 9.9626 Tf 19.22 0 Td [(=)]TJ 11.712 6.74 Td [(3)]TJ -ET -q -1 0 0 1 369.338 348.832 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 369.338 339.507 Td [(4)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ -0 g 0 G -/F77 9.9626 Tf -329.696 -28.256 Td [(353.)]TJ -0 g 0 G -/F8 9.9626 Tf 25.349 0 Td [(T)83(o)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 28.918 0 Td [(M)]TJ/F8 9.9626 Tf 14.209 0 Td [(je)-347(razp)-28(olo)28(vi)53(\024)447(s)28(\024)472(ce)-347(daljice)]TJ/F11 9.9626 Tf 98.183 0 Td [(C)-72(D)]TJ/F8 9.9626 Tf 19.816 0 Td [(pra)28(v)28(ok)27(otni)1(k)55(a)]TJ/F11 9.9626 Tf 59.387 0 Td [(AB)-50(C)-72(D)]TJ/F8 9.9626 Tf 31.886 0 Td [(,)-351(v)28(ektorja)]TJ/F11 9.9626 Tf 44.544 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.885 0 Td [(=)]TJ/F14 9.9626 Tf 10.744 6.808 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AB)]TJ/F8 9.9626 Tf 18.987 0 Td [(in)]TJ/F11 9.9626 Tf 10.641 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.271 0 Td [(=)]TJ/F14 9.9626 Tf 10.744 6.808 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AD)]TJ/F8 9.9626 Tf 19.454 0 Td [(sta)-347(bazna)-347(v)28(ektorja.)-486(Z)]TJ/F11 9.9626 Tf -385.411 -13.396 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.21 0 Td [(in)]TJ/F11 9.9626 Tf 10.504 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.597 0 Td [(izrazi)]TJ/F14 9.9626 Tf 26.595 6.808 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 15.305 0 Td [(,)]TJ/F14 9.9626 Tf 6.088 6.808 Td [(\000)363(\000)363(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AM)]TJ/F8 9.9626 Tf 18.223 0 Td [(,)]TJ/F14 9.9626 Tf 6.089 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(M)]TJ/F8 9.9626 Tf 22.129 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(B)]TJ/F8 9.9626 Tf 18.808 0 Td [(.)]TJ/F14 9.9626 Tf -48.295 -19.248 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 18.072 0 Td [(=)]TJ/F11 9.9626 Tf 9.892 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)363(\000)363(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AM)]TJ/F8 9.9626 Tf 20.991 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ -ET -q -1 0 0 1 265.673 281.124 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 265.673 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(M)]TJ/F8 9.9626 Tf 21.575 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 8.945 6.74 Td [(1)]TJ -ET -q -1 0 0 1 342.353 281.124 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 342.353 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.843 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(;)]TJ/F14 9.9626 Tf 7.748 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(B)]TJ/F8 9.9626 Tf 21.576 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ -ET -q -1 0 0 1 411.283 281.124 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 411.283 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F14 9.9626 Tf 8.104 0 Td [(\000)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ -0 g 0 G -/F77 9.9626 Tf -393.983 -23.91 Td [(360.)]TJ -0 g 0 G -/F8 9.9626 Tf 25.349 0 Td [(Na)-279(strani)1(c)-1(ah)-278(paralelograma)]TJ/F11 9.9626 Tf 122.203 0 Td [(AB)-50(C)-72(D)]TJ/F8 9.9626 Tf 34.661 0 Td [(so)-279(dane)-278(to)28(\024)472(ck)28(e)]TJ/F11 9.9626 Tf 60.407 0 Td [(I)]TJ/F8 9.9626 Tf 5.161 0 Td [(,)]TJ/F11 9.9626 Tf 5.651 0 Td [(J)]TJ/F8 9.9626 Tf -228.083 -11.956 Td [(in)]TJ/F11 9.9626 Tf 11.727 0 Td [(K)]TJ/F8 9.9626 Tf 9.174 0 Td [(,)-346(tak)27(o)-343(da)-344(je)]TJ/F14 9.9626 Tf 53.299 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(D)-28(I)]TJ/F14 9.9626 Tf 13.686 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(I)-78(J)]TJ/F14 9.9626 Tf 11.644 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(J)-96(C)]TJ/F14 9.9626 Tf 14.315 0 Td [(j)]TJ/F8 9.9626 Tf 6.193 0 Td [(in)]TJ/F14 9.9626 Tf 11.726 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(B)-50(K)]TJ/F14 9.9626 Tf 17.23 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(K)-72(C)]TJ/F14 9.9626 Tf 17.007 0 Td [(j)]TJ/F8 9.9626 Tf 2.767 0 Td [(.)]TJ -231.798 -11.955 Td [(T)83(o)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 28.442 0 Td [(L)]TJ/F8 9.9626 Tf 9.761 0 Td [(je)-299(razp)-28(olo)28(vi)53(\024)447(s)28(\024)472(ce)-300(dalj)1(ico)]TJ/F11 9.9626 Tf 97.307 0 Td [(AI)]TJ/F8 9.9626 Tf 12.633 0 Td [(,)-306(to)28(\024)472(ck)55(a)]TJ/F11 9.9626 Tf 31.768 0 Td [(M)]TJ/F8 9.9626 Tf 13.732 0 Td [(pa)-299(razp)-28(o-)]TJ -193.643 -11.955 Td [(lo)28(vi)53(\024)447(s)28(\024)472(ce)-334(daljice)]TJ/F11 9.9626 Tf 62.876 0 Td [(LJ)]TJ/F8 9.9626 Tf 13.263 0 Td [(.)]TJ -0 g 0 G -/F77 9.9626 Tf -69.227 -19.422 Td [(a\051)]TJ -0 g 0 G -/F8 9.9626 Tf 15.006 0 Td [(Dana)-454(sta)-453(v)28(ektorja)]TJ/F14 9.9626 Tf 84.901 6.808 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AB)]TJ/F8 9.9626 Tf 20.292 0 Td [(=)]TJ/F11 9.9626 Tf 11.889 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 10.409 0 Td [(in)]TJ/F14 9.9626 Tf 12.821 6.808 Td [(\000)480(\000)481(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(C)]TJ/F8 9.9626 Tf 20.654 0 Td [(=)]TJ/F11 9.9626 Tf 11.394 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(.)-805(Izrazi)]TJ -177.754 -13.949 Td [(v)28(ektor)]TJ/F14 9.9626 Tf 30.746 6.807 Td [(\000)278(\000)278(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(M)-109(K)]TJ/F8 9.9626 Tf 23.246 0 Td [(z)-333(v)27(ektorjema)]TJ/F11 9.9626 Tf 58.627 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.21 0 Td [(in)]TJ/F11 9.9626 Tf 10.504 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(.)]TJ/F14 9.9626 Tf -67.624 -14.387 Td [(\000)278(\000)278(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(K)]TJ/F8 9.9626 Tf 22.693 0 Td [(=)]TJ 11.712 6.74 Td [(7)]TJ -ET -q -1 0 0 1 196.971 166.782 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 196.971 157.457 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F14 9.9626 Tf 8.104 0 Td [(\000)]TJ/F8 9.9626 Tf 11.158 6.74 Td [(1)]TJ -ET -q -1 0 0 1 221.786 166.782 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 221.786 157.457 Td [(4)]TJ/F11 9.9626 Tf 5.057 9.463 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(;)]TJ -0 g 0 G -/F77 9.9626 Tf -155.578 -24.414 Td [(b\051)]TJ -0 g 0 G -/F8 9.9626 Tf 15.802 0 Td [(Na)-56(j)-445(b)-28(osta)-446(bazna)-445(v)27(ektorja)]TJ/F14 9.9626 Tf 118.303 6.808 Td [(\000)579(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(LI)]TJ/F8 9.9626 Tf 16.575 0 Td [(=)]TJ/F11 9.9626 Tf 12.253 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 10.273 0 Td [(in)]TJ/F14 9.9626 Tf 12.742 6.808 Td [(\000)398(\000)398(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(LM)]TJ/F8 9.9626 Tf 22.165 0 Td [(=)]TJ/F11 9.9626 Tf 11.996 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.573 0 Td [(.)]TJ -209.88 -13.949 Td [(Izrazi)-333(v)27(ektorja)]TJ/F14 9.9626 Tf 66.197 6.807 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AD)]TJ/F8 9.9626 Tf 19.317 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.807 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AB)]TJ/F8 9.9626 Tf 18.85 0 Td [(z)-333(v)27(ektorjema)]TJ/F11 9.9626 Tf 59.122 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 9.152 0 Td [(in)]TJ/F11 9.9626 Tf 11.236 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.574 0 Td [(.)]TJ/F14 9.9626 Tf -164.571 -11.69 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AD)]TJ/F8 9.9626 Tf 18.764 0 Td [(=)-278(3)]TJ/F11 9.9626 Tf 15.369 0 Td [(~)487(u)]TJ/F14 9.9626 Tf 8.046 0 Td [(\000)]TJ/F8 9.9626 Tf 9.963 0 Td [(2)]TJ/F11 9.9626 Tf 4.594 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.573 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.807 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AB)]TJ/F8 9.9626 Tf 18.296 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 7.749 0 Td [(3)]TJ/F11 9.9626 Tf 4.853 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 8.045 0 Td [(+)-222(6)]TJ/F11 9.9626 Tf 14.557 0 Td [(~)461(v)]TJ -0 g 0 G -0 g 0 G -ET -1 0 0 1 316.766 149.606 cm -q -0 G -0 g -0.3985 w -q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -0.59776 w -0 G -0 g -[ ] 0.0 d -1 0 0 rg 1 0 0 RG -0.0 0.0 m -0.0 0.0 l -170.08086 0.0 l -226.77448 113.38724 l -56.69362 113.38724 l -h -S -0 g 0 G -Q -q -0.59776 w -0 G -0 g -[ ] 0.0 d -0 0 1 rg 0 0 1 RG -0.0 0.0 m -0.0 0.0 m -113.38724 113.38724 l -S -0 g 0 G -Q -q -0.59776 w -0 G -0 g -[ ] 0.0 d -0 0 1 rg 0 0 1 RG -56.69362 56.69362 m -56.69362 56.69362 m -170.08086 113.38724 l -S -0 g 0 G -Q -q -0.59776 w -0 G -0 g -[ ] 0.0 d -0 0 1 rg 0 0 1 RG -113.38724 85.0404 m -113.38724 85.0404 m -198.42764 56.69362 l -S -0 g 0 G -Q -q -0 G -0 g -q -0 G -0 g -58.18803 113.38724 m -58.18803 114.21257 57.51895 114.88165 56.69362 114.88165 c -55.86827 114.88165 55.1992 114.21257 55.1992 113.38724 c -55.1992 112.56189 55.86827 111.89282 56.69362 111.89282 c -57.51895 111.89282 58.18803 112.56189 58.18803 113.38724 c -h -56.69362 113.38724 m -B -Q -q -1 0 0 1 56.693 113.386 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -56.693 -113.386 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -114.88165 113.38724 m -114.88165 114.21257 114.21257 114.88165 113.38724 114.88165 c -112.56189 114.88165 111.89282 114.21257 111.89282 113.38724 c -111.89282 112.56189 112.56189 111.89282 113.38724 111.89282 c -114.21257 111.89282 114.88165 112.56189 114.88165 113.38724 c -h -113.38724 113.38724 m -B -Q -q -1 0 0 1 113.386 113.386 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -113.386 -113.386 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -171.57527 113.38724 m -171.57527 114.21257 170.9062 114.88165 170.08086 114.88165 c -169.25551 114.88165 168.58644 114.21257 168.58644 113.38724 c -168.58644 112.56189 169.25551 111.89282 170.08086 111.89282 c -170.9062 111.89282 171.57527 112.56189 171.57527 113.38724 c -h -170.08086 113.38724 m -B -Q -q -1 0 0 1 170.079 113.386 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -170.079 -113.386 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -228.26889 113.38724 m -228.26889 114.21257 227.59982 114.88165 226.77448 114.88165 c -225.94913 114.88165 225.28006 114.21257 225.28006 113.38724 c -225.28006 112.56189 225.94913 111.89282 226.77448 111.89282 c -227.59982 111.89282 228.26889 112.56189 228.26889 113.38724 c -h -226.77448 113.38724 m -B -Q -q -1 0 0 1 226.772 113.386 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -226.772 -113.386 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -58.18803 56.69362 m -58.18803 57.51895 57.51895 58.18803 56.69362 58.18803 c -55.86827 58.18803 55.1992 57.51895 55.1992 56.69362 c -55.1992 55.86827 55.86827 55.1992 56.69362 55.1992 c -57.51895 55.1992 58.18803 55.86827 58.18803 56.69362 c -h -56.69362 56.69362 m -B -Q -q -1 0 0 1 56.693 56.693 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -56.693 -56.693 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -114.88165 85.0404 m -114.88165 85.86575 114.21257 86.53482 113.38724 86.53482 c -112.56189 86.53482 111.89282 85.86575 111.89282 85.0404 c -111.89282 84.21506 112.56189 83.54599 113.38724 83.54599 c -114.21257 83.54599 114.88165 84.21506 114.88165 85.0404 c -h -113.38724 85.0404 m -B -Q -q -1 0 0 1 113.386 85.039 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -113.386 -85.039 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -199.92206 56.69362 m -199.92206 57.51895 199.25299 58.18803 198.42764 58.18803 c -197.6023 58.18803 196.93323 57.51895 196.93323 56.69362 c -196.93323 55.86827 197.6023 55.1992 198.42764 55.1992 c -199.25299 55.1992 199.92206 55.86827 199.92206 56.69362 c -h -198.42764 56.69362 m -B -Q -q -1 0 0 1 198.425 56.693 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -198.425 -56.693 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -1.49442 0.0 m -1.49442 0.82533 0.82533 1.49442 0.0 1.49442 c --0.82533 1.49442 -1.49442 0.82533 -1.49442 0.0 c --1.49442 -0.82533 -0.82533 -1.49442 0.0 -1.49442 c -0.82533 -1.49442 1.49442 -0.82533 1.49442 0.0 c -h -0.0 0.0 m -B -Q -q -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -Q -Q -q -0 G -0 g -q -0 G -0 g -171.57527 0.0 m -171.57527 0.82533 170.9062 1.49442 170.08086 1.49442 c -169.25551 1.49442 168.58644 0.82533 168.58644 0.0 c -168.58644 -0.82533 169.25551 -1.49442 170.08086 -1.49442 c -170.9062 -1.49442 171.57527 -0.82533 171.57527 0.0 c -h -170.08086 0.0 m -B -Q -q -1 0 0 1 170.079 0 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -170.079 0 cm -Q -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 60.213 103.058 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -376.979 -252.664 cm -BT -/F11 9.9626 Tf 376.979 252.664 Td [(D)]TJ -0 g 0 G -ET -1 0 0 1 376.979 252.664 cm -Q -1 0 0 1 -60.213 -103.058 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 116.906 103.058 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -433.672 -252.664 cm -BT -/F11 9.9626 Tf 433.672 252.664 Td [(I)]TJ -0 g 0 G -ET -1 0 0 1 433.672 252.664 cm -Q -1 0 0 1 -116.906 -103.058 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 173.599 103.058 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -490.365 -252.664 cm -BT -/F11 9.9626 Tf 490.365 252.664 Td [(J)]TJ -0 g 0 G -ET -1 0 0 1 490.365 252.664 cm -Q -1 0 0 1 -173.599 -103.058 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 230.291 103.058 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -547.057 -252.664 cm -BT -/F11 9.9626 Tf 547.057 252.664 Td [(C)]TJ -0 g 0 G -ET -1 0 0 1 547.057 252.664 cm -Q -1 0 0 1 -230.291 -103.058 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 60.213 46.365 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -376.979 -195.971 cm -BT -/F11 9.9626 Tf 376.979 195.971 Td [(L)]TJ -0 g 0 G -ET -1 0 0 1 376.979 195.971 cm -Q -1 0 0 1 -60.213 -46.365 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 116.906 74.712 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -433.672 -224.318 cm -BT -/F11 9.9626 Tf 433.672 224.318 Td [(M)]TJ -0 g 0 G -ET -1 0 0 1 433.672 224.318 cm -Q -1 0 0 1 -116.906 -74.712 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 201.945 46.365 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -518.711 -195.971 cm -BT -/F11 9.9626 Tf 518.711 195.971 Td [(K)]TJ -0 g 0 G -ET -1 0 0 1 518.711 195.971 cm -Q -1 0 0 1 -201.945 -46.365 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 3.52 -10.328 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -320.286 -139.278 cm -BT -/F11 9.9626 Tf 320.286 139.278 Td [(A)]TJ -0 g 0 G -ET -1 0 0 1 320.286 139.278 cm -Q -1 0 0 1 -3.52 10.328 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 173.599 -10.328 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -490.365 -139.278 cm -BT -/F11 9.9626 Tf 490.365 139.278 Td [(B)]TJ -0 g 0 G -ET -1 0 0 1 490.365 139.278 cm -Q -1 0 0 1 -173.599 10.328 cm -Q -0 g 0 G -Q -Q -n -Q -0 g 0 G -1 0 0 1 -316.766 -149.606 cm -BT -/F8 9.9626 Tf 295.147 43.246 Td [(1)]TJ -0 g 0 G -ET - -endstream -endobj -43 0 obj -<< -/D [ 38 0 R /XYZ 44.638000 830.996000 null ] ->> -endobj -44 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 793.134000 null ] ->> -endobj -45 0 obj -<< -/Type /Font -/BaseFont /DMPNDY+CMR17 -/FirstChar 20 -/FontDescriptor 116 0 R -/LastChar 124 -/Subtype /Type1 -/Widths 100 0 R ->> -endobj -46 0 obj -<< -/Type /Font -/BaseFont /RLYLLI+CMR12 -/FirstChar 20 -/FontDescriptor 114 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 99 0 R ->> -endobj -47 0 obj -<< -/Type /Font -/BaseFont /OLUUSQ+CMBX12 -/FirstChar 20 -/FontDescriptor 104 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 98 0 R ->> -endobj -48 0 obj -<< -/Type /Font -/BaseFont /HJGMPZ+CMBX9 -/FirstChar 80 -/FontDescriptor 106 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 97 0 R ->> -endobj -49 0 obj -<< -/Type /Font -/BaseFont /SJNHCC+CMR9 -/FirstChar 20 -/FontDescriptor 124 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 96 0 R ->> -endobj -50 0 obj -<< -/Type /Font -/BaseFont /FOJGQS+CMTI9 -/FirstChar 44 -/FontDescriptor 128 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 95 0 R ->> -endobj -51 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 578.876000 null ] ->> -endobj -52 0 obj -<< -/Type /Font -/BaseFont /ZOXHGW+CMBX10 -/FirstChar 20 -/FontDescriptor 102 0 R -/LastChar 117 -/Subtype /Type1 -/Widths 94 0 R ->> -endobj -53 0 obj -<< -/Type /Font -/BaseFont /FWTCDB+CMBXTI10 -/FirstChar 50 -/FontDescriptor 108 0 R -/LastChar 116 -/Subtype /Type1 -/Widths 93 0 R ->> -endobj -54 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 475.492000 null ] ->> -endobj -55 0 obj -<< -/Type /Font -/BaseFont /XGGYUK+CMR10 -/FirstChar 12 -/FontDescriptor 112 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 92 0 R ->> -endobj -56 0 obj -<< -/Type /Font -/BaseFont /ZOBLSI+CMMI10 -/FirstChar 65 -/FontDescriptor 110 0 R -/LastChar 126 -/Subtype /Type1 -/Widths 91 0 R ->> -endobj -57 0 obj -<< -/Type /Font -/BaseFont /OAQJWM+CMSY10 -/FirstChar 0 -/FontDescriptor 126 0 R -/LastChar 106 -/Subtype /Type1 -/Widths 90 0 R ->> -endobj -58 0 obj -<< -/Type /Font -/BaseFont /ZRYLLV+CMR7 -/FirstChar 49 -/FontDescriptor 120 0 R -/LastChar 65 -/Subtype /Type1 -/Widths 89 0 R ->> -endobj -59 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 402.234000 null ] ->> -endobj -60 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 333.530000 null ] ->> -endobj -61 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 261.836000 null ] ->> -endobj -62 0 obj -<< -/D [ 38 0 R /XYZ 70.544000 211.915000 null ] ->> -endobj -63 0 obj -<< -/D [ 38 0 R /XYZ 70.544000 152.357000 null ] ->> -endobj -64 0 obj -<< -/Type /Pages -/Count 2 -/Kids [ 38 0 R 72 0 R ] ->> -endobj -65 0 obj -<< -/Type /Annot -/A << -/D (Hfootnote.1) -/S /GoTo ->> -/Border [ 0 0 0 ] -/C [ 1 0 0 ] -/H /I -/Rect [ 508.854000 758.209000 515.316000 770.456000 ] -/Subtype /Link ->> -endobj -66 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec.eu/sijanec/sola-gimb-2) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 485.877000 746.185000 550.634000 757.310000 ] -/Subtype /Link ->> -endobj -67 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec/sola-gimb-2/src/branch/master/mat/domace_naloge/21/) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 237.402000 733.953000 350.356000 745.908000 ] -/Subtype /Link ->> -endobj -68 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (http://razor.arnes.si/~asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.pdf) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 140.675000 722.275000 550.634000 733.400000 ] -/Subtype /Link ->> -endobj -69 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/mat/domace_naloge/21/dokument.pdf) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 88.560000 710.043000 550.634000 721.998000 ] -/Subtype /Link ->> -endobj -70 0 obj -<< -/Type /Annot -/A << -/D (Hfootnote.2) -/S /GoTo ->> -/Border [ 0 0 0 ] -/C [ 1 0 0 ] -/H /I -/Rect [ 330.044000 608.009000 336.506000 620.048000 ] -/Subtype /Link ->> -endobj -71 0 obj -<< -/ColorSpace 3 0 R -/ExtGState 1 0 R -/Font << -/F40 75 0 R -/F45 82 0 R -/F46 80 0 R -/F60 83 0 R -/F7 58 0 R -/F71 47 0 R -/F8 55 0 R ->> -/Pattern 2 0 R -/ProcSet [ /PDF /Text ] ->> -endobj -72 0 obj -<< -/Type /Page -/Annots [ 65 0 R 66 0 R 76 0 R 67 0 R 68 0 R 77 0 R 69 0 R 78 0 R 70 0 R ] -/Contents 73 0 R -/MediaBox [ 0 0 595.276000 841.890000 ] -/Parent 64 0 R -/Resources 71 0 R ->> -endobj -73 0 obj -<< -/Length 3869 ->> -stream -0 g 0 G -0 g 0 G -BT -/F71 14.3462 Tf 45.638 783.171 Td [(2)-1125(Zaklju)31(\024)531(cek)]TJ/F8 9.9626 Tf 0 -21.821 Td [(T)83(a)-375(dokumen)28(t)-376(je)-376(infor)1(m)-1(ati)1(vne)-376(nara)28(v)28(e)-376(in)-376(se)-375(lahk)28(o)-323(\024)447(se)-376(spreminja.)-571(Na)-55(jno)27(v)28(ej)53(\024)447(sa)-375(razli)27(\024)473(cica,)-387(torej)-375(PDFji)-376(in)-375(L)]TJ/F7 6.9738 Tf 441.285 2.043 Td [(A)]TJ/F8 9.9626 Tf 4.386 -2.043 Td [(T)]TJ 5.535 -2.144 Td [(E)]TJ 5.534 2.144 Td [(X)]TJ/F7 6.9738 Tf 7.472 3.616 Td [(1)]TJ/F8 9.9626 Tf 8.212 -3.616 Td [(izv)28(orna)]TJ -472.424 -11.955 Td [(k)28(o)-28(da,)-481(zgo)-28(do)28(vina)-451(spremem)28(b)-452(in)-451(prej)53(\024)447(snje)-451(razli)27(\024)473(cice,)-481(je)-452(na)-451(v)28(oljo)-451(v)-452(mo)-55(jem)-399(\024)447(solsk)28(em)-451(Git)-452(rep)-28(ozitorij)1(u)-452(na)]TJ/F40 9.9626 Tf 441.236 0 Td [(https://git.)]TJ -441.236 -11.955 Td [(sijanec.eu/sijanec/sola-)-50(gimb-)-50(2)]TJ/F8 9.9626 Tf 160.576 0 Td [(v)-268(mapi)-268(/mat/domace)]TJ -ET -q -1 0 0 1 298.772 737.639 cm -[]0 d 0 J 0.398 w 0 0 m 2.989 0 l S -Q -BT -/F8 9.9626 Tf 301.76 737.44 Td [(naloge/21/.)-423(P)28(o)28(v)28(eza)27(v)56(a)-268(za)-268(ogled)-268(zadnje)-268(razli)28(\024)472(cice)-268(tega)-268(doku-)]TJ -256.122 -11.955 Td [(men)28(ta)-231(v)-231(PDF)-230(obliki)-231(je)]TJ/F40 9.9626 Tf 96.033 0 Td [(http://razor.arnes.si/)]TJ 115.068 -1.93 Td [(~)]TJ 5.23 1.93 Td [(asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.)]TJ -216.331 -11.955 Td [(pdf)]TJ/F8 9.9626 Tf 17.905 0 Td [(in/ali)]TJ/F40 9.9626 Tf 26.013 0 Td [(https://git.sijanec.eu/sijanec/sola-)-50(gimb-)-50(2/raw/branch/master/mat/domace_naloge/21/dokument.)]TJ -43.918 -11.956 Td [(pdf)]TJ/F8 9.9626 Tf 15.691 0 Td [(.)]TJ/F71 14.3462 Tf -15.691 -32.945 Td [(Razhro)59(\024)504(s)31(\024)531(cev)63(alne)-375(inf)-1(orma)1(cij)-1(e)]TJ/F8 9.9626 Tf 0 -21.821 Td [(T)83(e)-307(informacije)-307(so)-307(generirane,)-313(k)28(er)-307(je)-307(omogo)28(\024)472(ceno)-307(razhro)52(\024)448(s)27(\024)473(ce)-1(v)56(anje.)-436(Pred)-307(ob)-55(ja)28(v)27(o)-307(dokumen)28(ta)-307(izklopite)-307(razhro)53(\024)447(s)28(\024)472(cev)55(anje.)-435(T)83(o)]TJ 0 -11.955 Td [(naredite)-333(tak)28(o,)-334(da)-333(nasta)28(vite)-334(uk)56(az)]TJ/F40 9.9626 Tf 143.158 0 Td [(razhroscevanje)]TJ/F8 9.9626 Tf 76.545 0 Td [(na)-333(0)-334(v)-333(za)28(\024)472(cetku)-333(dokumen)27(ta.)]TJ -204.759 -11.956 Td [(Gra\014)-333(ima)-56(jo)-333(natan)28(\024)472(cnost)-333(100)-334(to)28(\024)472(ck)-333(na)-333(graf.)]TJ 0 -11.955 Td [(Konec)-333(generiranja)-334(doku)1(m)-1(en)28(ta:)-444(20.)-333(dec)-1(em)28(b)-28(er)-333(2020)-333(ob)-334(00:23:37)]TJ/F7 6.9738 Tf 270.458 3.616 Td [(2)]TJ/F8 9.9626 Tf -270.458 -15.571 Td [(Dokumen)28(t)-334(se)-333(je)-333(generiral)-334(R0qK1KR2)-333(s.)]TJ -0 g 0 G -ET -q -1 0 0 1 45.638 101.61 cm -[]0 d 0 J 0.398 w 0 0 m 201.597 0 l S -Q -BT -/F46 5.9776 Tf 56.73 94.968 Td [(1)]TJ/F45 7.9701 Tf 4.151 -2.813 Td [(Za)-354(izdela)29(v)30(o)-354(dokumen)29(ta)-354(p)-29(otrebujete)]TJ/F60 7.9701 Tf 133.384 0 Td [(TeXLive)-531(2020)]TJ/F45 7.9701 Tf 50.81 0 Td [(.)]TJ/F46 5.9776 Tf -188.345 -6.691 Td [(2)]TJ/F45 7.9701 Tf 4.151 -2.813 Td [(T)89(o)-350(ne)-349(nak)59(azuje)-350(dejansk)30(ega)-320(\024)502(casa,)-351(k)30(o)-350(je)-349(bil)-350(dokumen)30(t)-350(napisan,)-350(tem)29(v)30(e)29(\024)502(c)-320(\024)502(cas,)-350(k)29(o)-349(je)-350(bi)-349(dokumen)29(t)-349(generiran)-350(v)-349(PDF/D)29(VI)-349(oblik)29(o.)-470(Isto)-350(v)30(elja)]TJ -15.243 -9.465 Td [(za)-354(datum)-354(v)-354(gla)29(vi)-354(dokumen)30(ta.)]TJ 113.147 2.015 Td [(\024)]TJ -0.941 -2.015 Td [(Ce)-354(b)-30(erete)-354(direktno)-354(iz)-354(LaT)88(eX)-354(datotek)30(e,)-354(b)-30(o)-354(to)-354(v)29(edno)-354(dana)56(\024)476(snji)-355(da)1(tum)-1(.)]TJ -0 g 0 G -0 g 0 G -/F8 9.9626 Tf 137.303 -29.94 Td [(2)]TJ -0 g 0 G -ET - -endstream -endobj -74 0 obj -<< -/D [ 72 0 R /XYZ 44.638000 830.996000 null ] ->> -endobj -75 0 obj -<< -/Type /Font -/BaseFont /IJKLSG+CMTT10 -/FirstChar 45 -/FontDescriptor 130 0 R -/LastChar 126 -/Subtype /Type1 -/Widths 88 0 R ->> -endobj -76 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec.eu/sijanec/sola-gimb-2) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 44.642000 733.953000 204.541000 745.908000 ] -/Subtype /Link ->> -endobj -77 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (http://razor.arnes.si/~asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.pdf) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 44.642000 710.043000 62.325000 721.998000 ] -/Subtype /Link ->> -endobj -78 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/mat/domace_naloge/21/dokument.pdf) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 44.642000 698.364000 62.325000 708.659000 ] -/Subtype /Link ->> -endobj -79 0 obj -<< -/D [ 72 0 R /XYZ 45.638000 686.561000 null ] ->> -endobj -80 0 obj -<< -/Type /Font -/BaseFont /XTJZVU+CMR6 -/FirstChar 49 -/FontDescriptor 118 0 R -/LastChar 50 -/Subtype /Type1 -/Widths 87 0 R ->> -endobj -81 0 obj -<< -/D [ 72 0 R /XYZ 60.881000 101.620000 null ] ->> -endobj -82 0 obj -<< -/Type /Font -/BaseFont /TPJKYX+CMR8 -/FirstChar 20 -/FontDescriptor 122 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 86 0 R ->> -endobj -83 0 obj -<< -/Type /Font -/BaseFont /ISIMRT+CMTT8 -/FirstChar 48 -/FontDescriptor 132 0 R -/LastChar 118 -/Subtype /Type1 -/Widths 85 0 R ->> -endobj -84 0 obj -<< -/D [ 72 0 R /XYZ 60.881000 92.115000 null ] ->> -endobj -85 0 obj -[ 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 ] -endobj -86 0 obj -[ 531.300000 531.300000 531.300000 795.800000 472.200000 531.300000 767.400000 826.400000 531.300000 958.700000 -1076.800000 826.400000 295.100000 295.100000 531.300000 885.400000 531.300000 885.400000 826.400000 295.100000 -413.200000 413.200000 531.300000 826.400000 295.100000 354.200000 295.100000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 295.100000 295.100000 -295.100000 826.400000 501.700000 501.700000 826.400000 795.800000 752.100000 767.400000 811.100000 722.600000 -693.100000 833.500000 795.800000 382.600000 545.500000 825.400000 663.600000 972.900000 795.800000 826.400000 -722.600000 826.400000 781.600000 590.300000 767.400000 795.800000 795.800000 1091 795.800000 795.800000 -649.300000 295.100000 531.300000 295.100000 531.300000 295.100000 295.100000 531.300000 590.300000 472.200000 -590.300000 472.200000 324.700000 531.300000 590.300000 295.100000 324.700000 560.800000 295.100000 885.400000 -590.300000 531.300000 590.300000 560.800000 414.100000 419.100000 413.200000 590.300000 560.800000 767.400000 -560.800000 560.800000 472.200000 ] -endobj -87 0 obj -[ 611.100000 611.100000 ] -endobj -88 0 obj -[ 525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 ] -endobj -89 0 obj -[ 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 323.400000 -323.400000 323.400000 877 538.700000 538.700000 877 843.300000 ] -endobj -90 0 obj -[ 777.800000 277.800000 777.800000 500 777.800000 500 777.800000 777.800000 777.800000 777.800000 -777.800000 777.800000 777.800000 1000 500 500 777.800000 777.800000 777.800000 777.800000 -777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 1000 1000 -777.800000 777.800000 1000 1000 500 500 1000 1000 1000 777.800000 -1000 1000 611.100000 611.100000 1000 1000 1000 777.800000 275 1000 -666.700000 666.700000 888.900000 888.900000 0 0 555.600000 555.600000 666.700000 500 -722.200000 722.200000 777.800000 777.800000 611.100000 798.500000 656.800000 526.500000 771.400000 527.800000 -718.700000 594.900000 844.500000 544.500000 677.800000 762 689.700000 1200.900000 820.500000 796.100000 -695.600000 816.700000 847.500000 605.600000 544.600000 625.800000 612.800000 987.800000 713.300000 668.300000 -724.700000 666.700000 666.700000 666.700000 666.700000 666.700000 611.100000 611.100000 444.400000 444.400000 -444.400000 444.400000 500 500 388.900000 388.900000 277.800000 ] -endobj -91 0 obj -[ 750 758.500000 714.700000 827.900000 738.200000 643.100000 786.300000 831.300000 439.600000 554.500000 -849.300000 680.600000 970.100000 803.500000 762.800000 642 790.600000 759.300000 613.200000 584.400000 -682.800000 583.300000 944.400000 828.500000 580.600000 682.600000 388.900000 388.900000 388.900000 1000 -1000 416.700000 528.600000 429.200000 432.800000 520.500000 465.600000 489.600000 477 576.200000 -344.500000 411.800000 520.600000 298.400000 878 600.200000 484.700000 503.100000 446.400000 451.200000 -468.800000 361.100000 572.500000 484.700000 715.900000 571.500000 490.300000 465.100000 322.500000 384 -636.500000 500 ] -endobj -92 0 obj -[ 555.600000 555.600000 833.300000 833.300000 277.800000 305.600000 500 500 500 500 -500 750 444.400000 500 722.200000 777.800000 500 902.800000 1013.900000 777.800000 -277.800000 277.800000 500 833.300000 500 833.300000 777.800000 277.800000 388.900000 388.900000 -500 777.800000 277.800000 333.300000 277.800000 500 500 500 500 500 -500 500 500 500 500 500 277.800000 277.800000 277.800000 777.800000 -472.200000 472.200000 777.800000 750 708.300000 722.200000 763.900000 680.600000 652.800000 784.700000 -750 361.100000 513.900000 777.800000 625 916.700000 750 777.800000 680.600000 777.800000 -736.100000 555.600000 722.200000 750 750 1027.800000 750 750 611.100000 277.800000 -500 277.800000 500 277.800000 277.800000 500 555.600000 444.400000 555.600000 444.400000 -305.600000 500 555.600000 277.800000 305.600000 527.800000 277.800000 833.300000 555.600000 500 -555.600000 527.800000 391.700000 394.400000 388.900000 555.600000 527.800000 722.200000 527.800000 527.800000 -444.400000 ] -endobj -93 0 obj -[ 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 355.600000 355.600000 -386.100000 885.500000 591.100000 591.100000 885.500000 865.500000 816.700000 826.700000 875.500000 756.700000 -727.200000 895.300000 896.100000 471.700000 610.600000 895 697.800000 1072.800000 896.100000 855 -787.200000 855 859.400000 650 796.100000 880.800000 865.500000 1160 865.500000 865.500000 -708.900000 356.100000 620.600000 356.100000 591.100000 355.600000 355.600000 591.100000 532.200000 532.200000 -591.100000 532.200000 400 532.200000 591.100000 355.600000 355.600000 532.200000 296.700000 944.400000 -650 591.100000 591.100000 532.200000 501.700000 486.900000 385 ] -endobj -94 0 obj -[ 575 575 575 869.400000 511.100000 597.200000 830.600000 894.400000 575 1041.700000 -1169.400000 894.400000 319.400000 350 602.800000 958.300000 575 958.300000 894.400000 319.400000 -447.200000 447.200000 575 894.400000 319.400000 383.300000 319.400000 575 575 575 -575 575 575 575 575 575 575 575 319.400000 319.400000 -350 894.400000 543.100000 543.100000 894.400000 869.400000 818.100000 830.600000 881.900000 755.600000 -723.600000 904.200000 900 436.100000 594.400000 901.400000 691.700000 1091.700000 900 863.900000 -786.100000 863.900000 862.500000 638.900000 800 884.700000 869.400000 1188.900000 869.400000 869.400000 -702.800000 319.400000 602.800000 319.400000 575 319.400000 319.400000 559 638.900000 511.100000 -638.900000 527.100000 351.400000 575 638.900000 319.400000 351.400000 606.900000 319.400000 958.300000 -638.900000 575 638.900000 606.900000 473.600000 453.600000 447.200000 638.900000 ] -endobj -95 0 obj -[ 314.800000 367.300000 314.800000 524.700000 524.700000 524.700000 524.700000 524.700000 524.700000 524.700000 -524.700000 524.700000 524.700000 524.700000 314.800000 314.800000 314.800000 787 524.700000 524.700000 -787 763 722.500000 734.600000 775 696.300000 670.100000 794.100000 763 395.700000 -538.900000 789.200000 643.800000 920.400000 763 787 696.300000 787 748.800000 577.200000 -734.600000 763 763 1025.300000 763 763 629.600000 314.800000 527.800000 314.800000 -524.700000 314.800000 314.800000 524.700000 472.200000 472.200000 524.700000 472.200000 314.800000 472.200000 -524.700000 314.800000 314.800000 472.200000 262.300000 839.500000 577.200000 524.700000 524.700000 472.200000 -432.900000 419.800000 341.100000 550.900000 472.200000 682.100000 473.800000 498.500000 419.800000 ] -endobj -96 0 obj -[ 513.900000 513.900000 513.900000 770.700000 456.800000 513.900000 742.300000 799.400000 513.900000 927.800000 -1042 799.400000 285.500000 285.500000 513.900000 856.500000 513.900000 856.500000 799.400000 285.500000 -399.700000 399.700000 513.900000 799.400000 285.500000 342.600000 285.500000 513.900000 513.900000 513.900000 -513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 285.500000 285.500000 -285.500000 799.400000 485.300000 485.300000 799.400000 770.700000 727.900000 742.300000 785 699.400000 -670.800000 806.500000 770.700000 371 528.100000 799.200000 642.300000 942 770.700000 799.400000 -699.400000 799.400000 756.500000 571 742.300000 770.700000 770.700000 1056.200000 770.700000 770.700000 -628.100000 285.500000 513.900000 285.500000 513.900000 285.500000 285.500000 513.900000 571 456.800000 -571 457.200000 314 513.900000 571 285.500000 314 542.400000 285.500000 856.500000 -571 513.900000 571 542.400000 402 405.400000 399.700000 571 542.400000 742.300000 -542.400000 542.400000 456.800000 ] -endobj -97 0 obj -[ 808 888.900000 886.700000 657.400000 823.100000 908.600000 892.900000 1221.600000 892.900000 892.900000 -723.100000 328.700000 617.600000 328.700000 591.700000 328.700000 328.700000 575.200000 657.400000 525.900000 -657.400000 543 361.600000 591.700000 657.400000 328.700000 361.600000 624.500000 328.700000 986.100000 -657.400000 591.700000 657.400000 624.500000 488.100000 466.800000 460.200000 657.400000 624.500000 854.600000 -624.500000 624.500000 525.900000 ] -endobj -98 0 obj -[ 562.500000 562.500000 562.500000 849.500000 500 574.100000 812.500000 875 562.500000 1018.500000 -1143.500000 875 312.500000 342.600000 581 937.500000 562.500000 937.500000 875 312.500000 -437.500000 437.500000 562.500000 875 312.500000 375 312.500000 562.500000 562.500000 562.500000 -562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 312.500000 312.500000 -342.600000 875 531.200000 531.200000 875 849.500000 799.800000 812.500000 862.300000 738.400000 -707.200000 884.300000 879.600000 419 581 880.800000 675.900000 1067.100000 879.600000 844.900000 -768.500000 844.900000 839.100000 625 782.400000 864.600000 849.500000 1162 849.500000 849.500000 -687.500000 312.500000 581 312.500000 562.500000 312.500000 312.500000 546.900000 625 500 -625 513.300000 343.700000 562.500000 625 312.500000 343.700000 593.700000 312.500000 937.500000 -625 562.500000 625 593.700000 459.500000 443.700000 437.500000 625 593.700000 812.500000 -593.700000 593.700000 500 ] -endobj -99 0 obj -[ 489.600000 489.600000 489.600000 734 435.200000 489.600000 707.200000 761.600000 489.600000 883.800000 -992.600000 761.600000 272 272 489.600000 816 489.600000 816 761.600000 272 -380.800000 380.800000 489.600000 761.600000 272 326.400000 272 489.600000 489.600000 489.600000 -489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 272 272 -272 761.600000 462.400000 462.400000 761.600000 734 693.400000 707.200000 747.800000 666.200000 -639 768.300000 734 353.200000 503 761.200000 611.800000 897.200000 734 761.600000 -666.200000 761.600000 720.600000 544 707.200000 734 734 1006 734 734 -598.400000 272 489.600000 272 489.600000 272 272 489.600000 544 435.200000 -544 435.200000 299.200000 489.600000 544 272 299.200000 516.800000 272 816 -544 489.600000 544 516.800000 380.800000 386.200000 380.800000 544 516.800000 707.200000 -516.800000 516.800000 435.200000 ] -endobj -100 0 obj -[ 458.600000 458.600000 458.600000 693.300000 406.400000 458.600000 667.600000 719.800000 458.600000 837.200000 -941.700000 719.800000 249.600000 249.600000 458.600000 772.100000 458.600000 772.100000 719.800000 249.600000 -354.100000 354.100000 458.600000 719.800000 249.600000 301.900000 249.600000 458.600000 458.600000 458.600000 -458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 249.600000 249.600000 -249.600000 719.800000 432.500000 432.500000 719.800000 693.300000 654.300000 667.600000 706.600000 628.200000 -602.100000 726.300000 693.300000 327.600000 471.500000 719.400000 576 850 693.300000 719.800000 -628.200000 719.800000 680.500000 510.900000 667.600000 693.300000 693.300000 954.500000 693.300000 693.300000 -563.100000 249.600000 458.600000 249.600000 458.600000 249.600000 249.600000 458.600000 510.900000 406.400000 -510.900000 406.400000 275.800000 458.600000 510.900000 249.600000 275.800000 484.700000 249.600000 772.100000 -510.900000 458.600000 510.900000 484.700000 354.100000 359.400000 354.100000 510.900000 484.700000 667.600000 -484.700000 484.700000 406.400000 458.600000 917.200000 ] -endobj -101 0 obj -<< -/Length 14262 -/Length1 1854 -/Length2 12408 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMBX10 003.002 -%%Title: CMBX10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMBX10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMBX10 known{/CMBX10 findfont dup/UniqueID known{dup -/UniqueID get 5000768 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /ZOXHGW+CMBX10 def -/FontBBox {-56 -250 1164 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX10.) readonly def -/FullName (CMBX10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Bold) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 86 /V put -dup 90 /Z put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 58 /colon put -dup 44 /comma put -dup 101 /e put -dup 53 /five put -dup 52 /four put -dup 103 /g put -dup 45 /hyphen put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 110 /n put -dup 57 /nine put -dup 111 /o put -dup 49 /one put -dup 41 /parenright put -dup 46 /period put -dup 114 /r put -dup 115 /s put -dup 54 /six put -dup 116 /t put -dup 51 /three put -dup 50 /two put -dup 117 /u put -dup 48 /zero put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{=מ7ڄĒKV"~Pr-=L$wcrlVcN &'{%Gf#ɨ_i#SXd+U*|:1m=⾝~6/aGLf#NOS}ERs{[.-jj|tm\: x8PbPh[_9t237,I2B8J0msUWQdX!??Q4eRH ]ӊ.p_?8:o:UuDZ[m^/a4l4ȒtL<~&WwLa9gPqhQΠjv)]sqR"ЯDž#eZKPHrF"tw;*l5 FF BW1S!2*`8:XlUI?[wc &Z`ѩް sdHeF'*s ЁTd9Baऋ[a$g1f\0 7aR^(Lj#!mw2#nr$|TL]{X`4.Gw|P2BgܴwbkF Nfj;d?#l"+6g{* ,SQ2&'n\`]Q:ݹ6ln0b9m],/ڨ\Y$6[+UE#ƸMO( ϲ.DL\*@z3'&Е62%+(k`D/k(ɒkpt`^Bձ\H~Y_˒c%~(! -Jvs}9qw{6sΓM &Q-p'&M&7tZ\r|5M5"*<ΕD,Lfj+ʾɝ"x0h#u[@}"փ -dIE* , j]v.tx kEYl}d.-eJ C=KD jnI"yX D|&k>ixbu?ѱ ,VszAc  G 7H`Ď'Ķ)r -ҎG֯Z~C -U. EC3}henħE!C[xxnCq##Ti.iW/i*?K`ɞ}g;ο@>Hmn91-[ tj7 3Myz,?Z@RPBi>vVF\Ahko8*NIQv94z4m n8)Db]ٞ>=e3Q-'0y#JW 0݈7\t53=μغ|[R>5Ir xhhy!kVSȮ7I ThaToɁ( WdsUI=]әM|dJ\YRGy4d(N{"l\ ]kȮ8V -A==r V^*mx(e=\ʰ!Bb8йX ֙Mاi -p)r ~1 ׏<;d,^6f,PpΨ|kR87>i e ^NҢ@h`[BF,L%mUBe*$nox3K V$[[fU;4Qjggo !%Uh(ԝ 2ן, O[Ј_\?Wt<ȅ/; "Rm®)E\rW1 ђoy։)B̊\@gJ?m Eqqٔ84^Da97 㤸{ɧZ!_`-rlُ*qٺ؊t LCg -:nbJ Lqrj5^9NRVJ7en%ϰYƕut4ƸF΋ėvQj6%c#~ O e҉'aS1e F u s^i"yw,~ C~Rƒ`,j"+ȬKk Q5IjEbT)">wv|$.4*@s? -ipb\r 9AZx; -~c/Hϫ+%Bm-7 S2*Eoq;ջ/6[ LoT F>=8$d�otu[QEU!\ސswE6W׍ Q8 < %xl& -~Bh=F"2\],ӱ@re(lF*ŊY7ٍ` pS?%i|ˋt|[b<7M=7snѪw24ׅd/bD~[)g43G&/pN%;t :p }wM/{ Ϭ0.bj!Z@< zyl)" KUmoҙ2c})z:<ۄF oŃGLyT7;$^>,Y.Fܔ%Gj,&U&S0Sg\+h8.!ɧ?4}+dC֡;GľZ#AeqE>RL K@$|DW/PN^Е3*0KƷ)}JMg"$58_gCs2C7,K՞?λ)效4 1#oIXcP~1 a^46Ӕ)jOa a ^oy^&9ߗǫ%<mLLN9y a)U)D.?9f4R2X w#_RzZu)q{ 3hSߛPDŒx)8%֗Q]9 rf!:wn; @AK ?gNq48)ďT cݨRSK:k4S};3<ʵ< SU^΋opf"5@A bq]W*VOMt,Sg__]0-GXz+G|f_r]EGaqۜgm ]Mnv(D/LbdR;G??aJVTy^ۭgm~`Z2Ј|{AJcQR qnd(ۜyoD`TJCHzRaPהxƜC@Mp<[0?e;ZT+R[kgϧa"q^b *r|::VNBOUzHbaGDH$6$4tLJb -INIC֜qa.K,ƭ >Cy -l7'mf &o1:i҅u meNπ@1; BB}Z(P3>f`mwyج]}L0qoJ 4VCBBLx1s_(\2ZZ. -G?eu8 3p8Dq,ƾ&[3M st/ϪT ;C;]DDu0 դQ[=zʥP*KCUqk#?k )M GRWI "RY7Wư0+@γTNT?aJxy~8up| ?5$[)sNd<#UM(8 bEQHt.f6֡U3=a^~C]䨀2"nC_FJ82{[c1 fXɉ{IڅF ʨ0GON :bպF3ܞ_(8::`xyVZ$݊gFԶܛbHQ[Щ!oݛ "(4m;>QEW;+/f|<<*im${TL֝*\!1 -m~8aeTpc\'gխf7!%;gNs(rkӝQ'1r4ǘKD^Fy@zEoUd9YBr?SU8ܹ/]~CINp`&$/sau:2]zDt*IWbc|[1y@H וOD8R8BŮ1$CG?jMt&Ic7t!DG5RyXv[!y#M+^e+i@sշu3VN4P{iSъW3<9xbt3DB^(x;OL#Л0ٚ?xNpK<9V́`Y-Q? ;~f㸓$oW6CDaxdU/a65bnof=7c8H%蠛 sIn^~L7 Bz @ˑ>9YCFF(<T^ɨ)aI=X4 +@;TE76c,P\R<SQ<"%;S_qy j8~%#Þ %~;QcK B-|IeNRQʡ,`_Mc;0]bv8V=NVč"lc;Yw=ֱ3r~STw.f7 qPa ;9ܪy^伜DmG ζS:e80zm$k}$Yµ}i^,i)c/^vŲ/spMQ*S*zuA;9-q)žl"AV^:QgNrt9ѨJHmhDDg@e0AvyI }^-Fh>0jƜ;,~$.U.y XSG %Q|Qj~3wE0 -$pW={K(]WKS="K8OQEw%~Dovh<ĀDDIv!PQ4dҺ6*1d(G XY;e㡒]/5n,7SOD^"%Z%Ҭ4I:66Dqոw}NҪ_Պ½ iYJt`'K>"ɕD{^M0I()IB>ZlL3Z*膒jnZhts280jOXUm0n<{Dt\5`"X"g^)Ǖ\= -fN<ﳭPs*s5B P\l$?wW{֧'0[5ጐQ^/=|8/Rl5IGLk!cvIupaa{|&3C;Zzj1|uArǝkmZp9r"BhUY/sHqm,'ebyS Fn"8~(f\; G !1xaST\Hy &0zc-#>ރ >uUcT\o髚ZbY9iv]̕2|Jՙ5ÃTI;-ˋ:XnDio_ \JO_.,-"~ 5BUsWltAP٫"2CT"[E YDz'{?ѩۍ)_6%$R+Gu_CY'kr~)Þb1u2k6 iJfawoؒc& [xj"e^y`bJh^tQat0v0Oj%P;?a<J,Ewz*PZP4Xӊ1un\Z܈ `VIs#衽ep^Oę^K}>R} #RL*oP/cvrneȍwS49 gҭZf#*QL5E&͑*Pu\&Z ~H?RyWfmKK0,ksy}5bH ?7&y8?<.u(#҇/d:y%ʉ +vg=?`'FG.h̶@[m\k7jMŽ靈@Rt 'ר&{>'[&ʒw< 5%9hv z}a1U_X6ze?PHu;%$<9N=BGϐHZHlDD -g!X;E*Tz^ .殾򳿃x<#ɴ/ ސkg51._^x|'OVYLN{q 4μVJWP+cKfO7Ku#Kl9xÕ%qRdA5=A#GJ۶ ? pϜ.|៣!ZV"XBu-:?s -p[ KIw^-Rئa:UGYTCYʛ ņ4 1Mhߗ+\,|jTpY:JE!^qy%IC 0~u2vA ;<1[ ZD]gq1qtv`9%$CBvMdLj)䥮?VXT{iOaJo -l"JE;-۰\.KTodp=y%?3ymW{l mtcMXa;vms >|A#X$5m2AӓHvw#q5;'bDishwi5\V;GRҕh. ݷT>ȅ0#y$&x\oӸJIg zDނc/JsEm!ųSASj|-tBn -Hcc/n* MxAXJA % XXZgP{]F3  ASy}\ U2dPDq)AŏGTSs#ewJg;Tqf&WV8$-ӵw@H>[1Å -r%[ j13wgVI.2ӱHP#)Rf?""u.ʳ"T4!k:W⎺x54͛Bd@dB3Y"KsH,zPyJO2 4A??R,SxX}(-в\Vt)XOI#djhsZ@9WtLb%bkd!K x0"Տo!1 *zJ~.s;(a}HYS-7&X) /(q.~4S1YboR L!G\|QeY~Ö܆+G3`%{k$Ia% ?dr,6/.9*Uxksjө~f( !pXreza?6;mݘBt~Mu !RJt !U}s!zgFWգH:FRc.κWSKuk/?GC9¦`/qwmAЅ|KiYU&pWpn4ˏ )lT'Ļ_ - E?uM6|gzS_3zf2m&E075S `qu윊C^\݊ -2יjfhFv'-x.k3`36ډ{2s=6+9 Eؓg<[$RK׽HepQ&h+ -&~{MRc - >q4ʚDtn`-^ѥLc6ۮ%5sU;LqHwOShs򢖏hiTe<9*x3MŞт]V#9Wīo?M0~#zc $PbrS9r=VU*-A+G7ce͕J~$d.=X*8i|[ - 5:*?5gJ6QdIQ@V -TZ{poC|$0Enީ~1E戻$3Cf,dzx}Àx9z;pIEK@x֦y8*?O`S{#rarkQÈHŇIy>ֆzUq!hlxukN7_7egDLmڏ4p(O c.AJqiپŖ -{lǂ)O,γO k)u[ȹ?JH0׷;iOrs'R*L!ٳpET8\6>^A⌫#0ƄT"i#j4°:?Fpu^(KBp<)5f |0WM sp_}<d^YcX V%J-Ҋr' }5;* 0]9+}ֺq\,WqSR-.AA\҆~_&6ỈM[HYQ ݱcTi}" Lݐ,C쎾u9R T| cI62 +&Pu~/ʚ߽6V'0 y%MMLoux@bפi6Hp!r6IW$$ےw̲秾/:dr(>k[ңفAǑ]3Y ogRfFۃ2†{3C/>b%>)U7eJ`٩B&8֘`ׄzKvo3HQa/R8 -t;.liR~שcq~ 0hdhKȔ+cڬe2o}&^\RסSfFBlY-9gU>fBME X"s6+sUJAIDl -Vw렮;P? ^QrdЬn<RwNaCvVE (N=e,u\ ^[a~ :XRJTfi[b0| 6?y:7SoRa|7J]a_yTE7_c91Ώeؑ]'|l*!$zy#2zaYVۘTJ:9͈o_z!Sإ(PoۤP*b430:}bFZ\3C%(_y - ɬeT$5t7b1 qF9[co} -!nr7n> -endobj -103 0 obj -<< -/Length 13810 -/Length1 1912 -/Length2 11898 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMBX12 003.002 -%%Title: CMBX12 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMBX12. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMBX12 known{/CMBX12 findfont dup/UniqueID known{dup -/UniqueID get 5000769 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /OLUUSQ+CMBX12 def -/FontBBox {-53 -251 1139 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX12.) readonly def -/FullName (CMBX12) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Bold) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 65 /A put -dup 75 /K put -dup 80 /P put -dup 82 /R put -dup 86 /V put -dup 90 /Z put -dup 97 /a put -dup 99 /c put -dup 20 /caron put -dup 58 /colon put -dup 44 /comma put -dup 101 /e put -dup 102 /f put -dup 53 /five put -dup 52 /four put -dup 103 /g put -dup 104 /h put -dup 45 /hyphen put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 57 /nine put -dup 111 /o put -dup 49 /one put -dup 114 /r put -dup 115 /s put -dup 54 /six put -dup 116 /t put -dup 51 /three put -dup 50 /two put -dup 117 /u put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{Jf^ַ>aq4!<_CцcQ%BlS71_ -sQzԜr?ktP2Òl(?69~'@2bt[{ax 7}Gn[TY>T#a1h!;`WƮk>Kj̱JzNc?^<@ qTud[eюj:JnK#2S[ŝBb?̬Mo7aa'gP:δѩ҈ dBd|IH^wMe#DD13W.J.6׮r(N #>Zjhɵ+Uw -$\WN.C(V\N¸3A?l_sMP yfSyֿb`9upPȐNur)L=uhՂD١Pԋ^} --zU*3~HwzQ:.cxv(P}F>48zeU+Jk <>,H~^U>~~)9G-_+ԇ2miΝ1r>Z?ώ8PZm#meDPњ69v=hE_X(yN(9d5p7LZC~ld1:/ g!, -}Q+93V{ QlG 7!;yq+ JA vj/rڜZP)4f+OpX_t~ 5[RZ$ҹ=#e@K*WEt_-J bΣZdh>xNpsGLOh>o련J;J+\m -J6km9"N `D[ h6w{Ac<=ޮv}PC*|sAחfK+1!Sn~#_*]\i!Jiq˘mJ K fy*S}iGV6wa$mv<zZQ^L0NRq!*7uLO=b~_J CI?<5 T zs}uL`M؀"7K 8yO {|v`).D3K$ ,3sÝDRT c2쑃%yD\MS9HQ՝rfG^\55#v[Yϴ)KS^~nMX,8&7a d$ݕ ^t/WyϿ4QK{)=WDd>oeZpٕi-e@PLb|#p"6KLPXzbZc})%LKfO2ݮ (NԴU-eru RyTkl>'H 9т-)u -u+ld4zcLsTJ[:v?WNM* NiLffF/? ̔o_a! Bt]z\ޔR/r4MFwe5']ZPp׶r?PaL'- -c3G}T'ڡn#^>Ҡ'-ހFwMOTDsJQ{ T޾2VNsҎ%Bh$,>oK"Hϯ 2BU7'J(Ǜc1PIݐ.lQjF%jP -1zb2ɮWM+mKf,"/3~į;7/7=o-R%nJB@n6A0hRF9T {(&$߅:hMj %FVڈGv?`S::JepR̶9y?O_4:╱bEV]1Vb,"KoF0dba̟f4G^̬k({: -]-eJbc?hs+΢_sS,atyir%F3gދ&M}ۨ3Dkh`\rud>;iA_ -oF_љckNԋn`v)2ۙ$# 6{⮶\FvUW l -%x[gj6~C "^klCy%)%nWFO/My~ZqiI$CT*x])it4ZV]m剁VO)gi -%-JUƠ[fTX7/.cU,h78M4 z9:̳jmrvP# >bx_Løğ y5R@/{fQC}d~r!4ѐfPo퀿M+^',6_/W{h/њjS}Jz sնj ޳~zL{qA\Rh$):zNSJLyj^Ĕǒ)T~KZAP0JP~(>~9&åv^")X5=hN҂aNز%1v1gv?467H!NjO4پb夹tFy&{wQ[+ZJq -+@ mn,jMnEfI m RGUY8šNK:]ĤB!N?J'A.k{c㣆+/lB~z- NWWcr酉?V,d\$;tTR%M8DLsY{D#4 D{a\j;$ndʟ'KE 'p a_C1daEE4"<[ɬ}77%غk/2Ik'wblZqq@`C,6|U[2ǩ{{_W{l[(Eㅐ&K!.0t)f7lnMwX< | w2#:|м6ޡ4Hkr~IEmvb,[xY@rL'3:`A7C~X+_显R#GAVt]Dd ! 0*uzbrYN%gUX&h͈6OW2^zG iNΫyf_S">.g`B6G -BdXXE}텅eW_llQ6ioF<3ԙZN%Q^w݃{&E:k= BI| -~ڛfKikx zm 3ٳ~mk -R-rHsډZ嬪.]]Mmјrx{%u_p[ -5~`31>pajdoT&]J[[@ǿ&#F8i ^9<we+-lBdv>B2p["j FSoa9"1ܟ`IC"9²xG@,ty -ďuo1H?$YM;oia=ۓe%[2Ax=7rܥVBe[˪?常%,Ƀ.$nYeWm!QiBԘte=L@&j*ފS3(W{kϰtu$%#!>R=k[>u>6ӣVϬNld>&VeR^- U*lY `s'ӕ)!-@;UIuvG*^ x8gyyg|)t#$ X0fمNWz M< t>&+4N%J"cqx=NJqҼmWҾ07js);'S] 3l i |M YL*g. /A|]Z;wĵ͓h'A4@@`J jٙ4JՎ$ +&G[A[8f i+o" I -{y }$teӜV o+m2\\IؘԏƳL¢#EadIOUOxA5>.ыKe=0@vJ:5bj̊_[,82 ޭ@J\rL8gy8i{CRᩞuG/W{8YDL?͏$j5,;ȁ|a쒤HPP8) -^NZ卯9vݑ7ᚮ{V^sfpZ~rw;gt$2 aڰ(iOd\Bvp - -ȑJrʂyyl -X!.X_K^?eT:C@`&nm/h˓n!HcC -/q(ހS2ײi@/ʤ1=ҙL>Dc'4 -ks)y.*%'vvGT3lz :a).ERex -ycQڅ|Syp| BN=9;+ 1(H-F/ fZ2dMpDj̖ߺB͞Y~>/( vk?.LpHS"'Q&k]]kQ7yZ #πYD}u #gŒtH,V$_6ڨsS.*U| DՓPFbB*Bu4ZB~*j?B/&ԌTފm奔Bu7!j9 alɋpwcsCpiyaJ: D08b>OPW@Yߔ눚( 32Nͤm*6p[Efw(`߬S_Nps1m5 -oHrcG٬R %G "dC*uIk_o*;tS!i0 (T(4T!8#Ʌj#([:۝ -F_p9WCU NZ|BIw> vu-OaO1,hp._`Øzq*~*`@׊V_^u'¦l.OS -&[<\FFl(63_Y|#+0 {XރA가o3) -?#n~՝@$Zb нW!7.Bˬ3~,X(yy/'Q&" G]TqiNąOt;|cWhP+"rˬf3Z3&"v d*M8d=*bFb[ -:oW=iJ`~mT0[NBmo-̡u0`Y$:!9^`#'4iΛ_6ƿŰ ٵdط(pɭUIrf~2jކD[[褔J;E&y/:x*Ɗ:6h|}9 6Whf-AOۇa|7x.eͤN M!LY;ƥyW`VNbw ^ӯPϋR%JZ]^Ffշfx5ǎqVo"vJV;#W th<ЯF5R IjyxyN-A(XʞU<Vh+`lqki;zҁمS~g"J2*6P+ ;dgh,yo I[7D%6z9(n-H;::;햋3@4({l q[vL+x$9,&TPRIa0u R\ h͝燪.O6#BtG -N5gL3A}R#^Ag*)jOxV*kBs _bklAW4:"weVZY -Z?h+LDiAں };(@!@x$Es_l.þ['bYe K9e"VWmoIcTY8Aoz/uc9&D 8Ua4/]aX1b+ZTž.,⩳Cql9NT9xaf-ĴN*M673t䏉s4z,O~1>ǿU]9WG . I#jFCY8j2[lk07> -ޒ+bWgZ7ӷfXWv]ȷ0$}:ː}7e&j@',Pt(ϙ o{;;S0}.LXOGv}Tg%$zB )'f[h9ʿ:{b u/4vCi(ذ y JAqb.6W*hkNrh|#ƷA2E(qhIsf -qZ$T4nj\|2a -~NT׹zKgd; B'LHRHB GL 7G -7ݱ= XJi]A&MD6fJX-3^s -ڮ H `hJ7D/arūR +oCEb]KNL~ -랔,j':q;tC- JB̚zx*5%"3=Yn~br†& :1DE_綝?,g'frkNJbCGRp\amA =vx"Շ&mS]TޏeG[W*M,pEgpK -5z%ݺ&L4Y9L6Yl*gg 1kǔK" ,8!tc$5#WbxwS S jǫBׁ$U>߁<vjعxIvn{IY$QDFh67ƮEv.cl6<•ؕk7]i}99c!_JB_W@Fi}UDyNCCVyɬ j,$xױmx4_IsutЧ}9ۧ >:xkaziLD%6E/8+y>}Ev?&m|A$%Anb!(͛ d,uT’QX@V C1#uy97p lkˣ_|~xi {~HZw#DbҞxn͞)g{iT#0`ylڝhEx Hܫ ~\2S8&'X:/t*%W@:n*cd=?X 9k[# -kQ{e"HuARulm&{I\Swe3q٧[A|̋K(i~1J7kl.[Ȟjc~A_xvFU=Z%TZ#]Auq~Z?j)ܴϐnZ"=}a*diQͧZꔀy8X6r'_{`c Vh -Jy=ܗ”#5Ivꮄ p9>ǫW,Gb>H (~N7?4]O ݃S#R7…1#[nY`eRwL5<K!PjirԳR>tQ^ \@o:37Ԛihɂ| a$Ӥw`Fk:jfc"φ$ -3xX`ɱ6;(=%ѪCI&Ò&L\󥫀m#~60(퍃ш̬‚CÇp /'<;>z_LIAB?ܚ-GvA-0z\.V9Hэ6 Hfi.ZY`}6Q"n4T]Ä6!%ul蹋*O]o -b5oB "*Gv^P/fi@W`^8K$_>zflX "jWjͤ;Lc3?u5DY;vҡWH_58Ȯ&f*0,(Oaq! -Ql fڜ -Iu|&fJj_# \ˑ],-<ΗPY]M+ƽgӨx@>{OD:[rJ́;3Z[@ ԪX{qw9FQKRzx#5|㟂x3ˀStZ+9!1O$zV!\.q\3%IO}*@D}81|A -endstream -endobj -104 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 686 -/CharSet (/A/K/P/R/V/Z/a/c/caron/colon/comma/e/f/five/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/r/s/six/t/three/two/u/v/z) -/Descent -194 -/Flags 4 -/FontBBox [ -53 -251 1139 750 ] -/FontFile 103 0 R -/FontName /OLUUSQ+CMBX12 -/ItalicAngle 0 -/StemV 109 -/XHeight 444 ->> -endobj -105 0 obj -<< -/Length 8318 -/Length1 1451 -/Length2 6867 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMBX9 003.002 -%%Title: CMBX9 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMBX9. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMBX9 known{/CMBX9 findfont dup/UniqueID known{dup -/UniqueID get 5000767 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /HJGMPZ+CMBX9 def -/FontBBox {-58 -250 1195 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX9.) readonly def -/FullName (CMBX9) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Bold) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 80 /P put -dup 101 /e put -dup 107 /k put -dup 111 /o put -dup 116 /t put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{Jf^ַ>aq4!<_CцcQ%BlS71_ -sQz5>?Q;8F}Q|-K,}>PD -65~`dU6+[\5тqFB>ֳ1^;!'VQ!<$6jT&UVDq~`XhZwU W67$hV%tj6~h<56{O.o"Fחlai!N;/ie L5sh!YB yֻM~|M{\B3ևxYXިmHo%l)CKFuԴlY~<,&Z#^gx'6wB8IWذ~D.TP>KoNzS6=('a`T seSdDVzL^|kb=yjaI>Ř(ץ4^? 'Kn`4Q9 . `3oh~Fq;zJ50EPX*ƚQ 㗘k4]aҡpM9\l[Z)uƔT\0kebIA;/{c Jn^GkgQ0Y'ISD;A39 h?ݦbJU5zw jpJBUY{e#Fws@rISp^YoZ|5h2*لEA4W?|PCx' А4 -v0U'J#oqӉY%egg|* )SZo8r;8Wlv"r`UkL==~V -X` -UvSw;8wwH_,^~q\3[l&8E};`Zګ)HZ/I ;3w -h$j/z/^,_C~A7kpRhbK0sQrI;YD4u-:p׼V1y&EF#RdȷnfNEzfL)3xg23) -pEY%NXA@WQQ X$r d7UmwK6+2a,n9VbA:)48z>Im8XCهLFʺߦkg'f 2 z?qe3?-&1VKl/>4(5p,Jr6`pԚd׌^d';@8]mB̾"D%i-{tx*yt:`Z]K=.;TƪXmj nѹ5&.F~P]^7FoQv3:2rHS7!S5ŷISvG0;=f/bkl9d n&CO l"*e@n!6}Zjou#|)f*,E^a(, L Ah_ȪRlgYhaƐi% )m`RDӇO4;X @4chC.4Fc|E-5 OA)R3N{o`aYUrBs-15s܏i%ZY+W;/J"u;DgI x9"rwh -Rʊ~KhR^44s7M֒kL%vOqT+ovlo\+pm\gw٧Ӡ9_8i-d) ĩ#CM# h8pU"w.WV:ʠǜOc #%^oFxEkl ȃ<6wyh[$fuq%_Cn \Ȫp#vMժd2 g jRZ,xrF8P<(F`~W/dCnǗtPf"'nLCeJ59&yۄe^OI0\^PKGd@2ʨ󌱇lW/rZ\~ldB (#o}HZswHo܆0%oE=pdK)d/gYR[+7! nIw8 MF'/`6-d9Wt{`>P)$w>]{ _JJ[|aJЪCWk΢gLs 1/U wwKOwZoYz8gʟ821ZYYK%UW`ߤlP`B?1e1 t߭c`jD]< j#Sk@_6&"|  135~j5jag+PCTo+LxI@UoW.0#6!$_ȧ`r{s{] - ݤ"Amөe~]i栛ox;Ģ)Ąv{ԒNˡʀ8z -D4>uqlGmt -ZбK`4ҳWL d)yZd\m:췋s0j -dɎat@әV$Kas)~$8+\[)K9+%?< $_nRnWQ-U*up4Š[i}H=`SUPa{0'QW^t>.9Nzlc [=ˆ]8D8"QL wek\/+w^8 ZLn}69α$uT[e/DjFhGČ3eWfTf!>3rn_&kJӍne mW%q*5sIsoVgoꡯ+EƿR7ll,#4~^$)Cȗ`P{R!0K?.&V퍗#fRG/0Q Spe,W4`W16 +Bo5@.{27qGiʣTjzpGrb`Bn] 5EP£*Ӝ-f?75ko2|pwleP iאI͒wsz;SfT`De/:M#,N C@Xrٓn_ʴM[H-f4#u/VNy\#x[6§4̷,.aI-D=(Ao.Q$-q 4rh!-i vfrؠ%/^ -)p*d'D_mӝ>lC~t/a$Go@ܞ+A9IcU!}pIG"RU)صJ@uІ`YϪCuJUm8*8>B -tk1@͠YlW3[>[6&pCKƣ܉f&N0]X?TpP Y,y簢)4Ubj"fhEWdjt_8 |\YNeԭ5쀬ы; 44Ye*C#JahT+vX{\6))rfESд5hsdU[YJ*L |og9w>!>C4?m/.q߉K|8R1!>ȱ:& Kkq h!ʅƝC4k<ídqaeX&Z;SRMsh><^.9٠3n5% +YLjQA4OV?r%Lxє*g0fLjl}Xl:D0_.4w-bm!xMᑘ]&(3CXjȃ;&t]ÈjqZDU7er!]i4yp;3UX@ae$ qvPԨ+ z,wK}YqYJ)vz!z{4_DI䃛0"Ɇuwۡ`c&96ûm cٮIkb~LP)ޚ^.k5jdK⒣x}=%c^*f(rH?g@&_M\lכ(Wr;En8zu*sWKkjVxYX9Y^ K"?gjDg% 2v0Zm/,P10kIm?~g⎌ȥӨ3 7pmĈVR\}>r> -endobj -107 0 obj -<< -/Length 9263 -/Length1 1495 -/Length2 7768 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMBXTI10 003.002 -%%Title: CMBXTI10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMBXTI10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMBXTI10 known{/CMBXTI10 findfont dup/UniqueID known{dup -/UniqueID get 5000771 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /FWTCDB+CMBXTI10 def -/FontBBox {-29 -250 1274 754 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBXTI10.) readonly def -/FullName (CMBXTI10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Bold) readonly def -/ItalicAngle -14.04 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 77 /M put -dup 97 /a put -dup 101 /e put -dup 105 /i put -dup 107 /k put -dup 109 /m put -dup 116 /t put -dup 50 /two put -readonly def -currentdict end -currentfile eexec -oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsPKyؙJG}_t9Ob1N;rIoF R q] s%ЄO"HVt7b6U)26=q-SʱEzͪk|+$hXz˖3{{c$rПpP.%]++@^+;@gK -wUNKF֡MӋJ . yZ-c*w`~r-w@BS|  - J`Ukj -֌O i3$Z"|u9a6s-SS:s$ db]\±6CF s[~6C̸{2 0~0 h:}e Օ]T|:rCF Wݞǰ\0J,,рhzdE5Úu@ ;Z/}o--mASDw)#zBy7*0/YJ Yd;Kݚe; кn%VeK_ݖ wA/J -> wg.+T]׺g&6r 6]{JŇ[l޴$Jv-ppd33r'(:9F Z7_cVn;lWɶu$ݗO0'Fi%o(7ǔKdZi]ɘZ`C>>$VؼF,E%o`fp'֬{⩅v$@A@]eԈ"BTQ*OQ)2:r@70' -^e &,JaR)x=*} zp$x^U*froIb?WQH7$B("O%;G\/4$(ru{jE%Y͞t'T>t*NZ-FQlr1jJA?9n3=Z(?t#/[^Yu*éQ'$J#9-lc85 o@ E(2+?8n){.OqBPb4(2gF^%"\FaFG ,(?R"w/Jo"%(mEC5zrk[ku}qUCol&7<|!E"UqZ KN:MjUkJ` lB6pV$Ѧ)K'ޫ/:N1P .f>Ԋw'#>}=+fHSg0wF@zNl`^ L[ժ85OO3;Htble4XF"㐬tt -5txڬStlG\8<%*9ٱ\'0/&%]9ɜ/"bzW7ś4.vLL3Cؒ$tؔ3H'-Mһ6Ϥ9w,yi' ͏)l{QCp$[Thݵz&)Rۿ(ڒVv\2f].g<.6ᖺ)NB̨RU"b,ސUwÿ!`dUӿnjPmÀE6XP!=` :Z BSY1CIᓽ)gF sIr>%8JưuD[7z!qZzަEzŊRlG_M^,򤪄RԔf=-:rỴx_ot-K,; xBh$(m!I)K "ÜfOq+ QA~BB3[iiFyښ^cE~eRpzZ]&7wdAд6h<sͷw-ad<l.<fL).'tT*w.n^YOzr0;oW*]Kf}QGB72vdMsGi!'J|+}[VYO;?2Mf}]0v(N:ZrZɇB|vl4x4|hirht8EV'pSjBzkf6d>P|1AA#ĤC{h.ӂ(PH@&hH/a :ko#;v9L3-]*xFA@4JUKAϼr/.gsIi:PК!d4*ЃL6|;S3uȣ[qk' Ƣ)l4+ $xP 7}w‚l6Gڒ)U-1ځ?'A6ޗoQK(ļ1E6˝A\wҟ@8W^*ڗLQM(:Fc W-l~bJ B1 ㆜~vrݳGvHb@,N.jT$D5葓J ~z#U^߸p =q5K[j5@Tnխ ._}m{gL$LjEU԰TN&H啷snr`7^1dW! bz݂z8{ׇj}\zU*GDEYs+)̪haQKE8iC4Sp{PK>T&cB -CTه C̚}`y8E4yK.G]=@/%sjYO>lrK\Wɗq;z3ݢ(ouݭ@E'evKw -$p@@x -,6rP(S4#0-8c<}C2A:ӺC]3ꪬpq|%QgdҤ n})N=WR)FxX`(F+[N´N:yRC_ن а@Gߠ/Eu ɚa4*B kڐhDC,3O$]f>5eJ٥4YqLlp8'N:ݶΒtAßYs5XCU Vr>s+-AՕƱ%%Eo'a Qưn22Hȵ\!_7% (^|VI٫~{gN vRSlC)'r1YjvtDwa|g6ɈM'8j(9]1V[FP}^@YYL JAD7m7jsjQnjA@2}מg#+=\y[ ͍ @*d_Wl6b@ٗ(/{MP1vXHZ)mZcz(#gDk\8:Dl{v7 $Zq˶?B#{z{TTC5&0;uo!Y:"@ϦCK9c~.Ղa()IBx ՚<|cqn7A](6ѻgwmNP/@~3;('{83W*CѴKE[wu؄qND0c#^Ͳ2qewNKZTs?x)xaV/T[xH~ovXu]z~'ՙi})%Bnh[6h{:Xߙ6s bJ/;-!=\dGOztMm\eu-r4j~5yy>cߛ-Je%#--tD`%:ɎLF㎹TAV+7сYlvr}ɮy53N„Ɍ.=}4Sm 7櫚+ݴLNQ# -l " -F tU1ȇߙ^n 3p|EDSng[2Ѣ,wÿɫ .氢Q< Qxrxe#UNP -d.c,n Ӟxcpg0%F+rIU)]d^[V-Q-c!ȨNq.{/(HH#W_W?֞t֤ȤYvgZ%ŰήGTO!moB -xh"fY BJO0yFSc1}A33\ -EW7m~'W | > R{Jg;ocŀ^/`wab,D2}I7BP)^OGT#sp ai\u!.5Y_yd'.eb1ޫ|]vPZ)Y=jXF^I;0ސ=qY[J;NYl F3<$X*d&z6136&&5;U7DECiց 8;a f[Ēss{N/b[Iv}IA FRR|돠_+J0,j=F!G,ּ~1|'AWv䭖ǩIVe殹- p8{cnNK7shy8ش`K^@L1ܢ!$$J yrOn6cSIJ:"8i@b`l`v*vO`r Cc-w, }VZk@$,ǶdT-Sv߳)j'trJH@^20~'ډ|sF YTh /u,t> -endobj -109 0 obj -<< -/Length 11493 -/Length1 1641 -/Length2 9852 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMMI10 003.002 -%%Title: CMMI10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMMI10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMMI10 known{/CMMI10 findfont dup/UniqueID known{dup -/UniqueID get 5087385 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /ZOBLSI+CMMI10 def -/FontBBox {-32 -250 1048 750 }readonly def -/PaintType 0 def -/FontInfo 10 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI10.) readonly def -/FullName (CMMI10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle -14.04 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -/ascent 750 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 68 /D put -dup 69 /E put -dup 73 /I put -dup 74 /J put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 109 /m put -dup 110 /n put -dup 117 /u put -dup 118 /v put -dup 126 /vector put -readonly def -currentdict end -currentfile eexec -oc;jAw-<X2-Τ^tE_SKF1F^jNBq{y4-Fgbԓ{"WB:rP ?dgS%|'ؓw&F7JNL9VRtbT5'm\N"K< -wJv$tE;D4Vܢv{bG@dū)Nh]!(7h`f1zpBrd۞>sVÙiHޭkJKyuKI[Ƅ(,M=}%vf'E+)}f$l(W2[8hT>9X33 viU/Y{z4B&qnz|1/ɴcCzwm|x]Lmo}zm5o: 꿊."ĈdNo3 -vz N -pzP;Vҿg6Ǣ >,>OJ4mA0R3ֹ*{+9iuMO@h}-( Qȃ钏A)ӱ =.93g=[_bo_BVƂW"䶝aoZFsO)%d2wNH>D}۝Y1jZg1bJa|`hb)wYc[&0jX7yg -hS&}p-f^ a_ -l4zVnR_e@*z|Wi.9)ǙBSs3Ϗk,^bz˹a ˅4_B1+W2poDx>fH[]TEjRȊ~/+  l8zXܒpH!V܁d!;d4T5:,v#cK*;+zXz k Qw>aqb61IK&?e=f?ToRw: -e -/ y}tX"7qtf}є)8SRXyԍ/Cmo0%}pd{h4>^wD@eQdaidY^@?p i3;BŹAe "Kc_ - ->To=*y#p$Ua5Q2Z3:wXEk!XLǑU MlTHnyeUsAܜo3|] ]zN&GU1@./9;IFz$U/Klf6xq y -w}HH/*%bkYyoxжjxS\y)n?VJ+ka[zffI*[f=M3)%qO(\-Z!J -H)rQQ5TbL}/>5k=QwO75#:,U_LP?NCSMi > 3*j#WÝD8$|!F̊L;_ -dQJI$Y(mRqJ[~f9,6_1~w S,?1? Ayl(LtU m@*T9EWOg-ږHpaH"\z/EjV{11̃TVL5yWK|z|ڶtjBdV=z3TJ~[3`vpnrU MVW.Y-t虘鰭2z񑄥 -Kxq3å_t|W%0=E@.2^r:(H>ePݳ;ס}mW-MAzs`sb}s@_s/FOE«lh\G`ba8$(^U3qC"vj?Aӷ5.s:];H2?lcP!e-t1//ǑbK @3\SN:8'gU?)Rb%o>6 ~) O -Xw5/"|k(e$/JG 0Mo#hpT%-R(>* Ҩ25h|I.5u`QPւ)`QQǶ(45^ބM߯o5G*`?RFM Àgpfn51dK[L -yq B$@'6!W -ΐEI6,IT$yهHpiVch]l&ߡF:O$#Ȋ!D:%)aMx"_L?d*:02]7x(4p P8*.v5sb<]LQ0*K+@>e.-oӏCƀl\~R+$voDgya7s)ck1+.Ƚ#@cL ij;NCB|(ɯIL40Ƽ&bDT3C<= Dg}@?GԿ#Ӵ?H]K mv%M^=QdP A%}u$Ȑv3L -" -'![暰-,*5&Vۮ1=B1vW|P:؎c)»c/Leh:g)Vl<.IJ -T|PqQvi>-<+cVDܽp`JȭVkuZܦר|RIu"_!a~L x0Cc-bpCAʤ0% [D =$XKu&W(b ncg^PdK>R]5d_a*@,TB]'/-G.Ǟx%~dž"52WWa>3/V #F,_z|i1=IUj^[b'HԺrRvѨYuI%@G1`: Zwb!|^WnW^krZxPI~XY̓qY >3u}_l1iG}Z1BR@W7z^CUpBZ\-ѯÆas&\XA\`{YܻQ v0q˽뷚w۩Ƀ6U̿%}JDA_r؅ ]w疠^K݅V:ӝϏ2ӏ|jilzaxOaK<}qo[5sI\ !R y I w˜Qz0l; ۠gYnkϜ}H4'#l&1ҩc!+P)T}!:#,5 0h>ώ? 1E]R%{7zvպ2' ' =.8ƬdDЖÊ9(qo%ͯAv0Og{jEAOG,C[4h֪ LЂ13JYfA2{TMH)w?}+'Mc5 `L8h`V5 \)A yBYC$S;яjtiV!Ψ"p<NoZ*2]LV -̚ !涃oplz`(SL0͏<(0.O4\SaSԗ;*X>mGŻX3XR^^#1ó&3W֘@,`|-g`^pQηQ^ O(s$q;,; i@g toVdF4 s3()&oa2IPZtoKmBމa?0küUڴB L|_&hU:Ҏ͊NQγVA8= #96u0@PN߅yƆeRvWKx }h%ҁ}ުP!z‘ӧ|}9<$5;Ѳ:;ylʗO]Qv-2yhfԨs\\hd#ըtyri"Zu:!xā/p~K.,<̷W|XUƆ/al='a*ZAU(bl~.P |V0E }Sd{"x峝pngթ(U0c1r{twqxK1%DE/z*oz e7^YDBD+AI\Cj߰B@әZ[&(vi,K| \cGVpz9pR%A`A ^9>~Z0x<N?3<ذ!Z` -v@zIER3 L'7-E?6tS>zuux1ɱ,3o"U<5ߠ-`sXZq=9*0 ,KOMRו.~338quV Igko.  *l7[fh -4\߆@bջuv3,qޥqX>(웻5(hU Č>-ygaV66 ->#(;#2+O h5eSa?>[լJ6h zi.C\\Ɯa\B Kh%xy%7A0UXcs}1>)mQnЌ s?Tѯdm/U.-ogOF乣HogO*k(i4K|~o!Vsl14k~.Rũل؍Zß[CNU$8HP}*(8ZV=v@}!M(- #a4sA(T ˦9(D>t-rbݢJ=% LԄ UI_P= a -endstream -endobj -110 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/A/B/C/D/E/I/J/K/L/M/a/b/c/m/n/u/v/vector) -/Descent -194 -/Flags 4 -/FontBBox [ -32 -250 1048 750 ] -/FontFile 109 0 R -/FontName /ZOBLSI+CMMI10 -/ItalicAngle -14 -/StemV 72 -/XHeight 431 ->> -endobj -111 0 obj -<< -/Length 19858 -/Length1 2204 -/Length2 17654 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR10 003.002 -%%Title: CMR10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR10 known{/CMR10 findfont dup/UniqueID known{dup -/UniqueID get 5000793 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /XGGYUK+CMR10 def -/FontBBox {-40 -250 1009 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR10.) readonly def -/FullName (CMR10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 68 /D put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 73 /I put -dup 75 /K put -dup 76 /L put -dup 78 /N put -dup 80 /P put -dup 82 /R put -dup 84 /T put -dup 86 /V put -dup 88 /X put -dup 90 /Z put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 58 /colon put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 61 /equal put -dup 102 /f put -dup 12 /fi put -dup 53 /five put -dup 52 /four put -dup 103 /g put -dup 104 /h put -dup 45 /hyphen put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 49 /one put -dup 112 /p put -dup 46 /period put -dup 43 /plus put -dup 113 /q put -dup 114 /r put -dup 115 /s put -dup 59 /semicolon put -dup 55 /seven put -dup 54 /six put -dup 47 /slash put -dup 116 /t put -dup 51 /three put -dup 50 /two put -dup 117 /u put -dup 118 /v put -dup 122 /z put -dup 48 /zero put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{x< ,-.2iRnñvپ1䠕 '䓱_r"O_t3kefBݼVfj9ҳ Yh뀸{q-ɷ}W??gw1*Eh[:tWeI,v8a<{B100Z85|}Nlw]6Nbh3E`(Eޏ'Q;eԃ/.DyL5$4IG׮Ɋ\yj9.VU5Q!-赁B9dB^oVwBɎT7RsOGA b#TBv!mWT=w,ID%'MK<|]D@2O( ݎ%#_ɷVBST#z!${l\4ĸ ;5l&!〚=(fUwAeB#30>H 'L+֓jz@=s\<=\Y$D?U 6xGQnǫi%֔! -L2[)!fXc<'ȲRP3E!-:'AJ.IJCJJt&{76 -#VH/Fgw"F5wS$|oQ<Η `~<10|;,zɴ% -oߠx0sW1Fx gmxVyѝ"]#z~pv Ũ.rB9$nYCC1td@#8kNԋK;ԓlF( ،N;d*<Ʀs9ZQ@It%[)7&hn Y'a¶T'Xrߙ/n_nJL (@ -К -N{KF^kbn~`L]aU{vLܺ41$rmAsnZ*=sob@{y !CC{c.WZ0n bpgsPd$-\ԛ&L27JBs/g(xQ,t>[8͓GsŸ:R$9]6&my)ivjWLRB^RBalx_Y:5M/j١!}`D&WȪQX$HߧtI .Y@nr_n܁ OtAN-L n?_^_g~Ə;`KB6eĶ ->lQp)/;S' ^:tJj@xE(0G;κQqǔkT'; ÃDHjsrxܖ -.>֯kl;&#<ښe)fFz`Ƿ?Ic@SH&<evn8F\V3aA!yy:+c!xbM։/f}3ߖ˦"G'fMsXWU}Yĵ^ %j!HOH͎_;臲Jv]# -$'Ch?5u-G:zHZ\%Uv z^By%NT⸶3=X?mJ-3iH@ܐfσkR.v'm.'SDly7 YCm^Gu5_G1t/ -41n_D>}p+fg9h$]@M`^ҹGK;5wIrqA3fAYiuYrD:dR At -,)aɺh9[ԧuS9KTKaX$wgɓO[xqǃyI(j5LIc}|h$zDUwY+Z:ϤŜ1le`u@|܈贚^6/y`a [Ί`ҾEwa ziLa}jʰ@}xWns0n*{l?Zz>8p-L&ȣK`> `%`ݿs?v˻^\*QNbf+ۼބo" ٧U zgga䎐uFљ<Xyݸ*g4?X2]4H͢^qLeoU~ 7>)ƤHnA7"{DRj)ע~eVDJ|X}ѧCrTA fP};"ӼK#ΑTF\^ԓ ; |R D\Ă Hu6QИ'Q3b;x#3S:jb%tJ/>ʡOrVށx]>)]l5o[F;,N&'i\NQIH?T:@FN SX0<)hW4fFDh.سT)^S-nw}, ZNEC Y Rez3\ -tY5`F~_xU|'XLJG@U6I \>:V_>զ9*I0}ӵ\"{3UzuFf٤Pߨ)E8Uw)gq:dj#hq so -@ -KG7"|QЇ Zzs|}LմS:fmA3S 2=[dؓJ\ܳc|tj1ƛArѮJv,K| ϕVސ -Q[s"=ôG#[71]'GA-u&_]nOSI*!GL{0^()Ɛظ]:1Y] c5@>rPq#fܳF6hZȀ,֯nрKD„-׸ݩTB<^x (va;{bQt[ eIBţnloi1>MoWM_v"h-ǰ-uh|]R[d"cWGcr"2P&yĔ$֬^S fx'$TQGUm/*BK-2"jܸf'Om:M|b]$~+ȏ>Ɏbtv2څ l-P4"Q5n$micnO԰P05aZrFhd]=Xcٓk dOBM@P.KX+QmtgD#/uyھRܸ(u׼΢MG oTgs]؆ٷ;*G R1)ٝ4 >odݿR{uxz4DXF9Tx:Rjpq"F\eL6j`H$rʹoW&N -cEawmGeZeX+TB_ǃ?oAZ;u.[T{lN]"?[t -VH_@{lj;KߑHŁ?hKY2MFUw^z6nf5^9뛅SS iw׳ʰg6Q.8zZZ72o Q.c]ƃ I1PiYg*z_H LWG -q3Rmv*GHp] ~\4#{+姕8X> B|L2}-sc~k;9W;[VZ)&a4c7}.8z+G ;$+Ω_]5{hL=ow VH Ay,`2uÆd-㥵4WΌ%n EguM7ԥ[jI}|di8&:ARA_;.lX*:׃nyj"⚛ܳMdCF|a͉G%izY mޅOi T%D@$KQIGeOVNF2VdA!d=ۭBR ]$~ 'ԑ+ez]|lAnm% |J;qIoh9I@N}N_M,bx#[n,7lIB֠3SĀiI<*1̗fE1=MJO@; z҃; X}ǁSţ!Mv7KT~ڎK?cj-x;GQOU4@tt U^3!>d5IwaүYPU$ q .uHR5g}_?|qLu@3.']:zx0r54r?Y0zmKyHiy#J7Qs1i?B+.{Kz+ebkjOdU9bb}0 < -{TB|n~Z&.Hu-LZ22; *8P6w,;3V=NQ϶-u9 ?;Kx W{ZalSxYC!OԈ@ -Ď5^{zۆ^iIɜ_CsO?cA'9)< \b[h%ٮp iBNҿ̓t&$0x} ,G&q}K3,}#0_GHsr_5ż@$B;&cdNݴ=>C}/YQF<A2[-!)ҏtLN) -X6\R|L|1v=fL? jX -![ЇU&iuТDj}'6 B7~@@Lt2_.Y~ada/ѷ\at8'!$@--ja@!:.gnf -d=N1fTVBSk`d{ܾOoS)qV%cNŠȔ;?9JnT噟B]lD0;\ZMؓ8V`kN0pQ+<8a_j'`(6rX7n0&|@|kS܊NP(ܣai>^4v sxm;[8@QAoN}H61(ZC,[R?_ c4dZXtR0E2H)R3ZͱI4ur`W+[s.[Ikdӆ&bœj$[ _AFΒU'ainfC6jWf{ DRVl/|D7/R\Iv{C t( M*)#MW!5=ArDv-bcPP'~ܿlIGF{+, :5}N%cqG܆*WPж}-_> AhHՈF7ulon>"3Q$ ,igi],)\т -<&6?>yKdLW114X rCDtCN{\;8^{ޜ\'I2Z4rʻ1"J;_]M~ QVʩrC5=.vUBN]i5Bw+@mE};Rd*Pc#1)U8J/A@7?4%;ȽoIx;| <%ڐa'f~P ɷd$Glm5Wå%4ɾ!&Σ vư@6ۈX=<0_PnCkX2YajŭE `>nқ0lcHҡVQ\Ή. -K e5_7 Za$W$W]*jd`ktv*^}ZWKʫ/~/@ˠ Aa%pAGw=-<NU?FO;jA`*C |,+7Hn.jER2 V|;>cee^˼Pf,9#nZ~xE'$|ϚnGyQI-!&iƓq0eA&G-M 2}vC-}+<;ڳ_Î?ay,-Zt%"MKI\ڐ'2?"S$"eᾞ]@$ΐU8̀Uxֺ =|Pyp;_5nSg\jr7O7J(G+;86_"-1մNcѸd6,lұM͆>;Bo7s7L;;21I&FX`gerhCqBy24яS_%,#;';d -WEm},)še/;)ѻ6wkd֙ #>g') Zypz$'Wl${{ׂ](HXj4I.E2],znw7}pIј^3|) q %GSW?3]* +>J*(sPeXc&v1'U2i'ңACvxuEtX8KّKYC8˸jRj&<׸l8oAjIPpN`@.!,^W2ΕO{{STa@\3]Y@e2l'UAS׀qjNkp(acN#dW`>yK3E9{dĽEA=ybw#-?\)sbHZ&^Z&|Ď=FiRaoRDDPa{71_~=ФShoSs;WUm:S5 -j_}p%ߵ2`K.}y) i*;bsхX<{b1: /@XѨ}&p5UI*$o&`l: -+'`uwqg(6'sL,(ژ{P nkv#ir"! z袑MCԥvM%.@;9f s^*XbXPʓpG{HGGJ1/בvҸ$rXSimV7\T~iYWxD2؅P1^)T ru]$K45LrlSβM+YY#j5(0uR7SP(pr6"2/+ވy"tH -URJP8yCu \؀ Gσ>WvB7 Glm'Mgv:k=ib]tǜ9m.F(([|=mXYNwV]ߛm S5̬9rYYWy햧vegl^f7kKQBo_h{}]6N.$"/󉗪l;۳Bli'=z&nM98"7`!gS`#sYP/d9: -1>;}'٠vPW9<qX㬽aTF_Ҟdzeo5l!&4PDE#ۺ8LS> JIHv<.&6 C\뽥Q=R\љYj惼XVL9T ^jtF_$4^N˃cX6DskH 1-'-ԋ0jv iJN.1bGiIT3Zp@1$UvC&Z̕tݲfblU,y֦$7Gff߲X.: 1.3  L.7Rm@ZZ}AwYђ/ĘyV2!ʄ2:5/;u?eeP:n$x}l-ҫK0Tco#|g-u9bC{yx'nj)/ΦSCXtO3c|OMݍ~Ѿp,GhP'b?Ig by;cRy~ #9c~¦*A]ynkfI -rue&@7&=J6m1&$M2vA鉙 zWwlkXg:+Uz&yIQx4NK}* ;6v'sZ hzLE;H -S^7mQAat|lnT ̑'hCoɆ;pOMUBX:XNFˢ PM)2L/ FGt`k}pn L㕣Oq ?mV] -BGBUYX3Je2ɊBC2yASLEpIAܠlJ2r+`߲A[2`Řsj|z)H~Ee8CX}xuV^^coeL/*6T!5Gj_Hk^2 EdŽ(SȺ&)ȾNH?ݮq -ٖhPc, l(Jqh+zJ8|U]&dQT}+\ -6diX ,UhbC? Xdc~z0svq4;¨JKy86u]7@JvnA11JI\W.˼L mųΞڻ$Z58̖ -@.5J+N]VnԆ97 ӷYv*} ~!bWۿo!ލi JAD9/o -t@YB_F)~"C6+SS}[ܟB g,$}}A!G@7v+/H"?m{yiƦJE(ǁG|Kv:@FLsfXލ[4b9 .or-o\u#_FWQ$=HS&[r*"^DY}D{k%9GO|]?،i(J!bg F,H?EF -- r4E "rc`߳D$2Dd4Z =]F⛺EK_lrm`)_MkFw%ΰsl=ƺ +Cph -.T~JPV*[3ql t!9: Ud --2|CR-RܧwsbY4m!0 L.Sx.G#gS5*y^u@J}Ad:Y撅OUD_Ұ֣GSzZ*CL8;=;X#yk5fWD -_5vj:4Ê~Ć[V$otyI jf÷M+*6)oKt> ]rdtQ>6­VJPkL'uZ@}d+O*D5Z`7e>s0qWzE8{<1HUFDx;Y̖K+z`3 <^l Ŝ2_BwO6RwpD>vyo427ik+D.}YH~!\,l{n$T  *Z*B(0_DMcdƇ]=C|)#*ђ_a#iYe![QɕѭmpZ63jWxfZ`k0H Wԯpѫg*V0̔ mX`$WZm*Bz\⑜aɕ-Aqbq5máܣrpG{qM3 .#%D_܀vGkR0vY- .FeWm̢{Z^*AsTfX3!hؼ 0R"i=릕U1!wkg{GCc*8x2?rbjnހPC0"rGʐZn󻟾"ӝq< j7Nei"N~$`=A!fgy50ٶ,$37Q -~'}bM>xUu -So(eԃ&kӕzi=x+0M8.9@-&q -ObxYFg”"ˣC_yFbix$h:6fY5@QI<[:0{>(rK9|2CCg4 Cl)ںKgU?AeT//DT~8Yc%祔Mޜr_i%DpN,K `,-{7ܥ& ٢[6@ͬ/BMn^xצu!w'#iT6G̖Pv? -.;ȭ5߇g[+ g2Q퇒*f\YcM7 ו8" cATpɶbh\9KiۊJ?jg _*{u4R>{BW-|#m`XO.h.Lw5|ʷ^0o_hmn,eFqQOy.^$sBkR|ħ[]`7 -f.[vɻjocsQn6<ҳax/(MZl垜ThF_6LZ5kga^yC`4JϹuBO{Շvi`.j\7kمF |^jӁDLEO] 7zFD'?443HwаsYP1GӘEoWSP8P c-bSFk,^ËܩI@X틛3 ƞ -yҢbs=C5jϮO|%[PND3,vǼ#2G<8 J0rQǥQc"f׎jo7L4@Ύ^欯yZ ->R(3nx7zB.EG)0,5{[mtbE??)v[;b<\ܼA,e<[nc출B<0Op^z.}jpigP=7& [##ݙA^kmU_0> -endobj -113 0 obj -<< -/Length 13103 -/Length1 1830 -/Length2 11273 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR12 003.002 -%%Title: CMR12 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR12. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR12 known{/CMR12 findfont dup/UniqueID known{dup -/UniqueID get 5000794 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /RLYLLI+CMR12 def -/FontBBox {-34 -251 988 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR12.) readonly def -/FullName (CMR12) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 65 /A put -dup 66 /B put -dup 68 /D put -dup 71 /G put -dup 76 /L put -dup 77 /M put -dup 83 /S put -dup 86 /V put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 46 /period put -dup 114 /r put -dup 116 /t put -dup 50 /two put -dup 117 /u put -dup 122 /z put -dup 48 /zero put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl75R 9z(X*Rhn5&g\c9`EgwT!xIJz҈v*lcoƿsdm^%=谺D +u9#3P _] )w -UA8 HuG:DJ(W;]-0<.gSB NlZOLӡ5^9:K*|F -{É ڇE,q>j0^x떲Q'X酉i ;yZPt>p1SV}:ުad0h{JA)Θ[ U=y5pRU&0'-8tIAx*̣$!gRHS;RVU?!lM٬2gO.T7wϓ)?CߠVb7^kJ;c -N* ٍG|Ucͮߢɨl6h6[ 2ߵПZvUlP|%)VǸm׫=&a -Js_̲y|{R6ĴʗB7jIȘ2a% @74 @4(.= `h'p+xvX}?G3D:^ӟ*&4prx5e^hk@S_̎Cl^^}ڶ-q9@e @|wMrc9P(TkruY@MnuW`%?Q8wG3g; dlo 2 Uu6C֋%YT'Rjo1Mn}L+:O/`@ӟӎ4J -B $YaհH Ag0IQ<;v|<6G@tqX>ɏpI%(Xv7}19lAKڮ6]+l_6'3`k*T (]65R-[(EAJ!3s:e*Aܣ ZEsNьmcЪ..> ˆ>Q&x̹znkCfqW-ٕ6qo*p+.gjlZrht?3:2ty&F!w^9vӐy*'ImtӮ:dN#LaRx!d!R *9SDdkb$Vdž^t4}h5eHNrHI,O6'l -NO#xa OTV-(!JZyX !]z@. 5-DL5_rHqg/r秂gͯP%x d꿖xAcŘʺϡYd(*:od`AMPb-nt]#lg&eb5d*OE 5 UThlv9_)$pC+(M ռPVOptcC`ՠ0IJ85YA('针1J ) =n?Epaq\')_4}KY+d>^cV60EZt,)ie Oӟ5ni8B5*Ƅxn@EDP>e$I^na Y>k#w?p͓t!_1 dr{d ,@]+ضCzn{0RUK,&Ձ\ƭТ1LB#Jp0 XJK7ZLD"afI1?jt'8:/(IGʵ6 <+r xj=9zI!ƶreGNXNpA4Us]b;g-L:/ڮpaؖ:1xǔ`V&EE?c CۗǙ77-`$Mv|&sČ 6X!g#ndχ[w䄁n(dَoo_o2<ݻ  xMI^ -[$dDTZ jķi|O.E9wbSsBz֚ȴ!2g6bcrۑW1A"nX14nKOC-NA=9g5=W^x(xڞEt8}NIDʄ!"]}FET2mRi< r3a0!fS&W{V_ ħ/Wc - 15y8/ V㯧٧򁂝*^F}#? P掸-~m~j𔜒FvV K.\'YƎZ|9&fr7ᶀQ~n- L5Q/[[ORue>G zjP˯,jW灔Rڮu7q jml -3!9ri `u8!5$cUUO;~}ۨd>̖ glUov+"Q%z=$Uu<J6RGʴ̇vm%û]=PC}_2k& ;eG7גI0Qf/ e!S|2F;֐n3:Gj)~kM'AR>CM^}]dLBu(w& GJ*ԾS0|CxoiNK@N@f2ްir7%x478˷턀Ȣ5k~:Dwp";jA `SR\Y.wNCky~uH#(8N7 v/I g;0Mf{ؒF3 SwHnp}D0yafA3?E.RB偗cU|O+U$r=هn5`̕,/^r;5?9>QNGZigp={_ș0H>(˴uWӥz|T̴VIMf*ߣ6c^֟}@_ϷW&)#׀+$ɐ2i_Bzv`]C]c+老ь*M0\omV -,T[a'rھٷ=+.t_,'P)Чr*4Wp$ U{-тB qڠ -a`O|qd3ú$/|MR-` ;6M|şg~Y u[l(oԁglEwք+pdڳXlDXuG b2Me *eiRXx8AEnS\RyEƒjT91Pr]T|u0zWMS=nkčeԍ,AFk/b\vI QDksh>`aP(~j%P> -GWlL?ݑ&hu&A$%9c\P "G(" z+"ڸVH1GڟHxYTҫs-pSCq: -99xec]R{zC?yOS.+T#``" kk2A>&^Rz=f)gjAݓ'xbBPd<^Ҏ,!ávm J!*5ҋ.5(K>++4y@B[Y -`͑!-|RVMr6 d$jwe(%.`. t -`n1h nzeR#nmOنwwOu*NkxcV9Hq82ɤ3՛.S+@&\]bWߡ!Nޥpa0fln -ED pCr:Q=̝W8{mCUط;Qtߪjƚ|YQ4C<ZeoDs8HMH3jﻭ|p8=q?Ҽ=EEe>6K}f2wa]a>>jFɷ -s V5ˤ;*nb$Svh-8yː=isr(/ e8'VZL078L )EMрKD„&#SX ,}6kbbx.[醄Ӗ0I8a {g HV$告$jJer= cOa[Sk)rάC -T~d^ъEg4pkRm$1"o]~(}POi˶8=Xbڇ*g&J3[O%w ДyRG9c&ڈB8z_:.;с9 vJ\sl}OQ9@6e#e!K[5j2.t9hF"؀Q`orE2@iWl4QBZB9caS2nO@[T 17;̺_U-c HmlyM?hI[@򋛃v4{'lpk72Q9EA/H)Ja7}¸z]Uf{$:'R 8¢VkAڃ]m,P|.Sɬ},1LPa`3&:3 3FD5۟mўy 4otXGWثc M}\8=q-A5xo-Fmԍ}jw\}9 S T6@Ĩ^yBӾgV.B%"FHuXL3@KuYb[< /o&\/eZj OocI5@G/ܵ40;}+>,cA -?~S0f2BxEmD (A0ڱ)rdZڗ-`Nt=ue8\wg{S :4B-q(iuB{vJ3" MY:8.YrOL5˒ ƃ O42#ĜvEQ2'K碤_# do^;<Zr+.a-ȯ)OH@ ʴZ#g4p%@)N#=hq|y^ 4٧}ظo O.cGA';" p^7ù*2F) ϨeBwrIFB,EtDqi/U - nF| -&}%- 5/s?QIHL}̢JZ~s#YS.#'c*ٰHW4֏VPVi'amo Ey6c& f?r=Am1v8jP+l"n"Z'8J9?IC1j,H o-wQ!& Ik-oɳP؜8Ěmcqt8?t҉]oRg\gYtU5u%H6t1_gdwL B#!-J@n~sOΰ?tr1\0,sO]7uj+۔lA|J6yaz/2$E-v+Ϯp螔d{ؠmpۓӒDÝmP(iФqejlQ6#\}h9~i`\Q4jg0j3R͈RBn[e6cZJBMh;F:8<\aI}R.dik@YJ3o[/jdDӁ;äC!-T>Jq&IwTXs;sPx})'/89Ub sxqǶn7g-L[Gq$RRDzNcelTq3xVsOD)Xͽ-q| -HS;e Nn:as_zU[mK KeʽS/΄?H^ w$Z@<9[f]`G{"MD-#:*6b4E! @wd3M5y{5CYڭ#i3#@nl|ަ ek܂=&a`$>dhPvHjƜO{+J -vXً6!Zn%Fas|MИaaWBD$QDH) nIP7ȱJ !ĵzudRڟT uΌk -^ւ[TBAidP8v~G<|KS^OW9j]0FVЌd]7( Uܻ 2!0a4w^(PbbPCg.!h_LH֣5w)I7˗ZnI}.ga1%P_ewGoڋd D4遽@qڳp$B?p=ő d?Ej󌷩//mXcɾ+Yʘ!*>)3{n^!Q0e!xఐR$!#RCac~Y2]U%`[pA7<~a./JQ\rmE[,XE,){,uEn PhD[~Mw6^h t6ʇ3jј"Gt$s;;Cr0[U]n[RZ\w'#p7ӑ!/m'e,/r4P/wX k8zcZ~GI3%^ =8l6f5BWhe$nZ63X߿XI\І+[ ,uHbT6D-@B"6Gb*>K\h;eF˺hoOM1)?XM@C^Ov.xaso` -cL/Mduq.$@7g9"әgB]iا?R4AHm()qPX,`SuǕy{#ցRNu₲7I_Cve'iw -+J-W6ިy[oܳNQd xvnT>pp"ɄȶYe&.MU 1O/j.+Y4uJoc2IQ!R5JX1x䧞v -4gPH:@rOn ̭ObH4jNy?VX$5ľ^m %Om(fDj`;P؀q 6267@aٱ>QӔ|WMF&/m~& 7rn|w:tQ4D~qr%+ɇzdPe'A=_OXذG5YȤY٭w a+Q ,p< 0Վ(Je]Vg?J`*Y\ݍ LGF?1`M2() KgK-H&]-SL5kǕ؏l%cY=3^Ӫ2h{6/y[,rKaDCD:b3rEڦwZqf:CLz%Umqڎů-bgtf:\EGN,H*2e"ióNH 2 fŌIr"n/ ?LT^HS&\Tԅa%NyJ;jox* uЈ{תMfxg^T=F77Mxҩ!Sw25(%ʡ״$FTUa|SO(5~j#>-^@'Ao18In/VP,Ȭ>u LGGړI@'8KBm55h㽕A#DCaw޾Ģ)c{/om6:@ 큲f.@A1Q*IpҒqd< 4\;T@ SmV&Jn*"*e!<0i4ڽRs<6UtZU؛%G./+qo>Z'R ~67vh:@n$v6ήNaBJmMQ/2.+Ygl9eY p4qw0]x1DgG>X#QtY22R9@3 p<#cg|:JJ:$ ,)do|b'^:s.^ګm\Ǩg[yWa<--d<*@˫!> -endobj -115 0 obj -<< -/Length 11217 -/Length1 1721 -/Length2 9496 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR17 003.002 -%%Title: CMR17 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR17. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR17 known{/CMR17 findfont dup/UniqueID known{dup -/UniqueID get 5000795 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /DMPNDY+CMR17 def -/FontBBox {-33 -250 945 749 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR17.) readonly def -/FullName (CMR17) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 76 /L put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 124 /emdash put -dup 103 /g put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 49 /one put -dup 46 /period put -dup 114 /r put -dup 116 /t put -dup 50 /two put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{.2J] -J!(^{jKD&xe}zFCWYGx=mQo.cZ|uJѧib 0޹r -(:VZ},uxSؤgEʼnr8BYYP?GڢP7ݛ>`_;mR&W4*xhҼ4Iwp ʒ 9~@c]]Jˎ= 4 -wiH 2NaEdfsD-{y^QmwGE : -|:^Fz_Iwf@%)fn]}dяBڳin3Hj;tuANS}^{8a%Ϭ_K_3AaD;]^Ĉ>kU|=o_uzz!ؽ:`2;PD3@|tHt]kU@7f3p\MDE[k-ZmCH1@FO> T']0ڵ9R _GAɻwWYTƃt!|h+*,9Xhy5c3%h7j,OxӇܘTuھKQQ}'XIUp~ ֕ҺopMvnWdq-ԌuyǛ˓ʀ,IFk; R5H\|o"ǀ*ƃW0KDT ڄGTՃk7-OfB)UCfE8. IW0{GԦ BͅBRp#hK_߇M|UDޙՋ**Pxmr8/XT7RB/u wX2~WV ^hDieT;[1AIKQ1ނbViR~9#'\ pꬑJ55gz7gGHC(ڴ.-H<8DJZbسGxO&Y=A yeV^Fm܉=k.D(04@X=3c8˴k"gF֠cwz-\'*VR3Z'uQKMd -b̙9usTYhIm]d< 4=uX=Ro`ޝV`$/>zb7ٞ'jI,$io4¾.2)@W'NU%;ʊڒ+0=E)*)P[g=l*SwYlQWy*e) 2i1L~`LJ\o~CjKh~ҐmpFP`NƐٰA+1A ~Av/M ]^/i"Wj -oU<c줵X1/ݡ/FiȶMw5_Yтqco޿jbRѻ`"}]xS'2y&n2tjQS%JCI}LS[hK蓨4(Lꭋ."70ljVψҲeI,xN7VxݸցrNjokA ?Rot8 i!jp+䷿.<Q -0R=I5[Um2v/[XIvQ-^.)=\gPy) * ?[g%Гۋ" ~ lۭzL:scE=y -|ZO+*Ce_#>u}99h9Q`^Y7)pT`|3Uv6@SS*BelЂs8l }qF @9өvUP; y.fV1 -%Wp{0p -d$@":*O0JeڨNQkXlYy?پMv-^Ie-??V lG["C;$t(Qҥ -5TfcD9IBӢ[/CjO?$!oq{,ݞl yDv8!$f2ҋZby;!0yIWR5_־2>6{̂0]&V~YdNH v v>(ϭU%+[ſ8D-nU1GL ȩFN?'c?_[v cwT;zjXig*GnikU@Zi2펯ppܬ`٭=KBn9Md 6^beXy9#mEKe_C ß-('BގoZu#7stKã+ȗ)F):@يx%wkcA>՗ -R~9CSM9JH<GOU4jdd8D\Pi3:PN72gŭR5lq?{o:m& ؘu !p_?cvX, ~jiޠ<,]U|>BSEw߂=$jU'0yDálj`]XxT -̻lZ>i(N=(w{1aYuPi~5L$|3y=ȽvZEOgIfX2/q9ke(dw*?QcDa' S 0NC?N~ (EdF<y]ZiL, kAM ؁Qk 9LA@Jv, D$_xSz/$wŗEYlG~h"璲VK[UU;P61 㹣vʷ4p"uK(nh{ebI`C">>S5' ´V3nkg`jsh%LOQtRY nugP4\RM#%~#ŋO킣BZ^[ `iBڑo7Tƒߏ$qE ,)b;a'8nm*# -mhbkS.zI/=^arz`66nC_”+=Rm1eb}nFIs>u LgnWPCNvߝltyB:N@kln\K}+xn -z\}㏢O[FչW)4iSq?s"{-W+#Em[^ -͈%^K SK<eNM>WQmvW#Gn͛jRmh&MF\̕Q(S%> ǖs7nԚc.mj猊yE*HF_5a.^^Hu(! 48DF -)pߢz Ա9mEG U* F'>5/Ya0-)\uЇyk&KrS4ĎSϸ=^P3qFڏN=k|\f:/ߴؘ]+{A M,W"#O(Bk?1,Ԙ ߁Jֻfn)zhS5ػũ-[Q>PV晴 -<l_}@cޕ?|Pni8WQw 9 dkY0yhbO}pI;!cC((@r>9yӂ,oE}٤Ӟ X$=rϨKGq5jkQ?~w}3;0 CN Xd%7!́$>$ZA9}oB 3+VT0ky0l"I_>玦#7b4 "NaCt8Y0WsoP}wE`GJ>iS"KnG9>{-Qo^]#(PG1q߈Ii888ބ:' ϲ&_+`RT%#>DLW*IIQ c|YZFЏ#«L_.\jvR졚ʾrf+eܳw. Ee`{TG1ocJigX -lȣ8c;%|@ڟ!DmXJ` BQD!h#Hz' A48_ =BUTHIո'@KǁQX!*vVZ[2.UчÓ.3h}w=ߥ -^[7zɁ18 -fQ*JO!7/R0 ؄hy;Y%`z'NIDXE|_.EԵ]n80ESGݦVO=WX yjs1oM64줓].ǧ d9M(B7rkwNO}6|ۨߘ`W8Adԩ3Tk-jcM`*/*b -5FEȚAl -M(#ETY9W!;54ސ29cJ.KLɗd j<=۟i}b@&Aoѫbcj_HAFGg}[i4m}ފ#Tơp{ -$pZjI:[!i7/AlYHwv7N03c׍M(ZW%,^DE?¿oaG*F6xW(w)L46wm %5;n\ QAYf2-@">*71c_vmY # jú!b`Zܭrž8Z<6%⧐y .R~&ۊ'6L&U'`#駺"nvo)$ <3|eo͝|Jo9^^UTG1HJƷJG.u݄$ӏ(9X a@y1Cte$`ZjqO. Aj'0m.,<b+7f{'g%-cjMr>!^WĮg-qm(^ }CcR̐b*BQFO4&\/R*uaY{Ŵ֞b8AE`(tE? -dXoȟX&}Ѝz>B)Y(Ŗ d:jbvl-R3 ydH1[b ]##YoV0Y؅Ϝ-q]xO.A$/Qiˇ4e aj!ٷ]5RiZ#g[u)$ԑi ي}d!a|Y0[:s>6~1G?1.g~ /㕡Ѹ;ynI2D!D;½D'wi Y~joUІ=PG[}3 IX(zw{y0&E\2V4V-40uu{ VhDіwe$h%'WR ,Ώ*g5-rNLm;5Pӂ~TBiN'Z -pjȅ9?)M hdJɈ1VMaV@Y> OdJp]0F{wMJ:r#^%񍚽2Os=)p<=*U*D<ɨ~Dy'\:Rj뮹B#b{t*ԴQ…n@~mY<*gs=3׀=*]@s$2/eW6DDZ=+7cFRRcNb -[{,Gq>AVZUv|DW5}zdBi"zH>LJ!ig|Hٛ7wq7v潳n5I7RW#8m|`lp15ͦ@fԎCI[ ]r'_<WO3 -;o#Yy0F\Yi3'!GA_`_zV_dfat|0g'Bg7:3U22bC' $z'i::~v%B${-]|iY;MqVFsΏ@ݷ bʊRSp€[.7>\{FQ80k1bD9̄fʼnV1F(âH lVl96m|QN8Y\@]P\"Zq8)7_Dvݥ{'.Gyj&n -:PƱg=es'd=ZD#P7.ʰ,}me!K]v9MiW$BQ~hGP b5]%tlڨ}FOQ\! -+` Ke60J8 -'O1AM^VvZC 4 ->څt/:Mn#o-OȬ iގy ieiLE`̡{_2G-kjсN1ҧ i1\vV3j`-@&o6 >&^z)d;084c4+N%]lH#(/}?O4a3=,gŹVA`o?:)h";J3Nw'E=PCX9oĢZ il [S>QF 6+Iv?ڷlšSQ'v;aMm6$bC^sD> UCޜޤ -m{Ζ5d&DDOSaiFҎc.+*g&,'[itm\VS=}_ӨV"hv6kp_mIZRr|[pCI`@Z>&t8؊M ^K͉\ &Y@\5bEnf;&li@3p=Ꚑ+Ebo)#uրA00bi:d@ɮە?OKu}tݩvXicLLc_~ufJh(i8sc3ޢ3: !{Ȩ2,0hJ~ mP _뇀)34@!`io -#ֶW -endstream -endobj -116 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/L/a/b/c/caron/comma/d/e/emdash/g/i/j/k/l/m/n/o/one/period/r/t/two/v/z) -/Descent -195 -/Flags 4 -/FontBBox [ -33 -250 945 749 ] -/FontFile 115 0 R -/FontName /DMPNDY+CMR17 -/ItalicAngle 0 -/StemV 53 -/XHeight 430 ->> -endobj -117 0 obj -<< -/Length 7469 -/Length1 1373 -/Length2 6096 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR6 003.002 -%%Title: CMR6 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR6. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR6 known{/CMR6 findfont dup/UniqueID known{dup -/UniqueID get 5000789 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /XTJZVU+CMR6 def -/FontBBox {-20 -250 1193 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR6.) readonly def -/FullName (CMR6) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 49 /one put -dup 50 /two put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl7Ӧ!b^Ѵ-E>3t;G<;l: OSS*O?9-w yg8LsYtָE qHp0>ˇ -,qۊq mZD]7ʺOk-G_\SyGLN8g2Q}:ä|C/ɑl ѓčC2`Lu3D*Cǩ5љsLUkmH FqTfZ$|2xlڮOuxgG/|:&Nn$JEQyރ4>py'3ji.ǦX9~b0 ub;F8(PFY|DS%y=gn!QZИOi歨H,a7`_Z<gZeߟ՟q/~j'[E1 wg,Kom>M8;r CXVkg-/R@|lbC/zK_i,'1Q7^3EӪ9$Zdy]ltr=>K%a1\(t.EzW(#MN̑6~*E;ֿCa^1y5ݿ'hyf -s.8ϰ5ciG$5g0KTlp@>]fW7QGVn~˟=]Z`*~7 "ڌcw0U{Yn._xIPYQ]`MN!Xw:R;t+]gZɅ oswQU)8aA^av>xƍH_n~}StG7 K72fCi0Gm1u?4&]ژdFpmUhӲ$w\Jd8+SE=XnV%?ү֟G[4D)ҏ}<)%pD%qrkoX(&Ƕc<^ԺO;FIRCK-fjz hs+*U-\(=D[d)@%t)#ْMٗA=5N$1Qkh|)Zc׼=}6^w'eufH p!x."s!SpزvNȗy8~%_mD8ǸrɳhwWu_6[= -V]Y2?% -)/KR|e=b_0Sʖ531ؿmx> ՘OX![ؠ`vf|}R 4"~)uv E$U\W;댞K0 6$֥拐Pk?yy4<˒q=CG$ @d~A1Q8A-|߉b1`zj ۦZ\.r ~s"b]Ry&rD0hLS)z6M="'OOQk {2+$}<໒W` 1=',hkƏCfE5F]Ћynh|d/(~&PB9Cx9 - %,9OKLvH,>Ҏ,6"+DƸrhL<]A+6JJ9ۿ2jQ}bF[z'p&S*U$ؖa`RI=՞dv_\WB_5n[&UXiNcuοrvI]VI߮\S"Ivs qYpP]5||rOډccB0KV|נ40Cajps8A軝Y4-L ͯi FV{%xE_ *`LOU -ǔKGs|mJ%5ݯdAv<jா-W:,=BYme"r5tŧ>,wxI_ esxRtQeh; -[Gf҄(`*/I{w4iOa"č\%{-+`8@;dZxW'gA$vq%=@ Py_w駾{p6LMmM# -R -Y$Р쭀|6|噐ȏGI`fkqa}@tZ&'=3bIgU5eA},):ichZ:l҂ 2W#30rM$a ImvO", -:(%CMi@\[ -t=UMn[B_2_@nu?L,DWUx=u}#m6xA x^QZ+% *{ϊշr RH [*Yy0iǭ0abP7y־pvkTTR+%7!fF gGP2?S%|b%N&t:>EOYJJJZBH-!~yp̊Ҭ㠄֯d z/3j*(JP$'AT˪x"b4~4]Xպ撾99T<ԟʛKȟ9[I{P>5Ruc&(0ܪv;{3x}_%.beW2eSxD8o{ۻ}wn,WPz;+RtVX= \uBU(Cvw?H jt~DxtӃEP[x/2)+ഷʱx46IHgoE'nb\lLhcb/K}kVD u6#+9oi(gy5lS{ ZQ 0dpWg-Lbpy\z(gR6eKG=9U2ݧCH opr'FS+ U$κ h; I~Ζ:oDUEFyo;0?mP>"#Ǖ T5J!*S@M7#8&-yn95GTɄV -+WS[Om3Pmd,+ST졆kyR<$ ݀ 2a&=CԠN 97#~MT?BzR͹Qz]sTP@P G- R9Mz)3MHxV'.(s;|_OT՞X9`G $PW٤eY=fE%ԤOpdDmz]֥zK+xIVk -w:Mm4YV#⺸M]*Ǣף9t5#rm'Eeo$Κ+z8n/=?njѳ((,O2w <6Fnc1!AzVRIز+Tko9:W\v.yA5gf]?j6)xy!N5g,:2F%uE`Bxw(ݯɆ&^͂NV۞AB k+&@'јsƒ_;q(_:.:)[ ?bt.N|Pm}/u#7A"U)T\ZxH ro}o2Xa/vD3kU[+,뫲,O 4%߇$H'űC/ |,v=}醜Cy`6YP*r8%{o4c1OSB!dA6]W%gcTޟd>M2^Nj[N@*Z;#hhK7#2;Cݶ2 wC"[yDJ,#b‰ZV*7 xߘK;Дyv96I)I" $!/8o(PyRUS`<!{Ge+(CuAqlTcu[ j=E՟2C4%2+drQ/;ڑ}C`@|&cſ1IO}5& !v,+M1pp_㯎0iP͕񇐸gZ1:~i(l=kqa.1':;)]4,6uxcLAa^!L"u -ɜ~=C3[ .18jITOQ -Qy(E*>'߇߃5 h V`,vr3TT{3O_<΄D+ h3ʂpSV#u:>f`"_Bon!wN y/C5rb?7@?+V5خ -B6oYq^5Zp r,B^:NJ07Aϊߧrէ}E4zAWr%`HpZp={o.{#'uMTÕ[gI{dLAN }be/F? A]buvqݓ[3<4MBTparN[0O4\ۤ识BoƸF >'dnxN#ik_Aޛճs#;w͑2|ڜB8"f;GZ@ -?ZHu&mٚ< DVn>* ך< "™3`Â"0rؕ|,lQNeP0xݟ=ϺJ9mX-G.؀Ƭ 8i -'h=,0V Px8kA8(w}Bׅj)ȇ:x,=NqQT]2]~T/_J:x>`!e ֐p:s*#$p9ý<\Ϲ3ePB[Z89V:AJ@Ͷl@RՁ;hܜ :Snt(&#ސ K X,G -.~e/ -endstream -endobj -118 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/one/two) -/Descent -194 -/Flags 4 -/FontBBox [ -20 -250 1193 750 ] -/FontFile 117 0 R -/FontName /XTJZVU+CMR6 -/ItalicAngle 0 -/StemV 83 -/XHeight 431 ->> -endobj -119 0 obj -<< -/Length 7907 -/Length1 1405 -/Length2 6502 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR7 003.002 -%%Title: CMR7 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR7. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR7 known{/CMR7 findfont dup/UniqueID known{dup -/UniqueID get 5000790 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /ZRYLLV+CMR7 def -/FontBBox {-27 -250 1122 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR7.) readonly def -/FullName (CMR7) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 65 /A put -dup 49 /one put -dup 51 /three put -dup 50 /two put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{ޣ\u3]G~ 7G!/ Q FM~f/m*i("!i -K5> ţ d,J^,]^ -z* +khjOwq k&,_?Ɉc"n?W)Ջ kÖ投`Z/S *?c|Wgoʮbi8hesQiɺ4)FvP Vؐpik`j`EU)oW jBNfPTa_$ uDd3QBZSfyu4 螨x঺N<1Xk7I>%} -'T)~$I%qPI#-MVxkx@޼ۜZJ6h=hAڰ:#obv0e\¡0cPBz{f=d1G'{1@dD~yXrDOZE.ϐ=(%^/2V)(mfR20`މTLm/QL zKMmͥ +^vA -oEGxvXIxAW>xCª5!w^ ĥv(4,-eӻ?/R?Dqeq-xE $ܘ*3oᮘY+0{+N.>ψ'=IJ -f]̇C"spn21 {3=Ej4ZN2 -K~*w?#9; -A)Py 7}^muF2x~m64&G?r\|6L)ew¦ØB+rBc۞3v -!:0{uL -âAj}{q3W^B'(Yhn0WRS?u Zin=ٽڠǘ){s=m\ul^GhN@(s x6bM'*'6?nA{,1{E.RxmN4k(wl30M\Er -pty o> -{a_S -[D.tIEӽ ]fVՓj7Va_a"-{#- -:bO[)HAXE뻔Ug2zOqq" rI~$>s0Y@Ȩ5{I>y炲oCA2=B?"R -g_,~q.E| noϗT6;i?Xb4}teL1~&LdZ}2W.4.^%*D|Z?7W1 * DD?P_toKL'c ߇mS>-#| ;[R1ڢ` -@@onh.VF+w3ݟ)RX#9sz4X"#bwL{cFNj'ƌQԑt2Tn~. |_ߐk(Fm -n8*Y3".g~3SBج!͗s8 +݆ iD7D#oEMP00pn̋E\ٮ+7_ QzRĉ iDoB=|n$2bVÛWRu^]72# -x7SE5OU:?oq W\qPt<hR,v7EbZ5=>Û֜#hSRA>2O?l"q(DOuk4_}Ǟ# `N0N_CB<=gKO1/a!!ԓ(`J˭9.R˨y1jlnL`f~ͪuJjwD19K^W7L(ҿkH8rC/_! 1gg` bu VdoT_E$ LZCbΏ)#ue*<m}}<Z1]7n=6c~#`oM`IGCcIR(f 1?>+YKCZ%s)pxHODRhL⩩? -F,@۷l-%xWuLT7a5 -b=oюca -rPYqf3UeQ6ju! tYL,#Ev8?@<m?ĸӿY7^U0M`X,oz N]CSpbӿ\{2,1ߣT&JRCu& /D#eΓ|}J-ozOYTC]i/ K^QaCi{;ᤩ`; -@WCk2YHG$JԓO>K+ +F. %KWWZ ucQRT1 >r튌;FG֧':ũdXn|I]ͨxq/1siN$bppa5DC$6lg*4/*$Mmd$$0el7aa (w3\\XAȿ4`]|v21) d6.7FkC/1J5deGñqvTߞN|@\%eC_>$X8cB'f{ nQZNr Rn}R1Bz _Мך-Ekjmnk"5j/2~bE9#FmY۩~|NDpTT6Z%H ctjz3\ */09R[Ƣ3/c4֪K^ 3b%B@$Md$8(sPWcY:2N&q4$ -VYvHS Gr +?6>s{&@ Xz #xHH+D%vZ~WO?V33N FӁ9 -[" "rme{3L7gdzR`QK8\ڕf0h <8 y -9\PD^1L1̄\$CFblMQz.Iۯ8fv -%ڞOBTVHY+pJ}S -ɲmpJ3Yas ݟ*SQYLBP_[HWBQgf `~[x/yp -vi >zxup^ľ@#uw<4b,m*}p…N{fE@fNg.`d"ŵr sr45S-U_x`F#忐{+BUTK$GÚ t3#;8d TpLxcXdl!vFwאHњmA[w0\&CPx#5]^%U3z*g5PG%E)QG"0)zA=W J]QI7r:s>Wv Z8yey5HE <+lWJ"W}39oWv"o9aض8^>QL%@_\^b"Ap6@mVy -`0="nʉ?6* /zOMpGfT3ۘ!L3~r,}CN''HN<#`h-p?{/h:â3di|/*HEnz\5lѕ:;ܩ'$"X^Xˋ#HUдsĤ"خGrIdFΤ -endstream -endobj -120 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/A/one/three/two) -/Descent -194 -/Flags 4 -/FontBBox [ -27 -250 1122 750 ] -/FontFile 119 0 R -/FontName /ZRYLLV+CMR7 -/ItalicAngle 0 -/StemV 79 -/XHeight 431 ->> -endobj -121 0 obj -<< -/Length 13328 -/Length1 1851 -/Length2 11477 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR8 003.002 -%%Title: CMR8 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR8. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR8 known{/CMR8 findfont dup/UniqueID known{dup -/UniqueID get 5000791 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /TPJKYX+CMR8 def -/FontBBox {-36 -250 1070 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR8.) readonly def -/FullName (CMR8) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 67 /C put -dup 68 /D put -dup 70 /F put -dup 73 /I put -dup 76 /L put -dup 80 /P put -dup 84 /T put -dup 86 /V put -dup 88 /X put -dup 90 /Z put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 103 /g put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 46 /period put -dup 114 /r put -dup 115 /s put -dup 47 /slash put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl7_gѳs6;P}tx,IvJ3Yʫ] -=~Hrl;H :(xP/PL͍SI'sb~|PpNcOAͧBV")Th^Cx(Ry,s)+Hߋ;m*?>H"%N;8'bGZÕbd ^i$iaesF)l:}3X - Mv%GN,Ҧ/~`Љ"JO238ڐi -]IGcf7Ԁ2ڣ}T  @ &x߳8h -{ga5Lw'~=OLcgPv9F˛z%e|O/bV K ^Ć8ԇ<)M<m;疑}Od1]ZSmPf4Ժ)}MPg2вl1gFޢp V}{<[5iJOY>5XZ$157~Zڕ-UDm?3δ쩄'V+RGpyDHvx{pcL1w¾ FMNg(S ?)?;@ṂBN߬GXDio n PSSXD[kg[tU^?f27#xUým`jck$u:RمiEUա<.^Y&ۆo9s> û -8jzIC%oOn8Rg#;D2(J+|Gk9ڲփey/9+,-b3w9W7} z᣹өUyTpt_24a6s!O #i׌$޳\Apr$w5\plYn1upd[lk!lRv4_x_$V[HZKr\wu%_F ^ =ԝȆCf%-۷R>Qt@2 )~zx6mXFVCEOxJ -jFmh)XɽЇ8{u c*;e?blV|@-jAf9Vb 8Tdj4!VerZvZ,eV҆?0 -ZWGvl~و[5rL}qTvmjCbM:gÇ VOiڪ#|ym-4-, fFxWpsX!6q-M'ŏ"1,sxɵISĜV"^j73EvV(T^K-k?Ӓ.;d{)pBh+4uU *:m;<%s!- -8X+p&4jO^1TpvD^ x$+flx7=1S6>rMz 40] XC 2ƺ_s5uD^'? jeq (ӓQEuf%x(m"B (brqYqu]ΫHgp7:NQAdYQk(|_S/8aV%'ov"U2!kh5Q?)投g&J$,jS]&1Fq**X*ilSfN{qZ '@dnl{"KDŚ 4tTY9X}4heQ l_7@ZUĩ/Ac*A\4;N{45L=!V5. }rKqS*'R=:tF_}OV-F=;*ZGoe -ED,A$ CÚI9:Fω/%`,miSs1M>l搣Z՟_tJqǙJkuBy#+1HLabL 剙 Wb])Qjfnpht;\܌8:,{=JE2[WD{D7ܻ9'Jޞ#11j:n+G,,ls3݂FITHH`v=%.ayKyMBn!Sukyv"5Dz -֧'4Q| &֨ӷRc3k&ӼJ 4m [[h|]5 -9Jȍ -0g_ -wn{QAnGgIH]E oV值4:(\TYs7HAe{Ю?VN,pPTlΟ fg;I?"BDyв LM> -E,4c| -}=xbK2^^WUAV7xQ~e#EJf/5R2 jn@FԚI&d|+.;b^ɺN(S k< q/3?׏ƚ~sďS}V7+v8kܩ!ȿ}x =7Z}ǜ]c!j~?}&bXqiE3xmΏZ6զE7C+:Kꉓ~FdNg1Gκ%ׁۃ1ýwCl檬q1FQf1Ż9\@¼(ň^Eг%( fJz^ ' R 2͏aǃYֆZZgd U9/|VϽT_&$_=1zGGx /"Fo<,*#Yo:a&jCȯťuK`uŽ /uwaEt #l!} j؇'*eRh-.h;hMoجcx(iw N̸u T=6^ V$[f@[sk4kJ@/SOnYJ\"mz{1*JKْ|(nwCָ 4&j_G.Yb[J87*"&!Ν&${G?`lê);&|vMÞ\SSELok.N&@`S9eϋci n "*z(N(`(j>C1*CɚIbtrjcWqt?[Ii56߫AښIJ'{-Al$h;m#Q5dd0u3+CcZы|1B]; T}݁{*!O^5 ;6Iˑm-x@ʏs[2 NCb+i+Ɍnu}jlD=_}ٹ*13?9r5\ʥB24"F#KLE*Bmw c,ɰh,<#fx%+L54yR#Ss+j%rqJH엮`S|'a!7[Z&.BvK94{~ͯ'ElB9 6gŠnS&}FL5r1}X蝻?;HǯPO*E4%_Qy. +1}ށ;\SlKE@%ŤQ"%VD󩉬y!;0j`.(9d !0;/[ċ>#qod]O>=z-)dgWl|nLղ FEHқ\~l'҄u6UeGBnKM̉OeӁV?hoR5y?ݙvĸZ@'+my5@:pqU`y -2~&@ʹNt;=ΰ oY+KۛFtz/zRk]z,l93& ^ y&\ -v+vXuC2I~gs="(pQ"RQSq1x̦,1fɈ[G]x&͕k5E' zFm]mT{ςh1Z(vtO:kТ4oP~Ԣ 豟l;ݳ1`yI@!fLE6<+w/_+XNVLTI?Yuk6rga tq=M=?u4~h7ajGw֖ˣՙb8|7_Aǵ2s>@rk&$n·nٿ`ϼdKDNf60ƀ4#&649߮XGOUSV9'&F#U@VreN)tX{bn̷|C'Ob^Jp$:2}osre 3ꁈ#R@D eܾ-찮-#<<\-8ŷ:Ws}w Ӧ\|Jy:,xf~X0O @xLcfġ9Pj'7a3A }~P]T#ZWo T?2#[=UN3JMNS_{/,ӛkGZ$FG[B{S[VUii^l>9OC45ֹVqY@{$9oz@:6Oeb90i.fZH车$[ƾl0/f /@?BˆQ!Mђŀ -GX̺fNPiqJbb"ݣv/Qh/0i>h̒O iơwL/"B ǫH 4K_ r:ݡ`ќ nFW0+I4K3v#(2Gq]X8 k. gn߷!Hjl+@ OEb/ntpS)kI'i.OeQ[kգU)hRU؇9w_H,@^>hG9I`\4"wtS_vՆ,tk+y#2^lh rJ+T1LF4>ϒ_!^y@Sp)״TvIƲblfPxKYAݙihҿ[ϪGDZ2اpl.2@gv8}Qx鄒CZy50ǜ^UnM )D4|M,ff +pt οJD`͔0F1c5b4d bQ6p~es2*()G)L8edGؿ3E0@ꤹ/crSu$zS2zNekzDŽO+yr\/T1QwGxt6H5}3:CuXJ6[\bYNH7EA'0mp6AI Թ:FoAi'7G4G{YjL%à>2y%_g;MB^ш ڎz ^紤@fCz/3S@w`7)Qg^QÜ4f)XO[h_sYi+ UHKۮH&VЂ2_4X'RjG`8[m^ŀnej+;C-|pܥ!q7أ -2^HL*!AjӭA8" {\W)x -2k~_Rl`mVLaf8fg{9=͚-f>?mrkdΡIzuHa̤K@c#,z$Xu϶!"M4dOcGԧYbแQ ]J.Ϡ ep (wnD|]J´+XSL -+`]I9K_dnEd|lqU$ظ%ioMzƵuhԚ -u7?+cS,R!t-+=|~92*%-i^r"1r,d/c Ұ&9"iH!Y#puԁ Wl,Nd>uFHG$ޙ MN[z`@YU,@:Ab"~.m|1/[OxB?pKZ+s6V:Cٛ4?excТ9PƪNDHˮY oA~6D}Q$AP\GoZ RƱƝirs^-[Ж[l#5hBqyn{iEV]7{!` CUFL巜&G,3VµyMUylHmd)b|;5x#HTc;,vz!Ϧ]E.&C.h[_ltz;̈[%̨6YzgZ4G2Z@1 @0+~um`uH.j*,… JJ[Wjd8hb>鼔&y?2# BsZIDE᩽W:͡vMYTG]& #@kdH65jX%@Ң܇RA5nx|)9]Lm59ͤQT}[KisZS3L=-z&H赤ǁ!4N!v2AI.@QtJi1o\*\s$}=5ʥ1Z 9=C'3[/%O[9R53+RM\ bHOX#-ߗE r n* -{1{Dcs:[{x};bZZ3V r<[evie\KlPHb;M.V_KyD cYU@ ќ M<'gc9%`[i0aX=$cs" y ^wDk7RJ=%gwXRfUfHnʸ$N~REm35Ů Zw'NE\X^3NxdaW<Ŀd`DxR[uCj+(DE7wk^>C>-M7 7_s ]uy#J@{*ݯ|k/F>׫9_1O$^@CA-XTȼR4Np$e00K=kCq^'af /N8&^øx>SgTsu`Tl{e >N+bH "Ql|QiIqvqۼzHј;zDWc 5RiWrh!#hLnY ɉ=Wwi%/*b -\``w z#p)ǐR ef^;uxN;E<#ԇ|V =` Dg;T ALJ~c>#-܉sE}yգSQJ}>i<[h; ^(/׫?ڽ'Ka.~.*Nƽ¡ \6dh.i3krV;LE%K" sN6ŚY' -SQ*i 咸aw؝R iK2vO̒^]Jh?[R\dnSveYT\" -g!1Yg -_6ªG,R@M3M -+G~uZYt ?p bh$\7찁+1:>2 O $<ȦHbAib2ɚP[R%˜ -X0!ozUXoD`;̑>V=Keh grc=xGCgWsMtXsmc^֧hLQ -endstream -endobj -122 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/C/D/F/I/L/P/T/V/X/Z/a/b/c/caron/comma/d/e/g/i/j/k/l/m/n/o/p/period/r/s/slash/t/u/v/z) -/Descent -194 -/Flags 4 -/FontBBox [ -36 -250 1070 750 ] -/FontFile 121 0 R -/FontName /TPJKYX+CMR8 -/ItalicAngle 0 -/StemV 76 -/XHeight 431 ->> -endobj -123 0 obj -<< -/Length 13138 -/Length1 1736 -/Length2 11402 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR9 003.002 -%%Title: CMR9 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR9. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR9 known{/CMR9 findfont dup/UniqueID known{dup -/UniqueID get 5000792 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /SJNHCC+CMR9 def -/FontBBox {-39 -250 1036 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR9.) readonly def -/FullName (CMR9) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 75 /K put -dup 84 /T put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 103 /g put -dup 104 /h put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 46 /period put -dup 114 /r put -dup 115 /s put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{x< ,-.2iRnñvپ1䠕 '䓱_r"O_t3kefBݼVfj9ҳ 7! wX: 3Jwͤ푘IKjfWI.kvCW_5gWZWO~]!K"x؉ruJԥ?F6Jq>B^f'<2bSz>/kaɾP"jt}[#[p__ @Y!ɹsu~/8MeC2+{x$*|܆k)D 3CҊUDw/Õъ7uS2v΁ ~ytKd"f!Zυ?.ǥTmBlHEU[ZF`Qy)`gdeFIrU-J~xg4KX { 7$O@M?\(L⩎z%KNJ`ī}W6ĠAP6N錛"7`ܓuN -SX@*i,xIۜ*O/" -t1;$l% p#B+}ڀ'ƱRS^P˵aF(~#ۿB(I&@}-:{yA$m:'}ӧj^\ĺ>segz!,ܵ/u-9u}eIypӶs$dNQ/9<` _`m;4uacxr!LB Cu"KDPoѼczضgӅj=>1Im9!`Z&USYQoeȲ ׿ 0G> ?:. Ndơ]U5=:-z6g&QZI[)( Q ^6GB϶)Cflg=У -p#E뎶o%iiT8v,%&{6"I"Pu>Ul Ҧn}㪣ujyH^^?"8AÆKh_Wq(Wi4s_޾"/b,zVgl8_GjjxCFTģW"1v&V@}B8Wt9fggs Km }x[!.ZCgA۬<9vD(dh9,oK4Ѐ?Xe^E>miQ>L -|(2>!*'%芡N 7Ԣp> Wr1 N{L:+>+͖:U)h|NS&V<C.ꬼVݦmwҧG06RY H&9g>1iWI?ƗųȦ2•Y;yӂgo٧ji]WQy_6K1_@H{`xx -_gg\It5m%e|0/3Tizwq}ʖNIAeG ='XC8o]?ew(m*>[G9贰c.b7Eم}S(EJ~DRbx `bn* GoB)7!SԦ`o ?9h{Fk9B -L1yo(QG$0װ]3#,OJ8|~"Oog(ĻxCg픻4}Pe &ol0' %Y>VNo؋lj=;xĭ3)!GtfJ](2{)ir18/dYY1AgqHus'3;퐑˞RNt(n> -" -O`AoxbE ҚO(JݸtGhacb-iwS9϶](?##ͬ7ۆDh,,#X=@c 4?q>!7'CR :p\(rGVIʵh3̓1_ -տӄQsbv -tü$>y=-|犬DHB//gm?SFOEn7UߎUfݢ׼Exmþ_DRan*=vߕ2teX|uj 5Θ*{txbl&V֥ !Qz>!)x[5&\#@ag$5$h;mUx)|Rpf *YF˕Hs- -*=,$4zkbkv?JTEz0X_gS"TݿEԓfY S`9ڳs pc<ʨ?Dс] BG?8""t9ES)Bx:oafD&_<( 7NL'%_1T69ypF>\'Cx~LN)VޔO0"A \ũwyzN"3+aYI"" [Uw4Gׇ(ឳد4drچڨa*R+d,wVm~A)|Iy@ -A%0nje<3D]=KԪZ})Bi#ycJ&kusgWE[Rw;)TFY߁΃0u, LTˎ!l6p(RJ&4ҧ·zD(8eWEO (bHN9I2qM"Jp߳ȉLx91( j{x^P@XgS*HXbe&hZ_OVQ#J;Ĭ3q6KXQf M<PdhJ iJ@YoJ fڃAyuVi#84&D:dO&FB+0M\5bDl[Wj>Ju(RܨЗŇM;UFߵػ6ct(Qm})mh i1rn)Qشξw/{I3;4gs,dQs k_S+y>{DK3-z'C,b!HfYLA~q0.f2nco,g5r#|m05oJpHCou{ P1} i&T k!kZeni08amql!2ŧYs}ELDGS*)@N85)C,wҚ4=6"Mzt]AJ)]Lr*InC^Q!IQVZc2ՐU;BFbFկ8nXIAL ^*‚o.\SYIuyXs? 1Џ:GdqN$JgnLs{BqY]jfYBr뎊i5pSCq: -99xec]R{zC?yOS.+T#`J**Or: 1-Ga"FXb2OF+< PpT)Y(aVK -Zѡ̍@ݾO:r^:M9s q@*DY_<Ib>Ce[@Ч]%Ȁ#K7Rjk2A>&^Rz=f)gjAݓ'xbBPd<^Ҏ,!ávm J!*5ҋ.5(K>++4y@B[Y -`͑!-|RVMr6 d$jwe(%.`. t -`n1h nzeR#nmOنwwOu*NkxcV9Hq82ɤ3՛.S+@&\]bWߡ!Nޥpa0fln -ED pCr:Q=̝W8{mCUط;Qtߪjƚ|YQ4C<ZeoD>소V@R6I+jiM׍.;}Rց0!3+B04OqߤyDpk~rVUlF=~K,܏ Єʳre!3wr |fж|l24"le֙'IN,5LkME(9hRGM'W vnvq7R7nmpXr8&kfLSHJoe4+7' #l~zpIɀ=*k8? 15<ۜq_g]]FE5I /j_RMFsv3Fl5\sI\GCq{{* Yr*+'e8%7?`~wu9rYޛ'PdwƱ.=v힗su}]?~.ʙvj/g|ځ9hmag18&Q)ZYxqxgJq#_V{"^vуVWh6R^0CxxLJ`$dCbu;V,8;X zS4;AI#`!wwl[z~7pR/>(кɄ3ZʪOu?(땉aڣ) ڎwuE&]m'@tAtP.޳${nA~?*~>C7^9 %5g5v{~0?:XwELFM]ўX|JCe&Mׁ<̅ٱ+JmPAE$Zp햾7d}[<ƓѭC" q|߳1z O>;5tQ\)3l`ĞDtbjbQ NURPKltѱ![6MW/MH9L|f3+X+H;eg0GkO)M_ *ψ'wj (ţT++O`UrAiڡ ǹlzR9xr reiƞd_$|Cmci՚k̞-&%h -!7Uz;)y}`XRsv^%$|\2o&OkkRs!? &Ti~S"I)o0'%aҳ++ke-9FBց+ "R J!>dm`'c`$_;E&#/!X$+[UZ6 ΓOqh#v\/<>) -aLI\l4\ I@#ť+W:tugX|^{iH3hq=o:#eLĠ 7{t V&.k$?u*U8f͹hs_(k%7n5S -anR[%n -JO+e R_Wǯ -Lf픟H(4!zgބv2>Sv'&=@Z*mYC%i J6Oci.N,\j`s Jh^K!_{}5KK;U0{ 5i}ux1@"u -z1- -_%ū5 -z'Ɇ'ל}ɨXP儌6uj=T>H9CD1/T,W, ͱh*7X6DAF7y<tvc2mhAk;G5xZSi=aCN7b&kg.Š ]|4 yCBx0q'N,R4Uw|Xyi.yV֊5`Qj$UP7鍊{K97@Hw|n#7S둍7p!jw:d3p*1&(b䩋texm _OVq 92A~ 5mAp%z`UmJ<8:?DŎC,,V"'1c\gr? :hIvFk_Vv -2%(^!8?65!> 1 x2e!͎}9fEtz"*TU,]L8 j -thӦuA-xvB;n<2He 69:*n.iG\x -Z -;_Yy=x-RR4EsuG\Y h50 KO9yV\`_[3JUQב)`ϮX:2{oR$&j)Fa8H C5nI]=*pK0#(7|oB:Pᵢ]:sTl) -UUB[W8_믑gEʸx:-m1’G"F ԉq t{y捶'܈t7؍bk}IbUVSٴe|{7$Cdx@Y6.Bo.|?x|8$;`S4~dcz:0hV{"ZEoFo=c]T4rdQMf(IR=uG˧v~F5}iA:M{oHބý6?n)ص9>s#2GӞ5쨘e@b9e9nvOhO쿭1|f|{TS8t>78Ana-,"I8+ qN86g"Ryu; f quz rIp:6QL( gp -R*QQ}C7w]i$; AO=,~&A -HߠRdop;-IU5*wN/* -Ǜ2%>(qd$ƢS2xfZ+r^5Jk1/sP܄!{X1U[&_z_\vRn;#xIM7:Xξ1ZA}XS#y![;wxŹ+Im^UѥA lC8(WPꁯϋWvφ-&8e3.!mV+PI ۮ3-U,&jK_Ħq]BJ taɋv|ҤAXFr>@ #mVa1ǥ\Nz9 cTüV3X8B uA٬_+[2G:rp*zحlF؊Nh19\-{兹?:~Ogh]݆niʷ'QK)CUA:y-5 e.5!fHΩ=2DRv3WClXh)AYV]u[FpTqw%hEc@;&3KmzkR\__vUXa #3_cAʤ1@;s{Ō 5?)ʋv%K*zhlbF|Rdɓ+nKUULٕ79LyN/ % q_Plpa(?-!G|fj -{HmiN.:zJSͽf!'!wUpnz=\ i0kЦ1OT$w}Gr7^_(BYǏ-.Lv@cxdfdBO0 Z,,?nb$|H2 >n8~Xӎ}*H.)}ڝQǎ~H8qw< -o1|"PG>frtė-P, -ue2_-!O -v2]Eg.[K,!2.\ n&e,*3Ci( `9y2 Ym#X ԗ7"8'IN5pL&I>. 9!ћFoHR(91Y'ڬ* )d4ۣ@},;]ZKN{Gq!lOyQ6U}ɕ"R&-Cͧarc0@>!^uXi`=ĝ)o\5~|D|s^:5.J': =oe.Gvwv$BLʝY/|GPi>Ru/$B\*niOKO+.]ㄯꣷu\-?Q.N4Uy{%YVi(c9`D8h ѯ{%LH*62L5l_sM5y@qKP?L_<*NSJS> -endobj -125 0 obj -<< -/Length 7527 -/Length1 1419 -/Length2 6108 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMSY10 003.002 -%%Title: CMSY10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMSY10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMSY10 known{/CMSY10 findfont dup/UniqueID known{dup -/UniqueID get 5096651 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /OAQJWM+CMSY10 def -/FontBBox {-29 -960 1116 775 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSY10.) readonly def -/FullName (CMSY10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle -14.04 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 33 /arrowright put -dup 106 /bar put -dup 0 /minus put -readonly def -currentdict end -currentfile eexec -oc;jAw-ᾉYň5t&נ{hLGqB`d˗Pة|*x\ޖHtEB-gedog7Q`[['W73sZ9 m !tAY!$tY\r[uTIUiBy[Ȝŗ3Kï6zJ!˒Js&B5C"m&`7Ӣƻ3ugNC O~̶uo5=_T/ h,$B%dʘ3l MoYLڶ~3^`12]=l8B6PlpfW< %PIN!ju#,.iXnȼ‡o$ҁXꑷI5V*E6tKo_)RPG;Z@9"V3TTLN Y:Akڬ6̠==80~DQ Q^br/2^KZh`N'Jt4iBYҁ7ޟBU_~\fXAZl_ZƎý'xHbG:"l5CU[aLrf 1[;4p^NpqBD '؅93M&9{ VD 8 aе2n.hf -l?K[$Gp/JzcF8vP3/XO6yAo~]WqDMY4ߧY̢XPEL2_2 oH{ -1x'u|o WNRE홹&lF\LRh1Fb}+l C] (vfo+fM}l?c*ވ"^R]miKOҎ!I ӲR_tW;u@(#t*̧ U{|Q}a3Fl8xtHWA­;!V CVov?³;=>,㧫\"RvRCإQDh -@_,˜kbflAIP^wٚdIHzk(c3xɁSUPIf{KΩs Y/v[L%O@HdjyTõVmqgC9zTC/t~Řo*9rIojUKxj. ,+b1ֲ IlDLQZ3P-no'$F zg!Ј*oj-Nͥͭo8KwQgݍp*1^.֊ LV~m la ]%."`_QipŎs5y.Xͮ)Td1Kk̊jn0zGqaWQ%zJX3tIy0ľ.#[#D#EԂppF*ޘvrOdn7n f9*X:>Ǽ:*Lf͍9&aj;+{0 )AgðK*XKV'zZA) n TÙLJ^Di[:s<ܸ2!U|#5VfUqP}|=G5O|Ps9}* -+gpA,,=|j25Cɂ7 ./Fɹ0tRẊ."we hPempJo@▁_A3QBV~$9Ej= -]? {w_53Fgӿ4BAq41Pf ,Sş6r[v` xG$.} ̔ϾF͙c=f!*˽./wĉR8(@ًz c@N&Imݣ>X!me@lW"VCH8kՑŨj]n3X>Jz?D=Nbn {qbY(>"8*苾ky3o H Dw] d{EʥËw.$Vhtzk$kk$]4cfCW@3plQQ晉b/pTqF8_AnQmK{&z;<տm[i7뜣'*qXTnt<Ռk/?2m)fy#(`%{!Q/0&sxfB+rE[tgOKQ$$=ל?d@3c)]3%*M}H饞;Cdrp1jFcstG'C\p))_)( MM - qv&C3NLZswTPu{sϰP+-UFUP"KΆ+Ye7?0(idL;gk9(YI-l`;`AH:YHb1H{wR^Yњ, -$FԖHDV?pyїP%F=BGKPh~N[I_ꈀCTzf <Ӗ`4|mE1J'$`}R \N2kfaouJ73vKW{M3?׏M]:W;vX;B X.PI;?!T . sU]䮃=X 5rMt>y=*bC~^ tArl'Ŧ\؟L냡P&7ttuGz;Kg4э;u)";SvC~?J/F"6U.0>+KQӄ0"ӫ=sxoJ]ת!w6O.}t5V˩+7Us֩yēTC5GrgU5$&|~G8 Mv(jt Ϣn]]QWOؑm. R[ИoNng IF:?tؐSUOcj2Cm[O7>kWkX' #t'Xd9+E7Nd8{]m/ ׎dvYYwop!EP7F?ojP9"gBP;B^QO3*B 3un$I_Oe` -$`}-9Q/ĥMe?Ұh]b _2<͖+tª[ϜJO@%MI tv\/bMVF05+kI2W9>f} Ķ3tj|" -[LhY)o57k#%H\,x|ssxH͆|;` v%گT[c]e"GUj߫ytvx:udQuZy_Td"b+O]lx'6w6XCDKOf(g@w]fV[~1F^A3v Ovү2v -zT0b#[zyϒ$e1k5dRA`(Ņ@{=yW>>y@U;=H;c{30ü^ծ)ՙ-{OO2R´xQwBgБS"תlbz;Iy\EprkM @@e&3lʉtS%)/pR"2u -Ee5+ٰsZ'bQSlj zvހ~%.Kz\NE,eV2=Mo)-JcV:U2Ѹ>1ȓ"QWOё4*Oz.cjcY&=7Y,A5nIF/?̊ ]as.N*T 9Ͷ?=T"m grvdNxt(h,Dޝ_v -y`+W?od;&ȫAI`knywxż5č-ly SZܤ`Åq}ۥvkmT9ȻT 3"NlF9Tcb`eL֍lU_>iD@PnӃmHA.|Y/"BձO%fA7Si5=6cgI^ؗ Z/Ez4-l;¡^ |lTM~]9< -.t:Q1'ar|*ə11-VN"DM(xSRJk*YK9GW(Ru~|iBcC(†k0MugQK*4(vHy$dor]}o4e%h,OqAhxѪZ/=T -$$z67 -endstream -endobj -126 0 obj -<< -/Type /FontDescriptor -/Ascent 750 -/CapHeight 683 -/CharSet (/arrowright/bar/minus) -/Descent -194 -/Flags 4 -/FontBBox [ -29 -960 1116 775 ] -/FontFile 125 0 R -/FontName /OAQJWM+CMSY10 -/ItalicAngle -14 -/StemV 40 -/XHeight 431 ->> -endobj -127 0 obj -<< -/Length 10505 -/Length1 1593 -/Length2 8912 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMTI9 003.002 -%%Title: CMTI9 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMTI9. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMTI9 known{/CMTI9 findfont dup/UniqueID known{dup -/UniqueID get 5000827 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /FOJGQS+CMTI9 def -/FontBBox {-35 -250 1148 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTI9.) readonly def -/FullName (CMTI9) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle -14.04 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 76 /L put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 44 /comma put -dup 101 /e put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 114 /r put -dup 116 /t put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsS?#;IHIRd Ȅ'w7 Ἲa }j𙪎 =TU | Ӧ!b^~CJ?;UߨY,Ԭw34D2޻$Xec,IC0aq)-PUaVpSj*?4PDJ ƱNJO'L3nBg%dO޻ƞ BՌ:9v{Ұ%4II-{XM*4ZίORUJ O+"ґvO@3dJxl1Ԛ^}AKG]\Үӂw.@,I؝8ՙ^|٧ -HZsN2u զ,WӮA 33pqJIkEj¯АG8< eMi u}JymKP:cՆn~#/ ĊK'@`F,PFd/\*k\4 Ew>~I(G%w>hI7E?Oz&Pf} ʪշM`j:W24,hV=d *Nu5"$Q16PN--C&>MX ܴ/HG'+:Yӽ뜀fYM2~[z%Q #Tb[zNE!PX1G $zC«>nE|τr'xZ[L#{6@^.|a[bZP js|,dkb}~ā`9ش;ޗ`c,SՈTٚUIR $W\ΚOb_tsnV-8;rsIzAM7ŽL&UkD7§3D񃤐xV} y ǵ׏i³7N5 İiJϨA L1k$O rŃlϳT"ߧD;!U+AddD]t\4IqSҫ6tΟM,I6UFf?t.ZwdTcZ;z W,w)N!!\>07A&.~Πi#FMXz/~ddwwU'(j́t~qBc8i3=$[Uҟy?& O;4x cV haزò]矂FCRSFxR~uZ?2iUj<B'QFX8S tƚ({֟{x [:1YZkDP _ m+5> -kĿrv,=4flz. Nx]0ȆŁ0}Sz%A[7pX+2"o5T{i Ab,V"tCPُF6q@gH1nΈ_=zVǶoDַƸ럒RW\܂Y XtI@2p_'lR!2{+?FoRyR_mr9..>ýv+,]D_2WDujNnI2}X嚉[@-[a_oU6.wolJq *]A/m]#(1»!I! ;~PIg Ju4kh:qKmWRB}%"VJK8fX Ų3"GS3Jh;_3o4 {U4X)K+>fΨۜy~^v k` |BJK08j`- -4%.qQsK.FQe ڴWOlG9ْQeꍲ4Y -s -RՋ^Ff;9D=g%7%z»{`I1cmAH1oYmE&³$rN;*,W7_,HqE'ig^)b~f߀i%!7RN74tUQdد<"8z kK@A]0<6HQs%|?a#V<!C䠚${fT'2Ϙds @Nu UBT?P :\݆F/idl1IZ)ƒ7ֵ;+>wbJx6=tچSe﵎cIQ\/?39bݫ/i8Օ佪S1(+TBPWPxnԣ[9؇ԒG8NFӺOB͒;zwU2t00QI'4S)l#̀"4|ZBRlLC24uGw^Ǽ2FJ%[VgT@qɞV$/N]S;PG"ƥiZ?/e6#7$j,e@aS /?I'C*݌5 ] m*,,yđYG"~)WŠPQ_kM@% #mHOOQ.a.c;iݎ 9Myνq_ҨUaoM AxԎ01¤KIGf, 73nG5mH&-,bNP\|f u[:O%7F-%;棠j^2'Ӊ._|tƒqoidуs" br"(a 6m׽ SEi 5Rf%㺮=J)H)M&S~iLK4JArmj7iv|e+odsC WOя4?߂UF?ԉ k*N!ܲeRjK-iY^e&2RTs\m|y`4ZХng9&JX ^p -풩yf-/|lJϹlz# LY/=Fs7k2a|Rs|cq?d2E҃ŇKAz!w- -C-jiR1X}M:)T9,Iɺ\XٸQ,ܡp4YtF1aubgYcMZFO6I ; CR(P -1^~nI;ʾ9,rТR6LU[Mؚx-&ٳ!YBIV'Nf2uͼ[sJק."&ؒiTM* P5 kJKMGNpp||DQ2qAB7}Q `samoa~6vT!Ҝ\߂a>[((eN1(m ڪW h:{ADOʳ[q7;֑G˜'!3 wBj6f_[6u8\x#Qyb_*pY5 %Q6}&^\W! XVt 3xb]nw8"w=yprZb6 nmbB e, EɋNTSPo]7ઔPv93UU?hP~%us˪?, kRjF%oxڳr/D5oJJy]hޏtñC]A|l|5Tz%:SܸLm-H'X4dA4k#K򤾃}hBFۀe@Kt޼((R$ C]s9H"I_4obAw#t |(?K>Iu+ȡ)x>bϢwnћLBe ^3JPS3~WA#Z=K^mcRھ-qMT Žөm8T lYy}0O((`j|TsǪvR_o./9Rv"Uk/5AGM>n/o|L>7{ (Xի#hO45+DP#ʓfw̯lQ7 _2|]w `cd'-H|_:k/|_$ǁSUkxT86Y`?Rx/=gKA=[©IH :֊c5ckL(19&tP[C= 3: WsaV(Sk@нxw^kϚPxK --/p״ٱ:Ͷ`hq tS -nGJHաb)}>U{[3bT,GDh4fAΈUchN䷢˶BxL;>b|?Ō[mEҽ80A SHfCdT߈j)}#hÅfǝG CsWl~I꼱`?_mޘTѕo/?t%v7IwcyYn &1kP,q`z D_ {&& TK"/ȿ%z0׻0}}Ԃ' U=ucK,c2++bYg\-XnS%\(_;L+EM'$(`翰Y*DŽ p{PSTsMɝ -4Ou([S,:ͨ{Hs^;'%v#r*:<5Κv#%KEt"gl=̰ƬcjRe]\ ׭X -@Fx "g.yhfjVJ7W!جVx53ʼnboPYJ-TdbXaw"CM*2=Q}vJ(),'$/w,j%^PyX+9 s=td#R_tkK Se鄎,W{f?cPxKSuʶw&LD_Ose5+T{p:`@`/r%ӓY06rS> >}!Cf P!%|> h.n-(~/SnB@#ߓ}ArѦ-ZGe;j`B̊4ܷ2%+D:(1{.6!˽,{~\BjZ0.(/Gx|\}9~S 2R Yl˛Rxb+$Juگ1͵doT J J"Tr<="v,q5nL>*-[v*%9{8o&U kFf/!7 -MQS8W?]9J^U6*75~$Ab IC j#.]1ȰF0Şk?I QXq| -x4ZqmT -rm1Ut_ 7bF[<xf«c1̉'e&k=\ˡy'nW!˗,r4ˡxZr2nL,&s'剚0)1Z[^.qg^nV')wF;-@x+A ӫ(>D1Q2S":̿ ;O-7\ -endstream -endobj -128 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/L/a/b/c/comma/e/i/j/k/m/n/o/r/t/v/z) -/Descent -194 -/Flags 4 -/FontBBox [ -35 -250 1148 750 ] -/FontFile 127 0 R -/FontName /FOJGQS+CMTI9 -/ItalicAngle -14 -/StemV 70 -/XHeight 431 ->> -endobj -129 0 obj -<< -/Length 13744 -/Length1 1867 -/Length2 11877 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMTT10 003.002 -%%Title: CMTT10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMTT10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMTT10 known{/CMTT10 findfont dup/UniqueID known{dup -/UniqueID get 5000832 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /IJKLSG+CMTT10 def -/FontBBox {-4 -233 537 696 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTT10.) readonly def -/FullName (CMTT10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch true def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 97 /a put -dup 126 /asciitilde put -dup 98 /b put -dup 99 /c put -dup 58 /colon put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 104 /h put -dup 45 /hyphen put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 49 /one put -dup 112 /p put -dup 46 /period put -dup 114 /r put -dup 115 /s put -dup 47 /slash put -dup 116 /t put -dup 51 /three put -dup 50 /two put -dup 117 /u put -dup 95 /underscore put -dup 118 /v put -dup 119 /w put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{=מ0).|˿!:[LI0lr9G$}/X S`p*p+fwwFGO^ȇ r+dMvNy{YK[z[f -ܷBDq}M8|j${jpxxSƫEu -7%ɑ4\ 9b \)[FU.q4Z8KzwwylϦI5bjcZ,7ɪK:#@Jd@ѻFM_d#g+=>ZaWNH5Y/ .rpf{0D|6@;]/h|.RAɰKml^&W܀{mFՙ3FK~I7@T7AMOP.;ݐH+iX;}jYXEu5ǻpېBIᡊS 7pQ40cH4u[ wYÖ2[tʖڣ?hb*$ -dƥ`$ P :")|UƩfDtd§=5+j7%i@)шT/qUF1tEςҷݢ@ Ѣ1ãF^R?-¦q^!*1gw24/3@\7zaz1).ExY'Ȫ5Fc=nj2cw1 3bI]y: f֡ꋓfg%p^`('m K'K '>EPN,:M{S3G2R@6\?-^X'F.qhYlawNUpͧ`M9_Jgbw! ̼sāTҔDb:Wq!]iơw`褩'`h^ TTInHel䶢͒à`じ 'p(=Y1UѬ/OT -%`&{(K:.CiK9xH-vE4x_5叠ٺ,dl5'bbq,H. O8 NNnZGquDZMgd/.o~*ĽẾʿep˵ -1}oK({AsM`?  }|^ڧ(1vMXAj!Vk5=&Yiw|vCPezFލ`FJO!zơãE.)8At`+o z`!|a*dU ).tIhq*0q>NU 3ȏ7Ā9Ot[3|5r0p8ߕWqDLŽ{`dw|ׄ GJz/H'Z$MΤ8Z̈<7{LpV)%k3ToCn}4>ZrȰ{rUZ9EGu49>`oq/~x▏S|f9׬?X.uBxfGbE.wW;o, BLkkK{9fgg,l|&Ma*$v#ܶ>7Ucö'nNЙ1WƫV Nu+947yG( "zoO_|cZzB@ZAݾ@aexb?>"YTgBlٍ9UFJ?"[p] phU8Փz޾L?:K;W%X$؇:b9pF^dBJR(6[-T*4!yY`'M( MPA#fT"f"?eX&RE ]2L6 ?h)8&/Baf!0tM<ŋX0z1$6$}W<1ji76$4e L,vΡTuQo:=}E˨(S0.1) d#I;P]ɵR蕺I,"?bB8|GϞ\;H -nc2߯xX1!?:t#?%gSe[ze} h)D j-O6vzu@b ixc`r&r Iڹ_> 1SSdY$`)­:] R]FITkxjgbHd.(: -﫜.%pq>>^zx,{^c]r6oެtHTC O;q]8$yBoLr {=f$' F}*%*tdsCNzc5G~¸e 2d]bsz':aWA>4+ -5u=JTH8Yn{-t}PtJx8R.\{`u[%37\rnNJFk Oj+WesMV)JYV˛81d#JL1?M?"śbQᄍfcӟr ar4ד@dv5꺜5eDfR+c=PisX8mm;EL]H|S° #ȿl S6e!3BYTg}TTaΈfgX_+t12)A{ߨcװzP*Q˩SRd*lN؏bjɇwu_ŧ03_m=/Quf -'I N?qj) -ʎӲ+Ar⻩6&HДC9mr|7rG%:Jr<(gG^Ĵ~xP^KYYD˓"$?f7ښ}Xo3'+Te|7~x9Fʓ u -ih -9Nt9uicsJw -cZ|$C[ie ";3|AzFY4WSHʘJ᧞)~%b[O?;Rw߹E5?"W|;ծI6X'\dKs}2{QA)wJtXi3uR3Tq5b|~<27bA}LXO6/'`:8gI$G,M`y}Gꦜ?)c7K !8Bʽl. ouv -KS?0Z<M^oE "1\eάI SsBITve赡 Rkvl$|i0qp -QxroHQvzŃe4`eb?V'ax * ǡ~MCC0"rsSC=y [^ՔI1d#J9&I# g߶c*B+FWndM}RYubPvc?_gMk5Zoof~G>ص͈,gk]E8?`aN/`p22it (/[@|;C]ar6X W,COQY``J_Bhq8 !;.*ĿLMbMKa{boKInUowg3Ս|Rq?'SoIV\]iTgȋ[_Z_j5'N8wM%+E:v -"Ӫax;Y `m e"bsiq>,Znè3Œe(go =$Rܬ'J:cj3f2 -N:3CC;Ov"<ȳA?9=ԇa{M˻&}Lnu4۟V[+._b$t1.}c{<0PBW*ZCƛOS 0aS5Ε-}7-*IC{1ȹAZųrO(G n69i5bDN'wL ,j"WvyMbfv&,ՆHѶG[f&Px&I뤏i=(˗z:[} $>]IlvyPd[tzw;hc9X S8{՝YJ4ks'$r+t7))m&LWQ L7)g͑".f E* -M:7jm !'3x<[r n^s:^M{9Eŷ8BtxW59%g.lK4k{܉rTI`mfl<=k)2cJ4;Um߄QM}= Dg}FBZL98 ˿kN> FfE4A9-Ps{wiw=vr-o{L;YoD?'${q/Vڌl据)]035)o6<;E٘7`Rv\G ,6h莥;]_Αa|:9j% "z7$s+$B 4*]>Q@I-oi9yUq|t[,F\}r&''8O#0Sm,Xd!b(n#ʷiޢ gWeW8$$c؂cq&W,a-Ǻ!|=4'Ը9~hZ4 u{]B.CiyMՋ+ݭZ -Fر]shl5؛~} E3+{y(خtbКĸ7_? q 2ed/=g8: MSM sbkOLؕrI^ l}坺Ff&TE54GpY%x@I$!(9;F8dC\ Ox:Bb(dTPYtv.<郁f/n|/6 SZI-Vt한kx.Dgګ -w~/[{]*2y_1Llp}b/}c>f倨w9Ъzʔ>ɆxNn:9lpD(?жT=&Kqg=geͶ+i#Wn >QX&evgt_0 qm!DI7$N7 obu2NYXU_ Xմ?)#rl9Da1K:$ Ry!tCVV_ܔV |t҂Gn2kn&M8pCq̱|ҐR]8 _rqYgTf^Ϳ30HR,خ4}@t-8ĝ#JE,@F\h7M?YNy˫fGgᅛV>P!%"қK8P 3VŷY,gf ߲9pūT9$P͇}vziMSrrF/J8%KBퟸP^k ܪ"'K+:U-ۯfqK-8: W~eq"Lߠ t5ȒѦoR0o%i%Er6A2S(A΍sݵftDXl?,VNCj4w~23vIJ{]Qz9UHva_^a!gQd _eQ:Ӡ0-bf.7TGW=NHf\'*~zUЊ-P``a2fIs#qGkkFv&}c72gٱ#Sé{Tqu _f/mH(Lnq@s߭LیH=.ЙG|aZB5I)i"zXVMt GQ}k3St݀^o -Ibh2FT6\r/A=ǖU;!o/Pӑ1Q&mCGHc[,Xπ}^!-ZP4]!)z|`y ޭ!G #~"*tJasXqƇo:"482yj QG~BWMNp]=O@BFaQpQ mVYLG 0&Ņ-7.ߪpkdZ$ݭx.mƁn/[n%4TTpqԮGD@Np=ZK{+w4V̢|DBqRocnEMf3 p67wΏIg>@SN=iϔXws^\\}ZPWLz0Q_⠜4'X"Y(pލhAWlhw"\Oqu`@Nxo{$B˫37COK0W>P];Z9bybr6m@(i{N駘ij1%߽q:zW, NScoY֥DȱU_^h>߲@փoKbӵwVF$~2SpBJR*8'|&w%fx>h),OpEYO1̂q"خЉw `f9pfӴf޶)B6U9Wev9UɆ*M5i%ݒI$d=FX?j nfQJ>KITp ksOҩ9@&WxxsFL[=[~] h9Qh!l Ƥ'#{W$"ĕcnY@u(Gr͐Usg w,gRk* ^7:dmNnMEWfPfjz -9@bG#._>A?{whOl`~#Xw -FO?]яO9~b;.gifosSKbφME+N1盇4EyK #g^H#{B#t/ur -cPwѷR\R{!x%6?4o5!ww:W#l^/p ̷{sXP٦KDF=PfrcҹAS(sè`bHPwŗg}q]Pd}#mՈbE1䏔\i?U=:)ԁ&nUCnQc6Υ1~Ԅs|(bK?Tû*0zod\8H`z+ ETlX$b>@F\B%f}gO>+UD f-R,Uu0Csyn'HpwkqZiTb*5D}[n~^UND TKU{yɅf%1si2ppO7vmyT_M K:e e-5`EW0 Z0@)(\ExfαA-]F}51YuELric53R8ތ쐳 }|)pf7tHƩέq;(K7t'Q[ShN 1|%;j.l2F\XւhE -9WQѴ2aq:}!@9Vb?ӯ'{EվڄT*4z`zQ?ڛ)pi&teg1(] rsX%KZ{V_~h(VFca1F\ۏlE^LCn=T{ 0%*T^@дGgws^P=-(/lAؽ"4e - 4{dȆ6 NB0jr붦~I=<>Y@G"\GͶ4ap:W< c/F2VWݪuԳ,;R8jU Qz8ߡ1!$J-NB*W6A.=X=а<<w}kC}uEƞ^WSq em' .iI_\5(1>e937A|vPw%8SʋL«Fר@h՞gX]^[cM?z;sCG6m'Kmz[66Ǩ((|Z "piÙ:ķki<ZuTBgt /ˁ zeruMŤCjhNG>SP2fgq(DNx F[]>MeboreWb ݲ h3.bϏMa-/1_]3!;KJyqx2R4>9 ΪǒtT6c]h~lG6>lG\p]Ǧ8Z;p X3K f.C^w1fBib*Z8R" ʼ/>;a;uu' /gBU&z(K'_m p{NfkVT l2D1D 8I EtXʂٍ5"ǡ[׬I$1zh4U"FT]a5%c`4>?3ye*c3,3""JCjfo 0nqpI|NP~@rL -q\9@qOQQv=[F'Ф+hb߼(@H -"F%Än%rvs}LbjBՙrv5;5=\tw -CxHeD[jO%:^BclX p! jo#]xOKi8F9wX[jW2S]HJ)a$R1 ~^\_{9EЍPo0-޻۠xOJzT[,5R>>cXJ;2J1/_D͜ɼJd5Wg Sv -1D,צ'g/اݑkt卜a-Mb1l" cv?cS q.)!14 y;SRnJ <' _.PF2Sm#ƿv0}Dī#T0%ڻ$M20Pr'A L˞F- ~s0_ /eR6[up\x5ɖȉ#,y רhcTym,KīQr)Z1pezŞ5 ߦ:d[$Y,P1VM,ngJ,FŇ -.F`2c]i7_Vk(_K> -endobj -131 0 obj -<< -/Length 3662 -/Length1 1466 -/Length2 2196 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMTT8 003.002 -%%Title: CMTT8 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMTT8. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMTT8 known{/CMTT8 findfont dup/UniqueID known{dup -/UniqueID get 5000830 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /ISIMRT+CMTT8 def -/FontBBox {-5 -232 545 699 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTT8.) readonly def -/FullName (CMTT8) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch true def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 76 /L put -dup 84 /T put -dup 88 /X put -dup 101 /e put -dup 105 /i put -dup 50 /two put -dup 118 /v put -dup 48 /zero put -readonly def -currentdict end -currentfile eexec -oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsP,WKT"0KDǯҖkIUܨf/+WN/r4qW@d̍OG|Babhy52+2upa,-I"MC㉮0גv\G\% ؊Z\+;7tamJsXPc0NqL%tWtį, );b&L}NֲGi$߲:[<+s\6qGq %E~@kִ[iYKq[ Pvbr~1zV -إh]\HZa2nqiNG84[(5~B.m{,?v;ɚ]QV-;S8HMKMcd;z%+R9$z\zIbp;%wsU?X)K Q -38hVrC6 {Gx|eRu{};jvfe!QYrBQqS9WJD?&;A -Q??.h3~^|w*?]PdPCʟD*E 1HG6Kt)֕hrWA-T7T㸅o*3%0yژ\]!۠z,Z\#ugA"xSJlZ}b 9uNM[]2͢h3RN͎Q9sZcLy\ɘg>}Ի5kV‡U2ZqҖ(jI4d93+- ɌMQ.C |^( -^_x4]bRcAvL !BBMcWUZb1Z$p,2t1[1,7LNkB 9QpSe5 #hx 00Λ{,B[(j/BibYc%%Zu<.xXO$BmKE.1F-4JS7KEp_ :$3ޝ?̼ ?v+Պ;#\ߗA\{VSlܺ1aPOtSâ2n㇈ArʳOV`E t RdhL͐u83$]BMR?hpW~Vԓի8 -& -c{ju]sPldAa|_}(1kMXbSLn&MXV-8oi%'R*+m뀂b@GOIfs{n?p_?5-Wuqǎ %— 1+41h )bP+&Fa?o%~O3?m|@Lsuoq9-4! cC)|v@*m6 ߩL0Gm^;#4[b,< {f6]ƒX9rsD[uu1C+!FoFcXL[&b@uT10% -> -endobj -133 0 obj -<< -/Type /Outlines -/Count 2 -/First 31 0 R -/Last 35 0 R ->> -endobj -134 0 obj -<< -/Limits [ (Doc-Start) (Item.3) ] -/Names [ (Doc-Start) 44 0 R (Hfootnote.1) 81 0 R (Hfootnote.2) 84 0 R (Item.1) 54 0 R (Item.2) 59 0 R -(Item.3) 60 0 R ] ->> -endobj -135 0 obj -<< -/Limits [ (Item.4) (section*.1) ] -/Names [ (Item.4) 61 0 R (Item.5) 62 0 R (Item.6) 63 0 R (page.1) 43 0 R (page.2) 74 0 R -(section*.1) 51 0 R ] ->> -endobj -136 0 obj -<< -/Limits [ (section*.2) (section.2) ] -/Names [ (section*.2) 79 0 R (section.1) 30 0 R (section.2) 34 0 R ] ->> -endobj -138 0 obj -<< -/Kids [ 134 0 R 135 0 R 136 0 R ] -/Limits [ (Doc-Start) (section.2) ] ->> -endobj -139 0 obj -<< -/Dests 138 0 R ->> -endobj -140 0 obj -<< -/Type /Catalog -/Names 139 0 R -/OpenAction 37 0 R -/Outlines 133 0 R -/PageMode /UseOutlines -/Pages 64 0 R ->> -endobj -141 0 obj -<< -/Author () -/CreationDate (D:20201220002337+01'00') -/Creator (LaTeX with hyperref) -/Keywords () -/ModDate (D:20201220002340+01'00') -/PTEX.Fullbanner (This is pdfTeX, Version 3.14159265-2.6-1.40.20 \(TeX Live 2019/Debian\) kpathsea version 6.3.1) -/Producer (pdfTeX-1.40.20) -/Subject () -/Title () -/Trapped /False ->> -endobj -142 0 obj -<< -/Type /XRef -/ID [ <8BDE9569A286CF89B3E0C7EE8CAF8343> <8BDE9569A286CF89B3E0C7EE8CAF8343> ] -/Index [ 0 143 ] -/Info 141 0 R -/Length 715 -/Root 140 0 R -/Size 143 -/W [ 1 3 1 ] ->> -stream - +,-Yma  -&`   2UTOPY[NQSRZW^ "$*,%\!#'V(X])./0123456789:;<=>T;?@AɣBC?_Dp]E=F3GHI6JSKzvLM_bcЏN -endstream -endobj -xref -0 143 -0000000006 65535 f -0000000015 00000 n -0000000036 00000 n -0000000057 00000 n -0000000111 00000 n -0000000272 00000 n -0000000013 00000 f -0000000862 00000 n -0000001023 00000 n -0000001613 00000 n -0000001775 00000 n -0000002366 00000 n -0000002529 00000 n -0000000014 00001 f -0000000015 00001 f -0000000016 00001 f -0000000019 00001 f -0000003120 00000 n -0000003283 00000 n -0000000022 00001 f -0000003903 00000 n -0000004066 00000 n -0000000025 00001 f -0000004686 00000 n -0000004849 00000 n -0000000028 00001 f -0000005469 00000 n -0000005632 00000 n -0000000137 00001 f -0000006352 00000 n -0000006398 00000 n -0000006465 00000 n -0000006540 00000 n -0000006608 00000 n -0000006654 00000 n -0000006721 00000 n -0000006796 00000 n -0000006824 00000 n -0000006874 00000 n -0000007024 00000 n -0000007197 00000 n -0000007370 00000 n -0000007620 00000 n -0000030371 00000 n -0000030438 00000 n -0000030505 00000 n -0000030647 00000 n -0000030788 00000 n -0000030930 00000 n -0000031071 00000 n -0000031211 00000 n -0000031352 00000 n -0000031419 00000 n -0000031561 00000 n -0000031705 00000 n -0000031772 00000 n -0000031913 00000 n -0000032055 00000 n -0000032196 00000 n -0000032335 00000 n -0000032402 00000 n -0000032469 00000 n -0000032536 00000 n -0000032603 00000 n -0000032670 00000 n -0000032738 00000 n -0000032914 00000 n -0000033136 00000 n -0000033387 00000 n -0000033648 00000 n -0000033921 00000 n -0000034097 00000 n -0000034287 00000 n -0000034486 00000 n -0000038408 00000 n -0000038475 00000 n -0000038617 00000 n -0000038838 00000 n -0000039097 00000 n -0000039369 00000 n -0000039436 00000 n -0000039575 00000 n -0000039642 00000 n -0000039782 00000 n -0000039923 00000 n -0000039989 00000 n -0000040790 00000 n -0000041938 00000 n -0000041980 00000 n -0000042328 00000 n -0000042521 00000 n -0000043540 00000 n -0000044188 00000 n -0000045186 00000 n -0000045889 00000 n -0000046809 00000 n -0000047615 00000 n -0000048672 00000 n -0000049152 00000 n -0000050155 00000 n -0000051064 00000 n -0000052226 00000 n -0000066583 00000 n -0000066919 00000 n -0000080824 00000 n -0000081153 00000 n -0000089564 00000 n -0000089798 00000 n -0000099154 00000 n -0000099397 00000 n -0000110984 00000 n -0000111247 00000 n -0000131200 00000 n -0000131594 00000 n -0000144792 00000 n -0000145092 00000 n -0000156403 00000 n -0000156691 00000 n -0000164253 00000 n -0000164479 00000 n -0000172479 00000 n -0000172713 00000 n -0000186136 00000 n -0000186439 00000 n -0000199672 00000 n -0000199955 00000 n -0000207575 00000 n -0000207818 00000 n -0000218417 00000 n -0000218674 00000 n -0000232513 00000 n -0000232839 00000 n -0000236594 00000 n -0000236832 00000 n -0000236907 00000 n -0000237083 00000 n -0000237251 00000 n -0000000000 00000 f -0000237380 00000 n -0000237473 00000 n -0000237511 00000 n -0000237638 00000 n -0000237970 00000 n -trailer -<< -/ID [ ] -/Info 141 0 R -/Root 140 0 R -/Size 143 ->> -startxref -238896 -%%EOF diff --git a/mat/domace_naloge/21/dokument-uncompressed.pdf b/mat/domace_naloge/21/dokument-uncompressed.pdf deleted file mode 100644 index ce67d18..0000000 --- a/mat/domace_naloge/21/dokument-uncompressed.pdf +++ /dev/null @@ -1,3991 +0,0 @@ -%PDF-1.3 -% -1 0 obj -<< ->> -endobj -2 0 obj -<< ->> -endobj -3 0 obj -<< -/pgfprgb [ /Pattern /DeviceRGB ] ->> -endobj -4 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 5 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -5 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 0.000000 0 100.001280 0 ] -/Domain [ 0.000000 100.001280 ] -/Extend [ false false ] -/Function << -/Bounds [ 25.000320 75.000960 ] -/Domain [ 0.000000 100.001280 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 2 ->> ->> ->> -endobj -7 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 8 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -8 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 0.000000 0 100.001280 0 ] -/Domain [ 0.000000 100.001280 ] -/Extend [ false false ] -/Function << -/Bounds [ 25.000320 75.000960 ] -/Domain [ 0.000000 100.001280 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 2 ->> ->> ->> -endobj -9 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 10 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -10 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 0 0.000000 0 100.001280 ] -/Domain [ 0.000000 100.001280 ] -/Extend [ false false ] -/Function << -/Bounds [ 25.000320 75.000960 ] -/Domain [ 0.000000 100.001280 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 2 ->> ->> ->> -endobj -11 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 12 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -12 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 0 0.000000 0 100.001280 ] -/Domain [ 0.000000 100.001280 ] -/Extend [ false false ] -/Function << -/Bounds [ 25.000320 75.000960 ] -/Domain [ 0.000000 100.001280 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 100.001280 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 2 ->> ->> ->> -endobj -17 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 18 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -18 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] -/Domain [ 0.000000 50.000640 ] -/Extend [ true false ] -/Function << -/Bounds [ 22.500270 25.000320 ] -/Domain [ 0.000000 50.000640 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 3 ->> ->> ->> -endobj -20 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 21 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -21 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] -/Domain [ 0.000000 50.000640 ] -/Extend [ true false ] -/Function << -/Bounds [ 21.250260 25.000320 ] -/Domain [ 0.000000 50.000640 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 3 ->> ->> ->> -endobj -23 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 24 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -24 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] -/Domain [ 0.000000 50.000640 ] -/Extend [ true false ] -/Function << -/Bounds [ 20.000240 25.000320 ] -/Domain [ 0.000000 50.000640 ] -/Encode [ 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 1 1 1 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 3 ->> ->> ->> -endobj -26 0 obj -<< -/Type /XObject -/BBox [ 0 0 100 100 ] -/FormType 1 -/Length 7 -/Matrix [ 1 0 0 1 0 0 ] -/Resources 27 0 R -/Subtype /Form ->> -stream -/Sh sh - -endstream -endobj -27 0 obj -<< -/ProcSet [ /PDF ] -/Shading << -/Sh << -/ColorSpace /DeviceRGB -/Coords [ 50.000640 50.000640 0.000000 50.000640 50.000640 50.000640 ] -/Domain [ 0.000000 50.000640 ] -/Extend [ true false ] -/Function << -/Bounds [ 21.250260 23.125290 25.000320 ] -/Domain [ 0.000000 50.000640 ] -/Encode [ 0 1 0 1 0 1 0 1 ] -/FunctionType 3 -/Functions [ << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 1 1 1 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 1 1 1 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> << -/C0 [ 0 0 0 ] -/C1 [ 0 0 0 ] -/Domain [ 0.000000 50.000640 ] -/FunctionType 2 -/N 1 ->> ] ->> -/ShadingType 3 ->> ->> ->> -endobj -29 0 obj -<< -/D (section.1) -/S /GoTo ->> -endobj -30 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 500.158000 null ] ->> -endobj -31 0 obj -<< -/A 29 0 R -/Next 35 0 R -/Parent 133 0 R -/Title 32 0 R ->> -endobj -32 0 obj -(Vaje Matematika 2: stran 55, tiri naloge 349-361) -endobj -33 0 obj -<< -/D (section.2) -/S /GoTo ->> -endobj -34 0 obj -<< -/D [ 72 0 R /XYZ 45.638000 793.134000 null ] ->> -endobj -35 0 obj -<< -/A 33 0 R -/Parent 133 0 R -/Prev 31 0 R -/Title 36 0 R ->> -endobj -36 0 obj -(Zakljucek) -endobj -37 0 obj -<< -/D [ 38 0 R /Fit ] -/S /GoTo ->> -endobj -38 0 obj -<< -/Type /Page -/Annots [ 39 0 R 40 0 R ] -/Contents 42 0 R -/MediaBox [ 0 0 595.276000 841.890000 ] -/Parent 64 0 R -/Resources 41 0 R ->> -endobj -39 0 obj -<< -/Type /Annot -/A << -/D (section.1) -/S /GoTo ->> -/Border [ 0 0 0 ] -/C [ 1 0 0 ] -/H /I -/Rect [ 44.642000 536.092000 312.863000 546.940000 ] -/Subtype /Link ->> -endobj -40 0 obj -<< -/Type /Annot -/A << -/D (section.2) -/S /GoTo ->> -/Border [ 0 0 0 ] -/C [ 1 0 0 ] -/H /I -/Rect [ 44.642000 514.174000 109.634000 525.023000 ] -/Subtype /Link ->> -endobj -41 0 obj -<< -/ColorSpace 3 0 R -/ExtGState 1 0 R -/Font << -/F11 56 0 R -/F14 57 0 R -/F43 45 0 R -/F44 46 0 R -/F7 58 0 R -/F71 47 0 R -/F72 49 0 R -/F73 48 0 R -/F74 50 0 R -/F77 52 0 R -/F78 53 0 R -/F8 55 0 R ->> -/Pattern 2 0 R -/ProcSet [ /PDF /Text ] ->> -endobj -42 0 obj -<< -/Length 22697 ->> -stream -0 g 0 G -0 g 0 G -0 g 0 G -0 g 0 G -0 g 0 G -BT -/F43 17.2154 Tf 90.724 741.328 Td [(Linearna)-302(k)26(om)26(binacija)-302(v)27(ektor)-1(j)1(ev)-1(,)-301(baza)-302(|)-302(21.)-407(doma)26(\024)433(ca)-302(naloga)]TJ/F44 11.9552 Tf 122.252 -13.948 Td [(Matematik)55(a,)-327(Gimnazija)-326(Be)27(\024)463(zigrad)]TJ/F71 11.9552 Tf -11.907 -32.885 Td [(Profesor:)]TJ/F44 11.9552 Tf 64.866 0 Td [(prof.)-435(Vilk)27(o)-326(Doma)-55(jn)1(k)27(o)]TJ/F71 11.9552 Tf -50.394 -14.719 Td [(Avtor:)]TJ/F44 11.9552 Tf 50.394 0 Td [(An)27(ton)-326(Luk)54(a)]TJ 65.19 3.022 Td [(\024)]TJ -0.325 -3.022 Td [(Sijanec,)-326(2.)-435(a)]TJ -80.311 -23.446 Td [(20.)-326(decem)27(b)-27(er)-327(2)1(020)]TJ -0 g 0 G -0 g 0 G -/F73 8.9664 Tf 26.279 -35.865 Td [(P)33(o)33(vzetek)]TJ -0 g 0 G -0 g 0 G -/F72 8.9664 Tf -192.4 -15.617 Td [(T)86(a)-397(dokumen)29(t)-397(vsebuje)-397(doma)29(\024)485(co)-397(nalogo,)-410(ki)-397(za)-57(jema)-397(sno)29(v)]TJ/F74 8.9664 Tf 221.97 0 Td [(Line)52(arna)-417(kombinacija)-417(vektorjev,)-430(b)53(aza)]TJ/F72 8.9664 Tf 155.167 0 Td [(pri)-397(matematiki.)]TJ -390.961 -10.959 Td [(Kjer)-343(je)-342(bilo)-343(p)-28(otrebno)-343(izbrati)-342(nek)28(e)-342(p)-29(oljubne)-342(naloge,)-343(sem)-342(jih)-343(v)28(e)1(dno)-343(izbral)-343(naklju)29(\024)485(cno.)]TJ/F71 14.3462 Tf -24.906 -32.946 Td [(Kazalo)]TJ/F77 9.9626 Tf 0 -21.917 Td [(1)-925(V)96(a)-64(je)]TJ/F78 9.9626 Tf 41.428 0 Td [(Matematika)-414(2)]TJ/F77 9.9626 Tf 70.911 0 Td [(:)-511(stran)-384(55,)-322(\024)514(stiri)-383(naloge)-384(349-361)-23291(1)]TJ -112.339 -21.918 Td [(2)-925(Zaklju)32(\024)543(cek)]TJ 498.271 0 Td [(2)]TJ/F71 14.3462 Tf -498.271 -32.946 Td [(1)-1125(V)94(a)-63(je)]TJ/F78 14.3462 Tf 61.469 0 Td [(Matematika)-414(2)]TJ/F71 14.3462 Tf 102.112 0 Td [(:)-500(stran)-375(55,)-316(\024)504(stiri)-375(naloge)-375(349-361)]TJ -0 g 0 G -/F77 9.9626 Tf -164.024 -23.398 Td [(350.)]TJ -0 g 0 G -/F8 9.9626 Tf 25.349 0 Td [(Na)-56(j)-471(b)-28(o)-27(do)-472(v)28(ektorji)]TJ/F11 9.9626 Tf 84.336 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(,)]TJ/F11 9.9626 Tf 6.687 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 8.971 0 Td [(in)]TJ/F11 9.9626 Tf 12.45 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 9.554 0 Td [(bazni)-471(v)28(e)-1(kt)1(orji)-472(v)-471(prostoru.)-858(V)83(ektorja)]TJ/F11 9.9626 Tf 166.709 0 Td [(~)612(m)]TJ/F8 9.9626 Tf 12.326 0 Td [(in)]TJ/F11 9.9626 Tf 12.731 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 10.942 0 Td [(sta)-471(enak)55(a)]TJ/F11 9.9626 Tf 47.922 0 Td [(~)612(m)]TJ/F8 9.9626 Tf 12.689 0 Td [(=)]TJ/F14 9.9626 Tf 12.807 0 Td [(\000)]TJ/F8 9.9626 Tf 7.749 0 Td [(2)]TJ/F11 9.9626 Tf 4.357 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.02 0 Td [(+)]TJ/F7 6.9738 Tf 12.075 3.922 Td [(3)]TJ -ET -q -1 0 0 1 508.877 463.254 cm -[]0 d 0 J 0.398 w 0 0 m 3.971 0 l S -Q -BT -/F7 6.9738 Tf 508.877 457.328 Td [(2)]TJ/F11 9.9626 Tf 4.048 6.065 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.406 0 Td [(+)]TJ/F11 9.9626 Tf 10.331 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 9.555 0 Td [(in)]TJ/F11 9.9626 Tf -471.058 -14.179 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.014 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F7 6.9738 Tf 8.944 3.923 Td [(1)]TJ -ET -q -1 0 0 1 98.752 449.076 cm -[]0 d 0 J 0.398 w 0 0 m 3.971 0 l S -Q -BT -/F7 6.9738 Tf 98.752 443.15 Td [(2)]TJ/F11 9.9626 Tf 4.543 3.435 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.843 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 6.49 0 Td [(+)-222(2)]TJ/F11 9.9626 Tf 14.396 0 Td [(~)445(c)]TJ/F8 9.9626 Tf 4.859 0 Td [(.)-444(V)83(ektor)-333(2)]TJ/F11 9.9626 Tf 45.7 0 Td [(~)612(m)]TJ/F14 9.9626 Tf 9.844 0 Td [(\000)]TJ/F11 9.9626 Tf 9.696 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.568 0 Td [(zapi)53(\024)447(si)-333(v)-334(dani)-333(bazi.)]TJ 43.487 -27.555 Td [(2)]TJ/F11 9.9626 Tf 6.098 0 Td [(~)612(m)]TJ/F14 9.9626 Tf 9.845 0 Td [(\000)]TJ/F11 9.9626 Tf 9.695 0 Td [(~)473(n)]TJ/F8 9.9626 Tf 9.014 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 8.945 6.74 Td [(7)]TJ -ET -q -1 0 0 1 319.514 421.521 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 319.514 412.197 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.833 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ 11.158 6.74 Td [(1)]TJ -ET -q -1 0 0 1 344.329 421.521 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 344.329 412.197 Td [(3)]TJ/F11 9.9626 Tf 5.058 9.462 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ -0 g 0 G -/F77 9.9626 Tf -305.311 -29.249 Td [(352.)]TJ -0 g 0 G -/F8 9.9626 Tf 25.349 0 Td [(T)83(o)28(\024)472(ck)28(e)]TJ/F11 9.9626 Tf 28.838 0 Td [(A)]TJ/F8 9.9626 Tf 7.472 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(B)]TJ/F8 9.9626 Tf 8.057 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(C)]TJ/F8 9.9626 Tf 7.833 0 Td [(,)]TJ/F11 9.9626 Tf 6.505 0 Td [(D)]TJ/F8 9.9626 Tf 12.18 0 Td [(in)]TJ/F11 9.9626 Tf 11.956 0 Td [(E)]TJ/F8 9.9626 Tf 11.583 0 Td [(le)28(\024)472(zijo)-367(na)-367(premici)-366(tak)27(o,)-375(da)-367(je)]TJ/F14 9.9626 Tf 126.645 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(AB)]TJ/F14 9.9626 Tf 15.528 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(:)]TJ/F14 9.9626 Tf 6.091 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(B)-50(C)]TJ/F14 9.9626 Tf 15.89 0 Td [(j)]TJ/F8 9.9626 Tf 6.09 0 Td [(:)]TJ/F14 9.9626 Tf 6.091 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(C)-72(D)]TJ/F14 9.9626 Tf 16.358 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(:)]TJ/F14 9.9626 Tf 6.09 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(D)-28(E)]TJ/F14 9.9626 Tf 16.453 0 Td [(j)]TJ/F8 9.9626 Tf 6.091 0 Td [(=)-334(3)-333(:)-334(2)-333(:)-334(1)-333(:)-334(3.)-545(T)84(o)27(\024)473(cki)]TJ/F11 9.9626 Tf 94.888 0 Td [(B)]TJ/F8 9.9626 Tf 11.711 0 Td [(in)]TJ/F11 9.9626 Tf 11.957 0 Td [(D)]TJ/F8 9.9626 Tf -470.569 -13.95 Td [(le)28(\024)472(zita)-296(med)]TJ/F11 9.9626 Tf 47.406 0 Td [(A)]TJ/F8 9.9626 Tf 10.42 0 Td [(in)]TJ/F11 9.9626 Tf 11.249 0 Td [(C)]TJ/F8 9.9626 Tf 7.833 0 Td [(.)-432(to)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 32.988 0 Td [(D)]TJ/F8 9.9626 Tf 11.472 0 Td [(pa)-296(med)]TJ/F11 9.9626 Tf 34.676 0 Td [(B)]TJ/F8 9.9626 Tf 11.004 0 Td [(in)]TJ/F11 9.9626 Tf 11.25 0 Td [(E)]TJ/F8 9.9626 Tf 7.929 0 Td [(.)-432(Na)-55(j)-296(b)-28(o)-296(v)28(ektor)]TJ/F11 9.9626 Tf 69.558 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.657 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 6.808 Td [(\000)476(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(E)]TJ/F8 9.9626 Tf 18.933 0 Td [(bazni)-296(v)28(ektor.)-432(Z)-296(v)28(ektorjem)]TJ/F11 9.9626 Tf 115.247 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.837 0 Td [(izrazi)-296(v)28(ektorje)]TJ/F14 9.9626 Tf -417.975 -6.589 Td [(\000)457(\000)457(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(D)-28(C)]TJ/F8 9.9626 Tf 16.358 0 Td [(,)]TJ/F14 9.9626 Tf 6.089 6.807 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AC)]TJ/F8 9.9626 Tf 18.626 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.807 Td [(\000)452(\000)452(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(D)-28(E)]TJ/F8 9.9626 Tf 16.453 0 Td [(.)]TJ/F14 9.9626 Tf 99.708 -9.286 Td [(\000)457(\000)457(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(D)-28(C)]TJ/F8 9.9626 Tf 19.126 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ -ET -q -1 0 0 1 270.238 348.832 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 270.238 339.507 Td [(4)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 18.072 0 Td [(=)]TJ 11.712 6.74 Td [(5)]TJ -ET -q -1 0 0 1 319.214 348.832 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 319.214 339.507 Td [(3)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 5.89 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)452(\000)452(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(D)-28(E)]TJ/F8 9.9626 Tf 19.22 0 Td [(=)]TJ 11.712 6.74 Td [(3)]TJ -ET -q -1 0 0 1 369.338 348.832 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 369.338 339.507 Td [(4)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ -0 g 0 G -/F77 9.9626 Tf -329.696 -28.256 Td [(353.)]TJ -0 g 0 G -/F8 9.9626 Tf 25.349 0 Td [(T)83(o)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 28.918 0 Td [(M)]TJ/F8 9.9626 Tf 14.209 0 Td [(je)-347(razp)-28(olo)28(vi)53(\024)447(s)28(\024)472(ce)-347(daljice)]TJ/F11 9.9626 Tf 98.183 0 Td [(C)-72(D)]TJ/F8 9.9626 Tf 19.816 0 Td [(pra)28(v)28(ok)27(otni)1(k)55(a)]TJ/F11 9.9626 Tf 59.387 0 Td [(AB)-50(C)-72(D)]TJ/F8 9.9626 Tf 31.886 0 Td [(,)-351(v)28(ektorja)]TJ/F11 9.9626 Tf 44.544 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.885 0 Td [(=)]TJ/F14 9.9626 Tf 10.744 6.808 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AB)]TJ/F8 9.9626 Tf 18.987 0 Td [(in)]TJ/F11 9.9626 Tf 10.641 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.271 0 Td [(=)]TJ/F14 9.9626 Tf 10.744 6.808 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AD)]TJ/F8 9.9626 Tf 19.454 0 Td [(sta)-347(bazna)-347(v)28(ektorja.)-486(Z)]TJ/F11 9.9626 Tf -385.411 -13.396 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.21 0 Td [(in)]TJ/F11 9.9626 Tf 10.504 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 7.597 0 Td [(izrazi)]TJ/F14 9.9626 Tf 26.595 6.808 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 15.305 0 Td [(,)]TJ/F14 9.9626 Tf 6.088 6.808 Td [(\000)363(\000)363(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AM)]TJ/F8 9.9626 Tf 18.223 0 Td [(,)]TJ/F14 9.9626 Tf 6.089 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(M)]TJ/F8 9.9626 Tf 22.129 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(B)]TJ/F8 9.9626 Tf 18.808 0 Td [(.)]TJ/F14 9.9626 Tf -48.295 -19.248 Td [(\000)242(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AC)]TJ/F8 9.9626 Tf 18.072 0 Td [(=)]TJ/F11 9.9626 Tf 9.892 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)363(\000)363(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AM)]TJ/F8 9.9626 Tf 20.991 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ -ET -q -1 0 0 1 265.673 281.124 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 265.673 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(M)]TJ/F8 9.9626 Tf 21.575 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 8.945 6.74 Td [(1)]TJ -ET -q -1 0 0 1 342.353 281.124 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 342.353 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F8 9.9626 Tf 8.104 0 Td [(+)]TJ/F11 9.9626 Tf 8.843 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(;)]TJ/F14 9.9626 Tf 7.748 6.808 Td [(\000)334(\000)334(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(B)]TJ/F8 9.9626 Tf 21.576 0 Td [(=)]TJ 11.711 6.74 Td [(1)]TJ -ET -q -1 0 0 1 411.283 281.124 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 411.283 271.799 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F14 9.9626 Tf 8.104 0 Td [(\000)]TJ/F11 9.9626 Tf 8.844 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(;)]TJ -0 g 0 G -/F77 9.9626 Tf -393.983 -23.91 Td [(360.)]TJ -0 g 0 G -/F8 9.9626 Tf 25.349 0 Td [(Na)-279(strani)1(c)-1(ah)-278(paralelograma)]TJ/F11 9.9626 Tf 122.203 0 Td [(AB)-50(C)-72(D)]TJ/F8 9.9626 Tf 34.661 0 Td [(so)-279(dane)-278(to)28(\024)472(ck)28(e)]TJ/F11 9.9626 Tf 60.407 0 Td [(I)]TJ/F8 9.9626 Tf 5.161 0 Td [(,)]TJ/F11 9.9626 Tf 5.651 0 Td [(J)]TJ/F8 9.9626 Tf -228.083 -11.956 Td [(in)]TJ/F11 9.9626 Tf 11.727 0 Td [(K)]TJ/F8 9.9626 Tf 9.174 0 Td [(,)-346(tak)27(o)-343(da)-344(je)]TJ/F14 9.9626 Tf 53.299 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(D)-28(I)]TJ/F14 9.9626 Tf 13.686 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.767 0 Td [(I)-78(J)]TJ/F14 9.9626 Tf 11.644 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(J)-96(C)]TJ/F14 9.9626 Tf 14.315 0 Td [(j)]TJ/F8 9.9626 Tf 6.193 0 Td [(in)]TJ/F14 9.9626 Tf 11.726 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(B)-50(K)]TJ/F14 9.9626 Tf 17.23 0 Td [(j)]TJ/F8 9.9626 Tf 5.708 0 Td [(=)]TJ/F14 9.9626 Tf 10.689 0 Td [(j)]TJ/F11 9.9626 Tf 2.768 0 Td [(K)-72(C)]TJ/F14 9.9626 Tf 17.007 0 Td [(j)]TJ/F8 9.9626 Tf 2.767 0 Td [(.)]TJ -231.798 -11.955 Td [(T)83(o)28(\024)472(ck)56(a)]TJ/F11 9.9626 Tf 28.442 0 Td [(L)]TJ/F8 9.9626 Tf 9.761 0 Td [(je)-299(razp)-28(olo)28(vi)53(\024)447(s)28(\024)472(ce)-300(dalj)1(ico)]TJ/F11 9.9626 Tf 97.307 0 Td [(AI)]TJ/F8 9.9626 Tf 12.633 0 Td [(,)-306(to)28(\024)472(ck)55(a)]TJ/F11 9.9626 Tf 31.768 0 Td [(M)]TJ/F8 9.9626 Tf 13.732 0 Td [(pa)-299(razp)-28(o-)]TJ -193.643 -11.955 Td [(lo)28(vi)53(\024)447(s)28(\024)472(ce)-334(daljice)]TJ/F11 9.9626 Tf 62.876 0 Td [(LJ)]TJ/F8 9.9626 Tf 13.263 0 Td [(.)]TJ -0 g 0 G -/F77 9.9626 Tf -69.227 -19.422 Td [(a\051)]TJ -0 g 0 G -/F8 9.9626 Tf 15.006 0 Td [(Dana)-454(sta)-453(v)28(ektorja)]TJ/F14 9.9626 Tf 84.901 6.808 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(AB)]TJ/F8 9.9626 Tf 20.292 0 Td [(=)]TJ/F11 9.9626 Tf 11.889 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 10.409 0 Td [(in)]TJ/F14 9.9626 Tf 12.821 6.808 Td [(\000)480(\000)481(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(B)-50(C)]TJ/F8 9.9626 Tf 20.654 0 Td [(=)]TJ/F11 9.9626 Tf 11.394 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.275 0 Td [(.)-805(Izrazi)]TJ -177.754 -13.949 Td [(v)28(ektor)]TJ/F14 9.9626 Tf 30.746 6.807 Td [(\000)278(\000)278(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(M)-109(K)]TJ/F8 9.9626 Tf 23.246 0 Td [(z)-333(v)27(ektorjema)]TJ/F11 9.9626 Tf 58.627 0 Td [(~)437(a)]TJ/F8 9.9626 Tf 9.21 0 Td [(in)]TJ/F11 9.9626 Tf 10.504 2.629 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(.)]TJ/F14 9.9626 Tf -67.624 -14.387 Td [(\000)278(\000)278(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(M)-109(K)]TJ/F8 9.9626 Tf 22.693 0 Td [(=)]TJ 11.712 6.74 Td [(7)]TJ -ET -q -1 0 0 1 196.971 166.782 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 196.971 157.457 Td [(2)]TJ/F11 9.9626 Tf 5.553 6.834 Td [(~)437(a)]TJ/F14 9.9626 Tf 8.104 0 Td [(\000)]TJ/F8 9.9626 Tf 11.158 6.74 Td [(1)]TJ -ET -q -1 0 0 1 221.786 166.782 cm -[]0 d 0 J 0.398 w 0 0 m 4.981 0 l S -Q -BT -/F8 9.9626 Tf 221.786 157.457 Td [(4)]TJ/F11 9.9626 Tf 5.057 9.463 Td [(~)]TJ 1.119 -2.629 Td [(b)]TJ/F8 9.9626 Tf 4.276 0 Td [(;)]TJ -0 g 0 G -/F77 9.9626 Tf -155.578 -24.414 Td [(b\051)]TJ -0 g 0 G -/F8 9.9626 Tf 15.802 0 Td [(Na)-56(j)-445(b)-28(osta)-446(bazna)-445(v)27(ektorja)]TJ/F14 9.9626 Tf 118.303 6.808 Td [(\000)579(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(LI)]TJ/F8 9.9626 Tf 16.575 0 Td [(=)]TJ/F11 9.9626 Tf 12.253 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 10.273 0 Td [(in)]TJ/F14 9.9626 Tf 12.742 6.808 Td [(\000)398(\000)398(!)]TJ/F11 9.9626 Tf 0 -6.808 Td [(LM)]TJ/F8 9.9626 Tf 22.165 0 Td [(=)]TJ/F11 9.9626 Tf 11.996 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.573 0 Td [(.)]TJ -209.88 -13.949 Td [(Izrazi)-333(v)27(ektorja)]TJ/F14 9.9626 Tf 66.197 6.807 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AD)]TJ/F8 9.9626 Tf 19.317 0 Td [(in)]TJ/F14 9.9626 Tf 11.623 6.807 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AB)]TJ/F8 9.9626 Tf 18.85 0 Td [(z)-333(v)27(ektorjema)]TJ/F11 9.9626 Tf 59.122 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 9.152 0 Td [(in)]TJ/F11 9.9626 Tf 11.236 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.574 0 Td [(.)]TJ/F14 9.9626 Tf -164.571 -11.69 Td [(\000)475(\000)475(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AD)]TJ/F8 9.9626 Tf 18.764 0 Td [(=)-278(3)]TJ/F11 9.9626 Tf 15.369 0 Td [(~)487(u)]TJ/F14 9.9626 Tf 8.046 0 Td [(\000)]TJ/F8 9.9626 Tf 9.963 0 Td [(2)]TJ/F11 9.9626 Tf 4.594 0 Td [(~)461(v)]TJ/F8 9.9626 Tf 5.573 0 Td [(;)]TJ/F14 9.9626 Tf 7.749 6.807 Td [(\000)498(\000)499(!)]TJ/F11 9.9626 Tf 0 -6.807 Td [(AB)]TJ/F8 9.9626 Tf 18.296 0 Td [(=)]TJ/F14 9.9626 Tf 10.516 0 Td [(\000)]TJ/F8 9.9626 Tf 7.749 0 Td [(3)]TJ/F11 9.9626 Tf 4.853 0 Td [(~)487(u)]TJ/F8 9.9626 Tf 8.045 0 Td [(+)-222(6)]TJ/F11 9.9626 Tf 14.557 0 Td [(~)461(v)]TJ -0 g 0 G -0 g 0 G -ET -1 0 0 1 316.766 149.606 cm -q -0 G -0 g -0.3985 w -q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -Q -q -0.59776 w -0 G -0 g -[ ] 0.0 d -1 0 0 rg 1 0 0 RG -0.0 0.0 m -0.0 0.0 l -170.08086 0.0 l -226.77448 113.38724 l -56.69362 113.38724 l -h -S -0 g 0 G -Q -q -0.59776 w -0 G -0 g -[ ] 0.0 d -0 0 1 rg 0 0 1 RG -0.0 0.0 m -0.0 0.0 m -113.38724 113.38724 l -S -0 g 0 G -Q -q -0.59776 w -0 G -0 g -[ ] 0.0 d -0 0 1 rg 0 0 1 RG -56.69362 56.69362 m -56.69362 56.69362 m -170.08086 113.38724 l -S -0 g 0 G -Q -q -0.59776 w -0 G -0 g -[ ] 0.0 d -0 0 1 rg 0 0 1 RG -113.38724 85.0404 m -113.38724 85.0404 m -198.42764 56.69362 l -S -0 g 0 G -Q -q -0 G -0 g -q -0 G -0 g -58.18803 113.38724 m -58.18803 114.21257 57.51895 114.88165 56.69362 114.88165 c -55.86827 114.88165 55.1992 114.21257 55.1992 113.38724 c -55.1992 112.56189 55.86827 111.89282 56.69362 111.89282 c -57.51895 111.89282 58.18803 112.56189 58.18803 113.38724 c -h -56.69362 113.38724 m -B -Q -q -1 0 0 1 56.693 113.386 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -56.693 -113.386 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -114.88165 113.38724 m -114.88165 114.21257 114.21257 114.88165 113.38724 114.88165 c -112.56189 114.88165 111.89282 114.21257 111.89282 113.38724 c -111.89282 112.56189 112.56189 111.89282 113.38724 111.89282 c -114.21257 111.89282 114.88165 112.56189 114.88165 113.38724 c -h -113.38724 113.38724 m -B -Q -q -1 0 0 1 113.386 113.386 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -113.386 -113.386 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -171.57527 113.38724 m -171.57527 114.21257 170.9062 114.88165 170.08086 114.88165 c -169.25551 114.88165 168.58644 114.21257 168.58644 113.38724 c -168.58644 112.56189 169.25551 111.89282 170.08086 111.89282 c -170.9062 111.89282 171.57527 112.56189 171.57527 113.38724 c -h -170.08086 113.38724 m -B -Q -q -1 0 0 1 170.079 113.386 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -170.079 -113.386 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -228.26889 113.38724 m -228.26889 114.21257 227.59982 114.88165 226.77448 114.88165 c -225.94913 114.88165 225.28006 114.21257 225.28006 113.38724 c -225.28006 112.56189 225.94913 111.89282 226.77448 111.89282 c -227.59982 111.89282 228.26889 112.56189 228.26889 113.38724 c -h -226.77448 113.38724 m -B -Q -q -1 0 0 1 226.772 113.386 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -226.772 -113.386 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -58.18803 56.69362 m -58.18803 57.51895 57.51895 58.18803 56.69362 58.18803 c -55.86827 58.18803 55.1992 57.51895 55.1992 56.69362 c -55.1992 55.86827 55.86827 55.1992 56.69362 55.1992 c -57.51895 55.1992 58.18803 55.86827 58.18803 56.69362 c -h -56.69362 56.69362 m -B -Q -q -1 0 0 1 56.693 56.693 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -56.693 -56.693 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -114.88165 85.0404 m -114.88165 85.86575 114.21257 86.53482 113.38724 86.53482 c -112.56189 86.53482 111.89282 85.86575 111.89282 85.0404 c -111.89282 84.21506 112.56189 83.54599 113.38724 83.54599 c -114.21257 83.54599 114.88165 84.21506 114.88165 85.0404 c -h -113.38724 85.0404 m -B -Q -q -1 0 0 1 113.386 85.039 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -113.386 -85.039 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -199.92206 56.69362 m -199.92206 57.51895 199.25299 58.18803 198.42764 58.18803 c -197.6023 58.18803 196.93323 57.51895 196.93323 56.69362 c -196.93323 55.86827 197.6023 55.1992 198.42764 55.1992 c -199.25299 55.1992 199.92206 55.86827 199.92206 56.69362 c -h -198.42764 56.69362 m -B -Q -q -1 0 0 1 198.425 56.693 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -198.425 -56.693 cm -Q -Q -q -0 G -0 g -q -0 G -0 g -1.49442 0.0 m -1.49442 0.82533 0.82533 1.49442 0.0 1.49442 c --0.82533 1.49442 -1.49442 0.82533 -1.49442 0.0 c --1.49442 -0.82533 -0.82533 -1.49442 0.0 -1.49442 c -0.82533 -1.49442 1.49442 -0.82533 1.49442 0.0 c -h -0.0 0.0 m -B -Q -q -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -Q -Q -q -0 G -0 g -q -0 G -0 g -171.57527 0.0 m -171.57527 0.82533 170.9062 1.49442 170.08086 1.49442 c -169.25551 1.49442 168.58644 0.82533 168.58644 0.0 c -168.58644 -0.82533 169.25551 -1.49442 170.08086 -1.49442 c -170.9062 -1.49442 171.57527 -0.82533 171.57527 0.0 c -h -170.08086 0.0 m -B -Q -q -1 0 0 1 170.079 0 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -Q -1 0 0 1 -170.079 0 cm -Q -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 60.213 103.058 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -376.979 -252.664 cm -BT -/F11 9.9626 Tf 376.979 252.664 Td [(D)]TJ -0 g 0 G -ET -1 0 0 1 376.979 252.664 cm -Q -1 0 0 1 -60.213 -103.058 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 116.906 103.058 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -433.672 -252.664 cm -BT -/F11 9.9626 Tf 433.672 252.664 Td [(I)]TJ -0 g 0 G -ET -1 0 0 1 433.672 252.664 cm -Q -1 0 0 1 -116.906 -103.058 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 173.599 103.058 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -490.365 -252.664 cm -BT -/F11 9.9626 Tf 490.365 252.664 Td [(J)]TJ -0 g 0 G -ET -1 0 0 1 490.365 252.664 cm -Q -1 0 0 1 -173.599 -103.058 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 230.291 103.058 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -547.057 -252.664 cm -BT -/F11 9.9626 Tf 547.057 252.664 Td [(C)]TJ -0 g 0 G -ET -1 0 0 1 547.057 252.664 cm -Q -1 0 0 1 -230.291 -103.058 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 60.213 46.365 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -376.979 -195.971 cm -BT -/F11 9.9626 Tf 376.979 195.971 Td [(L)]TJ -0 g 0 G -ET -1 0 0 1 376.979 195.971 cm -Q -1 0 0 1 -60.213 -46.365 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 116.906 74.712 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -433.672 -224.318 cm -BT -/F11 9.9626 Tf 433.672 224.318 Td [(M)]TJ -0 g 0 G -ET -1 0 0 1 433.672 224.318 cm -Q -1 0 0 1 -116.906 -74.712 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 201.945 46.365 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -518.711 -195.971 cm -BT -/F11 9.9626 Tf 518.711 195.971 Td [(K)]TJ -0 g 0 G -ET -1 0 0 1 518.711 195.971 cm -Q -1 0 0 1 -201.945 -46.365 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 3.52 -10.328 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -320.286 -139.278 cm -BT -/F11 9.9626 Tf 320.286 139.278 Td [(A)]TJ -0 g 0 G -ET -1 0 0 1 320.286 139.278 cm -Q -1 0 0 1 -3.52 10.328 cm -Q -0 g 0 G -Q -q -0 g 0 G -q -0 g 0 G -0 g 0 G -Q -q -1 0 0 1 173.599 -10.328 cm -1.0 0.0 0.0 1.0 0.0 0.0 cm -q -0 G -0 g -0 g 0 G -1 0 0 1 -490.365 -139.278 cm -BT -/F11 9.9626 Tf 490.365 139.278 Td [(B)]TJ -0 g 0 G -ET -1 0 0 1 490.365 139.278 cm -Q -1 0 0 1 -173.599 10.328 cm -Q -0 g 0 G -Q -Q -n -Q -0 g 0 G -1 0 0 1 -316.766 -149.606 cm -BT -/F8 9.9626 Tf 295.147 43.246 Td [(1)]TJ -0 g 0 G -ET - -endstream -endobj -43 0 obj -<< -/D [ 38 0 R /XYZ 44.638000 830.996000 null ] ->> -endobj -44 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 793.134000 null ] ->> -endobj -45 0 obj -<< -/Type /Font -/BaseFont /DMPNDY+CMR17 -/FirstChar 20 -/FontDescriptor 116 0 R -/LastChar 124 -/Subtype /Type1 -/Widths 100 0 R ->> -endobj -46 0 obj -<< -/Type /Font -/BaseFont /RLYLLI+CMR12 -/FirstChar 20 -/FontDescriptor 114 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 99 0 R ->> -endobj -47 0 obj -<< -/Type /Font -/BaseFont /OLUUSQ+CMBX12 -/FirstChar 20 -/FontDescriptor 104 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 98 0 R ->> -endobj -48 0 obj -<< -/Type /Font -/BaseFont /HJGMPZ+CMBX9 -/FirstChar 80 -/FontDescriptor 106 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 97 0 R ->> -endobj -49 0 obj -<< -/Type /Font -/BaseFont /SJNHCC+CMR9 -/FirstChar 20 -/FontDescriptor 124 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 96 0 R ->> -endobj -50 0 obj -<< -/Type /Font -/BaseFont /FOJGQS+CMTI9 -/FirstChar 44 -/FontDescriptor 128 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 95 0 R ->> -endobj -51 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 578.876000 null ] ->> -endobj -52 0 obj -<< -/Type /Font -/BaseFont /ZOXHGW+CMBX10 -/FirstChar 20 -/FontDescriptor 102 0 R -/LastChar 117 -/Subtype /Type1 -/Widths 94 0 R ->> -endobj -53 0 obj -<< -/Type /Font -/BaseFont /FWTCDB+CMBXTI10 -/FirstChar 50 -/FontDescriptor 108 0 R -/LastChar 116 -/Subtype /Type1 -/Widths 93 0 R ->> -endobj -54 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 475.492000 null ] ->> -endobj -55 0 obj -<< -/Type /Font -/BaseFont /XGGYUK+CMR10 -/FirstChar 12 -/FontDescriptor 112 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 92 0 R ->> -endobj -56 0 obj -<< -/Type /Font -/BaseFont /ZOBLSI+CMMI10 -/FirstChar 65 -/FontDescriptor 110 0 R -/LastChar 126 -/Subtype /Type1 -/Widths 91 0 R ->> -endobj -57 0 obj -<< -/Type /Font -/BaseFont /OAQJWM+CMSY10 -/FirstChar 0 -/FontDescriptor 126 0 R -/LastChar 106 -/Subtype /Type1 -/Widths 90 0 R ->> -endobj -58 0 obj -<< -/Type /Font -/BaseFont /ZRYLLV+CMR7 -/FirstChar 49 -/FontDescriptor 120 0 R -/LastChar 65 -/Subtype /Type1 -/Widths 89 0 R ->> -endobj -59 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 402.234000 null ] ->> -endobj -60 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 333.530000 null ] ->> -endobj -61 0 obj -<< -/D [ 38 0 R /XYZ 45.638000 261.836000 null ] ->> -endobj -62 0 obj -<< -/D [ 38 0 R /XYZ 70.544000 211.915000 null ] ->> -endobj -63 0 obj -<< -/D [ 38 0 R /XYZ 70.544000 152.357000 null ] ->> -endobj -64 0 obj -<< -/Type /Pages -/Count 2 -/Kids [ 38 0 R 72 0 R ] ->> -endobj -65 0 obj -<< -/Type /Annot -/A << -/D (Hfootnote.1) -/S /GoTo ->> -/Border [ 0 0 0 ] -/C [ 1 0 0 ] -/H /I -/Rect [ 508.854000 758.209000 515.316000 770.456000 ] -/Subtype /Link ->> -endobj -66 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec.eu/sijanec/sola-gimb-2) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 485.877000 746.185000 550.634000 757.310000 ] -/Subtype /Link ->> -endobj -67 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec/sola-gimb-2/src/branch/master/mat/domace_naloge/21/) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 237.402000 733.953000 350.356000 745.908000 ] -/Subtype /Link ->> -endobj -68 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (http://razor.arnes.si/~asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.pdf) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 140.675000 722.275000 550.634000 733.400000 ] -/Subtype /Link ->> -endobj -69 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/mat/domace_naloge/21/dokument.pdf) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 88.560000 710.043000 550.634000 721.998000 ] -/Subtype /Link ->> -endobj -70 0 obj -<< -/Type /Annot -/A << -/D (Hfootnote.2) -/S /GoTo ->> -/Border [ 0 0 0 ] -/C [ 1 0 0 ] -/H /I -/Rect [ 330.044000 608.009000 336.506000 620.048000 ] -/Subtype /Link ->> -endobj -71 0 obj -<< -/ColorSpace 3 0 R -/ExtGState 1 0 R -/Font << -/F40 75 0 R -/F45 82 0 R -/F46 80 0 R -/F60 83 0 R -/F7 58 0 R -/F71 47 0 R -/F8 55 0 R ->> -/Pattern 2 0 R -/ProcSet [ /PDF /Text ] ->> -endobj -72 0 obj -<< -/Type /Page -/Annots [ 65 0 R 66 0 R 76 0 R 67 0 R 68 0 R 77 0 R 69 0 R 78 0 R 70 0 R ] -/Contents 73 0 R -/MediaBox [ 0 0 595.276000 841.890000 ] -/Parent 64 0 R -/Resources 71 0 R ->> -endobj -73 0 obj -<< -/Length 3869 ->> -stream -0 g 0 G -0 g 0 G -BT -/F71 14.3462 Tf 45.638 783.171 Td [(2)-1125(Zaklju)31(\024)531(cek)]TJ/F8 9.9626 Tf 0 -21.821 Td [(T)83(a)-375(dokumen)28(t)-376(je)-376(infor)1(m)-1(ati)1(vne)-376(nara)28(v)28(e)-376(in)-376(se)-375(lahk)28(o)-323(\024)447(se)-376(spreminja.)-571(Na)-55(jno)27(v)28(ej)53(\024)447(sa)-375(razli)27(\024)473(cica,)-387(torej)-375(PDFji)-376(in)-375(L)]TJ/F7 6.9738 Tf 441.285 2.043 Td [(A)]TJ/F8 9.9626 Tf 4.386 -2.043 Td [(T)]TJ 5.535 -2.144 Td [(E)]TJ 5.534 2.144 Td [(X)]TJ/F7 6.9738 Tf 7.472 3.616 Td [(1)]TJ/F8 9.9626 Tf 8.212 -3.616 Td [(izv)28(orna)]TJ -472.424 -11.955 Td [(k)28(o)-28(da,)-481(zgo)-28(do)28(vina)-451(spremem)28(b)-452(in)-451(prej)53(\024)447(snje)-451(razli)27(\024)473(cice,)-481(je)-452(na)-451(v)28(oljo)-451(v)-452(mo)-55(jem)-399(\024)447(solsk)28(em)-451(Git)-452(rep)-28(ozitorij)1(u)-452(na)]TJ/F40 9.9626 Tf 441.236 0 Td [(https://git.)]TJ -441.236 -11.955 Td [(sijanec.eu/sijanec/sola-)-50(gimb-)-50(2)]TJ/F8 9.9626 Tf 160.576 0 Td [(v)-268(mapi)-268(/mat/domace)]TJ -ET -q -1 0 0 1 298.772 737.639 cm -[]0 d 0 J 0.398 w 0 0 m 2.989 0 l S -Q -BT -/F8 9.9626 Tf 301.76 737.44 Td [(naloge/21/.)-423(P)28(o)28(v)28(eza)27(v)56(a)-268(za)-268(ogled)-268(zadnje)-268(razli)28(\024)472(cice)-268(tega)-268(doku-)]TJ -256.122 -11.955 Td [(men)28(ta)-231(v)-231(PDF)-230(obliki)-231(je)]TJ/F40 9.9626 Tf 96.033 0 Td [(http://razor.arnes.si/)]TJ 115.068 -1.93 Td [(~)]TJ 5.23 1.93 Td [(asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.)]TJ -216.331 -11.955 Td [(pdf)]TJ/F8 9.9626 Tf 17.905 0 Td [(in/ali)]TJ/F40 9.9626 Tf 26.013 0 Td [(https://git.sijanec.eu/sijanec/sola-)-50(gimb-)-50(2/raw/branch/master/mat/domace_naloge/21/dokument.)]TJ -43.918 -11.956 Td [(pdf)]TJ/F8 9.9626 Tf 15.691 0 Td [(.)]TJ/F71 14.3462 Tf -15.691 -32.945 Td [(Razhro)59(\024)504(s)31(\024)531(cev)63(alne)-375(inf)-1(orma)1(cij)-1(e)]TJ/F8 9.9626 Tf 0 -21.821 Td [(T)83(e)-307(informacije)-307(so)-307(generirane,)-313(k)28(er)-307(je)-307(omogo)28(\024)472(ceno)-307(razhro)52(\024)448(s)27(\024)473(ce)-1(v)56(anje.)-436(Pred)-307(ob)-55(ja)28(v)27(o)-307(dokumen)28(ta)-307(izklopite)-307(razhro)53(\024)447(s)28(\024)472(cev)55(anje.)-435(T)83(o)]TJ 0 -11.955 Td [(naredite)-333(tak)28(o,)-334(da)-333(nasta)28(vite)-334(uk)56(az)]TJ/F40 9.9626 Tf 143.158 0 Td [(razhroscevanje)]TJ/F8 9.9626 Tf 76.545 0 Td [(na)-333(0)-334(v)-333(za)28(\024)472(cetku)-333(dokumen)27(ta.)]TJ -204.759 -11.956 Td [(Gra\014)-333(ima)-56(jo)-333(natan)28(\024)472(cnost)-333(100)-334(to)28(\024)472(ck)-333(na)-333(graf.)]TJ 0 -11.955 Td [(Konec)-333(generiranja)-334(doku)1(m)-1(en)28(ta:)-444(20.)-333(dec)-1(em)28(b)-28(er)-333(2020)-333(ob)-334(00:23:37)]TJ/F7 6.9738 Tf 270.458 3.616 Td [(2)]TJ/F8 9.9626 Tf -270.458 -15.571 Td [(Dokumen)28(t)-334(se)-333(je)-333(generiral)-334(R0qK1KR2)-333(s.)]TJ -0 g 0 G -ET -q -1 0 0 1 45.638 101.61 cm -[]0 d 0 J 0.398 w 0 0 m 201.597 0 l S -Q -BT -/F46 5.9776 Tf 56.73 94.968 Td [(1)]TJ/F45 7.9701 Tf 4.151 -2.813 Td [(Za)-354(izdela)29(v)30(o)-354(dokumen)29(ta)-354(p)-29(otrebujete)]TJ/F60 7.9701 Tf 133.384 0 Td [(TeXLive)-531(2020)]TJ/F45 7.9701 Tf 50.81 0 Td [(.)]TJ/F46 5.9776 Tf -188.345 -6.691 Td [(2)]TJ/F45 7.9701 Tf 4.151 -2.813 Td [(T)89(o)-350(ne)-349(nak)59(azuje)-350(dejansk)30(ega)-320(\024)502(casa,)-351(k)30(o)-350(je)-349(bil)-350(dokumen)30(t)-350(napisan,)-350(tem)29(v)30(e)29(\024)502(c)-320(\024)502(cas,)-350(k)29(o)-349(je)-350(bi)-349(dokumen)29(t)-349(generiran)-350(v)-349(PDF/D)29(VI)-349(oblik)29(o.)-470(Isto)-350(v)30(elja)]TJ -15.243 -9.465 Td [(za)-354(datum)-354(v)-354(gla)29(vi)-354(dokumen)30(ta.)]TJ 113.147 2.015 Td [(\024)]TJ -0.941 -2.015 Td [(Ce)-354(b)-30(erete)-354(direktno)-354(iz)-354(LaT)88(eX)-354(datotek)30(e,)-354(b)-30(o)-354(to)-354(v)29(edno)-354(dana)56(\024)476(snji)-355(da)1(tum)-1(.)]TJ -0 g 0 G -0 g 0 G -/F8 9.9626 Tf 137.303 -29.94 Td [(2)]TJ -0 g 0 G -ET - -endstream -endobj -74 0 obj -<< -/D [ 72 0 R /XYZ 44.638000 830.996000 null ] ->> -endobj -75 0 obj -<< -/Type /Font -/BaseFont /IJKLSG+CMTT10 -/FirstChar 45 -/FontDescriptor 130 0 R -/LastChar 126 -/Subtype /Type1 -/Widths 88 0 R ->> -endobj -76 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec.eu/sijanec/sola-gimb-2) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 44.642000 733.953000 204.541000 745.908000 ] -/Subtype /Link ->> -endobj -77 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (http://razor.arnes.si/~asija3/files/sola/gimb/2/mat/domace_naloge/21/dokument.pdf) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 44.642000 710.043000 62.325000 721.998000 ] -/Subtype /Link ->> -endobj -78 0 obj -<< -/Type /Annot -/A << -/Type /Action -/S /URI -/URI (https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/mat/domace_naloge/21/dokument.pdf) ->> -/Border [ 0 0 0 ] -/C [ 0 1 1 ] -/H /I -/Rect [ 44.642000 698.364000 62.325000 708.659000 ] -/Subtype /Link ->> -endobj -79 0 obj -<< -/D [ 72 0 R /XYZ 45.638000 686.561000 null ] ->> -endobj -80 0 obj -<< -/Type /Font -/BaseFont /XTJZVU+CMR6 -/FirstChar 49 -/FontDescriptor 118 0 R -/LastChar 50 -/Subtype /Type1 -/Widths 87 0 R ->> -endobj -81 0 obj -<< -/D [ 72 0 R /XYZ 60.881000 101.620000 null ] ->> -endobj -82 0 obj -<< -/Type /Font -/BaseFont /TPJKYX+CMR8 -/FirstChar 20 -/FontDescriptor 122 0 R -/LastChar 122 -/Subtype /Type1 -/Widths 86 0 R ->> -endobj -83 0 obj -<< -/Type /Font -/BaseFont /ISIMRT+CMTT8 -/FirstChar 48 -/FontDescriptor 132 0 R -/LastChar 118 -/Subtype /Type1 -/Widths 85 0 R ->> -endobj -84 0 obj -<< -/D [ 72 0 R /XYZ 60.881000 92.115000 null ] ->> -endobj -85 0 obj -[ 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 -531.300000 ] -endobj -86 0 obj -[ 531.300000 531.300000 531.300000 795.800000 472.200000 531.300000 767.400000 826.400000 531.300000 958.700000 -1076.800000 826.400000 295.100000 295.100000 531.300000 885.400000 531.300000 885.400000 826.400000 295.100000 -413.200000 413.200000 531.300000 826.400000 295.100000 354.200000 295.100000 531.300000 531.300000 531.300000 -531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 531.300000 295.100000 295.100000 -295.100000 826.400000 501.700000 501.700000 826.400000 795.800000 752.100000 767.400000 811.100000 722.600000 -693.100000 833.500000 795.800000 382.600000 545.500000 825.400000 663.600000 972.900000 795.800000 826.400000 -722.600000 826.400000 781.600000 590.300000 767.400000 795.800000 795.800000 1091 795.800000 795.800000 -649.300000 295.100000 531.300000 295.100000 531.300000 295.100000 295.100000 531.300000 590.300000 472.200000 -590.300000 472.200000 324.700000 531.300000 590.300000 295.100000 324.700000 560.800000 295.100000 885.400000 -590.300000 531.300000 590.300000 560.800000 414.100000 419.100000 413.200000 590.300000 560.800000 767.400000 -560.800000 560.800000 472.200000 ] -endobj -87 0 obj -[ 611.100000 611.100000 ] -endobj -88 0 obj -[ 525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 525 525 525 525 525 525 525 525 -525 525 ] -endobj -89 0 obj -[ 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 569.500000 323.400000 -323.400000 323.400000 877 538.700000 538.700000 877 843.300000 ] -endobj -90 0 obj -[ 777.800000 277.800000 777.800000 500 777.800000 500 777.800000 777.800000 777.800000 777.800000 -777.800000 777.800000 777.800000 1000 500 500 777.800000 777.800000 777.800000 777.800000 -777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 777.800000 1000 1000 -777.800000 777.800000 1000 1000 500 500 1000 1000 1000 777.800000 -1000 1000 611.100000 611.100000 1000 1000 1000 777.800000 275 1000 -666.700000 666.700000 888.900000 888.900000 0 0 555.600000 555.600000 666.700000 500 -722.200000 722.200000 777.800000 777.800000 611.100000 798.500000 656.800000 526.500000 771.400000 527.800000 -718.700000 594.900000 844.500000 544.500000 677.800000 762 689.700000 1200.900000 820.500000 796.100000 -695.600000 816.700000 847.500000 605.600000 544.600000 625.800000 612.800000 987.800000 713.300000 668.300000 -724.700000 666.700000 666.700000 666.700000 666.700000 666.700000 611.100000 611.100000 444.400000 444.400000 -444.400000 444.400000 500 500 388.900000 388.900000 277.800000 ] -endobj -91 0 obj -[ 750 758.500000 714.700000 827.900000 738.200000 643.100000 786.300000 831.300000 439.600000 554.500000 -849.300000 680.600000 970.100000 803.500000 762.800000 642 790.600000 759.300000 613.200000 584.400000 -682.800000 583.300000 944.400000 828.500000 580.600000 682.600000 388.900000 388.900000 388.900000 1000 -1000 416.700000 528.600000 429.200000 432.800000 520.500000 465.600000 489.600000 477 576.200000 -344.500000 411.800000 520.600000 298.400000 878 600.200000 484.700000 503.100000 446.400000 451.200000 -468.800000 361.100000 572.500000 484.700000 715.900000 571.500000 490.300000 465.100000 322.500000 384 -636.500000 500 ] -endobj -92 0 obj -[ 555.600000 555.600000 833.300000 833.300000 277.800000 305.600000 500 500 500 500 -500 750 444.400000 500 722.200000 777.800000 500 902.800000 1013.900000 777.800000 -277.800000 277.800000 500 833.300000 500 833.300000 777.800000 277.800000 388.900000 388.900000 -500 777.800000 277.800000 333.300000 277.800000 500 500 500 500 500 -500 500 500 500 500 500 277.800000 277.800000 277.800000 777.800000 -472.200000 472.200000 777.800000 750 708.300000 722.200000 763.900000 680.600000 652.800000 784.700000 -750 361.100000 513.900000 777.800000 625 916.700000 750 777.800000 680.600000 777.800000 -736.100000 555.600000 722.200000 750 750 1027.800000 750 750 611.100000 277.800000 -500 277.800000 500 277.800000 277.800000 500 555.600000 444.400000 555.600000 444.400000 -305.600000 500 555.600000 277.800000 305.600000 527.800000 277.800000 833.300000 555.600000 500 -555.600000 527.800000 391.700000 394.400000 388.900000 555.600000 527.800000 722.200000 527.800000 527.800000 -444.400000 ] -endobj -93 0 obj -[ 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 591.100000 355.600000 355.600000 -386.100000 885.500000 591.100000 591.100000 885.500000 865.500000 816.700000 826.700000 875.500000 756.700000 -727.200000 895.300000 896.100000 471.700000 610.600000 895 697.800000 1072.800000 896.100000 855 -787.200000 855 859.400000 650 796.100000 880.800000 865.500000 1160 865.500000 865.500000 -708.900000 356.100000 620.600000 356.100000 591.100000 355.600000 355.600000 591.100000 532.200000 532.200000 -591.100000 532.200000 400 532.200000 591.100000 355.600000 355.600000 532.200000 296.700000 944.400000 -650 591.100000 591.100000 532.200000 501.700000 486.900000 385 ] -endobj -94 0 obj -[ 575 575 575 869.400000 511.100000 597.200000 830.600000 894.400000 575 1041.700000 -1169.400000 894.400000 319.400000 350 602.800000 958.300000 575 958.300000 894.400000 319.400000 -447.200000 447.200000 575 894.400000 319.400000 383.300000 319.400000 575 575 575 -575 575 575 575 575 575 575 575 319.400000 319.400000 -350 894.400000 543.100000 543.100000 894.400000 869.400000 818.100000 830.600000 881.900000 755.600000 -723.600000 904.200000 900 436.100000 594.400000 901.400000 691.700000 1091.700000 900 863.900000 -786.100000 863.900000 862.500000 638.900000 800 884.700000 869.400000 1188.900000 869.400000 869.400000 -702.800000 319.400000 602.800000 319.400000 575 319.400000 319.400000 559 638.900000 511.100000 -638.900000 527.100000 351.400000 575 638.900000 319.400000 351.400000 606.900000 319.400000 958.300000 -638.900000 575 638.900000 606.900000 473.600000 453.600000 447.200000 638.900000 ] -endobj -95 0 obj -[ 314.800000 367.300000 314.800000 524.700000 524.700000 524.700000 524.700000 524.700000 524.700000 524.700000 -524.700000 524.700000 524.700000 524.700000 314.800000 314.800000 314.800000 787 524.700000 524.700000 -787 763 722.500000 734.600000 775 696.300000 670.100000 794.100000 763 395.700000 -538.900000 789.200000 643.800000 920.400000 763 787 696.300000 787 748.800000 577.200000 -734.600000 763 763 1025.300000 763 763 629.600000 314.800000 527.800000 314.800000 -524.700000 314.800000 314.800000 524.700000 472.200000 472.200000 524.700000 472.200000 314.800000 472.200000 -524.700000 314.800000 314.800000 472.200000 262.300000 839.500000 577.200000 524.700000 524.700000 472.200000 -432.900000 419.800000 341.100000 550.900000 472.200000 682.100000 473.800000 498.500000 419.800000 ] -endobj -96 0 obj -[ 513.900000 513.900000 513.900000 770.700000 456.800000 513.900000 742.300000 799.400000 513.900000 927.800000 -1042 799.400000 285.500000 285.500000 513.900000 856.500000 513.900000 856.500000 799.400000 285.500000 -399.700000 399.700000 513.900000 799.400000 285.500000 342.600000 285.500000 513.900000 513.900000 513.900000 -513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 513.900000 285.500000 285.500000 -285.500000 799.400000 485.300000 485.300000 799.400000 770.700000 727.900000 742.300000 785 699.400000 -670.800000 806.500000 770.700000 371 528.100000 799.200000 642.300000 942 770.700000 799.400000 -699.400000 799.400000 756.500000 571 742.300000 770.700000 770.700000 1056.200000 770.700000 770.700000 -628.100000 285.500000 513.900000 285.500000 513.900000 285.500000 285.500000 513.900000 571 456.800000 -571 457.200000 314 513.900000 571 285.500000 314 542.400000 285.500000 856.500000 -571 513.900000 571 542.400000 402 405.400000 399.700000 571 542.400000 742.300000 -542.400000 542.400000 456.800000 ] -endobj -97 0 obj -[ 808 888.900000 886.700000 657.400000 823.100000 908.600000 892.900000 1221.600000 892.900000 892.900000 -723.100000 328.700000 617.600000 328.700000 591.700000 328.700000 328.700000 575.200000 657.400000 525.900000 -657.400000 543 361.600000 591.700000 657.400000 328.700000 361.600000 624.500000 328.700000 986.100000 -657.400000 591.700000 657.400000 624.500000 488.100000 466.800000 460.200000 657.400000 624.500000 854.600000 -624.500000 624.500000 525.900000 ] -endobj -98 0 obj -[ 562.500000 562.500000 562.500000 849.500000 500 574.100000 812.500000 875 562.500000 1018.500000 -1143.500000 875 312.500000 342.600000 581 937.500000 562.500000 937.500000 875 312.500000 -437.500000 437.500000 562.500000 875 312.500000 375 312.500000 562.500000 562.500000 562.500000 -562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 562.500000 312.500000 312.500000 -342.600000 875 531.200000 531.200000 875 849.500000 799.800000 812.500000 862.300000 738.400000 -707.200000 884.300000 879.600000 419 581 880.800000 675.900000 1067.100000 879.600000 844.900000 -768.500000 844.900000 839.100000 625 782.400000 864.600000 849.500000 1162 849.500000 849.500000 -687.500000 312.500000 581 312.500000 562.500000 312.500000 312.500000 546.900000 625 500 -625 513.300000 343.700000 562.500000 625 312.500000 343.700000 593.700000 312.500000 937.500000 -625 562.500000 625 593.700000 459.500000 443.700000 437.500000 625 593.700000 812.500000 -593.700000 593.700000 500 ] -endobj -99 0 obj -[ 489.600000 489.600000 489.600000 734 435.200000 489.600000 707.200000 761.600000 489.600000 883.800000 -992.600000 761.600000 272 272 489.600000 816 489.600000 816 761.600000 272 -380.800000 380.800000 489.600000 761.600000 272 326.400000 272 489.600000 489.600000 489.600000 -489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 489.600000 272 272 -272 761.600000 462.400000 462.400000 761.600000 734 693.400000 707.200000 747.800000 666.200000 -639 768.300000 734 353.200000 503 761.200000 611.800000 897.200000 734 761.600000 -666.200000 761.600000 720.600000 544 707.200000 734 734 1006 734 734 -598.400000 272 489.600000 272 489.600000 272 272 489.600000 544 435.200000 -544 435.200000 299.200000 489.600000 544 272 299.200000 516.800000 272 816 -544 489.600000 544 516.800000 380.800000 386.200000 380.800000 544 516.800000 707.200000 -516.800000 516.800000 435.200000 ] -endobj -100 0 obj -[ 458.600000 458.600000 458.600000 693.300000 406.400000 458.600000 667.600000 719.800000 458.600000 837.200000 -941.700000 719.800000 249.600000 249.600000 458.600000 772.100000 458.600000 772.100000 719.800000 249.600000 -354.100000 354.100000 458.600000 719.800000 249.600000 301.900000 249.600000 458.600000 458.600000 458.600000 -458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 458.600000 249.600000 249.600000 -249.600000 719.800000 432.500000 432.500000 719.800000 693.300000 654.300000 667.600000 706.600000 628.200000 -602.100000 726.300000 693.300000 327.600000 471.500000 719.400000 576 850 693.300000 719.800000 -628.200000 719.800000 680.500000 510.900000 667.600000 693.300000 693.300000 954.500000 693.300000 693.300000 -563.100000 249.600000 458.600000 249.600000 458.600000 249.600000 249.600000 458.600000 510.900000 406.400000 -510.900000 406.400000 275.800000 458.600000 510.900000 249.600000 275.800000 484.700000 249.600000 772.100000 -510.900000 458.600000 510.900000 484.700000 354.100000 359.400000 354.100000 510.900000 484.700000 667.600000 -484.700000 484.700000 406.400000 458.600000 917.200000 ] -endobj -101 0 obj -<< -/Length 14262 -/Length1 1854 -/Length2 12408 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMBX10 003.002 -%%Title: CMBX10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMBX10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMBX10 known{/CMBX10 findfont dup/UniqueID known{dup -/UniqueID get 5000768 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /ZOXHGW+CMBX10 def -/FontBBox {-56 -250 1164 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX10.) readonly def -/FullName (CMBX10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Bold) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 86 /V put -dup 90 /Z put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 58 /colon put -dup 44 /comma put -dup 101 /e put -dup 53 /five put -dup 52 /four put -dup 103 /g put -dup 45 /hyphen put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 110 /n put -dup 57 /nine put -dup 111 /o put -dup 49 /one put -dup 41 /parenright put -dup 46 /period put -dup 114 /r put -dup 115 /s put -dup 54 /six put -dup 116 /t put -dup 51 /three put -dup 50 /two put -dup 117 /u put -dup 48 /zero put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{=מ7ڄĒKV"~Pr-=L$wcrlVcN &'{%Gf#ɨ_i#SXd+U*|:1m=⾝~6/aGLf#NOS}ERs{[.-jj|tm\: x8PbPh[_9t237,I2B8J0msUWQdX!??Q4eRH ]ӊ.p_?8:o:UuDZ[m^/a4l4ȒtL<~&WwLa9gPqhQΠjv)]sqR"ЯDž#eZKPHrF"tw;*l5 FF BW1S!2*`8:XlUI?[wc &Z`ѩް sdHeF'*s ЁTd9Baऋ[a$g1f\0 7aR^(Lj#!mw2#nr$|TL]{X`4.Gw|P2BgܴwbkF Nfj;d?#l"+6g{* ,SQ2&'n\`]Q:ݹ6ln0b9m],/ڨ\Y$6[+UE#ƸMO( ϲ.DL\*@z3'&Е62%+(k`D/k(ɒkpt`^Bձ\H~Y_˒c%~(! -Jvs}9qw{6sΓM &Q-p'&M&7tZ\r|5M5"*<ΕD,Lfj+ʾɝ"x0h#u[@}"փ -dIE* , j]v.tx kEYl}d.-eJ C=KD jnI"yX D|&k>ixbu?ѱ ,VszAc  G 7H`Ď'Ķ)r -ҎG֯Z~C -U. EC3}henħE!C[xxnCq##Ti.iW/i*?K`ɞ}g;ο@>Hmn91-[ tj7 3Myz,?Z@RPBi>vVF\Ahko8*NIQv94z4m n8)Db]ٞ>=e3Q-'0y#JW 0݈7\t53=μغ|[R>5Ir xhhy!kVSȮ7I ThaToɁ( WdsUI=]әM|dJ\YRGy4d(N{"l\ ]kȮ8V -A==r V^*mx(e=\ʰ!Bb8йX ֙Mاi -p)r ~1 ׏<;d,^6f,PpΨ|kR87>i e ^NҢ@h`[BF,L%mUBe*$nox3K V$[[fU;4Qjggo !%Uh(ԝ 2ן, O[Ј_\?Wt<ȅ/; "Rm®)E\rW1 ђoy։)B̊\@gJ?m Eqqٔ84^Da97 㤸{ɧZ!_`-rlُ*qٺ؊t LCg -:nbJ Lqrj5^9NRVJ7en%ϰYƕut4ƸF΋ėvQj6%c#~ O e҉'aS1e F u s^i"yw,~ C~Rƒ`,j"+ȬKk Q5IjEbT)">wv|$.4*@s? -ipb\r 9AZx; -~c/Hϫ+%Bm-7 S2*Eoq;ջ/6[ LoT F>=8$d�otu[QEU!\ސswE6W׍ Q8 < %xl& -~Bh=F"2\],ӱ@re(lF*ŊY7ٍ` pS?%i|ˋt|[b<7M=7snѪw24ׅd/bD~[)g43G&/pN%;t :p }wM/{ Ϭ0.bj!Z@< zyl)" KUmoҙ2c})z:<ۄF oŃGLyT7;$^>,Y.Fܔ%Gj,&U&S0Sg\+h8.!ɧ?4}+dC֡;GľZ#AeqE>RL K@$|DW/PN^Е3*0KƷ)}JMg"$58_gCs2C7,K՞?λ)效4 1#oIXcP~1 a^46Ӕ)jOa a ^oy^&9ߗǫ%<mLLN9y a)U)D.?9f4R2X w#_RzZu)q{ 3hSߛPDŒx)8%֗Q]9 rf!:wn; @AK ?gNq48)ďT cݨRSK:k4S};3<ʵ< SU^΋opf"5@A bq]W*VOMt,Sg__]0-GXz+G|f_r]EGaqۜgm ]Mnv(D/LbdR;G??aJVTy^ۭgm~`Z2Ј|{AJcQR qnd(ۜyoD`TJCHzRaPהxƜC@Mp<[0?e;ZT+R[kgϧa"q^b *r|::VNBOUzHbaGDH$6$4tLJb -INIC֜qa.K,ƭ >Cy -l7'mf &o1:i҅u meNπ@1; BB}Z(P3>f`mwyج]}L0qoJ 4VCBBLx1s_(\2ZZ. -G?eu8 3p8Dq,ƾ&[3M st/ϪT ;C;]DDu0 դQ[=zʥP*KCUqk#?k )M GRWI "RY7Wư0+@γTNT?aJxy~8up| ?5$[)sNd<#UM(8 bEQHt.f6֡U3=a^~C]䨀2"nC_FJ82{[c1 fXɉ{IڅF ʨ0GON :bպF3ܞ_(8::`xyVZ$݊gFԶܛbHQ[Щ!oݛ "(4m;>QEW;+/f|<<*im${TL֝*\!1 -m~8aeTpc\'gխf7!%;gNs(rkӝQ'1r4ǘKD^Fy@zEoUd9YBr?SU8ܹ/]~CINp`&$/sau:2]zDt*IWbc|[1y@H וOD8R8BŮ1$CG?jMt&Ic7t!DG5RyXv[!y#M+^e+i@sշu3VN4P{iSъW3<9xbt3DB^(x;OL#Л0ٚ?xNpK<9V́`Y-Q? ;~f㸓$oW6CDaxdU/a65bnof=7c8H%蠛 sIn^~L7 Bz @ˑ>9YCFF(<T^ɨ)aI=X4 +@;TE76c,P\R<SQ<"%;S_qy j8~%#Þ %~;QcK B-|IeNRQʡ,`_Mc;0]bv8V=NVč"lc;Yw=ֱ3r~STw.f7 qPa ;9ܪy^伜DmG ζS:e80zm$k}$Yµ}i^,i)c/^vŲ/spMQ*S*zuA;9-q)žl"AV^:QgNrt9ѨJHmhDDg@e0AvyI }^-Fh>0jƜ;,~$.U.y XSG %Q|Qj~3wE0 -$pW={K(]WKS="K8OQEw%~Dovh<ĀDDIv!PQ4dҺ6*1d(G XY;e㡒]/5n,7SOD^"%Z%Ҭ4I:66Dqոw}NҪ_Պ½ iYJt`'K>"ɕD{^M0I()IB>ZlL3Z*膒jnZhts280jOXUm0n<{Dt\5`"X"g^)Ǖ\= -fN<ﳭPs*s5B P\l$?wW{֧'0[5ጐQ^/=|8/Rl5IGLk!cvIupaa{|&3C;Zzj1|uArǝkmZp9r"BhUY/sHqm,'ebyS Fn"8~(f\; G !1xaST\Hy &0zc-#>ރ >uUcT\o髚ZbY9iv]̕2|Jՙ5ÃTI;-ˋ:XnDio_ \JO_.,-"~ 5BUsWltAP٫"2CT"[E YDz'{?ѩۍ)_6%$R+Gu_CY'kr~)Þb1u2k6 iJfawoؒc& [xj"e^y`bJh^tQat0v0Oj%P;?a<J,Ewz*PZP4Xӊ1un\Z܈ `VIs#衽ep^Oę^K}>R} #RL*oP/cvrneȍwS49 gҭZf#*QL5E&͑*Pu\&Z ~H?RyWfmKK0,ksy}5bH ?7&y8?<.u(#҇/d:y%ʉ +vg=?`'FG.h̶@[m\k7jMŽ靈@Rt 'ר&{>'[&ʒw< 5%9hv z}a1U_X6ze?PHu;%$<9N=BGϐHZHlDD -g!X;E*Tz^ .殾򳿃x<#ɴ/ ސkg51._^x|'OVYLN{q 4μVJWP+cKfO7Ku#Kl9xÕ%qRdA5=A#GJ۶ ? pϜ.|៣!ZV"XBu-:?s -p[ KIw^-Rئa:UGYTCYʛ ņ4 1Mhߗ+\,|jTpY:JE!^qy%IC 0~u2vA ;<1[ ZD]gq1qtv`9%$CBvMdLj)䥮?VXT{iOaJo -l"JE;-۰\.KTodp=y%?3ymW{l mtcMXa;vms >|A#X$5m2AӓHvw#q5;'bDishwi5\V;GRҕh. ݷT>ȅ0#y$&x\oӸJIg zDނc/JsEm!ųSASj|-tBn -Hcc/n* MxAXJA % XXZgP{]F3  ASy}\ U2dPDq)AŏGTSs#ewJg;Tqf&WV8$-ӵw@H>[1Å -r%[ j13wgVI.2ӱHP#)Rf?""u.ʳ"T4!k:W⎺x54͛Bd@dB3Y"KsH,zPyJO2 4A??R,SxX}(-в\Vt)XOI#djhsZ@9WtLb%bkd!K x0"Տo!1 *zJ~.s;(a}HYS-7&X) /(q.~4S1YboR L!G\|QeY~Ö܆+G3`%{k$Ia% ?dr,6/.9*Uxksjө~f( !pXreza?6;mݘBt~Mu !RJt !U}s!zgFWգH:FRc.κWSKuk/?GC9¦`/qwmAЅ|KiYU&pWpn4ˏ )lT'Ļ_ - E?uM6|gzS_3zf2m&E075S `qu윊C^\݊ -2יjfhFv'-x.k3`36ډ{2s=6+9 Eؓg<[$RK׽HepQ&h+ -&~{MRc - >q4ʚDtn`-^ѥLc6ۮ%5sU;LqHwOShs򢖏hiTe<9*x3MŞт]V#9Wīo?M0~#zc $PbrS9r=VU*-A+G7ce͕J~$d.=X*8i|[ - 5:*?5gJ6QdIQ@V -TZ{poC|$0Enީ~1E戻$3Cf,dzx}Àx9z;pIEK@x֦y8*?O`S{#rarkQÈHŇIy>ֆzUq!hlxukN7_7egDLmڏ4p(O c.AJqiپŖ -{lǂ)O,γO k)u[ȹ?JH0׷;iOrs'R*L!ٳpET8\6>^A⌫#0ƄT"i#j4°:?Fpu^(KBp<)5f |0WM sp_}<d^YcX V%J-Ҋr' }5;* 0]9+}ֺq\,WqSR-.AA\҆~_&6ỈM[HYQ ݱcTi}" Lݐ,C쎾u9R T| cI62 +&Pu~/ʚ߽6V'0 y%MMLoux@bפi6Hp!r6IW$$ےw̲秾/:dr(>k[ңفAǑ]3Y ogRfFۃ2†{3C/>b%>)U7eJ`٩B&8֘`ׄzKvo3HQa/R8 -t;.liR~שcq~ 0hdhKȔ+cڬe2o}&^\RסSfFBlY-9gU>fBME X"s6+sUJAIDl -Vw렮;P? ^QrdЬn<RwNaCvVE (N=e,u\ ^[a~ :XRJTfi[b0| 6?y:7SoRa|7J]a_yTE7_c91Ώeؑ]'|l*!$zy#2zaYVۘTJ:9͈o_z!Sإ(PoۤP*b430:}bFZ\3C%(_y - ɬeT$5t7b1 qF9[co} -!nr7n> -endobj -103 0 obj -<< -/Length 13810 -/Length1 1912 -/Length2 11898 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMBX12 003.002 -%%Title: CMBX12 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMBX12. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMBX12 known{/CMBX12 findfont dup/UniqueID known{dup -/UniqueID get 5000769 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /OLUUSQ+CMBX12 def -/FontBBox {-53 -251 1139 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX12.) readonly def -/FullName (CMBX12) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Bold) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 65 /A put -dup 75 /K put -dup 80 /P put -dup 82 /R put -dup 86 /V put -dup 90 /Z put -dup 97 /a put -dup 99 /c put -dup 20 /caron put -dup 58 /colon put -dup 44 /comma put -dup 101 /e put -dup 102 /f put -dup 53 /five put -dup 52 /four put -dup 103 /g put -dup 104 /h put -dup 45 /hyphen put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 57 /nine put -dup 111 /o put -dup 49 /one put -dup 114 /r put -dup 115 /s put -dup 54 /six put -dup 116 /t put -dup 51 /three put -dup 50 /two put -dup 117 /u put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{Jf^ַ>aq4!<_CцcQ%BlS71_ -sQzԜr?ktP2Òl(?69~'@2bt[{ax 7}Gn[TY>T#a1h!;`WƮk>Kj̱JzNc?^<@ qTud[eюj:JnK#2S[ŝBb?̬Mo7aa'gP:δѩ҈ dBd|IH^wMe#DD13W.J.6׮r(N #>Zjhɵ+Uw -$\WN.C(V\N¸3A?l_sMP yfSyֿb`9upPȐNur)L=uhՂD١Pԋ^} --zU*3~HwzQ:.cxv(P}F>48zeU+Jk <>,H~^U>~~)9G-_+ԇ2miΝ1r>Z?ώ8PZm#meDPњ69v=hE_X(yN(9d5p7LZC~ld1:/ g!, -}Q+93V{ QlG 7!;yq+ JA vj/rڜZP)4f+OpX_t~ 5[RZ$ҹ=#e@K*WEt_-J bΣZdh>xNpsGLOh>o련J;J+\m -J6km9"N `D[ h6w{Ac<=ޮv}PC*|sAחfK+1!Sn~#_*]\i!Jiq˘mJ K fy*S}iGV6wa$mv<zZQ^L0NRq!*7uLO=b~_J CI?<5 T zs}uL`M؀"7K 8yO {|v`).D3K$ ,3sÝDRT c2쑃%yD\MS9HQ՝rfG^\55#v[Yϴ)KS^~nMX,8&7a d$ݕ ^t/WyϿ4QK{)=WDd>oeZpٕi-e@PLb|#p"6KLPXzbZc})%LKfO2ݮ (NԴU-eru RyTkl>'H 9т-)u -u+ld4zcLsTJ[:v?WNM* NiLffF/? ̔o_a! Bt]z\ޔR/r4MFwe5']ZPp׶r?PaL'- -c3G}T'ڡn#^>Ҡ'-ހFwMOTDsJQ{ T޾2VNsҎ%Bh$,>oK"Hϯ 2BU7'J(Ǜc1PIݐ.lQjF%jP -1zb2ɮWM+mKf,"/3~į;7/7=o-R%nJB@n6A0hRF9T {(&$߅:hMj %FVڈGv?`S::JepR̶9y?O_4:╱bEV]1Vb,"KoF0dba̟f4G^̬k({: -]-eJbc?hs+΢_sS,atyir%F3gދ&M}ۨ3Dkh`\rud>;iA_ -oF_љckNԋn`v)2ۙ$# 6{⮶\FvUW l -%x[gj6~C "^klCy%)%nWFO/My~ZqiI$CT*x])it4ZV]m剁VO)gi -%-JUƠ[fTX7/.cU,h78M4 z9:̳jmrvP# >bx_Løğ y5R@/{fQC}d~r!4ѐfPo퀿M+^',6_/W{h/њjS}Jz sնj ޳~zL{qA\Rh$):zNSJLyj^Ĕǒ)T~KZAP0JP~(>~9&åv^")X5=hN҂aNز%1v1gv?467H!NjO4پb夹tFy&{wQ[+ZJq -+@ mn,jMnEfI m RGUY8šNK:]ĤB!N?J'A.k{c㣆+/lB~z- NWWcr酉?V,d\$;tTR%M8DLsY{D#4 D{a\j;$ndʟ'KE 'p a_C1daEE4"<[ɬ}77%غk/2Ik'wblZqq@`C,6|U[2ǩ{{_W{l[(Eㅐ&K!.0t)f7lnMwX< | w2#:|м6ޡ4Hkr~IEmvb,[xY@rL'3:`A7C~X+_显R#GAVt]Dd ! 0*uzbrYN%gUX&h͈6OW2^zG iNΫyf_S">.g`B6G -BdXXE}텅eW_llQ6ioF<3ԙZN%Q^w݃{&E:k= BI| -~ڛfKikx zm 3ٳ~mk -R-rHsډZ嬪.]]Mmјrx{%u_p[ -5~`31>pajdoT&]J[[@ǿ&#F8i ^9<we+-lBdv>B2p["j FSoa9"1ܟ`IC"9²xG@,ty -ďuo1H?$YM;oia=ۓe%[2Ax=7rܥVBe[˪?常%,Ƀ.$nYeWm!QiBԘte=L@&j*ފS3(W{kϰtu$%#!>R=k[>u>6ӣVϬNld>&VeR^- U*lY `s'ӕ)!-@;UIuvG*^ x8gyyg|)t#$ X0fمNWz M< t>&+4N%J"cqx=NJqҼmWҾ07js);'S] 3l i |M YL*g. /A|]Z;wĵ͓h'A4@@`J jٙ4JՎ$ +&G[A[8f i+o" I -{y }$teӜV o+m2\\IؘԏƳL¢#EadIOUOxA5>.ыKe=0@vJ:5bj̊_[,82 ޭ@J\rL8gy8i{CRᩞuG/W{8YDL?͏$j5,;ȁ|a쒤HPP8) -^NZ卯9vݑ7ᚮ{V^sfpZ~rw;gt$2 aڰ(iOd\Bvp - -ȑJrʂyyl -X!.X_K^?eT:C@`&nm/h˓n!HcC -/q(ހS2ײi@/ʤ1=ҙL>Dc'4 -ks)y.*%'vvGT3lz :a).ERex -ycQڅ|Syp| BN=9;+ 1(H-F/ fZ2dMpDj̖ߺB͞Y~>/( vk?.LpHS"'Q&k]]kQ7yZ #πYD}u #gŒtH,V$_6ڨsS.*U| DՓPFbB*Bu4ZB~*j?B/&ԌTފm奔Bu7!j9 alɋpwcsCpiyaJ: D08b>OPW@Yߔ눚( 32Nͤm*6p[Efw(`߬S_Nps1m5 -oHrcG٬R %G "dC*uIk_o*;tS!i0 (T(4T!8#Ʌj#([:۝ -F_p9WCU NZ|BIw> vu-OaO1,hp._`Øzq*~*`@׊V_^u'¦l.OS -&[<\FFl(63_Y|#+0 {XރA가o3) -?#n~՝@$Zb нW!7.Bˬ3~,X(yy/'Q&" G]TqiNąOt;|cWhP+"rˬf3Z3&"v d*M8d=*bFb[ -:oW=iJ`~mT0[NBmo-̡u0`Y$:!9^`#'4iΛ_6ƿŰ ٵdط(pɭUIrf~2jކD[[褔J;E&y/:x*Ɗ:6h|}9 6Whf-AOۇa|7x.eͤN M!LY;ƥyW`VNbw ^ӯPϋR%JZ]^Ffշfx5ǎqVo"vJV;#W th<ЯF5R IjyxyN-A(XʞU<Vh+`lqki;zҁمS~g"J2*6P+ ;dgh,yo I[7D%6z9(n-H;::;햋3@4({l q[vL+x$9,&TPRIa0u R\ h͝燪.O6#BtG -N5gL3A}R#^Ag*)jOxV*kBs _bklAW4:"weVZY -Z?h+LDiAں };(@!@x$Es_l.þ['bYe K9e"VWmoIcTY8Aoz/uc9&D 8Ua4/]aX1b+ZTž.,⩳Cql9NT9xaf-ĴN*M673t䏉s4z,O~1>ǿU]9WG . I#jFCY8j2[lk07> -ޒ+bWgZ7ӷfXWv]ȷ0$}:ː}7e&j@',Pt(ϙ o{;;S0}.LXOGv}Tg%$zB )'f[h9ʿ:{b u/4vCi(ذ y JAqb.6W*hkNrh|#ƷA2E(qhIsf -qZ$T4nj\|2a -~NT׹zKgd; B'LHRHB GL 7G -7ݱ= XJi]A&MD6fJX-3^s -ڮ H `hJ7D/arūR +oCEb]KNL~ -랔,j':q;tC- JB̚zx*5%"3=Yn~br†& :1DE_綝?,g'frkNJbCGRp\amA =vx"Շ&mS]TޏeG[W*M,pEgpK -5z%ݺ&L4Y9L6Yl*gg 1kǔK" ,8!tc$5#WbxwS S jǫBׁ$U>߁<vjعxIvn{IY$QDFh67ƮEv.cl6<•ؕk7]i}99c!_JB_W@Fi}UDyNCCVyɬ j,$xױmx4_IsutЧ}9ۧ >:xkaziLD%6E/8+y>}Ev?&m|A$%Anb!(͛ d,uT’QX@V C1#uy97p lkˣ_|~xi {~HZw#DbҞxn͞)g{iT#0`ylڝhEx Hܫ ~\2S8&'X:/t*%W@:n*cd=?X 9k[# -kQ{e"HuARulm&{I\Swe3q٧[A|̋K(i~1J7kl.[Ȟjc~A_xvFU=Z%TZ#]Auq~Z?j)ܴϐnZ"=}a*diQͧZꔀy8X6r'_{`c Vh -Jy=ܗ”#5Ivꮄ p9>ǫW,Gb>H (~N7?4]O ݃S#R7…1#[nY`eRwL5<K!PjirԳR>tQ^ \@o:37Ԛihɂ| a$Ӥw`Fk:jfc"φ$ -3xX`ɱ6;(=%ѪCI&Ò&L\󥫀m#~60(퍃ш̬‚CÇp /'<;>z_LIAB?ܚ-GvA-0z\.V9Hэ6 Hfi.ZY`}6Q"n4T]Ä6!%ul蹋*O]o -b5oB "*Gv^P/fi@W`^8K$_>zflX "jWjͤ;Lc3?u5DY;vҡWH_58Ȯ&f*0,(Oaq! -Ql fڜ -Iu|&fJj_# \ˑ],-<ΗPY]M+ƽgӨx@>{OD:[rJ́;3Z[@ ԪX{qw9FQKRzx#5|㟂x3ˀStZ+9!1O$zV!\.q\3%IO}*@D}81|A -endstream -endobj -104 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 686 -/CharSet (/A/K/P/R/V/Z/a/c/caron/colon/comma/e/f/five/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/r/s/six/t/three/two/u/v/z) -/Descent -194 -/Flags 4 -/FontBBox [ -53 -251 1139 750 ] -/FontFile 103 0 R -/FontName /OLUUSQ+CMBX12 -/ItalicAngle 0 -/StemV 109 -/XHeight 444 ->> -endobj -105 0 obj -<< -/Length 8318 -/Length1 1451 -/Length2 6867 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMBX9 003.002 -%%Title: CMBX9 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMBX9. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMBX9 known{/CMBX9 findfont dup/UniqueID known{dup -/UniqueID get 5000767 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /HJGMPZ+CMBX9 def -/FontBBox {-58 -250 1195 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBX9.) readonly def -/FullName (CMBX9) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Bold) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 80 /P put -dup 101 /e put -dup 107 /k put -dup 111 /o put -dup 116 /t put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{Jf^ַ>aq4!<_CцcQ%BlS71_ -sQz5>?Q;8F}Q|-K,}>PD -65~`dU6+[\5тqFB>ֳ1^;!'VQ!<$6jT&UVDq~`XhZwU W67$hV%tj6~h<56{O.o"Fחlai!N;/ie L5sh!YB yֻM~|M{\B3ևxYXިmHo%l)CKFuԴlY~<,&Z#^gx'6wB8IWذ~D.TP>KoNzS6=('a`T seSdDVzL^|kb=yjaI>Ř(ץ4^? 'Kn`4Q9 . `3oh~Fq;zJ50EPX*ƚQ 㗘k4]aҡpM9\l[Z)uƔT\0kebIA;/{c Jn^GkgQ0Y'ISD;A39 h?ݦbJU5zw jpJBUY{e#Fws@rISp^YoZ|5h2*لEA4W?|PCx' А4 -v0U'J#oqӉY%egg|* )SZo8r;8Wlv"r`UkL==~V -X` -UvSw;8wwH_,^~q\3[l&8E};`Zګ)HZ/I ;3w -h$j/z/^,_C~A7kpRhbK0sQrI;YD4u-:p׼V1y&EF#RdȷnfNEzfL)3xg23) -pEY%NXA@WQQ X$r d7UmwK6+2a,n9VbA:)48z>Im8XCهLFʺߦkg'f 2 z?qe3?-&1VKl/>4(5p,Jr6`pԚd׌^d';@8]mB̾"D%i-{tx*yt:`Z]K=.;TƪXmj nѹ5&.F~P]^7FoQv3:2rHS7!S5ŷISvG0;=f/bkl9d n&CO l"*e@n!6}Zjou#|)f*,E^a(, L Ah_ȪRlgYhaƐi% )m`RDӇO4;X @4chC.4Fc|E-5 OA)R3N{o`aYUrBs-15s܏i%ZY+W;/J"u;DgI x9"rwh -Rʊ~KhR^44s7M֒kL%vOqT+ovlo\+pm\gw٧Ӡ9_8i-d) ĩ#CM# h8pU"w.WV:ʠǜOc #%^oFxEkl ȃ<6wyh[$fuq%_Cn \Ȫp#vMժd2 g jRZ,xrF8P<(F`~W/dCnǗtPf"'nLCeJ59&yۄe^OI0\^PKGd@2ʨ󌱇lW/rZ\~ldB (#o}HZswHo܆0%oE=pdK)d/gYR[+7! nIw8 MF'/`6-d9Wt{`>P)$w>]{ _JJ[|aJЪCWk΢gLs 1/U wwKOwZoYz8gʟ821ZYYK%UW`ߤlP`B?1e1 t߭c`jD]< j#Sk@_6&"|  135~j5jag+PCTo+LxI@UoW.0#6!$_ȧ`r{s{] - ݤ"Amөe~]i栛ox;Ģ)Ąv{ԒNˡʀ8z -D4>uqlGmt -ZбK`4ҳWL d)yZd\m:췋s0j -dɎat@әV$Kas)~$8+\[)K9+%?< $_nRnWQ-U*up4Š[i}H=`SUPa{0'QW^t>.9Nzlc [=ˆ]8D8"QL wek\/+w^8 ZLn}69α$uT[e/DjFhGČ3eWfTf!>3rn_&kJӍne mW%q*5sIsoVgoꡯ+EƿR7ll,#4~^$)Cȗ`P{R!0K?.&V퍗#fRG/0Q Spe,W4`W16 +Bo5@.{27qGiʣTjzpGrb`Bn] 5EP£*Ӝ-f?75ko2|pwleP iאI͒wsz;SfT`De/:M#,N C@Xrٓn_ʴM[H-f4#u/VNy\#x[6§4̷,.aI-D=(Ao.Q$-q 4rh!-i vfrؠ%/^ -)p*d'D_mӝ>lC~t/a$Go@ܞ+A9IcU!}pIG"RU)صJ@uІ`YϪCuJUm8*8>B -tk1@͠YlW3[>[6&pCKƣ܉f&N0]X?TpP Y,y簢)4Ubj"fhEWdjt_8 |\YNeԭ5쀬ы; 44Ye*C#JahT+vX{\6))rfESд5hsdU[YJ*L |og9w>!>C4?m/.q߉K|8R1!>ȱ:& Kkq h!ʅƝC4k<ídqaeX&Z;SRMsh><^.9٠3n5% +YLjQA4OV?r%Lxє*g0fLjl}Xl:D0_.4w-bm!xMᑘ]&(3CXjȃ;&t]ÈjqZDU7er!]i4yp;3UX@ae$ qvPԨ+ z,wK}YqYJ)vz!z{4_DI䃛0"Ɇuwۡ`c&96ûm cٮIkb~LP)ޚ^.k5jdK⒣x}=%c^*f(rH?g@&_M\lכ(Wr;En8zu*sWKkjVxYX9Y^ K"?gjDg% 2v0Zm/,P10kIm?~g⎌ȥӨ3 7pmĈVR\}>r> -endobj -107 0 obj -<< -/Length 9263 -/Length1 1495 -/Length2 7768 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMBXTI10 003.002 -%%Title: CMBXTI10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMBXTI10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMBXTI10 known{/CMBXTI10 findfont dup/UniqueID known{dup -/UniqueID get 5000771 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /FWTCDB+CMBXTI10 def -/FontBBox {-29 -250 1274 754 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMBXTI10.) readonly def -/FullName (CMBXTI10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Bold) readonly def -/ItalicAngle -14.04 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 77 /M put -dup 97 /a put -dup 101 /e put -dup 105 /i put -dup 107 /k put -dup 109 /m put -dup 116 /t put -dup 50 /two put -readonly def -currentdict end -currentfile eexec -oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsPKyؙJG}_t9Ob1N;rIoF R q] s%ЄO"HVt7b6U)26=q-SʱEzͪk|+$hXz˖3{{c$rПpP.%]++@^+;@gK -wUNKF֡MӋJ . yZ-c*w`~r-w@BS|  - J`Ukj -֌O i3$Z"|u9a6s-SS:s$ db]\±6CF s[~6C̸{2 0~0 h:}e Օ]T|:rCF Wݞǰ\0J,,рhzdE5Úu@ ;Z/}o--mASDw)#zBy7*0/YJ Yd;Kݚe; кn%VeK_ݖ wA/J -> wg.+T]׺g&6r 6]{JŇ[l޴$Jv-ppd33r'(:9F Z7_cVn;lWɶu$ݗO0'Fi%o(7ǔKdZi]ɘZ`C>>$VؼF,E%o`fp'֬{⩅v$@A@]eԈ"BTQ*OQ)2:r@70' -^e &,JaR)x=*} zp$x^U*froIb?WQH7$B("O%;G\/4$(ru{jE%Y͞t'T>t*NZ-FQlr1jJA?9n3=Z(?t#/[^Yu*éQ'$J#9-lc85 o@ E(2+?8n){.OqBPb4(2gF^%"\FaFG ,(?R"w/Jo"%(mEC5zrk[ku}qUCol&7<|!E"UqZ KN:MjUkJ` lB6pV$Ѧ)K'ޫ/:N1P .f>Ԋw'#>}=+fHSg0wF@zNl`^ L[ժ85OO3;Htble4XF"㐬tt -5txڬStlG\8<%*9ٱ\'0/&%]9ɜ/"bzW7ś4.vLL3Cؒ$tؔ3H'-Mһ6Ϥ9w,yi' ͏)l{QCp$[Thݵz&)Rۿ(ڒVv\2f].g<.6ᖺ)NB̨RU"b,ސUwÿ!`dUӿnjPmÀE6XP!=` :Z BSY1CIᓽ)gF sIr>%8JưuD[7z!qZzަEzŊRlG_M^,򤪄RԔf=-:rỴx_ot-K,; xBh$(m!I)K "ÜfOq+ QA~BB3[iiFyښ^cE~eRpzZ]&7wdAд6h<sͷw-ad<l.<fL).'tT*w.n^YOzr0;oW*]Kf}QGB72vdMsGi!'J|+}[VYO;?2Mf}]0v(N:ZrZɇB|vl4x4|hirht8EV'pSjBzkf6d>P|1AA#ĤC{h.ӂ(PH@&hH/a :ko#;v9L3-]*xFA@4JUKAϼr/.gsIi:PК!d4*ЃL6|;S3uȣ[qk' Ƣ)l4+ $xP 7}w‚l6Gڒ)U-1ځ?'A6ޗoQK(ļ1E6˝A\wҟ@8W^*ڗLQM(:Fc W-l~bJ B1 ㆜~vrݳGvHb@,N.jT$D5葓J ~z#U^߸p =q5K[j5@Tnխ ._}m{gL$LjEU԰TN&H啷snr`7^1dW! bz݂z8{ׇj}\zU*GDEYs+)̪haQKE8iC4Sp{PK>T&cB -CTه C̚}`y8E4yK.G]=@/%sjYO>lrK\Wɗq;z3ݢ(ouݭ@E'evKw -$p@@x -,6rP(S4#0-8c<}C2A:ӺC]3ꪬpq|%QgdҤ n})N=WR)FxX`(F+[N´N:yRC_ن а@Gߠ/Eu ɚa4*B kڐhDC,3O$]f>5eJ٥4YqLlp8'N:ݶΒtAßYs5XCU Vr>s+-AՕƱ%%Eo'a Qưn22Hȵ\!_7% (^|VI٫~{gN vRSlC)'r1YjvtDwa|g6ɈM'8j(9]1V[FP}^@YYL JAD7m7jsjQnjA@2}מg#+=\y[ ͍ @*d_Wl6b@ٗ(/{MP1vXHZ)mZcz(#gDk\8:Dl{v7 $Zq˶?B#{z{TTC5&0;uo!Y:"@ϦCK9c~.Ղa()IBx ՚<|cqn7A](6ѻgwmNP/@~3;('{83W*CѴKE[wu؄qND0c#^Ͳ2qewNKZTs?x)xaV/T[xH~ovXu]z~'ՙi})%Bnh[6h{:Xߙ6s bJ/;-!=\dGOztMm\eu-r4j~5yy>cߛ-Je%#--tD`%:ɎLF㎹TAV+7сYlvr}ɮy53N„Ɍ.=}4Sm 7櫚+ݴLNQ# -l " -F tU1ȇߙ^n 3p|EDSng[2Ѣ,wÿɫ .氢Q< Qxrxe#UNP -d.c,n Ӟxcpg0%F+rIU)]d^[V-Q-c!ȨNq.{/(HH#W_W?֞t֤ȤYvgZ%ŰήGTO!moB -xh"fY BJO0yFSc1}A33\ -EW7m~'W | > R{Jg;ocŀ^/`wab,D2}I7BP)^OGT#sp ai\u!.5Y_yd'.eb1ޫ|]vPZ)Y=jXF^I;0ސ=qY[J;NYl F3<$X*d&z6136&&5;U7DECiց 8;a f[Ēss{N/b[Iv}IA FRR|돠_+J0,j=F!G,ּ~1|'AWv䭖ǩIVe殹- p8{cnNK7shy8ش`K^@L1ܢ!$$J yrOn6cSIJ:"8i@b`l`v*vO`r Cc-w, }VZk@$,ǶdT-Sv߳)j'trJH@^20~'ډ|sF YTh /u,t> -endobj -109 0 obj -<< -/Length 11493 -/Length1 1641 -/Length2 9852 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMMI10 003.002 -%%Title: CMMI10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMMI10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMMI10 known{/CMMI10 findfont dup/UniqueID known{dup -/UniqueID get 5087385 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /ZOBLSI+CMMI10 def -/FontBBox {-32 -250 1048 750 }readonly def -/PaintType 0 def -/FontInfo 10 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMMI10.) readonly def -/FullName (CMMI10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle -14.04 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -/ascent 750 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 65 /A put -dup 66 /B put -dup 67 /C put -dup 68 /D put -dup 69 /E put -dup 73 /I put -dup 74 /J put -dup 75 /K put -dup 76 /L put -dup 77 /M put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 109 /m put -dup 110 /n put -dup 117 /u put -dup 118 /v put -dup 126 /vector put -readonly def -currentdict end -currentfile eexec -oc;jAw-<X2-Τ^tE_SKF1F^jNBq{y4-Fgbԓ{"WB:rP ?dgS%|'ؓw&F7JNL9VRtbT5'm\N"K< -wJv$tE;D4Vܢv{bG@dū)Nh]!(7h`f1zpBrd۞>sVÙiHޭkJKyuKI[Ƅ(,M=}%vf'E+)}f$l(W2[8hT>9X33 viU/Y{z4B&qnz|1/ɴcCzwm|x]Lmo}zm5o: 꿊."ĈdNo3 -vz N -pzP;Vҿg6Ǣ >,>OJ4mA0R3ֹ*{+9iuMO@h}-( Qȃ钏A)ӱ =.93g=[_bo_BVƂW"䶝aoZFsO)%d2wNH>D}۝Y1jZg1bJa|`hb)wYc[&0jX7yg -hS&}p-f^ a_ -l4zVnR_e@*z|Wi.9)ǙBSs3Ϗk,^bz˹a ˅4_B1+W2poDx>fH[]TEjRȊ~/+  l8zXܒpH!V܁d!;d4T5:,v#cK*;+zXz k Qw>aqb61IK&?e=f?ToRw: -e -/ y}tX"7qtf}є)8SRXyԍ/Cmo0%}pd{h4>^wD@eQdaidY^@?p i3;BŹAe "Kc_ - ->To=*y#p$Ua5Q2Z3:wXEk!XLǑU MlTHnyeUsAܜo3|] ]zN&GU1@./9;IFz$U/Klf6xq y -w}HH/*%bkYyoxжjxS\y)n?VJ+ka[zffI*[f=M3)%qO(\-Z!J -H)rQQ5TbL}/>5k=QwO75#:,U_LP?NCSMi > 3*j#WÝD8$|!F̊L;_ -dQJI$Y(mRqJ[~f9,6_1~w S,?1? Ayl(LtU m@*T9EWOg-ږHpaH"\z/EjV{11̃TVL5yWK|z|ڶtjBdV=z3TJ~[3`vpnrU MVW.Y-t虘鰭2z񑄥 -Kxq3å_t|W%0=E@.2^r:(H>ePݳ;ס}mW-MAzs`sb}s@_s/FOE«lh\G`ba8$(^U3qC"vj?Aӷ5.s:];H2?lcP!e-t1//ǑbK @3\SN:8'gU?)Rb%o>6 ~) O -Xw5/"|k(e$/JG 0Mo#hpT%-R(>* Ҩ25h|I.5u`QPւ)`QQǶ(45^ބM߯o5G*`?RFM Àgpfn51dK[L -yq B$@'6!W -ΐEI6,IT$yهHpiVch]l&ߡF:O$#Ȋ!D:%)aMx"_L?d*:02]7x(4p P8*.v5sb<]LQ0*K+@>e.-oӏCƀl\~R+$voDgya7s)ck1+.Ƚ#@cL ij;NCB|(ɯIL40Ƽ&bDT3C<= Dg}@?GԿ#Ӵ?H]K mv%M^=QdP A%}u$Ȑv3L -" -'![暰-,*5&Vۮ1=B1vW|P:؎c)»c/Leh:g)Vl<.IJ -T|PqQvi>-<+cVDܽp`JȭVkuZܦר|RIu"_!a~L x0Cc-bpCAʤ0% [D =$XKu&W(b ncg^PdK>R]5d_a*@,TB]'/-G.Ǟx%~dž"52WWa>3/V #F,_z|i1=IUj^[b'HԺrRvѨYuI%@G1`: Zwb!|^WnW^krZxPI~XY̓qY >3u}_l1iG}Z1BR@W7z^CUpBZ\-ѯÆas&\XA\`{YܻQ v0q˽뷚w۩Ƀ6U̿%}JDA_r؅ ]w疠^K݅V:ӝϏ2ӏ|jilzaxOaK<}qo[5sI\ !R y I w˜Qz0l; ۠gYnkϜ}H4'#l&1ҩc!+P)T}!:#,5 0h>ώ? 1E]R%{7zvպ2' ' =.8ƬdDЖÊ9(qo%ͯAv0Og{jEAOG,C[4h֪ LЂ13JYfA2{TMH)w?}+'Mc5 `L8h`V5 \)A yBYC$S;яjtiV!Ψ"p<NoZ*2]LV -̚ !涃oplz`(SL0͏<(0.O4\SaSԗ;*X>mGŻX3XR^^#1ó&3W֘@,`|-g`^pQηQ^ O(s$q;,; i@g toVdF4 s3()&oa2IPZtoKmBމa?0küUڴB L|_&hU:Ҏ͊NQγVA8= #96u0@PN߅yƆeRvWKx }h%ҁ}ުP!z‘ӧ|}9<$5;Ѳ:;ylʗO]Qv-2yhfԨs\\hd#ըtyri"Zu:!xā/p~K.,<̷W|XUƆ/al='a*ZAU(bl~.P |V0E }Sd{"x峝pngթ(U0c1r{twqxK1%DE/z*oz e7^YDBD+AI\Cj߰B@әZ[&(vi,K| \cGVpz9pR%A`A ^9>~Z0x<N?3<ذ!Z` -v@zIER3 L'7-E?6tS>zuux1ɱ,3o"U<5ߠ-`sXZq=9*0 ,KOMRו.~338quV Igko.  *l7[fh -4\߆@bջuv3,qޥqX>(웻5(hU Č>-ygaV66 ->#(;#2+O h5eSa?>[լJ6h zi.C\\Ɯa\B Kh%xy%7A0UXcs}1>)mQnЌ s?Tѯdm/U.-ogOF乣HogO*k(i4K|~o!Vsl14k~.Rũل؍Zß[CNU$8HP}*(8ZV=v@}!M(- #a4sA(T ˦9(D>t-rbݢJ=% LԄ UI_P= a -endstream -endobj -110 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/A/B/C/D/E/I/J/K/L/M/a/b/c/m/n/u/v/vector) -/Descent -194 -/Flags 4 -/FontBBox [ -32 -250 1048 750 ] -/FontFile 109 0 R -/FontName /ZOBLSI+CMMI10 -/ItalicAngle -14 -/StemV 72 -/XHeight 431 ->> -endobj -111 0 obj -<< -/Length 19858 -/Length1 2204 -/Length2 17654 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR10 003.002 -%%Title: CMR10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR10 known{/CMR10 findfont dup/UniqueID known{dup -/UniqueID get 5000793 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /XGGYUK+CMR10 def -/FontBBox {-40 -250 1009 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR10.) readonly def -/FullName (CMR10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 68 /D put -dup 69 /E put -dup 70 /F put -dup 71 /G put -dup 73 /I put -dup 75 /K put -dup 76 /L put -dup 78 /N put -dup 80 /P put -dup 82 /R put -dup 84 /T put -dup 86 /V put -dup 88 /X put -dup 90 /Z put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 58 /colon put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 61 /equal put -dup 102 /f put -dup 12 /fi put -dup 53 /five put -dup 52 /four put -dup 103 /g put -dup 104 /h put -dup 45 /hyphen put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 49 /one put -dup 112 /p put -dup 46 /period put -dup 43 /plus put -dup 113 /q put -dup 114 /r put -dup 115 /s put -dup 59 /semicolon put -dup 55 /seven put -dup 54 /six put -dup 47 /slash put -dup 116 /t put -dup 51 /three put -dup 50 /two put -dup 117 /u put -dup 118 /v put -dup 122 /z put -dup 48 /zero put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{x< ,-.2iRnñvپ1䠕 '䓱_r"O_t3kefBݼVfj9ҳ Yh뀸{q-ɷ}W??gw1*Eh[:tWeI,v8a<{B100Z85|}Nlw]6Nbh3E`(Eޏ'Q;eԃ/.DyL5$4IG׮Ɋ\yj9.VU5Q!-赁B9dB^oVwBɎT7RsOGA b#TBv!mWT=w,ID%'MK<|]D@2O( ݎ%#_ɷVBST#z!${l\4ĸ ;5l&!〚=(fUwAeB#30>H 'L+֓jz@=s\<=\Y$D?U 6xGQnǫi%֔! -L2[)!fXc<'ȲRP3E!-:'AJ.IJCJJt&{76 -#VH/Fgw"F5wS$|oQ<Η `~<10|;,zɴ% -oߠx0sW1Fx gmxVyѝ"]#z~pv Ũ.rB9$nYCC1td@#8kNԋK;ԓlF( ،N;d*<Ʀs9ZQ@It%[)7&hn Y'a¶T'Xrߙ/n_nJL (@ -К -N{KF^kbn~`L]aU{vLܺ41$rmAsnZ*=sob@{y !CC{c.WZ0n bpgsPd$-\ԛ&L27JBs/g(xQ,t>[8͓GsŸ:R$9]6&my)ivjWLRB^RBalx_Y:5M/j١!}`D&WȪQX$HߧtI .Y@nr_n܁ OtAN-L n?_^_g~Ə;`KB6eĶ ->lQp)/;S' ^:tJj@xE(0G;κQqǔkT'; ÃDHjsrxܖ -.>֯kl;&#<ښe)fFz`Ƿ?Ic@SH&<evn8F\V3aA!yy:+c!xbM։/f}3ߖ˦"G'fMsXWU}Yĵ^ %j!HOH͎_;臲Jv]# -$'Ch?5u-G:zHZ\%Uv z^By%NT⸶3=X?mJ-3iH@ܐfσkR.v'm.'SDly7 YCm^Gu5_G1t/ -41n_D>}p+fg9h$]@M`^ҹGK;5wIrqA3fAYiuYrD:dR At -,)aɺh9[ԧuS9KTKaX$wgɓO[xqǃyI(j5LIc}|h$zDUwY+Z:ϤŜ1le`u@|܈贚^6/y`a [Ί`ҾEwa ziLa}jʰ@}xWns0n*{l?Zz>8p-L&ȣK`> `%`ݿs?v˻^\*QNbf+ۼބo" ٧U zgga䎐uFљ<Xyݸ*g4?X2]4H͢^qLeoU~ 7>)ƤHnA7"{DRj)ע~eVDJ|X}ѧCrTA fP};"ӼK#ΑTF\^ԓ ; |R D\Ă Hu6QИ'Q3b;x#3S:jb%tJ/>ʡOrVށx]>)]l5o[F;,N&'i\NQIH?T:@FN SX0<)hW4fFDh.سT)^S-nw}, ZNEC Y Rez3\ -tY5`F~_xU|'XLJG@U6I \>:V_>զ9*I0}ӵ\"{3UzuFf٤Pߨ)E8Uw)gq:dj#hq so -@ -KG7"|QЇ Zzs|}LմS:fmA3S 2=[dؓJ\ܳc|tj1ƛArѮJv,K| ϕVސ -Q[s"=ôG#[71]'GA-u&_]nOSI*!GL{0^()Ɛظ]:1Y] c5@>rPq#fܳF6hZȀ,֯nрKD„-׸ݩTB<^x (va;{bQt[ eIBţnloi1>MoWM_v"h-ǰ-uh|]R[d"cWGcr"2P&yĔ$֬^S fx'$TQGUm/*BK-2"jܸf'Om:M|b]$~+ȏ>Ɏbtv2څ l-P4"Q5n$micnO԰P05aZrFhd]=Xcٓk dOBM@P.KX+QmtgD#/uyھRܸ(u׼΢MG oTgs]؆ٷ;*G R1)ٝ4 >odݿR{uxz4DXF9Tx:Rjpq"F\eL6j`H$rʹoW&N -cEawmGeZeX+TB_ǃ?oAZ;u.[T{lN]"?[t -VH_@{lj;KߑHŁ?hKY2MFUw^z6nf5^9뛅SS iw׳ʰg6Q.8zZZ72o Q.c]ƃ I1PiYg*z_H LWG -q3Rmv*GHp] ~\4#{+姕8X> B|L2}-sc~k;9W;[VZ)&a4c7}.8z+G ;$+Ω_]5{hL=ow VH Ay,`2uÆd-㥵4WΌ%n EguM7ԥ[jI}|di8&:ARA_;.lX*:׃nyj"⚛ܳMdCF|a͉G%izY mޅOi T%D@$KQIGeOVNF2VdA!d=ۭBR ]$~ 'ԑ+ez]|lAnm% |J;qIoh9I@N}N_M,bx#[n,7lIB֠3SĀiI<*1̗fE1=MJO@; z҃; X}ǁSţ!Mv7KT~ڎK?cj-x;GQOU4@tt U^3!>d5IwaүYPU$ q .uHR5g}_?|qLu@3.']:zx0r54r?Y0zmKyHiy#J7Qs1i?B+.{Kz+ebkjOdU9bb}0 < -{TB|n~Z&.Hu-LZ22; *8P6w,;3V=NQ϶-u9 ?;Kx W{ZalSxYC!OԈ@ -Ď5^{zۆ^iIɜ_CsO?cA'9)< \b[h%ٮp iBNҿ̓t&$0x} ,G&q}K3,}#0_GHsr_5ż@$B;&cdNݴ=>C}/YQF<A2[-!)ҏtLN) -X6\R|L|1v=fL? jX -![ЇU&iuТDj}'6 B7~@@Lt2_.Y~ada/ѷ\at8'!$@--ja@!:.gnf -d=N1fTVBSk`d{ܾOoS)qV%cNŠȔ;?9JnT噟B]lD0;\ZMؓ8V`kN0pQ+<8a_j'`(6rX7n0&|@|kS܊NP(ܣai>^4v sxm;[8@QAoN}H61(ZC,[R?_ c4dZXtR0E2H)R3ZͱI4ur`W+[s.[Ikdӆ&bœj$[ _AFΒU'ainfC6jWf{ DRVl/|D7/R\Iv{C t( M*)#MW!5=ArDv-bcPP'~ܿlIGF{+, :5}N%cqG܆*WPж}-_> AhHՈF7ulon>"3Q$ ,igi],)\т -<&6?>yKdLW114X rCDtCN{\;8^{ޜ\'I2Z4rʻ1"J;_]M~ QVʩrC5=.vUBN]i5Bw+@mE};Rd*Pc#1)U8J/A@7?4%;ȽoIx;| <%ڐa'f~P ɷd$Glm5Wå%4ɾ!&Σ vư@6ۈX=<0_PnCkX2YajŭE `>nқ0lcHҡVQ\Ή. -K e5_7 Za$W$W]*jd`ktv*^}ZWKʫ/~/@ˠ Aa%pAGw=-<NU?FO;jA`*C |,+7Hn.jER2 V|;>cee^˼Pf,9#nZ~xE'$|ϚnGyQI-!&iƓq0eA&G-M 2}vC-}+<;ڳ_Î?ay,-Zt%"MKI\ڐ'2?"S$"eᾞ]@$ΐU8̀Uxֺ =|Pyp;_5nSg\jr7O7J(G+;86_"-1մNcѸd6,lұM͆>;Bo7s7L;;21I&FX`gerhCqBy24яS_%,#;';d -WEm},)še/;)ѻ6wkd֙ #>g') Zypz$'Wl${{ׂ](HXj4I.E2],znw7}pIј^3|) q %GSW?3]* +>J*(sPeXc&v1'U2i'ңACvxuEtX8KّKYC8˸jRj&<׸l8oAjIPpN`@.!,^W2ΕO{{STa@\3]Y@e2l'UAS׀qjNkp(acN#dW`>yK3E9{dĽEA=ybw#-?\)sbHZ&^Z&|Ď=FiRaoRDDPa{71_~=ФShoSs;WUm:S5 -j_}p%ߵ2`K.}y) i*;bsхX<{b1: /@XѨ}&p5UI*$o&`l: -+'`uwqg(6'sL,(ژ{P nkv#ir"! z袑MCԥvM%.@;9f s^*XbXPʓpG{HGGJ1/בvҸ$rXSimV7\T~iYWxD2؅P1^)T ru]$K45LrlSβM+YY#j5(0uR7SP(pr6"2/+ވy"tH -URJP8yCu \؀ Gσ>WvB7 Glm'Mgv:k=ib]tǜ9m.F(([|=mXYNwV]ߛm S5̬9rYYWy햧vegl^f7kKQBo_h{}]6N.$"/󉗪l;۳Bli'=z&nM98"7`!gS`#sYP/d9: -1>;}'٠vPW9<qX㬽aTF_Ҟdzeo5l!&4PDE#ۺ8LS> JIHv<.&6 C\뽥Q=R\љYj惼XVL9T ^jtF_$4^N˃cX6DskH 1-'-ԋ0jv iJN.1bGiIT3Zp@1$UvC&Z̕tݲfblU,y֦$7Gff߲X.: 1.3  L.7Rm@ZZ}AwYђ/ĘyV2!ʄ2:5/;u?eeP:n$x}l-ҫK0Tco#|g-u9bC{yx'nj)/ΦSCXtO3c|OMݍ~Ѿp,GhP'b?Ig by;cRy~ #9c~¦*A]ynkfI -rue&@7&=J6m1&$M2vA鉙 zWwlkXg:+Uz&yIQx4NK}* ;6v'sZ hzLE;H -S^7mQAat|lnT ̑'hCoɆ;pOMUBX:XNFˢ PM)2L/ FGt`k}pn L㕣Oq ?mV] -BGBUYX3Je2ɊBC2yASLEpIAܠlJ2r+`߲A[2`Řsj|z)H~Ee8CX}xuV^^coeL/*6T!5Gj_Hk^2 EdŽ(SȺ&)ȾNH?ݮq -ٖhPc, l(Jqh+zJ8|U]&dQT}+\ -6diX ,UhbC? Xdc~z0svq4;¨JKy86u]7@JvnA11JI\W.˼L mųΞڻ$Z58̖ -@.5J+N]VnԆ97 ӷYv*} ~!bWۿo!ލi JAD9/o -t@YB_F)~"C6+SS}[ܟB g,$}}A!G@7v+/H"?m{yiƦJE(ǁG|Kv:@FLsfXލ[4b9 .or-o\u#_FWQ$=HS&[r*"^DY}D{k%9GO|]?،i(J!bg F,H?EF -- r4E "rc`߳D$2Dd4Z =]F⛺EK_lrm`)_MkFw%ΰsl=ƺ +Cph -.T~JPV*[3ql t!9: Ud --2|CR-RܧwsbY4m!0 L.Sx.G#gS5*y^u@J}Ad:Y撅OUD_Ұ֣GSzZ*CL8;=;X#yk5fWD -_5vj:4Ê~Ć[V$otyI jf÷M+*6)oKt> ]rdtQ>6­VJPkL'uZ@}d+O*D5Z`7e>s0qWzE8{<1HUFDx;Y̖K+z`3 <^l Ŝ2_BwO6RwpD>vyo427ik+D.}YH~!\,l{n$T  *Z*B(0_DMcdƇ]=C|)#*ђ_a#iYe![QɕѭmpZ63jWxfZ`k0H Wԯpѫg*V0̔ mX`$WZm*Bz\⑜aɕ-Aqbq5máܣrpG{qM3 .#%D_܀vGkR0vY- .FeWm̢{Z^*AsTfX3!hؼ 0R"i=릕U1!wkg{GCc*8x2?rbjnހPC0"rGʐZn󻟾"ӝq< j7Nei"N~$`=A!fgy50ٶ,$37Q -~'}bM>xUu -So(eԃ&kӕzi=x+0M8.9@-&q -ObxYFg”"ˣC_yFbix$h:6fY5@QI<[:0{>(rK9|2CCg4 Cl)ںKgU?AeT//DT~8Yc%祔Mޜr_i%DpN,K `,-{7ܥ& ٢[6@ͬ/BMn^xצu!w'#iT6G̖Pv? -.;ȭ5߇g[+ g2Q퇒*f\YcM7 ו8" cATpɶbh\9KiۊJ?jg _*{u4R>{BW-|#m`XO.h.Lw5|ʷ^0o_hmn,eFqQOy.^$sBkR|ħ[]`7 -f.[vɻjocsQn6<ҳax/(MZl垜ThF_6LZ5kga^yC`4JϹuBO{Շvi`.j\7kمF |^jӁDLEO] 7zFD'?443HwаsYP1GӘEoWSP8P c-bSFk,^ËܩI@X틛3 ƞ -yҢbs=C5jϮO|%[PND3,vǼ#2G<8 J0rQǥQc"f׎jo7L4@Ύ^欯yZ ->R(3nx7zB.EG)0,5{[mtbE??)v[;b<\ܼA,e<[nc출B<0Op^z.}jpigP=7& [##ݙA^kmU_0> -endobj -113 0 obj -<< -/Length 13103 -/Length1 1830 -/Length2 11273 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR12 003.002 -%%Title: CMR12 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR12. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR12 known{/CMR12 findfont dup/UniqueID known{dup -/UniqueID get 5000794 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /RLYLLI+CMR12 def -/FontBBox {-34 -251 988 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR12.) readonly def -/FullName (CMR12) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 65 /A put -dup 66 /B put -dup 68 /D put -dup 71 /G put -dup 76 /L put -dup 77 /M put -dup 83 /S put -dup 86 /V put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 46 /period put -dup 114 /r put -dup 116 /t put -dup 50 /two put -dup 117 /u put -dup 122 /z put -dup 48 /zero put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl75R 9z(X*Rhn5&g\c9`EgwT!xIJz҈v*lcoƿsdm^%=谺D +u9#3P _] )w -UA8 HuG:DJ(W;]-0<.gSB NlZOLӡ5^9:K*|F -{É ڇE,q>j0^x떲Q'X酉i ;yZPt>p1SV}:ުad0h{JA)Θ[ U=y5pRU&0'-8tIAx*̣$!gRHS;RVU?!lM٬2gO.T7wϓ)?CߠVb7^kJ;c -N* ٍG|Ucͮߢɨl6h6[ 2ߵПZvUlP|%)VǸm׫=&a -Js_̲y|{R6ĴʗB7jIȘ2a% @74 @4(.= `h'p+xvX}?G3D:^ӟ*&4prx5e^hk@S_̎Cl^^}ڶ-q9@e @|wMrc9P(TkruY@MnuW`%?Q8wG3g; dlo 2 Uu6C֋%YT'Rjo1Mn}L+:O/`@ӟӎ4J -B $YaհH Ag0IQ<;v|<6G@tqX>ɏpI%(Xv7}19lAKڮ6]+l_6'3`k*T (]65R-[(EAJ!3s:e*Aܣ ZEsNьmcЪ..> ˆ>Q&x̹znkCfqW-ٕ6qo*p+.gjlZrht?3:2ty&F!w^9vӐy*'ImtӮ:dN#LaRx!d!R *9SDdkb$Vdž^t4}h5eHNrHI,O6'l -NO#xa OTV-(!JZyX !]z@. 5-DL5_rHqg/r秂gͯP%x d꿖xAcŘʺϡYd(*:od`AMPb-nt]#lg&eb5d*OE 5 UThlv9_)$pC+(M ռPVOptcC`ՠ0IJ85YA('针1J ) =n?Epaq\')_4}KY+d>^cV60EZt,)ie Oӟ5ni8B5*Ƅxn@EDP>e$I^na Y>k#w?p͓t!_1 dr{d ,@]+ضCzn{0RUK,&Ձ\ƭТ1LB#Jp0 XJK7ZLD"afI1?jt'8:/(IGʵ6 <+r xj=9zI!ƶreGNXNpA4Us]b;g-L:/ڮpaؖ:1xǔ`V&EE?c CۗǙ77-`$Mv|&sČ 6X!g#ndχ[w䄁n(dَoo_o2<ݻ  xMI^ -[$dDTZ jķi|O.E9wbSsBz֚ȴ!2g6bcrۑW1A"nX14nKOC-NA=9g5=W^x(xڞEt8}NIDʄ!"]}FET2mRi< r3a0!fS&W{V_ ħ/Wc - 15y8/ V㯧٧򁂝*^F}#? P掸-~m~j𔜒FvV K.\'YƎZ|9&fr7ᶀQ~n- L5Q/[[ORue>G zjP˯,jW灔Rڮu7q jml -3!9ri `u8!5$cUUO;~}ۨd>̖ glUov+"Q%z=$Uu<J6RGʴ̇vm%û]=PC}_2k& ;eG7גI0Qf/ e!S|2F;֐n3:Gj)~kM'AR>CM^}]dLBu(w& GJ*ԾS0|CxoiNK@N@f2ްir7%x478˷턀Ȣ5k~:Dwp";jA `SR\Y.wNCky~uH#(8N7 v/I g;0Mf{ؒF3 SwHnp}D0yafA3?E.RB偗cU|O+U$r=هn5`̕,/^r;5?9>QNGZigp={_ș0H>(˴uWӥz|T̴VIMf*ߣ6c^֟}@_ϷW&)#׀+$ɐ2i_Bzv`]C]c+老ь*M0\omV -,T[a'rھٷ=+.t_,'P)Чr*4Wp$ U{-тB qڠ -a`O|qd3ú$/|MR-` ;6M|şg~Y u[l(oԁglEwք+pdڳXlDXuG b2Me *eiRXx8AEnS\RyEƒjT91Pr]T|u0zWMS=nkčeԍ,AFk/b\vI QDksh>`aP(~j%P> -GWlL?ݑ&hu&A$%9c\P "G(" z+"ڸVH1GڟHxYTҫs-pSCq: -99xec]R{zC?yOS.+T#``" kk2A>&^Rz=f)gjAݓ'xbBPd<^Ҏ,!ávm J!*5ҋ.5(K>++4y@B[Y -`͑!-|RVMr6 d$jwe(%.`. t -`n1h nzeR#nmOنwwOu*NkxcV9Hq82ɤ3՛.S+@&\]bWߡ!Nޥpa0fln -ED pCr:Q=̝W8{mCUط;Qtߪjƚ|YQ4C<ZeoDs8HMH3jﻭ|p8=q?Ҽ=EEe>6K}f2wa]a>>jFɷ -s V5ˤ;*nb$Svh-8yː=isr(/ e8'VZL078L )EMрKD„&#SX ,}6kbbx.[醄Ӗ0I8a {g HV$告$jJer= cOa[Sk)rάC -T~d^ъEg4pkRm$1"o]~(}POi˶8=Xbڇ*g&J3[O%w ДyRG9c&ڈB8z_:.;с9 vJ\sl}OQ9@6e#e!K[5j2.t9hF"؀Q`orE2@iWl4QBZB9caS2nO@[T 17;̺_U-c HmlyM?hI[@򋛃v4{'lpk72Q9EA/H)Ja7}¸z]Uf{$:'R 8¢VkAڃ]m,P|.Sɬ},1LPa`3&:3 3FD5۟mўy 4otXGWثc M}\8=q-A5xo-Fmԍ}jw\}9 S T6@Ĩ^yBӾgV.B%"FHuXL3@KuYb[< /o&\/eZj OocI5@G/ܵ40;}+>,cA -?~S0f2BxEmD (A0ڱ)rdZڗ-`Nt=ue8\wg{S :4B-q(iuB{vJ3" MY:8.YrOL5˒ ƃ O42#ĜvEQ2'K碤_# do^;<Zr+.a-ȯ)OH@ ʴZ#g4p%@)N#=hq|y^ 4٧}ظo O.cGA';" p^7ù*2F) ϨeBwrIFB,EtDqi/U - nF| -&}%- 5/s?QIHL}̢JZ~s#YS.#'c*ٰHW4֏VPVi'amo Ey6c& f?r=Am1v8jP+l"n"Z'8J9?IC1j,H o-wQ!& Ik-oɳP؜8Ěmcqt8?t҉]oRg\gYtU5u%H6t1_gdwL B#!-J@n~sOΰ?tr1\0,sO]7uj+۔lA|J6yaz/2$E-v+Ϯp螔d{ؠmpۓӒDÝmP(iФqejlQ6#\}h9~i`\Q4jg0j3R͈RBn[e6cZJBMh;F:8<\aI}R.dik@YJ3o[/jdDӁ;äC!-T>Jq&IwTXs;sPx})'/89Ub sxqǶn7g-L[Gq$RRDzNcelTq3xVsOD)Xͽ-q| -HS;e Nn:as_zU[mK KeʽS/΄?H^ w$Z@<9[f]`G{"MD-#:*6b4E! @wd3M5y{5CYڭ#i3#@nl|ަ ek܂=&a`$>dhPvHjƜO{+J -vXً6!Zn%Fas|MИaaWBD$QDH) nIP7ȱJ !ĵzudRڟT uΌk -^ւ[TBAidP8v~G<|KS^OW9j]0FVЌd]7( Uܻ 2!0a4w^(PbbPCg.!h_LH֣5w)I7˗ZnI}.ga1%P_ewGoڋd D4遽@qڳp$B?p=ő d?Ej󌷩//mXcɾ+Yʘ!*>)3{n^!Q0e!xఐR$!#RCac~Y2]U%`[pA7<~a./JQ\rmE[,XE,){,uEn PhD[~Mw6^h t6ʇ3jј"Gt$s;;Cr0[U]n[RZ\w'#p7ӑ!/m'e,/r4P/wX k8zcZ~GI3%^ =8l6f5BWhe$nZ63X߿XI\І+[ ,uHbT6D-@B"6Gb*>K\h;eF˺hoOM1)?XM@C^Ov.xaso` -cL/Mduq.$@7g9"әgB]iا?R4AHm()qPX,`SuǕy{#ցRNu₲7I_Cve'iw -+J-W6ިy[oܳNQd xvnT>pp"ɄȶYe&.MU 1O/j.+Y4uJoc2IQ!R5JX1x䧞v -4gPH:@rOn ̭ObH4jNy?VX$5ľ^m %Om(fDj`;P؀q 6267@aٱ>QӔ|WMF&/m~& 7rn|w:tQ4D~qr%+ɇzdPe'A=_OXذG5YȤY٭w a+Q ,p< 0Վ(Je]Vg?J`*Y\ݍ LGF?1`M2() KgK-H&]-SL5kǕ؏l%cY=3^Ӫ2h{6/y[,rKaDCD:b3rEڦwZqf:CLz%Umqڎů-bgtf:\EGN,H*2e"ióNH 2 fŌIr"n/ ?LT^HS&\Tԅa%NyJ;jox* uЈ{תMfxg^T=F77Mxҩ!Sw25(%ʡ״$FTUa|SO(5~j#>-^@'Ao18In/VP,Ȭ>u LGGړI@'8KBm55h㽕A#DCaw޾Ģ)c{/om6:@ 큲f.@A1Q*IpҒqd< 4\;T@ SmV&Jn*"*e!<0i4ڽRs<6UtZU؛%G./+qo>Z'R ~67vh:@n$v6ήNaBJmMQ/2.+Ygl9eY p4qw0]x1DgG>X#QtY22R9@3 p<#cg|:JJ:$ ,)do|b'^:s.^ګm\Ǩg[yWa<--d<*@˫!> -endobj -115 0 obj -<< -/Length 11217 -/Length1 1721 -/Length2 9496 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR17 003.002 -%%Title: CMR17 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR17. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR17 known{/CMR17 findfont dup/UniqueID known{dup -/UniqueID get 5000795 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /DMPNDY+CMR17 def -/FontBBox {-33 -250 945 749 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR17.) readonly def -/FullName (CMR17) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 76 /L put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 124 /emdash put -dup 103 /g put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 49 /one put -dup 46 /period put -dup 114 /r put -dup 116 /t put -dup 50 /two put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{.2J] -J!(^{jKD&xe}zFCWYGx=mQo.cZ|uJѧib 0޹r -(:VZ},uxSؤgEʼnr8BYYP?GڢP7ݛ>`_;mR&W4*xhҼ4Iwp ʒ 9~@c]]Jˎ= 4 -wiH 2NaEdfsD-{y^QmwGE : -|:^Fz_Iwf@%)fn]}dяBڳin3Hj;tuANS}^{8a%Ϭ_K_3AaD;]^Ĉ>kU|=o_uzz!ؽ:`2;PD3@|tHt]kU@7f3p\MDE[k-ZmCH1@FO> T']0ڵ9R _GAɻwWYTƃt!|h+*,9Xhy5c3%h7j,OxӇܘTuھKQQ}'XIUp~ ֕ҺopMvnWdq-ԌuyǛ˓ʀ,IFk; R5H\|o"ǀ*ƃW0KDT ڄGTՃk7-OfB)UCfE8. IW0{GԦ BͅBRp#hK_߇M|UDޙՋ**Pxmr8/XT7RB/u wX2~WV ^hDieT;[1AIKQ1ނbViR~9#'\ pꬑJ55gz7gGHC(ڴ.-H<8DJZbسGxO&Y=A yeV^Fm܉=k.D(04@X=3c8˴k"gF֠cwz-\'*VR3Z'uQKMd -b̙9usTYhIm]d< 4=uX=Ro`ޝV`$/>zb7ٞ'jI,$io4¾.2)@W'NU%;ʊڒ+0=E)*)P[g=l*SwYlQWy*e) 2i1L~`LJ\o~CjKh~ҐmpFP`NƐٰA+1A ~Av/M ]^/i"Wj -oU<c줵X1/ݡ/FiȶMw5_Yтqco޿jbRѻ`"}]xS'2y&n2tjQS%JCI}LS[hK蓨4(Lꭋ."70ljVψҲeI,xN7VxݸցrNjokA ?Rot8 i!jp+䷿.<Q -0R=I5[Um2v/[XIvQ-^.)=\gPy) * ?[g%Гۋ" ~ lۭzL:scE=y -|ZO+*Ce_#>u}99h9Q`^Y7)pT`|3Uv6@SS*BelЂs8l }qF @9өvUP; y.fV1 -%Wp{0p -d$@":*O0JeڨNQkXlYy?پMv-^Ie-??V lG["C;$t(Qҥ -5TfcD9IBӢ[/CjO?$!oq{,ݞl yDv8!$f2ҋZby;!0yIWR5_־2>6{̂0]&V~YdNH v v>(ϭU%+[ſ8D-nU1GL ȩFN?'c?_[v cwT;zjXig*GnikU@Zi2펯ppܬ`٭=KBn9Md 6^beXy9#mEKe_C ß-('BގoZu#7stKã+ȗ)F):@يx%wkcA>՗ -R~9CSM9JH<GOU4jdd8D\Pi3:PN72gŭR5lq?{o:m& ؘu !p_?cvX, ~jiޠ<,]U|>BSEw߂=$jU'0yDálj`]XxT -̻lZ>i(N=(w{1aYuPi~5L$|3y=ȽvZEOgIfX2/q9ke(dw*?QcDa' S 0NC?N~ (EdF<y]ZiL, kAM ؁Qk 9LA@Jv, D$_xSz/$wŗEYlG~h"璲VK[UU;P61 㹣vʷ4p"uK(nh{ebI`C">>S5' ´V3nkg`jsh%LOQtRY nugP4\RM#%~#ŋO킣BZ^[ `iBڑo7Tƒߏ$qE ,)b;a'8nm*# -mhbkS.zI/=^arz`66nC_”+=Rm1eb}nFIs>u LgnWPCNvߝltyB:N@kln\K}+xn -z\}㏢O[FչW)4iSq?s"{-W+#Em[^ -͈%^K SK<eNM>WQmvW#Gn͛jRmh&MF\̕Q(S%> ǖs7nԚc.mj猊yE*HF_5a.^^Hu(! 48DF -)pߢz Ա9mEG U* F'>5/Ya0-)\uЇyk&KrS4ĎSϸ=^P3qFڏN=k|\f:/ߴؘ]+{A M,W"#O(Bk?1,Ԙ ߁Jֻfn)zhS5ػũ-[Q>PV晴 -<l_}@cޕ?|Pni8WQw 9 dkY0yhbO}pI;!cC((@r>9yӂ,oE}٤Ӟ X$=rϨKGq5jkQ?~w}3;0 CN Xd%7!́$>$ZA9}oB 3+VT0ky0l"I_>玦#7b4 "NaCt8Y0WsoP}wE`GJ>iS"KnG9>{-Qo^]#(PG1q߈Ii888ބ:' ϲ&_+`RT%#>DLW*IIQ c|YZFЏ#«L_.\jvR졚ʾrf+eܳw. Ee`{TG1ocJigX -lȣ8c;%|@ڟ!DmXJ` BQD!h#Hz' A48_ =BUTHIո'@KǁQX!*vVZ[2.UчÓ.3h}w=ߥ -^[7zɁ18 -fQ*JO!7/R0 ؄hy;Y%`z'NIDXE|_.EԵ]n80ESGݦVO=WX yjs1oM64줓].ǧ d9M(B7rkwNO}6|ۨߘ`W8Adԩ3Tk-jcM`*/*b -5FEȚAl -M(#ETY9W!;54ސ29cJ.KLɗd j<=۟i}b@&Aoѫbcj_HAFGg}[i4m}ފ#Tơp{ -$pZjI:[!i7/AlYHwv7N03c׍M(ZW%,^DE?¿oaG*F6xW(w)L46wm %5;n\ QAYf2-@">*71c_vmY # jú!b`Zܭrž8Z<6%⧐y .R~&ۊ'6L&U'`#駺"nvo)$ <3|eo͝|Jo9^^UTG1HJƷJG.u݄$ӏ(9X a@y1Cte$`ZjqO. Aj'0m.,<b+7f{'g%-cjMr>!^WĮg-qm(^ }CcR̐b*BQFO4&\/R*uaY{Ŵ֞b8AE`(tE? -dXoȟX&}Ѝz>B)Y(Ŗ d:jbvl-R3 ydH1[b ]##YoV0Y؅Ϝ-q]xO.A$/Qiˇ4e aj!ٷ]5RiZ#g[u)$ԑi ي}d!a|Y0[:s>6~1G?1.g~ /㕡Ѹ;ynI2D!D;½D'wi Y~joUІ=PG[}3 IX(zw{y0&E\2V4V-40uu{ VhDіwe$h%'WR ,Ώ*g5-rNLm;5Pӂ~TBiN'Z -pjȅ9?)M hdJɈ1VMaV@Y> OdJp]0F{wMJ:r#^%񍚽2Os=)p<=*U*D<ɨ~Dy'\:Rj뮹B#b{t*ԴQ…n@~mY<*gs=3׀=*]@s$2/eW6DDZ=+7cFRRcNb -[{,Gq>AVZUv|DW5}zdBi"zH>LJ!ig|Hٛ7wq7v潳n5I7RW#8m|`lp15ͦ@fԎCI[ ]r'_<WO3 -;o#Yy0F\Yi3'!GA_`_zV_dfat|0g'Bg7:3U22bC' $z'i::~v%B${-]|iY;MqVFsΏ@ݷ bʊRSp€[.7>\{FQ80k1bD9̄fʼnV1F(âH lVl96m|QN8Y\@]P\"Zq8)7_Dvݥ{'.Gyj&n -:PƱg=es'd=ZD#P7.ʰ,}me!K]v9MiW$BQ~hGP b5]%tlڨ}FOQ\! -+` Ke60J8 -'O1AM^VvZC 4 ->څt/:Mn#o-OȬ iގy ieiLE`̡{_2G-kjсN1ҧ i1\vV3j`-@&o6 >&^z)d;084c4+N%]lH#(/}?O4a3=,gŹVA`o?:)h";J3Nw'E=PCX9oĢZ il [S>QF 6+Iv?ڷlšSQ'v;aMm6$bC^sD> UCޜޤ -m{Ζ5d&DDOSaiFҎc.+*g&,'[itm\VS=}_ӨV"hv6kp_mIZRr|[pCI`@Z>&t8؊M ^K͉\ &Y@\5bEnf;&li@3p=Ꚑ+Ebo)#uրA00bi:d@ɮە?OKu}tݩvXicLLc_~ufJh(i8sc3ޢ3: !{Ȩ2,0hJ~ mP _뇀)34@!`io -#ֶW -endstream -endobj -116 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/L/a/b/c/caron/comma/d/e/emdash/g/i/j/k/l/m/n/o/one/period/r/t/two/v/z) -/Descent -195 -/Flags 4 -/FontBBox [ -33 -250 945 749 ] -/FontFile 115 0 R -/FontName /DMPNDY+CMR17 -/ItalicAngle 0 -/StemV 53 -/XHeight 430 ->> -endobj -117 0 obj -<< -/Length 7469 -/Length1 1373 -/Length2 6096 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR6 003.002 -%%Title: CMR6 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR6. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR6 known{/CMR6 findfont dup/UniqueID known{dup -/UniqueID get 5000789 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /XTJZVU+CMR6 def -/FontBBox {-20 -250 1193 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR6.) readonly def -/FullName (CMR6) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 49 /one put -dup 50 /two put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl7Ӧ!b^Ѵ-E>3t;G<;l: OSS*O?9-w yg8LsYtָE qHp0>ˇ -,qۊq mZD]7ʺOk-G_\SyGLN8g2Q}:ä|C/ɑl ѓčC2`Lu3D*Cǩ5љsLUkmH FqTfZ$|2xlڮOuxgG/|:&Nn$JEQyރ4>py'3ji.ǦX9~b0 ub;F8(PFY|DS%y=gn!QZИOi歨H,a7`_Z<gZeߟ՟q/~j'[E1 wg,Kom>M8;r CXVkg-/R@|lbC/zK_i,'1Q7^3EӪ9$Zdy]ltr=>K%a1\(t.EzW(#MN̑6~*E;ֿCa^1y5ݿ'hyf -s.8ϰ5ciG$5g0KTlp@>]fW7QGVn~˟=]Z`*~7 "ڌcw0U{Yn._xIPYQ]`MN!Xw:R;t+]gZɅ oswQU)8aA^av>xƍH_n~}StG7 K72fCi0Gm1u?4&]ژdFpmUhӲ$w\Jd8+SE=XnV%?ү֟G[4D)ҏ}<)%pD%qrkoX(&Ƕc<^ԺO;FIRCK-fjz hs+*U-\(=D[d)@%t)#ْMٗA=5N$1Qkh|)Zc׼=}6^w'eufH p!x."s!SpزvNȗy8~%_mD8ǸrɳhwWu_6[= -V]Y2?% -)/KR|e=b_0Sʖ531ؿmx> ՘OX![ؠ`vf|}R 4"~)uv E$U\W;댞K0 6$֥拐Pk?yy4<˒q=CG$ @d~A1Q8A-|߉b1`zj ۦZ\.r ~s"b]Ry&rD0hLS)z6M="'OOQk {2+$}<໒W` 1=',hkƏCfE5F]Ћynh|d/(~&PB9Cx9 - %,9OKLvH,>Ҏ,6"+DƸrhL<]A+6JJ9ۿ2jQ}bF[z'p&S*U$ؖa`RI=՞dv_\WB_5n[&UXiNcuοrvI]VI߮\S"Ivs qYpP]5||rOډccB0KV|נ40Cajps8A軝Y4-L ͯi FV{%xE_ *`LOU -ǔKGs|mJ%5ݯdAv<jா-W:,=BYme"r5tŧ>,wxI_ esxRtQeh; -[Gf҄(`*/I{w4iOa"č\%{-+`8@;dZxW'gA$vq%=@ Py_w駾{p6LMmM# -R -Y$Р쭀|6|噐ȏGI`fkqa}@tZ&'=3bIgU5eA},):ichZ:l҂ 2W#30rM$a ImvO", -:(%CMi@\[ -t=UMn[B_2_@nu?L,DWUx=u}#m6xA x^QZ+% *{ϊշr RH [*Yy0iǭ0abP7y־pvkTTR+%7!fF gGP2?S%|b%N&t:>EOYJJJZBH-!~yp̊Ҭ㠄֯d z/3j*(JP$'AT˪x"b4~4]Xպ撾99T<ԟʛKȟ9[I{P>5Ruc&(0ܪv;{3x}_%.beW2eSxD8o{ۻ}wn,WPz;+RtVX= \uBU(Cvw?H jt~DxtӃEP[x/2)+ഷʱx46IHgoE'nb\lLhcb/K}kVD u6#+9oi(gy5lS{ ZQ 0dpWg-Lbpy\z(gR6eKG=9U2ݧCH opr'FS+ U$κ h; I~Ζ:oDUEFyo;0?mP>"#Ǖ T5J!*S@M7#8&-yn95GTɄV -+WS[Om3Pmd,+ST졆kyR<$ ݀ 2a&=CԠN 97#~MT?BzR͹Qz]sTP@P G- R9Mz)3MHxV'.(s;|_OT՞X9`G $PW٤eY=fE%ԤOpdDmz]֥zK+xIVk -w:Mm4YV#⺸M]*Ǣף9t5#rm'Eeo$Κ+z8n/=?njѳ((,O2w <6Fnc1!AzVRIز+Tko9:W\v.yA5gf]?j6)xy!N5g,:2F%uE`Bxw(ݯɆ&^͂NV۞AB k+&@'јsƒ_;q(_:.:)[ ?bt.N|Pm}/u#7A"U)T\ZxH ro}o2Xa/vD3kU[+,뫲,O 4%߇$H'űC/ |,v=}醜Cy`6YP*r8%{o4c1OSB!dA6]W%gcTޟd>M2^Nj[N@*Z;#hhK7#2;Cݶ2 wC"[yDJ,#b‰ZV*7 xߘK;Дyv96I)I" $!/8o(PyRUS`<!{Ge+(CuAqlTcu[ j=E՟2C4%2+drQ/;ڑ}C`@|&cſ1IO}5& !v,+M1pp_㯎0iP͕񇐸gZ1:~i(l=kqa.1':;)]4,6uxcLAa^!L"u -ɜ~=C3[ .18jITOQ -Qy(E*>'߇߃5 h V`,vr3TT{3O_<΄D+ h3ʂpSV#u:>f`"_Bon!wN y/C5rb?7@?+V5خ -B6oYq^5Zp r,B^:NJ07Aϊߧrէ}E4zAWr%`HpZp={o.{#'uMTÕ[gI{dLAN }be/F? A]buvqݓ[3<4MBTparN[0O4\ۤ识BoƸF >'dnxN#ik_Aޛճs#;w͑2|ڜB8"f;GZ@ -?ZHu&mٚ< DVn>* ך< "™3`Â"0rؕ|,lQNeP0xݟ=ϺJ9mX-G.؀Ƭ 8i -'h=,0V Px8kA8(w}Bׅj)ȇ:x,=NqQT]2]~T/_J:x>`!e ֐p:s*#$p9ý<\Ϲ3ePB[Z89V:AJ@Ͷl@RՁ;hܜ :Snt(&#ސ K X,G -.~e/ -endstream -endobj -118 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/one/two) -/Descent -194 -/Flags 4 -/FontBBox [ -20 -250 1193 750 ] -/FontFile 117 0 R -/FontName /XTJZVU+CMR6 -/ItalicAngle 0 -/StemV 83 -/XHeight 431 ->> -endobj -119 0 obj -<< -/Length 7907 -/Length1 1405 -/Length2 6502 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR7 003.002 -%%Title: CMR7 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR7. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR7 known{/CMR7 findfont dup/UniqueID known{dup -/UniqueID get 5000790 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /ZRYLLV+CMR7 def -/FontBBox {-27 -250 1122 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR7.) readonly def -/FullName (CMR7) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 65 /A put -dup 49 /one put -dup 51 /three put -dup 50 /two put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{ޣ\u3]G~ 7G!/ Q FM~f/m*i("!i -K5> ţ d,J^,]^ -z* +khjOwq k&,_?Ɉc"n?W)Ջ kÖ投`Z/S *?c|Wgoʮbi8hesQiɺ4)FvP Vؐpik`j`EU)oW jBNfPTa_$ uDd3QBZSfyu4 螨x঺N<1Xk7I>%} -'T)~$I%qPI#-MVxkx@޼ۜZJ6h=hAڰ:#obv0e\¡0cPBz{f=d1G'{1@dD~yXrDOZE.ϐ=(%^/2V)(mfR20`މTLm/QL zKMmͥ +^vA -oEGxvXIxAW>xCª5!w^ ĥv(4,-eӻ?/R?Dqeq-xE $ܘ*3oᮘY+0{+N.>ψ'=IJ -f]̇C"spn21 {3=Ej4ZN2 -K~*w?#9; -A)Py 7}^muF2x~m64&G?r\|6L)ew¦ØB+rBc۞3v -!:0{uL -âAj}{q3W^B'(Yhn0WRS?u Zin=ٽڠǘ){s=m\ul^GhN@(s x6bM'*'6?nA{,1{E.RxmN4k(wl30M\Er -pty o> -{a_S -[D.tIEӽ ]fVՓj7Va_a"-{#- -:bO[)HAXE뻔Ug2zOqq" rI~$>s0Y@Ȩ5{I>y炲oCA2=B?"R -g_,~q.E| noϗT6;i?Xb4}teL1~&LdZ}2W.4.^%*D|Z?7W1 * DD?P_toKL'c ߇mS>-#| ;[R1ڢ` -@@onh.VF+w3ݟ)RX#9sz4X"#bwL{cFNj'ƌQԑt2Tn~. |_ߐk(Fm -n8*Y3".g~3SBج!͗s8 +݆ iD7D#oEMP00pn̋E\ٮ+7_ QzRĉ iDoB=|n$2bVÛWRu^]72# -x7SE5OU:?oq W\qPt<hR,v7EbZ5=>Û֜#hSRA>2O?l"q(DOuk4_}Ǟ# `N0N_CB<=gKO1/a!!ԓ(`J˭9.R˨y1jlnL`f~ͪuJjwD19K^W7L(ҿkH8rC/_! 1gg` bu VdoT_E$ LZCbΏ)#ue*<m}}<Z1]7n=6c~#`oM`IGCcIR(f 1?>+YKCZ%s)pxHODRhL⩩? -F,@۷l-%xWuLT7a5 -b=oюca -rPYqf3UeQ6ju! tYL,#Ev8?@<m?ĸӿY7^U0M`X,oz N]CSpbӿ\{2,1ߣT&JRCu& /D#eΓ|}J-ozOYTC]i/ K^QaCi{;ᤩ`; -@WCk2YHG$JԓO>K+ +F. %KWWZ ucQRT1 >r튌;FG֧':ũdXn|I]ͨxq/1siN$bppa5DC$6lg*4/*$Mmd$$0el7aa (w3\\XAȿ4`]|v21) d6.7FkC/1J5deGñqvTߞN|@\%eC_>$X8cB'f{ nQZNr Rn}R1Bz _Мך-Ekjmnk"5j/2~bE9#FmY۩~|NDpTT6Z%H ctjz3\ */09R[Ƣ3/c4֪K^ 3b%B@$Md$8(sPWcY:2N&q4$ -VYvHS Gr +?6>s{&@ Xz #xHH+D%vZ~WO?V33N FӁ9 -[" "rme{3L7gdzR`QK8\ڕf0h <8 y -9\PD^1L1̄\$CFblMQz.Iۯ8fv -%ڞOBTVHY+pJ}S -ɲmpJ3Yas ݟ*SQYLBP_[HWBQgf `~[x/yp -vi >zxup^ľ@#uw<4b,m*}p…N{fE@fNg.`d"ŵr sr45S-U_x`F#忐{+BUTK$GÚ t3#;8d TpLxcXdl!vFwאHњmA[w0\&CPx#5]^%U3z*g5PG%E)QG"0)zA=W J]QI7r:s>Wv Z8yey5HE <+lWJ"W}39oWv"o9aض8^>QL%@_\^b"Ap6@mVy -`0="nʉ?6* /zOMpGfT3ۘ!L3~r,}CN''HN<#`h-p?{/h:â3di|/*HEnz\5lѕ:;ܩ'$"X^Xˋ#HUдsĤ"خGrIdFΤ -endstream -endobj -120 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/A/one/three/two) -/Descent -194 -/Flags 4 -/FontBBox [ -27 -250 1122 750 ] -/FontFile 119 0 R -/FontName /ZRYLLV+CMR7 -/ItalicAngle 0 -/StemV 79 -/XHeight 431 ->> -endobj -121 0 obj -<< -/Length 13328 -/Length1 1851 -/Length2 11477 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR8 003.002 -%%Title: CMR8 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR8. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR8 known{/CMR8 findfont dup/UniqueID known{dup -/UniqueID get 5000791 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /TPJKYX+CMR8 def -/FontBBox {-36 -250 1070 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR8.) readonly def -/FullName (CMR8) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 67 /C put -dup 68 /D put -dup 70 /F put -dup 73 /I put -dup 76 /L put -dup 80 /P put -dup 84 /T put -dup 86 /V put -dup 88 /X put -dup 90 /Z put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 103 /g put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 46 /period put -dup 114 /r put -dup 115 /s put -dup 47 /slash put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{r̗m1l(zNRr^&%:(/IߺHm!4JxI7bs,OiOl7_gѳs6;P}tx,IvJ3Yʫ] -=~Hrl;H :(xP/PL͍SI'sb~|PpNcOAͧBV")Th^Cx(Ry,s)+Hߋ;m*?>H"%N;8'bGZÕbd ^i$iaesF)l:}3X - Mv%GN,Ҧ/~`Љ"JO238ڐi -]IGcf7Ԁ2ڣ}T  @ &x߳8h -{ga5Lw'~=OLcgPv9F˛z%e|O/bV K ^Ć8ԇ<)M<m;疑}Od1]ZSmPf4Ժ)}MPg2вl1gFޢp V}{<[5iJOY>5XZ$157~Zڕ-UDm?3δ쩄'V+RGpyDHvx{pcL1w¾ FMNg(S ?)?;@ṂBN߬GXDio n PSSXD[kg[tU^?f27#xUým`jck$u:RمiEUա<.^Y&ۆo9s> û -8jzIC%oOn8Rg#;D2(J+|Gk9ڲփey/9+,-b3w9W7} z᣹өUyTpt_24a6s!O #i׌$޳\Apr$w5\plYn1upd[lk!lRv4_x_$V[HZKr\wu%_F ^ =ԝȆCf%-۷R>Qt@2 )~zx6mXFVCEOxJ -jFmh)XɽЇ8{u c*;e?blV|@-jAf9Vb 8Tdj4!VerZvZ,eV҆?0 -ZWGvl~و[5rL}qTvmjCbM:gÇ VOiڪ#|ym-4-, fFxWpsX!6q-M'ŏ"1,sxɵISĜV"^j73EvV(T^K-k?Ӓ.;d{)pBh+4uU *:m;<%s!- -8X+p&4jO^1TpvD^ x$+flx7=1S6>rMz 40] XC 2ƺ_s5uD^'? jeq (ӓQEuf%x(m"B (brqYqu]ΫHgp7:NQAdYQk(|_S/8aV%'ov"U2!kh5Q?)投g&J$,jS]&1Fq**X*ilSfN{qZ '@dnl{"KDŚ 4tTY9X}4heQ l_7@ZUĩ/Ac*A\4;N{45L=!V5. }rKqS*'R=:tF_}OV-F=;*ZGoe -ED,A$ CÚI9:Fω/%`,miSs1M>l搣Z՟_tJqǙJkuBy#+1HLabL 剙 Wb])Qjfnpht;\܌8:,{=JE2[WD{D7ܻ9'Jޞ#11j:n+G,,ls3݂FITHH`v=%.ayKyMBn!Sukyv"5Dz -֧'4Q| &֨ӷRc3k&ӼJ 4m [[h|]5 -9Jȍ -0g_ -wn{QAnGgIH]E oV值4:(\TYs7HAe{Ю?VN,pPTlΟ fg;I?"BDyв LM> -E,4c| -}=xbK2^^WUAV7xQ~e#EJf/5R2 jn@FԚI&d|+.;b^ɺN(S k< q/3?׏ƚ~sďS}V7+v8kܩ!ȿ}x =7Z}ǜ]c!j~?}&bXqiE3xmΏZ6զE7C+:Kꉓ~FdNg1Gκ%ׁۃ1ýwCl檬q1FQf1Ż9\@¼(ň^Eг%( fJz^ ' R 2͏aǃYֆZZgd U9/|VϽT_&$_=1zGGx /"Fo<,*#Yo:a&jCȯťuK`uŽ /uwaEt #l!} j؇'*eRh-.h;hMoجcx(iw N̸u T=6^ V$[f@[sk4kJ@/SOnYJ\"mz{1*JKْ|(nwCָ 4&j_G.Yb[J87*"&!Ν&${G?`lê);&|vMÞ\SSELok.N&@`S9eϋci n "*z(N(`(j>C1*CɚIbtrjcWqt?[Ii56߫AښIJ'{-Al$h;m#Q5dd0u3+CcZы|1B]; T}݁{*!O^5 ;6Iˑm-x@ʏs[2 NCb+i+Ɍnu}jlD=_}ٹ*13?9r5\ʥB24"F#KLE*Bmw c,ɰh,<#fx%+L54yR#Ss+j%rqJH엮`S|'a!7[Z&.BvK94{~ͯ'ElB9 6gŠnS&}FL5r1}X蝻?;HǯPO*E4%_Qy. +1}ށ;\SlKE@%ŤQ"%VD󩉬y!;0j`.(9d !0;/[ċ>#qod]O>=z-)dgWl|nLղ FEHқ\~l'҄u6UeGBnKM̉OeӁV?hoR5y?ݙvĸZ@'+my5@:pqU`y -2~&@ʹNt;=ΰ oY+KۛFtz/zRk]z,l93& ^ y&\ -v+vXuC2I~gs="(pQ"RQSq1x̦,1fɈ[G]x&͕k5E' zFm]mT{ςh1Z(vtO:kТ4oP~Ԣ 豟l;ݳ1`yI@!fLE6<+w/_+XNVLTI?Yuk6rga tq=M=?u4~h7ajGw֖ˣՙb8|7_Aǵ2s>@rk&$n·nٿ`ϼdKDNf60ƀ4#&649߮XGOUSV9'&F#U@VreN)tX{bn̷|C'Ob^Jp$:2}osre 3ꁈ#R@D eܾ-찮-#<<\-8ŷ:Ws}w Ӧ\|Jy:,xf~X0O @xLcfġ9Pj'7a3A }~P]T#ZWo T?2#[=UN3JMNS_{/,ӛkGZ$FG[B{S[VUii^l>9OC45ֹVqY@{$9oz@:6Oeb90i.fZH车$[ƾl0/f /@?BˆQ!Mђŀ -GX̺fNPiqJbb"ݣv/Qh/0i>h̒O iơwL/"B ǫH 4K_ r:ݡ`ќ nFW0+I4K3v#(2Gq]X8 k. gn߷!Hjl+@ OEb/ntpS)kI'i.OeQ[kգU)hRU؇9w_H,@^>hG9I`\4"wtS_vՆ,tk+y#2^lh rJ+T1LF4>ϒ_!^y@Sp)״TvIƲblfPxKYAݙihҿ[ϪGDZ2اpl.2@gv8}Qx鄒CZy50ǜ^UnM )D4|M,ff +pt οJD`͔0F1c5b4d bQ6p~es2*()G)L8edGؿ3E0@ꤹ/crSu$zS2zNekzDŽO+yr\/T1QwGxt6H5}3:CuXJ6[\bYNH7EA'0mp6AI Թ:FoAi'7G4G{YjL%à>2y%_g;MB^ш ڎz ^紤@fCz/3S@w`7)Qg^QÜ4f)XO[h_sYi+ UHKۮH&VЂ2_4X'RjG`8[m^ŀnej+;C-|pܥ!q7أ -2^HL*!AjӭA8" {\W)x -2k~_Rl`mVLaf8fg{9=͚-f>?mrkdΡIzuHa̤K@c#,z$Xu϶!"M4dOcGԧYbแQ ]J.Ϡ ep (wnD|]J´+XSL -+`]I9K_dnEd|lqU$ظ%ioMzƵuhԚ -u7?+cS,R!t-+=|~92*%-i^r"1r,d/c Ұ&9"iH!Y#puԁ Wl,Nd>uFHG$ޙ MN[z`@YU,@:Ab"~.m|1/[OxB?pKZ+s6V:Cٛ4?excТ9PƪNDHˮY oA~6D}Q$AP\GoZ RƱƝirs^-[Ж[l#5hBqyn{iEV]7{!` CUFL巜&G,3VµyMUylHmd)b|;5x#HTc;,vz!Ϧ]E.&C.h[_ltz;̈[%̨6YzgZ4G2Z@1 @0+~um`uH.j*,… JJ[Wjd8hb>鼔&y?2# BsZIDE᩽W:͡vMYTG]& #@kdH65jX%@Ң܇RA5nx|)9]Lm59ͤQT}[KisZS3L=-z&H赤ǁ!4N!v2AI.@QtJi1o\*\s$}=5ʥ1Z 9=C'3[/%O[9R53+RM\ bHOX#-ߗE r n* -{1{Dcs:[{x};bZZ3V r<[evie\KlPHb;M.V_KyD cYU@ ќ M<'gc9%`[i0aX=$cs" y ^wDk7RJ=%gwXRfUfHnʸ$N~REm35Ů Zw'NE\X^3NxdaW<Ŀd`DxR[uCj+(DE7wk^>C>-M7 7_s ]uy#J@{*ݯ|k/F>׫9_1O$^@CA-XTȼR4Np$e00K=kCq^'af /N8&^øx>SgTsu`Tl{e >N+bH "Ql|QiIqvqۼzHј;zDWc 5RiWrh!#hLnY ɉ=Wwi%/*b -\``w z#p)ǐR ef^;uxN;E<#ԇ|V =` Dg;T ALJ~c>#-܉sE}yգSQJ}>i<[h; ^(/׫?ڽ'Ka.~.*Nƽ¡ \6dh.i3krV;LE%K" sN6ŚY' -SQ*i 咸aw؝R iK2vO̒^]Jh?[R\dnSveYT\" -g!1Yg -_6ªG,R@M3M -+G~uZYt ?p bh$\7찁+1:>2 O $<ȦHbAib2ɚP[R%˜ -X0!ozUXoD`;̑>V=Keh grc=xGCgWsMtXsmc^֧hLQ -endstream -endobj -122 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/C/D/F/I/L/P/T/V/X/Z/a/b/c/caron/comma/d/e/g/i/j/k/l/m/n/o/p/period/r/s/slash/t/u/v/z) -/Descent -194 -/Flags 4 -/FontBBox [ -36 -250 1070 750 ] -/FontFile 121 0 R -/FontName /TPJKYX+CMR8 -/ItalicAngle 0 -/StemV 76 -/XHeight 431 ->> -endobj -123 0 obj -<< -/Length 13138 -/Length1 1736 -/Length2 11402 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMR9 003.002 -%%Title: CMR9 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMR9. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMR9 known{/CMR9 findfont dup/UniqueID known{dup -/UniqueID get 5000792 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /SJNHCC+CMR9 def -/FontBBox {-39 -250 1036 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMR9.) readonly def -/FullName (CMR9) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 75 /K put -dup 84 /T put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 20 /caron put -dup 44 /comma put -dup 100 /d put -dup 101 /e put -dup 103 /g put -dup 104 /h put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 112 /p put -dup 46 /period put -dup 114 /r put -dup 115 /s put -dup 116 /t put -dup 117 /u put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{x< ,-.2iRnñvپ1䠕 '䓱_r"O_t3kefBݼVfj9ҳ 7! wX: 3Jwͤ푘IKjfWI.kvCW_5gWZWO~]!K"x؉ruJԥ?F6Jq>B^f'<2bSz>/kaɾP"jt}[#[p__ @Y!ɹsu~/8MeC2+{x$*|܆k)D 3CҊUDw/Õъ7uS2v΁ ~ytKd"f!Zυ?.ǥTmBlHEU[ZF`Qy)`gdeFIrU-J~xg4KX { 7$O@M?\(L⩎z%KNJ`ī}W6ĠAP6N錛"7`ܓuN -SX@*i,xIۜ*O/" -t1;$l% p#B+}ڀ'ƱRS^P˵aF(~#ۿB(I&@}-:{yA$m:'}ӧj^\ĺ>segz!,ܵ/u-9u}eIypӶs$dNQ/9<` _`m;4uacxr!LB Cu"KDPoѼczضgӅj=>1Im9!`Z&USYQoeȲ ׿ 0G> ?:. Ndơ]U5=:-z6g&QZI[)( Q ^6GB϶)Cflg=У -p#E뎶o%iiT8v,%&{6"I"Pu>Ul Ҧn}㪣ujyH^^?"8AÆKh_Wq(Wi4s_޾"/b,zVgl8_GjjxCFTģW"1v&V@}B8Wt9fggs Km }x[!.ZCgA۬<9vD(dh9,oK4Ѐ?Xe^E>miQ>L -|(2>!*'%芡N 7Ԣp> Wr1 N{L:+>+͖:U)h|NS&V<C.ꬼVݦmwҧG06RY H&9g>1iWI?ƗųȦ2•Y;yӂgo٧ji]WQy_6K1_@H{`xx -_gg\It5m%e|0/3Tizwq}ʖNIAeG ='XC8o]?ew(m*>[G9贰c.b7Eم}S(EJ~DRbx `bn* GoB)7!SԦ`o ?9h{Fk9B -L1yo(QG$0װ]3#,OJ8|~"Oog(ĻxCg픻4}Pe &ol0' %Y>VNo؋lj=;xĭ3)!GtfJ](2{)ir18/dYY1AgqHus'3;퐑˞RNt(n> -" -O`AoxbE ҚO(JݸtGhacb-iwS9϶](?##ͬ7ۆDh,,#X=@c 4?q>!7'CR :p\(rGVIʵh3̓1_ -տӄQsbv -tü$>y=-|犬DHB//gm?SFOEn7UߎUfݢ׼Exmþ_DRan*=vߕ2teX|uj 5Θ*{txbl&V֥ !Qz>!)x[5&\#@ag$5$h;mUx)|Rpf *YF˕Hs- -*=,$4zkbkv?JTEz0X_gS"TݿEԓfY S`9ڳs pc<ʨ?Dс] BG?8""t9ES)Bx:oafD&_<( 7NL'%_1T69ypF>\'Cx~LN)VޔO0"A \ũwyzN"3+aYI"" [Uw4Gׇ(ឳد4drچڨa*R+d,wVm~A)|Iy@ -A%0nje<3D]=KԪZ})Bi#ycJ&kusgWE[Rw;)TFY߁΃0u, LTˎ!l6p(RJ&4ҧ·zD(8eWEO (bHN9I2qM"Jp߳ȉLx91( j{x^P@XgS*HXbe&hZ_OVQ#J;Ĭ3q6KXQf M<PdhJ iJ@YoJ fڃAyuVi#84&D:dO&FB+0M\5bDl[Wj>Ju(RܨЗŇM;UFߵػ6ct(Qm})mh i1rn)Qشξw/{I3;4gs,dQs k_S+y>{DK3-z'C,b!HfYLA~q0.f2nco,g5r#|m05oJpHCou{ P1} i&T k!kZeni08amql!2ŧYs}ELDGS*)@N85)C,wҚ4=6"Mzt]AJ)]Lr*InC^Q!IQVZc2ՐU;BFbFկ8nXIAL ^*‚o.\SYIuyXs? 1Џ:GdqN$JgnLs{BqY]jfYBr뎊i5pSCq: -99xec]R{zC?yOS.+T#`J**Or: 1-Ga"FXb2OF+< PpT)Y(aVK -Zѡ̍@ݾO:r^:M9s q@*DY_<Ib>Ce[@Ч]%Ȁ#K7Rjk2A>&^Rz=f)gjAݓ'xbBPd<^Ҏ,!ávm J!*5ҋ.5(K>++4y@B[Y -`͑!-|RVMr6 d$jwe(%.`. t -`n1h nzeR#nmOنwwOu*NkxcV9Hq82ɤ3՛.S+@&\]bWߡ!Nޥpa0fln -ED pCr:Q=̝W8{mCUط;Qtߪjƚ|YQ4C<ZeoD>소V@R6I+jiM׍.;}Rց0!3+B04OqߤyDpk~rVUlF=~K,܏ Єʳre!3wr |fж|l24"le֙'IN,5LkME(9hRGM'W vnvq7R7nmpXr8&kfLSHJoe4+7' #l~zpIɀ=*k8? 15<ۜq_g]]FE5I /j_RMFsv3Fl5\sI\GCq{{* Yr*+'e8%7?`~wu9rYޛ'PdwƱ.=v힗su}]?~.ʙvj/g|ځ9hmag18&Q)ZYxqxgJq#_V{"^vуVWh6R^0CxxLJ`$dCbu;V,8;X zS4;AI#`!wwl[z~7pR/>(кɄ3ZʪOu?(땉aڣ) ڎwuE&]m'@tAtP.޳${nA~?*~>C7^9 %5g5v{~0?:XwELFM]ўX|JCe&Mׁ<̅ٱ+JmPAE$Zp햾7d}[<ƓѭC" q|߳1z O>;5tQ\)3l`ĞDtbjbQ NURPKltѱ![6MW/MH9L|f3+X+H;eg0GkO)M_ *ψ'wj (ţT++O`UrAiڡ ǹlzR9xr reiƞd_$|Cmci՚k̞-&%h -!7Uz;)y}`XRsv^%$|\2o&OkkRs!? &Ti~S"I)o0'%aҳ++ke-9FBց+ "R J!>dm`'c`$_;E&#/!X$+[UZ6 ΓOqh#v\/<>) -aLI\l4\ I@#ť+W:tugX|^{iH3hq=o:#eLĠ 7{t V&.k$?u*U8f͹hs_(k%7n5S -anR[%n -JO+e R_Wǯ -Lf픟H(4!zgބv2>Sv'&=@Z*mYC%i J6Oci.N,\j`s Jh^K!_{}5KK;U0{ 5i}ux1@"u -z1- -_%ū5 -z'Ɇ'ל}ɨXP儌6uj=T>H9CD1/T,W, ͱh*7X6DAF7y<tvc2mhAk;G5xZSi=aCN7b&kg.Š ]|4 yCBx0q'N,R4Uw|Xyi.yV֊5`Qj$UP7鍊{K97@Hw|n#7S둍7p!jw:d3p*1&(b䩋texm _OVq 92A~ 5mAp%z`UmJ<8:?DŎC,,V"'1c\gr? :hIvFk_Vv -2%(^!8?65!> 1 x2e!͎}9fEtz"*TU,]L8 j -thӦuA-xvB;n<2He 69:*n.iG\x -Z -;_Yy=x-RR4EsuG\Y h50 KO9yV\`_[3JUQב)`ϮX:2{oR$&j)Fa8H C5nI]=*pK0#(7|oB:Pᵢ]:sTl) -UUB[W8_믑gEʸx:-m1’G"F ԉq t{y捶'܈t7؍bk}IbUVSٴe|{7$Cdx@Y6.Bo.|?x|8$;`S4~dcz:0hV{"ZEoFo=c]T4rdQMf(IR=uG˧v~F5}iA:M{oHބý6?n)ص9>s#2GӞ5쨘e@b9e9nvOhO쿭1|f|{TS8t>78Ana-,"I8+ qN86g"Ryu; f quz rIp:6QL( gp -R*QQ}C7w]i$; AO=,~&A -HߠRdop;-IU5*wN/* -Ǜ2%>(qd$ƢS2xfZ+r^5Jk1/sP܄!{X1U[&_z_\vRn;#xIM7:Xξ1ZA}XS#y![;wxŹ+Im^UѥA lC8(WPꁯϋWvφ-&8e3.!mV+PI ۮ3-U,&jK_Ħq]BJ taɋv|ҤAXFr>@ #mVa1ǥ\Nz9 cTüV3X8B uA٬_+[2G:rp*zحlF؊Nh19\-{兹?:~Ogh]݆niʷ'QK)CUA:y-5 e.5!fHΩ=2DRv3WClXh)AYV]u[FpTqw%hEc@;&3KmzkR\__vUXa #3_cAʤ1@;s{Ō 5?)ʋv%K*zhlbF|Rdɓ+nKUULٕ79LyN/ % q_Plpa(?-!G|fj -{HmiN.:zJSͽf!'!wUpnz=\ i0kЦ1OT$w}Gr7^_(BYǏ-.Lv@cxdfdBO0 Z,,?nb$|H2 >n8~Xӎ}*H.)}ڝQǎ~H8qw< -o1|"PG>frtė-P, -ue2_-!O -v2]Eg.[K,!2.\ n&e,*3Ci( `9y2 Ym#X ԗ7"8'IN5pL&I>. 9!ћFoHR(91Y'ڬ* )d4ۣ@},;]ZKN{Gq!lOyQ6U}ɕ"R&-Cͧarc0@>!^uXi`=ĝ)o\5~|D|s^:5.J': =oe.Gvwv$BLʝY/|GPi>Ru/$B\*niOKO+.]ㄯꣷu\-?Q.N4Uy{%YVi(c9`D8h ѯ{%LH*62L5l_sM5y@qKP?L_<*NSJS> -endobj -125 0 obj -<< -/Length 7527 -/Length1 1419 -/Length2 6108 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMSY10 003.002 -%%Title: CMSY10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMSY10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMSY10 known{/CMSY10 findfont dup/UniqueID known{dup -/UniqueID get 5096651 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /OAQJWM+CMSY10 def -/FontBBox {-29 -960 1116 775 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMSY10.) readonly def -/FullName (CMSY10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle -14.04 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 33 /arrowright put -dup 106 /bar put -dup 0 /minus put -readonly def -currentdict end -currentfile eexec -oc;jAw-ᾉYň5t&נ{hLGqB`d˗Pة|*x\ޖHtEB-gedog7Q`[['W73sZ9 m !tAY!$tY\r[uTIUiBy[Ȝŗ3Kï6zJ!˒Js&B5C"m&`7Ӣƻ3ugNC O~̶uo5=_T/ h,$B%dʘ3l MoYLڶ~3^`12]=l8B6PlpfW< %PIN!ju#,.iXnȼ‡o$ҁXꑷI5V*E6tKo_)RPG;Z@9"V3TTLN Y:Akڬ6̠==80~DQ Q^br/2^KZh`N'Jt4iBYҁ7ޟBU_~\fXAZl_ZƎý'xHbG:"l5CU[aLrf 1[;4p^NpqBD '؅93M&9{ VD 8 aе2n.hf -l?K[$Gp/JzcF8vP3/XO6yAo~]WqDMY4ߧY̢XPEL2_2 oH{ -1x'u|o WNRE홹&lF\LRh1Fb}+l C] (vfo+fM}l?c*ވ"^R]miKOҎ!I ӲR_tW;u@(#t*̧ U{|Q}a3Fl8xtHWA­;!V CVov?³;=>,㧫\"RvRCإQDh -@_,˜kbflAIP^wٚdIHzk(c3xɁSUPIf{KΩs Y/v[L%O@HdjyTõVmqgC9zTC/t~Řo*9rIojUKxj. ,+b1ֲ IlDLQZ3P-no'$F zg!Ј*oj-Nͥͭo8KwQgݍp*1^.֊ LV~m la ]%."`_QipŎs5y.Xͮ)Td1Kk̊jn0zGqaWQ%zJX3tIy0ľ.#[#D#EԂppF*ޘvrOdn7n f9*X:>Ǽ:*Lf͍9&aj;+{0 )AgðK*XKV'zZA) n TÙLJ^Di[:s<ܸ2!U|#5VfUqP}|=G5O|Ps9}* -+gpA,,=|j25Cɂ7 ./Fɹ0tRẊ."we hPempJo@▁_A3QBV~$9Ej= -]? {w_53Fgӿ4BAq41Pf ,Sş6r[v` xG$.} ̔ϾF͙c=f!*˽./wĉR8(@ًz c@N&Imݣ>X!me@lW"VCH8kՑŨj]n3X>Jz?D=Nbn {qbY(>"8*苾ky3o H Dw] d{EʥËw.$Vhtzk$kk$]4cfCW@3plQQ晉b/pTqF8_AnQmK{&z;<տm[i7뜣'*qXTnt<Ռk/?2m)fy#(`%{!Q/0&sxfB+rE[tgOKQ$$=ל?d@3c)]3%*M}H饞;Cdrp1jFcstG'C\p))_)( MM - qv&C3NLZswTPu{sϰP+-UFUP"KΆ+Ye7?0(idL;gk9(YI-l`;`AH:YHb1H{wR^Yњ, -$FԖHDV?pyїP%F=BGKPh~N[I_ꈀCTzf <Ӗ`4|mE1J'$`}R \N2kfaouJ73vKW{M3?׏M]:W;vX;B X.PI;?!T . sU]䮃=X 5rMt>y=*bC~^ tArl'Ŧ\؟L냡P&7ttuGz;Kg4э;u)";SvC~?J/F"6U.0>+KQӄ0"ӫ=sxoJ]ת!w6O.}t5V˩+7Us֩yēTC5GrgU5$&|~G8 Mv(jt Ϣn]]QWOؑm. R[ИoNng IF:?tؐSUOcj2Cm[O7>kWkX' #t'Xd9+E7Nd8{]m/ ׎dvYYwop!EP7F?ojP9"gBP;B^QO3*B 3un$I_Oe` -$`}-9Q/ĥMe?Ұh]b _2<͖+tª[ϜJO@%MI tv\/bMVF05+kI2W9>f} Ķ3tj|" -[LhY)o57k#%H\,x|ssxH͆|;` v%گT[c]e"GUj߫ytvx:udQuZy_Td"b+O]lx'6w6XCDKOf(g@w]fV[~1F^A3v Ovү2v -zT0b#[zyϒ$e1k5dRA`(Ņ@{=yW>>y@U;=H;c{30ü^ծ)ՙ-{OO2R´xQwBgБS"תlbz;Iy\EprkM @@e&3lʉtS%)/pR"2u -Ee5+ٰsZ'bQSlj zvހ~%.Kz\NE,eV2=Mo)-JcV:U2Ѹ>1ȓ"QWOё4*Oz.cjcY&=7Y,A5nIF/?̊ ]as.N*T 9Ͷ?=T"m grvdNxt(h,Dޝ_v -y`+W?od;&ȫAI`knywxż5č-ly SZܤ`Åq}ۥvkmT9ȻT 3"NlF9Tcb`eL֍lU_>iD@PnӃmHA.|Y/"BձO%fA7Si5=6cgI^ؗ Z/Ez4-l;¡^ |lTM~]9< -.t:Q1'ar|*ə11-VN"DM(xSRJk*YK9GW(Ru~|iBcC(†k0MugQK*4(vHy$dor]}o4e%h,OqAhxѪZ/=T -$$z67 -endstream -endobj -126 0 obj -<< -/Type /FontDescriptor -/Ascent 750 -/CapHeight 683 -/CharSet (/arrowright/bar/minus) -/Descent -194 -/Flags 4 -/FontBBox [ -29 -960 1116 775 ] -/FontFile 125 0 R -/FontName /OAQJWM+CMSY10 -/ItalicAngle -14 -/StemV 40 -/XHeight 431 ->> -endobj -127 0 obj -<< -/Length 10505 -/Length1 1593 -/Length2 8912 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMTI9 003.002 -%%Title: CMTI9 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMTI9. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMTI9 known{/CMTI9 findfont dup/UniqueID known{dup -/UniqueID get 5000827 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /FOJGQS+CMTI9 def -/FontBBox {-35 -250 1148 750 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTI9.) readonly def -/FullName (CMTI9) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle -14.04 def -/isFixedPitch false def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 76 /L put -dup 97 /a put -dup 98 /b put -dup 99 /c put -dup 44 /comma put -dup 101 /e put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 114 /r put -dup 116 /t put -dup 118 /v put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsS?#;IHIRd Ȅ'w7 Ἲa }j𙪎 =TU | Ӧ!b^~CJ?;UߨY,Ԭw34D2޻$Xec,IC0aq)-PUaVpSj*?4PDJ ƱNJO'L3nBg%dO޻ƞ BՌ:9v{Ұ%4II-{XM*4ZίORUJ O+"ґvO@3dJxl1Ԛ^}AKG]\Үӂw.@,I؝8ՙ^|٧ -HZsN2u զ,WӮA 33pqJIkEj¯АG8< eMi u}JymKP:cՆn~#/ ĊK'@`F,PFd/\*k\4 Ew>~I(G%w>hI7E?Oz&Pf} ʪշM`j:W24,hV=d *Nu5"$Q16PN--C&>MX ܴ/HG'+:Yӽ뜀fYM2~[z%Q #Tb[zNE!PX1G $zC«>nE|τr'xZ[L#{6@^.|a[bZP js|,dkb}~ā`9ش;ޗ`c,SՈTٚUIR $W\ΚOb_tsnV-8;rsIzAM7ŽL&UkD7§3D񃤐xV} y ǵ׏i³7N5 İiJϨA L1k$O rŃlϳT"ߧD;!U+AddD]t\4IqSҫ6tΟM,I6UFf?t.ZwdTcZ;z W,w)N!!\>07A&.~Πi#FMXz/~ddwwU'(j́t~qBc8i3=$[Uҟy?& O;4x cV haزò]矂FCRSFxR~uZ?2iUj<B'QFX8S tƚ({֟{x [:1YZkDP _ m+5> -kĿrv,=4flz. Nx]0ȆŁ0}Sz%A[7pX+2"o5T{i Ab,V"tCPُF6q@gH1nΈ_=zVǶoDַƸ럒RW\܂Y XtI@2p_'lR!2{+?FoRyR_mr9..>ýv+,]D_2WDujNnI2}X嚉[@-[a_oU6.wolJq *]A/m]#(1»!I! ;~PIg Ju4kh:qKmWRB}%"VJK8fX Ų3"GS3Jh;_3o4 {U4X)K+>fΨۜy~^v k` |BJK08j`- -4%.qQsK.FQe ڴWOlG9ْQeꍲ4Y -s -RՋ^Ff;9D=g%7%z»{`I1cmAH1oYmE&³$rN;*,W7_,HqE'ig^)b~f߀i%!7RN74tUQdد<"8z kK@A]0<6HQs%|?a#V<!C䠚${fT'2Ϙds @Nu UBT?P :\݆F/idl1IZ)ƒ7ֵ;+>wbJx6=tچSe﵎cIQ\/?39bݫ/i8Օ佪S1(+TBPWPxnԣ[9؇ԒG8NFӺOB͒;zwU2t00QI'4S)l#̀"4|ZBRlLC24uGw^Ǽ2FJ%[VgT@qɞV$/N]S;PG"ƥiZ?/e6#7$j,e@aS /?I'C*݌5 ] m*,,yđYG"~)WŠPQ_kM@% #mHOOQ.a.c;iݎ 9Myνq_ҨUaoM AxԎ01¤KIGf, 73nG5mH&-,bNP\|f u[:O%7F-%;棠j^2'Ӊ._|tƒqoidуs" br"(a 6m׽ SEi 5Rf%㺮=J)H)M&S~iLK4JArmj7iv|e+odsC WOя4?߂UF?ԉ k*N!ܲeRjK-iY^e&2RTs\m|y`4ZХng9&JX ^p -풩yf-/|lJϹlz# LY/=Fs7k2a|Rs|cq?d2E҃ŇKAz!w- -C-jiR1X}M:)T9,Iɺ\XٸQ,ܡp4YtF1aubgYcMZFO6I ; CR(P -1^~nI;ʾ9,rТR6LU[Mؚx-&ٳ!YBIV'Nf2uͼ[sJק."&ؒiTM* P5 kJKMGNpp||DQ2qAB7}Q `samoa~6vT!Ҝ\߂a>[((eN1(m ڪW h:{ADOʳ[q7;֑G˜'!3 wBj6f_[6u8\x#Qyb_*pY5 %Q6}&^\W! XVt 3xb]nw8"w=yprZb6 nmbB e, EɋNTSPo]7ઔPv93UU?hP~%us˪?, kRjF%oxڳr/D5oJJy]hޏtñC]A|l|5Tz%:SܸLm-H'X4dA4k#K򤾃}hBFۀe@Kt޼((R$ C]s9H"I_4obAw#t |(?K>Iu+ȡ)x>bϢwnћLBe ^3JPS3~WA#Z=K^mcRھ-qMT Žөm8T lYy}0O((`j|TsǪvR_o./9Rv"Uk/5AGM>n/o|L>7{ (Xի#hO45+DP#ʓfw̯lQ7 _2|]w `cd'-H|_:k/|_$ǁSUkxT86Y`?Rx/=gKA=[©IH :֊c5ckL(19&tP[C= 3: WsaV(Sk@нxw^kϚPxK --/p״ٱ:Ͷ`hq tS -nGJHաb)}>U{[3bT,GDh4fAΈUchN䷢˶BxL;>b|?Ō[mEҽ80A SHfCdT߈j)}#hÅfǝG CsWl~I꼱`?_mޘTѕo/?t%v7IwcyYn &1kP,q`z D_ {&& TK"/ȿ%z0׻0}}Ԃ' U=ucK,c2++bYg\-XnS%\(_;L+EM'$(`翰Y*DŽ p{PSTsMɝ -4Ou([S,:ͨ{Hs^;'%v#r*:<5Κv#%KEt"gl=̰ƬcjRe]\ ׭X -@Fx "g.yhfjVJ7W!جVx53ʼnboPYJ-TdbXaw"CM*2=Q}vJ(),'$/w,j%^PyX+9 s=td#R_tkK Se鄎,W{f?cPxKSuʶw&LD_Ose5+T{p:`@`/r%ӓY06rS> >}!Cf P!%|> h.n-(~/SnB@#ߓ}ArѦ-ZGe;j`B̊4ܷ2%+D:(1{.6!˽,{~\BjZ0.(/Gx|\}9~S 2R Yl˛Rxb+$Juگ1͵doT J J"Tr<="v,q5nL>*-[v*%9{8o&U kFf/!7 -MQS8W?]9J^U6*75~$Ab IC j#.]1ȰF0Şk?I QXq| -x4ZqmT -rm1Ut_ 7bF[<xf«c1̉'e&k=\ˡy'nW!˗,r4ˡxZr2nL,&s'剚0)1Z[^.qg^nV')wF;-@x+A ӫ(>D1Q2S":̿ ;O-7\ -endstream -endobj -128 0 obj -<< -/Type /FontDescriptor -/Ascent 694 -/CapHeight 683 -/CharSet (/L/a/b/c/comma/e/i/j/k/m/n/o/r/t/v/z) -/Descent -194 -/Flags 4 -/FontBBox [ -35 -250 1148 750 ] -/FontFile 127 0 R -/FontName /FOJGQS+CMTI9 -/ItalicAngle -14 -/StemV 70 -/XHeight 431 ->> -endobj -129 0 obj -<< -/Length 13744 -/Length1 1867 -/Length2 11877 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMTT10 003.002 -%%Title: CMTT10 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMTT10. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMTT10 known{/CMTT10 findfont dup/UniqueID known{dup -/UniqueID get 5000832 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /IJKLSG+CMTT10 def -/FontBBox {-4 -233 537 696 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTT10.) readonly def -/FullName (CMTT10) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch true def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 97 /a put -dup 126 /asciitilde put -dup 98 /b put -dup 99 /c put -dup 58 /colon put -dup 100 /d put -dup 101 /e put -dup 102 /f put -dup 103 /g put -dup 104 /h put -dup 45 /hyphen put -dup 105 /i put -dup 106 /j put -dup 107 /k put -dup 108 /l put -dup 109 /m put -dup 110 /n put -dup 111 /o put -dup 49 /one put -dup 112 /p put -dup 46 /period put -dup 114 /r put -dup 115 /s put -dup 47 /slash put -dup 116 /t put -dup 51 /three put -dup 50 /two put -dup 117 /u put -dup 95 /underscore put -dup 118 /v put -dup 119 /w put -dup 122 /z put -readonly def -currentdict end -currentfile eexec -oc;jAw-=%W)-{ru)rAE(@{빴Q|_R -ϤA -T@|q|VkJ%qu8PwGxŪ̆Q6K -U\%b"t-*xJ+ -}3{Z2zݬT2s$Z&{BJ{=מ0).|˿!:[LI0lr9G$}/X S`p*p+fwwFGO^ȇ r+dMvNy{YK[z[f -ܷBDq}M8|j${jpxxSƫEu -7%ɑ4\ 9b \)[FU.q4Z8KzwwylϦI5bjcZ,7ɪK:#@Jd@ѻFM_d#g+=>ZaWNH5Y/ .rpf{0D|6@;]/h|.RAɰKml^&W܀{mFՙ3FK~I7@T7AMOP.;ݐH+iX;}jYXEu5ǻpېBIᡊS 7pQ40cH4u[ wYÖ2[tʖڣ?hb*$ -dƥ`$ P :")|UƩfDtd§=5+j7%i@)шT/qUF1tEςҷݢ@ Ѣ1ãF^R?-¦q^!*1gw24/3@\7zaz1).ExY'Ȫ5Fc=nj2cw1 3bI]y: f֡ꋓfg%p^`('m K'K '>EPN,:M{S3G2R@6\?-^X'F.qhYlawNUpͧ`M9_Jgbw! ̼sāTҔDb:Wq!]iơw`褩'`h^ TTInHel䶢͒à`じ 'p(=Y1UѬ/OT -%`&{(K:.CiK9xH-vE4x_5叠ٺ,dl5'bbq,H. O8 NNnZGquDZMgd/.o~*ĽẾʿep˵ -1}oK({AsM`?  }|^ڧ(1vMXAj!Vk5=&Yiw|vCPezFލ`FJO!zơãE.)8At`+o z`!|a*dU ).tIhq*0q>NU 3ȏ7Ā9Ot[3|5r0p8ߕWqDLŽ{`dw|ׄ GJz/H'Z$MΤ8Z̈<7{LpV)%k3ToCn}4>ZrȰ{rUZ9EGu49>`oq/~x▏S|f9׬?X.uBxfGbE.wW;o, BLkkK{9fgg,l|&Ma*$v#ܶ>7Ucö'nNЙ1WƫV Nu+947yG( "zoO_|cZzB@ZAݾ@aexb?>"YTgBlٍ9UFJ?"[p] phU8Փz޾L?:K;W%X$؇:b9pF^dBJR(6[-T*4!yY`'M( MPA#fT"f"?eX&RE ]2L6 ?h)8&/Baf!0tM<ŋX0z1$6$}W<1ji76$4e L,vΡTuQo:=}E˨(S0.1) d#I;P]ɵR蕺I,"?bB8|GϞ\;H -nc2߯xX1!?:t#?%gSe[ze} h)D j-O6vzu@b ixc`r&r Iڹ_> 1SSdY$`)­:] R]FITkxjgbHd.(: -﫜.%pq>>^zx,{^c]r6oެtHTC O;q]8$yBoLr {=f$' F}*%*tdsCNzc5G~¸e 2d]bsz':aWA>4+ -5u=JTH8Yn{-t}PtJx8R.\{`u[%37\rnNJFk Oj+WesMV)JYV˛81d#JL1?M?"śbQᄍfcӟr ar4ד@dv5꺜5eDfR+c=PisX8mm;EL]H|S° #ȿl S6e!3BYTg}TTaΈfgX_+t12)A{ߨcװzP*Q˩SRd*lN؏bjɇwu_ŧ03_m=/Quf -'I N?qj) -ʎӲ+Ar⻩6&HДC9mr|7rG%:Jr<(gG^Ĵ~xP^KYYD˓"$?f7ښ}Xo3'+Te|7~x9Fʓ u -ih -9Nt9uicsJw -cZ|$C[ie ";3|AzFY4WSHʘJ᧞)~%b[O?;Rw߹E5?"W|;ծI6X'\dKs}2{QA)wJtXi3uR3Tq5b|~<27bA}LXO6/'`:8gI$G,M`y}Gꦜ?)c7K !8Bʽl. ouv -KS?0Z<M^oE "1\eάI SsBITve赡 Rkvl$|i0qp -QxroHQvzŃe4`eb?V'ax * ǡ~MCC0"rsSC=y [^ՔI1d#J9&I# g߶c*B+FWndM}RYubPvc?_gMk5Zoof~G>ص͈,gk]E8?`aN/`p22it (/[@|;C]ar6X W,COQY``J_Bhq8 !;.*ĿLMbMKa{boKInUowg3Ս|Rq?'SoIV\]iTgȋ[_Z_j5'N8wM%+E:v -"Ӫax;Y `m e"bsiq>,Znè3Œe(go =$Rܬ'J:cj3f2 -N:3CC;Ov"<ȳA?9=ԇa{M˻&}Lnu4۟V[+._b$t1.}c{<0PBW*ZCƛOS 0aS5Ε-}7-*IC{1ȹAZųrO(G n69i5bDN'wL ,j"WvyMbfv&,ՆHѶG[f&Px&I뤏i=(˗z:[} $>]IlvyPd[tzw;hc9X S8{՝YJ4ks'$r+t7))m&LWQ L7)g͑".f E* -M:7jm !'3x<[r n^s:^M{9Eŷ8BtxW59%g.lK4k{܉rTI`mfl<=k)2cJ4;Um߄QM}= Dg}FBZL98 ˿kN> FfE4A9-Ps{wiw=vr-o{L;YoD?'${q/Vڌl据)]035)o6<;E٘7`Rv\G ,6h莥;]_Αa|:9j% "z7$s+$B 4*]>Q@I-oi9yUq|t[,F\}r&''8O#0Sm,Xd!b(n#ʷiޢ gWeW8$$c؂cq&W,a-Ǻ!|=4'Ը9~hZ4 u{]B.CiyMՋ+ݭZ -Fر]shl5؛~} E3+{y(خtbКĸ7_? q 2ed/=g8: MSM sbkOLؕrI^ l}坺Ff&TE54GpY%x@I$!(9;F8dC\ Ox:Bb(dTPYtv.<郁f/n|/6 SZI-Vt한kx.Dgګ -w~/[{]*2y_1Llp}b/}c>f倨w9Ъzʔ>ɆxNn:9lpD(?жT=&Kqg=geͶ+i#Wn >QX&evgt_0 qm!DI7$N7 obu2NYXU_ Xմ?)#rl9Da1K:$ Ry!tCVV_ܔV |t҂Gn2kn&M8pCq̱|ҐR]8 _rqYgTf^Ϳ30HR,خ4}@t-8ĝ#JE,@F\h7M?YNy˫fGgᅛV>P!%"қK8P 3VŷY,gf ߲9pūT9$P͇}vziMSrrF/J8%KBퟸP^k ܪ"'K+:U-ۯfqK-8: W~eq"Lߠ t5ȒѦoR0o%i%Er6A2S(A΍sݵftDXl?,VNCj4w~23vIJ{]Qz9UHva_^a!gQd _eQ:Ӡ0-bf.7TGW=NHf\'*~zUЊ-P``a2fIs#qGkkFv&}c72gٱ#Sé{Tqu _f/mH(Lnq@s߭LیH=.ЙG|aZB5I)i"zXVMt GQ}k3St݀^o -Ibh2FT6\r/A=ǖU;!o/Pӑ1Q&mCGHc[,Xπ}^!-ZP4]!)z|`y ޭ!G #~"*tJasXqƇo:"482yj QG~BWMNp]=O@BFaQpQ mVYLG 0&Ņ-7.ߪpkdZ$ݭx.mƁn/[n%4TTpqԮGD@Np=ZK{+w4V̢|DBqRocnEMf3 p67wΏIg>@SN=iϔXws^\\}ZPWLz0Q_⠜4'X"Y(pލhAWlhw"\Oqu`@Nxo{$B˫37COK0W>P];Z9bybr6m@(i{N駘ij1%߽q:zW, NScoY֥DȱU_^h>߲@փoKbӵwVF$~2SpBJR*8'|&w%fx>h),OpEYO1̂q"خЉw `f9pfӴf޶)B6U9Wev9UɆ*M5i%ݒI$d=FX?j nfQJ>KITp ksOҩ9@&WxxsFL[=[~] h9Qh!l Ƥ'#{W$"ĕcnY@u(Gr͐Usg w,gRk* ^7:dmNnMEWfPfjz -9@bG#._>A?{whOl`~#Xw -FO?]яO9~b;.gifosSKbφME+N1盇4EyK #g^H#{B#t/ur -cPwѷR\R{!x%6?4o5!ww:W#l^/p ̷{sXP٦KDF=PfrcҹAS(sè`bHPwŗg}q]Pd}#mՈbE1䏔\i?U=:)ԁ&nUCnQc6Υ1~Ԅs|(bK?Tû*0zod\8H`z+ ETlX$b>@F\B%f}gO>+UD f-R,Uu0Csyn'HpwkqZiTb*5D}[n~^UND TKU{yɅf%1si2ppO7vmyT_M K:e e-5`EW0 Z0@)(\ExfαA-]F}51YuELric53R8ތ쐳 }|)pf7tHƩέq;(K7t'Q[ShN 1|%;j.l2F\XւhE -9WQѴ2aq:}!@9Vb?ӯ'{EվڄT*4z`zQ?ڛ)pi&teg1(] rsX%KZ{V_~h(VFca1F\ۏlE^LCn=T{ 0%*T^@дGgws^P=-(/lAؽ"4e - 4{dȆ6 NB0jr붦~I=<>Y@G"\GͶ4ap:W< c/F2VWݪuԳ,;R8jU Qz8ߡ1!$J-NB*W6A.=X=а<<w}kC}uEƞ^WSq em' .iI_\5(1>e937A|vPw%8SʋL«Fר@h՞gX]^[cM?z;sCG6m'Kmz[66Ǩ((|Z "piÙ:ķki<ZuTBgt /ˁ zeruMŤCjhNG>SP2fgq(DNx F[]>MeboreWb ݲ h3.bϏMa-/1_]3!;KJyqx2R4>9 ΪǒtT6c]h~lG6>lG\p]Ǧ8Z;p X3K f.C^w1fBib*Z8R" ʼ/>;a;uu' /gBU&z(K'_m p{NfkVT l2D1D 8I EtXʂٍ5"ǡ[׬I$1zh4U"FT]a5%c`4>?3ye*c3,3""JCjfo 0nqpI|NP~@rL -q\9@qOQQv=[F'Ф+hb߼(@H -"F%Än%rvs}LbjBՙrv5;5=\tw -CxHeD[jO%:^BclX p! jo#]xOKi8F9wX[jW2S]HJ)a$R1 ~^\_{9EЍPo0-޻۠xOJzT[,5R>>cXJ;2J1/_D͜ɼJd5Wg Sv -1D,צ'g/اݑkt卜a-Mb1l" cv?cS q.)!14 y;SRnJ <' _.PF2Sm#ƿv0}Dī#T0%ڻ$M20Pr'A L˞F- ~s0_ /eR6[up\x5ɖȉ#,y רhcTym,KīQr)Z1pezŞ5 ߦ:d[$Y,P1VM,ngJ,FŇ -.F`2c]i7_Vk(_K> -endobj -131 0 obj -<< -/Length 3662 -/Length1 1466 -/Length2 2196 -/Length3 0 ->> -stream -%!PS-AdobeFont-1.0: CMTT8 003.002 -%%Title: CMTT8 -%Version: 003.002 -%%CreationDate: Mon Jul 13 16:17:00 2009 -%%Creator: David M. Jones -%Copyright: Copyright (c) 1997, 2009 American Mathematical Society -%Copyright: (), with Reserved Font Name CMTT8. -% This Font Software is licensed under the SIL Open Font License, Version 1.1. -% This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. -%%EndComments -FontDirectory/CMTT8 known{/CMTT8 findfont dup/UniqueID known{dup -/UniqueID get 5000830 eq exch/FontType get 1 eq and}{pop false}ifelse -{save true}{false}ifelse}{false}ifelse -11 dict begin -/FontType 1 def -/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def -/FontName /ISIMRT+CMTT8 def -/FontBBox {-5 -232 545 699 }readonly def -/PaintType 0 def -/FontInfo 9 dict dup begin -/version (003.002) readonly def -/Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050\051, with Reserved Font Name CMTT8.) readonly def -/FullName (CMTT8) readonly def -/FamilyName (Computer Modern) readonly def -/Weight (Medium) readonly def -/ItalicAngle 0 def -/isFixedPitch true def -/UnderlinePosition -100 def -/UnderlineThickness 50 def -end readonly def -/Encoding 256 array -0 1 255 {1 index exch /.notdef put} for -dup 76 /L put -dup 84 /T put -dup 88 /X put -dup 101 /e put -dup 105 /i put -dup 50 /two put -dup 118 /v put -dup 48 /zero put -readonly def -currentdict end -currentfile eexec -oc;jAw-24 WEvQC<3A2kX0k^|:ٴfb,|=sLu2KZ`3ndgRw@),q՜G<&h'. ΍883 ABAԾI$s@F25ڪ,i pK>6K` %E((bsP,WKT"0KDǯҖkIUܨf/+WN/r4qW@d̍OG|Babhy52+2upa,-I"MC㉮0גv\G\% ؊Z\+;7tamJsXPc0NqL%tWtį, );b&L}NֲGi$߲:[<+s\6qGq %E~@kִ[iYKq[ Pvbr~1zV -إh]\HZa2nqiNG84[(5~B.m{,?v;ɚ]QV-;S8HMKMcd;z%+R9$z\zIbp;%wsU?X)K Q -38hVrC6 {Gx|eRu{};jvfe!QYrBQqS9WJD?&;A -Q??.h3~^|w*?]PdPCʟD*E 1HG6Kt)֕hrWA-T7T㸅o*3%0yژ\]!۠z,Z\#ugA"xSJlZ}b 9uNM[]2͢h3RN͎Q9sZcLy\ɘg>}Ի5kV‡U2ZqҖ(jI4d93+- ɌMQ.C |^( -^_x4]bRcAvL !BBMcWUZb1Z$p,2t1[1,7LNkB 9QpSe5 #hx 00Λ{,B[(j/BibYc%%Zu<.xXO$BmKE.1F-4JS7KEp_ :$3ޝ?̼ ?v+Պ;#\ߗA\{VSlܺ1aPOtSâ2n㇈ArʳOV`E t RdhL͐u83$]BMR?hpW~Vԓի8 -& -c{ju]sPldAa|_}(1kMXbSLn&MXV-8oi%'R*+m뀂b@GOIfs{n?p_?5-Wuqǎ %— 1+41h )bP+&Fa?o%~O3?m|@Lsuoq9-4! cC)|v@*m6 ߩL0Gm^;#4[b,< {f6]ƒX9rsD[uu1C+!FoFcXL[&b@uT10% -> -endobj -133 0 obj -<< -/Type /Outlines -/Count 2 -/First 31 0 R -/Last 35 0 R ->> -endobj -134 0 obj -<< -/Limits [ (Doc-Start) (Item.3) ] -/Names [ (Doc-Start) 44 0 R (Hfootnote.1) 81 0 R (Hfootnote.2) 84 0 R (Item.1) 54 0 R (Item.2) 59 0 R -(Item.3) 60 0 R ] ->> -endobj -135 0 obj -<< -/Limits [ (Item.4) (section*.1) ] -/Names [ (Item.4) 61 0 R (Item.5) 62 0 R (Item.6) 63 0 R (page.1) 43 0 R (page.2) 74 0 R -(section*.1) 51 0 R ] ->> -endobj -136 0 obj -<< -/Limits [ (section*.2) (section.2) ] -/Names [ (section*.2) 79 0 R (section.1) 30 0 R (section.2) 34 0 R ] ->> -endobj -138 0 obj -<< -/Kids [ 134 0 R 135 0 R 136 0 R ] -/Limits [ (Doc-Start) (section.2) ] ->> -endobj -139 0 obj -<< -/Dests 138 0 R ->> -endobj -140 0 obj -<< -/Type /Catalog -/Names 139 0 R -/OpenAction 37 0 R -/Outlines 133 0 R -/PageMode /UseOutlines -/Pages 64 0 R ->> -endobj -141 0 obj -<< -/Author () -/CreationDate (D:20201220002337+01'00') -/Creator (LaTeX with hyperref) -/Keywords () -/ModDate (D:20201220002340+01'00') -/PTEX.Fullbanner (This is pdfTeX, Version 3.14159265-2.6-1.40.20 \(TeX Live 2019/Debian\) kpathsea version 6.3.1) -/Producer (pdfTeX-1.40.20) -/Subject () -/Title () -/Trapped /False ->> -endobj -142 0 obj -<< -/Type /XRef -/ID [ <8BDE9569A286CF89B3E0C7EE8CAF8343> <8BDE9569A286CF89B3E0C7EE8CAF8343> ] -/Index [ 0 143 ] -/Info 141 0 R -/Length 715 -/Root 140 0 R -/Size 143 -/W [ 1 3 1 ] ->> -stream - +,-Yma  -&`   2UTOPY[NQSRZW^ "$*,%\!#'V(X])./0123456789:;<=>T;?@AɣBC?_Dp]E=F3GHI6JSKzvLM_bcЏN -endstream -endobj -xref -0 143 -0000000006 65535 f -0000000015 00000 n -0000000036 00000 n -0000000057 00000 n -0000000111 00000 n -0000000272 00000 n -0000000013 00000 f -0000000862 00000 n -0000001023 00000 n -0000001613 00000 n -0000001775 00000 n -0000002366 00000 n -0000002529 00000 n -0000000014 00001 f -0000000015 00001 f -0000000016 00001 f -0000000019 00001 f -0000003120 00000 n -0000003283 00000 n -0000000022 00001 f -0000003903 00000 n -0000004066 00000 n -0000000025 00001 f -0000004686 00000 n -0000004849 00000 n -0000000028 00001 f -0000005469 00000 n -0000005632 00000 n -0000000137 00001 f -0000006352 00000 n -0000006398 00000 n -0000006465 00000 n -0000006540 00000 n -0000006608 00000 n -0000006654 00000 n -0000006721 00000 n -0000006796 00000 n -0000006824 00000 n -0000006874 00000 n -0000007024 00000 n -0000007197 00000 n -0000007370 00000 n -0000007620 00000 n -0000030371 00000 n -0000030438 00000 n -0000030505 00000 n -0000030647 00000 n -0000030788 00000 n -0000030930 00000 n -0000031071 00000 n -0000031211 00000 n -0000031352 00000 n -0000031419 00000 n -0000031561 00000 n -0000031705 00000 n -0000031772 00000 n -0000031913 00000 n -0000032055 00000 n -0000032196 00000 n -0000032335 00000 n -0000032402 00000 n -0000032469 00000 n -0000032536 00000 n -0000032603 00000 n -0000032670 00000 n -0000032738 00000 n -0000032914 00000 n -0000033136 00000 n -0000033387 00000 n -0000033648 00000 n -0000033921 00000 n -0000034097 00000 n -0000034287 00000 n -0000034486 00000 n -0000038408 00000 n -0000038475 00000 n -0000038617 00000 n -0000038838 00000 n -0000039097 00000 n -0000039369 00000 n -0000039436 00000 n -0000039575 00000 n -0000039642 00000 n -0000039782 00000 n -0000039923 00000 n -0000039989 00000 n -0000040790 00000 n -0000041938 00000 n -0000041980 00000 n -0000042328 00000 n -0000042521 00000 n -0000043540 00000 n -0000044188 00000 n -0000045186 00000 n -0000045889 00000 n -0000046809 00000 n -0000047615 00000 n -0000048672 00000 n -0000049152 00000 n -0000050155 00000 n -0000051064 00000 n -0000052226 00000 n -0000066583 00000 n -0000066919 00000 n -0000080824 00000 n -0000081153 00000 n -0000089564 00000 n -0000089798 00000 n -0000099154 00000 n -0000099397 00000 n -0000110984 00000 n -0000111247 00000 n -0000131200 00000 n -0000131594 00000 n -0000144792 00000 n -0000145092 00000 n -0000156403 00000 n -0000156691 00000 n -0000164253 00000 n -0000164479 00000 n -0000172479 00000 n -0000172713 00000 n -0000186136 00000 n -0000186439 00000 n -0000199672 00000 n -0000199955 00000 n -0000207575 00000 n -0000207818 00000 n -0000218417 00000 n -0000218674 00000 n -0000232513 00000 n -0000232839 00000 n -0000236594 00000 n -0000236832 00000 n -0000236907 00000 n -0000237083 00000 n -0000237251 00000 n -0000000000 00000 f -0000237380 00000 n -0000237473 00000 n -0000237511 00000 n -0000237638 00000 n -0000237970 00000 n -trailer -<< -/ID [ ] -/Info 141 0 R -/Root 140 0 R -/Size 143 ->> -startxref -238896 -%%EOF diff --git a/mat/domace_naloge/21/dokument.log b/mat/domace_naloge/21/dokument.log index 737705e..6548d66 100644 --- a/mat/domace_naloge/21/dokument.log +++ b/mat/domace_naloge/21/dokument.log @@ -533,4 +533,1208 @@ gfsupp_loader.code.tex tructure.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotslists tructureext.code.tex) -(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfpl \ No newline at end of file +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray +.code.tex +\c@pgfplotsarray@tmp=\count279 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatri +x.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshare +d.code.tex +\c@pgfplotstable@counta=\count280 +\t@pgfplotstable@a=\toks35 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque +.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.te +x +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.co +de.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code +.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.sur +fshading.code.tex +\c@pgfplotslibrarysurf@no=\count281 + +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surf +shading.pgfsys-pdftex.def))) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code. +tex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.t +ex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.t +ex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.cod +e.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code. +tex))) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.cod +e.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex +) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex +) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.cod +e.tex +\pgfdecoratedcompleteddistance=\dimen259 +\pgfdecoratedremainingdistance=\dimen260 +\pgfdecoratedinputsegmentcompleteddistance=\dimen261 +\pgfdecoratedinputsegmentremainingdistance=\dimen262 +\pgf@decorate@distancetomove=\dimen263 +\pgf@decorate@repeatstate=\count282 +\pgfdecorationsegmentamplitude=\dimen264 +\pgfdecorationsegmentlength=\dimen265 +) +\tikz@lib@dec@box=\box56 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.pathmorphing.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.pathmorphing.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.pathreplacing.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.pathreplacing.code.tex)) +\pgfplots@numplots=\count283 +\pgfplots@xmin@reg=\dimen266 +\pgfplots@xmax@reg=\dimen267 +\pgfplots@ymin@reg=\dimen268 +\pgfplots@ymax@reg=\dimen269 +\pgfplots@zmin@reg=\dimen270 +\pgfplots@zmax@reg=\dimen271 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryplotmarks.code.tex +File: tikzlibraryplotmarks.code.tex 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.co +de.tex +File: pgflibraryplotmarks.code.tex 2020/01/08 v3.1.5b (3.1.5b) +))) (/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty +Package: enumitem 2019/06/20 v3.9 Customized lists +\labelindent=\skip50 +\enit@outerparindent=\dimen272 +\enit@toks=\toks36 +\enit@inbox=\box57 +\enit@count@id=\count284 +\enitdp@description=\count285 +) +(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx.sty +(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty +Package: expl3 2020-02-25 L3 programming layer (loader) + +(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def +File: l3backend-pdfmode.def 2020-02-23 L3 backend support: PDF mode +\l__kernel_color_stack_int=\count286 +\l__pdf_internal_box=\box58 +)) +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty +Package: xparse 2020-02-25 L3 Experimental document command parser +\l__xparse_current_arg_int=\count287 +\g__xparse_grabber_int=\count288 +\l__xparse_m_args_int=\count289 +\l__xparse_v_nesting_int=\count290 +) +Package: siunitx 2020/02/25 v2.8b A comprehensive (SI) units package + +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty +Package: amstext 2000/06/29 v2.01 AMS text + +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty +File: amsgen.sty 1999/11/30 v2.0 generic functions +\@emptytoks=\toks37 +\ex@=\dimen273 +)) +(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty +Package: array 2019/08/31 v2.4l Tabular extension package (FMi) +\col@sep=\dimen274 +\ar@mcellbox=\box59 +\extrarowheight=\dimen275 +\NC@list=\toks38 +\extratabsurround=\skip51 +\backup@length=\skip52 +\ar@cellbox=\box60 +) +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty +Package: l3keys2e 2020-02-25 LaTeX2e option processing using LaTeX3 keys +) +\l__siunitx_tmp_box=\box61 +\l__siunitx_tmp_dim=\dimen276 +\l__siunitx_tmp_int=\count291 +\l__siunitx_number_mantissa_length_int=\count292 +\l__siunitx_number_uncert_length_int=\count293 +\l__siunitx_round_int=\count294 +\l__siunitx_process_decimal_int=\count295 +\l__siunitx_process_uncertainty_int=\count296 +\l__siunitx_process_fixed_int=\count297 +\l__siunitx_process_integer_min_int=\count298 +\l__siunitx_process_precision_int=\count299 +\l__siunitx_group_min_int=\count300 +\l__siunitx_angle_marker_box=\box62 +\l__siunitx_angle_unit_box=\box63 +\l__siunitx_angle_marker_dim=\dimen277 +\l__siunitx_angle_unit_dim=\dimen278 +\l__siunitx_unit_int=\count301 +\l__siunitx_unit_denominator_int=\count302 +\l__siunitx_unit_numerator_int=\count303 +\l__siunitx_unit_prefix_int=\count304 +\l__siunitx_unit_prefix_base_int=\count305 +\l__siunitx_unit_prefix_gram_int=\count306 +\l__siunitx_number_product_int=\count307 +\c__siunitx_one_fill_skip=\skip53 +\l__siunitx_table_unit_align_skip=\skip54 +\l__siunitx_table_exponent_dim=\dimen279 +\l__siunitx_table_integer_dim=\dimen280 +\l__siunitx_table_mantissa_dim=\dimen281 +\l__siunitx_table_marker_dim=\dimen282 +\l__siunitx_table_result_dim=\dimen283 +\l__siunitx_table_uncert_dim=\dimen284 +\l__siunitx_table_fill_pre_dim=\dimen285 +\l__siunitx_table_fill_post_dim=\dimen286 +\l__siunitx_table_fill_mid_dim=\dimen287 +\l__siunitx_table_pre_box=\box64 +\l__siunitx_table_post_box=\box65 +\l__siunitx_table_mantissa_box=\box66 +\l__siunitx_table_result_box=\box67 +\l__siunitx_table_number_align_skip=\skip55 +\l__siunitx_table_text_align_skip=\skip56 + +(/usr/share/texlive/texmf-dist/tex/latex/translator/translator.sty +Package: translator 2019-05-31 v1.12a Easy translation of strings in LaTeX +)) +(/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty +Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi) +\c@tracingmulticols=\count308 +\mult@box=\box68 +\multicol@leftmargin=\dimen288 +\c@unbalance=\count309 +\c@collectmore=\count310 +\doublecol@number=\count311 +\multicoltolerance=\count312 +\multicolpretolerance=\count313 +\full@width=\dimen289 +\page@free=\dimen290 +\premulticols=\dimen291 +\postmulticols=\dimen292 +\multicolsep=\skip57 +\multicolbaselineskip=\skip58 +\partial@page=\box69 +\last@line=\box70 +\maxbalancingoverflow=\dimen293 +\mult@rightbox=\box71 +\mult@grightbox=\box72 +\mult@gfirstbox=\box73 +\mult@firstbox=\box74 +\@tempa=\box75 +\@tempa=\box76 +\@tempa=\box77 +\@tempa=\box78 +\@tempa=\box79 +\@tempa=\box80 +\@tempa=\box81 +\@tempa=\box82 +\@tempa=\box83 +\@tempa=\box84 +\@tempa=\box85 +\@tempa=\box86 +\@tempa=\box87 +\@tempa=\box88 +\@tempa=\box89 +\@tempa=\box90 +\@tempa=\box91 +\@tempa=\box92 +\@tempa=\box93 +\@tempa=\box94 +\@tempa=\box95 +\@tempa=\box96 +\@tempa=\box97 +\@tempa=\box98 +\@tempa=\box99 +\@tempa=\box100 +\@tempa=\box101 +\@tempa=\box102 +\@tempa=\box103 +\@tempa=\box104 +\@tempa=\box105 +\@tempa=\box106 +\@tempa=\box107 +\@tempa=\box108 +\@tempa=\box109 +\@tempa=\box110 +\@tempa=\box111 +\c@minrows=\count314 +\c@columnbadness=\count315 +\c@finalcolumnbadness=\count316 +\last@try=\dimen294 +\multicolovershoot=\dimen295 +\multicolundershoot=\dimen296 +\mult@nat@firstbox=\box112 +\colbreak@box=\box113 +\mc@col@check@num=\count317 +) +(/usr/share/texlive/texmf-dist/tex/latex/tabularcalc/tabularcalc.sty +Package: tabularcalc 2009/04/20 v0.2 Compute formulas in tables + +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp.sty +Package: fp 1995/04/02 + +`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich +(/usr/share/texlive/texmf-dist/tex/latex/fp/defpattern.sty +Package: defpattern 1994/10/12 +\actioncount=\count318 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-basic.sty +Package: fp-basic 1996/05/13 +\FP@xs=\count319 +\FP@xia=\count320 +\FP@xib=\count321 +\FP@xfa=\count322 +\FP@xfb=\count323 +\FP@rega=\count324 +\FP@regb=\count325 +\FP@regs=\count326 +\FP@times=\count327 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-addons.sty +Package: fp-addons 1995/03/15 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-snap.sty +Package: fp-snap 1995/04/05 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-exp.sty +Package: fp-exp 1995/04/03 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-trigo.sty +Package: fp-trigo 1995/04/14 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-pas.sty +Package: fp-pas 1994/08/29 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-random.sty +Package: fp-random 1995/02/23 +\FPseed=\count328 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eqn.sty +Package: fp-eqn 1995/04/03 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-upn.sty +Package: fp-upn 1996/10/21 +) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eval.sty +Package: fp-eval 1995/04/03 +)) +(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty +(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex +\integerpart=\count329 +\decimalpart=\count330 +) +Package: xstring 2019/02/06 v1.83 String manipulations (CT) +) +(/usr/share/texlive/texmf-dist/tex/latex/numprint/numprint.sty +Package: numprint 2012/08/20 v1.39 Print numbers (HH) +\c@nprt@mantissa@digitsbefore=\count331 +\c@nprt@mantissa@digitsafter=\count332 +\c@nprt@exponent@digitsbefore=\count333 +\c@nprt@exponent@digitsafter=\count334 +\nprt@digitwidth=\skip59 +\nprt@sepwidth=\skip60 +\nprt@decimalwidth=\skip61 +\nprt@blockwidth=\skip62 +\nprt@digittoks=\toks39 +\nprt@pretoks=\toks40 +\nprt@posttoks=\toks41 +\nprt@thisdigit=\count335 +\nprt@curpos=\count336 +\nprt@rndpos=\count337 +\c@nprt@digitsfirstblock=\count338 +\c@nprt@blockcnt=\count339 +\c@nprt@cntprint=\count340 + +No configuration file `numprint.cfg' found.) +\tccol=\count341 +\tclin=\count342 +\tc@export=\write4 +) +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty +Package: amsmath 2020/01/20 v2.17e AMS math features +\@mathmargin=\skip63 + +For additional information on amsmath, use the `?' option. +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty +Package: amsbsy 1999/11/29 v1.2d Bold Symbols +\pmbraise@=\dimen297 +) +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty +Package: amsopn 2016/03/08 v2.02 operator names +) +\inf@bad=\count343 +LaTeX Info: Redefining \frac on input line 227. +\uproot@=\count344 +\leftroot@=\count345 +LaTeX Info: Redefining \overline on input line 389. +\classnum@=\count346 +\DOTSCASE@=\count347 +LaTeX Info: Redefining \ldots on input line 486. +LaTeX Info: Redefining \dots on input line 489. +LaTeX Info: Redefining \cdots on input line 610. +\Mathstrutbox@=\box114 +\strutbox@=\box115 +\big@size=\dimen298 +LaTeX Font Info: Redeclaring font encoding OML on input line 733. +LaTeX Font Info: Redeclaring font encoding OMS on input line 734. +\macc@depth=\count348 +\c@MaxMatrixCols=\count349 +\dotsspace@=\muskip17 +\c@parentequation=\count350 +\dspbrk@lvl=\count351 +\tag@help=\toks42 +\row@=\count352 +\column@=\count353 +\maxfields@=\count354 +\andhelp@=\toks43 +\eqnshift@=\dimen299 +\alignsep@=\dimen300 +\tagshift@=\dimen301 +\tagwidth@=\dimen302 +\totwidth@=\dimen303 +\lineht@=\dimen304 +\@envbody=\toks44 +\multlinegap=\skip64 +\multlinetaggap=\skip65 +\mathdisplay@stack=\toks45 +LaTeX Info: Redefining \[ on input line 2859. +LaTeX Info: Redefining \] on input line 2860. +) +(/usr/share/texlive/texmf-dist/tex/latex/float/float.sty +Package: float 2001/11/08 v1.3d Float enhancements (AL) +\c@float@type=\count355 +\float@exts=\toks46 +\float@box=\box116 +\@float@everytoks=\toks47 +\@floatcapt=\box117 +) +(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.sty +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty +Package: xtemplate 2020-02-25 L3 Experimental prototype document functions +\l__xtemplate_tmp_dim=\dimen305 +\l__xtemplate_tmp_int=\count356 +\l__xtemplate_tmp_muskip=\muskip18 +\l__xtemplate_tmp_skip=\skip66 +) +Package: tasks 2020/01/11 v1.1a horizontally columned lists +\g__tasks_total_items_int=\count357 +\l__tasks_columns_int=\count358 +\g__tasks_rows_int=\count359 +\g__tasks_current_col_num_int=\count360 +\g__tasks_current_row_num_int=\count361 +\l__tasks_item_columns_int=\count362 +\g__tasks_env_int=\count363 +\l__tasks_start_int=\count364 +\l__tasks_item_indent_dim=\dimen306 +\l__tasks_item_default_indent_dim=\dimen307 +\l__tasks_item_width_dim=\dimen308 +\l__tasks_label_width_dim=\dimen309 +\l__tasks_label_default_width_dim=\dimen310 +\l__tasks_label_offset_dim=\dimen311 +\l__tasks_label_default_offset_dim=\dimen312 +\l__tasks_column_sep_dim=\dimen313 +\l__tasks_correction_dim=\dimen314 +\l__tasks_full_width_dim=\dimen315 +\l__tasks_after_item_skip=\skip67 +\l__tasks_custom_after_item_skip=\skip68 +\l__tasks_before_list_skip=\skip69 +\l__tasks_after_list_skip=\skip70 +\l__tasks_item_coffin=\box118 +\l__tasks_label_coffin=\box119 +\c@task=\count365 +\l__tasks_tmpa_int=\count366 +\l__tasks_tmpb_int=\count367 +\l__tasks_tmpa_coffin=\box120 +\l__tasks_tmpa_box=\box121 + +Package xtemplate Info: Declaring object type 'tasks' taking 3 argument(s) on +(xtemplate) line 426. + + +(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.cfg)) +(/usr/share/texlive/texmf-dist/tex/latex/filecontents/filecontents.sty +Package: filecontents 2019/09/20 v1.5 Create an external file from within a LaT +eX document + + +Package filecontents Warning: This package is obsolete. Disabling it and +(filecontents) passing control to the filecontents environment +(filecontents) defined by the LaTeX kernel. + +) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty +Package: textcomp 2020/02/02 v2.0n Standard LaTeX package +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-euclide.sty +2020/01/24 3.02c tkz-euclide.sty +Package: tkz-euclide 2020/01/24 3.02c for euclidan geometry +(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.sty +2020/01/24 3.02c tkz-base.sty +Package: tkz-base 2020/01/24 3.02c tkz-base + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryangles.code.tex +File: tikzlibraryangles.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryarrows.code.tex +File: tikzlibraryarrows.code.tex 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code. +tex +File: pgflibraryarrows.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\arrowsize=\dimen316 +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.meta. +code.tex +File: pgflibraryarrows.meta.code.tex 2020/01/08 v3.1.5b (3.1.5b) +\pgfarrowinset=\dimen317 +\pgfarrowlength=\dimen318 +\pgfarrowwidth=\dimen319 +\pgfarrowlinewidth=\dimen320 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarybabel.code.tex +File: tikzlibrarybabel.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarycalc.code.tex +File: tikzlibrarycalc.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.markings.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.markings.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.shapes.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.shapes.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.text.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.text.code.tex +\pgf@lib@dec@text@box=\box122 +) +\tikz@lib@dec@te@box=\box123 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryintersections.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryintersection +s.code.tex +\pgf@intersect@solutions=\count368 +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarypatterns.code.tex +File: tikzlibrarypatterns.code.tex 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibrarypatterns.cod +e.tex +File: pgflibrarypatterns.code.tex 2020/01/08 v3.1.5b (3.1.5b) +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarypositioning.code.tex +File: tikzlibrarypositioning.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryquotes.code.tex +File: tikzlibraryquotes.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryshadows.code.tex +File: tikzlibraryshadows.code.tex 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryfadings.code.tex +File: tikzlibraryfadings.code.tex 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code +.tex +File: pgflibraryfadings.code.tex 2020/01/08 v3.1.5b (3.1.5b) +))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryshapes.misc.code.tex +File: tikzlibraryshapes.misc.code.tex 2020/01/08 v3.1.5b (3.1.5b) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshape +s.misc.code.tex +File: pgflibraryshapes.misc.code.tex 2020/01/08 v3.1.5b (3.1.5b) +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarysnakes.code.tex +File: tikzlibrarysnakes.code.tex 2020/01/08 v3.1.5b (3.1.5b) + + +Package pgf Warning: Snakes have been superseded by decorations. Please use the + decoration libraries instead of the snakes library on input line 14. + +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarythrough.code.tex +File: tikzlibrarythrough.code.tex 2020/01/08 v3.1.5b (3.1.5b) +) +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfp/xfp.sty +Package: xfp 2020-02-25 L3 Floating point unit +) +\tkzRadius=\dimen321 +\tkzLength=\dimen322 +\tkz@radi=\dimen323 +\tkz@ax=\dimen324 +\tkz@ay=\dimen325 +\tkz@bx=\dimen326 +\tkz@by=\dimen327 +\tkz@cx=\dimen328 +\tkz@cy=\dimen329 +\tkz@dx=\dimen330 +\tkz@dy=\dimen331 +\tkz@tax=\dimen332 +\tkz@tay=\dimen333 +\tkz@tbx=\dimen334 +\tkz@tby=\dimen335 +\tkz@tcx=\dimen336 +\tkz@tcy=\dimen337 +\tkz@tdx=\dimen338 +\tkz@tdy=\dimen339 +\tkz@cntmk=\count369 + +Local configuration file tkz-base.cfg found and used +(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.cfg +2020/02/04 3.02c tkz-base.cfg +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex +2020/01/24 3.02c tkz-tools-utilities.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex +2020/01/24 3.02c tkz-lib-symbols.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex +2020/01/24 3.02c tkz-tools-base.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex +2020/01/24 3.02c tkz-tools-utilities.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-math.tex +2020/01/24 3.02c tkz-tools-math.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex +2020/01/24 3.02c tkz-tools-text.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex +2020/01/24 3.02c tkz-obj-BB.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex +2020/01/24 3.02c tkz-tools-arith.tex +File: tkz-tool-arith.tex tkz-tool-arith 3.02 c +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex +2020/01/24 3.02c tkz-tools-print.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex +2020/01/24 3.02c tkz-tools-misc.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex +2020/01/24 3.02c tkz-obj-axes.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex +2020/01/24 3.02c tkz-obj-grids.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex +2020/01/24 3.02c tkz-obj-marks.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex +2020/01/24 3.02c tkz-obj-points.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex +2020/01/24 3.02c tkz-obj-rep.tex +)) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-intersections.te +x +2020/01/24 3.02c tkz-tools-intersections.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-angles.tex +2020/01/24 3.02c tkz-tools-angles.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-angles.tex +2020/01/24 3.02c tkz-tool-eu-angles.tex +\tkz@arcsize=\dimen340 +\tkz@fillsize=\dimen341 +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-arcs.tex +2020/01/24 3.02c tkz-obj-eu-arcs.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-compass.tex +2020/01/24 3.02c tkz-obj-eu-compass.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-circles.tex +2020/01/24 3.02c tkz-obj-eu-circles.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-circles.te +x +2020/01/24 3.02c tkz-obj-eu-draw-circles.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-lines.tex +2020/01/24 3.02c tkz-obj-eu-lines.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-lines.tex +2020/01/24 3.02c tkz-obj-eu-draw-lines.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points.tex +2020/01/24 3.02c tkz-obj-eu-points.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-by.tex +2020/01/24 3.02c tkz-tools-eu-points-by.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-rnd.tex +2020/01/24 3.02c tkz-obj-eu-points-rnd.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-with.tex +2020/01/24 3.02c tkz-obj-eu-points-with.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-polygons.t +ex +2020/01/24 3.02c tkz-obj-eu-polygons.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-polygons.tex +2020/01/24 3.02c tkz-obj-eu-polygons.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-protractor.tex +2020/01/24 3.02c tkz-obj-eu-protractor.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-sectors.tex +2020/01/24 3.02c tkz-obj-eu-sectors.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-show.tex +2020/01/24 3.02c tkz-obj-eu-show.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-triangles.tex +2020/01/24 3.02c tkz-obj-eu-triangles.tex +)) (/usr/share/texlive/texmf-dist/tex/latex/dirtytalk/dirtytalk.sty +Package: dirtytalk 2010/11/21 A package making "quoting" easier + +(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty +Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) +) +\c@dirtytalk@qdepth=\count370 +) +(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.sty +Package: csquotes 2019-12-06 v5.2j context-sensitive quotations (JAW) +\csq@reset=\count371 +\csq@gtype=\count372 +\csq@glevel=\count373 +\csq@qlevel=\count374 +\csq@maxlvl=\count375 +\csq@tshold=\count376 +\csq@ltx@everypar=\toks48 + +(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.def +File: csquotes.def 2019-12-06 v5.2j csquotes generic definitions (JAW) +) +Package csquotes Info: Trying to load configuration file 'csquotes.cfg'... +Package csquotes Info: ... configuration file loaded successfully. + +(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.cfg +File: csquotes.cfg +)) +(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty +\lst@mode=\count377 +\lst@gtempboxa=\box124 +\lst@token=\toks49 +\lst@length=\count378 +\lst@currlwidth=\dimen342 +\lst@column=\count379 +\lst@pos=\count380 +\lst@lostspace=\dimen343 +\lst@width=\dimen344 +\lst@newlines=\count381 +\lst@lineno=\count382 +\lst@maxwidth=\dimen345 + +(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty +File: lstmisc.sty 2019/09/10 1.8c (Carsten Heinz) +\c@lstnumber=\count383 +\lst@skipnumbers=\count384 +\lst@framebox=\box125 +) +(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg +File: listings.cfg 2019/09/10 1.8c listings configuration +)) +Package: listings 2019/09/10 1.8c (Carsten Heinz) + +(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime.sty +Package: datetime 2015/03/20 v2.60 Date Time Package + +(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fmtcount.sty +Package: fmtcount 2020/01/30 v3.07 + +(/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty +Package: xkeyval 2014/12/03 v2.7a package option processing (HA) + +(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex +(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex +\XKV@toks=\toks50 +\XKV@tempa@toks=\toks51 +) +\XKV@depth=\count385 +File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) +)) +(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcprefix.sty +Package: fcprefix 2012/09/28 + +(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcnumparser.sty +Package: fcnumparser 2017/06/15 +\fc@digit@counter=\count386 +)) +\c@padzeroesN=\count387 +\fc@tmpcatcode=\count388 +\@DT@modctr=\count389 +\@ordinalctr=\count390 +\@orgargctr=\count391 +\@strctr=\count392 +\@tmpstrctr=\count393 +\@DT@loopN=\count394 +\@DT@X=\count395 +) +(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime-defaults.sty +Package: datetime-defaults 2013/09/10 +) +\@day=\count396 +\@month=\count397 +\@year=\count398 +\c@HOUR=\count399 +\c@HOURXII=\count400 +\c@MINUTE=\count401 +\c@TOHOUR=\count402 +\c@TOMINUTE=\count403 +\c@SECOND=\count404 +\currenthour=\count405 +\currentminute=\count406 +\currentsecond=\count407 +Package datetime Info: No datetime.cfg file found, using default settings on in +put line 308. +\@dtctr=\count408 +\dayofyear=\count409 +\dayofweek=\count410 +LaTeX Info: Redefining \today on input line 736. +\dt@a=\toks52 +\dt@b=\toks53 +) +(/usr/share/texlive/texmf-dist/tex/latex/ccicons/ccicons.sty +Package: ccicons 2017/10/30 v1.6 LaTeX support for Creative Commons icons +) +(/usr/share/texlive/texmf-dist/tex/latex/chemformula/chemformula.sty +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfrac/xfrac.sty +Package: xfrac 2020-02-25 L3 Experimental split-level fractions +\l__xfrac_slash_box=\box126 +\l__xfrac_tmp_box=\box127 +\l__xfrac_denominator_bot_sep_dim=\dimen346 +\l__xfrac_numerator_bot_sep_dim=\dimen347 +\l__xfrac_numerator_top_sep_dim=\dimen348 +\l__xfrac_slash_left_sep_dim=\dimen349 +\l__xfrac_slash_right_sep_dim=\dimen350 +\l__xfrac_slash_left_muskip=\muskip19 +\l__xfrac_slash_right_muskip=\muskip20 + +Package xtemplate Info: Declaring object type 'xfrac' taking 3 argument(s) on +(xtemplate) line 80. + +) +(/usr/share/texlive/texmf-dist/tex/latex/units/nicefrac.sty +Package: nicefrac 1998/08/04 v0.9b Nice fractions +\L@UnitsRaiseDisplaystyle=\skip71 +\L@UnitsRaiseTextstyle=\skip72 +\L@UnitsRaiseScriptstyle=\skip73 +) +(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlfile.sty +Package: scrlfile 2020/01/24 v3.29 KOMA-Script package (loading files) +) +Package: chemformula 2020/02/01 v4.15i typeset chemical compounds and reactions + (CN) +\l__chemformula_tmpa_dim=\dimen351 +\l__chemformula_tmpb_dim=\dimen352 +\l__chemformula_tmpc_dim=\dimen353 +\l__chemformula_tmpa_int=\count411 +\l__chemformula_tmpb_int=\count412 +\l__chemformula_tmpc_int=\count413 +\l__chemformula_tmpa_box=\box128 +\l__chemformula_tmpb_box=\box129 +\l__chemformula_arrow_length_dim=\dimen354 +\l__chemformula_arrow_label_height_dim=\dimen355 +\l__chemformula_arrow_label_offset_dim=\dimen356 +\l__chemformula_arrow_minimum_length_dim=\dimen357 +\l__chemformula_arrow_shortage_dim=\dimen358 +\l__chemformula_arrow_offset_dim=\dimen359 +\l__chemformula_arrow_yshift_dim=\dimen360 +\l__chemformula_radical_radius_dim=\dimen361 +\l__chemformula_radical_hshift_dim=\dimen362 +\l__chemformula_radical_vshift_dim=\dimen363 +\l__chemformula_radical_space_dim=\dimen364 +\l__chemformula_arrow_head_dim=\dimen365 +\l__chemformula_name_dim=\dimen366 +\l__chemformula_adduct_space_dim=\dimen367 +\l__chemformula_charge_shift_dim=\dimen368 +\l__chemformula_subscript_shift_dim=\dimen369 +\l__chemformula_superscript_shift_dim=\dimen370 +\l__chemformula_subscript_dim=\dimen371 +\l__chemformula_superscript_dim=\dimen372 +\l__chemformula_bond_dim=\dimen373 +\l__chemformula_bond_space_dim=\dimen374 +\l__chemformula_elspec_pair_distance_dim=\dimen375 +\l__chemformula_elspec_pair_line_length_dim=\dimen376 +\l__chemformula_elspec_pair_width_dim=\dimen377 +\l__chemformula_kroegervink_positive_radius_dim=\dimen378 +\l__chemformula_kroegervink_positive_hshift_dim=\dimen379 +\l__chemformula_kroegervink_positive_vshift_dim=\dimen380 +\l__chemformula_kroegervink_positive_space_dim=\dimen381 +\l__chemformula_stoich_space_skip=\skip74 +\l__chemformula_math_space_skip=\skip75 +\l__chemformula_count_tokens_int=\count414 +\g__chemformula_lewis_int=\count415 +\l__chemformula_arrow_arg_i_box=\box130 +\l__chemformula_arrow_arg_ii_box=\box131 +\l__chemformula_superscript_box=\box132 +\l__chemformula_subscript_box=\box133 +\l__chemformula_additions_symbol_space_skip=\skip76 +\l__chemformula_plus_space_skip=\skip77 +\l__chemformula_minus_space_skip=\skip78 +) +(/usr/share/texlive/texmf-dist/tex/latex/was/gensymb.sty +Package: gensymb 2003/07/02 v1.0 (WaS) +) +(/usr/share/texlive/texmf-dist/tex/generic/ulem/ulem.sty +\UL@box=\box134 +\UL@hyphenbox=\box135 +\UL@skip=\skip79 +\UL@hook=\toks54 +\UL@height=\dimen382 +\UL@pe=\count416 +\UL@pixel=\dimen383 +\ULC@box=\box136 +Package: ulem 2019/11/18 +\ULdepth=\dimen384 +) +(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty +Package: babel 2020/02/28 3.41 The Babel package + +(/usr/share/texlive/texmf-dist/tex/generic/babel/switch.def +File: switch.def 2020/02/28 3.41 Babel switching mechanism +) +(/usr/share/texlive/texmf-dist/tex/generic/babel-slovenian/slovene.ldf +Language: slovene 2005/03/31 v1.2m Slovene support from the babel system + +(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def +File: babel.def 2020/02/28 3.41 Babel common definitions +\babel@savecnt=\count417 +\U@D=\dimen385 + +(/usr/share/texlive/texmf-dist/tex/generic/babel/txtbabel.def) +\bbl@readstream=\read3 +\bbl@dirlevel=\count418 +) +Package babel Info: Making " an active character on input line 79. +)) +(/usr/share/texlive/texmf-dist/tex/latex/cancel/cancel.sty +Package: cancel 2013/04/12 v2.2 Cancel math terms +) +(/usr/share/texlive/texmf-dist/tex/latex/tools/tabularx.sty +Package: tabularx 2020/01/15 v2.11c `tabularx' package (DPC) +\TX@col@width=\dimen386 +\TX@old@table=\dimen387 +\TX@old@col=\dimen388 +\TX@target=\dimen389 +\TX@delta=\dimen390 +\TX@cols=\count419 +\TX@ftn=\toks55 +) +(/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty +Package: colortbl 2020/01/04 v1.0e Color table columns (DPC) +\everycr=\toks56 +\minrowclearance=\skip80 +) +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets.sty +Package: exsheets 2019/09/30 v0.21k Yet another package for the creation of exe +rcise sheets and exams. +\l__exsheets_tmpa_int=\count420 +\l__exsheets_tmpb_int=\count421 +\l__exsheets_tmpc_int=\count422 +\l__exsheets_tmpd_int=\count423 +\l__exsheets_tmpe_int=\count424 +\g__exsheets_tmpa_int=\count425 +\l__exsheets_tmpa_dim=\dimen391 +\l__exsheets_tmpb_dim=\dimen392 + +(/usr/share/texlive/texmf-dist/tex/latex/environ/environ.sty +Package: environ 2014/05/04 v0.3 A new way to define environments + +(/usr/share/texlive/texmf-dist/tex/latex/trimspaces/trimspaces.sty +Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list +)) +\l__exsheets_variations_int=\count426 +\g__exsheets_questions_id_int=\count427 +\g__exsheets_questions_used_int=\count428 +\l__exsheets_include_random_int=\count429 +\l__exsheets_questions_set_int=\count430 +\g__exsheets_select_random_int=\count431 +\g__exsheets_selection_number_int=\count432 +\l__exsheets_counter_ch_int=\count433 +\l__exsheets_current_ch_int=\count434 +\l__exsheets_counter_sec_int=\count435 +\l__exsheets_current_sec_int=\count436 +\l_exsheets_counter_qu_int=\count437 +\l__exsheets_questions_skip_below_dim=\dimen393 +\l__exsheets_solutions_skip_below_dim=\dimen394 +\l__exsheets_blank_dim=\dimen395 +\l__exsheets_blank_line_increment_dim=\dimen396 +\l__exsheets_blank_line_minimum_length_dim=\dimen397 +\l__exsheets_blank_box=\box137 + +(/usr/share/texlive/texmf-dist/tex/latex/cntformats/cntformats.sty +Package: cntformats 2014/07/20 v0.7 A different way to read counters. (CN) + +(/usr/share/texlive/texmf-dist/tex/latex/cnltx/cnltx-base.sty +Package: cnltx-base 2019/11/01 v0.15 LaTeX tools and documenting facilities (CN +) + +(/usr/share/texlive/texmf-dist/tex/latex/pgfopts/pgfopts.sty +Package: pgfopts 2014/07/10 v2.1a LaTeX package options with pgfkeys +\pgfopts@list@add@a@toks=\toks57 +\pgfopts@list@add@b@toks=\toks58 +) +\c@cnltx@tmpa=\count438 +\c@cnltx@tmpb=\count439 +\c@cnltx@tmpc=\count440 +\cnltx@tmpa@length=\skip81 +\cnltx@tmpb@length=\skip82 +\cnltx@tmpc@length=\skip83 +)) +\c@question=\count441 + +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_headings.def +File: exsheets_headings.def 2019/09/30 v0.21k ExSheets headings object +\l__exsheets_heading_above_dim=\dimen398 +\l__exsheets_heading_below_dim=\dimen399 +\l__exsheets_heading_main_coffin=\box138 +\l__exsheets_heading_pre_coffin=\box139 +\l__exsheets_heading_post_coffin=\box140 +\l__exsheets_heading_title_coffin=\box141 +\l__exsheets_heading_number_coffin=\box142 +\l__exsheets_heading_points_coffin=\box143 +\l__exsheets_heading_subtitle_coffin=\box144 + +Package xtemplate Info: Declaring object type 'exsheets-heading' taking 5 +(xtemplate) argument(s) on line 184. + +) +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_headings.cfg +File: exsheets_headings.cfg 2019/09/30 v0.21k ExSheets headings instances +) +(/usr/share/texlive/texmf-dist/tex/latex/translations/translations.sty +Package: translations 2018/02/28 v1.8 internationalization of LaTeX2e packages +(CN) +)) +(/usr/share/texlive/texmf-dist/tex/latex/harpoon/harpoon.sty +Package: harpoon 1994/11/02 Harpoon drawing package by Tobias Kuipers +\argwd=\skip84 +\arght=\skip85 +) + +Package tasks Warning: You've tried setting command `\NewTasks ' on line 114. +(tasks) However, command `\NewTasks ' is deprecated. Please use +(tasks) command `\NewTasksEnvironment ' instead. Refer to the +(tasks) manual for details. + +Package csquotes Info: Checking for multilingual support... +Package csquotes Info: ... found 'babel' package. +Package csquotes Info: Adjusting default style. + +Package csquotes Warning: No style for language 'slovene'. +(csquotes) Using fallback style on input line 129. + +Package csquotes Info: Redefining alias 'default' -> 'fallback'. +(./dokument.aux) +\openout1 = `dokument.aux'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +\AtBeginShipoutBox=\box145 +Package hyperref Info: Link coloring OFF on input line 129. + (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty +Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section + +(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty +Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) +) +(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty +Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) +) +\c@section@level=\count442 +) +LaTeX Info: Redefining \ref on input line 129. +LaTeX Info: Redefining \pageref on input line 129. +LaTeX Info: Redefining \nameref on input line 129. + +(./dokument.out) (./dokument.out) +\@outlinefile=\write5 +\openout5 = `dokument.out'. + + +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +*geometry* verbose mode - [ preamble ] result: +* driver: pdftex +* paper: a4paper +* layout: +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(45.80893pt, 505.89pt, 45.80894pt) +* v-part:(T,H,B)=(48.93872pt, 722.7pt, 73.40813pt) +* \paperwidth=597.50787pt +* \paperheight=845.04684pt +* \textwidth=505.89pt +* \textheight=722.7pt +* \oddsidemargin=-26.46106pt +* \evensidemargin=-26.46106pt +* \topmargin=-60.33127pt +* \headheight=12.0pt +* \headsep=25.0pt +* \topskip=10.0pt +* \footskip=30.0pt +* \marginparwidth=65.0pt +* \marginparsep=11.0pt +* \columnsep=10.0pt +* \skip\footins=9.0pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count443 +\scratchdimen=\dimen400 +\scratchbox=\box146 +\nofMPsegments=\count444 +\nofMParguments=\count445 +\everyMPshowfont=\toks59 +\MPscratchCnt=\count446 +\MPscratchDim=\dimen401 +\MPnumerator=\count447 +\makeMPintoPDFobject=\count448 +\everyMPtoPDFconversion=\toks60 +) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf +Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 +85. + +(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv +e +)) +ABD: EveryShipout initializing macros + +Package pgfplots Warning: running in backwards compatibility mode (unsuitable t +ick labels; missing features). Consider writing \pgfplotsset{compat=1.16} into +your preamble. + on input line 129. + + +(/usr/share/texlive/texmf-dist/tex/latex/translator/translator-basic-dictionary +-English.dict +Dictionary: translator-basic-dictionary, Language: English +) +(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg +File: siunitx-abbreviations.cfg 2017/11/26 v2.7k siunitx: Abbreviated units +) +\c@lstlisting=\count449 +\symgns@font=\mathgroup6 +LaTeX Font Info: Overwriting symbol font `gns@font' in version `bold' +(Font) TS1/cmr/m/n --> TS1/cmr/b/n on input line 129. +Package gensymb Info: Math companion symbols declared on input line 129. +LaTeX Info: Redefining \degree on input line 129. +LaTeX Info: Redefining \celsius on input line 129. +Package gensymb Info: Using text companion symbols for \degree, \celsius and \p +erthousand on input line 129. +LaTeX Info: Redefining \ohm on input line 129. +Package gensymb Info: Using \textohm for \ohm on input line 129. +LaTeX Info: Redefining \micro on input line 129. +Package gensymb Info: Using \textmu for \micro on input line 129. + +Package exsheets Info: Loading custom configurations file +(exsheets) `exsheets_configurations.cfg'. + + +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_configurations.cfg +File: exsheets_configurations.cfg +) +LaTeX Font Info: Trying to load font information for U+msa on input line 129 +. + +(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd +File: umsa.fd 2013/01/14 v3.01 AMS symbols A +) +LaTeX Font Info: Trying to load font information for U+msb on input line 129 +. + +(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd +File: umsb.fd 2013/01/14 v3.01 AMS symbols B +) (./dokument.toc) +\tf@toc=\write6 +\openout6 = `dokument.toc'. + + +Overfull \hbox (8.60541pt too wide) in paragraph at lines 198--199 +[] + [] + +[1 + +{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] + +Package hyperref Warning: Composite letter `\textasciicaron+c' +(hyperref) not defined in PD1 encoding, +(hyperref) removing `\textasciicaron' on input line 203. + + +Overfull \hbox (16.93909pt too wide) in paragraph at lines 204--209 +\OT1/cmtt/m/n/10 pdf$[] \OT1/cmr/m/n/10 in/ali []$\OT1/cmtt/m/n/10 https : / / +git . sijanec . eu / sijanec / sola-[]gimb-[]2 / raw / branch / master / mat / +domace _ naloge / 21 / dokument . + [] + +[2] +Package atveryend Info: Empty hook `BeforeClearDocument' on input line 221. +Package atveryend Info: Empty hook `AfterLastShipout' on input line 221. + (./dokument.aux) +Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 221. +Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 221. +Package rerunfilecheck Info: File `dokument.out' has not changed. +(rerunfilecheck) Checksum: A4CCA4DF4C96A52E44AC95CE1EB0B2D8;131. + ) +Here is how much of TeX's memory you used: + 43882 strings out of 482235 + 1032578 string characters out of 11690443 + 13458475 words of memory out of 24000000 + 58246 multiletter control sequences out of 15000+600000 + 546825 words of font info for 79 fonts, out of 12000000 for 9000 + 395 hyphenation exceptions out of 8191 + 68i,15n,98p,1061b,1010s stack positions out of 5000i,500n,10000p,12000000b,80000s +< +/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb> +Output written on dokument.pdf (2 pages, 185401 bytes). +PDF statistics: + 142 PDF objects out of 1000 (max. 8388607) + 104 compressed objects within 2 object streams + 15 named destinations out of 1000 (max. 500000) + 125 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git a/mat/domace_naloge/21/dokument.pdf b/mat/domace_naloge/21/dokument.pdf index 57b41c0..4e54da4 100644 Binary files a/mat/domace_naloge/21/dokument.pdf and b/mat/domace_naloge/21/dokument.pdf differ diff --git a/mat/domace_naloge/21/dokument.synctex(busy) b/mat/domace_naloge/21/dokument.synctex(busy) deleted file mode 100644 index e69de29..0000000 diff --git a/mat/domace_naloge/21/stderr.log b/mat/domace_naloge/21/stderr.log index 2017c6d..af08c0e 100644 --- a/mat/domace_naloge/21/stderr.log +++ b/mat/domace_naloge/21/stderr.log @@ -1 +1 @@ -<<8BDE9569A286CF89B3E0C7EE8CAF8343>]/Index[ 0 143]/Info 141 0 R/Length 372/Root 140 0 R/Size 143/W[ 1 3 1]>> +<<2DC89D2118BB85798332BBCD0462296F>]/Index[ 0 143]/Info 141 0 R/Length 372/Root 140 0 R/Size 143/W[ 1 3 1]>> diff --git a/mat/domace_naloge/21/stdout.log b/mat/domace_naloge/21/stdout.log index b547d19..3783ea5 100644 --- a/mat/domace_naloge/21/stdout.log +++ b/mat/domace_naloge/21/stdout.log @@ -205,7 +205,307 @@ zlibrarydecorations.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.cod e.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik -zlibrarydecorations.pathmorphing.code.tex> +zlibrarydecorations.pathmorphing.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.pathmorphing.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.pathreplacing.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.pathreplacing.code.tex))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryplotmarks.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.co +de.tex))) (/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty) +(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx.sty +(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty +(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def)) +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty) +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty) +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty) +(/usr/share/texlive/texmf-dist/tex/latex/translator/translator.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty) +(/usr/share/texlive/texmf-dist/tex/latex/tabularcalc/tabularcalc.sty +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp.sty +`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich +(/usr/share/texlive/texmf-dist/tex/latex/fp/defpattern.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-basic.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-addons.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-snap.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-exp.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-trigo.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-pas.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-random.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eqn.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-upn.sty) +(/usr/share/texlive/texmf-dist/tex/latex/fp/fp-eval.sty)) +(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty +(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex)) +(/usr/share/texlive/texmf-dist/tex/latex/numprint/numprint.sty +No configuration file `numprint.cfg' found.)) +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty +For additional information on amsmath, use the `?' option. +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty) +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/float/float.sty) +(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.sty +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty) +(/usr/share/texlive/texmf-dist/tex/latex/tasks/tasks.cfg)) +(/usr/share/texlive/texmf-dist/tex/latex/filecontents/filecontents.sty + +Package filecontents Warning: This package is obsolete. Disabling it and +(filecontents) passing control to the filecontents environment +(filecontents) defined by the LaTeX kernel. + +) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-euclide.sty +2020/01/24 3.02c tkz-euclide.sty +(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.sty +2020/01/24 3.02c tkz-base.sty + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryangles.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryarrows.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code. +tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.meta. +code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarybabel.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarycalc.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.markings.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.markings.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.shapes.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.shapes.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarydecorations.text.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrary +decorations.text.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryintersections.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryintersection +s.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarypatterns.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibrarypatterns.cod +e.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarypositioning.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryquotes.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryshadows.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryfadings.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code +.tex))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryshapes.misc.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshape +s.misc.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarysnakes.code.tex + +Package pgf Warning: Snakes have been superseded by decorations. Please use the + decoration libraries instead of the snakes library on input line 14. + +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarythrough.code.tex) +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfp/xfp.sty) +Local configuration file tkz-base.cfg found and used +(/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-base.cfg +2020/02/04 3.02c tkz-base.cfg +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex +2020/01/24 3.02c tkz-tools-utilities.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex +2020/01/24 3.02c tkz-lib-symbols.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex +2020/01/24 3.02c tkz-tools-base.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex +2020/01/24 3.02c tkz-tools-utilities.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-math.tex +2020/01/24 3.02c tkz-tools-math.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex +2020/01/24 3.02c tkz-tools-text.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex +2020/01/24 3.02c tkz-obj-BB.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex +2020/01/24 3.02c tkz-tools-arith.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex +2020/01/24 3.02c tkz-tools-print.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex +2020/01/24 3.02c tkz-tools-misc.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex +2020/01/24 3.02c tkz-obj-axes.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex +2020/01/24 3.02c tkz-obj-grids.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex +2020/01/24 3.02c tkz-obj-marks.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex +2020/01/24 3.02c tkz-obj-points.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex +2020/01/24 3.02c tkz-obj-rep.tex +)) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-intersections.te +x +2020/01/24 3.02c tkz-tools-intersections.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-tools-angles.tex +2020/01/24 3.02c tkz-tools-angles.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-angles.tex +2020/01/24 3.02c tkz-tool-eu-angles.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-arcs.tex +2020/01/24 3.02c tkz-obj-eu-arcs.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-compass.tex +2020/01/24 3.02c tkz-obj-eu-compass.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-circles.tex +2020/01/24 3.02c tkz-obj-eu-circles.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-circles.te +x +2020/01/24 3.02c tkz-obj-eu-draw-circles.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-lines.tex +2020/01/24 3.02c tkz-obj-eu-lines.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-lines.tex +2020/01/24 3.02c tkz-obj-eu-draw-lines.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points.tex +2020/01/24 3.02c tkz-obj-eu-points.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-by.tex +2020/01/24 3.02c tkz-tools-eu-points-by.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-rnd.tex +2020/01/24 3.02c tkz-obj-eu-points-rnd.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-with.tex +2020/01/24 3.02c tkz-obj-eu-points-with.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-polygons.t +ex +2020/01/24 3.02c tkz-obj-eu-polygons.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-polygons.tex +2020/01/24 3.02c tkz-obj-eu-polygons.tex +) +(/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-protractor.tex +2020/01/24 3.02c tkz-obj-eu-protractor.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-sectors.tex +2020/01/24 3.02c tkz-obj-eu-sectors.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-show.tex +2020/01/24 3.02c tkz-obj-eu-show.tex +) (/usr/share/texlive/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-triangles.tex +2020/01/24 3.02c tkz-obj-eu-triangles.tex +)) (/usr/share/texlive/texmf-dist/tex/latex/dirtytalk/dirtytalk.sty +(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.sty +(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.def) +(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.cfg)) +(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty +(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty) +(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg)) +(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime.sty +(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fmtcount.sty +(/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty +(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex +(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex))) +(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcprefix.sty +(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcnumparser.sty))) +(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime-defaults.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/ccicons/ccicons.sty) +(/usr/share/texlive/texmf-dist/tex/latex/chemformula/chemformula.sty +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfrac/xfrac.sty) +(/usr/share/texlive/texmf-dist/tex/latex/units/nicefrac.sty) +(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlfile.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/was/gensymb.sty) +(/usr/share/texlive/texmf-dist/tex/generic/ulem/ulem.sty) +(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty +(/usr/share/texlive/texmf-dist/tex/generic/babel/switch.def) +(/usr/share/texlive/texmf-dist/tex/generic/babel-slovenian/slovene.ldf +(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def +(/usr/share/texlive/texmf-dist/tex/generic/babel/txtbabel.def)))) +(/usr/share/texlive/texmf-dist/tex/latex/cancel/cancel.sty) +(/usr/share/texlive/texmf-dist/tex/latex/tools/tabularx.sty) +(/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty) +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets.sty +(/usr/share/texlive/texmf-dist/tex/latex/environ/environ.sty +(/usr/share/texlive/texmf-dist/tex/latex/trimspaces/trimspaces.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/cntformats/cntformats.sty +(/usr/share/texlive/texmf-dist/tex/latex/cnltx/cnltx-base.sty +(/usr/share/texlive/texmf-dist/tex/latex/pgfopts/pgfopts.sty))) +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_headings.def) +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_headings.cfg) +(/usr/share/texlive/texmf-dist/tex/latex/translations/translations.sty)) +(/usr/share/texlive/texmf-dist/tex/latex/harpoon/harpoon.sty) + +Package tasks Warning: You've tried setting command `\NewTasks ' on line 114. +(tasks) However, command `\NewTasks ' is deprecated. Please use +(tasks) command `\NewTasksEnvironment ' instead. Refer to the +(tasks) manual for details. + + +Package csquotes Warning: No style for language 'slovene'. +(csquotes) Using fallback style on input line 129. + +(./dokument.aux) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty +(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty) +(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty)) +(./dokument.out) (./dokument.out) +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg)) +ABD: EveryShipout initializing macros + +Package pgfplots Warning: running in backwards compatibility mode (unsuitable t +ick labels; missing features). Consider writing \pgfplotsset{compat=1.16} into +your preamble. + on input line 129. + + +(/usr/share/texlive/texmf-dist/tex/latex/translator/translator-basic-dictionary +-English.dict) +(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg) +(/usr/share/texlive/texmf-dist/tex/latex/exsheets/exsheets_configurations.cfg) +(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd) +(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd) (./dokument.toc) +Overfull \hbox (8.60541pt too wide) in paragraph at lines 198--199 +[] +[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] + +Package hyperref Warning: Composite letter `\textasciicaron+c' +(hyperref) not defined in PD1 encoding, +(hyperref) removing `\textasciicaron' on input line 203. + + +Overfull \hbox (16.93909pt too wide) in paragraph at lines 204--209 +\OT1/cmtt/m/n/10 pdf$[] \OT1/cmr/m/n/10 in/ali []$\OT1/cmtt/m/n/10 https : / / +git . sijanec . eu / sijanec / sola-[]gimb-[]2 / raw / branch / master / mat / +domace _ naloge / 21 / dokument . +[2] (./dokument.aux) ) +(see the transcript file for additional information) Output written on dokument.pdf (2 pages, 185401 bytes). SyncTeX written on dokument.synctex.gz. Transcript written on dokument.log. @@ -428,3 +728,5 @@ Reading 142 0 R **** by a problem while converting or transfering the file. **** Ghostscript will attempt to recover the data. **** However, the output may be incorrect. + **** Error: stream Length incorrect. + Output may be incorrect. -- cgit v1.2.3 From 9c56ca43842e05407dddc4ebf172a37df7a8382e Mon Sep 17 00:00:00 2001 From: sijanec Date: Mon, 21 Dec 2020 22:07:32 +0100 Subject: kolo --- ru/kolo/api.php | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 ru/kolo/api.php diff --git a/ru/kolo/api.php b/ru/kolo/api.php new file mode 100644 index 0000000..c085435 --- /dev/null +++ b/ru/kolo/api.php @@ -0,0 +1,54 @@ + -- cgit v1.2.3 From c40a02a881e1abdfc1de465993cbab6ede218f6a Mon Sep 17 00:00:00 2001 From: sijanec Date: Tue, 22 Dec 2020 11:43:42 +0100 Subject: =?UTF-8?q?kemijsko=20ravnote=C5=BEje,=20pregledne=20naloge?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kem/vaje/2/1.png | Bin 0 -> 63385 bytes kem/vaje/2/10.png | Bin 0 -> 32323 bytes kem/vaje/2/3.png | Bin 0 -> 128580 bytes kem/vaje/2/4.png | Bin 0 -> 37309 bytes kem/vaje/2/dokument.aux | 39 ++ kem/vaje/2/dokument.log | 1122 +++++++++++++++++++++++++++++++++++++ kem/vaje/2/dokument.out | 2 + kem/vaje/2/dokument.pdf | Bin 0 -> 1568 bytes kem/vaje/2/dokument.synctex(busy) | 0 kem/vaje/2/dokument.synctex.gz | Bin 0 -> 37420 bytes kem/vaje/2/dokument.tex | 287 ++++++++++ kem/vaje/2/dokument.toc | 4 + kem/vaje/2/stderr.log | 0 kem/vaje/2/stdout.log | 436 ++++++++++++++ 14 files changed, 1890 insertions(+) create mode 100644 kem/vaje/2/1.png create mode 100644 kem/vaje/2/10.png create mode 100644 kem/vaje/2/3.png create mode 100644 kem/vaje/2/4.png create mode 100644 kem/vaje/2/dokument.aux create mode 100644 kem/vaje/2/dokument.log create mode 100644 kem/vaje/2/dokument.out create mode 100644 kem/vaje/2/dokument.pdf create mode 100644 kem/vaje/2/dokument.synctex(busy) create mode 100644 kem/vaje/2/dokument.synctex.gz create mode 100644 kem/vaje/2/dokument.tex create mode 100644 kem/vaje/2/dokument.toc create mode 100644 kem/vaje/2/stderr.log create mode 100644 kem/vaje/2/stdout.log diff --git a/kem/vaje/2/1.png b/kem/vaje/2/1.png new file mode 100644 index 0000000..39fcd88 Binary files /dev/null and b/kem/vaje/2/1.png differ diff --git a/kem/vaje/2/10.png b/kem/vaje/2/10.png new file mode 100644 index 0000000..dbba624 Binary files /dev/null and b/kem/vaje/2/10.png differ diff --git a/kem/vaje/2/3.png b/kem/vaje/2/3.png new file mode 100644 index 0000000..0f8434f Binary files /dev/null and b/kem/vaje/2/3.png differ diff --git a/kem/vaje/2/4.png b/kem/vaje/2/4.png new file mode 100644 index 0000000..7404283 Binary files /dev/null and b/kem/vaje/2/4.png differ diff --git a/kem/vaje/2/dokument.aux b/kem/vaje/2/dokument.aux new file mode 100644 index 0000000..73cf90e --- /dev/null +++ b/kem/vaje/2/dokument.aux @@ -0,0 +1,39 @@ +\relax +\providecommand\hyper@newdestlabel[2]{} +\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} +\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined +\global\let\oldcontentsline\contentsline +\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} +\global\let\oldnewlabel\newlabel +\gdef\newlabel#1#2{\newlabelxx{#1}#2} +\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} +\AtEndDocument{\ifx\hyper@anchor\@undefined +\let\contentsline\oldcontentsline +\let\newlabel\oldnewlabel +\fi} +\fi} +\global\let\hyper@last\relax +\gdef\HyperFirstAtBeginDocument#1{#1} +\providecommand\HyField@AuxAddToFields[1]{} +\providecommand\HyField@AuxAddToCoFields[2]{} +\providecommand\babel@aux[2]{} +\@nameuse{bbl@beforestart} +\catcode `"\active +\providecommand \exsheets@question@property [3]{} +\providecommand \exsheets@save@number [2]{} +\providecommand \exsheets@sum@of@points [1]{} +\providecommand \exsheets@sum@of@bonus [1]{} +\providecommand \exsheets@used@id [2]{} + +\babel@aux{slovene}{} +\babel@aux{slovene}{} +\@writefile{toc}{\contentsline {section}{\numberline {1}Pregledne naloge: \textit {Kemijsko ravnotežje in vplivi na kemijsko ravnotežje }}{1}{section.1}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Vir slike: profesor}}{1}{figure.1}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Vir slike: profesor}}{2}{figure.2}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces Vir slike: profesor}}{2}{figure.3}\protected@file@percent } +\exsheets@sum@of@points {0} +\exsheets@sum@of@bonus {0} +\gdef \numberofquestions {0} +\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces Vir slike: profesor}}{4}{figure.4}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {2}Zaključek}{4}{section.2}\protected@file@percent } +\gdef \@abspage@last{4} diff --git a/kem/vaje/2/dokument.log b/kem/vaje/2/dokument.log new file mode 100644 index 0000000..f5ecd5a --- /dev/null +++ b/kem/vaje/2/dokument.log @@ -0,0 +1,1122 @@ +This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020) (preloaded format=pdflatex 2020.12.21) 22 DEC 2020 11:43 +entering extended mode + \write18 enabled. + %&-line parsing enabled. +**/home/a/Documents/sola-gimb-2/kem/vaje/2/dokument.tex +(/home/a/Documents/sola-gimb-2/kem/vaje/2/dokument.tex +LaTeX2e <2020-10-01> patch level 2 +L3 programming layer <2020-12-07> xparse <2020-03-03> +(/usr/local/texlive/2020/texmf-dist/tex/latex/base/article.cls +Document Class: article 2020/04/10 v1.4m Standard LaTeX document class +(/usr/local/texlive/2020/texmf-dist/tex/latex/base/size10.clo +File: size10.clo 2020/04/10 v1.4m Standard LaTeX file (size option) +) +\c@part=\count177 +\c@section=\count178 +\c@subsection=\count179 +\c@subsubsection=\count180 +\c@paragraph=\count181 +\c@subparagraph=\count182 +\c@figure=\count183 +\c@table=\count184 +\abovecaptionskip=\skip47 +\belowcaptionskip=\skip48 +\bibindent=\dimen138 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/base/inputenc.sty +Package: inputenc 2020/08/01 v1.3d Input encoding file +\inpenc@prehook=\toks15 +\inpenc@posthook=\toks16 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/etoolbox/etoolbox.sty +Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) +\etb@tempcnta=\count185 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/hyperref/hyperref.sty +Package: hyperref 2020-05-15 v7.00e Hypertext links for LaTeX + +(/usr/local/texlive/2020/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty +Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/iftex/iftex.sty +Package: iftex 2020/03/06 v1.0d TeX engine tests +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty +Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO +) + +(/usr/local/texlive/2020/texmf-dist/tex/generic/infwarerr/infwarerr.sty +Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) +) +Package pdftexcmds Info: \pdf@primitive is available. +Package pdftexcmds Info: \pdf@ifprimitive is available. +Package pdftexcmds Info: \pdfdraftmode found. +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/keyval.sty +Package: keyval 2014/10/28 v1.15 key=value parser (DPC) +\KV@toks@=\toks17 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty +Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty +Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pdfescape/pdfescape.sty +Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/hycolor/hycolor.sty +Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty +Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/auxhook/auxhook.sty +Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/kvoptions/kvoptions.sty +Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO) +) +\@linkdim=\dimen139 +\Hy@linkcounter=\count186 +\Hy@pagecounter=\count187 + +(/usr/local/texlive/2020/texmf-dist/tex/latex/hyperref/pd1enc.def +File: pd1enc.def 2020-05-15 v7.00e Hyperref: PDFDocEncoding definition (HO) +Now handling font encoding PD1 ... +... no UTF-8 mapping file for font encoding PD1 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/intcalc/intcalc.sty +Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/etexcmds/etexcmds.sty +Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO) +) +\Hy@SavedSpaceFactor=\count188 +Package hyperref Info: Hyper figures OFF on input line 4464. +Package hyperref Info: Link nesting OFF on input line 4469. +Package hyperref Info: Hyper index ON on input line 4472. +Package hyperref Info: Plain pages OFF on input line 4479. +Package hyperref Info: Backreferencing OFF on input line 4484. +Package hyperref Info: Implicit mode ON; LaTeX internals redefined. +Package hyperref Info: Bookmarks ON on input line 4717. +\c@Hy@tempcnt=\count189 + +(/usr/local/texlive/2020/texmf-dist/tex/latex/url/url.sty +\Urlmuskip=\muskip16 +Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) +LaTeX Info: Redefining \url on input line 5076. +\XeTeXLinkMargin=\dimen140 + +(/usr/local/texlive/2020/texmf-dist/tex/generic/bitset/bitset.sty +Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) + +(/usr/local/texlive/2020/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty +Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO +) +)) +\Fld@menulength=\count190 +\Field@Width=\dimen141 +\Fld@charsize=\dimen142 +Package hyperref Info: Hyper figures OFF on input line 6347. +Package hyperref Info: Link nesting OFF on input line 6352. +Package hyperref Info: Hyper index ON on input line 6355. +Package hyperref Info: backreferencing OFF on input line 6362. +Package hyperref Info: Link coloring OFF on input line 6367. +Package hyperref Info: Link coloring with OCG OFF on input line 6372. +Package hyperref Info: PDF/A mode OFF on input line 6377. +LaTeX Info: Redefining \ref on input line 6417. +LaTeX Info: Redefining \pageref on input line 6421. + +(/usr/local/texlive/2020/texmf-dist/tex/latex/base/atbegshi-ltx.sty +Package: atbegshi-ltx 2020/08/17 v1.0a Emulation of the original atbegshi packa +ge +with kernel methods +) +\Hy@abspage=\count191 +\c@Item=\count192 +\c@Hfootnote=\count193 +) +Package hyperref Info: Driver (autodetected): hpdftex. + +(/usr/local/texlive/2020/texmf-dist/tex/latex/hyperref/hpdftex.def +File: hpdftex.def 2020-05-15 v7.00e Hyperref driver for pdfTeX + +(/usr/local/texlive/2020/texmf-dist/tex/latex/base/atveryend-ltx.sty +Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atvery packag +e +with kernel methods +) +\Fld@listcount=\count194 +\c@bookmark@seq@number=\count195 + +(/usr/local/texlive/2020/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty +Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO) + +(/usr/local/texlive/2020/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty +Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) +) +Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 +86. +) +\Hy@SectionHShift=\skip49 +) (/usr/local/texlive/2020/texmf-dist/tex/latex/geometry/geometry.sty +Package: geometry 2020/01/02 v5.9 Page Geometry + +(/usr/local/texlive/2020/texmf-dist/tex/generic/iftex/ifvtex.sty +Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. +) +\Gm@cnth=\count196 +\Gm@cntv=\count197 +\c@Gm@tempcnt=\count198 +\Gm@bindingoffset=\dimen143 +\Gm@wd@mp=\dimen144 +\Gm@odd@mp=\dimen145 +\Gm@even@mp=\dimen146 +\Gm@layoutwidth=\dimen147 +\Gm@layoutheight=\dimen148 +\Gm@layouthoffset=\dimen149 +\Gm@layoutvoffset=\dimen150 +\Gm@dimlist=\toks18 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/graphicx.sty +Package: graphicx 2020/09/09 v1.2b Enhanced LaTeX Graphics (DPC,SPQR) + +(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/graphics.sty +Package: graphics 2020/08/30 v1.4c Standard LaTeX Graphics (DPC,SPQR) + +(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/trig.sty +Package: trig 2016/01/03 v1.10 sin cos tan (DPC) +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration +) +Package graphics Info: Driver file: pdftex.def on input line 105. + +(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics-def/pdftex.def +File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex +)) +\Gin@req@height=\dimen151 +\Gin@req@width=\dimen152 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/hologo/hologo.sty +Package: hologo 2019/12/05 v1.14 A logo collection with bookmark support (HO) +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/amsfonts/amssymb.sty +Package: amssymb 2013/01/14 v3.01 AMS font symbols + +(/usr/local/texlive/2020/texmf-dist/tex/latex/amsfonts/amsfonts.sty +Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support +\@emptytoks=\toks19 +\symAMSa=\mathgroup4 +\symAMSb=\mathgroup5 +LaTeX Font Info: Redeclaring math symbol \hbar on input line 98. +LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold' +(Font) U/euf/m/n --> U/euf/b/n on input line 106. +)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/calculator/calculator.sty +Package: calculator 2014/02/20 v.2.0 +\cctr@lengtha=\dimen153 +\cctr@lengthb=\dimen154 +\cctr@epsilon=\dimen155 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgfplots/pgfplots.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex) +Package: pgfplots 2020/02/29 v1.17 Data Visualization (1.17) +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.te +x +\pgfutil@everybye=\toks20 +\pgfutil@tempdima=\dimen156 +\pgfutil@tempdimb=\dimen157 + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-li +sts.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def +\pgfutil@abb=\box47 +) (/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/pgf.revision.tex) +Package: pgfrcs 2020/12/01 v3.1.7a (3.1.7a) +)) +Package: pgf 2020/12/01 v3.1.7a (3.1.7a) + +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex +Package: pgfsys 2020/12/01 v3.1.7a (3.1.7a) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex +\pgfkeys@pathtoks=\toks21 +\pgfkeys@temptoks=\toks22 + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.c +ode.tex +\pgfkeys@tmptoks=\toks23 +)) +\pgf@x=\dimen158 +\pgf@y=\dimen159 +\pgf@xa=\dimen160 +\pgf@ya=\dimen161 +\pgf@xb=\dimen162 +\pgf@yb=\dimen163 +\pgf@xc=\dimen164 +\pgf@yc=\dimen165 +\pgf@xd=\dimen166 +\pgf@yd=\dimen167 +\w@pgf@writea=\write3 +\r@pgf@reada=\read2 +\c@pgf@counta=\count199 +\c@pgf@countb=\count266 +\c@pgf@countc=\count267 +\c@pgf@countd=\count268 +\t@pgf@toka=\toks24 +\t@pgf@tokb=\toks25 +\t@pgf@tokc=\toks26 +\pgf@sys@id@count=\count269 + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg +File: pgf.cfg 2020/12/01 v3.1.7a (3.1.7a) +) +Driver file for pgf: pgfsys-pdftex.def + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.d +ef +File: pgfsys-pdftex.def 2020/12/01 v3.1.7a (3.1.7a) + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-p +df.def +File: pgfsys-common-pdf.def 2020/12/01 v3.1.7a (3.1.7a) +))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath. +code.tex +File: pgfsyssoftpath.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\pgfsyssoftpath@smallbuffer@items=\count270 +\pgfsyssoftpath@bigbuffer@items=\count271 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol. +code.tex +File: pgfsysprotocol.code.tex 2020/12/01 v3.1.7a (3.1.7a) +)) (/usr/local/texlive/2020/texmf-dist/tex/latex/xcolor/xcolor.sty +Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK) + +(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics-cfg/color.cfg +File: color.cfg 2016/01/02 v1.6 sample color configuration +) +Package xcolor Info: Driver file: pdftex.def on input line 225. +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352. +Package xcolor Info: Model `RGB' extended on input line 1364. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371. +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex +Package: pgfcore 2020/12/01 v3.1.7a (3.1.7a) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex +\pgfmath@dimen=\dimen168 +\pgfmath@count=\count272 +\pgfmath@box=\box48 +\pgfmath@toks=\toks27 +\pgfmath@stack@operand=\toks28 +\pgfmath@stack@operation=\toks29 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code. +tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic +.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigo +nometric.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.rando +m.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.compa +rison.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base. +code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round +.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc. +code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integ +erarithmetics.code.tex))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex +\c@pgfmathroundto@lastzeros=\count273 +)) (/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.co +de.tex +File: pgfcorepoints.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\pgf@picminx=\dimen169 +\pgf@picmaxx=\dimen170 +\pgf@picminy=\dimen171 +\pgf@picmaxy=\dimen172 +\pgf@pathminx=\dimen173 +\pgf@pathmaxx=\dimen174 +\pgf@pathminy=\dimen175 +\pgf@pathmaxy=\dimen176 +\pgf@xx=\dimen177 +\pgf@xy=\dimen178 +\pgf@yx=\dimen179 +\pgf@yy=\dimen180 +\pgf@zx=\dimen181 +\pgf@zy=\dimen182 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconst +ruct.code.tex +File: pgfcorepathconstruct.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\pgf@path@lastx=\dimen183 +\pgf@path@lasty=\dimen184 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage +.code.tex +File: pgfcorepathusage.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\pgf@shorten@end@additional=\dimen185 +\pgf@shorten@start@additional=\dimen186 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.co +de.tex +File: pgfcorescopes.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\pgfpic=\box49 +\pgf@hbox=\box50 +\pgf@layerbox@main=\box51 +\pgf@picture@serial@count=\count274 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicst +ate.code.tex +File: pgfcoregraphicstate.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\pgflinewidth=\dimen187 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransform +ations.code.tex +File: pgfcoretransformations.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\pgf@pt@x=\dimen188 +\pgf@pt@y=\dimen189 +\pgf@pt@temp=\dimen190 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.cod +e.tex +File: pgfcorequick.code.tex 2020/12/01 v3.1.7a (3.1.7a) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.c +ode.tex +File: pgfcoreobjects.code.tex 2020/12/01 v3.1.7a (3.1.7a) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathproce +ssing.code.tex +File: pgfcorepathprocessing.code.tex 2020/12/01 v3.1.7a (3.1.7a) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.co +de.tex +File: pgfcorearrows.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\pgfarrowsep=\dimen191 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.cod +e.tex +File: pgfcoreshade.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\pgf@max=\dimen192 +\pgf@sys@shading@range@num=\count275 +\pgf@shadingcount=\count276 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.cod +e.tex +File: pgfcoreimage.code.tex 2020/12/01 v3.1.7a (3.1.7a) + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal. +code.tex +File: pgfcoreexternal.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\pgfexternal@startupbox=\box52 +)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.co +de.tex +File: pgfcorelayers.code.tex 2020/12/01 v3.1.7a (3.1.7a) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretranspare +ncy.code.tex +File: pgfcoretransparency.code.tex 2020/12/01 v3.1.7a (3.1.7a) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns. +code.tex +File: pgfcorepatterns.code.tex 2020/12/01 v3.1.7a (3.1.7a) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code. +tex +File: pgfcorerdf.code.tex 2020/12/01 v3.1.7a (3.1.7a) +))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.cod +e.tex +File: pgfmoduleshapes.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\pgfnodeparttextbox=\box53 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code. +tex +File: pgfmoduleplot.code.tex 2020/12/01 v3.1.7a (3.1.7a) +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version +-0-65.sty +Package: pgfcomp-version-0-65 2020/12/01 v3.1.7a (3.1.7a) +\pgf@nodesepstart=\dimen193 +\pgf@nodesepend=\dimen194 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version +-1-18.sty +Package: pgfcomp-version-1-18 2020/12/01 v3.1.7a (3.1.7a) +)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/utilities/pgffor.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex) +) (/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/math/pgfmath.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex +Package: pgffor 2020/12/01 v3.1.7a (3.1.7a) + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex) +\pgffor@iter=\dimen195 +\pgffor@skip=\dimen196 +\pgffor@stack=\toks30 +\pgffor@toks=\toks31 +)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.cod +e.tex +Package: tikz 2020/12/01 v3.1.7a (3.1.7a) + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothan +dlers.code.tex +File: pgflibraryplothandlers.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\pgf@plot@mark@count=\count277 +\pgfplotmarksize=\dimen197 +) +\tikz@lastx=\dimen198 +\tikz@lasty=\dimen199 +\tikz@lastxsaved=\dimen256 +\tikz@lastysaved=\dimen257 +\tikz@lastmovetox=\dimen258 +\tikz@lastmovetoy=\dimen259 +\tikzleveldistance=\dimen260 +\tikzsiblingdistance=\dimen261 +\tikz@figbox=\box54 +\tikz@figbox@bg=\box55 +\tikz@tempbox=\box56 +\tikz@tempbox@bg=\box57 +\tikztreelevel=\count278 +\tikznumberofchildren=\count279 +\tikznumberofcurrentchild=\count280 +\tikz@fig@count=\count281 + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.cod +e.tex +File: pgfmodulematrix.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\pgfmatrixcurrentrow=\count282 +\pgfmatrixcurrentcolumn=\count283 +\pgf@matrix@numberofcolumns=\count284 +) +\tikz@expandcount=\count285 + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarytopaths.code.tex +File: tikzlibrarytopaths.code.tex 2020/12/01 v3.1.7a (3.1.7a) +))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex +\t@pgfplots@toka=\toks32 +\t@pgfplots@tokb=\toks33 +\t@pgfplots@tokc=\toks34 +\pgfplots@tmpa=\dimen262 +\c@pgfplots@coordindex=\count286 +\c@pgfplots@scanlineindex=\count287 + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric +.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.c +ode.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplot +soldpgfsupp_loader.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.cod +e.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code +.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots +liststructure.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots +liststructureext.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots +array.code.tex +\c@pgfplotsarray@tmp=\count288 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots +matrix.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstable +shared.code.tex +\c@pgfplotstable@counta=\count289 +\t@pgfplotstable@a=\toks35 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots +deque.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.co +de.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.da +ta.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb +.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplot +s.surfshading.code.tex +\c@pgfplotslibrarysurf@no=\count290 + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots +.surfshading.pgfsys-pdftex.def))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap. +code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.cod +e.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.c +ode.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.c +ode.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandle +r.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage. +code.tex))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code. +tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessin +g.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.cod +e.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code. +tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.te +x) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarydecorations.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/modules/pgfmoduledecoration +s.code.tex +\pgfdecoratedcompleteddistance=\dimen263 +\pgfdecoratedremainingdistance=\dimen264 +\pgfdecoratedinputsegmentcompleteddistance=\dimen265 +\pgfdecoratedinputsegmentremainingdistance=\dimen266 +\pgf@decorate@distancetomove=\dimen267 +\pgf@decorate@repeatstate=\count291 +\pgfdecorationsegmentamplitude=\dimen268 +\pgfdecorationsegmentlength=\dimen269 +) +\tikz@lib@dec@box=\box58 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarydecorations.pathmorphing.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli +brarydecorations.pathmorphing.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarydecorations.pathreplacing.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli +brarydecorations.pathreplacing.code.tex)) +\pgfplots@numplots=\count292 +\pgfplots@xmin@reg=\dimen270 +\pgfplots@xmax@reg=\dimen271 +\pgfplots@ymin@reg=\dimen272 +\pgfplots@ymax@reg=\dimen273 +\pgfplots@zmin@reg=\dimen274 +\pgfplots@zmax@reg=\dimen275 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryplotmarks.code.tex +File: tikzlibraryplotmarks.code.tex 2020/12/01 v3.1.7a (3.1.7a) + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmar +ks.code.tex +File: pgflibraryplotmarks.code.tex 2020/12/01 v3.1.7a (3.1.7a) +))) +(/usr/local/texlive/2020/texmf-dist/tex/latex/enumitem/enumitem.sty +Package: enumitem 2019/06/20 v3.9 Customized lists +\labelindent=\skip50 +\enit@outerparindent=\dimen276 +\enit@toks=\toks36 +\enit@inbox=\box59 +\enit@count@id=\count293 +\enitdp@description=\count294 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/siunitx/siunitx.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3kernel/expl3.sty +Package: expl3 2020-12-07 L3 programming layer (loader) + +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def +File: l3backend-pdftex.def 2020-09-24 L3 backend support: PDF output (pdfTeX) +\l__kernel_color_stack_int=\count295 +\l__pdf_internal_box=\box60 +)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3packages/xparse/xparse.sty +Package: xparse 2020-10-27 L3 Experimental document command parser + +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3packages/xparse/xparse-generic. +tex)) +Package: siunitx 2020/02/25 v2.8b A comprehensive (SI) units package + (/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amstext.sty +Package: amstext 2000/06/29 v2.01 AMS text + +(/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsgen.sty +File: amsgen.sty 1999/11/30 v2.0 generic functions +\@emptytoks=\toks37 +\ex@=\dimen277 +)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tools/array.sty +Package: array 2020/10/01 v2.5c Tabular extension package (FMi) +\col@sep=\dimen278 +\ar@mcellbox=\box61 +\extrarowheight=\dimen279 +\NC@list=\toks38 +\extratabsurround=\skip51 +\backup@length=\skip52 +\ar@cellbox=\box62 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty +Package: l3keys2e 2020-10-27 LaTeX2e option processing using LaTeX3 keys +) +\l__siunitx_tmp_box=\box63 +\l__siunitx_tmp_dim=\dimen280 +\l__siunitx_tmp_int=\count296 +\l__siunitx_number_mantissa_length_int=\count297 +\l__siunitx_number_uncert_length_int=\count298 +\l__siunitx_round_int=\count299 +\l__siunitx_process_decimal_int=\count300 +\l__siunitx_process_uncertainty_int=\count301 +\l__siunitx_process_fixed_int=\count302 +\l__siunitx_process_integer_min_int=\count303 +\l__siunitx_process_precision_int=\count304 +\l__siunitx_group_min_int=\count305 +\l__siunitx_angle_marker_box=\box64 +\l__siunitx_angle_unit_box=\box65 +\l__siunitx_angle_marker_dim=\dimen281 +\l__siunitx_angle_unit_dim=\dimen282 +\l__siunitx_unit_int=\count306 +\l__siunitx_unit_denominator_int=\count307 +\l__siunitx_unit_numerator_int=\count308 +\l__siunitx_unit_prefix_int=\count309 +\l__siunitx_unit_prefix_base_int=\count310 +\l__siunitx_unit_prefix_gram_int=\count311 +\l__siunitx_number_product_int=\count312 +\c__siunitx_one_fill_skip=\skip53 +\l__siunitx_table_unit_align_skip=\skip54 +\l__siunitx_table_exponent_dim=\dimen283 +\l__siunitx_table_integer_dim=\dimen284 +\l__siunitx_table_mantissa_dim=\dimen285 +\l__siunitx_table_marker_dim=\dimen286 +\l__siunitx_table_result_dim=\dimen287 +\l__siunitx_table_uncert_dim=\dimen288 +\l__siunitx_table_fill_pre_dim=\dimen289 +\l__siunitx_table_fill_post_dim=\dimen290 +\l__siunitx_table_fill_mid_dim=\dimen291 +\l__siunitx_table_pre_box=\box66 +\l__siunitx_table_post_box=\box67 +\l__siunitx_table_mantissa_box=\box68 +\l__siunitx_table_result_box=\box69 +\l__siunitx_table_number_align_skip=\skip55 +\l__siunitx_table_text_align_skip=\skip56 +(/usr/local/texlive/2020/texmf-dist/tex/latex/translator/translator.sty +Package: translator 2020-08-03 v1.12c Easy translation of strings in LaTeX +)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tools/multicol.sty +Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi) +\c@tracingmulticols=\count313 +\mult@box=\box70 +\multicol@leftmargin=\dimen292 +\c@unbalance=\count314 +\c@collectmore=\count315 +\doublecol@number=\count316 +\multicoltolerance=\count317 +\multicolpretolerance=\count318 +\full@width=\dimen293 +\page@free=\dimen294 +\premulticols=\dimen295 +\postmulticols=\dimen296 +\multicolsep=\skip57 +\multicolbaselineskip=\skip58 +\partial@page=\box71 +\last@line=\box72 +\maxbalancingoverflow=\dimen297 +\mult@rightbox=\box73 +\mult@grightbox=\box74 +\mult@gfirstbox=\box75 +\mult@firstbox=\box76 +\@tempa=\box77 +\@tempa=\box78 +\@tempa=\box79 +\@tempa=\box80 +\@tempa=\box81 +\@tempa=\box82 +\@tempa=\box83 +\@tempa=\box84 +\@tempa=\box85 +\@tempa=\box86 +\@tempa=\box87 +\@tempa=\box88 +\@tempa=\box89 +\@tempa=\box90 +\@tempa=\box91 +\@tempa=\box92 +\@tempa=\box93 +\@tempa=\box94 +\@tempa=\box95 +\@tempa=\box96 +\@tempa=\box97 +\@tempa=\box98 +\@tempa=\box99 +\@tempa=\box100 +\@tempa=\box101 +\@tempa=\box102 +\@tempa=\box103 +\@tempa=\box104 +\@tempa=\box105 +\@tempa=\box106 +\@tempa=\box107 +\@tempa=\box108 +\@tempa=\box109 +\@tempa=\box110 +\@tempa=\box111 +\@tempa=\box112 +\@tempa=\box113 +\c@minrows=\count319 +\c@columnbadness=\count320 +\c@finalcolumnbadness=\count321 +\last@try=\dimen298 +\multicolovershoot=\dimen299 +\multicolundershoot=\dimen300 +\mult@nat@firstbox=\box114 +\colbreak@box=\box115 +\mc@col@check@num=\count322 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tabularcalc/tabularcalc.sty +Package: tabularcalc 2009/04/20 v0.2 Compute formulas in tables + +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp.sty +Package: fp 1995/04/02 + +`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/defpattern.sty +Package: defpattern 1994/10/12 +\actioncount=\count323 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-basic.sty +Package: fp-basic 1996/05/13 +\FP@xs=\count324 +\FP@xia=\count325 +\FP@xib=\count326 +\FP@xfa=\count327 +\FP@xfb=\count328 +\FP@rega=\count329 +\FP@regb=\count330 +\FP@regs=\count331 +\FP@times=\count332 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-addons.sty +Package: fp-addons 1995/03/15 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-snap.sty +Package: fp-snap 1995/04/05 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-exp.sty +Package: fp-exp 1995/04/03 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-trigo.sty +Package: fp-trigo 1995/04/14 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-pas.sty +Package: fp-pas 1994/08/29 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-random.sty +Package: fp-random 1995/02/23 +\FPseed=\count333 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-eqn.sty +Package: fp-eqn 1995/04/03 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-upn.sty +Package: fp-upn 1996/10/21 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-eval.sty +Package: fp-eval 1995/04/03 +)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/xstring/xstring.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/xstring/xstring.tex +\integerpart=\count334 +\decimalpart=\count335 +) +Package: xstring 2019/02/06 v1.83 String manipulations (CT) +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/numprint/numprint.sty +Package: numprint 2012/08/20 v1.39 Print numbers (HH) +\c@nprt@mantissa@digitsbefore=\count336 +\c@nprt@mantissa@digitsafter=\count337 +\c@nprt@exponent@digitsbefore=\count338 +\c@nprt@exponent@digitsafter=\count339 +\nprt@digitwidth=\skip59 +\nprt@sepwidth=\skip60 +\nprt@decimalwidth=\skip61 +\nprt@blockwidth=\skip62 +\nprt@digittoks=\toks39 +\nprt@pretoks=\toks40 +\nprt@posttoks=\toks41 +\nprt@thisdigit=\count340 +\nprt@curpos=\count341 +\nprt@rndpos=\count342 +\c@nprt@digitsfirstblock=\count343 +\c@nprt@blockcnt=\count344 +\c@nprt@cntprint=\count345 + +No configuration file `numprint.cfg' found.) +\tccol=\count346 +\tclin=\count347 +\tc@export=\write4 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsmath.sty +Package: amsmath 2020/09/23 v2.17i AMS math features +\@mathmargin=\skip63 + +For additional information on amsmath, use the `?' option. +(/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsbsy.sty +Package: amsbsy 1999/11/29 v1.2d Bold Symbols +\pmbraise@=\dimen301 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsopn.sty +Package: amsopn 2016/03/08 v2.02 operator names +) +\inf@bad=\count348 +LaTeX Info: Redefining \frac on input line 234. +\uproot@=\count349 +\leftroot@=\count350 +LaTeX Info: Redefining \overline on input line 399. +\classnum@=\count351 +\DOTSCASE@=\count352 +LaTeX Info: Redefining \ldots on input line 496. +LaTeX Info: Redefining \dots on input line 499. +LaTeX Info: Redefining \cdots on input line 620. +\Mathstrutbox@=\box116 +\strutbox@=\box117 +\big@size=\dimen302 +LaTeX Font Info: Redeclaring font encoding OML on input line 743. +LaTeX Font Info: Redeclaring font encoding OMS on input line 744. +\macc@depth=\count353 +\c@MaxMatrixCols=\count354 +\dotsspace@=\muskip17 +\c@parentequation=\count355 +\dspbrk@lvl=\count356 +\tag@help=\toks42 +\row@=\count357 +\column@=\count358 +\maxfields@=\count359 +\andhelp@=\toks43 +\eqnshift@=\dimen303 +\alignsep@=\dimen304 +\tagshift@=\dimen305 +\tagwidth@=\dimen306 +\totwidth@=\dimen307 +\lineht@=\dimen308 +\@envbody=\toks44 +\multlinegap=\skip64 +\multlinetaggap=\skip65 +\mathdisplay@stack=\toks45 +LaTeX Info: Redefining \[ on input line 2923. +LaTeX Info: Redefining \] on input line 2924. +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/float/float.sty +Package: float 2001/11/08 v1.3d Float enhancements (AL) +\c@float@type=\count360 +\float@exts=\toks46 +\float@box=\box118 +\@float@everytoks=\toks47 +\@floatcapt=\box119 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tasks/tasks.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.st +y +Package: xtemplate 2020-10-27 L3 Experimental prototype document functions +\l__xtemplate_tmp_dim=\dimen309 +\l__xtemplate_tmp_int=\count361 +\l__xtemplate_tmp_muskip=\muskip18 +\l__xtemplate_tmp_skip=\skip66 +) +Package: tasks 2020/08/19 v1.3 lists with columns filled horizontally +\g__tasks_total_items_int=\count362 +\l__tasks_columns_int=\count363 +\g__tasks_rows_int=\count364 +\g__tasks_current_col_num_int=\count365 +\g__tasks_current_row_num_int=\count366 +\l__tasks_item_columns_int=\count367 +\g__tasks_env_int=\count368 +\l__tasks_start_int=\count369 +\l__tasks_item_indent_dim=\dimen310 +\l__tasks_item_default_indent_dim=\dimen311 +\l__tasks_item_width_dim=\dimen312 +\l__tasks_label_width_dim=\dimen313 +\l__tasks_label_default_width_dim=\dimen314 +\l__tasks_label_offset_dim=\dimen315 +\l__tasks_label_default_offset_dim=\dimen316 +\l__tasks_column_sep_dim=\dimen317 +\l__tasks_correction_dim=\dimen318 +\l__tasks_full_width_dim=\dimen319 +\l__tasks_after_item_skip=\skip67 +\l__tasks_custom_after_item_skip=\skip68 +\l__tasks_before_list_skip=\skip69 +\l__tasks_after_list_skip=\skip70 +\l__tasks_item_coffin=\box120 +\l__tasks_label_coffin=\box121 +\c@task=\count370 +\l__tasks_tmpa_int=\count371 +\l__tasks_tmpb_int=\count372 +\l__tasks_tmpa_coffin=\box122 +\l__tasks_tmpa_box=\box123 + +Package xtemplate Info: Declaring object type 'tasks' taking 3 argument(s) on +(xtemplate) line 443. + + (/usr/local/texlive/2020/texmf-dist/tex/latex/tasks/tasks.cfg)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/filecontents/filecontents.sty +Package: filecontents 2019/09/20 v1.5 Create an external file from within a LaT +eX document + + +Package filecontents Warning: This package is obsolete. Disabling it and +(filecontents) passing control to the filecontents environment +(filecontents) defined by the LaTeX kernel. + +) (/usr/local/texlive/2020/texmf-dist/tex/latex/base/textcomp.sty +Package: textcomp 2020/02/02 v2.0n Standard LaTeX package +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-euclide.sty +2020/03/18 3.06c tkz-euclide.sty +Package: tkz-euclide 2020/03/18 3.06c for euclidan geometry +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-base.sty +2020/03/18 3.06c tkz-base.sty +Package: tkz-base 2020/03/18 3.06c tkz-base + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryangles.code.tex +File: tikzlibraryangles.code.tex 2020/12/01 v3.1.7a (3.1.7a) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryarrows.code.tex +File: tikzlibraryarrows.code.tex 2020/12/01 v3.1.7a (3.1.7a) + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows. +code.tex +File: pgflibraryarrows.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\arrowsize=\dimen320 +)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows. +meta.code.tex +File: pgflibraryarrows.meta.code.tex 2020/12/01 v3.1.7a (3.1.7a) +\pgfarrowinset=\dimen321 +\pgfarrowlength=\dimen322 +\pgfarrowwidth=\dimen323 +\pgfarrowlinewidth=\dimen324 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarybabel.code.tex +File: tikzlibrarybabel.code.tex 2020/12/01 v3.1.7a (3.1.7a) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarycalc.code.tex +File: tikzlibrarycalc.code.tex 2020/12/01 v3.1.7a (3.1.7a) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarydecorations.markings.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli +brarydecorations.markings.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarydecorations.shapes.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli +brarydecorations.shapes.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarydecorations.text.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli +brarydecorations.text.code.tex +\pgf@lib@dec@text@box=\box124 +) +\tikz@lib@dec@te@box=\box125 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryintersections.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibraryinterse +ctions.code.tex +\pgf@intersect@solutions=\count373 +)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarypatterns.code.tex +File: tikzlibrarypatterns.code.tex 2020/12/01 v3.1.7a (3.1.7a) + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibrarypattern +s.code.tex +File: pgflibrarypatterns.code.tex 2020/12/01 v3.1.7a (3.1.7a) +)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarypositioning.code.tex +File: tikzlibrarypositioning.code.tex 2020/12/01 v3.1.7a (3.1.7a) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryquotes.code.tex +File: tikzlibraryquotes.code.tex 2020/12/01 v3.1.7a (3.1.7a) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryshadows.code.tex +File: tikzlibraryshadows.code.tex 2020/12/01 v3.1.7a (3.1.7a) + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryfadings.code.tex +File: tikzlibraryfadings.code.tex 2020/12/01 v3.1.7a (3.1.7a) + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings +.code.tex +File: pgflibraryfadings.code.tex 2020/12/01 v3.1.7a (3.1.7a) +))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryshapes.misc.code.tex +File: tikzlibraryshapes.misc.code.tex 2020/12/01 v3.1.7a (3.1.7a) + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibrary +shapes.misc.code.tex +File: pgflibraryshapes.misc.code.tex 2020/12/01 v3.1.7a (3.1.7a) +)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarythrough.code.tex +File: tikzlibrarythrough.code.tex 2020/12/01 v3.1.7a (3.1.7a) +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3packages/xfp/xfp.sty +Package: xfp 2020-10-27 L3 Floating point unit +) +\tkzRadius=\dimen325 +\tkzLength=\dimen326 +\tkz@radi=\dimen327 +\tkz@ax=\dimen328 +\tkz@ay=\dimen329 +\tkz@bx=\dimen330 +\tkz@by=\dimen331 +\tkz@cx=\dimen332 +\tkz@cy=\dimen333 +\tkz@dx=\dimen334 +\tkz@dy=\dimen335 +\tkz@tax=\dimen336 +\tkz@tay=\dimen337 +\tkz@tbx=\dimen338 +\tkz@tby=\dimen339 +\tkz@tcx=\dimen340 +\tkz@tcy=\dimen341 +\tkz@tdx=\dimen342 +\tkz@tdy=\dimen343 +\tkz@cntmk=\count374 + +Local configuration file tkz-base.cfg found and used +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-base.cfg +2020/03/18 3.06c tkz-base.cfg +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex +2020/03/18 3.06c tkz-tools-utilities.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex +2020/03/18 3.06c tkz-lib-symbols.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex +2020/03/18 3.06c tkz-tools-base.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-t \ No newline at end of file diff --git a/kem/vaje/2/dokument.out b/kem/vaje/2/dokument.out new file mode 100644 index 0000000..b31cab7 --- /dev/null +++ b/kem/vaje/2/dokument.out @@ -0,0 +1,2 @@ +\BOOKMARK [1][-]{section.1}{Pregledne naloge: Kemijsko ravnote\236je in vplivi na kemijsko ravnote\236je }{}% 1 +\BOOKMARK [1][-]{section.2}{Zakljucek}{}% 2 diff --git a/kem/vaje/2/dokument.pdf b/kem/vaje/2/dokument.pdf new file mode 100644 index 0000000..3b29eec Binary files /dev/null and b/kem/vaje/2/dokument.pdf differ diff --git a/kem/vaje/2/dokument.synctex(busy) b/kem/vaje/2/dokument.synctex(busy) new file mode 100644 index 0000000..e69de29 diff --git a/kem/vaje/2/dokument.synctex.gz b/kem/vaje/2/dokument.synctex.gz new file mode 100644 index 0000000..c9af7ff Binary files /dev/null and b/kem/vaje/2/dokument.synctex.gz differ diff --git a/kem/vaje/2/dokument.tex b/kem/vaje/2/dokument.tex new file mode 100644 index 0000000..6bad969 --- /dev/null +++ b/kem/vaje/2/dokument.tex @@ -0,0 +1,287 @@ +% !TeX encoding = UTF-8 +% !TeX spellcheck = sl_SI +% do-vimlatex-onwrite +\documentclass[]{article} +\usepackage[utf8]{inputenc} +\usepackage{etoolbox} +\usepackage[hidelinks]{hyperref} +\usepackage[a4paper, total={7in, 10in}]{geometry} +\usepackage{graphicx} +\usepackage{hologo} +\usepackage{amssymb} +\usepackage{calculator} +\usepackage{pgfplots} +\usepackage[inline]{enumitem} +\usepackage{siunitx} +\usepackage{multicol} +\usepackage{tabularcalc} +\usepackage{amsmath} +\usepackage{float} +\usepackage{tasks} +\usepackage{filecontents} +\usepackage{textcomp} +\usepackage{tkz-euclide} +\usepackage{dirtytalk} +\usepackage{csquotes} +\usepackage{listings} +\usepackage{datetime} % [ddMMyyyy] +\usepackage{ccicons} +\usepackage{chemformula} +\usepackage{gensymb} +\usepackage[normalem]{ulem} +\usepackage[slovene]{babel} +\usepackage{cancel} +\usepackage{tabularx} +\usepackage{xcolor} +\usepackage{colortbl} +\usepackage{exsheets} +\usepackage{harpoon} +\newcolumntype{Y}{>{\centering\arraybackslash}X} +% \usepackage{multienum} % weird with labels +\usetikzlibrary{calc} %% not really needed............. idk. +%\usetikzlibrary{external} +% \usetkzobj{all} % tkz-euclide > 3.02 tega ne potrebuje več (: +%\tikzexternalize +\sisetup{output-decimal-marker = {,}, quotient-mode=fraction,per-mode=fraction} % per-mode=symbol +\newcommand\ddfrac[2]{\frac{\displaystyle #1}{\displaystyle #2}} +\newcommand{\functionSamples}{100} % fix to fancier value upon release, keep low during development +\newcommand{\razhroscevanje}{1} +\definecolor{codegreen}{rgb}{0,0.6,0} +\definecolor{codered}{rgb}{1,0,0} +\definecolor{codegray}{rgb}{0.5,0.5,0.5} +\definecolor{codepurple}{rgb}{0.58,0,0.82} +\definecolor{backcolour}{rgb}{0.95,0.95,0.92} +\renewcommand{\dateseparator}{. } +\settimeformat{hhmmsstime} +\lstdefinestyle{mystyle}{ + backgroundcolor=\color{backcolour}, + commentstyle=\color{codegreen}, + keywordstyle=\color{magenta}, + numberstyle=\tiny\color{codegray}, + stringstyle=\color{codepurple}, + basicstyle=\ttfamily\footnotesize, + breakatwhitespace=false, + breaklines=true, + captionpos=b, + keepspaces=true, + numbers=left, + numbersep=5pt, + showspaces=false, + showstringspaces=false, + showtabs=false, + tabsize=2 +} +\lstset{style=mystyle} +\def\@maketitle{% + \newpage + \null + \vskip 2em% + \begin{center}% + \let \footnote \thanks + {\LARGE \@title \par}% + \vskip 1.5em% + {\large + \lineskip .5em% + \begin{tabular}[t]{c}% <------ + \@author% <------ Authors + \end{tabular}\par}% <------ + \vskip 1em% + {\large \@date}% + \end{center}% + \par + \vskip 1.5em} +%opening +\newcommand{\snovdn}{Kemijsko ravnotežje in vplivi na kemijsko ravnotežje } +\newcommand{\predmdn}{kem} +\newcommand{\predmkaj}{vaje} +\newcommand{\stevilkadn}{2} +\newcommand{\cm}[1]{\SI{#1}{\centi\meter}} +\newcommand{\kmh}[1]{\SI{#1}{\kilo\meter\per\hour}} +\makeatletter +\newcommand{\xslalph}[1]{\expandafter\@xslalph\csname c@#1\endcsname} +\newcommand{\@xslalph}[1]{% + \ifcase#1\or a\or b\or c\or \v{c}\or d\or e\or f\or g\or h\or i% + \or j\or k\or l\or m\or n\or o\or p\or r\or s\or \v{s}% + \or t\or u\or v\or z\or \v{z} + \else\@ctrerr\fi% +} +\AddEnumerateCounter{\xslalph}{\@xslalph}{m} +\makeatother +\newcommand\gauss[2]{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))} % Gauss function, parameters mu and sigma +\newcommand*\textfrac[2]{ + \frac{\text{#1}}{\text{#2}} +} +\NewTasks[counter-format=\xslalph*),label-format=\bfseries]{primerTasks}(3) +\newcommand\vektor{\overrightarrow} +\newcommand{\iic}{I\textsuperscript{2}C } +\title{% + \snovdn --- \stevilkadn. vaja + \\ + \large Kemija, Gimnazija Bežigrad} +\author{\begin{tabular}{rl} + \textbf{Profesor:} & prof. Gašper Pernek\\ + \textbf{Avtor:} & Anton Luka Šijanec, 2. a +% \textbf{Avtor:} & Anton Luka Šijanec \\ & Member 2 \\ & Member 3 +\end{tabular}} +\newcommand\hcancel[2][black]{\setbox0=\hbox{$#2$}% +\rlap{\raisebox{.45\ht0}{\textcolor{#1}{\rule{\wd0}{1pt}}}}#2} +% \everymath{\displaystyle} % https://tex.stackexchange.com/a/32847/212260 +\begin{document} +\maketitle +\begin{abstract} +Ta dokument vsebuje vajo, ki zajema snov \textit{\snovdn}pri kemiji. +\end{abstract} +\tableofcontents +\section{Pregledne naloge: \textit{\snovdn}} +\begin{enumerate}[label=\textbf{\arabic*.}] + \item Sliki prikazujeta stanje pred reakcijo in ravnotežno stanje. + \begin{figure}[H] + \centering + \includegraphics[width=0.7\textwidth]{1.png} + \caption{Vir slike: profesor} + \end{figure} + \begin{enumerate}[label=\xslalph*)] + \item Zapiši urejeno enačbo reakcije z agregatnimi stanji, ki poteče. + $$\ch{2 CO(g) + O2(g) <=> 2 CO2(g)}$$ + \item Zapiši izraz za konstanto ravnotežja in izračunaj njeno vrednost, če predpostavimo, da vsak model molekule v \SI{1,4}{\L} posodi predstavlja množino \SI{0,025}{\mole}. + $$K_c=\frac{[\ch{CO2}]^2}{[\ch{CO}]^2\cdot[O]}=\frac{0,0013}{0,000358}=3,6$$ + \end{enumerate} + \item Vrednost konstante ravnotežja za prikazano reakcijo je 0,0245. + $$\ch{2 NOCl(g) <=> 2 NO(g) + CL2(g)}$$ + Zapiši izraz za ravnotežno konstanto in izračunaj njeno vrednost za spodnji reakciji: + + \begin{tabular}{cc} + $$\ch{NOCl(g) <=> NO(g) + 1/2 CL2(g)}$$ & $$K_c = 0,16$$\\ + $$\ch{2 NO(g) + Cl2(g) <=> 2 NOCl(g)}$$ & $$K_c = 40,8$$ + \end{tabular} + \item Prikazani so štirje grafi spreminjanja koncentracije reaktantov A in B ter produktov C in D v odvisnosti od časa pri različnih pogojih. Kateri graf ustreza reakciji z največjo konstanto ravnotežja $K_c$? + \begin{figure}[H] + \centering + \includegraphics[width=0.9\textwidth]{3.png} + \caption{Vir slike: profesor} + \end{figure} + Največja konstanta ravnotežja $K_c$ pripada grafu 2. + Najmanjša konstanta ravnotežja $K_c$ pripada grafu 4, ker je tam koncentracija reaktantov najbolj različna od koncentracije produktov. + \item Prikazan je diagram spremembe koncentracij v odvisnosti od časa pri ravnotežni reakciji. Ali izraz za konstanto ravnotežja ustreza reakciji, prikazani na grafu? Vse snovi so plini. Utemelji. + \begin{multicols}{2} + \begin{figure}[H] + \centering + \includegraphics[width=0.4\textwidth]{4.png} + \caption{Vir slike: profesor} + \end{figure} + $$K_c=\frac{[\ch{SO2}]^2\cdot[\ch{O2}]}{[\ch{SO3}]^2}$$ + Ne, ne ustreza, ker morajo biti reaktanti napisani v števcu, tukajle pa so v imenovalcu. + Zapiši enačbo reakcije homogenega ravnotežja, ki jo prikazuje graf: + $$\ch{2 SO2(g) + O2(g) <=> 2 SO3(g)}$$ + \end{multicols} + Kakšen bi bil izraz za konstanto ravnotežja, če bi žveplov trioksid \ch{SO3} bil v trdnem agregatnem stanju? + $$K_c=\frac{1}{[\ch{SO2}]^2\cdot[\ch{O2}]}$$ + \item Metanol dobimo pri ravnotežni homogeni reakciji med ogljikovim oksidom in vodikom po enačbi \ch{CO(g) + 2 H2(g) <=> CH3OH(g)}. Pri določenih pogojih smo v posodi s prostornino \SI{900}{\milli\L} imeli na začetku \SI{0,345}{\mole} ogljikovega oksida in \SI{0,678}{\mole} vodika, v ravnotežju pa \SI{0,045}{\mol} metanola. Izračunaj ravnotežne koncentracije vseh snovi in konstanto ravnotežja $K_c$. + + \begin{tabular}{c||c|c|c} + & \ch{CO} & \ch{H2} & \ch{CH3OH} \\ + \hline + začetek & 0,38 M & 0,75 M & 0 \\ + \hline + potek & $-x$ & $-2x$ & $+x$ \\ + \hline + konec & 0,33 M & 0,65 M & 0,05 M + \end{tabular} + + $$x=0,05 \text{M}$$ + % $$C_r(\ch{CO}=0,33 \text{M});\ C_r(\ch{H2})=0,64 \text{M};\ C_r(\ch{CH3OH})=0,05 \text{M}$$ + $$[\ch{CO}]=0,33 \text{M}\ [\ch{H2}]=0,64 \text{M}\ [\ch{CH3OH}]=0,05 \text{M}\ K_c=0,36$$ + \item Dušikov(IV) oksid pridobivamo z reakcijo med kisikom in dušikovim(II) oksidom. + \begin{enumerate}[label=\xslalph*)] + \item Zapišite urejeno enačbo reakcije nastanka dušikovega(IV) oksida. + $$\ch{2 NO(g) + O2(g) <=> NO2(g)}$$ + \item Pri neki temperaturi ima konstanta ravnotežja $K_c$ vrednost 0,456. Izračunajte \textbf{ravnotežno koncentracijo} in \textbf{maso} kisika, če imamo v ravnotežju v \SI{750}{\milli\L} posodi \SI{0,500}{\mole} dušikovega(II) oksida in \SI{0,100}{\mole} dušikovega(IV) oksida. + $$ + C_R(\ch{NO})=0,67 \text{M};\ C_R(\ch{NO2})=0,13 \text{M};\ + K_c=\frac{[\ch{NO2}]^2}{[\ch{O2}]\cdot[\ch{NO}]^2};\ + C_R(\ch{O2})=\frac{[\ch{NO2}]^2}{K_c\cdot[\ch{NO}]^2};\ + C_R(\ch{O2})=0,083 \text{M} + $$ + \end{enumerate} + $$[\ch{O2}]=0,083 \text{M}\ m(\ch{O2})_R=\SI{0,9}{\gram}$$ + \item Zapisana enačba opisuje kemijsko reakcijo sinteze metanola \ch{CH3OH}. Ugotovite vplive na položaj ravnotežja. \textbf{\ch{CO(g) + 2 H2(g) <=> CH3OH(g)}}\ \ \ $\Delta H_r^\circ=\SI{-91}{\kilo\joule}$ + + \begin{tabular}{|c|c|} + \hline + \textbf{DEJAVNIK VPLIVA} & \textbf{VPLIV NA RAVNOTEŽJE} \\ + \hline + \textbf{Sistemu povišamo temperaturo.} & V levo \\ + \hline + \textbf{Sistemu povečamo tlak.} & V desno \\ + \hline + \textbf{Dodamo dodatno količino ogljikovega oksida.} & V desno \\ + \hline + \textbf{Odvzamemo neko količino metanola} & V desno \\ + \hline + \textbf{Dodamo \SI{0,5}{\mole\per\L} argona.} & Ni vpliva \\ + \hline + \end{tabular} + \item Pri endotermni ravnotežni reakciji, ki jo ponazarja spodnja enačba, lahko spremembo položaja ravnotežja opazimo s spremembo barve raztopine. + $$\ch{[Co(H2O)6]^{2+}(aq) + 4 Cl^-(aq) <=> [CoCl4]^{2-}(aq) + 6 H2O(l)}$$ + Reaktanti so \color{magenta}rožnate barve\color{black}, produkti pa \color{blue}plave barve\color{black}. + + Katere ugotovitve so pravilne za to reakcijo? + \begin{enumerate}[label=\textbf{\MakeUppercase{\alph*}}] + \item Ob dodatku koncentrirane klorovodikove kisline se raztopina obarva modro. + \item Če dodamo trden \ch{CoCl2}, ki tvori \ch{[Co(H2O)6]}, se ravnotežje pomakne k produktom. + \item Če raztopino segrejemo, opazimo prehod iz modre v rožnato barvo. + \item Segrevanje ne vpliva na položaj ravnotežja. + \item Ob dodatku vode se bo raztopina obarvala rožnato. + \end{enumerate} + Kombinacija pravilnih trditev: A, B in E + \item Dana je enačba ravnotežne kemijske reakcije med ogljikovim oksidom in vodikom. Pri \SI{1200}{\degreeCelsius} je konstanta ravnotežja za to reakcijo $K_c=9,17\cdot10^{-2}$. Katera trditev je pravilna? + \begin{enumerate}[label=\textbf{\MakeUppercase{\alph*}}] + \item V ravnotežni zmesi pri \SI{1200}{\degreeCelsius} prevladujejo produkti. + \item Če bi znižali temperaturo v reakcijski posodi, bi se konstanta ravnotežja povečala. + \item Dodatek vodika v posodo pri \SI{1200}{\degreeCelsius} ne bi vplicval na ravnotežne koncentracije produktov. + \item Povečanje tlaka v reakcijski posodi bi ravnotežje reakcije usmerilo proti levi. + \end{enumerate} + Pravilna trditev: B + \item Za zapisano reakcijo je pri določenih pogojih vrednost ravnotežje konstante $K_c=0,785$. + $$\ch{N2O4(g) <=> 2xNO2(g)}$$ + \begin{enumerate}[label=\alph*)] + \item Kolikšna je ravnotežna koncentracija dušikovega dioksida, če imamo bv ravnotežju \SI{0,234}{\mole\per\L} didušikovega tetraoksida? + $$K_c=\frac{[\ch{NO2}]^2}{[\ch{N2O4}]};\ [\ch{NO2}]=\sqrt{K_c\cdot[\ch{N2O4}]}=0,43 \text{M}$$ + \item Graf prikazuje potek te reakcije --- spreminjanje koncentracij v odvisnosti od časa. + \begin{figure}[H] + \centering + \includegraphics[width=0.5\textwidth]{10.png} + \caption{Vir slike: profesor} + \end{figure} + \end{enumerate} + \begin{enumerate}[label=\textbf{\MakeUppercase{\alph*}.}] + \item Kako smo vplivali na ravnotežje ob času $t_1$? + + Z zmanjšanjem tlaka ali s segrevanjem. + \item Kako smo vplivali na ravnotežje ob času $t_3$? + + Z dodajanjem \ch{NO2}. + \item Izračunaj konstanto ravnotežja med $t_2$ in $t_3$. + + 1,8. + \end{enumerate} +\end{enumerate} +\section{Zaključek} +Ta dokument je informativne narave in se lahko še spreminja. Najnovejša različica, torej PDFji in +\hologo{LaTeX}\footnote{Za izdelavo dokumenta potrebujete \texttt{TeXLive 2020}.} +izvorna koda, zgodovina sprememb in prejšnje različice, je na voljo v mojem šolskem Git repozitoriju na +\url{https://git.sijanec.eu/sijanec/sola-gimb-2} v mapi +\href{https://git.sijanec/sola-gimb-2/src/branch/master/\predmdn/\predmkaj/\stevilkadn/}{/\predmdn/\predmkaj/\stevilkadn/}. Povezava za ogled zadnje različice tega dokumenta v PDF obliki je \url{http://razor.arnes.si/~asija3/files/sola/gimb/2/\predmdn/\predmkaj/\stevilkadn/dokument.pdf} in/ali \url{https://git.sijanec.eu/sijanec/sola-gimb-2/raw/branch/master/\predmdn/\predmkaj/\stevilkadn/dokument.pdf}. + +\if\razhroscevanje1 +\section*{Razhroščevalne informacije} +Te informacije so generirane, ker je omogočeno razhroščevanje. Pred objavo dokumenta izklopite razhroščevanje. To naredite tako, da nastavite ukaz \texttt{razhroscevanje} na 0 v začetku dokumenta. + +Grafi imajo natančnost \functionSamples\space točk na graf. + +Konec generiranja dokumenta: \today\ ob \currenttime\footnote{To ne nakazuje dejanskega časa, ko je bil dokument napisan, temveč čas, ko je bi dokument generiran v PDF/DVI obliko. Isto velja za datum v glavi dokumenta. Če berete direktno iz LaTeX datoteke, bo to vedno današnji datum.}%\input|"date -Ins" + +Dokument se je generiral R0qK1KR2 \SI{}{\second}. +\fi +% \item $$$$ aaasecgeninsaaa R0qK1KR2 +\end{document} diff --git a/kem/vaje/2/dokument.toc b/kem/vaje/2/dokument.toc new file mode 100644 index 0000000..1dfdf3d --- /dev/null +++ b/kem/vaje/2/dokument.toc @@ -0,0 +1,4 @@ +\babel@toc {slovene}{} +\babel@toc {slovene}{} +\contentsline {section}{\numberline {1}Pregledne naloge: \textit {Kemijsko ravnotežje in vplivi na kemijsko ravnotežje }}{1}{section.1}% +\contentsline {section}{\numberline {2}Zaključek}{4}{section.2}% diff --git a/kem/vaje/2/stderr.log b/kem/vaje/2/stderr.log new file mode 100644 index 0000000..e69de29 diff --git a/kem/vaje/2/stdout.log b/kem/vaje/2/stdout.log new file mode 100644 index 0000000..50316c3 --- /dev/null +++ b/kem/vaje/2/stdout.log @@ -0,0 +1,436 @@ +This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020) (preloaded format=pdflatex) + \write18 enabled. +entering extended mode +(/home/a/Documents/sola-gimb-2/kem/vaje/2/dokument.tex +LaTeX2e <2020-10-01> patch level 2 +L3 programming layer <2020-12-07> xparse <2020-03-03> +(/usr/local/texlive/2020/texmf-dist/tex/latex/base/article.cls +Document Class: article 2020/04/10 v1.4m Standard LaTeX document class +(/usr/local/texlive/2020/texmf-dist/tex/latex/base/size10.clo)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/base/inputenc.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/etoolbox/etoolbox.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/hyperref/hyperref.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty) +(/usr/local/texlive/2020/texmf-dist/tex/generic/iftex/iftex.sty) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/infwarerr/infwarerr.sty)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/keyval.sty) +(/usr/local/texlive/2020/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty) +(/usr/local/texlive/2020/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pdfescape/pdfescape.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/hycolor/hycolor.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/auxhook/auxhook.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/kvoptions/kvoptions.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/hyperref/pd1enc.def) +(/usr/local/texlive/2020/texmf-dist/tex/generic/intcalc/intcalc.sty) +(/usr/local/texlive/2020/texmf-dist/tex/generic/etexcmds/etexcmds.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/url/url.sty) +(/usr/local/texlive/2020/texmf-dist/tex/generic/bitset/bitset.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/base/atbegshi-ltx.sty)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/hyperref/hpdftex.def +(/usr/local/texlive/2020/texmf-dist/tex/latex/base/atveryend-ltx.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty + +(/usr/local/texlive/2020/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty +))) (/usr/local/texlive/2020/texmf-dist/tex/latex/geometry/geometry.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/iftex/ifvtex.sty)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/graphicx.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/graphics.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics/trig.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics-cfg/graphics.cfg) +(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics-def/pdftex.def))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/hologo/hologo.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/amsfonts/amssymb.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/amsfonts/amsfonts.sty)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/calculator/calculator.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgfplots/pgfplots.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex) +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.te +x +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-li +sts.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def +) (/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/pgf.revision.tex))) +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.c +ode.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.d +ef +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-p +df.def))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath. +code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol. +code.tex)) (/usr/local/texlive/2020/texmf-dist/tex/latex/xcolor/xcolor.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/graphics-cfg/color.cfg)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code. +tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic +.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigo +nometric.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.rando +m.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.compa +rison.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base. +code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round +.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc. +code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integ +erarithmetics.code.tex))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex) +) (/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.co +de.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconst +ruct.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage +.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.co +de.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicst +ate.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransform +ations.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.cod +e.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.c +ode.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathproce +ssing.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.co +de.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.cod +e.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.cod +e.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal. +code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.co +de.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretranspare +ncy.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns. +code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code. +tex))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.cod +e.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code. +tex) +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version +-0-65.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version +-1-18.sty)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/utilities/pgffor.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex) +) (/usr/local/texlive/2020/texmf-dist/tex/latex/pgf/math/pgfmath.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.cod +e.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothan +dlers.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.cod +e.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarytopaths.code.tex))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric +.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.c +ode.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplot +soldpgfsupp_loader.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.cod +e.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code +.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots +liststructure.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots +liststructureext.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots +array.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots +matrix.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstable +shared.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots +deque.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.co +de.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.da +ta.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb +.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplot +s.surfshading.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots +.surfshading.pgfsys-pdftex.def))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap. +code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.cod +e.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.c +ode.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.c +ode.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandle +r.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage. +code.tex))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code. +tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessin +g.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.cod +e.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code. +tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.te +x) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarydecorations.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/modules/pgfmoduledecoration +s.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarydecorations.pathmorphing.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli +brarydecorations.pathmorphing.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarydecorations.pathreplacing.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli +brarydecorations.pathreplacing.code.tex))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryplotmarks.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmar +ks.code.tex))) +(/usr/local/texlive/2020/texmf-dist/tex/latex/enumitem/enumitem.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/siunitx/siunitx.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3kernel/expl3.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3packages/xparse/xparse.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3packages/xparse/xparse-generic. +tex)) (/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amstext.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsgen.sty)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tools/array.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/translator/translator.sty)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tools/multicol.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tabularcalc/tabularcalc.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp.sty +`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/defpattern.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-basic.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-addons.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-snap.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-exp.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-trigo.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-pas.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-random.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-eqn.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-upn.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fp/fp-eval.sty)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/xstring/xstring.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/xstring/xstring.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/numprint/numprint.sty +No configuration file `numprint.cfg' found.)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsmath.sty +For additional information on amsmath, use the `?' option. +(/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsbsy.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/amsmath/amsopn.sty)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/float/float.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tasks/tasks.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.st +y) (/usr/local/texlive/2020/texmf-dist/tex/latex/tasks/tasks.cfg)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/filecontents/filecontents.sty + +Package filecontents Warning: This package is obsolete. Disabling it and +(filecontents) passing control to the filecontents environment +(filecontents) defined by the LaTeX kernel. + +) (/usr/local/texlive/2020/texmf-dist/tex/latex/base/textcomp.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-euclide.sty +2020/03/18 3.06c tkz-euclide.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-base.sty +2020/03/18 3.06c tkz-base.sty + +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryangles.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryarrows.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows. +code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows. +meta.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarybabel.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarycalc.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarydecorations.markings.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli +brarydecorations.markings.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarydecorations.shapes.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli +brarydecorations.shapes.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarydecorations.text.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli +brarydecorations.text.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryintersections.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibraryinterse +ctions.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarypatterns.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibrarypattern +s.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarypositioning.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryquotes.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryshadows.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryfadings.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings +.code.tex))) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibraryshapes.misc.code.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibrary +shapes.misc.code.tex)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie +s/tikzlibrarythrough.code.tex) +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3packages/xfp/xfp.sty) +Local configuration file tkz-base.cfg found and used +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-base.cfg +2020/03/18 3.06c tkz-base.cfg +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex +2020/03/18 3.06c tkz-tools-utilities.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex +2020/03/18 3.06c tkz-lib-symbols.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex +2020/03/18 3.06c tkz-tools-base.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex +2020/03/18 3.06c tkz-tools-utilities.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-tools-math.tex +2020/03/18 3.06c tkz-tools-math.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex +2020/03/18 3.06c tkz-tools-text.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex +2020/03/18 3.06c tkz-obj-BB.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex +2020/03/18 3.06c tkz-tools-arith.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex +2020/03/18 3.06c tkz-tools-print.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex +2020/03/18 3.06c tkz-tools-misc.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex +2020/03/18 3.06c tkz-obj-axes.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex +2020/03/18 3.06c tkz-obj-grids.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex +2020/03/18 3.07c tkz-obj-marks.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex +2020/03/18 3.06c tkz-obj-points.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex +2020/03/18 3.06c tkz-obj-rep.tex +)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-tools-intersectio +ns.tex +2020/03/18 3.06c tkz-tools-intersections.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-tools-angles.tex +2020/03/18 3.06c tkz-tools-angles.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-angles.tex +2020/03/18 3.06c tkz-tool-eu-angles.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-arcs.tex +2020/03/23 3.06c tkz-obj-eu-arcs.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-compass.te +x +2020/03/18 3.06c tkz-obj-eu-compass.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-circles.te +x +2020/03/18 3.06c tkz-obj-eu-circles.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-circl +es.tex +2020/03/18 3.06c tkz-obj-eu-draw-circles.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-lines +.tex +2020/03/18 3.06c tkz-obj-eu-draw-lines.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-polyg +ons.tex +2020/03/18 3.06c tkz-obj-eu-polygons.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-trian +gles.tex) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-lines.tex +2020/03/18 3.06c tkz-obj-eu-lines.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points.tex +2020/03/18 3.06c tkz-obj-eu-points.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-by. +tex +2020/03/18 3.06c tkz-tools-eu-points-by.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-rnd +.tex +2020/03/18 3.06c tkz-obj-eu-points-rnd.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-wit +h.tex +2020/03/18 3.06c tkz-obj-eu-points-with.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-polygons.t +ex +2020/03/18 3.06c tkz-obj-eu-polygons.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-protractor +.tex +2020/03/18 3.06c tkz-obj-eu-protractor.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-sectors.te +x +2020/03/18 3.06c tkz-obj-eu-sectors.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-show.tex +2020/03/18 3.06c tkz-obj-eu-show.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-triangles. +tex +2020/03/18 3.06c tkz-obj-eu-triangles.tex +)) (/usr/local/texlive/2020/texmf-dist/tex/latex/dirtytalk/dirtytalk.sty \ No newline at end of file -- cgit v1.2.3 From a76aeb54af03da859c006a88fa7178dc54dd11d7 Mon Sep 17 00:00:00 2001 From: sijanec Date: Tue, 22 Dec 2020 12:52:50 +0100 Subject: =?UTF-8?q?doma=C4=8Da=20naloga=20za=20nem=C5=A1=C4=8Din?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kem/vaje/2/dokument.log | 726 +++++++++++++++++++++++++++++++++++++- kem/vaje/2/dokument.pdf | Bin 1568 -> 246087 bytes kem/vaje/2/dokument.synctex(busy) | 0 kem/vaje/2/stderr.log | 1 + kem/vaje/2/stdout.log | 490 ++++++++++++++++++++++++- nem/hausaufgabe/9/dokument.md | 44 +++ ru/kolo/api.php | 131 ++++++- 7 files changed, 1379 insertions(+), 13 deletions(-) delete mode 100644 kem/vaje/2/dokument.synctex(busy) create mode 100644 nem/hausaufgabe/9/dokument.md diff --git a/kem/vaje/2/dokument.log b/kem/vaje/2/dokument.log index f5ecd5a..99163a7 100644 --- a/kem/vaje/2/dokument.log +++ b/kem/vaje/2/dokument.log @@ -1119,4 +1119,728 @@ Local configuration file tkz-base.cfg found and used ) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex 2020/03/18 3.06c tkz-tools-base.tex ) -(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-t \ No newline at end of file +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex +2020/03/18 3.06c tkz-tools-utilities.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-tools-math.tex +2020/03/18 3.06c tkz-tools-math.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex +2020/03/18 3.06c tkz-tools-text.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex +2020/03/18 3.06c tkz-obj-BB.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex +2020/03/18 3.06c tkz-tools-arith.tex +File: tkz-tool-arith.tex tkz-tool-arith 3.02 c +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex +2020/03/18 3.06c tkz-tools-print.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex +2020/03/18 3.06c tkz-tools-misc.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex +2020/03/18 3.06c tkz-obj-axes.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex +2020/03/18 3.06c tkz-obj-grids.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex +2020/03/18 3.07c tkz-obj-marks.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex +2020/03/18 3.06c tkz-obj-points.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex +2020/03/18 3.06c tkz-obj-rep.tex +)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-tools-intersectio +ns.tex +2020/03/18 3.06c tkz-tools-intersections.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-tools-angles.tex +2020/03/18 3.06c tkz-tools-angles.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-angles.tex +2020/03/18 3.06c tkz-tool-eu-angles.tex +\tkz@arcsize=\dimen344 +\tkz@fillsize=\dimen345 +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-arcs.tex +2020/03/23 3.06c tkz-obj-eu-arcs.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-compass.te +x +2020/03/18 3.06c tkz-obj-eu-compass.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-circles.te +x +2020/03/18 3.06c tkz-obj-eu-circles.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-circl +es.tex +2020/03/18 3.06c tkz-obj-eu-draw-circles.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-lines +.tex +2020/03/18 3.06c tkz-obj-eu-draw-lines.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-polyg +ons.tex +2020/03/18 3.06c tkz-obj-eu-polygons.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-trian +gles.tex) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-lines.tex +2020/03/18 3.06c tkz-obj-eu-lines.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points.tex +2020/03/18 3.06c tkz-obj-eu-points.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-by. +tex +2020/03/18 3.06c tkz-tools-eu-points-by.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-rnd +.tex +2020/03/18 3.06c tkz-obj-eu-points-rnd.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-wit +h.tex +2020/03/18 3.06c tkz-obj-eu-points-with.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-polygons.t +ex +2020/03/18 3.06c tkz-obj-eu-polygons.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-protractor +.tex +2020/03/18 3.06c tkz-obj-eu-protractor.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-sectors.te +x +2020/03/18 3.06c tkz-obj-eu-sectors.tex +) (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-show.tex +2020/03/18 3.06c tkz-obj-eu-show.tex +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-triangles. +tex +2020/03/18 3.06c tkz-obj-eu-triangles.tex +)) (/usr/local/texlive/2020/texmf-dist/tex/latex/dirtytalk/dirtytalk.sty +Package: dirtytalk 2010/11/21 A package making "quoting" easier + +(/usr/local/texlive/2020/texmf-dist/tex/latex/base/ifthen.sty +Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) +) +\c@dirtytalk@qdepth=\count375 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/csquotes/csquotes.sty +Package: csquotes 2019-12-06 v5.2j context-sensitive quotations (JAW) +\csq@reset=\count376 +\csq@gtype=\count377 +\csq@glevel=\count378 +\csq@qlevel=\count379 +\csq@maxlvl=\count380 +\csq@tshold=\count381 +\csq@ltx@everypar=\toks48 + +(/usr/local/texlive/2020/texmf-dist/tex/latex/csquotes/csquotes.def +File: csquotes.def 2019-12-06 v5.2j csquotes generic definitions (JAW) +) +Package csquotes Info: Trying to load configuration file 'csquotes.cfg'... +Package csquotes Info: ... configuration file loaded successfully. + +(/usr/local/texlive/2020/texmf-dist/tex/latex/csquotes/csquotes.cfg +File: csquotes.cfg +)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/listings/listings.sty +\lst@mode=\count382 +\lst@gtempboxa=\box126 +\lst@token=\toks49 +\lst@length=\count383 +\lst@currlwidth=\dimen346 +\lst@column=\count384 +\lst@pos=\count385 +\lst@lostspace=\dimen347 +\lst@width=\dimen348 +\lst@newlines=\count386 +\lst@lineno=\count387 +\lst@maxwidth=\dimen349 + +(/usr/local/texlive/2020/texmf-dist/tex/latex/listings/lstmisc.sty +File: lstmisc.sty 2020/03/24 1.8d (Carsten Heinz) +\c@lstnumber=\count388 +\lst@skipnumbers=\count389 +\lst@framebox=\box127 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/listings/listings.cfg +File: listings.cfg 2020/03/24 1.8d listings configuration +)) +Package: listings 2020/03/24 1.8d (Carsten Heinz) + +(/usr/local/texlive/2020/texmf-dist/tex/latex/datetime/datetime.sty +Package: datetime 2015/03/20 v2.60 Date Time Package + +(/usr/local/texlive/2020/texmf-dist/tex/latex/fmtcount/fmtcount.sty +Package: fmtcount 2020/01/30 v3.07 + +(/usr/local/texlive/2020/texmf-dist/tex/latex/xkeyval/xkeyval.sty +Package: xkeyval 2020/11/20 v2.8 package option processing (HA) + +(/usr/local/texlive/2020/texmf-dist/tex/generic/xkeyval/xkeyval.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/xkeyval/xkvutils.tex +\XKV@toks=\toks50 +\XKV@tempa@toks=\toks51 +) +\XKV@depth=\count390 +File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) +)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fmtcount/fcprefix.sty +Package: fcprefix 2012/09/28 + +(/usr/local/texlive/2020/texmf-dist/tex/latex/fmtcount/fcnumparser.sty +Package: fcnumparser 2017/06/15 +\fc@digit@counter=\count391 +)) +\c@padzeroesN=\count392 +\fc@tmpcatcode=\count393 +\@DT@modctr=\count394 +\@ordinalctr=\count395 +\@orgargctr=\count396 +\@strctr=\count397 +\@tmpstrctr=\count398 +\@DT@loopN=\count399 +\@DT@X=\count400 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/datetime/datetime-defaults.sty +Package: datetime-defaults 2013/09/10 +) +\@day=\count401 +\@month=\count402 +\@year=\count403 +\c@HOUR=\count404 +\c@HOURXII=\count405 +\c@MINUTE=\count406 +\c@TOHOUR=\count407 +\c@TOMINUTE=\count408 +\c@SECOND=\count409 +\currenthour=\count410 +\currentminute=\count411 +\currentsecond=\count412 +Package datetime Info: No datetime.cfg file found, using default settings on in +put line 308. +\@dtctr=\count413 +\dayofyear=\count414 +\dayofweek=\count415 +LaTeX Info: Redefining \today on input line 736. +\dt@a=\toks52 +\dt@b=\toks53 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/ccicons/ccicons.sty +Package: ccicons 2017/10/30 v1.6 LaTeX support for Creative Commons icons +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/chemformula/chemformula.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3packages/xfrac/xfrac.sty +Package: xfrac 2020-10-27 L3 Experimental split-level fractions +\l__xfrac_slash_box=\box128 +\l__xfrac_tmp_box=\box129 +\l__xfrac_denominator_bot_sep_dim=\dimen350 +\l__xfrac_numerator_bot_sep_dim=\dimen351 +\l__xfrac_numerator_top_sep_dim=\dimen352 +\l__xfrac_slash_left_sep_dim=\dimen353 +\l__xfrac_slash_right_sep_dim=\dimen354 +\l__xfrac_slash_left_muskip=\muskip19 +\l__xfrac_slash_right_muskip=\muskip20 + +Package xtemplate Info: Declaring object type 'xfrac' taking 3 argument(s) on +(xtemplate) line 80. + +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/units/nicefrac.sty +Package: nicefrac 1998/08/04 v0.9b Nice fractions +\L@UnitsRaiseDisplaystyle=\skip71 +\L@UnitsRaiseTextstyle=\skip72 +\L@UnitsRaiseScriptstyle=\skip73 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/koma-script/scrlfile.sty +Package: scrlfile 2020/09/21 v3.32 KOMA-Script package (file load hooks) + +(/usr/local/texlive/2020/texmf-dist/tex/latex/koma-script/scrlfile-hook.sty +Package: scrlfile-hook 2020/09/21 v3.32 KOMA-Script package (using LaTeX hooks) + + +(/usr/local/texlive/2020/texmf-dist/tex/latex/koma-script/scrlogo.sty +Package: scrlogo 2020/09/21 v3.32 KOMA-Script package (logo) +))) +Package: chemformula 2020/03/07 v4.15j typeset chemical compounds and reactions + (CN) +\l__chemformula_tmpa_dim=\dimen355 +\l__chemformula_tmpb_dim=\dimen356 +\l__chemformula_tmpc_dim=\dimen357 +\l__chemformula_tmpa_int=\count416 +\l__chemformula_tmpb_int=\count417 +\l__chemformula_tmpc_int=\count418 +\l__chemformula_tmpa_box=\box130 +\l__chemformula_tmpb_box=\box131 +\l__chemformula_arrow_length_dim=\dimen358 +\l__chemformula_arrow_label_height_dim=\dimen359 +\l__chemformula_arrow_label_offset_dim=\dimen360 +\l__chemformula_arrow_minimum_length_dim=\dimen361 +\l__chemformula_arrow_shortage_dim=\dimen362 +\l__chemformula_arrow_offset_dim=\dimen363 +\l__chemformula_arrow_yshift_dim=\dimen364 +\l__chemformula_radical_radius_dim=\dimen365 +\l__chemformula_radical_hshift_dim=\dimen366 +\l__chemformula_radical_vshift_dim=\dimen367 +\l__chemformula_radical_space_dim=\dimen368 +\l__chemformula_arrow_head_dim=\dimen369 +\l__chemformula_name_dim=\dimen370 +\l__chemformula_adduct_space_dim=\dimen371 +\l__chemformula_charge_shift_dim=\dimen372 +\l__chemformula_subscript_shift_dim=\dimen373 +\l__chemformula_superscript_shift_dim=\dimen374 +\l__chemformula_subscript_dim=\dimen375 +\l__chemformula_superscript_dim=\dimen376 +\l__chemformula_bond_dim=\dimen377 +\l__chemformula_bond_space_dim=\dimen378 +\l__chemformula_elspec_pair_distance_dim=\dimen379 +\l__chemformula_elspec_pair_line_length_dim=\dimen380 +\l__chemformula_elspec_pair_width_dim=\dimen381 +\l__chemformula_kroegervink_positive_radius_dim=\dimen382 +\l__chemformula_kroegervink_positive_hshift_dim=\dimen383 +\l__chemformula_kroegervink_positive_vshift_dim=\dimen384 +\l__chemformula_kroegervink_positive_space_dim=\dimen385 +\l__chemformula_stoich_space_skip=\skip74 +\l__chemformula_math_space_skip=\skip75 +\l__chemformula_count_tokens_int=\count419 +\g__chemformula_lewis_int=\count420 +\l__chemformula_arrow_arg_i_box=\box132 +\l__chemformula_arrow_arg_ii_box=\box133 +\l__chemformula_superscript_box=\box134 +\l__chemformula_subscript_box=\box135 +\l__chemformula_additions_symbol_space_skip=\skip76 +\l__chemformula_plus_space_skip=\skip77 +\l__chemformula_minus_space_skip=\skip78 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/was/gensymb.sty +Package: gensymb 2003/07/02 v1.0 (WaS) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/ulem/ulem.sty +\UL@box=\box136 +\UL@hyphenbox=\box137 +\UL@skip=\skip79 +\UL@hook=\toks54 +\UL@height=\dimen386 +\UL@pe=\count421 +\UL@pixel=\dimen387 +\ULC@box=\box138 +Package: ulem 2019/11/18 +\ULdepth=\dimen388 +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/babel/babel.sty +Package: babel 2020/12/16 3.52 The Babel package + +(/usr/local/texlive/2020/texmf-dist/tex/generic/babel/babel.def +File: babel.def 2020/12/16 3.52 Babel common definitions +\babel@savecnt=\count422 +\U@D=\dimen389 +\l@babelnohyphens=\language86 + +(/usr/local/texlive/2020/texmf-dist/tex/generic/babel/txtbabel.def) +\bbl@readstream=\read3 +) +\bbl@dirlevel=\count423 + +(/usr/local/texlive/2020/texmf-dist/tex/generic/babel-slovenian/slovene.ldf +Language: slovene 2005/03/31 v1.2m Slovene support from the babel system +Package babel Info: Making " an active character on input line 79. +)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/cancel/cancel.sty +Package: cancel 2013/04/12 v2.2 Cancel math terms +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tools/tabularx.sty +Package: tabularx 2020/01/15 v2.11c `tabularx' package (DPC) +\TX@col@width=\dimen390 +\TX@old@table=\dimen391 +\TX@old@col=\dimen392 +\TX@target=\dimen393 +\TX@delta=\dimen394 +\TX@cols=\count424 +\TX@ftn=\toks55 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/colortbl/colortbl.sty +Package: colortbl 2020/01/04 v1.0e Color table columns (DPC) +\everycr=\toks56 +\minrowclearance=\skip80 +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/exsheets/exsheets.sty +Package: exsheets 2019/09/30 v0.21k Yet another package for the creation of exe +rcise sheets and exams. +\l__exsheets_tmpa_int=\count425 +\l__exsheets_tmpb_int=\count426 +\l__exsheets_tmpc_int=\count427 +\l__exsheets_tmpd_int=\count428 +\l__exsheets_tmpe_int=\count429 +\g__exsheets_tmpa_int=\count430 +\l__exsheets_tmpa_dim=\dimen395 +\l__exsheets_tmpb_dim=\dimen396 + +(/usr/local/texlive/2020/texmf-dist/tex/latex/environ/environ.sty +Package: environ 2014/05/04 v0.3 A new way to define environments + +(/usr/local/texlive/2020/texmf-dist/tex/latex/trimspaces/trimspaces.sty +Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list +)) +\l__exsheets_variations_int=\count431 +\g__exsheets_questions_id_int=\count432 +\g__exsheets_questions_used_int=\count433 +\l__exsheets_include_random_int=\count434 +\l__exsheets_questions_set_int=\count435 +\g__exsheets_select_random_int=\count436 +\g__exsheets_selection_number_int=\count437 +\l__exsheets_counter_ch_int=\count438 +\l__exsheets_current_ch_int=\count439 +\l__exsheets_counter_sec_int=\count440 +\l__exsheets_current_sec_int=\count441 +\l_exsheets_counter_qu_int=\count442 +\l__exsheets_questions_skip_below_dim=\dimen397 +\l__exsheets_solutions_skip_below_dim=\dimen398 +\l__exsheets_blank_dim=\dimen399 +\l__exsheets_blank_line_increment_dim=\dimen400 +\l__exsheets_blank_line_minimum_length_dim=\dimen401 +\l__exsheets_blank_box=\box139 + +(/usr/local/texlive/2020/texmf-dist/tex/latex/cntformats/cntformats.sty +Package: cntformats 2014/07/20 v0.7 A different way to read counters. (CN) + +(/usr/local/texlive/2020/texmf-dist/tex/latex/cnltx/cnltx-base.sty +Package: cnltx-base 2019/11/01 v0.15 LaTeX tools and documenting facilities (CN +) + +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgfopts/pgfopts.sty +Package: pgfopts 2014/07/10 v2.1a LaTeX package options with pgfkeys +\pgfopts@list@add@a@toks=\toks57 +\pgfopts@list@add@b@toks=\toks58 +) +\c@cnltx@tmpa=\count443 +\c@cnltx@tmpb=\count444 +\c@cnltx@tmpc=\count445 +\cnltx@tmpa@length=\skip81 +\cnltx@tmpb@length=\skip82 +\cnltx@tmpc@length=\skip83 +)) +\c@question=\count446 + +(/usr/local/texlive/2020/texmf-dist/tex/latex/exsheets/exsheets_headings.def +File: exsheets_headings.def 2019/09/30 v0.21k ExSheets headings object +\l__exsheets_heading_above_dim=\dimen402 +\l__exsheets_heading_below_dim=\dimen403 +\l__exsheets_heading_main_coffin=\box140 +\l__exsheets_heading_pre_coffin=\box141 +\l__exsheets_heading_post_coffin=\box142 +\l__exsheets_heading_title_coffin=\box143 +\l__exsheets_heading_number_coffin=\box144 +\l__exsheets_heading_points_coffin=\box145 +\l__exsheets_heading_subtitle_coffin=\box146 + +Package xtemplate Info: Declaring object type 'exsheets-heading' taking 5 +(xtemplate) argument(s) on line 184. + +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/exsheets/exsheets_headings.cfg +File: exsheets_headings.cfg 2019/09/30 v0.21k ExSheets headings instances +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/translations/translations.sty +Package: translations 2020/11/08 v1.9 internationalization of LaTeX2e packages +(CN) +)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/harpoon/harpoon.sty +Package: harpoon 1994/11/02 Harpoon drawing package by Tobias Kuipers +\argwd=\skip84 +\arght=\skip85 +) + +Package tasks Warning: You've tried setting command `\NewTasks ' on line 114. +(tasks) However, command `\NewTasks ' is deprecated. Please use +(tasks) command `\NewTasksEnvironment ' instead. Refer to the +(tasks) manual for details. + +Package csquotes Info: Checking for multilingual support... +Package csquotes Info: ... found 'babel' package. +Package csquotes Info: Adjusting default style. + +Package csquotes Warning: No style for language 'slovene'. +(csquotes) Using fallback style on input line 129. + +Package csquotes Info: Redefining alias 'default' -> 'fallback'. +(./dokument.aux) +\openout1 = `dokument.aux'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 129. +LaTeX Font Info: ... okay on input line 129. +Package hyperref Info: Link coloring OFF on input line 129. + +(/usr/local/texlive/2020/texmf-dist/tex/latex/hyperref/nameref.sty +Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section + +(/usr/local/texlive/2020/texmf-dist/tex/latex/refcount/refcount.sty +Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) +) +(/usr/local/texlive/2020/texmf-dist/tex/generic/gettitlestring/gettitlestring.s +ty +Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) +) +\c@section@level=\count447 +) +LaTeX Info: Redefining \ref on input line 129. +LaTeX Info: Redefining \pageref on input line 129. +LaTeX Info: Redefining \nameref on input line 129. + (./dokument.out) (./dokument.out) +\@outlinefile=\write5 +\openout5 = `dokument.out'. + + +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +*geometry* verbose mode - [ preamble ] result: +* driver: pdftex +* paper: a4paper +* layout: +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(45.80893pt, 505.89pt, 45.80894pt) +* v-part:(T,H,B)=(48.93872pt, 722.7pt, 73.40813pt) +* \paperwidth=597.50787pt +* \paperheight=845.04684pt +* \textwidth=505.89pt +* \textheight=722.7pt +* \oddsidemargin=-26.46106pt +* \evensidemargin=-26.46106pt +* \topmargin=-60.33127pt +* \headheight=12.0pt +* \headsep=25.0pt +* \topskip=10.0pt +* \footskip=30.0pt +* \marginparwidth=65.0pt +* \marginparsep=11.0pt +* \columnsep=10.0pt +* \skip\footins=9.0pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +(/usr/local/texlive/2020/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count448 +\scratchdimen=\dimen404 +\scratchbox=\box147 +\nofMPsegments=\count449 +\nofMParguments=\count450 +\everyMPshowfont=\toks59 +\MPscratchCnt=\count451 +\MPscratchDim=\dimen405 +\MPnumerator=\count452 +\makeMPintoPDFobject=\count453 +\everyMPtoPDFconversion=\toks60 +) (/usr/local/texlive/2020/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf +Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 +85. + +(/usr/local/texlive/2020/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv +e +)) + +Package pgfplots Warning: running in backwards compatibility mode (unsuitable t +ick labels; missing features). Consider writing \pgfplotsset{compat=1.17} into +your preamble. + on input line 129. + + +(/usr/local/texlive/2020/texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg +File: siunitx-abbreviations.cfg 2017/11/26 v2.7k siunitx: Abbreviated units +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/translator/translator-basic-dicti +onary-English.dict +Dictionary: translator-basic-dictionary, Language: English +) +\c@lstlisting=\count454 +\symgns@font=\mathgroup6 +LaTeX Font Info: Overwriting symbol font `gns@font' in version `bold' +(Font) TS1/cmr/m/n --> TS1/cmr/b/n on input line 129. +Package gensymb Info: Math companion symbols declared on input line 129. +LaTeX Info: Redefining \degree on input line 129. +LaTeX Info: Redefining \celsius on input line 129. +Package gensymb Info: Using text companion symbols for \degree, \celsius and \p +erthousand on input line 129. +LaTeX Info: Redefining \ohm on input line 129. +Package gensymb Info: Using \textohm for \ohm on input line 129. +LaTeX Info: Redefining \micro on input line 129. +Package gensymb Info: Using \textmu for \micro on input line 129. + +Package exsheets Info: Loading custom configurations file +(exsheets) `exsheets_configurations.cfg'. + + +(/usr/local/texlive/2020/texmf-dist/tex/latex/exsheets/exsheets_configurations. +cfg +File: exsheets_configurations.cfg +) +Package translations Info: no dictionary file `translations-basic-dictionary-sl +ovenian.trsl' found. on input line 129. +LaTeX Font Info: Trying to load font information for U+msa on input line 129 +. + (/usr/local/texlive/2020/texmf-dist/tex/latex/amsfonts/umsa.fd +File: umsa.fd 2013/01/14 v3.01 AMS symbols A +) +LaTeX Font Info: Trying to load font information for U+msb on input line 129 +. + +(/usr/local/texlive/2020/texmf-dist/tex/latex/amsfonts/umsb.fd +File: umsb.fd 2013/01/14 v3.01 AMS symbols B +) (./dokument.toc) +\tf@toc=\write6 +\openout6 = `dokument.toc'. + +<1.png, id=41, 412.54124pt x 129.48375pt> +File: 1.png Graphic file (type png) + +Package pdftex.def Info: 1.png used on input line 140. +(pdftex.def) Requested size: 354.12144pt x 111.14835pt. + +! Missing $ inserted. + + $ +l.154 ...{NOCl(g) <=> NO(g) + 1/2 CL2(g)}$$ & $$K_ + c = 0,16$$\\ +I've inserted a begin-math/end-math symbol since I think +you left one out. Proceed, with fingers crossed. + +! Missing $ inserted. + + $ +l.155 $ + $\ch{2 NO(g) + Cl2(g) <=> 2 NOCl(g)}$$ & $$K_c = 40,8$$ +I've inserted something that you may have forgotten. +(See the above.) +With luck, this will get me unwedged. But if you +really didn't forget anything, try typing `2' now; then +my insertion and my current dilemma will both disappear. + +! Missing $ inserted. + + $ +l.155 ...{2 NO(g) + Cl2(g) <=> 2 NOCl(g)}$$ & $$K_ + c = 40,8$$ +I've inserted a begin-math/end-math symbol since I think +you left one out. Proceed, with fingers crossed. + +! Missing $ inserted. + + $ +l.156 \end{tabular} + +I've inserted something that you may have forgotten. +(See the above.) +With luck, this will get me unwedged. But if you +really didn't forget anything, try typing `2' now; then +my insertion and my current dilemma will both disappear. + +<3.png, id=43, 555.87675pt x 160.80075pt> +File: 3.png Graphic file (type png) + +Package pdftex.def Info: 3.png used on input line 160. +(pdftex.def) Requested size: 455.2979pt x 131.70532pt. +[1 + +{/usr/local/texlive/2020/texmf-var/fonts/map/pdftex/updmap/pdftex.map}pdfTeX wa +rning (ext4): destination with the same identifier (name{figure.1}) has been al +ready used, duplicate ignored + ...shipout:D \box_use:N \l_shipout_box + +l.163 N + ajvečja konstanta ravnotežja $K_c$ pripada grafu 2. <./1.png>] +<4.png, id=69, 268.00125pt x 191.5155pt> +File: 4.png Graphic file (type png) + +Package pdftex.def Info: 4.png used on input line 169. +(pdftex.def) Requested size: 202.3529pt x 144.6006pt. + +[2pdfTeX warning (ext4): destination with the same identifier (name{figure.2}) +has been already used, duplicate ignored + ...shipout:D \box_use:N \l_shipout_box + +l.204 $$ + pdfTeX warning (ext4): destination with the same identifier (name{f +igure.3}) has been already used, duplicate ignored + ...shipout:D \box_use:N \l_shipout_box + +l.204 $$ + <./3.png> <./4.png>] +<10.png, id=83, 366.168pt x 240.9pt> +File: 10.png Graphic file (type png) + +Package pdftex.def Info: 10.png used on input line 253. +(pdftex.def) Requested size: 252.94499pt x 166.41599pt. + [3] + +Package hyperref Warning: Composite letter `\textasciicaron+c' +(hyperref) not defined in PD1 encoding, +(hyperref) removing `\textasciicaron' on input line 269. + +[4pdfTeX warning (ext4): destination with the same identifier (name{figure.4}) +has been already used, duplicate ignored + ...shipout:D \box_use:N \l_shipout_box + +l.287 \end{document} + <./10.png>] (./dokument.aux) +Package rerunfilecheck Info: File `dokument.out' has not changed. +(rerunfilecheck) Checksum: A13850B8D819BDD5CAB125211ADC5688;156. + ) +Here is how much of TeX's memory you used: + 43856 strings out of 479382 + 1036471 string characters out of 5869354 + 1538085 words of memory out of 5000000 + 59976 multiletter control sequences out of 15000+600000 + 418845 words of font info for 85 fonts, out of 8000000 for 9000 + 1141 hyphenation exceptions out of 8191 + 94i,17n,109p,1093b,1148s stack positions out of 5000i,500n,10000p,200000b,80000s +{/usr/local/texlive/2020/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc +} +< +/usr/local/texlive/2020/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx7.pfb> +Output written on dokument.pdf (4 pages, 472100 bytes). +PDF statistics: + 212 PDF objects out of 1000 (max. 8388607) + 159 compressed objects within 2 object streams + 43 named destinations out of 1000 (max. 500000) + 145 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git a/kem/vaje/2/dokument.pdf b/kem/vaje/2/dokument.pdf index 3b29eec..244acef 100644 Binary files a/kem/vaje/2/dokument.pdf and b/kem/vaje/2/dokument.pdf differ diff --git a/kem/vaje/2/dokument.synctex(busy) b/kem/vaje/2/dokument.synctex(busy) deleted file mode 100644 index e69de29..0000000 diff --git a/kem/vaje/2/stderr.log b/kem/vaje/2/stderr.log index e69de29..a1d1cfc 100644 --- a/kem/vaje/2/stderr.log +++ b/kem/vaje/2/stderr.log @@ -0,0 +1 @@ +<]/Index[ 0 213]/Info 211 0 R/Length 561/Root 210 0 R/Size 213/W[ 1 3 1]>> diff --git a/kem/vaje/2/stdout.log b/kem/vaje/2/stdout.log index 50316c3..1886593 100644 --- a/kem/vaje/2/stdout.log +++ b/kem/vaje/2/stdout.log @@ -433,4 +433,492 @@ x (/usr/local/texlive/2020/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-triangles. tex 2020/03/18 3.06c tkz-obj-eu-triangles.tex -)) (/usr/local/texlive/2020/texmf-dist/tex/latex/dirtytalk/dirtytalk.sty \ No newline at end of file +)) (/usr/local/texlive/2020/texmf-dist/tex/latex/dirtytalk/dirtytalk.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/base/ifthen.sty)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/csquotes/csquotes.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/csquotes/csquotes.def) +(/usr/local/texlive/2020/texmf-dist/tex/latex/csquotes/csquotes.cfg)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/listings/listings.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/listings/lstmisc.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/listings/listings.cfg)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/datetime/datetime.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/fmtcount/fmtcount.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/xkeyval/xkeyval.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/xkeyval/xkeyval.tex +(/usr/local/texlive/2020/texmf-dist/tex/generic/xkeyval/xkvutils.tex))) +(/usr/local/texlive/2020/texmf-dist/tex/latex/fmtcount/fcprefix.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/fmtcount/fcnumparser.sty))) +(/usr/local/texlive/2020/texmf-dist/tex/latex/datetime/datetime-defaults.sty)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/ccicons/ccicons.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/chemformula/chemformula.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/l3packages/xfrac/xfrac.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/units/nicefrac.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/koma-script/scrlfile.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/koma-script/scrlfile-hook.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/koma-script/scrlogo.sty)))) +(/usr/local/texlive/2020/texmf-dist/tex/latex/was/gensymb.sty) +(/usr/local/texlive/2020/texmf-dist/tex/generic/ulem/ulem.sty) +(/usr/local/texlive/2020/texmf-dist/tex/generic/babel/babel.sty +(/usr/local/texlive/2020/texmf-dist/tex/generic/babel/babel.def +(/usr/local/texlive/2020/texmf-dist/tex/generic/babel/txtbabel.def)) +(/usr/local/texlive/2020/texmf-dist/tex/generic/babel-slovenian/slovene.ldf)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/cancel/cancel.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/tools/tabularx.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/colortbl/colortbl.sty) +(/usr/local/texlive/2020/texmf-dist/tex/latex/exsheets/exsheets.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/environ/environ.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/trimspaces/trimspaces.sty)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/cntformats/cntformats.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/cnltx/cnltx-base.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/pgfopts/pgfopts.sty))) +(/usr/local/texlive/2020/texmf-dist/tex/latex/exsheets/exsheets_headings.def) +(/usr/local/texlive/2020/texmf-dist/tex/latex/exsheets/exsheets_headings.cfg) +(/usr/local/texlive/2020/texmf-dist/tex/latex/translations/translations.sty)) +(/usr/local/texlive/2020/texmf-dist/tex/latex/harpoon/harpoon.sty) + +Package tasks Warning: You've tried setting command `\NewTasks ' on line 114. +(tasks) However, command `\NewTasks ' is deprecated. Please use +(tasks) command `\NewTasksEnvironment ' instead. Refer to the +(tasks) manual for details. + + +Package csquotes Warning: No style for language 'slovene'. +(csquotes) Using fallback style on input line 129. + +(./dokument.aux) +(/usr/local/texlive/2020/texmf-dist/tex/latex/hyperref/nameref.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/refcount/refcount.sty) +(/usr/local/texlive/2020/texmf-dist/tex/generic/gettitlestring/gettitlestring.s +ty)) (./dokument.out) (./dokument.out) +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +(/usr/local/texlive/2020/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +) (/usr/local/texlive/2020/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +(/usr/local/texlive/2020/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg)) + +Package pgfplots Warning: running in backwards compatibility mode (unsuitable t +ick labels; missing features). Consider writing \pgfplotsset{compat=1.17} into +your preamble. + on input line 129. + + +(/usr/local/texlive/2020/texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg +) +(/usr/local/texlive/2020/texmf-dist/tex/latex/translator/translator-basic-dicti +onary-English.dict) +(/usr/local/texlive/2020/texmf-dist/tex/latex/exsheets/exsheets_configurations. +cfg) (/usr/local/texlive/2020/texmf-dist/tex/latex/amsfonts/umsa.fd) +(/usr/local/texlive/2020/texmf-dist/tex/latex/amsfonts/umsb.fd) (./dokument.toc +) +! Missing $ inserted. + + $ +l.154 ...{NOCl(g) <=> NO(g) + 1/2 CL2(g)}$$ & $$K_ + c = 0,16$$\\ +! Missing $ inserted. + + $ +l.155 $ + $\ch{2 NO(g) + Cl2(g) <=> 2 NOCl(g)}$$ & $$K_c = 40,8$$ +! Missing $ inserted. + + $ +l.155 ...{2 NO(g) + Cl2(g) <=> 2 NOCl(g)}$$ & $$K_ + c = 40,8$$ +! Missing $ inserted. + + $ +l.156 \end{tabular} + +[1{/usr/local/texlive/2020/texmf-var/fonts/map/pdftex/updmap/pdftex.map}pdfTeX +warning (ext4): destination with the same identifier (name{figure.1}) has been +already used, duplicate ignored + ...shipout:D \box_use:N \l_shipout_box + +l.163 N + ajvečja konstanta ravnotežja $K_c$ pripada grafu 2. <./1.png>] +[2pdfTeX warning (ext4): destination with the same identifier (name{figure.2}) +has been already used, duplicate ignored + ...shipout:D \box_use:N \l_shipout_box + +l.204 $$ + pdfTeX warning (ext4): destination with the same identifier (name{f +igure.3}) has been already used, duplicate ignored + ...shipout:D \box_use:N \l_shipout_box + +l.204 $$ + <./3.png> <./4.png>] [3] + +Package hyperref Warning: Composite letter `\textasciicaron+c' +(hyperref) not defined in PD1 encoding, +(hyperref) removing `\textasciicaron' on input line 269. + +[4pdfTeX warning (ext4): destination with the same identifier (name{figure.4}) +has been already used, duplicate ignored + ...shipout:D \box_use:N \l_shipout_box + +l.287 \end{document} + <./10.png>] (./dokument.aux) ) +(see the transcript file for additional information){/usr/local/texlive/2020/te +xmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc} +Output written on dokument.pdf (4 pages, 472100 bytes). +SyncTeX written on dokument.synctex.gz. +Transcript written on dokument.log. +Reading 1 0 R +Reading 2 0 R +Reading 3 0 R +Reading 4 0 R +-> Uncompressing object 4 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 5 0 R +Reading 7 0 R +-> Uncompressing object 7 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 8 0 R +Reading 9 0 R +-> Uncompressing object 9 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 10 0 R +Reading 11 0 R +-> Uncompressing object 11 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 12 0 R +Reading 17 0 R +-> Uncompressing object 17 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 18 0 R +Reading 20 0 R +-> Uncompressing object 20 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 21 0 R +Reading 23 0 R +-> Uncompressing object 23 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 24 0 R +Reading 26 0 R +-> Uncompressing object 26 0 +-> Original Length: 15 +-> Uncompressed Length: 7 +Reading 27 0 R +Reading 29 0 R +Reading 30 0 R +Reading 31 0 R +Reading 32 0 R +Reading 33 0 R +Reading 34 0 R +Reading 35 0 R +Reading 36 0 R +Reading 37 0 R +Reading 38 0 R +Reading 39 0 R +Reading 40 0 R +Reading 41 0 R +-> Uncompressing object 41 0 +-> Original Length: 70695 +-> Uncompressed Length: 441825 +Reading 42 0 R +Reading 43 0 R +-> Uncompressing object 43 0 +-> Original Length: 112420 +-> Uncompressed Length: 739323 +Reading 44 0 R +Reading 45 0 R +-> Uncompressing object 45 0 +-> Original Length: 2284 +-> Uncompressed Length: 9352 +Reading 46 0 R +Reading 47 0 R +Reading 48 0 R +Reading 49 0 R +Reading 50 0 R +Reading 51 0 R +Reading 52 0 R +Reading 53 0 R +Reading 54 0 R +Reading 55 0 R +Reading 56 0 R +Reading 57 0 R +Reading 58 0 R +Reading 59 0 R +Reading 60 0 R +Reading 61 0 R +Reading 62 0 R +Reading 63 0 R +Reading 64 0 R +Reading 65 0 R +Reading 66 0 R +Reading 67 0 R +Reading 68 0 R +-> Uncompressing object 68 0 +-> Original Length: 165 +-> Uncompressed Length: 147275 +Reading 69 0 R +-> Uncompressing object 69 0 +-> Original Length: 31368 +-> Uncompressed Length: 424530 +Reading 70 0 R +Reading 71 0 R +Reading 72 0 R +-> Uncompressing object 72 0 +-> Original Length: 2897 +-> Uncompressed Length: 12861 +Reading 73 0 R +Reading 74 0 R +Reading 75 0 R +Reading 76 0 R +Reading 77 0 R +Reading 78 0 R +Reading 79 0 R +Reading 80 0 R +Reading 81 0 R +-> Uncompressing object 81 0 +-> Original Length: 262 +-> Uncompressed Length: 246441 +Reading 82 0 R +-> Uncompressing object 82 0 +-> Original Length: 160 +-> Uncompressed Length: 141510 +Reading 83 0 R +-> Uncompressing object 83 0 +-> Original Length: 25950 +-> Uncompressed Length: 729600 +Reading 84 0 R +Reading 85 0 R +Reading 86 0 R +-> Uncompressing object 86 0 +-> Original Length: 4072 +-> Uncompressed Length: 18327 +Reading 87 0 R +Reading 88 0 R +Reading 89 0 R +Reading 90 0 R +Reading 91 0 R +Reading 92 0 R +Reading 93 0 R +Reading 94 0 R +Reading 95 0 R +Reading 96 0 R +Reading 97 0 R +Reading 98 0 R +Reading 99 0 R +Reading 100 0 R +Reading 101 0 R +Reading 102 0 R +Reading 103 0 R +Reading 104 0 R +Reading 105 0 R +Reading 106 0 R +Reading 107 0 R +Reading 108 0 R +Reading 109 0 R +Reading 110 0 R +Reading 111 0 R +Reading 112 0 R +Reading 113 0 R +Reading 114 0 R +Reading 115 0 R +Reading 116 0 R +-> Uncompressing object 116 0 +-> Original Length: 1963 +-> Uncompressed Length: 5318 +Reading 117 0 R +Reading 118 0 R +Reading 119 0 R +Reading 120 0 R +Reading 121 0 R +Reading 122 0 R +Reading 123 0 R +Reading 124 0 R +Reading 125 0 R +Reading 126 0 R +Reading 127 0 R +Reading 128 0 R +Reading 129 0 R +Reading 130 0 R +Reading 131 0 R +-> Uncompressing object 131 0 +-> Original Length: 259 +-> Uncompressed Length: 243200 +Reading 132 0 R +Reading 133 0 R +Reading 134 0 R +Reading 135 0 R +Reading 136 0 R +Reading 137 0 R +Reading 138 0 R +Reading 139 0 R +Reading 140 0 R +Reading 141 0 R +Reading 142 0 R +Reading 143 0 R +Reading 144 0 R +Reading 145 0 R +Reading 146 0 R +Reading 147 0 R +Reading 148 0 R +Reading 149 0 R +Reading 150 0 R +Reading 151 0 R +Reading 152 0 R +Reading 153 0 R +Reading 154 0 R +-> Uncompressing object 154 0 +-> Original Length: 18052 +-> Uncompressed Length: 18937 +Reading 155 0 R +Reading 156 0 R +-> Uncompressing object 156 0 +-> Original Length: 11959 +-> Uncompressed Length: 12625 +Reading 157 0 R +Reading 159 0 R +-> Uncompressing object 159 0 +-> Original Length: 7090 +-> Uncompressed Length: 7526 +Reading 160 0 R +Reading 161 0 R +-> Uncompressing object 161 0 +-> Original Length: 7846 +-> Uncompressed Length: 8318 +Reading 162 0 R +Reading 163 0 R +-> Uncompressing object 163 0 +-> Original Length: 10456 +-> Uncompressed Length: 11040 +Reading 164 0 R +Reading 165 0 R +-> Uncompressing object 165 0 +-> Original Length: 6838 +-> Uncompressed Length: 7275 +Reading 166 0 R +Reading 167 0 R +-> Uncompressing object 167 0 +-> Original Length: 8744 +-> Uncompressed Length: 9225 +Reading 168 0 R +Reading 169 0 R +-> Uncompressing object 169 0 +-> Original Length: 7553 +-> Uncompressed Length: 7997 +Reading 170 0 R +Reading 171 0 R +-> Uncompressing object 171 0 +-> Original Length: 22460 +-> Uncompressed Length: 23534 +Reading 172 0 R +Reading 173 0 R +-> Uncompressing object 173 0 +-> Original Length: 12438 +-> Uncompressed Length: 13106 +Reading 174 0 R +Reading 175 0 R +-> Uncompressing object 175 0 +-> Original Length: 10248 +-> Uncompressed Length: 10828 +Reading 176 0 R +Reading 177 0 R +-> Uncompressing object 177 0 +-> Original Length: 7038 +-> Uncompressed Length: 7469 +Reading 178 0 R +Reading 179 0 R +-> Uncompressing object 179 0 +-> Original Length: 8715 +-> Uncompressed Length: 9220 +Reading 180 0 R +Reading 181 0 R +-> Uncompressing object 181 0 +-> Original Length: 12632 +-> Uncompressed Length: 13328 +Reading 182 0 R +Reading 183 0 R +-> Uncompressing object 183 0 +-> Original Length: 11358 +-> Uncompressed Length: 11942 +Reading 184 0 R +Reading 185 0 R +-> Uncompressing object 185 0 +-> Original Length: 6933 +-> Uncompressed Length: 7374 +Reading 186 0 R +Reading 187 0 R +-> Uncompressing object 187 0 +-> Original Length: 7095 +-> Uncompressed Length: 7527 +Reading 188 0 R +Reading 189 0 R +-> Uncompressing object 189 0 +-> Original Length: 10450 +-> Uncompressed Length: 11002 +Reading 190 0 R +Reading 191 0 R +-> Uncompressing object 191 0 +-> Original Length: 12876 +-> Uncompressed Length: 13548 +Reading 192 0 R +Reading 193 0 R +-> Uncompressing object 193 0 +-> Original Length: 3141 +-> Uncompressed Length: 3662 +Reading 194 0 R +Reading 195 0 R +-> Uncompressing object 195 0 +-> Original Length: 1535 +-> Uncompressed Length: 1697 +Reading 196 0 R +Reading 197 0 R +Reading 198 0 R +Reading 199 0 R +Reading 200 0 R +Reading 201 0 R +Reading 202 0 R +Reading 203 0 R +Reading 204 0 R +Reading 205 0 R +Reading 206 0 R +Reading 207 0 R +Reading 208 0 R +Reading 209 0 R +Reading 210 0 R +Reading 211 0 R +Reading 212 0 R +-> Uncompressing object 212 0 +-> Original Length: 561 +-> Uncompressed Length: 1065 +/home/a/Documents/sola-gimb-2/kem/vaje/2/dokument.pdf was successfully uncompressed to: /home/a/Documents/sola-gimb-2/kem/vaje/2/dokument-uncompressed.pdf + **** Error: An error occurred while reading an XREF table. + **** The file has been damaged. This may have been caused + **** by a problem while converting or transfering the file. + **** Ghostscript will attempt to recover the data. + **** However, the output may be incorrect. + **** Error: stream Length incorrect. + Output may be incorrect. diff --git a/nem/hausaufgabe/9/dokument.md b/nem/hausaufgabe/9/dokument.md new file mode 100644 index 0000000..9b07fd6 --- /dev/null +++ b/nem/hausaufgabe/9/dokument.md @@ -0,0 +1,44 @@ +Wechselspiel +=========== + +# 10 Sätze / Dialoge + +* Weißt du, was Manfred seinen Eltern schenkt? +* *Ich glaube, er schenkt ihnen ein Buch.* +* Aha, ja, er schenkt es ihnen. + +* Weißt du, was Sabine ihrem Freund schenkt? +* *Ich glaube, sie schenkt ihm Rasierwasser.* +* Aha, ja, sie schenkt sie ihm. + +* Weißt du, was Rolf seine Freundin schenkt? +* *Ich glaube, er schenkt ihr ein Kleid.* +* Aha, ja, er schenkt es ihr. + +* Weißt du, was Heinz seine Schwester schenkt? +* *Ich glaube, er schenkt ihr einen Briefpapier.* +* Aha, ja, er schenkt er ihr. + +* Weißt du, was Michael seinem Bruder schenkt? +* *Ich glaube, er schenkt ihm ein Hemd.* +* Aha, ja, er schenkt es ihm. + +* Weißt du, was Antje seinen Nachbarn schenkt? +* *Ich glaube, er schenkt ihnen nichts* +* Aha, ja, er schenkt nichts ihnen. + +* Weißt du, was Reiner seinen Eltern schenkt? +* *Ich glaube, er schenkt ihnen einen Teppich.* +* Aha, ja, er schenkt er ihnen. + +* Weißt du, was Brigitte ihrem Freund schenkt? +* *Ich glaube, sie schenkt ihm eine Uhr.* +* Aha, ja, sie schenkt ihm sie. + +* Weißt du, was Ich schenke meiner Freundin? +* *Ich glaube, du schenkst ihr Pralinen.* +* Aha, ja, Ich schenke ihr sie. + +* Was schenken Sie Ihrer Schwester? +* *Ich glaube, Ich schenke ihr einen Schal.* +* Aha, ja, schenken Sie er. diff --git a/ru/kolo/api.php b/ru/kolo/api.php index c085435..64dd35c 100644 --- a/ru/kolo/api.php +++ b/ru/kolo/api.php @@ -4,46 +4,155 @@ $dbhost = "localhost"; $dbdb = "kolo"; $dbpw = "kolo"; + $conn = new mysqli($dbhost, $dbuser, $dbpw, $dbdb); header("Content-Type: application/json"); + if ($conn->connect_error) { + http_response_code(500); + exit('{"napaka":true,"obvestilo":"Napaka strežnika pri povezavi v podatkovno zbirko."}'); + } + $query = "CREATE TABLE IF NOT EXISTS kolesa ( + omogoceno INT, + ime VARCHAR(420), + admin VARCHAR(420) + ); + CREATE TABLE IF NOT EXISTS ljudje ( + ime VARCHAR(420) PRIMARY KEY, + izbranec VARCHAR(420), + kolo VARCHAR(420), + krneki VARCHAR(420) + )"; + $result = $conn->query($query); + var_dump($result); + var_dump($conn->error); if (empty($_REQUEST['k'])) { http_response_code(400); exit ('{"napaka":true,"obvestilo":"Ne vem, na katero kolo se sklicuješ, ker manjka parameter k."}'); } switch ($_REQUEST['m']) { case "r": /* registracija */ - if (empty($_REQUEST['m'])) { + if (empty($_REQUEST['i'])) { + http_response_code(400); + exit ('{"napaka":true,"obvestilo":"Ne vem, kako ti je ime, ker manjka parameter i"}'); + } + $stmt2 = $conn->prepare("SELECT omogoceno FROM `kolesa` WHERE `ime`=?"); + $stmt2->bind_param("s", $_REQUEST["k"]); + $stmt2->execute(); + $stmt2->bind_result($omogoceno); + $stmt2->fetch(); + if ($omogoceno != 0) { http_response_code(400); - exit ('{"napaka":true,"obvestilo":"Ne vem, kako ti je ime, ker manjka parameter m"}'); + exit ('{"napaka":true,"obvestilo":"Ne morem registrirati novih ljudi, ker se je vrtenje koles že začelo.}'); } - /* sedaj naredimo SQL */ + $stmt2->close(); + $stmt = $conn->prepare("INSERT INTO ljudje (ime, kolo) VALUES (?, ?) ON DUPLICATE KEY UPDATE `krneki`='123'"); + $stmt->bind_param("ss", $_REQUEST["i"], $_REQUEST["k"]); + $stmt->execute(); + $stmt->close(); + http_response_code(201); + exit ('{"napaka":false,"obvestilo":"Uporabnik registriran!"}'); break; case "z": /* zakleni kolo, omogoči vrtenje, naključno razporedi osebe */ + $stmt = $conn->prepare("SELECT admin FROM kolesa WHERE `ime`='?'"); + $stmt->bind_param("s", $_REQUEST["k"]); + $stmt->execute(); + $stmt->bind_result($admin_pass); + $stmt->fetch(); if ($_REQUEST['g'] !== $admin_pass) { http_response_code(400); exit ('{"napaka":true,"obvestilo":"Ne bom zaklenil tega kolesa, ker niste administrator."}'); } + $stmt->close(); + $stmt = $conn->prepare("UPDATE kolesa SET `omogoceno`=1 WHERE `ime` = '?'"); + $stmt->bind_param("s", $_REQUEST["k"]); + $stmt->execute(); + $stmt->close(); + $stmt2 = $conn->prepare("SELECT ime FROM ljudje WHERE `kolo`=?"); + $stmt2->bind_param("s", $_REQUEST["k"]); + $stmt2->execute(); + $result = $stmt->get_result(); + $ljudje = $result->fetch_all(MYSQLI_ASSOC); + $ljudje2 = $ljudje; + shuffle($ljudje); + for ($i = 0; $i < sizeof($ljudje);) { + if ($ljudje[$i] == $ljudje2[$i]) { + shuffle($ljudje); + $i = 0; + continue; + } + $i++; + } + $stmt3 = $conn->prepare("UPDATE ljudje SET `izbranec`=? WHERE `ime`=?"); + for ($i = 0; $i < sizeof($ljudje); $i++) { + $stmt3->bind_param("ss", $ljudje[$i], $ljudje2[$i]); + $stmt3->execute(); + } + $stmt3->close(); + $stmt2->close(); + http_response_code(200); + exit ('{"napaka":false,"obvestilo":"uspešno zaklenil kolo."}'); break; case "u": /* srčni utrip */ $r = array(); - $r["dovoli_vrtenje"] = false; - $r["si_administrator"] = false; - $r["moznosti_na_kolesu"] = false; + $stmt2 = $conn->prepare("SELECT ime FROM ljudje WHERE `kolo`=?"); + $stmt2->bind_param("s", $_REQUEST["k"]); + $stmt2->execute(); + $result = $stmt->get_result(); + $ljudje = $result->fetch_all(MYSQLI_ASSOC); + $r["moznosti_na_kolesu"] = $ljudje; + $stmt = $conn->prepare("SELECT admin FROM kolesa WHERE `ime`=?"); + $stmt->bind_param("s", $_REQUEST["k"]); + $stmt->execute(); + $stmt->bind_result($admin_pass); + $stmt->fetch(); + if ($admin_pass === $_REQUEST["g"]) { + $r["si_administrator"] = true; + } else { + $r["si_administrator"] = false; + $r["si_administrator"] = false; + } + $stmt3 = $conn->prepare("SELECT omogoceno FROM `kolesa` WHERE `ime` = ?"); + $stmt3->bind_param("s", $_REQUEST["k"]); + $stmt3->execute(); + $stmt3->bind_result($omogoceno); + $stmt3->fetch(); + if ($omogoceno !== 1) { + $r["dovoli_vrtenje"] = false; + } else { + $r["dovoli_vrtenje"] = true; + } + $r["napaka"] = false; + $stmt2->close(); + $stmt->close(); + $stmt3->close(); http_response_code(200); exit (json_encode($r)); break; case "v": /* vrti */ - if (true /* a je vrtenje nedovoljeno */) { + $stmt3 = $conn->prepare("SELECT omogoceno FROM `kolesa` WHERE `ime` = ?"); + $stmt3->bind_param("s", $_REQUEST["k"]); + $stmt3->execute(); + $stmt3->bind_result($omogoceno); + $stmt3->fetch(); + if ($omogoceno !== 1 /* a je vrtenje nedovoljeno */) { http_response_code(400); exit ('{"napaka":true,"obvestilo":"Ne morem vrteti, ker vrtenja še ni odobril administrator"}'); } - if (true /* če je uporabnik že zavrtel kolo */) { + if (empty($_REQUEST["i"])) { http_response_code(400); - exit ('{"napaka":true,"obvestilo":"Kolesa ne morem vrteti, ker ste ga enkrat že zavrteli."}'); + exit ('{"napaka":true,"obvestilo":"Ne morem vrteti, ker nimam vašega imena."}'); } - /* pridobi obstoječo vrednost iz tabele in jo označi za taken */ + $stmt2 = $conn->prepare("SELECT izbranec FROM `ljudje` WHERE `ime` = ?"); + $stmt2->bind_param("s", $_REQUEST["i"]); + $stmt2->execute(); + $stmt2->bind_result($izbranec); + $stmt2->fetch(); + $r["izbranec"] = $izbranec; + $r["napaka"] = false; + $stmt3->close(); + $stmt2->close(); http_response_code(200); - exit (); + exit(json_encode($r)); break; default: http_response_code(400); -- cgit v1.2.3 From e55ed55a1920ba68b87dc9f0ea3c8da374086657 Mon Sep 17 00:00:00 2001 From: sijanec Date: Tue, 22 Dec 2020 16:54:06 +0100 Subject: =?UTF-8?q?za=20vsak=20slu=C4=8Daj,=20izbrisan=20fajl=20bi=20pomen?= =?UTF-8?q?il=20izbris=20"znanja"=20zgodovine?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zgo/ocena/1/dokument.md | 61 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 zgo/ocena/1/dokument.md diff --git a/zgo/ocena/1/dokument.md b/zgo/ocena/1/dokument.md new file mode 100644 index 0000000..65ea8bb --- /dev/null +++ b/zgo/ocena/1/dokument.md @@ -0,0 +1,61 @@ +Prvo spraševanje zgodovine. +=========================== + +# Rim + +## Propad imperija + +* kriza po 200 letnem obdobju miru v 3. stoletju - rast kriminala, izguba moči senata, vdor tujih ljudstev + - vzroki: življenje na tuj račun, veliko sužnjev imajo obrtniki, šibko gospodarstvo, slaba družba +* vladarji, ki so reševali krizo: + - 212: Karakala: Zakon o državljanstvu za svobodne prebivalce provinc - priseljenci in najemniki dobijo drž. => problem s tujci + - 284-305: Dioklecijan: za 200 let vzpostavi mir - vojaške, finančne, upravne reforme; razdelitev države - + tetrarhija: dva vladarja, dva namestnika, dominat: ni več senata, vladal je sam, 301 je pregnal kristjane. + ga ne ubijejo. 305: rim oslabi, Dioklecijan odstopi + - 307-337: Konstantin: nadaljne reforme, prenese prestolnico v Konstantinopelj/Car./Ist., Milanski edikt: ne preganja več kristja. + - 379-395: Teodozij: Uspešen vojskovodja, cesar [V] rima, v [Z] tetrarhije in hitre menjave, zadnjič združi Rimski imperij + + po smrti 395 razpade Rim, bitka pri Frigidu: Teodozij proti Evgeniju (pogan) - zmaga krščanstva na naših tleh. +* 395 meja Rima: Beograd-Kotor-zaliv velike Sirte v [S] afriki. + - [V]: še 1000 letni obstoj, 1453 ga zasedejo Turki, središče Konstantinopelj, bolj gospodarsko razvit, ne preganjajo raznih ver + - [Z]: 476 Goti odstavijo zadnjega cesarja Romula Avgustula in za kralja postavijo Odoakerja-konec rimskega cesarstva->sredni vek + +### Vzroki za propad + +* Vpad tujih ljudstev: tarča napadov, Kelti/Germani 4. st., Langobardi/Markomani druga polovica 2. st., + Germani(Goti, Vandali, Langobardi) & nomadi(Huni, Alani) v 5. stoletju; šibka vlada +* Demografski razlogi: Št. prebivalcev se zmanjša, Germane sprejmejo kot vojsko, hiperinflacija: ni denarja, vojakom dajo ozemlje. +* Gospodarska/ekonomska kriza: gospodarstvo v razsulu, izkoriščajo naravna bogastva provinc in sužnjev, visoki davki, + razkošno življenje cesarjev, imperij se ne širi več-ni sužnjev/denarja/hrane, samo blagovna menjava + - kolonata/zakupništvo v 3. stoletju: oblika zgodnjih fevdalnih odnosov, oddaš zemljo v zameno za 1/3 pridelka v obdelavo. +* šibkost centralne oblasti: slabi odnosi cerkev-senat-vojska, dedni princip; raste vpliv vojske +* tuji najemniki v vojski: vojska hoče več od bogatih in ne obrani ljudstva pred barbari. +* duhovna kriza: vere iz [V]: mitraizem in krščanstvo zamenjata politeizem, namesto prednikov spoštujejo samo še boga. + - kruha in iger: državljani postanejo apatični in leni + +## Priseljevanje ljudstev (4.-7. stoletje) + +* Huni, Germani, Obri/Avari, Slovani +* Pavel Diakom "Rimska zgodovina - *historia romana*" (pred 774/njegovo smrtjo), piše o bitki pri Frigidu 300-400 let po njej + - najbolj krvava bitka na SLO, Vipava polna trupel, Teodozij poln vere sam plane v vojno, zmaga zaradi vetra, Evgenij pokončan. +* Vzroki za preseljevanje: pomanjkanje hrane, preprosto življenje, mika jih bogastvo Rima, medplemenski spopadi, pritiski tujih + ljudstev, želja po zasedbi ozemelj, prenaseljenost. +* Preseljevalci: Germani, Slovani, Arabci, Huni (vzrok za Germane), Obri/Avari v 6. st. (vzrok za Slovane) + +### Huni + +* arijsko-nomadsko/stepsko ljudstvo začne preseljevanje na Kitajsko, a tam zgradijo Kitajski zid (brah moment) +* središče na dan. Madžarskem, pritiskajo na Germane, dobri jezdeci, 100km/dan, lokostrelci (iz konja zadene 60m cilj), nomadsko lj. +* Vrhunec: 4. st.: Atita (406-453 "bič božji") združi hune dan. Nemčije, panonske nižine, Kaspijskega J., Laponske (Z,J,V,S) + - [V] Rim mu za nenapadanje plačuje letni davek/TRIBUT. 451 ga na Katalonskem polju v Grčiji premaga zdru. vojs. Rima in Vizigotov +* Huni slovensko ozemlje dosežejo 451 in ga plenijo 452. + +### Germani + +* Rimljani jih imajo zaradi neciviliziranega jezika za barbare. Germanska pradomovina je v [J] skandinaviji. +* 1. st.: naselitev na ozemlje med Renom in Odro. Obrt in živinoreja na stopnji rodovno plemenskih zvez in so razslojeni. +* Kralji, vojaške aristokracije, politeizem - Doin, Thor, Freya. Vojskovanje: Frančiška-bojna sekira za met in šilasti meči +* služili v Rimski vojski kot federati. +* [Z] Goti: Leta 410 prvič dobijo Rim, naselijo se v bližino črnega morja. 375 zbežijo pred Huni na ozemlje [V] rimskega cesarstva. + - se sprejo z vladarjem => [S] Grčija => Ilirik in Novik (rimski provinci) => 401 vdrejo v Italijo, 410 zasedejo in izropajo RIM. + - =x neuspešen prodor na Sicilijo => naselitev v galijo - tam so že franki => Pirenejski polotok - dokončna naselitev +* Runska Pisava: 1. st., ravne črte, kombinacija grške in latinske, izum Keltov -- cgit v1.2.3 From b6eeb3822ff2518b11c88d81475508a0e05af64c Mon Sep 17 00:00:00 2001 From: sijanec Date: Tue, 22 Dec 2020 17:53:04 +0100 Subject: =?UTF-8?q?za=20vsak=20slu=C4=8Daj?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zgo/ocena/1/dokument.md | 50 ++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 47 insertions(+), 3 deletions(-) diff --git a/zgo/ocena/1/dokument.md b/zgo/ocena/1/dokument.md index 65ea8bb..8bc2ddf 100644 --- a/zgo/ocena/1/dokument.md +++ b/zgo/ocena/1/dokument.md @@ -11,7 +11,7 @@ Prvo spraševanje zgodovine. - 212: Karakala: Zakon o državljanstvu za svobodne prebivalce provinc - priseljenci in najemniki dobijo drž. => problem s tujci - 284-305: Dioklecijan: za 200 let vzpostavi mir - vojaške, finančne, upravne reforme; razdelitev države - tetrarhija: dva vladarja, dva namestnika, dominat: ni več senata, vladal je sam, 301 je pregnal kristjane. - ga ne ubijejo. 305: rim oslabi, Dioklecijan odstopi + ga ne ubijejo. 305: rim oslabi, Dioklecijan odstopi. Dioklecijan je bil sin sužnja. - 307-337: Konstantin: nadaljne reforme, prenese prestolnico v Konstantinopelj/Car./Ist., Milanski edikt: ne preganja več kristja. - 379-395: Teodozij: Uspešen vojskovodja, cesar [V] rima, v [Z] tetrarhije in hitre menjave, zadnjič združi Rimski imperij + po smrti 395 razpade Rim, bitka pri Frigidu: Teodozij proti Evgeniju (pogan) - zmaga krščanstva na naših tleh. @@ -57,5 +57,49 @@ Prvo spraševanje zgodovine. * služili v Rimski vojski kot federati. * [Z] Goti: Leta 410 prvič dobijo Rim, naselijo se v bližino črnega morja. 375 zbežijo pred Huni na ozemlje [V] rimskega cesarstva. - se sprejo z vladarjem => [S] Grčija => Ilirik in Novik (rimski provinci) => 401 vdrejo v Italijo, 410 zasedejo in izropajo RIM. - - =x neuspešen prodor na Sicilijo => naselitev v galijo - tam so že franki => Pirenejski polotok - dokončna naselitev -* Runska Pisava: 1. st., ravne črte, kombinacija grške in latinske, izum Keltov + - =x neuspešen prodor na Sicilijo => naselitev v galijo - franki => Pirenejski polotok - dokončna naselitev +* Runska Pisava: 1. st., ravne črte, kombinacija grške in latinske, izum Keltov, vkles v kamen na danskem. + - zapis prava: Rotharijev edikt pri Langobardih (643) in Julijski zakon pri frankih (6. st.) +* zapustijo politeizem za krščanstvo, za rimljane krivoverci. +* Germanska plemena (300). Goti se po 3. st. razdeliko na VIZIGOTE ([V] Goti, španija in [J] francija) in OSTROGOTE ([Z] G, italija) + - FRANKI, BURGUNDI: [JV] fr, VANDALI: špa, [S] afrika, ALEMANI, BAVARCI: [S] Alpe, ALANI, SVEBI: Apenin. pol., ANGLI/SASI/JUTI:ANG + +### Slovani + +* Pradomovina: porečje treh rek: Dnjeper, Dnjester, Visla. Etimologija imena ni povsem pojasnjena. Na nižji stopnji razvitosti. +* Poljedelstvo, živinoreja - rodovska skupnost - nižje od Germanov, skromna bivališča - ZEMLJANKE +* naselitev na izpraznjena območja Germanov, izbezajo jih Obri ali Avari. +* Več bogov: Morana-smrt, Vesna-pomlad, Svarog-ogenj, Perun-grom +* skupine: [V]: rusi, belorusi, ukrajinci; [J]: srbi, črnogorci, makedonci, hrvati; [Z]: poljaki, čehi, slovaki, lužiški srbi +* mi delno iz [S] in panon. niž. poselimo [V] Alpe. spadamo pod južne slovane, glede na smer preseljevanja. +* 6. st.: o nas in o veri piše bizantinski zgodovinar Prokopij. časimo reke, vile, divje plese, bodočnost, pojedine, petje +* tujci hvalijo slovansko gostoljubnost. mel smo tut kul žene pa to... i guess... + +### Avari ali Obri + +* azijsko-stepsko-nomadsko ljudstvo/plemenska zveza / naj bi obstajala obrsko-slovanska plemena +* 6. st.: vdrejo v Evropo. obri=konjeniki, slovani=pešaki/pešci, naseljio se v panonsko nižino, ko grejo [V] Goti v Italijo +* 561 z Langobardi uničijo državo Gepido. Ustanovitelj Kan Bajan-6. st. z bizantinci (Justinijan I.) sklene pogodbo o varovanju [S] +* 582: osvojijo Sremsko Mitrovico. + +### Bizantinska država ([V] Rim) in Justinijan + +* Ime države iz Bizanta (Istanbul/Carigrad/Konstantinopelj) +* cesar Justinijan 527-565: sin ilirskega kmeta, učena žena Teodora-uveljavi vseveljavno nadgrajeno [Z] rim. pravo-Justinij. zakonik + - neuspel pri poskusu združitve Rima, je pa ta kulturni vpliv občuten v Benetkah. hotel obnoviti moč [V]+[Z] + - vzroki za neuspeh: preseljevanja ljudstev, potrebna obramba pred [S] ljudstvi, pol. & ver. neenotnost: [Z]: latinščina/[V]: GR + - vojskovodji: BELIZAR in NARSES obnovita IT, AFR, [J] ŠPA; a se ljudstva uprejo. + + Langobardi vdrejo v Ita.-6. st., Arabci osvojijo Afriko-7. st., Španijo-8. st., Sicilijo-9. st. + - cerkev podredi državi-cezaropapizem, se upre vojski, uradništvu +* Bizantinsko cesarstvo: helenistična kultura, vpliv krščanske vere, rimskega prava +* kodeks justinjanus: manjši vpliv očeta na otroke, preganj. krivovercev, bolj svobodni sužnji, prepoved ločitve (ironic), trg z [Z] + +# frankovska država + +* senior zemljo da vazalu, medsebojne dolžnosti (fevdni odnosi) ali pa odvzem zemlje. vrhovni senior je vladar. +* tudi vazal je fevdalec, podložnik pa ni. nižje plemstvo nima fevdov/so premajhni. +* prej so bili začasni, v času karolingov postanejo fevdi dedni. +* zemljiško gospostvo: + - prirodna/dominikalna zemlja-bližina fevdalca: gosposki dvor: upravno/gospodarsko središče, stan. upravnika, gospoda, hlapcev + - zakupna/rustiklana zemlja/HUBA: dana podložnikom v zameno za dajatve in tlako na dominikalni zemlji, dovoljšna za eno družino +* 5.-10. st.: zgodnji, 11.-15. st.: razviti, 16.-18. st.: pozni fevdalizem -- cgit v1.2.3 From 7cf43b3ad62d5e1f6a805a4ba608f864cf3c9667 Mon Sep 17 00:00:00 2001 From: sijanec Date: Tue, 22 Dec 2020 18:46:31 +0100 Subject: =?UTF-8?q?=C5=A1e=20malo=20teksta=20zgodovine,=20more=20to=20come?= =?UTF-8?q?=20tho?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zgo/ocena/1/dokument.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/zgo/ocena/1/dokument.md b/zgo/ocena/1/dokument.md index 8bc2ddf..7ef259d 100644 --- a/zgo/ocena/1/dokument.md +++ b/zgo/ocena/1/dokument.md @@ -103,3 +103,26 @@ Prvo spraševanje zgodovine. - prirodna/dominikalna zemlja-bližina fevdalca: gosposki dvor: upravno/gospodarsko središče, stan. upravnika, gospoda, hlapcev - zakupna/rustiklana zemlja/HUBA: dana podložnikom v zameno za dajatve in tlako na dominikalni zemlji, dovoljšna za eno družino * 5.-10. st.: zgodnji, 11.-15. st.: razviti, 16.-18. st.: pozni fevdalizem +* tlaka: izmerjena/določena (napovedana) ali neizmerjena/nedoločena (dodatna tlaka). podložnike obveznosti so v Z. K./urbarjih +* dajatve navadnim in cerkvenim fevdalcem: velika pravda-žito/vino, mala: izdelki/storitve, dajatve za javno upravo, 1/10 cerkvi + +# vzpon papeštva in nastanek cerkvene države + +* območje dan. IT, cerkvena organizacija sledi upravni org., patriarhat-škof/patriarh: Rim,Antiohija,Aleksandrija,Carigrad,Jeruzalem +* s prihodom Arabcev cerkvena organizacija na Bližnjem [V] in v [S] Afriki začne slabeti. +* razlike med rimskim in carigrajskim patriarhatom => 1054: dokončna delitev/SHIZMA na [Z] rimokatoliško in [V] pravoslavno cerkev. +* položaj papežov: ozemlje si pridobijo z darovi, zzapuščinami in zavezništvi + - rimski patriarh: voditelj skupnosti-papež. - papeška posest: patrimonij Sv. Petra. + - 529: menih Benedikt [J] od Rima na gori Monte Kasino: prvi samostan-Benediktinski-začetek krščanskega meništva-*ora et labora* + - Konstantinova darovnica: ponarejen cerkveni dokument, ki izkazuje lastništvo delov Italije +* shizma ali cerkveni razkol - najavljen že od ločitve rimskega cesarstva - ločitev cerkve na 2 dela - 11. st.: + - [V] pravoslavna <-> [Z] katoliška cerkev. dokončni razkol 1054: papež leon 9. na v cerkev Hagija-Sofija v Carigrad odnese + listino o izobčenju carigrajskega patriarha. to podpre zlom karolingov in kriza papeštva v 10. stoletju + - borba za moč in bogoslovna vprašanja: o celibatu in obredih + - rimsko cerkev v 11. st. obremenijo: SHIZMA in INVESTITURNI spor. + + OTON 1. saški (10.-11. st. / 919-1024) 926 ga Janez 12. okrona za cesarja, ima preveliko moč, izkoristi slabosti papeštva: + + se vmeša v zadeve Italije, papežu obljubi zaščito, vzajemni zaščitni odnos, lahko imenuje novega papeža in škofa (laična inv.) + + 1077: podobno se zgodi s papežem Gregorjem 7. in cesarjem Henrikom 4. +* cerkveni problemi 11. st., še enkrat - 1024 shizma(pravoslavna[V]|rimokatoliška[Z])=>papež ima manj moči + - investiturni boj med otonom I. saškim in rimskonemškim cesarjem, pravica do laične investiture + - ZAPLET: Gregor 7. in Henrik 4. -- cgit v1.2.3 From e597779a544fdd4965d36c7e771b79c96fbf51a2 Mon Sep 17 00:00:00 2001 From: sijanec Date: Tue, 22 Dec 2020 19:58:19 +0100 Subject: =?UTF-8?q?kri=C5=BEarske=20vojne=20in=20pape=C5=BEi=20pri=20u?= =?UTF-8?q?=C4=8Denju=20zgodovine?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zgo/ocena/1/dokument.md | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/zgo/ocena/1/dokument.md b/zgo/ocena/1/dokument.md index 7ef259d..a04b1b8 100644 --- a/zgo/ocena/1/dokument.md +++ b/zgo/ocena/1/dokument.md @@ -125,4 +125,29 @@ Prvo spraševanje zgodovine. + 1077: podobno se zgodi s papežem Gregorjem 7. in cesarjem Henrikom 4. * cerkveni problemi 11. st., še enkrat - 1024 shizma(pravoslavna[V]|rimokatoliška[Z])=>papež ima manj moči - investiturni boj med otonom I. saškim in rimskonemškim cesarjem, pravica do laične investiture - - ZAPLET: Gregor 7. in Henrik 4. + - ZAPLET: Gregor 7. (rimski papež) in Henrik 4. (rimskonemški cesar) + + henrik izkoristi pravico do investiture in ne želi potrditi papeža, doma ga podpirajo, 1077 se skuša opravičiti vrhovnemu pap. + + gre na pot odpuščanja v Kanoso (IT), papež mu po treh dneh čakanja zunaj na mrazu oprosti in prekliče izobčenje. + - 1122: Wormski konkordat - pogodba cerkev:država, zmagajo klinijske zahteve (Cluny-mesto s samostanom), zmaga menihov in papeštva + + trajna odprava laične investiture, uvedba celibata, prepoved simonije/prodaje cerkvenih služb, latinščina=edini jezik bogoslu. + +## križarske vojne (3. problem) + +* sredozemski prostor: različne vere: islam [V]-bizantinsko cesarstvo, krščanski [Z]. + - 11. st. v [J] franciji: mirovno gibanje TRUGA DEI zaradi fevdalskih spopadov cerkev vsak drugi teden prepove vojne da jih prepr. + - zaplet: romanja kristjanov v palestino ogrožajo muslimanski seldžuki (turkmensko ljudstvo). 1071 premagajo bizantince, ki so + papeža Urbana II. prosili za mir. ta dobi idejo za združitev krščanstvo. seldžuki 1077 zavzamejo jeruzalem, 1085 pa Antiohijo. + - Urban II. 1095 pozove na križarske vojne-pohod na sv. grob-križarjem odpusti vse grehe; vsi se udeležijo. + - križarske vojne trajajo 200 let, do 1209. +* 1. (1096-1099, zunanja kolonizacija): 4 skupine plemičev, kmetov&trgovcev neurejeno nasilno oblegajo jeruzalem (zastrupijo vode): + - križarji na [V] ustanovijo svoje države: Eldesa, Antiohija, Tripolui, Jeruzalemsko kraljestvo + - duhovno-viteški redovi-obramba pred muslim.: templarji po koncu=>FR&se ukvarjajo z denarjem, ivanovci/špitalarji, nemci=>prusija +* 2. povod: seldžujska osvojitev Edese 1144. džihad: sveta vojna proti nevernikom +* 3. Friderik Barbarosa (utone@prečkanje Salef), Filip II. Avgust, Rihard Levjesrčni (3 evr. vladarji). Zaradi zavzetja Jer. 1189-92 + - 1911 Filip II. Avgust in Richard Barbarosa zavzameta Ako. +* 4. 1202-1204: slabosti križ. vojn se pokažejo: benečani s prevozom edini zaslužijo, dobijo Zadar, svete dežele križ. ne dosežejo. +* Otroška (1215): tisoče 8-16 letnikov iz FR, otrokom so obljubljali dostojno življenje, na koncu jih prodajo kot sužnje arabcem. +* 5. križarska vojna in križarske vojne Sv. Ludvika: *nič znat* +* 6.: cesar in sultan si brez boja razdelita ozemlje, jeruzalemsko kraljestvo propade. +* Pomen in posledice - izrodijo se v dobičnokosne posle IT trgovcev in pustolovščin željnih fevdalcevi avanture, pregon poganov, + evropejci dobijo od razvitih arabcev kulturo, npr. umivanje rok, Italijanska mesta dobijo veliko denarja. -- cgit v1.2.3 From 51b435410c41197ee85f76c5310068dddd66a6c0 Mon Sep 17 00:00:00 2001 From: sijanec Date: Tue, 22 Dec 2020 20:33:49 +0100 Subject: =?UTF-8?q?zgo=20ocena=201:=20italijanske=20mestne=20dr=C5=BEavice?= =?UTF-8?q?=20in=20absolutizem?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zgo/ocena/1/dokument.md | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/zgo/ocena/1/dokument.md b/zgo/ocena/1/dokument.md index a04b1b8..fa4c5d8 100644 --- a/zgo/ocena/1/dokument.md +++ b/zgo/ocena/1/dokument.md @@ -18,6 +18,7 @@ Prvo spraševanje zgodovine. * 395 meja Rima: Beograd-Kotor-zaliv velike Sirte v [S] afriki. - [V]: še 1000 letni obstoj, 1453 ga zasedejo Turki, središče Konstantinopelj, bolj gospodarsko razvit, ne preganjajo raznih ver - [Z]: 476 Goti odstavijo zadnjega cesarja Romula Avgustula in za kralja postavijo Odoakerja-konec rimskega cesarstva->sredni vek + - na [V] območju nastane rimskonemško cesarstvo, na [Z] pa francija ### Vzroki za propad @@ -61,7 +62,7 @@ Prvo spraševanje zgodovine. * Runska Pisava: 1. st., ravne črte, kombinacija grške in latinske, izum Keltov, vkles v kamen na danskem. - zapis prava: Rotharijev edikt pri Langobardih (643) in Julijski zakon pri frankih (6. st.) * zapustijo politeizem za krščanstvo, za rimljane krivoverci. -* Germanska plemena (300). Goti se po 3. st. razdeliko na VIZIGOTE ([V] Goti, španija in [J] francija) in OSTROGOTE ([Z] G, italija) +* Germanska plemena (300). Goti se po 3. st. razdeliko na VIZIGOTE ([Z] Goti, španija in [J] francija) in OSTROGOTE ([V] G, italija) - FRANKI, BURGUNDI: [JV] fr, VANDALI: špa, [S] afrika, ALEMANI, BAVARCI: [S] Alpe, ALANI, SVEBI: Apenin. pol., ANGLI/SASI/JUTI:ANG ### Slovani @@ -151,3 +152,35 @@ Prvo spraševanje zgodovine. * 6.: cesar in sultan si brez boja razdelita ozemlje, jeruzalemsko kraljestvo propade. * Pomen in posledice - izrodijo se v dobičnokosne posle IT trgovcev in pustolovščin željnih fevdalcevi avanture, pregon poganov, evropejci dobijo od razvitih arabcev kulturo, npr. umivanje rok, Italijanska mesta dobijo veliko denarja. + +# Italijanske mestne državice + +* benetke - rimskonemško/svetorimsko cesarstvo - se osvobodijo - 3. največje mesto v Sr. veku: + - skupnost vodijo TRIBUNI: izbrani predstavniki teritorialno-vojaške aristokracije, nad njimi bizantinski vojvoda DUX/DOŽ + + da se prepreči korupcijo, ga ljudstvo voli. z razvojem plemstva se krepi povezava v VELIKI SVET +* ostala mesta: Genova, Pisa, Amalfi - močne pomorske sile; firence - tekstil +* meceni: financirajo učence, humanizem; diplomati, najemniške vojske + +# absolutizem + +* neomejena oblast človeka, poskus reševanja krize fevdalnega sistema +* oporo mu nudi uradništvo, davki, vojska, cerkev, centralizirana uprava; država ima velike finančne potrebe. +* prva absolutna monarhija: v španiji v 16. st. => močna država +* 10. st.: Kapetingi: šibka osrednja oblast, 13.-14. st.: vojna med anglijo in francijo (dinastija Valois) + - Hugenotske vojne v protireformacije in Dinastija Bourbonov - Ludvik XIV. / sončni kralj + - absolutizem vpeljeta kardinal Richelien in Mazarin. v klasičnem absolutizmu ni reform +* razsvetljeni absolutizem omogoča reforme in je kritičen do absolutizma, zadnji poskus ohranitve fevdalizma z reformami: + - FIZIOKRATIZEM: zemlja je sveta in ima edina novo vrednost, poudarek na kmetijstvu, z reformami se pomaga kmetom in 3. stanu. + - omilitev tlake, manj vpliva cerkve in plemstva +* Marija Terezija vlada 1740-1780 - PRAGMATIČNA SANKCIJA, PRIMOGENITURA: oče, Karl 6., ni imel moškega potomca + - njen sin Jožef II vlada še 10 let. Terezija se je poročila s Francem in je imela 16 otrok + - terezianizem/jožefinizem: davčne reforme: tudi plemstvo plača davke, hišne številke, štetje prebivalstva, zemljiške knjige-kata. + + sodne reforme: poenoteni zakoni, fevdalec ne sodi podložniku, ukinitev mučenja, čarovniških procesij, fevdalnih sodstev + + skuša ukiniti cehe, poenotenje mer in uteži, PROMET: poštne kočije + + vojaške: nepriljubljene, vojaška obveznost med 17. in 40. letom, veliko ljudi se izmuzne (bogati, duhovniki, kmetje) + + robotniški patent: tlaka max. 3 dni na teden, NEVOLNIŠKI/PODLOŽNIŠKI: odprava osebne odvisnosti + + šolske: splošna šolska uredba: obvezno šolanje 6-12 let M&Ž, šole: normalke, glavne šole, trivialke + + zdravstvene: babiške šole in medicinsko-kirurške + + cerkvene: vsaka cerkev max. 1h hoda, tolerančni paket 1781: svoboda vseh veroizpovedi, Jožef II. zapre veliko samostanov + +# TODO: franki -- cgit v1.2.3 From a933e6ac679fdf7596b5ee01a77676507bcc5f3f Mon Sep 17 00:00:00 2001 From: sijanec Date: Tue, 22 Dec 2020 20:51:18 +0100 Subject: zgo ocena 1: nizozemska osvoboditev --- zgo/ocena/1/dokument.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/zgo/ocena/1/dokument.md b/zgo/ocena/1/dokument.md index fa4c5d8..02f19ff 100644 --- a/zgo/ocena/1/dokument.md +++ b/zgo/ocena/1/dokument.md @@ -183,4 +183,12 @@ Prvo spraševanje zgodovine. + zdravstvene: babiške šole in medicinsko-kirurške + cerkvene: vsaka cerkev max. 1h hoda, tolerančni paket 1781: svoboda vseh veroizpovedi, Jožef II. zapre veliko samostanov +# nizozemska osvobodilna vojna + +* nizozemska je del španskega imperija (1. absolutna monarhija), Filip II vlada in od 17 provinc dobiva španija davke +* katoliški španci preganjajo nizozemske protestante, 1566 se nizozemci povežejo, verske zahteve postavijo kralju + - filip pošlje vojsko, vodi jo Alba, verska vojna za avtonomijo, osvobodilna vojna traja do 1648 + - [J] province se 1578 pogodijo s kraljem, [S] se povežejo v UTRECHTSKO ZVEZO, potrjeno ZDR. KRALJEVINO NIZOZ. - 1. meščan. revol. +* državni upravitelj: Viljem Oranski, Amsterdam: pomorska sila, ni fevdalizma, svob. vera, liberalni, oblast: generalni stanovi + # TODO: franki -- cgit v1.2.3 From 3e611d4de5772b04ae11eba81ebf2c9e8f0fafc1 Mon Sep 17 00:00:00 2001 From: sijanec Date: Tue, 22 Dec 2020 21:19:58 +0100 Subject: =?UTF-8?q?angle=C5=A1ka=20zgodovina?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zgo/ocena/1/dokument.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/zgo/ocena/1/dokument.md b/zgo/ocena/1/dokument.md index 02f19ff..1618f39 100644 --- a/zgo/ocena/1/dokument.md +++ b/zgo/ocena/1/dokument.md @@ -191,4 +191,22 @@ Prvo spraševanje zgodovine. - [J] province se 1578 pogodijo s kraljem, [S] se povežejo v UTRECHTSKO ZVEZO, potrjeno ZDR. KRALJEVINO NIZOZ. - 1. meščan. revol. * državni upravitelj: Viljem Oranski, Amsterdam: pomorska sila, ni fevdalizma, svob. vera, liberalni, oblast: generalni stanovi -# TODO: franki +# angleška zgodovina + +* normani: + - bitka pri Hastingu 1066 - Viljem Osvajalec postane angleški kralj, normani pridejo v ANG-vikingi z danske, ki so naselili [Z] FR + - pred normani so tam briti, kelti, anglosasi. trdna osrednja oblast, dobra org., kraljestvo razd. na grofije-normanski vazali +* MAGNA CARTA LIBERTATUM 1215: IVAN BREZ ZEMLJE: Brat Riharda Levjesrčnega, izgubljal zemljo, vedno več davkov, nima podpore + - upor plemstva, ivan prisiljen z listino potrditi fevdalne pravice, meščanske privilegije, neodvisnost cerkve + + vladanje postane skupna stvar kralja, izvoljenih stanov, kraljevskega sveta (ob. anglški parlament), se ne razvije absolutizem + - angleški parlament: zgornji: LOROSKA ZBORNICA-višje plemstvo, spodnji: kraljeva mesta, nižje plemstvo } dom + + odloča o davkih, nadzira državne finance, potrjuje zakone, PARLAMENTARNA MONARHINA: omejena kraljeva oblast +* stoletna vojna-ang:francozi zaradi dinastičnih sporov zaradi zemlje, pomemben mejnik, 14.-15. st. + - IVANA ORLEANSKA: kot fant 1429 reši oblegani ORLEANS, kralj razpusti vojsko, kasneje jo sežgejo + - posledice vojne: zmaga FR-centralizacija, državljanska vojna v ANG (dve roži: bela-YORK, rdeča-LANCHESTER), dinastija TUDOR 1485 +* angleška revolucija: hočejo absolutizem, zaradi MCL ne morejo, začetek: 1642-Oliver Cromwell-Lord Protector + - po cromwellovi smrti želijo obnoviti monarhijo brez prelivanja krvi, parlament-zakonodajna, kralj-izvršilna veja oblasti + - Viljem podpiše Bill of Rights: svoboda govora v parlamentu, ... + - po smrti elizabete oblast dobi Jakob I. iz škotske dinastije, Stuarti skušajo zavladati in obnoviti absolutizem + - Wiljem Oranski, zet Jakoba II.-nizozemca dobi prestol, 1688 je konec revolucije, podpis, zavladata Viljem in Mary + - Imamo vige (podreditev kralja parlamentu) in torijce (predstavniki visokega plemstva, konzervativci) -- cgit v1.2.3 From b43a09a748166cd2354f516442c2b5386b018a9e Mon Sep 17 00:00:00 2001 From: sijanec Date: Tue, 22 Dec 2020 22:08:33 +0100 Subject: zgodovina 1, kinda final --- zgo/ocena/1/dokument.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/zgo/ocena/1/dokument.md b/zgo/ocena/1/dokument.md index 1618f39..3bd0ea9 100644 --- a/zgo/ocena/1/dokument.md +++ b/zgo/ocena/1/dokument.md @@ -94,9 +94,15 @@ Prvo spraševanje zgodovine. - cerkev podredi državi-cezaropapizem, se upre vojski, uradništvu * Bizantinsko cesarstvo: helenistična kultura, vpliv krščanske vere, rimskega prava * kodeks justinjanus: manjši vpliv očeta na otroke, preganj. krivovercev, bolj svobodni sužnji, prepoved ločitve (ironic), trg z [Z] +* justinijan je bil despot, vladal je samovoljno +* HERAKELJ: tematska ureditev, vojaško upravna okrožja, delitev na pokrajine, zgodnja oblika fevdalizma, zemlja vojakom za delo +* po 7. stoletju vedno bolj helenistični videz # frankovska država +* konec 5. stoletja, ozemlje [Z] rimskega cesarstva, kralj Klodvik (480-511) iz Merovingov združi frenkovstva plemena, razširi obl. +* država: kraljeva last, deljena med sinove, to oslabi moč države, zemljo za nagrado +* majordomo: upravitelj kraljevih posesti in dvora * senior zemljo da vazalu, medsebojne dolžnosti (fevdni odnosi) ali pa odvzem zemlje. vrhovni senior je vladar. * tudi vazal je fevdalec, podložnik pa ni. nižje plemstvo nima fevdov/so premajhni. * prej so bili začasni, v času karolingov postanejo fevdi dedni. @@ -107,6 +113,25 @@ Prvo spraševanje zgodovine. * tlaka: izmerjena/določena (napovedana) ali neizmerjena/nedoločena (dodatna tlaka). podložnike obveznosti so v Z. K./urbarjih * dajatve navadnim in cerkvenim fevdalcem: velika pravda-žito/vino, mala: izdelki/storitve, dajatve za javno upravo, 1/10 cerkvi +# karolinška država + +* Karel Martel (732) (martel-kladivo) premaga Arabce pri Poitiersu, prepreči širjenje arabske države proti iberskem polotoku-8.st. + - cerkvi odvzame posest - vzpon Karolingov + - bil je majordom Marovinškemu kralju, Merovingi so še vedno na oblasti +* Pipin Mali: priskoči na pomoč papežu proti langobardom: pipnova darovnica, 751 odstavi Merovinškega kralja=>postane kralj Frankov + - v skladu s frankovsko tradicijo razdeli monarhijo med svoja sinova Karlmana in Karla Velikega +* 771 po bratovi smrti edini frankovski kralj Karel Veliki (768-814 vlada) + - razširi državo na vzhod (Langobardi, Bavarci, Obri/Avari), širi krščanstvo, 800 papež okrona za rimskega cesarja, + spor z Bizantinci, 812: sporazum v Aachnu-prestolnica, tam usrvari dvorno akademijo, Langobard Pavel Diakon, Anglosas Alguin + + dvorna akademija: gramatika, dialektika, retorika, glasba, geometrija, aritmetika, astronomija v latinščini, namen=slavi boga + + slabo izobraženi učitelji, ni efektivna šola, tako kot antične, kardinska renesansa=kulturna dejavnost v času Karla Velikega + + karolinška minuskula, pisarske dejavnosti: prepisovanje klasične kniževnosti, zgodovinopisje, germanske šege, pesnitve, navade +* delitev države: grofije/marke(mejne grofije) (200), meje grofij se spreminjajo +* razpad: lLudvig Pobožni (814-840), sin Karla Velikega, ni uspel ohraniti močisvojega očeta + - tri leta po smrti, 843 si njegovi trije sinovi v Verdunski pogodbi državo razdelijo: karel plešasti [Z], lotar I., Ludvig Nem[V] + - po Lotarjevi smrti si sredinski del razdelita ostala, ostane [V] in [Z] Frankovska država, 10.st.: [Z]=>Francija, [V]=>RN cesar. +* rekonkvista, španci so osvobodajali Iberski polotok od arabcev, med 8. in 14. stoletjem + # vzpon papeštva in nastanek cerkvene države * območje dan. IT, cerkvena organizacija sledi upravni org., patriarhat-škof/patriarh: Rim,Antiohija,Aleksandrija,Carigrad,Jeruzalem @@ -210,3 +235,12 @@ Prvo spraševanje zgodovine. - po smrti elizabete oblast dobi Jakob I. iz škotske dinastije, Stuarti skušajo zavladati in obnoviti absolutizem - Wiljem Oranski, zet Jakoba II.-nizozemca dobi prestol, 1688 je konec revolucije, podpis, zavladata Viljem in Mary - Imamo vige (podreditev kralja parlamentu) in torijce (predstavniki visokega plemstva, konzervativci) + +# etnične, družebne in gospodarske spremembe do srednjega veka do konca 18. stoletja + +* zemlja: vir preživetja in bogastva, fevdalizem: prevladujoč družbeni sistem +* stanovska družba: tisti, ki vladajo +* zemljiško gospostvo: fevd + - razviti fevdalizem: dominikalna/rustikalna, srenjska zemlja/deljena, obrtne delavnice, hube, urbarji, patrimonialna sodišča, + avtokratična/samozadostna enota + - obveznosti in dajatve: tlaka, velika&mala pravda, desetina, primščina, krpščina, priselnina -- cgit v1.2.3 From 2f735d1e8508b91067b333578ed343db1640b37e Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 23 Dec 2020 09:05:43 +0100 Subject: dodan list z arabci --- zgo/ocena/1/dokument.md | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/zgo/ocena/1/dokument.md b/zgo/ocena/1/dokument.md index 3bd0ea9..b6c59ab 100644 --- a/zgo/ocena/1/dokument.md +++ b/zgo/ocena/1/dokument.md @@ -12,7 +12,7 @@ Prvo spraševanje zgodovine. - 284-305: Dioklecijan: za 200 let vzpostavi mir - vojaške, finančne, upravne reforme; razdelitev države - tetrarhija: dva vladarja, dva namestnika, dominat: ni več senata, vladal je sam, 301 je pregnal kristjane. ga ne ubijejo. 305: rim oslabi, Dioklecijan odstopi. Dioklecijan je bil sin sužnja. - - 307-337: Konstantin: nadaljne reforme, prenese prestolnico v Konstantinopelj/Car./Ist., Milanski edikt: ne preganja več kristja. + - 307-337: Konstantin: nadaljne reforme, prenese prestolnico v Konstantinopelj/Car./Ist., Milanski edikt: ne več kristja. 313 - 379-395: Teodozij: Uspešen vojskovodja, cesar [V] rima, v [Z] tetrarhije in hitre menjave, zadnjič združi Rimski imperij + po smrti 395 razpade Rim, bitka pri Frigidu: Teodozij proti Evgeniju (pogan) - zmaga krščanstva na naših tleh. * 395 meja Rima: Beograd-Kotor-zaliv velike Sirte v [S] afriki. @@ -74,6 +74,7 @@ Prvo spraševanje zgodovine. * skupine: [V]: rusi, belorusi, ukrajinci; [J]: srbi, črnogorci, makedonci, hrvati; [Z]: poljaki, čehi, slovaki, lužiški srbi * mi delno iz [S] in panon. niž. poselimo [V] Alpe. spadamo pod južne slovane, glede na smer preseljevanja. * 6. st.: o nas in o veri piše bizantinski zgodovinar Prokopij. časimo reke, vile, divje plese, bodočnost, pojedine, petje +* so pogani, imajo obrede, zažig hiš * tujci hvalijo slovansko gostoljubnost. mel smo tut kul žene pa to... i guess... ### Avari ali Obri @@ -101,7 +102,7 @@ Prvo spraševanje zgodovine. # frankovska država * konec 5. stoletja, ozemlje [Z] rimskega cesarstva, kralj Klodvik (480-511) iz Merovingov združi frenkovstva plemena, razširi obl. -* država: kraljeva last, deljena med sinove, to oslabi moč države, zemljo za nagrado +* država: kraljeva last, deljena med 2 sinova, to oslabi moč države, zemljo za nagrado * majordomo: upravitelj kraljevih posesti in dvora * senior zemljo da vazalu, medsebojne dolžnosti (fevdni odnosi) ali pa odvzem zemlje. vrhovni senior je vladar. * tudi vazal je fevdalec, podložnik pa ni. nižje plemstvo nima fevdov/so premajhni. @@ -127,10 +128,12 @@ Prvo spraševanje zgodovine. + slabo izobraženi učitelji, ni efektivna šola, tako kot antične, kardinska renesansa=kulturna dejavnost v času Karla Velikega + karolinška minuskula, pisarske dejavnosti: prepisovanje klasične kniževnosti, zgodovinopisje, germanske šege, pesnitve, navade * delitev države: grofije/marke(mejne grofije) (200), meje grofij se spreminjajo -* razpad: lLudvig Pobožni (814-840), sin Karla Velikega, ni uspel ohraniti močisvojega očeta +* karl matel -> pipin mali -> karl veliki -> ludvig pobožni -> karl plešasti in ludvig nemški +* razpad: Ludvig Pobožni (814-840), sin Karla Velikega, ni uspel ohraniti močisvojega očeta - tri leta po smrti, 843 si njegovi trije sinovi v Verdunski pogodbi državo razdelijo: karel plešasti [Z], lotar I., Ludvig Nem[V] - po Lotarjevi smrti si sredinski del razdelita ostala, ostane [V] in [Z] Frankovska država, 10.st.: [Z]=>Francija, [V]=>RN cesar. * rekonkvista, španci so osvobodajali Iberski polotok od arabcev, med 8. in 14. stoletjem +* karolinška renesansa: združitev antične krščanske kulture z germansko, kulturni razcvet # vzpon papeštva in nastanek cerkvene države @@ -156,6 +159,7 @@ Prvo spraševanje zgodovine. + gre na pot odpuščanja v Kanoso (IT), papež mu po treh dneh čakanja zunaj na mrazu oprosti in prekliče izobčenje. - 1122: Wormski konkordat - pogodba cerkev:država, zmagajo klinijske zahteve (Cluny-mesto s samostanom), zmaga menihov in papeštva + trajna odprava laične investiture, uvedba celibata, prepoved simonije/prodaje cerkvenih služb, latinščina=edini jezik bogoslu. +* INTEREGNUM/brezvladje: 1254-1273, 1273 veliki knezi izvolijo Rudolfa Habsburškega, zmaga nad Otokarjem II. premišljenim, =>mir ## križarske vojne (3. problem) @@ -184,7 +188,7 @@ Prvo spraševanje zgodovine. - skupnost vodijo TRIBUNI: izbrani predstavniki teritorialno-vojaške aristokracije, nad njimi bizantinski vojvoda DUX/DOŽ + da se prepreči korupcijo, ga ljudstvo voli. z razvojem plemstva se krepi povezava v VELIKI SVET * ostala mesta: Genova, Pisa, Amalfi - močne pomorske sile; firence - tekstil -* meceni: financirajo učence, humanizem; diplomati, najemniške vojske +* meceni: financirajo učence, humanizem; diplomati: v tujini predstavljajo državo, kontalieri: najemniška vojska, najemniške vojske # absolutizem @@ -192,7 +196,7 @@ Prvo spraševanje zgodovine. * oporo mu nudi uradništvo, davki, vojska, cerkev, centralizirana uprava; država ima velike finančne potrebe. * prva absolutna monarhija: v španiji v 16. st. => močna država * 10. st.: Kapetingi: šibka osrednja oblast, 13.-14. st.: vojna med anglijo in francijo (dinastija Valois) - - Hugenotske vojne v protireformacije in Dinastija Bourbonov - Ludvik XIV. / sončni kralj + - Hugenotske vojne v protireformacije in Dinastija Bourbonov - Ludvik XIV. / sončni kraj - absolutizem vpeljeta kardinal Richelien in Mazarin. v klasičnem absolutizmu ni reform * razsvetljeni absolutizem omogoča reforme in je kritičen do absolutizma, zadnji poskus ohranitve fevdalizma z reformami: - FIZIOKRATIZEM: zemlja je sveta in ima edina novo vrednost, poudarek na kmetijstvu, z reformami se pomaga kmetom in 3. stanu. @@ -208,6 +212,13 @@ Prvo spraševanje zgodovine. + zdravstvene: babiške šole in medicinsko-kirurške + cerkvene: vsaka cerkev max. 1h hoda, tolerančni paket 1781: svoboda vseh veroizpovedi, Jožef II. zapre veliko samostanov +# arabci in španija + +* kordobski kulitat, arabci zavzamejo skoraj cel Pirenejski polotok po zmagi nad Vizigoti leta 771, REKONKVISTA +* križarske vojne; stanovska monarhija - srednjeveški stanovski parlament +* leta 1492 španski kralj Ferdinand Argonski in Izabela Kastiljska, ki združita španske državice +* GRANADA: zadnja trdnjava arabcev, preden jih arabci ven izženejo + # nizozemska osvobodilna vojna * nizozemska je del španskega imperija (1. absolutna monarhija), Filip II vlada in od 17 provinc dobiva španija davke @@ -229,6 +240,7 @@ Prvo spraševanje zgodovine. * stoletna vojna-ang:francozi zaradi dinastičnih sporov zaradi zemlje, pomemben mejnik, 14.-15. st. - IVANA ORLEANSKA: kot fant 1429 reši oblegani ORLEANS, kralj razpusti vojsko, kasneje jo sežgejo - posledice vojne: zmaga FR-centralizacija, državljanska vojna v ANG (dve roži: bela-YORK, rdeča-LANCHESTER), dinastija TUDOR 1485 + - Henrik 8. loči angleško od katoliške, po njegovi smrti: Edcard VI., Marija I. katoliška, Elizabeta I. * angleška revolucija: hočejo absolutizem, zaradi MCL ne morejo, začetek: 1642-Oliver Cromwell-Lord Protector - po cromwellovi smrti želijo obnoviti monarhijo brez prelivanja krvi, parlament-zakonodajna, kralj-izvršilna veja oblasti - Viljem podpiše Bill of Rights: svoboda govora v parlamentu, ... -- cgit v1.2.3