beamer/0000755000175000017500000000000012050430506011654 5ustar mohuramohurabeamer/TODO0000644000175000017500000000245012050430504012343 0ustar mohuramohuraToDo list ========= * Some commands for creating a lecture title page. * Make \label work accross lectures. * Perhaps add an way of showing photos of the authors and the institutes in a convenient way. * Add more artwork. * Add an faq section to users guide. * Add miniframes and list of frames. * Add commands for creating toc entries without nav entries. * Make beamer compatible with bibentry. * Make beamer compatible with caption package. * Make beamer compatible with acrotex. * Make beamer work with biblatex in a nicer way. * Make beamer more compatible with XeLaTeX. * Make label= create a special label for the last slide of a frame. * Perhaps add the option of creating "slide labels" for overlay specs. * Add options for absolute and relative positioning the logo. * Make \part create entries in toc, if desired. * Add poster support. Maybe even contact beamerposter authors about integrating it with beamer. * Make beamer compatible with ntheorem. * Reset color mixing after group. * Show short forms of (sub)sections on notes. * Add debug mode for finding errors more easily in TeX and LyX. * Throw away textpos boxes after suppressed pages. * Make pgfpages work together with everyshipout. * Make \emph work inside \section commands. * Make all strings use translator and extend translator if necessary. beamer/README0000644000175000017500000000102612050430504012531 0ustar mohuramohuraBeamer---A LaTeX class for producing presentations ================================================== * See the documentation in doc/beameruserguide.pdf for a user manual. * See the information in doc/licenses/LICENSE for information on licensing. * Read the INSTALL file for installing the class on your system. This package also uses and includes Translator, a package for translating words in LaTeX. We welcome new translations. Please go to http://bitbucket.org/rivanvx/beamer to submit bug reports, request new features, etc. beamer/emacs/0000755000175000017500000000000012050430506012744 5ustar mohuramohurabeamer/emacs/beamer.el0000644000175000017500000001127512050430506014527 0ustar mohuramohura;;; beamer.el --- AUCTeX style for the latex-beamer class ;; Copyright (C) 2004 Thomas Baumann ;; License: GPL, see the file COPYING in the base directory of AUCTeX ;; Author: Thomas Baumann ;; Created: 2003-12-20 ;; Version: $Id$ ;; Keywords: tex ;;; Commentary: ;; This file adds support for the latex-beamer class. ;; ;; This file is intended to be used with the AUCTeX-Package. ;; Put this File into your TeX-style-path. You may also ;; byte-compile this file. ;;; Code: (TeX-add-style-hook "beamer" (function (lambda () (defvar beamer-use-section-labels-flag nil "Controls whether section labels are added") (unless beamer-use-section-labels-flag (make-local-variable 'LaTeX-section-hook) (setq LaTeX-section-hook '(LaTeX-section-heading LaTeX-section-title LaTeX-section-section))) (setq LaTeX-item-list (append '(("itemize" . LaTeX-item-beamer) ("enumerate" . LaTeX-item-beamer)) LaTeX-item-list)) (TeX-add-symbols '("alert" 1) '("alt" TeX-arg-beamer-overlay-spec 2) '("beamerbutton" 1) '("beamergotobutton" 1) '("beamerreturnbutton" 1) '("beamerskipbutton" 1) '("frame" TeX-arg-beamer-frametitle) '("frametitle" 1) '("hyperlink" TeX-arg-beamer-overlay-spec 2) '("hyperlinkslideprev" TeX-arg-beamer-overlay-spec 1) '("hyperlinkslidenext" TeX-arg-beamer-overlay-spec 1) '("hyperlinkframestart" TeX-arg-beamer-overlay-spec 1) '("hyperlinkframeend" TeX-arg-beamer-overlay-spec 1) '("hyperlinkframestartnext" TeX-arg-beamer-overlay-spec 1) '("hyperlinkframeendprev" TeX-arg-beamer-overlay-spec 1) '("hyperlinkpresentationstart" TeX-arg-beamer-overlay-spec 1) '("hyperlinkpresentationend" TeX-arg-beamer-overlay-spec 1) '("hyperlinkappendixstart" TeX-arg-beamer-overlay-spec 1) '("hyperlinkappendixend" TeX-arg-beamer-overlay-spec 1) '("hyperlinkdocumentstart" TeX-arg-beamer-overlay-spec 1) '("hyperlinkdocumentend" TeX-arg-beamer-overlay-spec 1) '("hypertarget" TeX-arg-beamer-overlay-spec 2) '("institute" 1) '("invisible" TeX-arg-beamer-overlay-spec 1) '("label" TeX-arg-beamer-overlay-spec 1) '("logo" 1) '("note" TeX-arg-beamer-note 1) '("only" TeX-arg-beamer-overlay-spec 1) '("onslide" TeX-arg-beamer-overlay-spec) '("partpage") '("pause") '("structure" TeX-arg-beamer-overlay-spec 1) '("temporal" TeX-arg-beamer-overlay-spec 3) '("titlepage") '("titlegraphic" 1) '("uncover" TeX-arg-beamer-overlay-spec 1) '("visible" TeX-arg-beamer-overlay-spec 1) ) (LaTeX-add-environments '("actionenv") '("alertblock" 1) '("beamerboxesrounded" 1) '("block" 1) '("column" "Width") "columns" "columnsonlytextwidth" '("exampleblock" 1) '("onlyenv" (lambda (env &rest ignore) (LaTeX-insert-environment env (let ((overlay (read-input "Overlay: "))) (if (not (zerop (length overlay))) (format "<%s>" overlay)))))) '("overlayarea" "Area width" "Area height") '("overprint" (lambda (env &rest ignore) (LaTeX-insert-environment env (let ((overlay (read-input "Overlay: "))) (if (not (zerop (length overlay))) (format "{%s}" overlay))))))) ))) (defun TeX-arg-beamer-overlay-spec (optional &optional prompt) "Prompt for overlay specification." (let ((overlay (read-input "Overlay: "))) (if (not (zerop (length overlay))) (progn (insert "<" overlay ">"))) (indent-according-to-mode))) (defun TeX-arg-beamer-frametitle (optional &optional prompt) "Prompt for the frametitle." (let ((title (read-input "What title: "))) (if (not (zerop (length title))) (progn (insert TeX-grop TeX-esc "frametitle" TeX-grop title TeX-grcl TeX-grcl)) (progn (insert TeX-grop TeX-grcl))))) (defun LaTeX-item-beamer () "Insert a new item with an optional overlay argument." (TeX-insert-macro "item") (delete-horizontal-space) (TeX-arg-beamer-overlay-spec 0) (insert " ") (indent-according-to-mode)) (defun TeX-arg-beamer-note (optional &optional prompt) "Prompt for overlay specification and optional argument." (let ((overlay (read-input "Overlay: ")) (options (read-input "Options: "))) (if (not (zerop (length overlay))) (progn (insert "<" overlay ">"))) (if (not (zerop (length options))) (progn (insert "[" options "]"))) (indent-according-to-mode))) beamer/doc/0000755000175000017500000000000012050430630012417 5ustar mohuramohurabeamer/doc/beamerinnerthemeexample.tex0000644000175000017500000000142612050430504020032 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerinnerthemeexample.tex,v 5a25f58600c3 2010/04/27 12:17:50 rivanvx $ \documentclass[hyperref={draft}]{beamer} \ifx\themename\undefined \def\themename{default} \fi \useinnertheme{\themename} \usecolortheme{seahorse} \usecolortheme{rose} \setbeamercolor*{frametitle}{parent=titlelike} \setbeamercolor*{author}{parent=titlelike} \setbeamercolor*{date}{parent=titlelike} \setbeamercolor*{institute}{parent=titlelike} \input{beamerthemeexamplebase} beamer/doc/licenses/0000755000175000017500000000000012050430506014226 5ustar mohuramohurabeamer/doc/licenses/LICENSE0000644000175000017500000000251012050430506015231 0ustar mohuramohuraLicenses for the Beamer class ============================= Different parts of the Beamer class package are distributed under different licenses: 1. The code of the package is dual-license. This means that you can decide which license you wish to use when using the beamer package. The two options are: a) You can use the GNU General Public License, Version 2 or any later version published by the Free Software Foundation. b) You can use the LaTeX Project Public License, version 1.3c or (at your option) any later version. 2. The documentation of the package is also dual-license. Again, you can choose between two options: a) You can use the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation. b) You can use the LaTeX Project Public License, version 1.3c or (at your option) any later version). The ``documentation of the package'' refers to all files in the subdirectory doc of the beamer package. A detailed listing can be found in the file doc/licenses/manifest-documentation.txt All files in other directories are part of the ``code of the package.'' A detailed listing can be found in the file doc/licenses/manifest-code.txt You will find the licenses in the manual and also as plain text versions in the directory doc/licenses beamer/doc/beamerug-graphics.tex0000644000175000017500000002216012050430504016527 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-graphics.tex,v 14743c450e2c 2010/06/17 09:25:56 rivanvx $ \section{Graphics} \label{section-graphics} In the following, the advantages and disadvantages of different possible ways of creating graphics for \beamer\ presentations are discussed. Much of the information presented in the following is not really special to \beamer, but applies to any other document class as well. \subsection{Including External Graphic Files Versus Inlines Graphics} There are two principal ways of creating \TeX-documents that include graphics: Either the graphic resides in an external file that is \emph{included} or the graphic is \emph{inlined}, which means that \TeX-file contains a bunch of commands like ``draw a red line from here to there.'' In the following, the advantages and disadvantages of these two approaches are discussed. You can use an external program, like |xfig|, GIMP or Inkscape, to create a graphic. These programs have an option to \emph{export} graphic files in a format that can then be inserted into the presentation. The main advantage is: \begin{itemize} \item You can use a powerful program to create a high-quality graphic. \end{itemize} The main disadvantages are: \begin{itemize} \item You have to worry about many files. Typically there are at least two for each presentation, namely the program's graphic data file and the exported graphic file in a format that can be read by \TeX. \item Changing the graphic using the program does not automatically change the graphic in the presentation. Rather, you must reexport the graphic and rerun \LaTeX. \item It may be difficult to get the line width, fonts, and font sizes right. \item Creating formulas as part of graphics is often difficult or impossible. \end{itemize} You can use all the standard \LaTeX\ commands for inserting graphics, like |\includegraphics| (be sure to include the package |graphics| or |graphicx|). Also, the |pgf| package offers commands for including graphics. Either will work fine in most situations, so choose whichever you like. Like |\pgfdeclareimage|, |\includegraphics| also includes an image only once in a |.pdf| file, even if it used several times (as a matter of fact, the |graphics| package is even a bit smarter about this than |pgf|). However, currently only |pgf| offers the ability to include images that are partly transparent. At the end of this section you will find notes on how to include specific graphic formats like |.eps| or |.jpg|. \lyxnote You can use the usual ``Insert Graphic'' command to insert a graphic. The commands |\includegraphics|, |\pgfuseimage|, and |\pgfimage| are overlay-specification-aware in \beamer. If the overlay specification does not apply, the command has no effect. This is useful for creating a simple animation where each picture of the animation resides in a different file: \begin{verbatim} \begin{frame} \includegraphics<1>[height=2cm]{step1.pdf}% \includegraphics<2>[height=2cm]{step2.pdf}% \includegraphics<3>[height=2cm]{step3.pdf}% \end{frame} \end{verbatim} A different way of creating graphics is to insert graphic drawing commands directly into your \LaTeX\ file. There are numerous packages that help you do this. They have various degrees of sophistication. Inlining graphics suffers from none of the disadvantages mentioned above for including external graphic files, but the main disadvantage is that it is often hard to use these packages. In some sense, you ``program'' your graphics, which requires a bit of practice. When choosing a graphic package, there are a few things to keep in mind: \begin{itemize} \item Many packages produce poor quality graphics. This is especially true of the standard |picture| environment of \LaTeX. \item Powerful packages that produce high-quality graphics often do not work together with |pdflatex|, |lualatex| or |xelatex|. \item The most powerful and easiest-to-use package around, namely |pstricks|, does not work together with |pdflatex|, |lualatex| or |xelatex| and this is a fundamental problem. Due to the fundamental differences between \pdf\ and PostScript, it is not possible to write a ``|pdflatex| back-end for |pstricks|.'' (Situation with |lualatex| and |xelatex| is very similar.) Regardless, \textsc{pst-pdf}, \textsc{xetex-pstricks} and \textsc{pdftricks} package can help here and simplify things from user's perspective. \end{itemize} There are three possible solutions to the above problem, each with it's own advantages and disadvantages. \begin{itemize} \item Use the \textsc{pgf} package. It produces high-quality graphics and works together with |pdflatex|, |lualatex|, |xelatex| and also with normal |latex|. It is not as powerful as |pstricks| (as pointed out above, this is because of rather fundamental reasons) and not as easy to use, but it should be sufficient in most cases. \item Use \textsc{luamplib} package and |lualatex|. It provides you with an environment using which you can type MetaPost code directly in your document. \item Use |pstricks| and stick to |latex| and |dvips| or use some of the workarounds mentioned above. \end{itemize} \lyxnote Inlined graphics must currently be inserted in a large \TeX-mode box. This is not very convenient. \subsection{Including Graphic Files Ending \texttt{.eps} or \texttt{.ps}} External graphic files ending with the extension |.eps| (Encapsulated PostScript) or |.ps| (PostScript) can be included if you use |latex| and |dvips|, but \emph{not} when using |pdflatex|. This is true both for the normal |graphics| package and for |pgf|. When using |pgf|, do \emph{not} add the extension |.eps|. When using |graphics|, do add the extension. If you have a |.eps| graphic and wish to use |pdflatex|, you can use the program |ps2pdf| to convert the graphic to a |.pdf| file. Some modern distributions enable |write18| which allows |pdflatex| to do that automatically. Note, however, that it is often a better idea to directly generate a |.pdf| if the program that produced the |.eps| supports this. \subsection{Including Graphic Files Ending \texttt{.pdf}, \texttt{.jpg}, \texttt{.jpeg} or \texttt{.png}} The four formats |.pdf|, |.jpg|, |.jpeg|, and |.png| can only be included by |pdflatex|. As before, do not add these extension when using |pgf|, but do add them when using |graphics|. If your graphic file has any of these formats and you wish/must use |latex| and |dvips|, you have to convert your graphic to |.eps| first. \subsection{Including Graphic Files Ending \texttt{.mps}} A graphic file ending |.mps| (MetaPost PostScript) is a special kind of Encapsulated PostScript file. Files in this format are produced by the MetaPost program. As you know, \TeX\ is a program that converts simple plain text into beautifully typeset documents. The MetaPost program is similar, only it converts simple plain text into beautiful graphics. The MetaPost program converts a plain text file ending |.mp| into an |.mps| file (although for some unfathomable reason the extension is not added). The |.mp| file must contain text written in the MetaFont programming language. Since |.mps| files are actually also |.eps| files, you can use the normal |\includegraphics| command to include them. However, as a special bonus, you can \emph{also} include such a file when using |pdflatex|. Normally, |pdflatex| cannot handle |.eps| files, but the |.mps| files produced by MetaPost have such a simple and special structure that this is possible. The |graphics| package implements some filters to convert such PostScript output to \pdf\ on-the-fly. For this to work, the file should end |.mps| instead of |.eps|. The following command can be used to make the |graphics| package just \emph{assume} the extension |.mps| for any file it knows nothing about (like files ending with |.1|, which is what MetaPost loves to produce): \begin{verbatim} \DeclareGraphicsRule{*}{mps}{*}{} \end{verbatim} This special feature currently only works with the |graphics| package, not with |pgf|. \subsection{Including Graphic Files Ending \texttt{.mmp}} The format |.mmp| (Multi-MetaPost) is actually not a format that can be included directly in a \TeX-file. Rather, like a |.mp| file, it first has to be converted using the MetaPost program. The crucial difference between |.mp| and |.mmp| is that in the latter multiple graphics can reside in a single |.mmp| file (actually, multiple graphics can also reside in a |.mp| file, but by convention such a file is called |.mmp|). When running MetaPost on a |.mmp| file, it will create not a single encapsulated PostScript file, but several, ending |.0|, |.1|, |.2|, and so on. The idea is that |.0| might contain a main graphic and the following pictures contain overlay material that should be incrementally added to this graphic. To include the series of resulting files, you can use the command |\multiinclude| from the |mpmulti| or from the |xmpmulti| package. How this program works is explained in Section~\ref{section-mpmulti}. beamer/doc/beamerug-tricks.tex0000644000175000017500000002023712050430504016231 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-tricks.tex,v ca2315a97e66 2010/07/12 17:10:04 rivanvx $ \section{How To Uncover Things Piecewise} \subsection{Uncovering an Enumeration Piecewise} A common usage of overlays is to show a list of points in an enumeration in a piecewise fashion. The easiest and most flexible way to do this is the following: \begin{verbatim} \begin{itemize} \item<1-> First point. \item<2-> Second point. \item<3-> Third point. \end{itemize} \end{verbatim} The advantage of this approach is that you retain total control over the order in which items are shown. By changing, for example, the last specification to |<2->|, you can have the last two points uncovered at the same time. A disadvantage of the approach is that you will have to renumber everything if you add a new item. This is usually not such a big problem, but it can be a nuisance. To automatize the uncovering, you can use the following code: \begin{verbatim} \begin{itemize}[<+->] \item First point. \item Second point. \item Third point. \end{itemize} \end{verbatim} The effect of the |[<+->]| is to install a \emph{default overlay specification}, see the definition of |itemize| for details. Now, suppose you wish the second and third point to be shown at the same time. You could achieve this by adding the specification |<2->| to either the second or third |\item| command. However, then you still have to do some renumbering if you add a new item at the beginning. A better approach is to temporarily use a different overlay specification and the dot-notation: \begin{verbatim} \begin{itemize}[<+->] \item First point. \item[<.->] Second point. \item Third point. \end{itemize} \end{verbatim} You might wish to build your own macros based on these ideas (like an |itemstep| environment or a |\itemlikeprevious| command). \subsection{Highlighting the Current Item in an Enumeration} If you uncover an enumeration piecewise, it is sometimes a good idea to highlight the last uncovered point to draw the audience's attention to it. This is best achieved as follows: \begin{verbatim} \begin{itemize} \item<1-| alert@1> First point. \item<2-| alert@2> Second point. \item<3-| alert@3> Third point. \end{itemize} \end{verbatim} or \begin{verbatim} \begin{itemize}[<+-| alert@+>] \item First point. \item Second point. \item Third point. \end{itemize} \end{verbatim} Note that this will draw the little item symbol also in red. \subsection{Changing Symbol Before an Enumeration} When uncovering a list of tasks or problems, you may desire that the symbol in front of the last uncovered symbol is, say, a ballot~X, while for the previous items it is a check mark (you'll find these characters in some Dingbats fonts). The best way to achieve this is to implement a new action environment. If this action is activated, it temporarily changes the item symbol template to the other symbol: \begin{verbatim} \newenvironment{ballotenv} {\only{% \setbeamertemplate{itemize item}{code for showing a ballot}% \setbeamertemplate{itemize subitem}{code for showing a smaller ballot}% \setbeamertemplate{itemize subsubitem}{code for showing a smaller ballot}}} {} \setbeamertemplate{itemize item}{code for showing a check mark} \setbeamertemplate{itemize subitem}{code for showing a smaller check mark} \setbeamertemplate{itemize subsubitem}{code for showing a smaller check mark} \end{verbatim} The effect of the code is to install a check mark as the default template. If the action |ballot| is now requested for some item, this template will temporarily be replaced by the ballot templates. Note that the |ballotenv| is invoked with the overlay specification given for the action directly following it. This causes the |\only| to be invoked exactly for the specified overlays. Here are example usages: \begin{verbatim} \begin{itemize} \item<1-| ballot@1> First point. \item<2-| ballot@2> Second point. \item<3-| ballot@3> Third point. \end{itemize} \end{verbatim} and \begin{verbatim} \begin{itemize}[<+-| ballot@+>] \item First point. \item Second point. \item Third point. \end{itemize} \end{verbatim} In the following example, more and more items become ``checked'' from slide to slide: \begin{verbatim} \begin{itemize}[] \item First point. \item Second point. \item Third point. \end{itemize} \end{verbatim} The important point is |ballot@+|. The funny |visible@1-,+(1)| has the following effect: Although it has no effect with respect to what is shown (after all, it applies to all slides), it ensures that in the enumeration the slide number 4 is mentioned. Thus there will also be a slide in which all three points are checked. \subsection{Uncovering Tagged Formulas Piecewise} Suppose you have a three-line formula as the following: \begin{verbatim} \begin{align} A &= B \\ &= C \\ &= D \end{align} \end{verbatim} Uncovering this formula line-by-line is a little tricky. A first idea is to use the |\pause| or |\onslide| commands. Unfortunately, these do not work since |align| internally reprocesses its input several times, which messes up the delicate internals of the commands. The next idea is the following, which works a little better: \begin{verbatim} \begin{align} A &= B \\ \uncover<2->{&= C \\} \uncover<3->{&= D} \end{align} \end{verbatim} Unfortunately, this does not work in the presence of tags (so it works for the |align*| environment). What happens is that the tag of the last line is shown on all slides. The problem here is that the tag is created when |\\| is encountered or when |\end{align}| is encountered. In the last line these are already ``behind'' the |\uncover|. To solve this problem, you can add an empty line without a tag and then insert a negative vertical skip to undo the last line: \begin{verbatim} \begin{align} A &= B \\ \uncover<2->{&= C \\} \uncover<3->{&= D \\} \notag \end{align} \vskip-1.5em \end{verbatim} \subsection{Uncovering a Table Rowwise} When you wish to uncover a table line-by-line, you will run into all sorts of problems if there are vertical and horizontal lines in the table. The reason is that the first vertical line at the left end is drawn before the line is even read (and thus, in particular, before any |\onslide| command can be read). However, placing a |\pause| or |\uncover| at the end of the line before is also not helpful since it will then suppress the horizontal line below the last uncovered line. A possible way to solve this problem is not to use either horizontal or vertical lines. Instead, coloring the lines using the |colortbl| package is a good alternative to structure the table. Here is an optically pleasing example, where the table is uncovered line-wise: \begin{verbatim} \rowcolors[]{1}{blue!20}{blue!10} \begin{tabular}{l!{\vrule}cccc} Class & A & B & C & D \\\hline X & 1 & 2 & 3 & 4 \pause\\ Y & 3 & 4 & 5 & 6 \pause\\ Z & 5 & 6 & 7 & 8 \end{tabular} \end{verbatim} By using |\onslide| instead of |\pause|, you can get more fine-grained control over which line is shown on which slide. \subsection{Uncovering a Table Columnwise} The same problems as for uncovering a table linewise arise for uncovering it columnwise. Once more, using the |colortbl| package offers a solution. In the following example, the |tabular| header is used to insert |\onslide| commands, one for each column, that cover the entries in the column from a certain slide on. At the end of the last column, the |\onslide| without a specification ensures that the first column on the next row is once more shown normally. Inserting a horizontal line is tricky since it will protrude over the full width of the table also in the covered version. The best idea is just not to use horizontal bars. \begin{verbatim} \rowcolors[]{1}{blue!20}{blue!10} \begin{tabular}{l!{\vrule}c<{\onslide<2->}c<{\onslide<3->}c<{\onslide<4->}c<{\onslide}c} Class & A & B & C & D \\ X & 1 & 2 & 3 & 4 \\ Y & 3 & 4 & 5 & 6 \\ Z & 5 & 6 & 7 & 8 \end{tabular} \end{verbatim} beamer/doc/beamerugcolorthemeseagull.pdf0000644000175000017500000006072712050430570020357 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1133 /Filter /FlateDecode >> stream xWKs6W(͔(ޏc;M54V'cNEʖTծݎ >]<τka9:#& ʅ!ۚ\>>v.XrِR`GS;߮f_/$[k$B;'Ki_ne2Ha@\EzGEi(}k#׈ 9jۺ<ͨ(& ;cۯiz6z9bé *ƚzmt!lF :DFs^IeZ8DHyN9KvvKȒLW QQ- .P0ę (aX >ЂbGZA$I5(au.PD01M ta%%>,_hd·sX0r7Q$sX&N00e(·#w /Xp}đ9”g֋vG| 3>RvIyd!cSdI$NS-85YX8fA`4Q<t, 0n«̉$)$p#2< vǔԙnۤ!͓*S$<ؒ8G4L*Bu3w!h#gqOY2" :+lz%]I^u)rx*1P^BB pʃ]nC8Ód E0qs< y6g!@k5+45$TFCgd8<:גtoDs O9.M鯣|űr_f2]l~'7cub`w R{k6Y iyRqd A&`SIWߔCy]ښ*OJSa~BP^{ u endstream endobj 18 0 obj << /Length 1558 /Filter /FlateDecode >> stream xXKo7W(Z 1AR K#ԒɪoKje-Ԁ]<83!.`']yHN-S^q[>cWP=z~=z4Ҏl1f6cu}'җ j<EWG@*q޼G7շEQƫ vYDrvE_OoKq妬zhXa?;~»}X^3CY"(R8g˲Жe, m)H-!8`rK ?Ώ:PspN= 'hҥ~EHyKsiEt!!1a-;f =+GZUA>-;YĞ)Si;w߲P@,A%XBpiفeiǦ)_u (5/wuZʥ*ߚGU5/*^=QVy w>pޘTwJ(2UDӨ'JW2nR`  K`tȫZ;pgc9CM1K mj M$b>.5W5xڈ z5bXڊ.lzO#.^A{ J<s Z+[9gX]:u||8|ƤWūtDDt8?#j6+jۛͼ&ّJpWC yaTp ї\ =gVAwit13^&ion~7![v`Ti;λ AB=A~FjJs/|]FLѠmCf֢Ytյ|Z꽓^{_pnٮ=[,GJ ju/"7}ߋ8_dcu,(J8Oۦ?l7Q2\wPUݜ_H2xLz"k/"KSPQ E~@`wr5km K .9> 3 IO@M|]tiҁFo0? endstream endobj 25 0 obj << /Length1 1608 /Length2 6092 /Length3 0 /Length 6906 /Filter /FlateDecode >> stream xڭUeXFBPRB)```(A@BiP)i.Ii3uZ׽ֽ3\lFB*$DĄEz0W+C1;!@4T`ԡ`8@LNN D^C3>Y~@`nzṅDBh  @;A08XB[OgЄ"@8@008 0.C@C[hMU;}H& &)h,vh%GըEpĕ24VAw$%o4n$hȾWçe%7:=?uuddz;ަɴ4wH>iXQ}T=ݏGTलfB>Ѽ*"8sTu7+[FMS!reA:7QO^ >ۤ~sQ`=pT|ԓN-S}ʡ,{(l3`{[Mn߱AHHջ[imfƷJ65[49.j{J-6@Ft~FnMԻ0P4Ao(u{_pG6ï`qdW6@u6Y({b;qoF?_ɫXBGu׃w% yW׃ؒeIzFZenϔd7!y M{S,B5dG&-guيKjн2eH#Sɝ(T\ߺ]-88v׏-lkG%A%T>E;'Nt4(/螷-3bAB;qqR;_ Wh`ɰT#aް. ~;ܓK b/]%Q.i׵&)ÿw@a֞1V1IS"c3m%|^Ә B\X{bUЮ[;ja ( ul?BعţxUaw[r1WT;](ϧmu?zy[Q{ -tO BA՝ݦre{V.b vK3'=&k+[%>!V{V@'fzFwI'V ed5.(*Ŋ~Uq'G,Cs҈yV:=乐:MPq@p%m;,[f_̽dcUFCobfti[ӡ)Yd|]7 %p$z7 aaʔ-MveKaF qcWNB&f4}E d/*#M::@׻E45S8ا`I=rK]EwX2̜[/zNLu ;ctR`˓ŭ’%xNWbщ5Df2X#1.SpHڠPgZ-D->Dq4 0;ԖSq($LUB:POW YmN :JHp_ 5mŽ/3!KUpqQ? :i~}fAQZy18:r,ai9 g$4LB7&eRyj[cQtu'`jH[g_Ǧ sA+?&$Ws)T^|xT ,(5 x7kŋ+xQTіM_?At2b4\ryR_yį֭O. 1\L7W Ϟ$j(wU=9IȆ_:Sw{ "vG^SDx+v=SpxI*pZm)H0utY).u,'R\"yid/P-%mHaKA cX_L:vhr=zS&$N[GLw6QK♤>6!?2p;ǘW^Z[*uE +gŊΗZRVM5z#e:uJ>$ﱕzR !uGčӓ/#{$|kxXC>mqGķo*X#C~pnպW4Y5ZWe߰~EŽhF3=vJm"-6kl[m|LZWrOdד&3}#q^kƆzvwis d;r_\Kⲷ۩Uzxn ԋe=j*8` ,rg_}]#S<77`飛3Uεtykw-b%Mb˖ "pbiC>I:"rw+ %C1frq[u,) gφ;CӎƔT.hE*7!hp]aZ㯞L 18ac „-%L̋*楆nyy48Epբ˝p.̨WH|~SdyU4ܡz*\Tn||g׳cVTyjwzֲQOdئW0Ҟ_G*^RxԖH:y# xG/c̷,(dqƻaW`RW8Y-C(H=ŋtq*v>?X2I>@Dݤ}LsdnwcFGJOZ$'>*:9lh>jK" 0׹9E|2U1P; `aS-GnarH!;oE f=Yu硚g)hxCBFxDڣ;OJyL#>ݒ]- ,.RRfHiGHxX-9ɗpq ^vGeaLlc6N)ieb &: 4"yMT{׵bl/)^iݟO8V =~Km5)s7Z ˜BI!Y?4.Doph<- ]}(}7i$c([5~-&;ۡ*S)Y⑾f~J bAmK9yDȈ٣s|, Fk'D^k2RIʗe)!.w[[&C;clF='O,sݞ~- !omBUe̤?y't,⅕ms.6 B%oHPX|CLv>ē!)zK=G9]#,^9NF7{֏{ޔ^/2h!Ѭ$u 4bwLҧ`Kl87i%{$i\q[l2~"LyMc((@=|LOpdƝt4>=> Nyuzi,ۗr?\f:UawY'À2\6XVQ|vI`%@*))SZ^.jtGa,e {ʒ́]΀p5Xw<ۖR- KiTɍ}i{pY 2cق "}H=cgoY=Юwhu}+:Po꺓ͭz^´l`F+%0\dFWQ3F хےao ṽUtA5Vi7gw֝ԕÏ a^ >qiDX2Y3!}(dOBxJc 86=Ɯ,WUBdm cKu7Qv[M9ʳo{.*d{d@TL 4_iw{3[% ~ϭ^—1/T+!*X[NP87N1/is endstream endobj 27 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 32 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203934Z) /ModDate (D:20121113203934Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 19 /First 138 /Length 1148 /Filter /FlateDecode >> stream xVKsFWqRޞ^TQqS80* =xzrHafzf5j)AGQ @)ڥn(A?x!!ڱ'dG^Zh.Ay<'$H #m-h%tDy:86w8x&Iľ}lbrk%7fG3X}!YSˢ$np؇cg ] c4!_iAP8(€{Ϫ!t9h[n= 4iʑiM|v9DKՔ ڑWE''|i@88(HW:[uӬce|FS\dq: s,pOKg⛾.o~oCHt{]z-וn~xWx7xw'2+[J&8IWD=&Fg8qF݊?l[/79~$DcȌ)%B it{>L!~C0~xb8)CB% $ɜPųzhKm蚩SjapխR=<?䌀@~ ٬r6h%zZlDE&>7^(7:|d]te ؋0^GDʎX\ۭ5\{5^uރRmTآrTȴa~4.s7)Rʲ:ދYDҹS+p;2vvGwciGFcRE_aL endstream endobj 33 0 obj << /Type /XRef /Index [0 34] /Size 34 /W [1 2 1] /Root 31 0 R /Info 32 0 R /ID [<816748B01CCBC69A9DBDEEE08F5BE4C0> <816748B01CCBC69A9DBDEEE08F5BE4C0>] /Length 97 /Filter /FlateDecode >> stream x@@nֲ!.tz_5!:)ERIDq[G%$J'Tج\^km2q2 endstream endobj startxref 24700 %%EOF beamer/doc/themeexamples/0000755000175000017500000000000012050430506015262 5ustar mohuramohurabeamer/doc/themeexamples/beamerthememakeexamples.sh0000644000175000017500000000066212050430506022475 0ustar mohuramohura#!/bin/sh for i in \ AnnArbor Antibes Bergen Berkeley Berlin Boadilla boxes \ CambridgeUS Copenhagen Darmstadt Dresden EastLansing \ Frankfurt Goettingen Hannover Ilmenau JuanLesPins \ Luebeck Madrid Malmoe Marburg Montpellier PaloAlto \ Pittsburgh Rochester Singapore Szeged Warsaw; do ( pdflatex \\def\\themename\{"$i"\}\\input beamerthemeexample.tex; mv beamerthemeexample.pdf beameruserguideexample"$i".pdf; ) donebeamer/doc/themeexamples/beamerthemeexample.tex0000644000175000017500000000303112050430504021631 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/themeexamples/beamerthemeexample.tex,v 5a25f58600c3 2010/04/27 12:17:50 rivanvx $ \documentclass{beamer} \ifx\themename\undefined \def\themename{default} \fi \usetheme{\themename} \beamertemplatetransparentcovered \usepackage{times} \usepackage[T1]{fontenc} \title{There Is No Largest Prime Number} \subtitle{With an introduction to a new proof technique} \author{Euklid of Alexandria} \institute{Department of Mathematics\\ University of Alexandria} \date{Symposium on Prime Number, --280} \begin{document} \begin{frame} \titlepage \end{frame} \begin{frame} \frametitle{Outline} \tableofcontents \end{frame} \section{Results} \subsection{Proof of the Main Theorem} \begin{frame}<1> \frametitle{Proof That There Is No Largest Prime Number} \framesubtitle{A proof using \textit{reductio ad absurdum}.} \begin{theorem} There is no largest prime number. \end{theorem} \begin{proof} \begin{enumerate} \item<1-> Suppose $p$ were the largest prime number. \item<2-> Let $q := 1 + \prod_{i=1}^p i = 1+p!$. \item<3-> Then $q$ is not divisible by any $p' \in \{1,\dots,p\}$. \item<1-> Thus $q>p$ is also prime.\qedhere \end{enumerate} \end{proof} \end{frame} \end{document} beamer/doc/beameruserguide.pdf0000644000175000017500000576434212050430630016307 0ustar mohuramohura%PDF-1.5 % 1 0 obj << /Length 843 /Filter /FlateDecode >> stream xmUMo0WxNWH Z&T~3ڮzy87?nkNehܤ=77U\;?:׺v==onU;O^uu#½O ۍ=٘a?kLy6F/7}̽][H<Sicݾk^90jYVH^v}0<rL ͯ_/CkBnyWTHkuqö{s\녚"p]ϞќKյ u/A )`JbD>`2$`TY'`(ZqBJŌ )Ǩ%553<,(hlwB60aG+LgıcW c rn q9Mܗ8% CMq.5ShrAI皎\Sȩ ]8 `Y7ь1Oyezl,d mYĸSSJf-1i:C&e c4R$D& &+übLaj by+bYBg YJYYr֟bx(rGT̛`F+٭L ,C9?d+͊11ӊĊ׊T_~+Cg!o!_??/?㫄Y ?^B\jUP{xᇻL^U}9pQq0O}c}3tȢ}Ə!VOu˷ endstream endobj 6 0 obj << /Type /ObjStm /N 100 /First 813 /Length 1387 /Filter /FlateDecode >> stream xڝ[o8+mM!KP$h}-&"KD73."g.qΙ!Z (! D4L?rU =c܈b ֚_!nc2,C2!cH&1d,YNf&$  (4YM!­("gc"SuB_^(*}]eVCsC4wծ>2o|U}7z(\vq.}riF.os噛cytQ۴+Wû .;! E:=`@͆2n̕|CC0#N'OĺHɻ -k&(ü>oGXT?'t^mYEC#hE4?쐎ٙizܭ< D5XӉ龽0@T*FwLrʴ][laGe/z;1g8CK`{ h^Ymmvc'Eo4ϋ)Vس}&)e~^~rէQbs_! (&Es#?~uu~JACEbMN&T'9FoL"?Wcvs-l+dA?Nuzgwiy۷_᪡UuOWg"ܘB }̫w\G25o >?\6Lm`-},:m #P}GTge{pw8Uʆuo/VɁ1<A1Qj68 L;~ath^wVu{TlO%g…=*ܣKJjwIXJҎπa# ]xypkm/ƞwGv ԻRۓsj|f$ZŸ^Ofpcmg endstream endobj 207 0 obj << /Type /ObjStm /N 100 /First 866 /Length 1448 /Filter /FlateDecode >> stream xڥWnF}Wcep1i}-(ҁ=Cv圙9sٕL,%$EBAVc$^ :aHþĞş$372%R6**j (C##yh%ǫ"๶p#I MBUPjxՔƐ8rȱ]+)Kd[Y; i C?p*E])fפXb[( G):a5 @&2 f+a ȆyȀlHlaPK")PTp ^ T(N3,VL 4(NUTő$pCqkf B9ey ~a801d8HT˜74'ڱd&8lLu9pRx C ibVdmr6YbLz21? (fA0fYVb`R WiG#xXWy%}݄.| Cz;V eΛʫ%y vh:[؃u\!o<ݬ!3AbC vσ\DE6MmsOOD?ES׼PivըvWoUHtu뀇p{[W3[-cȟ'pJ)ݳ~_6C[j@2?З2_W豂s7?|!6>/煟8:.}!uG M_k\u=5S9m^Ԏ{:Rga!˹rT#(:H'ľ&> stream xڥWnF}Wc JN[27ЬyI9VgHqe(;gfΙYR:) -i^$YŐx$ʀD,*WMX!.HaV?Hae+^'ŠF Vd4hM&!,Ț>,5B2Bއؑ1Em@QVQ,A.`"$`C@\@R%lq |}BE,@F91C#aa)ȆylA l @3]y0Ȃ) GRrn !MB`d)pnXU+@ B Ii XB2pT!p T1@ Qd- t{a joAi"d"qUZx'-5O dȉA@A ed2PP Xʘ3*mԨi* 8y( - VJf('P;T\J M2kBŇ~E뛚7\urǏ7I%y=:Mz=Xmۺ8 asYg1vh/mR:4IﳶTݽgNb&՚6Qyu39Mosܨ2ê׮%# P;xDukd{8|;ǥʾN6,QƜ|{*&5=KVKoy:4`Oϡ M!otǗhӶJJŖ*co#oL27f'0K'̭_30ф/{Һc}0IWDj$ϋW=*mVځ`Do7ii[1uI鼨o9n;(&e؂}80s٬rr_wG]W~w7> stream xڭn8s mQ@QME-{8t"T IN>lYr0DoPM(!#CVxJ5LpBa bUSqޑLpJ*wɤ$eaJ^ZҘ3*!m$:] 4aP@yW7.hzSyvj MWYk,?ȕ{kvWy-@g MiZQmtK.*_,}ll1&7G7VDz_>,}`Bܢ- L_Pz3YsSon潯F'Q^~̾{1j/_OPh):Yiئgn="yhm>ķe,Ӛ ̋PYU3eH^Ӿ1;x#ke|Prt{}w9APfGhꏺwO+-z;4#h}jP Ms0ltEK+ثTv22e푇p#l@Ժ![6mN2P.g4{d 2y:G8ta(:#xQxks~6cj@s͸8Ys_ruh7P0kmw6u8Efēś _׫Qg61^WoI ] ة7eb|fB3>bM=,;$ tRx%-skuo78'^3^npڹN==x3(c P{_ճCrYV[?T8yt;wWߙOet[:j}q1ꎺr3x/1_V?5" endstream endobj 1000 0 obj << /Length 639 /Filter /FlateDecode >> stream xڕUMo0 WC.>!0[Eai!T@lݭHG[r8M!#)SAW" #"_g$'(@<^}(/,^RXP4[–c)-9N8C }٧%#}lc"jAx1I:b=!a؄8MeB g֙jxY3,@D?(q$б 6a)cAy.KrHHF@zQjP E,_[ޖn3>{m8r$]|1et*O+Qi=duPtuJ{:'/<׺shu-R^IUdԯ%?S@̼RGJoWhLsz)0ڌN{յ_Dfv|ѽgJ< 3 wM.Y=R]t4mu飯]xXRwO|Qﴻ-VFA3MeKGoڞҖruTyK9bwO^Vq> 1!IF ] HC&0&sℰwN݌uʘ͘/xto>CGğ endstream endobj 996 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerlogo.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 1011 0 R /BBox [0 0 170.078751 170.079422] /Group 1003 0 R /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >>>> /Length 1203 /Filter /FlateDecode >> stream xuVKn,7 )ԏw<(KiOK=x܀1R#9 ֋f4Iu?Bp'i|73\nLYwlul+os@e2PR~A.{Fr%)+JB$ i{InLdc3cs]e%x *[Δ,|a@Zjy MբΒZ-\6 ڂѫ`5,>zfO-P2qK͢h S 7RiaJ5'EL8;Fvh}\zb%i!8z>-#ܒu$Q@zsaBF6Vڢ3`Bcř%B'W*`mX{ S@  ɤ#>̽f}:-( >":0Zd(V(1#.Bh!DECg#uOTUՁF }Q%wC HvLUb$2}CLº䡺:qkw8fNlbHE,5RmddS'6X[.҄ݟ.3W/ ?}+݇(~.ޒl?}+NrN>?sa endstream endobj 997 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemePittsburgh.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 1012 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 1015 0 R /F51 1018 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1627 /Filter /FlateDecode >> stream xYYo9 ~cUbhu89x%ugf#uѴF}&\FތXw^#oF@gDADXA0d1#磏}5RI& % I|8彏r]"HrNDHE=DR,Gd4$@uUz 2JRLi1}D)Goa@ ~p)\ɑ9@(5C^r뀤``[H*!#C$0L4s԰=τ[~ qd.͋TwOg8Z3%fKud5%#9f Ps&[6u&oj`ef N>Y yImI5q39$5$ps!Dee>8.sd y ~)^4@6iEmf=Sߒz0L2Ce$f 9BE8Yue >-_w#Z S6S&uB)yYy5[䭔=EG@ƣUpcGf< mĮ:=6߱Tf!wNF^I sQ%t0-fca8㻓l'cj~:[~ݰŰ G1 `9Ґ1F\nq{{Wzy#W3El5}J=9Kr8[ͣ՝(NX5qZ)/ (q:`@hZX.f虎u!p自ϤI7)2m&u2搳MA%[_1Pvuϝ.3ګAK #Ώ9^.g5 +]e tLf/rEy)Cʸ_qk} Wc|x"m@N8zD圗[ٰyz` o>l1Aa+)RkB Z]z=+a7>}1{3 >!0͉㴋vp ADyb96B `ɪEG@ҀII,!/`.2P>ȴQ/d 3 mgfP߫` gkqH`-h[2_y?*STӹɀcW*p|-d$j`}xl]>}ߘo\O{Ho='Mxbvx_ b7ֶJK} 0ZDgF8r9_ Y[cGBp Y@0Oi=(,3v6SR*AvϓdPG7p endstream endobj 810 0 obj << /Type /ObjStm /N 100 /First 876 /Length 1935 /Filter /FlateDecode >> stream xڝXko_1F'[;/\5l)nȢ@RvTS[La/8\ypWNx&bed$Ց4Wd{HI%e-)iqOY_k2 ! @kGHy4W^4?z{YES3}HD盰(5})7kلV-WU~}=lDU!o&zQ]G0_n֍,‡s)9f{ͷMc 0Հ|U5b܅9 Λj5I]Izz.ُUWUy}:BMΚGj})}484y `s".Z:PyEEzOʫ"-GۡiGBj!a]O9u︝[!"ЧI`v&cne~Ml'zQIG*@"Oo-3] |X/_߭G!Ag4[4_y˗ah~ Cɜ>25/Mg. ۩aY˿3IqkE}WM{`$`UIrfPrp48{]YY]9<vǴv"$I`E8{*hm§zI}8>~[Q:8Y@)|է•_|UӋ7nW|fᘀWHUͥw":)/m*t)oy ڑeoyR&(n[H%󓼓Sj{>L3qUAK7*S7z*3.iΘtF7ިzo>EiFZk6%eu&29Ose\C[qyoQ)lmẖz` æOlG<=ɠQA|tĵzݺA16N098ʉ9<"^]GxD y9t?t_AD\&ҎZ_ endstream endobj 998 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeFrankfurt.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 1024 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 1026 0 R /F49 1028 0 R >> /XObject << /Fm1 1029 0 R /Fm2 1030 0 R /Fm3 1031 0 R /Fm9 1032 0 R /Fm5 1033 0 R /Fm6 1034 0 R /Fm4 1035 0 R /Fm10 1036 0 R /Fm11 1037 0 R /Fm12 1038 0 R >>/ProcSet [ /PDF /Text ] >> /Length 2342 /Filter /FlateDecode >> stream xZYo7~ׯࣄE3`a ,yAd3[ŻiIcٱج*Uŏa0rdž-9ܻ:#& ʅ!%9;>/H}wiIF)}=$G 2NT3O$UΒjM i@i򉠠 2R鬔DgW#v6Ф(8 t EdI5(V97V={ׁSd>C^ru@Rr[H*D8G.Ha2aa"*o?)GGj2i/#!g / f(:u# ݽa틲~]ȱӗj#:{XEEQNƳ\9!#cDAD+m*=lyu2!ƚŪn]C$w[Q/-~h$}rI% ㇽ_2Yk0q$@s C¡`b^ִz^dEwb.۶Ә8y,^t7e2pU $|ߧrgg  =ȻfFT3.?RP HLFFP欿m#ɦ;+ a?%( 'vˌl^aLM*PnۦV*Fĝ03mQLҀֳzh<*D/֤p8W A)ƾ&c'3Τ{[-JÉEyuEi8b)5p ]'tB>l?8N'^=-X$Q҆X>IP?M9d(s S ŌJP-A1kx?6 Ō/ŪP̊`!vc^+ UayXa+Xa+0Xaہ4+l}aG/ l}¸e#x Z%rdj45FހLSEnBű)9Mg&9euTXPNa u i9wÉ)Vh0€)X\+M-L_?m:;f@IXd! ~rnf, X mm8 ~9$g&TRa<ԟ_Y1'rctOx8kdz1Q7r"E;8_ zKT{uT0f$RbKmj&KKƋ_O}P. 9_> stream xP( endstream endobj 1030 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 6.253] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 1042 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 1031 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 3.126] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 1043 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 1032 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 3.985] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 1044 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 1033 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 8 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 1045 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 1034 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 16 16] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 1046 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 1035 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 1047 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 1036 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 1048 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 1037 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 1049 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 1038 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 1050 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 1051 0 obj << /Length 586 /Filter /FlateDecode >> stream xmTˎ0+$$0  a#A%߯jD岻fc;Z̫MfG} q]/ޭmޯo⣩0Z^x]fkn{E+{*ʧypg6;5PVpH8$hmڢ*߄zR:")󨺠3qXysO'H)-"}[˺s 3 4{pYdrK+ a }ѫW{ Fvm7344AGc ڤ_86 endstream endobj 1052 0 obj << /Length 770 /Filter /FlateDecode >> stream xmUn0E"y$U6ɢ5h)8",c\Ws/.7?3oz(yѧ2zvAwG݌=yzVmMמMW\=j_I*Cn_f &1y+Sw$F5? S4!1!r3Ҵ>Za?ɻ=ñK}:j=w(]UU#5dkuѥy e*x12+Sx,099)5tJN'{fS 2R̼  KV iXBRs>^ .KCc2c4&Wo"q8^zl p5u%=cK(q/?xQcc/s/G|-mƯP/S8+8 4fRSYZ"?.01шŕ[KPKS60e;U}Z8~Sg; _gvi;Kc g̭oZ ' L^ ^$K{)p/EX{)^ (½ߎ> stream xmVMo8WhCj~H\HrhSbd IJ!ۇռâ؃޼!9_?7?UepPgww͡pcӷx6׏;[Rd񟇧}z eq<÷LUJM롯{Ni~l1>_\}~8ȳ&qq;RUl, g^Cs=~k*[4^͖OmTI:/nY㵞1Ls*J`#l neܢ8Wi+xA= pMn?SbZbh`-؁6+ҖtΘ 7 XB[M98h򯠛& jwJ7ɿq/1n^i 1z1MN F_ HĒ?K|M,愆f[ eR SxK¿ec QR+ey h_8khG_=soSs9S[<9^r%Z:k`N<'{>[AkZ&# 9%F-܂ϩ=WC'}k_KRV³ᯌQV $!6n/xzjgu endstream endobj 1054 0 obj << /Length 1026 /Filter /FlateDecode >> stream xmKo0 ޡ@wbKE=îv;pCL2bzn>|ܘnxv%p[)OM5ף/ߝ\qh%-p< ~۷k'}r6?F<.oƓOVn<k~I1=9;[ˡy6Rw2)]~C2Dww<_ws1vn<ďqǝ{r?x),9|?\LR`йiߺq߿.I㻦\}𥹢9/85dNrf=KʳXxΈ9&^zz_/e%^I%Юskfy*x7`?J#+ ruAι.Ț낼 \duA\r \WyUb^卼:oy#yuȫF^7꼑Wl8/a9/Qr^8⼐Wyޅlf`;%[mp$[MyX[R+IL6`Yː 9HKvvI6)+Kk ㇹ7+/Qe\G$@if<`F[fĩW诉70O*Ƴx"ÜE)=+b~sN~v?SȆG?r#W?r#7?p>Sfcʥ~dFbw4ψ}}kfGl-?r\q# ?zSf fWKfUM}k5sBoh:0Ν4}{CUNzVcC6&9&jQ,^ktfj)B5&^SkP{MkMC"^+C*^kP{BEքkm V:^LZ"R[=nj lp\u[#CWCi8,ߙ~4?s endstream endobj 1057 0 obj << /Length 1201 /Filter /FlateDecode >> stream xڕWo8 ~_GhTeiۭ ;@mu&va;e8m^"")R:3wK钜Jm9)XgIAJf3%ٍL7kYQ*Oqr]ΔcWIf*cmCU'6w>z?z-ŧd. ύNj ߷'7BY3r j4_TuMz39p$kHq?Om7?2IiWLbaﯪCucx5r^|wY)X(ٺ4 aP>TjOEۑXŪaLZ.[Al!aTVJVn|3l KF->ҋ= CL\IajklOOK{j's.D~\?(EMds>W%/Bu- ^SFؑ.4,q˺Bˇ8N V@Jy2ĖknCo8)Y nS]gaf-8b'0ڗǼF PZҜo1ORX wSɰ7N,{W6]Ph{tg:cGUh/ N$ aՔvUхD)kjjVLsN=٦tsɍs`")H ٞL$H f!{#BЊVQJI*[??qgRd'"A;Mp/ 8rl{]S ZҜjtN94 `<0\@qsC:@z@2hNtuj#XM tds@½B@AFX ߫ 5 h:Z,<wt;J:l2xTp,>}v8L0AW0SA X 2-𦪣75 hvI6:52˶YU麠 cZ}is_P-$nj#|'n{{Zévnڋ㍰d>q`_ҚHq}E@1x,'6@ѓV dQ #ӎ:pDqas ] ZI[KcHad"Cmw0-sg7:R8@ endstream endobj 1102 0 obj << /Length 1572 /Filter /FlateDecode >> stream x[s893D՗%owq:4{p5ԉ3\࿿%'$_GW]88xSʑ% W)A`0>;xytJq+H՝:#~*FMQy@8b\PۭO@"f)\1㣣ajZ"I7zd}Xږв&}FEJ>*m7=2$pM"7Wq3F"^MiɼG$c7˼ԋv( ,`j5ϻ^LC=.?4&H9E'0*CL*7 pS=UAtIP!5\}N#c&d`Pa_0P o^6D^)r;j8F*ΟIBHx}%CR0Z^2S% ci/fNLU.Y0?~R{>pZMlyZ@[ $GO FW\s)L;WU:ꀸR6a {,7ou2vOf._}?pw'G^ϴ1|t\g^?nеfFZ jgPV/*b F["l?E E)MeIyLIMa蒙H#M~#e󱞏R͠% %XCVz~|yaVqVofm2Nf A6sq0wzZEAʫԥ*r@E $c < -Cz@$‚9nG.܋yX6ĈFۦW}#=ʓUۭhy}JϬ]l ಣ>dCd'Y{뷒Vw0N똒_tgH*4ݟoO,/ʍ u]]tȈ>(Z:O endstream endobj 1162 0 obj << /Length 1911 /Filter /FlateDecode >> stream x\MwFWs*|1McN4ucnO @v_b6Rl+ 1H}YgcZз\XP` ''; };˿|kgd;!0gQ,lbь NsVTy/Rg! C/AP2!Fրm\ }V9)Bo)`L3V.`9eq7΀x^W>COᨛt> r[l`^;0*e\G/gBip* c gy*k G b9%ŀ JQx^.|G1[ i@+y`#VAyN]%zvg/^}޵lGsGfMB<WSgU3gza'Uo,!bΫzSP& {N7>෈+i=I9쟉7TX|̈!C~nxSzR=Kޝ C :*ry븜&҉,6W 4˿> stream x\[Ƒ~_G뜤}ɱ^gXD3C$$(KU͹1hn̐h4U/**B*:i*BEUH%_hbCIL*th\ڲ0V'C%]XJhlC+G|lR(\JL/z."|ՕE"Qi̝o-RJ(yw{|EZU|ifg:8W3B҃L҃6A\;fqI{VKYt")#&_na#Qff 87>&)npjF7kX8_R^n6n + 7[qgWDpsK1] K.2<<~ A*.ww@G" (P̠H*7E* mhUh !V:j"n,=jWd*gtL$O!F͵ [['mKp# $CBT$HJ+y ~ Ld 6.Yr_ Q0ꊥ# aܨ[BB&`;cBFl Eöm JZpع 4OEp/"9D8!m{}b. }F(|_n{__Np76g0[qLӑ_zwߏ_}u ~: |9iɁ|6;>WrRC-gr}VMjY̫yӴh.QZNrJիIle@i]-]䴕gUVk~/曵4E%O?K"6kr=֧Ͳ/lOWu- >r=(S3 'ͼYz1Jzϛj.OVuWU|,ȧ|._oo˗;|%*_7|')Gjn7AkfjYr LU݉䑜ȩ'TO˅\FɟJe+7E~俙Cs]ug&(ȑ6,%k>1f|jFB&Y§Vd3CaѴ3nuv<yÒJdO  pJ,:YUgT H9K'-ggٚ͆<H6 allZkx^,V&+HhsշՄ92/+뤞EnPn'jWV6'0rRzBtdfɄ)/;?< y3VɊpkZB ǃ??_S|q6=~[<:O4| =C)x.QrV"i ?wo3(T>'^@GrIߞBrp;yfY,Rq%:~AxV*>7zD貋{,fs)UbZOOU˪/̦ڍSxV' GQ."ʮ*;nGUhTƖhBFsإ4AiTF*ӧjR[Ա叮[mWkN=#^^aPGmO!_=_rC#";u_F*)/@V^|rUqe7HxH H9uBw|8FVo(*lR fQ͖!MR?Rc5ז,9H3|X@<.X^dlJW2b׬]m~;DtVs~P~m`o< |.x'Ў0=޹K7VwsR[fD% elڶ|uAQ+"5()詊BNJBYewܯ".%>_41\2T I`q{v' $<5Kbb ^znҝ1ޟэ2#g!jHW+a4roM|HOLn>Beg3Ӆ y}LY|PEJ=o'!]LTomqoNja˖]._k'r뾃ITO!/)]t+rʋ t">@AVYgnԁ%WHTY~iyLD[ o &l.\r!B ̅L9d!SrȔC2)L9f1Sr̔c3)L9f1SNrʔS2)L9e)S;i`B;9H>=8vQx$ kPNr|/sFmϾhm(fuZ~(jQuCLFxڍIkG #y|V˶|Y#Τ˺?F01N,SN/ ^4+u[4b8-CqZQa1CM-f9[魊n"7cUg=(m("9兡M17yp_P0 M'=P s3>D%=`a,zn0-u$=\KN-< :֌b}PP 8@†RqAUH]@ATn̽Z{^~L , ;5䑠LB}F $ @7:F2P OX:# =OoV,)- cԋv8³p!Cp0n()rZ5T>fThr. 43ޒi0"3nc?hdv*dn˅i7#2?M!J ts?hoHŏ9!f {0=$kE~<ԇ#͚  edo:PWvn7=^NQ$z@ فr4DRz@vL*D<"xz@" !=( /ДBJae܍$  @ $`* /&ށnB/#pB!r&@7m 2E"RlA4;D({[}I6h\r4N8r-81!reu&yKk%djے ׮k~0~U/J  :L.\ps!B2e)LYg:S֙Δu3e)Ld&S6ɔMl2e)Ld&S͔ml3e)Lf6S͔]2e)Le.Sv˔]  f_"F%PE2s(h\y00uy> bwpA@FS̻|=cp&;zR7yO5`Î;^A|^bsh74B0!@dY) 4~J +98$vo+riPr8+! v\6qG =ywL\.*J1]~.>]Grb8Mip@X30o29xxҜ*<'I;|CL=CKPa*=M`ewCy+@<{X 43C34I8Z Mv6=U šn$YVv/Dv7}UL=vCYd +^CYZifb7=Jޫ|Nb,=2%NZ t7 zlҴce4,o4Pq2i_Խa44= spmXU~ f$_s3ۖ͐{O2:-!F鍵;g>^yYDE CwCvAo endstream endobj 1215 0 obj << /Length 1727 /Filter /FlateDecode >> stream x[[s8}?"oIڴINlwdLl`6l\m6%2D8|GLyʷs(7ȋBP+^O0?og1!} %~wu6IP/dHci }Sc|Kn_#~fy ؑTS@E:6Pϔ7g oe'#0ʪX܏\3;%K3et ="j!:GLI邉}ex5Z(OlkE.,QdggԎ"$K-lA@=NCW@'4[z~MgQhhGL)iƉgmN^?Q`J!a0b/,Y_➮TJ\aO\eMS[Hzz=%ܪu㑛\ Lnշn1>&qQt 4\459|M+gIu,QBq 95? )β2duR0k[a}"=D"[&JRgЧQ7+f{hcq쀻AAAUiAh-xa)'T~ߚ+E{?k?#Sf "Q|4hś4&*ѱ拧nCԴùJ BYn?:~riSs=3 iwp?JRF*+Z*y%I%d@m[C|JJ0.* X.k;0^wzQ6>a]t70pe>jݩv;|[X-!sCnwUAQwJlN23bgZADG#+OֆBw2X۱b[e~ Z@^S C!0NQ ex>-h) mtFPa=.M6$׳H'R{U=Qԗs/bj6 ّrFZ8(qލ-Uۙ>va௄+q]ys=qW Ds?Q]tO' tȨ!+U (N nጵV>5 qww[Q/5ߋ4Ϋ %=GزF-^S+ |j3U?\2o|M |~7F`p_9Z.wmtWuTux\+1(tݪ2xMOHE:A F ve !C`5ZʸF:Yt\wm<>Wdto6`cbkTuمdvgYQ $O?QY J,3VX QDxo m6cDqfI6bj{1o Ǫt"?h3c ۼ,lϨ7'?eǘ/Fc; Uf0\omϒz(,dr\\6HERlAE-^^%/%'Ow ͡}lЅ$Nk?궄6`Q9}z`EvvJ endstream endobj 1263 0 obj << /Length 1908 /Filter /FlateDecode >> stream x[]wF}ϯ[9aocI4R҇XZK4t壿. [qmF+t̝7'M͢zsX.wm X:4ȳ%4FhGXh~vwe*>vf(L=% KR_Ea"3X`EB5+L.kSr:DIG3n^4C&Y3AGByV G;I߆hA= *!֢ F0h*FԾѷf*8DQC7w 44X5,\-'/swMy<}ݏA/[~ydU{t@;.Ly ?2" .Y=б3GAnToT\uZl$j [Hjiha#)4ocUro#UdX`@p1985 s[@T2׳Jy|+d03gX[ Y[gI !Jdt*Q1z [j@HQHg*55\E5^O2Uzzя13PyCMl6gp.7KpIwDhtE>5鋍܌"o-Qܖ<|9u6,y:Sm7B9Nj0ko#SGş@.]1 L0ImA$=y$ x#}6t\L B.ew+GP$Ls4]9fgǤ>T8=,ʬ6T hKFB9GaVClOPч% ˺[mjcDPf0cMzR:!+09.Fd? klX:u+r`AI=c}i=jyx E(Ȱl̞L%C*ey'Lڙ.WΣ8*%X<ߢG[2kv$23gv]t7*eeyL.WqXs1&mcn 'h0;$y{JxO0VY hŁBx1Z5:UQ!>"5LAf&ee/L9;olQlyeVU3+$i<(A4&Ly<yRƒ^CEyU8On{;o,P?ȦD=UD_ʋpWm&RjƑ(GJNmNGdDSS, isK0Jڀ&wȣMM-ؽ`o&) M?s2y endstream endobj 1164 0 obj << /Type /ObjStm /N 100 /First 1021 /Length 2804 /Filter /FlateDecode >> stream xڵ[]%}_EWY'݇$f!3{SuG;,f}i0nR)VTR̝Ku=n!02r1 F! ?R(f8|͋77.8ߜ^oN_=P﹓Ϛ K V  oMw'^rk-#=Yߌ]"-{EB˄JҲh##ų5>34K6id Xx@xvƪt |:cBF$?#!u"YjPoS"ܺ6jTB&9'QYcdoa cWbH@!(>!NJ HN2* (GLˀOT~X4!D,_ 2%Ȏ,jpW3E8\GAՙXF!:kAK("=udDk~ӹ}wrū>_~=|{KnN/ρeTꨗė^I9I|/Zo;/Fe:~jWX׻?|x|wRƱW0ns#\N*E'MO0Oe u 4LajSsܧfmj٦fmj٦fmjS<15yLcjSxP@S)t m o<`^>Wٳ!5B ^]N麈gmn+_O-|+,F[,#+PUm` AUGvo.@F:@# V~6j lUL^&jd{m=׎[EuG 䣑`9)|/-3`L>dBCib@XV.aNu(zK^v$Ǜ@( 'z~ ,J%?*2lˊdCVFc]@JҀgIlX|;VLDLh@رr.^IV!]ހ:|Z! hdqU ㏀ꋁ,Hr= Σ2CÓ\$ulMnqA PPӪu+5{ YGJأu$t 2ܛ^Gr2(CHd8n:9z cunMCqN5y\!2Ȃy.ȑ+pv^4`#VцE<ȌexKc/tNjxOGŒsx:> xytgw;wU샣x_\Rj@as|Ez4S4͐,gb]*`Hc.*`]Pel@ 5>Vz4txre/@iؔߛ]W,ԡ.?GTAj犀 \lkk[JjY*J\ZM#Ku0_Dnic.r]OZwp>u3>.Wv.?MOٳgSgϦΞMSWyͫh^E*ijfyj橙fyj橙fejYfejYfejYfuj֩Yfuj֩YfCl17VIXK_\dCk`WeY{_P6oTFjj6HW^PT{]J^39lsUXzr6Jk+f;6w, /gI|ñiPRo>*[{a["+D{Gbx@-2hцUpoIȫ ц훎}S=:CW;/)E͈>|~a:[V[Υ @n z^"( =WB̆-"v=|?6H endstream endobj 1313 0 obj << /Length 1733 /Filter /FlateDecode >> stream xZMs6WV nҩ[O$I{`(X"=e]IID9H>$a~XooۥLg>__么>'|nz}F2՗~2D >p rLPgQ!@kk/LQ he=#݊5ۏ5XdQ4'r 3McMjMkkviQqW~Bݓ|ў㬂R0-SKoFEd̖z$b&3CKD[tpVH5ϑH,hh>A TsQ=0J8]ʠrC=s jyMᵐs%OUUȳZŐsEǬ7ɭ OiŤQdĔq1˖bW_qa:3^ ` &f䚹#ZQśT2JwtVYvm[8g |/;4R'U.pp VM20&O!ra3}2yDމ=eE/k%}<@2StrBީ{hAbnsb>!\&p;EXٕu3JVX=9K2)DA+Њ5͠V?H<[EIC\y*7Џ@ å GXGn(aOY-,oխXW휾]woQ۝BeaR Q,U3)f.}##VB@.v`N2[V&M Dp'{# mdi('P;"kCb:K[#4پ.y ?"Kd9he[ίCkršV?s|Q-ZE#JT]A+݁{>':#"IMPꉔ8~Xy'5N/ǔ,©7eiRAtW۪T7HFP{Pt(p=> stream xYn@+|%lۑ-$ "FB8I,&6=,O˞I&@S^zUw˽>M+*䋧Df^y'> 2@p0O+ƇpnpTM^mUِi_dzמuNӼiьgӴiŖ s|J^=gfi " qVa B9~Yr#|pJFzp_*UHn^fP; 59~e*{e#EjE(pU4q=H ]zIw݅-AGuwUܹ900/oum%`0:xm2!':*ݯMokBbj#z;ˡ8B,wN 6k+ 5V܈)]MqWekI?}nڢQaXAӽ9su3HU=LVF^БfvXfύ.`k[zq#P(Eˬ" 49ޢ endstream endobj 1345 0 obj << /Length 3554 /Filter /FlateDecode >> stream xڽZIW(P/4[œLyC?y("sqOק Uࢦ;vf."v |UP9n_ ~aaN6Z_h7V6^6[þ/zFOcV ?<}gʴ4N$qhhXmoHx}A"T N/~Rt&HF㨍Ua"jvlE柈}uLӡi5Y_[ܚ[x} )8ɔ9ÞR{?}ߴ7'n% g]Cfܺ&'թtkST=N|ˬ@bޮ,rD@' <iE 8zP^y!C~xM5R3'?Yz@f#?M+]x\+a]pC6P^Y|D վ?-@ho#g@uwww><;X7x.X Lm CO8KRK OgYnG+~2gR,d@)R*o$PGT\S}%F+HեGYODBN*>7XhmOBFGdڎϜQ}geI8SaڎHp8 Vv*hy3B}aԙT$ X+ݱ%2d갻Җnar$dhQA7HR?*gei%U2nt+җzꢾ"2zQM `|] nעmj'J {J (DB׷j>^euBq-R?FErӁpv^;!BK(r6; 5EnUlIvtCOEǺ"Htg=YÄ_rXzs)$8~ڪR@'۴u3Zt:fE$iA51_nD+98[V8lc51ґ/ d0F0DEnw`ҿǛEWfHERӴC[L3BmU7U] 1pu~$`.xP+6< qhWm:"8h(TBn8Mۣɱ9vDVx8_VpX헡a K׆B~G{1nȬrIpmpZTq =~O~cGtѩ')̡{lwBW|zIp !c,P.>hC1IbXҬ_E hI7pSYҟ 9? #^n7++ W :F_s2/S3dWϥHOZ("ӕk[_#?(?TW@JI@SoY/~!6?`-+$~oν3=T9}!b5= ¥emN}SUP暴6 NQeh/:E"(K*Z6GY1ͻ Y z0ɦ9@0֛_ӉDq"&uwv1c]r|0|1Bp^/hPl 'o;0{>+Byт$8 S)~s|es;sG8%T;V$ȁӃS}w9Uqe[(];7Ȁ Yvdž_[.lI/v`h6J-x|"iP*Ӯ'V=,МWM]^Ur^o MD*]q vKsmA*6er- C_EwTqy0aBϒ]H3Lȩa7z(~dٖ1@hɯLB-qEf#<GӍEc〝ntn1,;NMɠF0^cP+7fܡq(rF=;A0U3pNjZ2#}fM[K+?V7&ֹ1 mĺr%< UeZ݃>}qNhe xF^Gk~@:ѹn8R5csX )O<ixPHEyH'fJn̂^zCpfkd|rW24 3NAz|K]YR,*/Jpk8򭗱EC:tĢ!kT*ӻNg kt$uQc6^P wo1noۊ@񔵪9w&b/ݸR~d &"_8p@PDqu 2 =QAh]pJ}NT|;-hxsTl : nj6?l;JcR+258p&hQg+u0| l ]dyVrD$Pjt9Y 0.Ip$ MwcMaх6)_|7klͪ>|t|?"h'hmJc+ly0޻4}AFφz,2,]zrX"7}{K!ȈJ `z|YSkElad‘qйW1HWR;t1 '/'g endstream endobj 1266 0 obj << /Type /ObjStm /N 100 /First 1014 /Length 2661 /Filter /FlateDecode >> stream x[]\}_$jfawo ?z`bLsԣ53劀-[*URQ,࢘h]P' L\JBvU UBu=FJx.j?$͔\8s bJ);KIW*:f|"h9:)͊ɥΑS-ԒQ4lsZZDgx LsHefgv8kҥR]_sI"^ċ5ŠKR6"TߣKM K.%[ZW˹O .Q`\[N\ %u%FZ%W[eWrWuR ߣ5WC!S$q8œ5t\-!j.eW[Rq H #5OpĖNO4R#~8I?CU V%!sφc?9JO%h%`6zW̜^ƒnB Qc^RkB)X[JֺNglڑ~QJЉ)N,-|Rh%LժWO\^9v/>r?Wo_Dz_w?{U/ ^ &\`{v?^݇_Íw]fX;f {>C ,= ,X-P}DXl{,E2iX"w OE<{J5` GƚRÒ3;lEԾ eX` Dz" $&HAR`/:e[?Fl#8moy,d>l [Y|CjD7_Ζ +!yXO"R5*f }6w7R$f>e{? 7vяoh``_>jOsfgHcFf- @`"ps Cb2*,:y g?FqE`ûwǺݏw읝x~}ޝ4^n3fg@@d8}"'|Pm~Ի緇7/x}۽<-+9ow,;:$Tۚ ?-tBxz{/!{1%AC!!! eh.Cs\:4סuhCs܆64 mhnCs܆ve C!N_o b bA'O(XJsYV5WAnQZaMx 'WaY| HL(N^d bҚV +ZQyߦx^\$xyqE0"%J4Zgij} \gŤ"Zq.؇yhuoލ'Fԍyh0<:2:^|B#1>Ct3xf fj1 wcw6.uc!Zވ,jZ2DFkеKOht]3ơGbfCD‘AdE]Z}l~k@}Y@+,|:j xm-@(TQXE6(-@=xUٌwm L7xρgϡMh`wst3ͳO>*~ KOV? c46N zf,OSJR؈ endstream endobj 1356 0 obj << /Length 4436 /Filter /FlateDecode >> stream xZI䶱WͬiwË[#Et,̥ T3՗"D._l`<\IQXoo7I&J)?^)c6TnjnPr45nMN]Rf9U ػfW[y}1|ɯhjIzc3"| goNS TӍ)aG8wR{S5'd˕D ̨֥M]yNS3h^Avz3ˑ 5%D{GcomE@+><QEWȶ9U^%q/3㲰VްU+Cqo5(P,C'w͑eЎ39nd?r΍4лN1 j`0 U͛v7r1LT-H̹k;w*IOXk;>Zz{{oj|_Tn)j0t`Q]ypD-8-bbC򨰉]UtϮaJں/ǝ Y7ikgfMMiF h?%ܼ^ȏ\f]b? _9zofcJۆ{ѹسiS܊ }Bk莸4*雊[ Oj^/|z8pC0*h9IU[yD6>h[p̭;nѶd/@{84`'ԫΨ0G4 L{/8z]:X]R_gU7Fޫ8՚Rؖ(e I`'EG9p H|* K/ \4]˦̏w6[k[֠ي&wq䢽8[_9wցR3'9cI<1- l7w^k1Dvt1$^!!$%lxWgH{7S~$ZX({OXJnD.\$,."\C8(Cލ-aNԻ>4~7p,_ebŮcZ`8c~mQ4H)5K ȠQpMG ih']BЧNuejV!es ˫X#_05i;< ?PG+oiճu"wkV_ڬCD]g&y ̡H[l,uZ K&sH $N]"͑69:V3&a8@wL;m/ND8*s m:s:^?PV$ ҹ> xBiL[h3O ʠqZ0@0cM+=Lzb7CtOO硯3k)8>XSGVS.4\7prCGi>nVLqF;#OE,8m=̔7nMLƵOC2?2>&`@ D%=;DJr=P"7Dƴ홛*dxGRȩ\|8'N2X|j|vw`X_oULB4a܆ @ϡ_MڙL֟I,P=-hD]loSҚc~-zo>D,Q&[YQ&yBfCZ3`'X@\'8') |`">T'&[fM6-hxJ]l~c]ãLF&<_jP[kn@L{t$ odb$i%C7ʢ3\LrSR=L4s8qoaZ)N姽mq<)FIԄ.FK&is1QuEk6n _ !!gR*})_X{}Y(8l6*+9uHiDrg^>hrgkiL $*褂RgKV~dE1-^^ ȧ2:$o|?hj,!_)Ƌӗ?{`Dxmq=Uab"{ϒPO0-=w<~Ɗ±=ػ(\yF*S,w8 Lщ(-+}0rd4t!^4rVW^mPl9@.jNYh 7I7ʨrX6=SeOyoZeVRe `dx* q{4E{YgzatP(ױ㋋Sk:#_D6!~~*\I L9hcZA1GD0P)3`8%x<)Uu?v達Q47} *vCׁ)S*ѭ`b)yzq0ȅ||D`t\'JDhEt_TbGWOh!Jc⹂T)},?A@ {Qn#7R60R%鄟"-f+%SGM˞AZǃ6]a ˌE+|7W/z]S zsHg;0kng&{•/U\4BUKo̡EP_aH  iSk Tu̮j'H(Q0 u3>a_7##mqo"OB/#iٹ`L)i+>Hx_w\.$""a]7t96/l e2fԻ ex,Y ӑ5? Lwٷ`wnjaĆ EN[r ;,&3tnpl=B¦LwBT0jeoK c b֤[.frC. G}2㱋|^%pI>cXf1ۑ3+R0fqCfW~SKQ nah)[ǎ bElM"[$Q!rsr·柃!޳v5ovcfPO`TYpl`DCGi|`"! 5Z0;[6^dhYFX؞Kϐ"LӃ)hR$XbE4&RC feGd=;iHy E"J_ $bHĔMӽC@h.$djվ^aT-!OeLz<P!rhwo`(iQtU9Ɓ" Ϣ3%ƻCT"AlRnړl)%2%ri쎕ɌVPUs.nz4//3~\zF1z豺G1iU+7Z TǽnIn擆@I+QY CQzuP;Ŗ|^Z[vQuS1R+DzBklFxܾ5fDs"ĩ&eCfTTkG~JXTY."%Dos Eh_17مEƿՎO?E6-]?0׾K@ Q\l0¬&'J\^.:~M+zW`-DYOo-ϋ] ʁD}Ʌ+(%qx/I74='d鿌_W*8!ɟ:ZTc݄3"q!g RdnlBd9H5HjU q*v?` F"к4,O4oC(S$w e@Ǎ \W}F7_Kf 2(_] W$1e/31 |\.+إQ ^FZ= x xQc>eBT˿܏R#?n`W_? endstream endobj 1366 0 obj << /Length 2747 /Filter /FlateDecode >> stream xڽYIW X5MU:)N>ؓCJC4ID$0@Sy[-J.d[@+zg_'*$*4[Z:իr&x#aTưUZ8뚓qɵj7u#N<ѝ&^m skҟ&&_,hpW8*Z%?Y>諦f5r5^q4O,4qlO>gUae~[d^uVPdı &Bֱ0(̋mQ2;|޴<5p˹1aZ,%fF[ -r㓣$đ,ۈׁtO#JޘU ~6ց U0]ծUӧu3(j :A`ڜ=/n? \QǏ=T]/KFH?" 9>{0L| _Nn@3hWl&1 52Zpf酄/uf©>=C}$*4 mL5`A3ɌՇ=!OU]V[Hw#g<7(MZ]d(TYMR@.ݒ0 %'3`f!l, S35)BRv_r\3Ԁ}@(0jZ+~C62!_~DRv7A9*:?2~S;WvbgB$IFG~LcRL {'B;גUKB%I`d H1 VQ:`JRl0e%`KVȀ&,^ՉUeӀϽU:by Z# WW -wA{Q7ifI"aF$WW_H07t{ '*4N@Cs#qQWc}IG z-5ÌFF>nMN)J)Xhd0葕Ŕ(ʵՐ/rN/F6Po'Q}sb5Tjޟ(qQj12OYN9!η݊<.gyû={%VRPV=q8}Za%}E34dvY\ven6g_p粰U<37-.͕+"Հ9DvpSkrBp0qõA@WQ_ %Sl@qSkyً8PhX fΏq[pe> Vʕ's4 m;:¤o縙m|1,Z|lJ(!Yj{˅`lCk1WԼ2qF馉s}Ῥ{*[w" ~I 1B ܝڷtpC-d '< qFUQ:?MFJc.qPC`ywn&HlU,ITTG{I&m>U%Q:ʥk5Z Ax@U@uW7Rq L9}l1yy/@VEYJd"^8a|kZ 嫮1nF'ǽct*5Hu͎Il-/gk4/_Cqrz/r;3 LKK%:Oa ]qDYeqD "9bKF TNvSѪpw65)~QyI=kBN[h^a'& \IR%[Fo'~~#Z endstream endobj 1372 0 obj << /Length 2168 /Filter /FlateDecode >> stream xڵXYܸ~[4GIy]gEu8ݜnjc*VQ- '(u|u)NQ}xL$Q|û$*EYRYR _;׻f"%RSDd;<,mhzgYVȌfgƽ4Z]^w0tKik ω1Zn LE[I墐*z]k'hJ4kiWJhv(/6(^)A$;tMZWՎjh҇zsP$U@/!EIZ8eC;wob)~ةP.]#^|, N , L׼LzBB%TZ[UEtN7f% <: hV "UFw2y4[dzr'ikE[L@()| 57 >uuC ػo^b$1q*>-~$7[=:{qƻ*#;Gl=2}^Ņ[ ӟ ] 2'R4}o$, 3] Xѱh#rC!>-ec;\޵kkwY1,H7 _גT)D#y#pDpA}W+hw;z*v+1dm\ ]Liep{=msr^<<)EHak2'fapW s:*rp2_`}| endTBJa)ãsCk@k!l k(Ml[շm괜JihZZB+MطshQC骭 }g0\*Qp̤ JXZyO4hnyрr">034zR0L8zFDjxh}W=X~tfjR"ɦKJgi!s329-}Hr;ҊWYw¡mkۓ#Ь྾ylq_2CU=@TLô0!~C_Z0[[܀Y4j*r0eed=mܔD˹]c=4F&ԙH47?-.hF,ЩD$"zi܎+y -u`ᒞhwD2C'Ե5"q:(ۮ0I ᄻPkc+EѝP˟pژ2(Gߎsm0GY; UmHu <tu:`Hbi( |П;gZ9-Z~6&d:ȓ/&|_D~i'+ ut׊nd cZ9N 0t_%1%2L\]{ ~0^75jD:{Uz2b-,3>q&N7leG,iR/5ت@ {-y/NVWR}Shpo}B3kP ^)q4 g6!J~h X5T^oGO JUk <HcEpL ѝ|p˪"r [,e /TGWnta:jٯZ<^!v[KA&romlmTu+ceLT?= endstream endobj 1381 0 obj << /Length 1116 /Filter /FlateDecode >> stream xڅVK6 ϯpOu+mPh.Eg[Q,Ò7_RIHQ!'_wO?}(-hVH*+JD۬HZQG8o'ڤjdYтLDJ,*otK)Ws~tދ/RI 긱v|EI!A1Y] ו>F,k[V Pp ] _ JwK(QL3@ V e6#(ȣ 'O,OLyuv`&^xMX&MϸsW''Q?NtXӃ'Ygÿ?~b'Ҡ%y?7NxlH&af Sgк" ?JaRۥL> stream xڭYnF}#XmmNZ-b(KR(_5Eʔ, f_N*ŋEX߽$ uY=,ljtwſ#\im|qE]}-r'&beʌ̺ۖm\4Tck4YsҤQǎ{~Va~[&Xe;z_ie< [E,W^'fif H#`P Y,Rh:rG\e~ٖ+Ѝ5JK{rOhNH MR C EG;(o#0隝|n`O})ˎyxr,:ڔPݳ6Y'=éIˇ-'oHTYKKp\u[nѡ`IVʂu. VtmWmR0乩w tsƗTAirglԴa_e}\f.v ZE/uu,G%;v} J{VQe MaKð:)(+DݗInhرB!lY&3HUe/J kl; ?ZZ, <MiFz;4uQT=%y*C!ɀwoR5PRs˥7@DBAl=u,=1˚Dq2E/ pK :{A&k1%79PV@裁d ߹8q918~:,mfx Ǿg#lE{jLl]F6lNPkp Nn[0HU߼&*-dnꦽ *_πx+S}|C'N9y6x_+ vf-m!qn us3aT73AO~4h$OXυڼb98Ctq@Gz(Q^qBzJƨzJKS| qE2>x&+ ]+==0? zGwtXH$QhǃӇD0k+l~ >9!c̯[4ekI4Eb-Id` 7in ҃IJO=bD3_/w~e|Y>ٍ\nxx6k(~R4k(* joSxIAvtD3%3_Eb1(yNDe,iX qPob`aր9*9ĸ6`բKVņ@nffp&Da!ˇPT6fV 9,41kA!b>U.W-ς*EtTq : q:pU>Y)jB\|=`B ;)Q,>p3923e BJ,*Rz-ܖG :?u3,2%Js8V(H8E^+6yޠ-ZU%ğf"l.yԚ𾩀)M;%q >N(I5ËO d4a )ށY&σIOEO|Xg 6)6X-pX_˜J EF ⾁G @B%PCK )Ρyȁ? E[wqBf"rqǻ F0:;}A wZ^{s]ɠwL endstream endobj 1392 0 obj << /Length 3301 /Filter /FlateDecode >> stream xڥZKWxŗDʹi(h.dK3VG Iɢ C$EqxhV&r*ei,*,1sWZ &l9n"ol? V[n4)}w1uJi'z/zfud%=P]*8ǂq!W[x(M`h^Ϳw?a!(q^'u9B3ebؤx_d]Rl?4%QSyيį;xՃRU,^꺬 )F9K9$Uן#B4XX2lrlи>*ŗ|.<=l ;P )n>V-ZG*ؗY PFJmpWWJsJB-ÊR%ے|,T>d mW6 x\7 :WPk*J>\.Ki.-`[xy*e[}HGŗs5_Z+:@h[y4:o{ٍn0%Zmq łI- INI?E``˥=l'eL?e~MKs(<x  ?Are`X[)f YǾ?=؉@\}]˧rwWd-} Hx&\2eԨ>Պfqt;-jl>T*o;zfș]"V>C40}Œ1>H  ?e= r3 *oR8dJA:zF8Ԯ6oG;Rɺ$tt5d8RiC7 ­}`ږGr2l CxQGn€5Nq|齺ItPk5ţO_/ ŽJ^^ vJeL$2!z9' ^'UEi+H2>zۏ>4̎Qsr1(pc}-ÎY7(@.*Y¯yIIV5B f%5+V`Ngms F,J"~9<m_vo.iS!UdQ dt}q!V-Y@P%oj׌VDt >ҿ/5T zI(hHE9͵QaZj82hXG@2<#)㹩b\gX8 'Tgeݔj/ܙ}-"%B"8|:ӏ;yΚ *Nx\e_BR3:^MEL)}{vf*&UdvR#pn X&H8v,,,lFI6 ]6]kE=Iu 8-cr..ݠmɚ! zp˼v&D^ YIW(=@wemDq~wC;b.0mB.!ڡPn8~0:C:D:8N甮R. '{v5~.Wy o0C/C }у0,c4N'x*) %]f{N*o)oFಸr`[Yp!e:aiYr%`OGWoxH3t}j,C)/tIn8qޗzKװ:|#ЄOA8bG*JXDNt7<.ҩrC{`^/\r?bx%&ROE,w'] >A7).n4?9Tpp͂\fA]Ԃ,c)Α?gO.ɆXs61\O:pJ?$ endstream endobj 1397 0 obj << /Length 2861 /Filter /FlateDecode >> stream xڭY[~ϯ 5"E$[(ڢ)7JzsQ=*QbVfWJ?ϻ}Eޗ47Tw}^Uj{MdipWiyKm7h{:Uw<\Z~* cۜe9w[l.?}]a;ӹzWZwNm?;?χälCߴtQ{mR66i3-w8~\~r -I[~!@8HOad*a:~nWjčwz~xy9j&yg<:~B_2̃'z.q5,x85)2a@tuN4MN $}1zLV`Ls2r>4|γVq(=^o "J,xvD38qs&3uMuwwu8J࿚.'NåC|)K3ncvj[" DD2"1&<GVNg vny%{'oh6DYhmV أc;1hqqƥpR30Q̅s5-a844p"|4`0ܨMK?< buÆ{G'[dyDA4w_߱CLd3_6}&tb8? _O:B!DaB6M:; G'">=.q]Zˮ0Yv e1*q\9q5)krӥz$5iNg\CYq3J nz*ʻu'򡠁/wIFimҿ4L.Fb4eAFR+F60S; qyܺ{/。G$|e` DU|N}L̥sP?BX&D*C鿯m{ w j䳈uStg K Y:\,&D7|49ZP?-lnOd2|G=,x)1?o) qPQT1X&gZ |t1&=?Vק@ORLn.C&Lh[V,hq\D \KK]^wX.)Du0,J+ 3Zb[ۼd@w7DWx12 Q u᎟qc*32 00K"?GDFR,0S@!Z~m5o0QxӾBNRMl0P;7}fq2r^OʶOܖfF3dxYF][MfY.rz 7:Q8G: :=wp*pI#m7D*HѢ6'cJN>F.v^6M~c^GgGwyӯxGs  >H -iľiX{?=eT? MӠO֝<ǡGxKYNL(PhךS&e2\ TIq鮲A$WÔ̘#P\Da{_Ehy}Α;og.R€w=~o5$!59w/*Dih `>ndJU#RU f3{WlۚѶeŝr^2qGܸё9ڷ7ZZ1q;OPʂk&qo4qdf&n͕2q ]TLW2%;{UˆyRcZ9GSrd5OL[dW]&L)ח>ṋ-P*^L: endstream endobj 1405 0 obj << /Length 3011 /Filter /FlateDecode >> stream xZY8~ϯ𣌍9WeovïB0rҤNݐMDQ*da\$KNζr}-Jm_vt[7@}Dպo\A O53p/nQ*=ί2jAS-O>56oN]aCg;KnyiyU+ŲhLETIA9v[l7'r܃;E WcJ$S^%DʸƉ51ak,VV{$fl#sԩ2eYEuo6U$5u┃sN@s MzH*xݥl[%'[wi9>as`VL% nɤSȷ9(3>X#3_RNJ9{~fiLldF; =+ g)a*a#$?E?fsLt^ذ>cyQ>ԍ~)R ?n;f]9L 4oNTOF|hզ[cHU!7,h^ 5>kɍL8hn`ȆXµDIiB5@grDC5ˬj~.qJxƯr歮h'~(͍\aHD ?_U?^ZT~Z- Xdl+0 BU:p ҃Mo|2ߴ A:h<5HhU6N cgzhʈ1= "81B/ŔY֩_ i$eY:[;#sa)eփ+_=Iޕ%lP I2l!~xshL?{ ܒ%)AUnϿIi>\n>ᮆ"g#;n<11&"@-n3,_cX[]G?G nN~쉓5@vn B7ƜQ*oy|JEy,觪t}=fwp,3GZol o| |ksw8f: 2;bu@ I770e ï9:!^nĜOD}ؼ&Ţa(@\(˲Qe25q`-l5*;uv.˽x^ג5?/Xb2BlZ1`:+E\i sEgSrI?)$9o h n M1B ȮTkˮ.l)avozG)GJ倇 I/۳i([fb tZQJLS~ĠQ6`cڞIfJUa] [SqW+lkw:]m^&.D2v5 *PHKJ屺*C D%4=sE;{ կSW~ Q*2YeUëe@卭+p1?_JB6PouS#rp6ǧ3fXhfk @/;o>O:Ic_ڃ[{hK7/]K {%EWL++[I#< %} 4,ڇ!8Tv )>97]29ԃ@N})di02}ynn≥!%]65w!9(K`X[X}Dq+<'wne7]+h#>b}é[gfdf7Y&Nfm/W@ٸ~. PZ#;IXAQo~wy: 9Rq :::!lOEG6[味P?<ԥ㚍tN:w%/{zc_OGU+cpE۵)~F`Sb)lw;b2"bu(JkVy:F r#?5{<}-V%a|8x/ I'O" 0 ">`ǗdZ# ~.:7\4at\`ykQ_whl\]WuTǺb&$Qw^y@@ H^Iz M5L?m']MuO0=-c`MBak{p'{td{*n_*0[%虂&ۺuEor+IL;I"@2>e6(#m&V~z$/ ,J}Y-Zp̰']"-}ĈWI.J;L3;^G31f dɑT\t깢dr\mHiڕJ;ALiYp>,2RD證Ӎc~@)UUjb[q1WF/GDwF|EO “ `6s3 s`4K΋ej?Y=|1[}"_.Y8_D_M*gJF%qa.At8ũ|0tJ݄XeU${ƥ(ΦTL\)jE9ǩ,8[o%N߯_C endstream endobj 1409 0 obj << /Length 2969 /Filter /FlateDecode >> stream xZKo#ϯ% W=6bM0H$m5Vԭ=U,S]jb=*:Y,ŏog~piXtqyH%3va8gfy3ظ}oŗ?I@!YP慍)t$ WXX 2.VܲTZbapVHa!fh{e~˶ɾ}vD\M[ fR  ~D3J3aL7Dt!tJ/2?.ou^4Tmh W=D:eJȎweaEkfdJ^mhC= F~kZ8JX{a4VX uwJ7KjBhO5J'rnb}/`}qRBe}:T<:u ©˲wEu1컉 79ߊ%LkS;Ws=IF fZd iPc`+\e}~=&G呔)r+n$ :ILM4UDxIc3 YONP㨁f-5"U&Qw7=We߰V"5L@XRZ}ۗ]ͩrxU׷pۼ=xͩT/[w%Wr9ا'в#s&|;# uہd+mE+ۗ`$ӪWct 5%z&Y*z~iI&,7؀dχ;pZMTp6 S~{߁b~'l$XAc_~] (jIk~l&.H&tT?'g9wY6x2)3_#m68?dEUGqP O#Fʳ({56kϱߗWQcQ폭[ף^^;d`o9+44pn3М>7.0%@WLLU0e kHnN(eBOOAgŏ1?CkX{ ,̅$ MKh7-[juz=L / 3=1LFhM>UnJǻC<)^5=3h!+e+yn_1Ly|%{\H) @"#:-m؋P lxd%'H rCӢiEr{U"1*rN@|]͔E!=3p̘Pe鬔f4 .tbLx6Fu "QP୒W!4#ҡdpƃT`|ٰ H#Z`X!p75gWd'_Ue'-K浊n2$> TςV7Űå`C(WT!<$ ($ ^d$ɋ*a桼x:R밳A3}:zwb(E;,K Wb W(ƧnQlp7DuܴAS-uEs}KlgoPȻ Cy9D|?PK*WwK 0Ď OZj΄XH:{@]` @Y\4f$qyaA볐kғ~U- qkOO%,3>)dďzVRojsOE磹W!iYT`Q2>]K[ WV8-kO}(Gw}*K~G$"cֆi"+ endstream endobj 1417 0 obj << /Length 2157 /Filter /FlateDecode >> stream xXKFϯ c79. Y9PbkD _˦<[|I"Ūꪯ^MW+?޼b$ ~b%*bo>v*{}.ڍo$D20J?2!u=+r{Ώ} Ն3h$yoR93=#$˄]>ջc4߼ ! yj0s7D&rt4Iw~vtH]@/nƪWa;s:ʊC"&Gj \E ٫[Q0}"&ɿj!DrFp5).nns`4]_Ly;ViQֱ^;nTTiHX ͻKkZia\^܋mwvH HRt4N^ӹʪcP0U*OX3pRI[ vdWGՎ4: 햸 wi᎙] }$8n}tG)Q礇gKbERA7$VꦋjPxeKWYoϵ霜% )VUe9s{<=zz8hP]gLfֶ+i5.hdN< !E^|ZF\"fXrOlr0=!Idܖ9&pž)5p|uNx( qx*?SCmW3 , !lܮGx4PDdL GX^ TluOW!jM0S;A_$b79֌̚,8𾓎!]]G4XDRyM(5&Mw@X5>,uс%R>5+(hqŧjFw__ #?Aۧ(B&  m4Su{7%b<О&d5W޿~N˦}]/;k0[[. .]mcwAbp.e +Ϧ.kb\{Q[Uw']U%68??wO0'X{*HE}V{m=IUQÑ1cxSB" =(t8X A 3Qn|;ckIpBotӧҗkZAls=lq: !e:H׭͸kr`0DEsouvH2/@NRS^ [.5߆-M[E.:bneW,9!2$j4ֻ. 6C{էslCTRD@ݬ/?h_~bs&Ҽ0LD˰??e4/yz_՗UHJqaC;&f=wWvp B2@'% ȱP^}d#\v1DYoJ&/Jfm9x_Dgh ש5Բu h}E K ѽ .>"dNUFZ+~v!pte)\ZۇRg`L1y9#_BUDCR7̫})Nnty@U_p |D?8!y'$}Q̒١w? endstream endobj 1423 0 obj << /Length 1390 /Filter /FlateDecode >> stream xڽWKo8W(57CbS"AX, U'(!YGؽC|3 G_.2RJ*]$RIADhkx&˿gfFJ 8jArۍ~hn ?dHE&kJX\5S4γ̮V4-,Cav^ S5"9 q*nuN08'6Z I?j㰢*?w- P΍Gbǀ>6+[7łbsS_ ; J𧊪3:ZȌŝ^sSԕP8kOQ"=.69"iN$ II4t7D Q5+׬x%H Mv?IC,yV.9f/d~8 xz} ke֮=ϫ{G5UpvN+htJ5fL9yT2KRӾ)3! $!'g_}@*B-{ ReeHQ+/q(#-P$5ɠA;ނ#pvBZ `dWvgKEDJI'sk^[=蠙fڣx|׮p]?cGEcit[q]cBL"za5Lp<,5L:5 &E00 φ{[m/\ea,n[(d~-:89>ϡjfä+Lo2˘/᤺B滣wq<|F0o,迄27Q:/ѿ# A3Gs՛yYTMot/SI̎=5ޠ厇.*ŮrZI=&= ;sz[fIyO;Ԋ )QѭySeB pفrJÊ"ù3idH٦) R) #<D54E 篗m{]̺uLAAbn3_eѹbWbKɺ&[3#>Sk3O@+D:v\^ۂ' Dq qYL=1rFR5g_M5}ʏH%F^<%9~_-LN9t-KͭɂGO[]]׎ L8<,HNyA۹ל2D@YH35 >q*_f A,a Pؼem9PK\ ]ϴ.b_0m.HvdF͹.%\O%$Uƒ JIlwj? endstream endobj 1428 0 obj << /Length 3067 /Filter /FlateDecode >> stream xڭZ[~ϯP,ރh& [E8+1K gyafDj\g|;9ZmW/EgUI*O¢\qEkV?:UTi0aluEWӦk:)Q$q`kOw߾:.WUX*GjT"nZXa ,Hn-X ]mpn& w`XyӨaUlIT*Jaߴ{]x\ 47봙'<0Ft>bdOގ;M[ $] U$0fݘ^8D^eU| yެ4 ވN_i?=L2Xw؝ƶ&h[qsjlݡ^7"dn*Id7#&ς8&%qIRފ0Pcp=˨0)+ϛ Sypl͎[x-CM6nxNdoYi-6aTMWwps.tPgẹ0-< #2Tf?^y_P<H?[=  s,:H}nƏyoA'e;]< :SC7-ĵIe{˲MI4YѦI0_oOD@ad;{H'بy{un42e3D'iʲO3S` K%u#"l99;H>rO0dSwf*kwz5d1 u鵊aC߽p@. ۷#vZ8pqa62f'n47Ojqfy{z1b0V>РpZHk9ٚzc' q.H5aq phY:K&rL7d%C<뽷mX{A U9/\s v":^W#')~dE*f n-{1I< kǓ;R6\m ZP˿?gu)o._wb[#}RZK 믘˶j|<`-(e譖~pPpTV{BFGDx$s#-B8~O$ K/КD[58_*5Rֵrc UQD,65o ?$gT1 `?uqAD$ V3ᚽiU ~jH60'X•nN'n4|QwfՏxpSNnş-?idODEݏi50礉+(•;*mE L)c7۟ZKCP>yO!tdkȪrg%"0mwҤ_,VYp{Y(qeVQOvRGhU~j.b*LTHRݹdvqu|,?*ì[>S4>T>K@?pW|^F?2H|Gԅ#)?Q5$(?]:D@κo|3E4cO{RΆ'<|WǑB,"[2gϯX$:zd*]IFڠhq'By%SǬeS)`T_zf/ͥ\@Ud.?^~;.7HQ5-c燺>\[ń|r )ga(p~ ($uoQf^>3rbo j1.\Z ~%O}NE~ɔ$ʙ@l%x9n6gHǾ( H]Al4$2_`#wv?KO;U䉱x9g K7cR,?T-Navǒ28k. a*Աv႐d3<&=O@Ut:0zP#o:sa6P/r-"E3ݿ,͕Dhj. .|Rj1g:{^͢",!3X2Cm^ hp'm&gB(~>}E)5Z~ѪG#NZƏ$g[z)SN4R?I> stream xZY~PB;\Cy[;3Ym؃-5 E*7vw/@/+_"Ӹa.|"\$΂lw7o +L)̥9AmVL,N9(\FG[6VYKT3LW/pp_7̣Ӷ2Yl l ~]$,p߾{pC6Hͣ]U?*SzUb>WVp{f!& c'r>ɮp1yq#r/ֶCꐅ߃})K(K\; ޸jy>ۓŽh)øNs3É"'y@Z:EGU0 c,(5sc5xۻ T.GԪC/U]6QvZ޵^1<}:suw*ӒYH#M+`D࠸r&qh=vDڒ]pVim28plX|uDwu{(f cO+&?Vý|BZߺcM)?V~i,V؉- pEն^y2cᚗr[\lRzt/* l^^LOi !>7ޠo$kBAfl*bpI] V@H 1IOHӲ5@ =M1ݒ1,ߖo>^Xi}U+x&,"ҏ59m ̩3[_Ho{1UJ& &SarX-o=c!t7Tf &Ձ넨9zWdɆ]6=wm0V̲Jc=F[YJTЃtYtiMЮBRXlaFE 2MɿRw -|7Ue yDCm?pIG`%P E)*9!249[  )80C|bjgNFÂ܉i: C{d9(FIk<Qno+Ca:u` zm3R<1 eG_"ƉK6aуgslI`l^41+9> IKROkV#k1#&6,xu<erv1 yϿGI9I"dNtY}_c%!+[j|rHO.Ì-eDy~j'U^L ꥖.5wM=^ҤCy1*ZCI1 Lwkox6䜐pi0;1٬4=ܥ|JՉƩHWVvjFx!p͂i]>`]<<ÁK$3~d6tPHtUJy.*YX YF\'4RDɛIOvt? ֙ 8v"#Mr~ b[󄂥 UI+>NɭO:]`i'hHD6"KVjyҋ{,$a{,a$ ޯ߹aJ9'fހyV9tCo<|ypl|7k5lL Ūi1Ra;<L[{80> stream xY[H~_oHU򀲐"X)Hwf6nݙ[w2, 3˩˹:moW/dFLSd&ʋM#*Wz-\]+[]W&OU[sy7Ulʨt;ƛkUD(yUl[ȭ}w2\}#D1p_H;)pM5=7wssFnʷv$ʨ( ees d9qIw.t2Li)`Sڬ;ʩ&lohA,j@#qJãkᖝk2|KltDHaGq$uwG̟ <'` 7,b_Z;!OT7diU"ylr͙0.E`t zCJEvύPQ}6`0 $x;AS$7g̥C[n$AM,(̐ ރБ^ʵ cz WEb'(xvU$AD/eUR/zfp+_HSDzn.֠QS.k]fQSQ>'{!8a.e;(eBUl }"Pɑl2<~0KJ0fq~=b9\4RDGl!]$RMۮ{C eQP.OpGi~w>l?jiӜ&ȹotj g* G7j ]1m=KONŃMI;c3ȷ l8z]a@ Iq&c2Ke3|Ogq莲O Guu 09{1@g.g%~5_g??/ກ+7],2]FFO|YpT\ p蚚)'K)Z*31sbb^qf|w ħE \5X,_z:H#= DS\?>gP-6yHr=نg/{[QfF9IfGK]?sL[91a/Z'dRh@%ݶ2Et|h_.V9hɯ`,@Gj KuaT 0Bg>q*K9=TS@=B-8 \AcTMlHLGXv KJdV4v:5gӝ{=mgp\ȡZbQ;(JaI٬gmlS1yt{d.'qZy) 3WBBL9~Xa:qtl*Xb?:x|Gw@ɟe& 6!`1W e+I91z{\nYY9"@Xk%Tͩ0s?y,iT!P8dP U3)"Y_8rm Lo ydTz (*q8V(p {"],Lt"׹O:d۶ĺ|C!/3Q1AM'r>e`3Fۦjv\>bGyV~i./:Kxڽj^&`h9xj|Vk QtU]Z|x1N>?[> stream xYK7W`-G&AaCKMIC&G3koz4].ŪT0̂^Ҿ}(~ev=+"? Y~zOc'zP|Fp-]?03UL~ 'U2ak_j}mo oZ?Ϡ" 2-ʨ \Y~Cc2T-}>f`2M#4 ~Q$&İET@Gg~4R=\R;7nq-A N kJiLL*Xceoșp\uOprߊGX"!JY13K3̋RT:9DHi*uӠ2NIG`rݛI>yA~+ܻap3BxGS {`B2ҡ,wdX7 39OK.£2؝U+т}t0 t>a|H)w^$TB{bo>CuLUf3:'r#YQLsDʎ` eA t쩍'" nF.\떆.dŘ5$!O.otH.JZ68\sd$U-^ۭ{=J2C Xj .z,W%{, &x8*%*n) o7<n5ɵr4\:__9ԭ:i-$A89 ѩtgRAvo@Նܥ\ 3LULUȏo^3""W62b (LW(^QYVnzA&Np Jʂ$7>3-"э`HvQ;eR Xj+?TV\@6 l ĕ6C+Sn-9 ?9O)$o'+JGE*B "_䴐9W+O1Qo'ySUu~VVW~?:Keip;.'G_@,O5?@>gQb%Zcş֋aqip˓wbJ_n#n}#uO'K_0+H3߅Yn[Q5i;lj[%^F$|0)U pӁۿs+o짗|t}OlY8H X+yƍY-Bx8+6<۸ &?:B9#`U,TQK_u'#.ϰQr26{g endstream endobj 1348 0 obj << /Type /ObjStm /N 100 /First 947 /Length 2149 /Filter /FlateDecode >> stream xZo6~_#9ult+t2p6o:&ZN~8g(hx,I8YD2B oRtAGxq 0VUX>>R\ق $˺ ;f]%)קD3;$WrT{s84Z!"Z49}W]X% a=ހWl%G1j`jI5Uf{%Y1Ű07;L0>17cY-Uc}CؒSa˜EU.blbl`hX12M"W UB-wbb2+wz"#좮V+E39H%jpU2%}̑zq[b+qwPrrI&e#,fRQ'];]# y/tfF86=Uo ~.Y_ aEtT&fhXB5JHTs;n@ E4%ybeŁs4t%499by~:k #~_i׵˹ ooNi_OLygNNLR?Q|tPsu\=ҰuQF^֒ ג5j=Ir1;m;s^43o&oUw2ywQu4ګrs:SbƜ:X) ^4]nR\ >xيTe Z/z2؆j!?^4_/oeUio~h9z:𵜋, X"Wi^/pbn3(jVl4 +Z?W0&m| 6R".ji6Fe]Á]mدDQ |'7Y`%d ݫU9ɺFݯ\{ Oˆ, ۄ+;*)}fJ;h#`fYG#^`IJV3 !K~/HF{[3r HQ =-!>n$oK >OQ0jtMbsŪlEg#2?u둷H1C{KrM.dQ#mHxƐv9f?;B<d6i74ϫW?/_6Mثn:1kl׳O@~h,<*ڸ7#D;ί[gwt9o꺽zDhO&E:4$`l̨У E+EGW4Dv=RiGpd?Y}`ڶ`Y.e 4gD?iMni+e92ޖL\$H2HAX Ye\S$64Kat:%eXHdTćѨachK=Oev{$tC^ endstream endobj 1447 0 obj << /Length 3146 /Filter /FlateDecode >> stream xڝZY~_HfÆx ;~$Έ0E<<;XO]$%j<˨ﮪÅUU({ u_%ihJ TVwݱlRfhx;o8ߨu!4veSw<5vuY0on ?}q]7:YJ[.l$;sr旻}&& Ǘj T-:C91=]Uj#MlpsW[ ėEr0t7[u :ض빓lfh#}q$+#cF~p~PM ypB 1 ZO39d}$p.r<n6ˬ7(l:u౲u#m[N,ZIC é0H> R6Y,:+GҾ92VX1 Nwҷw4Eq [%-fQn"GCVE]Dfj:,߰l&!wGVewSj5uƎmK(=ܥ򚧄{wyxUv [:Ư"E*Ytt?P5d%HkDZ1P|gEcX1۰mז@#1JZ W&KkYV棜6;*Hdc`bw<7{̀(l&dZV #QI[q-DAdj2!8U(r/#cy(뚞')zt:[Yv,OL8)|>? deډ h")+g;[zXfnM4qMŇKQE! f:S#N.QF&񾧬; 1 d~>NAi"?4ËbU<H8bh YtHnW%)sn0{6I| AbĺQcmxtc" 3sƣƋ/fj4=M9qH"vb%&lHEzL>S8~xDG%dXMnAM:;]n1T.("R뷽"\ׁ."M֏BQK#oln 88mIDXT^ZHpʚ ?{l@[ z"P{ H0 tb/2"z\r,BCy8Yse%QrֈxYæOKs[Y9ZdG AOؒFVE@ Q3⿴ۯ>둎Е&G,lRe-'rYﺡ= %D$ " V\e8ԇ,ް2ycV_(lm䑮Vl_8y02dyƝ.j,KlX tͽkױ!3rl<&^i0rApتU<R l}1;h- nw^.n_p;Ko a?0eӂH0"˅zNgB@6=c9h}} 0$(䰽U{ 9K9N!T/ՈDr-5`o}0K&&u48,K]s*򄯥y$U?tnxepPvYe8>;w:Q s* y0n<>hPx X蒛iqD Y$efYtSH'>tհPUu<֜o!F/Km<"x͚x,]O'5R]y=UÍ+Az86h!r4tGfN˾ }sa (5αpH"f /Pq3w]vIʋ`tpf1x0DIm:8̒- ƁG( 6#.a+K^8srmO]84b#4\kPjyCC#^Ur}%Ƀ WE\ }}U 3^8[reY\HԤנe'"pM2,E[N+mǿ?;ЅI0vE? !S α^cI?8 ]r]9,U9#tzKHiJPNJz׷m P-&8$ili aBjO{| ( R,y'&w1 a'9f;TށMVU73A]#0}7Mv JMp§Z&m[gf ?6e,X RxQ򄎡Z34q>fRĆ`̳q}2N/pR})R'q-6}ݕM ~ 0G/'J;m^m$ϟGs_j7y䥧~r%ι0 #c ExF|!>l y2сSUf&_ʗ'f9͎y2w@5+# TcmġKhА #4n 7 bQLv/(m[jxsppFQZKG-޽p endstream endobj 1452 0 obj << /Length 2280 /Filter /FlateDecode >> stream xXK6ϯmd[#JEL: 4dÑvbe-Of^"Ud=Tb_ WoމtYƋ"$]$B"b߫m^s0Fy+U/3ˏ|.F@A٫UGb\~KǩoUGB>7RCx(4uѦs:V~) Um`E]^1umrd>VzI[' X܊g^v_ANAs }O):B#KAf5姱n26T4q7.Z*7FD  )1ӏ(V,nڼv&XSHz;huq}~xm)5/no6%Դvk*id\+U^H?ԂjֳչaGj/dY +:((qb8B r G׽߼ E K[ ?ІO("V;]?m[gklK!/[30ڔ?p•$?/~ IcӦ\ ^_ݑ(ՃkA$"qDԡPGcC}ym?USW; ( U{HXC #yi/foR Dt6 4GAǁbhQ 6 Q-`;hc[K6;GP4,Ƣ6ѥ[g¾g/Bs&,cFo ^ӫ3wdHHm 6 $Ua^kI>]n3Mv6 X'D$s@iʾ3x @FѹyQgR‘]('WsYr3b Rtg+ HllD7g%(|r#&EϟIyW80gsԅ?:ft%\7Oi1A]$3uV\jyI0Dq[L#mh@$ d){ME4?XzP b>5 j), 74gwĀmӫ ?x]e B, ZNs+hje 7/nRjUX]}CRyQtg_ w sk:ה2u ԃ!ԽD!ѡ/d2|n2 \H-4JSQXDUuT>gLCGɹχY 5H^|Aڎ_4PhG6rK pӜ֖6{L`%^8T$qR %]eADVEgg  /%2hAaZL%+j}'8EH–CGc@Q'&, KTpughqQ=DsQj P J2q*I*>KVƴzAb-W?xs\X8ݶc6oAw׈BgcM )wpxEΝ=Zu],h'z!y0gLsEk^2o3]댊: w٫p66 ~fPG([\0#폌( lG %vqCƭx!W̺%nŶiM_C\y abGKtT`ŏ-?R iFi:_qM?6wIpGkۼUR,%GCTQT#^R&MON$;F0i0K(7Qe%0=@j/ftIAm9\JnHqRdEAGcpU5C(t6!Zts'+j)5Ov6 jo[Ñ ?.n&F- 3TƂvɔO`֖j9(Ef]ykJW϶HIE{f/>pGp㵮iquKk϶} [YB=.p0|kx.oQeDtQZ|j+o]z۾T[]_8!6i n)dWqd endstream endobj 1456 0 obj << /Length 1743 /Filter /FlateDecode >> stream xXKs6Whz&1CqIg6=$팧ӡ$HBL*ł(Qv7#o ~|%M#?]Gq~0sYFѕIR;1E(i7YJLKU/ﴶ)G')3 D,djz|Z?Qz80{n&J]7eSLDEcn ݹU4XUFW6N_U>d%OF X䢜YE i nG,0V5N# D й4+_a$w gXݟys8=>W8 y#yLs9#۱847 h1K5c5%)4PNK/T%奬i0(gDʴ1]fvP.zuܡLPwL[5+ނ54ڮ,en*EVd E,1k"XVsSMD6fDVZR + SR"9 #Wm 8n-!j-+U]P iBĽZBc'V+ղyVd@eRޓmnwhkFwptUimΜ-OM!v]N{Ʀ;i-Hj r9o^Й4F8 \"}ijMIsj.0Iatjh媮hӂY<g#i{e>Vjsyg e ,g䏊RM~!=۲*޲$Ȥ5KZ^!́sVegk:(*- NS>Ah7s~{_aಣQCeaHu`=vN0vi9k|c6q#>3pc?UBf8!{c|?rcj ?KoaA٩}бSh@q7` endstream endobj 1460 0 obj << /Length 2836 /Filter /FlateDecode >> stream xڵY[6~ϯp*3*u`@[4b"Mh%2Qe3(O<<~x݋o_boV|q[YlE$qR&z{.mc鷮7"- KƸ [W>~?.uq$_&*QvN }:Y/6_BC/- fB0>afXX|ofmI@5 SܙޠmKaLqY@XyDmMo Dp76cUOC]P,w ΰ3> Vkfo3V6^XA} 2mPAmI$h]zLc L @`X4ZR5o/as]++vY=<D=wyH hqzkGybGH{C%0` EL&y{g}fjo욇FL4zKňDy,ۥ0npb1gfviNKAA-&5s_0*rN6$6GV;0,MKP/ >lgGvtܬloQ y"q0}[ 񻜤]d\ sW-##]v8_/k5tFt CDCS-){ȏ7W6,+Fadsx8İag^ s-{Y5krt$_xh(Sqƒ;pxEsk ΜXcf0h %rĈgb% #{wG3++Ȋ?:AzK Bj0J Ǧ@\>B\6EΘ@㽰K,rKa3Vݓv׹# QY*D9U@lϦ*.a@҃wgPqD(1'ȷ?aډ)@@qhuJGSqfv?M'8Q,V]j"dF:9W'/]矛֋郖QL, JꁒG[q@ 0rV)D$`P3Bk2!VdÇ'EԬpknAjzם jgmtoR!)g߶,ⰳAluBk?~noW~UuTqv 3utc}Q 7hnN4I+ĔWxllςO(Ќ Gd~@)#z<^m0e[ КkΓuM@9fTӜ&DMۮ?|3&WLA5?"!xہ0_pʓ|$TsDuU Gʀ;b4VC>]͗ﶉ(T/V o Y 'ېB![O0׽lpRJen*5L|^_7n}Sny1F /Ոq%u\#A\ŏSy si$r^s?gr]%7\$Y}Ypw;N>Ɣ'>܃2IQ}2YT:Iud! dt.#/Ҭ !Jf>]_t=q endstream endobj 1466 0 obj << /Length 2389 /Filter /FlateDecode >> stream xڝXYs~_R8x[f2[D b܀ `>w2<~j!/lrf}U);˔Ў7m{q0c[P ]UDȘ kV T`%0 Kw C 4OS8qxnepuk{w -N05) Cj5-4XvU?~n#%ePC5^P pRLH,vv_5 `Qꡔə`+$rb9 ,ALA;  2u8v:G#Ll rLג=_c8Qvf"BXآR0ahIK4|揥mfѠq-ep*J{R*>mRT|$h7R2^Y],稆&s;,gAS-{,b h /pT^ F{BA@RPUFe9&ScY5PUs&"0 OҹKHQ:cuڃP #s m=RyRo4 %.J T䇁Tr3yqXQLjE_hz '[&']PަeLW /F4ZNJBe^gW>W~XdivO\sDcO#%1qjM8,Zb=qRNI\Z߻̊S{^mjQ24mT<?fϫK!H:i—MZF_{\ c%q]~v\LN3޺gf[ _Je%,B,Ě WJ -I^'g?yo.:CxVXodK-s)%B>RgMN'm r_S!ĝ)Կ ]z?]@ wSـ q7,Yr.g R(;Xt4JHtO8|uy2:]}e ^8^(LfpmȮE<=<sQ={.6ݸƎ_M2:xNU>snуt5y092+L@}Rur5'Dvf*tvxP}/V~NQi UlԎC]5W@&2`eW؃GȖa\R5=w|9C/[)FB^`:7N^i/#Ls"`.(6&8B!14LGiGez0*s4E2]餂ܴzSdp)-~q!Dhڑ]Mzrz1\_ t='SGHuY>ܘؗ{WծtTtD <}Yf2 *S`T6h7^ f'^!h?a[l{/ d:] _~n>}C)838_[7^/ǡlrp8?cOӶ_ɫ;dD }S x6YpV"MgO_((C̷[9`|ޥ:fbt-7/{A 󽈇[HXu~~+??BٝB\;^dZ$َOw2 endstream endobj 1470 0 obj << /Length 2583 /Filter /FlateDecode >> stream xYY6~ϯz#al#A͙"3cAnyy"ţX**[ݯw_eW_QzU(nUhQVRJ!Kٮ~^8|u@Zfm\+eJZe?ލ~quƍ~l㏶+wa7]wn&7c6=,"~5S(N)x LÕ\+Up\xz^][yî\j!ݖBybk;-v#Gn3z\`)rgcd|0tS,fSIZe|O@xM?5N\][ İKC\3O<~5G(NM}A&a\'ȊbF.Y"%{X{4no'iXuj.ݮq(]A{$Km@\I>`,-"fp2ZoџN@ȳӑՁ6(@qNԋ uO6uvyb\iD$ۮBD\cPc!tgWh}0Owr}3>+{(~yG-t#N{Di0$0K60.l ^=Q&M>ϲ-[!uhOmpR J (P<u<@DԆ(Td%7~хM21)2Ѷw.' Wܿ=zOAT^bPPۖ? >Ar `L)$"g>H،n_?oj1JTeFg'ZZ5sYxgGCj./1c}4 =v)(CY B^cȞ3"=a CM tۗF>d?% B.mV펫 mER愗`s6МT8rj9jR`ٔAzRW%"MR5jZt*SK51Xe,h&UkQɔv”Ib8g'&ff8DAYe,FS ,t'|d: '8/"[ ƒoL*o5΅NHtcÆi%u%Tz=%pɮNDݰ䱆Qp3|irHkC) CTܝ.p)$%9Cggxe-WV#wl\3Zﱊ)bԆZEtⓖq;ꂜnAy(s3,(X^0bv]Tl 9#l;`HEMVFX샹"-ڼ.^G %DaxB8dW"񾢪g` # xz[cBM|3 ONd!–NoW"R+(#\9p YJpCxP- P&^gF鄊O z~*EkN)琈/729`5Ta9HKQ&m@0l.玓u,ך .ೊsj}2Qs^[j{/BC:85w8gE'j$|쮪ŸjͶ.X endstream endobj 1476 0 obj << /Length 2836 /Filter /FlateDecode >> stream xڥYY8~ϯbeu؇I&s`һAMBtxto]d:ٙ}2U$bWa~xJZo?^4թ(M0 ~Cz8Ue~|cQtxt1F{Z:ʻIzEϋ*{k*frPՋ(* P+/i&(^uni?r~oTj?]i?b?r%Sxp?\Di"-(9m$(BSaQcRQsY7mEl&ʻ>_z>n)cA)Lǃ"lxʐEmf vC"hk:{Ŏ4ItYkxTyһE \xQ|~;9 (Jk*ڮ{€K!6Z,uUt"}sP̰I&~oZ={yiLXƀsǃ5m,`𚱟k>X 5ShͮCoߐ7H>b6ycڎ ;"~TQ7/8sh쫵[CzVOnƴº닲dՒf8cZ~s"Cp}h:* t/+?joQGed.1h");q! ܇Hx{ X.Cv d~s}mv9`>}}47BTjFy1gt0@ŏhv=YQ8㣤PϡRu ׮q-jYt`#(vH Kvi=\:Y똲;B(Lqߎ "Cd)0ik703Ɲ?X:β"I[q;!f74;tl ՈFIRQPp8VfdºxXj:,֝IM`HuްZdZOә4Or!?/ qAmș末4{RϽ)`?Q*t $?4a(j|og O)(5ws@.^y75,{C2b8G-{)\FE." =xygSi=R3@8KrRԱP] e"D]HDϜA280hguu|Ӊ9@̝F޿ϛG&ƘئBNXv5`bMޫum SދΦ<띤_-F# ܔ2$<9;-f|xU)A7۾i%hoȽi{ޱE) <0-:W@~xA$q=R,s˺o9w'ҵ"#NCA$/Y`/dGBe뺑鶫YQ+xANÏ Vr%_^XU'_!SI%ܑRȄrp+zǀTlW΅" @nezSvKM3 v҉ìGfѣ#$jLьk `4Dž&2@'l8'9P0ӨN=e\._l) Cދ?fA:hA_!(%$|qsjf|x)?.a>=SKWg]3=8Tjzp*{D9'EX󖧤 Qz(a!tǤ_eSPYӝ֘7)Z[5,Ӡ5eJZ4wnt#~Y@b  f\&h#rQ92By{7 2GaPg~cH6 Xڎ Da41X^\dMƵ|JoNjhHdEȁ)o)ekKungfJmٱoqP+ד?tU6^2+9 nvQ[?8)Uew*EN7=""q"'튽ܠҽ(*.t~A ɨdG~_ , endstream endobj 1482 0 obj << /Length 3098 /Filter /FlateDecode >> stream xڭY[~_>U֪HMmMSi=)ym, 縋 )GnO>7G긊V߾LJ7{+!B)z88U~sz#TMA|jQQ3z0$eXWPHeڣFa^s(Pb=e}y 'C.zCH׵̃a- ]EH.8y6P@]v[\MG'Ҝ= 75ݶ+AQޤޯ$hN^V_2] v \z1JD==iɁ"Ty m݃MP6q湭tY$~0;;#Td ppp8k[tU]qϸ(7O%Do{Hyo>a_ [˽7{LLBY)\V0*ljp'% Ndt_ S$,x>?ٞB^ Vtգ<8l`Hۯ&rW*2" thê#T$w5>F2hK>TA^KҠLoj{5,DtgO`2-zpol U&```R0YYp@Cy2Vk.M8̻!1z\T*8o{UqFEEJn'YXdTU_P-0jX\Ve{#;dfBQ.Wc7 6RMGؼ'DwVf.p@=57m}u:J7{RR(̤pi-Q\^$KLv0޷Bc{H&m=iU>.pƍ,PPa^:J?tp G4C!lTm,t@.܇gX;o2sIVQRAJdtKܤp̮k0Q:ag@ZH$9Sw,ȅ!0'M?3ѧ3U,c5Tnhn9RQl{ ,÷6;$1Μ4_A̚O廱s\T՛!3o`k9A)ASy4;7S$|Px?|ue;1 K*xp*-C3Vae[vQj[*^[Z#xM*ig8&=^Yɓ;dơ/N@Jʰ}X(¥bypb}RP y^$ =`QOr\ zZP&祵0. 7MU={0KQsFY{h"3B0.r.}c8A p\U)ǿXP:WT paH)CasIrNqiBe8 /}c^;hǶ{sk&&X հHEgOriGx+)΅(KT$q0|7@d|sH0EQ5.$>N>g@7ГRc #9Qdf!(Psc#?4bGzTl_V6?r\\Fk^J"W!WCL{YOCSq(\Os>ɬW9 MFNTH&EE@nw>+gu`Le FILc|Y'7Lvtܠ? >~A_6IoTHa+א b e61buwd[Y'vD` OdaӕDz<[G8O{XAMWS]ό)_C6_h_1Rٖ܅dDy,(;p-IQ.lWU`϶d>8H4R|LQde_+7zo:}Z W;SvV BJNh%4.ݨ~ff]{~"S5oS=eW̬oG`~+} D 8ޤ^M ӛ]c"Qc]Hn2M(NBɺ0tQNyca&n'w e&ӼFmHOF1!!0sXsIBF4_#"$]W' ~=fy=yL߲CN~F"ΟٴlM.tD$'lNE;3x0i|rPF*Nx0-d͘>Æ{̋{<АlbkfQ=}>fKs.9UAdA$9idx$%:k"n`Ku?n+|.5/CgbMp1 g>7=rvMt ~|5Q ٲzpf5ƙۓ?1,F\IXM T܍Bm(;ҼLLqIXFWx/ꛟ(NM}[G8 US? gfqJ )q oSƔXz}_vUG endstream endobj 1486 0 obj << /Length 2888 /Filter /FlateDecode >> stream xڵYKWjSrw9ST#A"# rO?p֛ڋ4`q\?7Eq:" C?~o/]0J]eQY\Ykڢ:r:[-kZWnn[ָKXEd+Xf^;xp-Ƴ2pNÿimnyq|BgZ2jsu\Y y'"#Ϲ9+.|[Uf}IA4gaZl$^}` 8CSX8ow>tf3Wl̈́IyB[Ո7rRq)4\P ( cMW[%k;+ɼmZST啻Uj{QdT<ǛW&2޲q2^=ear؛1qmS_rW$x5=6oݘĈ[;6撋c5S˥,HHa0: dHFgËEigɒ-$[=H`LCTL~Ď <6ةO"Yc(gsE4Rűf?{χEg%'$@~(>跶vm;aM}Nmϒ¹~(*Mie{&<,hLk_qh|#~# =:섞kM2_2| ݺv%Op0!Ƶ<5v= y`<`:YaV3j{Rn%j@CVIh^I}l f0 @Sv;TZ5d#,\КNy$ Ƒ~ͧ8) mzYVA,tFqL>b}q"2Ug'?3J 9ӽ]8]Mf ʄ{2A_,PxIk'cLX&s{~Qf+l 4A|,&;̻J&K@"ww| g+*h£p!3m@ ,ҟvʑI濁ӶOKdLw5a{'nY{vNBa8'OVBdikZ.%XtW n$,$0Wg99Ȱ^0,jps}8DE&O,?|x,(\כ]H߻ 1cQ=B&g&8 zB4 !-4R~/r*tRlk( HrAOE-ME׀fƵZ4J`bI I|4NEJ$Zp0z=fh \aL h̟tQ 0q"t5ᛂF:pK^1zd6A5`rpTͼ4`SW§&|kgDe#aiq8"UQ|M`bN}\LڪF߅ՃGj .q w/$\2V *Ly0cP+.m 1(ш:? X7ş).ɍDjQ;)T{A}/L{2NI"8cj~ć m 6n4c Z |}$P5YR#۹+̄L`-:SaD1k#*$Kx*1YC!E>2g 0ΑgnoSN8A.8%‚yYq%L~P -2]`}lxj΍)7$T$^5< P+~ d3]!哣qB; ^{6hIJU^=8Df|_ }']<؉ +7&KsV3whIJU͝)'O8Mr\C4Mƾ b?W,4Vҙ&*IgWYgB[u!N<.qҺ`AO84WNv/?& juȃFMGB>K| Zmb}aT-=:$(9ǕtR,a.$6kCX8ǜsB@f[Z׆\;r hhwR.c$]3á-J (R%<#fc>!c `^4:\L"0:@jpqXә[ ;vLaG|W_ |B= {&8 _(SbX:cV( qϖ S@DT4r |i`9)pEA63giL"%x۹eUs^1zd|r )h hQS\V LdP]71l C~Yy cӌFG (g zRM%?$5gPHk[XH80aHjmFx!"Lз3$, UDTSe$ +û,+ ٪7[`+TF~93m{тh-)d)ɍDܝEB@\XqL;II2 Jb:^T' 2כ`{tB2xRIT1`ܿ5чLH`[WiϦ7Mݎ>pji,H I<iѪ+CSW= b7=- E6f/Q0Kfdl endstream endobj 1491 0 obj << /Length 3241 /Filter /FlateDecode >> stream xڽZ[oܸ~ϯ[eVD.٦bQ4}%Όj48=7fMH<<<΅\_w^«ϓ0;\URuuW]w~,EA?4a^߆i][6ce'ƞyz8q.;Emé7,xd$S8nsƞwK~₭ϗƠ` [{4謬>L?m4Zaܖȣ]|S7钻Py7\_<" rpogGTAoqA'.=pQXY ' |O]# *[-)z"s ᤦ}e}Tܑ/cq{Ǒ#L{J@X5W:`*5($gbI{)>`t,%]L2(ۻ&ZdAYhr'PK$KPrb0AxÚ{#3'n<_G!7=#7g5AN{"[YXp)5&j4)~ώb8W@)a0]΃Z7I, dJfh(ٝ78$@Y`0ZJ_&FYDfCa ҌS0 XhQ[4ؚC!q]mXy"r ֨{C wy4u LT*qy͢,>&To5JEj I 쒠RZꄦI0\#MRȩw|SAtlng:II^r[!ywj2!D:^Y=8C\u5ay/hQOR̹qS& y{dS@]8R?J,M754"A+dKL-)I]-OG yIE@$q fsg<gp!*RJl(@x_ŽM:HX:Hb;cXmIvAƥrPHV1bOua %XcD')|^H-eta#\Q@@6OL|leS Vw T<f9[n8NIp$b-k\},%n nC[!.bycV.LU@$p3\r+c p+iXKm&>)d4A‘K2|gyڻOj©ֳ,5`I=;؋t;8tlf5wlMFD3ɒ@8po4B P8({[++C @ˌdPQ27:l3IHA"ܓ1 cNCtrpEuKrP a!&ÜL ՗3MI` C>k N9%I8?BJÍͧ {iPЂaEЁ$B rPKLGy8f&Jb$v&zf=PECtAqYOy~Vo^`R[ <&ו)ěN6324 =Vht M4`-~0L`4V&ˆ]1{r)i$AK SyZ;쳏/V9l=BK4 CSr?FhpeڜV.ɣfY2z~o,4M#mSW#jfCh#8xtlj@eM˥>2$PHOϿ*;m{_I7kB]4 Jf{~ -9a]2| z4?y_rDSc@glR3 Yi脥DKI)ӫ cCW/f> stream xڵْ۸_qF4IkWPY*7Q#&d©y3o`AY>f pI"{/=m SA= vFxg3 p }agiyo1fpbnG_|?/"? . 7Eu"Z{?t~5}4/&p,kzΠ`.2Msf#܎Ձow2jw|*^\m<W@22@\Jj* zD`sl?J7#0`y.݅#jZ[@H1(0qFXF掃tYݻc¯8Z#1u˝v;moő5kJ,sweLf+1H Apr/3ЊY8MR-"cc,s42`1V5`v~5.l.ۋ]-/oΚF7LcX$z{A {}ZW..D'W`X:p:uq|Էz)n6&Z_~|QS̕'aQ*X{rϕw+\03}`{IGT\m(܆7݃e^L?Ր2o gSUgɦgxfϴfc?J gc!<4RCri'*t })]_l!㜧Sҝ1eߛ lnH[yv]ٸ}®bnhpHjОP{oW~8Òy9w܏2W *UCgF0ɼ˳ Zp58'h(!0ٮm&)|Ue$W>Yǩq]ۭ,@0H_rtcE Gi7GO!K+vIB#-fFf0ϼC˽ N \&εd\R|ClpoS挛|ŊxKa, [`Z8 ="مe˵c%:3_1!GkpkUJG(Y%|A^f (nXa%ҟ1Y Oa"b"hXf3z,?}T}m!HXc€XWHJܘAV 2dr-xw6&\5;籤&>s4Jo L(-0+ݜF}BE|SJ"v, `?("Wtf+u6GT:d"2m?6+ n!{=R}8B;7J+mˆ?\QNߎ{l9AK?CT,2tW". |O_.lMM윲/lj eo:AaoU\)%\ T0BH-d2 *!ϬaG#BW8aww6+}IOIc-E,kF"xoGinp'_"#tߏHWh"9ߝ*ƨ1{^z[# ˵y @.Bw_@W)|6s^JZ3)e?C!;hbtCtX ؤMTshiolz\,(7bq )ߌ,Y{?P7ĈmS9*朆[WREjFà$rP]sSTnpI S Ir̴#u"[VylW/nTޒ'ˈc׎'!}d?{,N&v>Z& #oiaRK endstream endobj 1504 0 obj << /Length 3127 /Filter /FlateDecode >> stream xڽZKsWʄ r.Q]$. a _{f%(2߳"77߽QEi^."uf_ .}7a>[C#Dz+ޛ\y]?e{wb?nsӨev4e}^]^%*~!'#7 Ӿ`^FX65.}E+Hp!!C9t-<(`Gv_X(I0ƃ"|w(߻XS2$yjmBZcn}q13|S鞄ņ%` 3c?Om,馞'c}zmݵxGA@H"4RgR!My,ok=/1ī]\E~ˑ]b6^IecNsh lB(T8ܛGi`jQ{y$U@X" =[,Z 7;ie{F1Y3X anQ[FfdɻlA3a !e1LT̝ŅuW~ "=(ab+(b?r вuE00P+2_9n`V 0X |"8r,{Wp,!Dp}^J|1c*.t3L39]B%G F}#ܛfY:hmD@f5vh ! 0ybxDI ۡIah{c]Ȥ"]=sj5ӡDTvYX&Zlu׍cL {n1Zeo롟d_$R0\5 @ZRJsʭd;;R[_BWA%6OKf!)5ڞq~zI@9Kl@JgYMmmrr=/JoSY}#$&찏d%fTz[rQ3Bf.CعwYC+OgaaecY*c/ӏ%e4ݎ[aw)!7(l:;.cﶾmꎒ1hNU'^XO/9QXԌ(Gyg n0h,45Sjg_: pH|c܋-AX)*Yy@&EtT Ls?d6׵<;ύލ'֒P}١fݚY\87/so~5g9^j$Eӱ;GS̊GFoV(nHZha!sƗ4Rc%TC5ć=T}|[W..RۂT8p>yn'.ׂH {\VSpr;oUO@"꿶%r^.=kD Mb5$D p1)rkNEbK:5ahys(4 T]\JxrZɇQqFnV0"m3<dކ vUrGߧ:3d7ɗ w+ݺ-y'{;Sjv+% t)Fi8]lUv~n\*8<sd髵C 旗O9 הH)g^o<|$ŵҮpj˕yLMl( 䉮@Y04[6-Zf/݇ 'ɣeOg%?琥-71׶I{ ?k".G>{~\ o endstream endobj 1512 0 obj << /Length 3295 /Filter /FlateDecode >> stream xZYo~Л)@Chcu c<=38䤛,ds4kmMGuW_no>I/o?MYlm7o7eWMqZ7oEEvE}Y4wces<3'ÝoٛMn6i1ok|Fd|i9[`ɬF=Cϭ0L\yJpknqxj 5׵q\n n70ؽݦ&MUevG8\wNF3Jۢ`9`GViGÅ>M3ധ~hw2h?X.GuMM(yNJ#kxQmeͦ}乱qȗy[`ϩ=YG{rꑞ,v8qi<& geihJ&]KUU ve].O*A ʮ!!h7H+,y%K:3=7&w0-x㕍{d=+WC{Fsh֓g7}ӂ$Ay)=5]qd҉e6,f|:)?ciSxHwnZw ܅b-!>K3şx \Izu3 Z# `KFKZڎnXրHjܓ]x>|<бw]"\It:'mIx,\xYG;3@ٲ2љRw;h`n:5괓-: Eϸ) PHڑ P䌟& ۃW} s(QY|sν_3l,_=Ze wbW&XVgqO:WmώBǎ|x,bk]]#4 7оם_ K.*{=Hy>l!={.cg^,`v3R`P!C]&U xJt?#)9T&E#[* w;T#L]DnT CD4O^O?ۺne"I8uϿ3G= LrmpؚAxҚMy)Xlrri`B{fNHʓ+(7ӤвDgQ'<12mTۙR*'#'$d(=iz@ WЬ{d[?>w.(*pod$>K^XɢKv"_?1yG)<&gv3 P;.FrIN̔iqe.hVI2 H ΒG>e jX`~-cЇ1()R鹼LtWU9ȉxrY0ޓ[,3$.B%&bUA8U)wmƚUd˃˙j Ø9%aEY!^I4eT!**~rK,P,rFiZ+y$_]+ Rl\q}"ÍP|v2ly8`fĦyXZ]&^ iPm S qxV06-:@m g(e{I (6tcRzA P".KOھ>n@"Jpm,0 ۓ@ܢ†,d߲L/8l;2i(]tW/~&e*֗B@3AzTu?=\EyB/>id's e J.nN20Sx p?pkK[VD?#7xDBz?r+WKlDe@a(w/9(p9rb}-/ ÅogH9Ua' jeGIa:$;'oH:pp}cQt7:+>b>FNkV؊D ]H=Vg3Ϙۦ7hاA(D蟔h_$G)rwYnIҗ""Da8DžgBEp0Й%6~?q (8-,^Y8 A7k8gczlOQ["K–z9f6v^nPs82z][q8fSSی3UF@\p Gpm$0'WiH{>}C# zɲ..o@bB%v#|pܵw_6%?(QܔH<+W$y2Vp6 Edˠ[P[y) W?{44:}Ĝ;jLKr7D'0||p_ M v endstream endobj 1518 0 obj << /Length 3242 /Filter /FlateDecode >> stream xڵn6-2+ڗ9ddX%JcTCJv~FUV:K/%|||;+9$7,~wٗo즍*nn&N8ӛ$os?7iVSx5ˊ: hVeia=Nq[;D|ǃ,rT3z#ڳLs0|]Vѯ lY,vR@q)>JC-]q^|w,P󬌞TRI`\VIN'-gBtm!fV#ef4>+_uT$lEȩΒFx"^ fB@d``-r?g ?%a)ͩ_}r4clZfϥ6*7B.j宆^qFUCA^{n>QjOdRd[1_EUY&~AtN]U `FJ~(P?e¤sk2begJ Kdmp鶬2t0>eaMo,ņY]J~ޏ|X+}BlqvJ;rW͋Um('i~&(gML(7G R9 ImL><2-K:X3ήiUB^x l]Qh]73 <㈥v   ICܵ|ͣ\gR䩥.VS] ,^5)LyQDž<\W,۵.V_rObxmfp^-@sj-.e (GMG(ѿAZVJ>7S>gVi  T؛?gO߳kEYYn_JT9G[=b2@j F;QTzݰ7";bOmqk3hzc (,svYI: sRIف\á1l_JΡ&b(sw6S!Im&e0̍ù.\2i'h3̂U3)RKX)]O2|L}UG-88 jl"n.l^,A])+I D,#$iW;inr1NuCq.S]y1pbW!?-Du>Ph-JJ6Xs t2mYl4XC l"-HyߠwHǺ4sځ_OjR+8{,ů;LkYkeb|Y!a endstream endobj 1522 0 obj << /Length 4157 /Filter /FlateDecode >> stream xڝ˒PNF4&7xRIU%B" l|"hFhsD?}ޔalxEx+\m_#oW7`+B\/f28V4TnwpZ ZY ow 갅'|n&٣TR٪Mwb'$ /ܫѺp0LS>“8L :񘒦a%+͓k:].,VDD$sHG-m[N1H|Xv߮vc[LIh HfuuUq+_ɮL²L=nw tsU $`0`:kͩ7m3 / {n&1T;N $<{U-TVk;2_Ýnp.PFFFvQ=,Г:D `{Kq\b=Q੩M_45`!XղT1r ` (F:T=k?t*\ȊA4(WG:2q˩)*X }[΋ybt0?/6krʤKN:򗄐0fhk7н]G_U]g+ח \ Eu`9oۘNf;(bZY-|@7^ݡ1,֚UUraQLNf[Og:ME%mkT(nf̸b5EL㶈o]&.6]2 w 6{7A3NLX,jhA" 7Qdd;ruj.{>KqO|D][QN&3A@Y7tZ t|5\I3"~qL P$ms4­R2A.W3;P db0dd?ssָ֭!썣UZ ݏ\-`(@_c!6"75K [NdY(N=E'޶G%6~mRM/lVLiEH(1+-qDh0(p#]diTM[g(a!2=g v˽ $}fLY՛SAaQH`EFN&nؾ$YN&7/Ȅ"_Ht}ڑe+Y 'H!&Z]Lb` qA2x&tN{Nd"L7 C% (6!,l`USj\et>M 1J[ݠv="C&0{,>0DlT&]Fˎ<asN7b寣A!}*XEVJ%cfҥOCu=sTP$dq!&Fmb 4fg :!d<ڢKڔкW|ƙփ&C 27gŇ'Qcc(B^޻ Dx̪Od`ހ6PE! ަq SCYۋcuA)}(/÷$΂6J~-T @Zv/01T~E8;!,*@s^Mo[|oAG2pAjX*U6X DXf| w,$.F n)ĥA'0X4,̅80ͼdvZHVZҏ <5,nƴ]H$ED`{`?7iAݐ"| n7ɒαzktD/.uUH 2 K2`وgcn&t*fq<K 6'I4N7?GaK , סΧ̨Eu̐g!|n 9;y "Py"ZzxpĿ,mCx%!u 0O&uo NXTrwS8(T9эa;{`ϓ0%m *ldĢ"ŽM#i|)]O7HF12$>, S헙z*Bxߵ-rsh+׋⒅r T$&]P:I6xcs,6pb 5b750M@ 4bAB<XJ%%VB R* \V 5ǁ,$A%q a! HAFY&7ͫjh0Ge2 N z,|ݸCi' -,*0ٵIdǚ0 U- (B]\{ya a0 YlMx"  `U YfJWkI?}Dx\vr|" x("K|Tou9q\9KT`I[Fvy.ږ2q%6>!m_VP؜fd0jhU$M_>6("6/à2-~e̱eߖЀ`Ńd'f|R":h܂Mr/Gj=3BÑ7V ڇRqU* 辠ǎ.)`h!o_QZ`<qzezѴ+PY#x{&I>>Ē^azp4NI~uh2ӫSQ$P>%.&6ME칓-{yw2ysJ[5%`s,CjB8_vYXRTBU8ruD$CHTT J%,Ji=#Z*.WPB4\ö,) S+B¤S/Z JsnFr ֵ V4v7jQ8w*p2Z^F鲰l0lQT_~,@ @d V-2vS٬Q((88zUL'Ȃ +=֬$gq66iȫ36ӆ/1Sgܓ-P-Lgz[h`M{-ZXH!w{[/eby&GFܙe)c O +Ss j uи6NmٌEpq˗ 'U'hjUol2 kZeF[{& +_벴?wD #i#x/gI;D{@Yf1ae-`LbNSp`m1ɥ_bi1A*⪑=#a&ƫ D8@,!-JתuFy~ggNT멖_1){ [kj(u`'/YDH" KJ`mTEM-0+'Pٿ[KT/ ܛ/ęrjED<55<$Jn="G AHja;' R޻vOL$O΍P+2$Y ?b endstream endobj 1526 0 obj << /Length 4144 /Filter /FlateDecode >> stream xڵَ_1y2y~['&1`'Hlzw)RfSI6%]}UULnv7Io{67mVYutSqiuzwdIM{3qݦ4f:{ß{viRuaL#չiEo&h[upS]?дͩ3o﫪~n?`~VGl`:Gm &3A27AFO*Niܖ%oN[g 9`uܜ)ĎyUD[BjCI2c_p7kudL6Vo7{36y mM՚3_`$8o]fSF8qi`ynLύЙFYm |)U7l~ݑo޾7sL-L`!, 3D0/-5/jQ$-W&3 trNc[#bы0YduZތvesT9iyM<qL7)s`NG:XAV,rmj{[F,9Nqrcw&:OpV}OxNUx8ACF=yΛ?ȷ$HI l#N:?)Ql th] eu~8O? {*] ^u2wkz44`wpBE"zfqt/|4GVN,=7p],TZTUXqHHHsɲϮzklx m6n+ s[\--vD ǒ [z~<8-&XэPvgXlՒ 80آ˲30X0Z{'B.BA앗/3l7(k$Dc0yODnXD(D.某3Afg'g,hAX_c{eV#<AmTTٰFLwz:@!PeȠEx0n3_]o)H{9s uʢmT]~ϼo!H$™t\j#O5tc?L^ĉ8α+mIŸ36lu+Ga14̷~ :"~vdN.91;w\b51>t1dyaL64bC::~$bwAXn":Ps6- aCJ ;@vYI׬d>Ami~LD?a 9z2wIcnz2/CN[pR".F`,JU2y*uda.:Nf-ng%S.cŷ҃P䎍~ӋB!2Ed)5Z#GwfPLџ {Rbeq1 ;DoѓpF6#'>)wtyS4'9L L|ϐϽx^=נ``"nrEh+TL4l~@!K-h?@Ļ-U5nd)\JgOdbj'q%!,;^Yts눑8`fՀ\.E b[rQ)ӧQMO'nKWgIO 9<8Mj^4.8IDFGheyE7$–B8*[k@BKqZI^U;KӇeIDvg{;r o0oˁůL10 '^&ELln)hs:y`"lFh숑beNyݝpQDvo{,3!&QnRcE 8ĴO\FU]()bNbSBTtv"1^w0['a\|Nd1&+d9P\`Y1zme!P{L$z @/3aљ+6t}2څz=Η^g} K0̯6.gqZH ɋO^F5~+3 ".9ώWb^7s2\g ?د#V)F\`%aNV1Ixoxik6a}X5 J-"bJ V ^ =rpE9$,qF&۹g~߃H*e-`қܬ= 䬚rX*UG5 6gT&B]I $t(ʳ@7kd+/v#;{Bqm̱BVe\XT+A% zkFJMZ<ÞY 2C`lW%2w*xm%#xKȗPSuqJۻUMnO<=/kh0,M8#[T4T#P)@Kye̴ ?4:cy͵YPHS@0̒YpTO:-iESpz=Ky?u5m1yT]p<\>7Y~q4I&}:/( endstream endobj 1531 0 obj << /Length 3979 /Filter /FlateDecode >> stream xZY~7s܇$9Ď*Ē3Ыͯ.WW7gϾx7UPq~spSA'7EQoyF?0uTP)Aw &qfo;"$`U{:F`;!,#J,ߘJhi;w-:SYiQtfܷѴvmӃLٽt鬩i2Lij`?R6ݦiVNR۵m0^L7/ ',T__Hpl/cp%ŁmEq [ Oai9ѿi}/=Y؟`!e$4K[eQ@6-hjKx3Pf< עKsA,]R}-IZpQZ=#D~ -mRpM-BOBMwR=Zw8R%qGO >ȿ zA)CΦs}uMkվ "nm.P(|Jp1u$;)6bB{h;\p1XǂyP^xLgv;ik=^[9ӌoժY4 (̙EYPd1%5%^!+vi]Ttہ` yޖ_h&䐾p6XH_K}`& 6,1:kP =("Pd)J3]c_RC#͒MrƟ,[ciWP?΢UP6T[ Ko2XxAn8*3)qDQ2k;ۓ^daPr6 Ip5c;' ʼn񞥲N^xB`VlrYQzhъ\Չu^oAG[$ p ^Ws7"}>x6m 8cB.rkNRatՒM-z>K$eAf 0NlTr#E(/ר px '20B_$Eq 5KAcr7G(|KHEξm28~)h`^\QQWIh]3 g nGGW?zoID8 gT WL;vZn/<ĉ>Q+<8CNp3QFC)OqŔ91޷t_1[v jz(/~5пv{>CH\Svd'AڨƷ^4t1'/@I}5% k>脜a+Rh~gjOyϐHFi0.J+MV3}{RPiDY7u(賯 o4H:o >LN;jm! V^8ܑSuaD[2Y8 ds0FDj,i6@ {dHI5Gzt5ؤ'ӏr|[VgT'wB'sT!egݣTG'fe{ U(RּVCT <(NdDmJ !M#!/]xg^5ρVOv {B֓_9!ar(o^b(Zse)ك5i&ԕҦ ;yc/Oi}v8IteW:]_ԋe P,&inPbzJVT0β+;iO8&̿vs4MS>әho*4#C3EYp]&wNW+B|)%.ǵD^u!yzS0S(2ts+GK)z< V})}`{ר{OojSFgk1y ;+s4'fN)d.'%(Pʞ"3W@~{ٔ|ِr[[ނ5#v2iߏB/; \=m]3I0G1,tg57hI>yL%N4eV"*uű˧,1wJ|2Ȯ=UǷ]aeY]I2Kk4Saq?sńK%-ϼo0ΫFށXX^! |'(q藫/_>yxIGXa` TOE>#GM endstream endobj 1535 0 obj << /Length 3863 /Filter /FlateDecode >> stream xڵɒDW wijTZ1 ^3K sɒG \K&.vUVV֖{jww}O}$wUTI~tWQ"w>%Lm\`!=Ivq{ߞmSpo o?C}t =_N}tM >T&нAl{ok^><ĤzuGLr8?q Revtt3'{]# <.C6G'ܷ́g '!p;AZuFލ J ;c\'LlmrG}xaVܹ&ap~p4#<v2 dnqeƲqy=#wjj{z/[ 2F\.}]s ^q1 e.)|Et08 ]{K7fTF̕Q5vpk"bb#O&M^e-gѮJ o|#Z a:3Vϛ]x3eajh╿YoYvυ׶dF./Skou[aW<#iG2H(n8d;x@TzP06_7`O Dl>6Ն]yמ4 wj;R]xXN[ɻA[-CٖXXÉ릸 Q,ɬnBbjO"@QefZVOw a5ѻ[2Ӱɚf/{g{=1k!,gEGDjH;{9j!2:O @M1m?вZ4glW|k[ D5Z x>U@R1.Dp^#7g rVǃPml- tJK) ϢB5t%M@?p9??J5v|I?̖ S_E{`l7,IAV:>2$<ʻѧhNwEW-NDԞlsTxl2G$nA9 df gbYa_5aju ruΔ1)iVvg\ rPBC[S :[Ig+x:]{PL0c5iY1 ;DVy6Q[U/.OB=3 ):5ix{A9e67XKliq)?^&v+H~0&QB_429=SͰTydV:F\0l΀~ Kp!q Fh Ȑ&!< KE^Ib0hGOɌiT~yט‘kD|c_p;i` 8g<_,%ˈYj̞a*ɋ";16Xu qR`J*L#o7 @{ n`9j֎@.,uy``_:A#:|V ^ݜ I,WBD&0(bDUTaU|x$#U h_~7aaeh8h$.eq=r'*;Sv"^ъ(O=JlO2уV+Ag2 : Wizɫe G57NǚPPEM0ޏ#@\xLhQ P,z" m34'n$ ӧOJ@Ú !mc ??(iRehm <븿8ݾTti&S2>Vpd/h-L0NjCV(N~p#q" ́Tdðk.flzAfS;~x S-CdNzc#~H&Ml7,9OXK0;ƻ]1t] ~# ITx?z3cpն;ʀ|U(*0~O6ޞ%* 47rA* e5E@VKpv)t8fiJ@Ҥ19BV񽋂2o7YRoT!VfB*ԣ|-رNKR JrRy&DUmlUF L- +Pq\7Ψj2ɆSaUegJ.Ţ Y%fePQ&/ /I DjdQa\Qz+d;0;{p3!΃I[͕,) Tcl=q2^ڤ2?ZsOR[+H*}CRN8Ũ3s|7@\ ~9Nڇ*uDZRb>̈|'s2?a _pzl2 cͫ>֖=7WS4"p)p2OXČxմތn}SlY'*?)3r8ȑv1eCߟOe_5uTퟂ.Sn&'\jh.kJs`8á6cڝUʦr~C$͉{IQUP;+TPKyyYćՍ׻c YMi/hN,J 9y`.]Mj)IS8koB8HqЎD ѽ6pVkjA6I41ؤv\Mڝ] |>>aOGOJ?y'֏'413 3hrQ/R/f٧RTX;nwQ@IVP:L._Z~@1ddA7\`{?[Τ}K[?ɷs+˯e|詢ةԠVKWCׅR.'ntg,ӯP ['o|y> stream xYMo7W^ !#@>@ qmG(R`+@r vpg!p8g|΄!"aB T[ .CĜT`2HPmqF)J㝚aډ[CEZB+ECu!uXǁ_c?ؔ3N3N3B0`x&7n>22@פY"!?SfeDVkX45O梻nS{=[߼_Q:k,CD@Kg1~8Ait/odpʒdGEj@H gfi&ngP`o{gt7h\ # "2fݔtEqP?CGġtBJPĖlEnlH.ɉ,iY1KhP֫l Ẕ!T!6XDdKzEJ$Ib){:0Þ(+<s{iF&BO`P!̓,΀ endstream endobj 1540 0 obj << /Length 1984 /Filter /FlateDecode >> stream xYY6~ϯУ 1 AWm%Ȯ} uf G}Ґs|3}gΫgyv2z2gsb%D8B[]]QWL"wBWOtkH FAFk&R;h&vw[4:)P.8-ǙO)2[nKzFn88dƗaA8%h0t) ]Oj[8k^&eQ @{x!i]OF Z8~}g$nS?uysJ{faΓ-[$qsaϰX(q6xkjلlxZcAd0T] y]J\[4sZ;`6b۲ڳ@R]S)}NA,bǠcoբQd˟[iT4eEAA2M9Wy9(ӖyO W{+!1PHdU*CPC3W0C$Q ynQmvF3’Qo `I6 hB+X7&@v}Z-*rk.l1+&Ȥ08+T)$cMlEhVrb$? &fg77~C$Z&Jsl vLn߱b2$U{4 6A:F6ua֜@O-=wzq:/+̑]x<{U v3SLՏcߡ!(ibվ,ح@QUxiw<9vP L]St6bsMr& qv7K(P!R]T\+ ::Pn uF5xm&XPu(UQɊ :Աmc uA2#NE/і,L(l[ #C(L Rʒ-B"p Bc UYMEk!ҷzi̊\ Ҽ>cZ& )hᄚ+gvϭEK0̬ri0@NV0{.!gTCO '4Ó~d <2ze N^|p틏ezI|dO/E^C=n.*vųu6˚`9Xt/ !5Xe=䈪 MGtj{̵":mkl@A9J_-:R}GPA!044xj4 OzA ^n@va>L8 EK/9k-:ZwA屌.$^&B2|@iS,Q`zp.m.mHOO|BB#=K .XdLg8q2a-zוn$@ ! _j*gm#ת>awmLsXO2 xwAhOړ@{ x.]<>O Gv BPdPX^l endstream endobj 1545 0 obj << /Length 3468 /Filter /FlateDecode >> stream xZIWfNh4RrlR%N$$"`n4HP*C.[`~޿Wo*ɢ4i+$QbSemDfk몭&뗾1>鯼mZӶQQeȦ?-:frwޞ bUFer/)(yo_4mT7xLt}/fnǤ`y3:2{^pf iڹY彫au3}7L5l+3{~G{;q ..|:=~yq~{sN#i2,o054ԗOg+P ^ < RK҄_RϑGRe;#oe ^"t&A(}pMxl;8HjшMǡGI,'46>̺ uca\JF:VRn;}60%fLS7/m-&%N 5a`Ԓt:^|Aa(`<EGJ́%|3)?O G\qynɁkDl7* ;, `m£<#Uǣ;"͎VFj!&Ml 2lmN%XϝskĩaP2: z@,ss)I0Us@FBQ0R`&XИ*psI*}6`9Um/Do#3pTGi̹@6xdsI!]0G0a͸Ce3e61nNq孢$-׬poy HUY&P o nvG˂vD%j?q b# Ur4JZTjJd'1C[ j M>vؑ;H !)@rZwEcմv|HҞ$6@&×9w vDNREKRQ\h7y n*3Q7ʝP!4rsC>?6S5~z@Pr_uccl)d#Gz]3K($i`q!!aP)4܄HF[R$/AX}$ɽJn0 /Nmt 58!ڽ 4#f&]„mN5)c<7eD 3]nr"d +#2FTKW2jyrKϛiqAà-WRa'v 1DJTO(@4QI&vX& H^МQ&A@,$⹚8؁~9WD[l7&2%}"5x3 R|Оoy}_| ^t]/glөjQjiE!ޜ2Oc~{a.䬹[r'@ܸHWwm T._4dͦzuxdyxvѽVuqV*HVuI&k)r2EvkU-G9H0rq0@?S/sȆ XQ؈-ь+Y`e γX*N\9I]ΈDVsCͳ˸qTǙN!Ta;&18gՄ9TnUp,s۝ +u xyM(kꂮWidk@OSAH,zhTA-fAcO-H@%mjaoeKm%:&FT/3]FEɞaȯY(7O3;_pf')dqxYIǖ!_ƨ;N 0a+N `^F6`gꪈ>FPe c!QPŷRP(ij^u^JȪy36jR}S]#8.ޅU6w{z֨<8a$Li%OUx; 9;vh6ͱ9~@1)tT`Q_0ʽ\P;a'O`F`<)5;ƗNb}d?( [u:] b;!^f98FC.h?lqC@v!w{OعP 5)X.n:]EHSLC ŬcNCD9^Ԭ/.ס_Þt&w ϕ+5 t3=j%}ˁ굊y&l t? N<9moȾ=b Y\M7G&o15JI~=qY>/x+5mv ,c)viԌ"ᾪ, % dIX"R]eWo"݀//N޷ǁU\ WkN lۇƏ {={{PK#O0^+l%atQg >F ọC|% ֎prZ?;M kT.?Y! q }A"L kK"v*Bh: BP/LC6>Chw9a)hzVG o)s/(}9ړܭaa&ܼlhHA.a]T^ٙ& ^o>8}< UzM p [Z\eXbC{ e b8[>ӥ@ܿb; kjw]c;b5~."F9POIuzRSn>5_nw9cXoⵛf+le%J˫hx vĪ)Z)]Թ S8,'TȆ(ʥ.Imջ]\r7 j0IͽԄq_9}1j`{r3ygA7Q<qr8_ Ҽvc 2`#IѧBW_š~/(Y6ӫ`ŝ endstream endobj 1555 0 obj << /Length 3633 /Filter /FlateDecode >> stream xڥZKW-#);  x sP=#f)RiR;;>UU:@Nguu]rW~{awg}+2Mwi=~ݔlmӴH6~cyU#7?S;:#:mn^?`ǟqr7-囿6$7M-+L4#\wi˫pNvw aj4ml?Zt avZӠ6m\3:r3N'^;; m5mgD ]#ڏtB!4YyuI b4tGB(s"F;1h71ao9z >nc9z0>Wg>Z?!n?ֺ*Y񘬨jZ#bN`qb]j=$ 0EW+:,Qި-Dnp3kσa-.|",@zl=#ԫfз9j~QH ^Q:4Թ#7BgJdtw!Ȣ0z|:?8ھK=Wn_ Uի{YlZ9X/Z+5ELhK@D0\oV4^Y9aճbBVg''wx!F."Ycp.{F$!:1C&J1Gڬup69*o8&ݙl|g%J"̌˙:)~ǔ7AR&>@|<47Q(sϪH <)Ccݸgelƚ-=`w,b)yBpi,QJ¹P_R71[loj9$72&BK wR B=bEHX7hXƪ\Tf)mf%@rTKH%$AP W9&4/,f݉ybi!U|ф$#6&Iwg2Q+8Y*h*n)rW-G8`h~}ͮD& <Ԕ#q@ǃͤԂ.AC"C#_=GCwSR #bZ:p4ԉhbmRJZE Tզsy;\IbA%bMUP+B'i:.z9s3f4Pr[kޓ<-C&WR'N7|9VZ2 V|wƇzՍ/-a dJS9'⚅eygE\N^E5+[h\;U9XCеB@,RL (eR~lm],E0`g؊/楛}= ԽÕֳOF>Rь ':9|~sQ5QhˍsBiq:¸= C֝7D&YC9CO1uj><E̛̟\<Ln͡>?/#O܇41g rEZ8K4dÙ픺-,ca Pq BWn|\` #EjdGeǤ(Pcej#prS.>>M5b`(Pqs~A O#d/7٨NW釛B|ZaD%܄V_4Bs펔݄t-LbF#CLaB8;sq4B€R5qi8QG>-^cGLvDh6ed =˛|RmI|>[B؈/ybgv8،Vٰ)W߭ŻuQl z-'ɡ/M"O?kJt'ˣ!O VERMiK⣩k)[4}fQQpML*vȌhV K )K}U3wY#\?m{{OQ ~ XE c߾QT?ae5'̾' yJX#jP#ju=)C ]c8׮e7)(A;hJb%nDz!F I/qzHv&-(;쪪~S,H endstream endobj 1567 0 obj << /Length 3759 /Filter /FlateDecode >> stream xڕZ[~ϯطze!O)Hٗ"VmȒK6wE>&+r8$s!yW/_}}h*^MCi>~+K?2Iv>f]׍k;)ϲ}Lw4rF+ݵy처A:/IzDzڵ=8Eigm.AM;ͼJ[Fo7EdoaoER,4*b&z\-'0qtF- k7kƣXM̚Y)lFSy~|*3l!= 'to{-߶xsq`@8 /$"Kx+$\du{"rNijI˲&a?9Hs&B'M.l܇ >`ځ kfj*M~Z_gkW:qy>2OQOgԡ$\52i/4H.娈)F ƷEgCi*'Jj8Ýt s\#/`Lx]w88yXjvҵ`[Rŋƥ?&C|%HvDle$"LyEIi* gA&b.nV" )i@> OqؚdBlz%2B"5w'$PBC&!hp7GtK v vb9|i:g%O`'3hKrN@xQ\>ٞ2 \yeНE垕?+$z*SղI|nEb7m|/nctG8Bjɸ4]z:KVU| _QVf}_fyƥÎ$r=+IzbM9m=6(мjkԑS&$c 䧷fQQbj$( GI Qxv0YW(q%~>BE6\pov6kK/w@ x6~$t?d(KKNp9@)ʽTjE8b I'{:;¨q 3U xW 8yƹ=xm3{d7eq' ~(ΣG%E}!Tkfi%k7L 2ҺpF'}zOjI!AzRPyOVqeR)K/绚By@ɐ`Z&?x+Gl(fNn+d{X(Y~2U&~OUyW)\V`dlsdygdϣ['2"()(9ky +}2y̪֑JS&R3 aIfRGwY Ѡ=^)"Y, ᯔK ːAaM JB[fQ7Q7LPPѾ[V;;ueJ/9{t?P{'ԪopTܹ_+^gC×YՐ)&_lFi(x5 ZDN}勶uR)]M 'êat`>N|"ͱcx#GwlJ[{DxF)j{_5Y77iTLQ'jܞߠ< @3:V ףM V{hӓtK>Db/fͭkeEV_2-˹$ 9@ʅ0C‹̄X~5g`2FEWts1b eh IA~ie~ZVUgyؿr~D6,_-mQqNBh_qBξ\K< ߈[1g3F'Pӟ85?1x%MtVsEo3\8qBl8D[н7"G=m򏶻j6ʛs6wFc> stream xڕZK۸QS&mr*q':II,S =O ЩE7λ`޾ p̢ltf< a🧿I ؿ?=<&q?]jn4Cڡ`oQ0gj*5>y,2 USSKU-ЌS?DŞڴDZW}~7iʩ\;Y BcǻGb1Mp=_x6')TVy`!/;}EDU_.4nIۑsLtݬ*?ڊM#k)NY|`}}F3j',wNswrk;?Kw 0WF 5uڈN>HK62,+q*~y)4i'DT&rf#=@B}\DKT:_oF}$ri&JӞ2@c9/}V@Y/VNxb1͝~?Z Վ6 EYP$8&0?{xbeNHѹ]k./om }FB'FFqR|'_雑嘠H%8{6`j`m'(i2BD0 7xo}iNZrGJw(N"`n}\-{72jm,7EM*d ZҐUr[֢iU9'5n5WΑUC_h{IϥYB]{neH|`($+lm6I0o+~Y= QӦƬ3 \%տ"][uDvBaY02)F:-4Z8B`fA @D¨1j<vn`f{ ,ېZU5s",Th5PEqr"72] ;p>[-z LqĘ%c3XYJ_xH6Q7Wo) NrkIF '"Z9\x:"|5u"[avwh"|0#;vom ߉;(bUaktL&DDŽd}AWz+ȔA鈋.\R`Ӭ Hkd_ պs 㽹B9=Fds/Z =K(I!Kp r"C@W#qaƔx<đJgsCHi~jŚeGqam@YۉkEX87ʖ#J Y 4"dbq[FW&R-gFƈ$-)DP.4++Ϭ2rpL:l3,j.EPK3Tt#8gli{@>A߶Ds6YrZPB6ZfdgM/ #Yeߧ綯9(\q덳4c$4>]6Rk z;Aa9iVC}-#1sGA!+(Ek'8f d%IRƉa 9xj\ 0dƠ"܎%Ya<G[sE?k^yb䵤\K>ى[] -hiF IW)X9n@usj*k߈}!i|m s5i]fEwR27*%6޷qĖ1{X<L9qK 揙.hs6f6D<ɓP|=ӵz Xo$dԉ7J= 䲀D _a$UM$¡M,l#wj,9F.̜ `LO8)pVxk JʓRS. C -eG1Ipj L& 7Գcn0OR#]ln6xĜxhFm ]E~mw :Rk6 .c#hpʊLgP`o" !znZH^YUa|)l@ N|?:|)k &}RT,UJ[ Z#,[T{okW qA< 5\-i讄B6ʝׄY] 3 cX?Bvz@ӮΡ&wR9sD9?EagT=+ٴ_~4=mzc+/=BjWQӥ+) AAP,):Rg%X%x_eP5x+ b~)_gJB U£> stream xڝZYs~*}Td]KNT%V,'ra5̯Ow=`4z{ƻz~w|Ϯr7Onn]uW^) sM~o#/tC=p+r׻*t Xn?^G)zXܟf AܩGhDX HOz4@YgF"LoN_=}T_G:[}0aW׾ń1/sۡ=`"Yp47p2Pp'5;uFM}>b,G}ǪU|0DOuOE<u?/Yd !?a!"s;@H=vWL7IjMn',uC7cyq:5:0`VeFm͓ aGYwr0A,Rʝgt2HEv"yk fnZd2sz: P:A :B 6@ib[KN뇃']S`3_苠)ԋ,wA˚[''&J/J;҇&)@p>yE0V6z8X(r̅ܒ857P;{҈my]ھzddYbژeRafeN9}Ҧ0a 29xM/UzmyVn&)n:Iw-ί^ར&2# HjF9($ 2VF l1U<29e;Y } rH,Y)#tz @"lsCOE.@ Y=[A@s7"gh3n7]8 w<6WNkcDdtvjhS1*ϲY4#EY#'zLJNc+XeE`aCm{B;)0+qʶS#<ͣzsl?Aʚ}_1we9,Yr1  *`f9N, /Gg(DŽpÿ #(W;Y jZuOx׏DY$w)!E2CSt]tV$y)ڇx,Gkbߍ?Vl8C;2/32[GL*l[ap%ЀB~IOetn%c؇7/LQarb.rY=*ȍ4`8pZfjU~ b9m{3Ģb1n!2޷"T)pwW/d} Wc"wi@x>iKMJ/&LԔ RG9kYq>7vfqԞy;jG>O,:Ϸu,z):qX;P:CE?;WW)šhB4'Ғ1zVU(ljη( _ r>39Eα)yh 5@gx:I )y8AAZ>( 4[67[]Տ"98i1CXM`aCQiP?' 0#'"Df~aڻN ƮUSK$*JQiJI#d4,CMs~o>kd*d%&kI8u-t ^*ΖB)X@X(5 cif+"'m6JtѩɲJb'l??L̦F@?Vj,DKwq$4>!-; r` 9WeuhS;-kz] l[!]U1)eX^v0,#RGΝDO%Rܱ JY;#Yb(Ѓ3 Yj ZH-P5J\W߾4j 3䶰;^rf I41 |V$҂l:y X%0_-YyxEm0(V1 -hђcֺnbWj͜h\PpShǝe)L`Ā̳_V 9M'R}tCRG4XsxxgLN4y+c 1Qp[UQM%W 'I?:7 <4IB}F@ƨ?tMHYCE;vqtP"1 =PBգ(F_^l[&@)o (%q Cnȳ,+X!VU֣`AH^q(4!DwNShnլ^RC_F2:+ 7JgL3&ȀPc%Z4G\d=Y`*cQSF],Cڂ/΁ !SdRQ vCA#}@gف; #f| cQV c=T۲f ^E$Q>QݎE% ӉU/1cAu!]cp+#,p/jAr{8*YJ{R)&pnz1{C:~34CBBA`F-^0e@ͤ_¾S{SI|Q#Zl"ci! DTr',7y2H9QWBih^20m7SA'z dϹ UT;hlR^U5StN ${;w_&1kWdn@s/3xW:^x) ۟ޯd>oP#m jf–0p{ͦ?H5w}-#Yث7h GgPj;#Ka.0+, Ao_Jp;76^ㇷ.Zo /i`(!}"G3"Q 52!*7XLV Fژvkwfq>Gza@&9U䨱7y]>tp1_@Ӥ2 D?Ѳg3yƈ.df2m(Y $#ĄGW\z\sld#uԳ{Dyđ#M&"@zrig5\õiHu.]H&[OnU* ˜x|@FȌV KUP5{E=5±nuL*V`^HVUU!I,*O^ay<h3mS.n[. P,J|UH&GC\ˑ-FKÚbpR8L ~LݪLH;fMTvZvß\+[ƣ0!Qd~y!m:0N7ydGNk,LMvSdWv~Uxvīhlag3b=[I}[h١D_?t冩_RآAk9k[EP*ƌFYz^ơ7KDBQy^lS8~DžS7̓SrtlHȉuBfZiH$O9(pʃ^ds+Gʼ%w_g%nG'ed%,#Z3JQpb*I+5Hy[r-|)|6\zQS$ JVף._h⩾Hŏ<*e{ Je~lscm=Yy{%5Q4%8(}i_UM=BIo#!cnԝ1`#~|X7 Y)WkOdHab-:K^8˘kFT:jmllJyL_AItQBz}D endstream endobj 1592 0 obj << /Length 3557 /Filter /FlateDecode >> stream xڕZKW-TՌ̗H7ڎVĩG$鯻q.#h4ϟϿv!KyG6ʣOn,W0^M<]|1sS$Au ϛnC]VW(;shDtG/|U͡ţݙmDZ+=`<,/_HOtn'Wn$0(-s{F՜ >Wb&$rHdZb'뭮P rAIO$ks{Хꯀ(J mu\w@M/9Ls,ӯ lD۞jTT[7Y)q>mM6. ~t/$+!Aoo$p..Slb/ѵ#8رpDtIFvfz,8Q0ti^0=0^z<^d =@N|+ء*Z[]ifH? ƭk1+(ʫWkoNJU狽kv-n0EY AgdCfykY6dRHa=[9RUU:1GzG!I\,Ͱ,R[(|d"u`_D/,6+F=Ckhqy&s +(SYF&^Κ4PjEcgXG~n_ku3)znuniB<ĊT 7'p0Z^glQ qvo"qr(GMb28#8m2<WG ,V 0Tlrbx3nw໓s.;K4Hc ya3`Ҷ䟹& w0bP{eݷ2:uRc/|՘W{rP޷y淁9buc˾ƕ^c.ȵ'F$tmkSvx4,0͹z}<Xl3Cb1]fQ|)ҠkEO 6fyD,ww%;_GwpG0xQJw—a½U=iY{2eQWmDx-JF-WVfR]#)r;~N:wr7Ҏv{]h'KO3hz5}@Je6%)|0lHBJehDmSD˫,^*{1LEMip6Xi 4hI [3A{~Q nˣ@5 9<Fm |6\pU08Uz|H.3߲CԔLb/<")mH""_Y ~x˔Vd f8Dɷ [7'BGoR}9\黦mq- Q&K+(0v~8{Xh?<'cD g / BֆQg%_Ɉd&[;L$q=v֬:JWs 6hv\cFNiPOuw;Vi> a t+ΫCIFB$t/VPV5*f'K\·Dv-߉KI91 p, C80:$w% ?A)2˃ _Rå嬹+VS K(ce,\$%>lY7kDc?^m[+P_5%ќFs `ֈ*A#iI/&[ 8->KO,;S}Ly QzY;f;-⓹ m(k?rg[R`-"0:R-cf_f/X'khHU wKw.X#('9`u&l4yP]S}vqYASems ~:3W<ZS"@uO09G`I#vSf>6w[=lʕ[},>e_}oz.j*\{Ki]cQǵ%=yy ѢS"A ;dY#@$s ~0^[7mMkqGt'_e{b5Kwm7ɞZJyx~JBށ87ۨIEut3f ,a+>M~U.=-5F3wa }$w&3s5qEOy_6Fί T)> stream xڍْ6_pfdGG⬳I6FF(SBRO~R/"F_Py܄^^M87EMtSD6*}=xOn, 9.)6j32PQ,N7q<񀍑m7b`vM$>/}C~:äX&ݛ;AG3 k1mtg]eP0Iu $MbIۚ L 6`灛ݞ#|[vvG^2:S:3 u/h`u<-we, b?^rC0&;Ԉd[O4j0 -br{ZxOz7F<^KMa A$,m !e',;ޤ08#ap~|12%=*G}mJ.i?ٖE6oq&5ew 36}G?PhtZ(0`=.i,Qix?`Fhr}d0> ]`doxqRHo#i|:['׳&؟ avxÉl& _0vsGeuΠ͍2 %:+P9Ĺ!N>: v*;i}τ ΚPff}Ofݴ p &×&69f/TJ9IRG"B*c%_v悒^cP/5%P !]/fGYرZ>OK(u]ӗ}]9r@x{Qr{ͽbzD2f0Fe+HC&tl]']-s<5Ё[޽AHpH~RJ`_[h;{3HڼPx6|>/AZٶDmoLY>xA߃ii+<=A@c6)E$'` yhzkL>xs%up`(ܻr>B9Mhqr(l+U^U"Rxa Z@x!=ژLxn=qDQ26=rFsmʹj+hYdi#O ,'áYz|Uٳ#aEM"Y)=AA.u˪)OS68bVm@WKK)6~Lf]R-r_+n}fJXmdV]z\HL\g+\iT-΋t^o5յh;Qha; 18B晴 BR-Ԝo795G5tECq @K,[#LucbC!Q ` S> stream xڍZKW`.MCK˩xR(Yr( }5Pr3^m~95*]U]w}*vhݯʲê3*OaCFqG*Ϧ=n=3L8 '\pݳGx XgvCZ!{уdWuI)}wȢnY`m[XdzO.SkHxSx]2t/)2Oմ/ 6]h:ߧ5zݩ7.34P|S$xƳEVK1JVö,FnLUX}ZmAՁ1La@{K$7N׏НS+=v#/k]֍*W=͖Jh<E#Xd?Z0%qg•~d9)Go/ ~͜Iڎ'P ~BqГ$'kMފw~XT *QЙGN`7Y <-ǃL$8*GnZ< ] L?B?DV(Ԝ+vWAoID}M6  m.<֌bmgN#v<%p|)[Ï?WuFvkD .d?m#(lO1YGIed%ߴjz˱ Li#ggNC[g]aIDa$,G:^;yv$P`3 O1_9`! XtXxL%=Lb90dY1jVqԊC-0}[Z |Bp)8:};L~ ^nA`E, D<  #G'01L1*DHxx)U\ fX4XX@p_o~pݏv.n# tq;y8gY<+F s]uŌ?i%}VnCw- h:H@ m1 UnEsB&gh/Tu|nq~=Tש$]TKv^АJE?U!F0 :m'?{!S`3{wzb:lM!~w86Mt$ZMI12 W] L+sZ^eKk  \WkIp(7>EaO\6bin*nKuD%Y kIL~I@f!r_%l7L FrwSXJ-bbx@OeyQbR +%a!Zs8y㯟-`cKJjgxLATl#d9XB4AC"P0g_ }F*$:{C1\'s_B·KMkB )E ղa0@>hY%6Fܨ8Nh jC8T;z&uVXv$жW%| Oy ƗY)sỢT4 )ZJ]iOrtNQ}?pD7*J/JyS*nځfZ韍#PŇ'269f(D|I4}~0郞>V*`K8!i@bb1Wrplf */jYMAmmR 0}(vHFQ)(X RQVpT8Y] z!a礣<˽G> ,}7W 0SfM! OF>3w䑑/+  "=xM%y?4R1M/ ^hߋ@z[F" vWxݬ`R tWoq endstream endobj 1605 0 obj << /Length 3087 /Filter /FlateDecode >> stream xڕYK۸-TՈC|9g['TFF%R!)_~%j\Dht@+Z,?D}wqX< D-8"^| >.K`kۦ^T͖ߖI4{}@qTWFl}f#sur98jiԝ[8궷nk˗eRBݚYƁj^4\ q29,rNmsȁ;rm$k/*vB:{JL(e ߿ I뜯_*c]EݟZ ~3_l&I5^A|PeʵX< kmW:Etij*a젝&"0v;Z1jE0 ,hoU$ _u9L こ v-eXE'k0ix 6Vd#g;=ؽnck<g6m:p';s͉@l282d6q Z)JFյSa3,>p󆿶'sM~`tx,i4m7YPsIԊLM Xl/EmG."{Ldt c欄Y!.)"M#d9@_m1wSy,b~D]5,AhOv61\B<6FuV A9tȋ讳Ni[.#xjkZf'ۣH&*xJ\$F߆I6}%]0aә3‰8N3L]2RM6玻ƾk%u<~F o!'ʋX"CARl^0FJb BM7~N%eNO2)<0_L d0y9rNNP&!8}6\<V81x FT eԠjN0tws+S>wқ*`70}[se?VO.[K ĉ˽5 1-S Á ӎ?2 Tqc?&VB Iŕ8+RX}W,D Lc\ϣ =C^-!>^1H}k'l$߂bM#=jg pI"F]hO!V.x<@<\٫McjK"k Ap!00oy]k&Ú??_=4,|?2X*;)|=ɳDwѡ8H;,> 3ņ zff %rh ̒v+ϠWI'8֐ C" ;Rq Cpޛ0&v+/7qOex֐a n]2LIAw%]8j/`Va v.IDv,p1a*t_ vwl.+pU|YfFKyi,B`Oi@HA\K3h#U;{$Kw5._ֽ8oLr@nyϵbȰD9 e}Dp Cb{.@ gWdnڀK $OrW%˩믄k.^DxԹT/RPRxX$*SWÛ*O pLjlQ晝D@,p]wQG0|>O&_r!aM檙̎uI M}o(H42@Q{x24zL-Q8! ˹J|ьJJLʻRZd+PK!tQ7.(_,xeu" eՆa$,aѧ(x]y p PtЪŤ/`VaT *Ry/rGz'N& d !)b3ӆbL}RsG ̜iZG!h"?DLȫhx^֡u7'Pq |>JޖOR>{d 6jfP3[Y ½~l~>BԓDhX|Z'Ai،ma+ҁ;bMɲ[3>q>x3Ȳؾ *׻0oq6|9S]j\V:S=4M5TSsadPZ6ӘV|%pONް+R(IM5Q #̕y`ޫpH<{4lEk?3I ]Gt1NifZ(YPVeH'¢(L1Q+4*,B2]׬`%\9n1]B&L_sIVd!LH=)&I:yuNH0aH˒ɒ>_\( endstream endobj 1609 0 obj << /Length 3349 /Filter /FlateDecode >> stream xڭْ]_7aDM&H8Uƒ 9pH޿O_3X,э Vw?*T~3_huVnWk+Je^30p,JԌIRhMAPϯ>4uWLh߾hQ"] 𚖗v9ɁM,mNHDه,l%n:|%9j~Gy>/[<(cCLo;ĚOtȢ(jnYéEa0uǘZ0bqo\msh%Dw8`K~זW8wg,:SٺrS?sUU"JyClj*--{@~}C`+Qw$«`:Lx e\p$ejoQ-_pv DOH xrYazJ71ɼ^i 5"@(hOAu\zBv^4l5#> haz)bb(p3+x#Ӗ 3:<6A+_fj'2}[Wl2ɛΚCB(8"yWX z}X-V;RIHmEMU0n|qd1>ДB{2gC2Uqk*C3a\^yV Il0V(ZJ[(KqV,t͂~T,+oBeE;E,Di7SMPĤ uuL/)v8 mS0]hdS&}(YS{|rAjQTD-#(HG+7ҴKc14X^&wT)\ӱGWң,1,7vsS`$]c.[!N4dodAF@lOBM:**wMmdUM+yJje&K eV:DŦ˳cEfRe4ps|iȂ<+BkBFd*CEGEnB*# mG_]׾©*'1,VÎ)i3~ ~ʜ ,7@YA65}aJ0`XZC.jOn:`#֑LB nG/w`ĝϖhvfAyiafM4W \9pP;:R hq w]_ʼn`? Sy|WN>@!@ܲZʹ0@O?9<ⲱ3 p6+V^YhOED:˦(}7⏤٥p,"F4O&%EL@2'K1]*p;t1dF l:P'sFςM&  $Pl SaH   "Ue?f_lK/B#tF;NJ:-c~% 撧kP}!Q5UG, l,2lb/T_h"Jg_qVڛ̤{TXA^ m J ˑ!GgxrA<)cjW$#*Cl{o< D5$KЫt񿣰puɚszL1vD&~} n*.VR0T\L+(8/DEכ' xQ endstream endobj 1617 0 obj << /Length 3324 /Filter /FlateDecode >> stream xڝْ۸_Tyh)#T6y&`(H2E*<~^|oQ_a -3㵍{xRFnzW vVá%fq)靊J}\tp_*1joM3>scQ6s$ښxErHI )' Ёݽ@%AGZ0#3}6OHNoQ[:nW -_``msǹjM~8 "  'K3 دΗڞOLQ*sfS*!U[·Z)0m]:s/[1S#44*thgbg` xt3,~,Nx@| !gIe>aΆ8S2<}Ӹ5)<x?^oC},L 4o ?8FX . {FDAg0*Im,d C #˔:==C_p QV|Y (3nEQ #lܛ^pkh@>YT-WZLҹHI`BWq= /$Ĉm72eYD~<]B|ENвY-k1He[,] j"7[p! @T) nk<`v^a]@$c;tC<2su߂;:G'XL31}APӒ<jϛəz]jG yFن퓭# ]]*rl~Tj5#z]3rq{ nՍlY ]xXOFu#fAn5]bOh gS=hYBO7uf*M-vccxƮb$ /,Y(<'M&ۄQ ;vx9_2{R˷Gƞ1鬡sAYK=[(d;[nar+1Z{3Yf𪦬GZ f[$sd.5ˑ8\m%$JW^ﹻ4 AU]Φi8' qWvsh5{hT5E?wFNNXЮǯ=]j[rS0#̝8U{ܚCO5H CZi5GldG,m6jĉw4i{+lhz7=%l1QA* (Nd67#zBq7(-f=<8UnZp D|8O3w=7e>ԁ1g$:x4{O#j 7˧&Ҿjr#Ktܑ^cu3buROoA&Hlzo#sЕH;AzS1>WE=2~\OӴQc7–iNa ~"Ź)h caǞ>>!T)%w;#<5n v!lYrN6rYBr2w9SSk1kXC1d@ݞn8DBtfAYޒοW)Vdhc h,^t c$“(hQ\G:1TMd$+i(s9@F]m;Dx=feFHݩfJJyU`=?C(g4X8X@ _d %"*N NªdC;;A:rPO`.\-qKIx0F*!Y-^k rS mKz롷9nx??h[)-co儳[g;RN5EfATwqqco@։m1UXRʊnBp%8)JjB%"e-W*|Qqa;o[S!s< $JW/Rȇ n̔dw(]<#H@.e@op}uj.} _OYo#^uE~K0Fd511oi pz~*}ޜEZ!~`j#`b@oB\1qYvP܉Cu޷a;dD-\Z:nyҁ)Zw<k[8W3#X|U:"v\e^'Fx)?&ͤGy)kD/>> stream x͙O7c]H$))R+EJmlҨD,4Dynvx~>6P&FS&g.AބC(F(ЂؙYc1%jc,E'o Jkw.+)BY]0[ՖȁXWV>6֥IW5ETXGvENڅXޕ:XfCFO|DUxHE9XE! DMk >N9 Ssu#g՗\ a9@J.GH,H\O+%&RbB,e:T|*8 DȮ!,PBTŏVt!b՚ eth0HEFE*Ea@ƮbP9V J(5 9 HI^';"#GHJb8JPyHٰ@F/5<$ 0& 0>!iH`)F-Ks#e%z^^_\.= ʒ6cxYӽX]Ǘg罹il҄W/j9=]6VsI''-u6`Hz:?s_Mq0^z/`rÕNN/ju>6sV}KGsñRZ=Vn]!?a]LEziӖGlwϧcq\M&_SmM&%M9Y rr7!"mc[l3KV50q DcG}L @ڢ50:DbbsIM,dTViccl02ibC{*`zȪhV;g$4#9힑9bS bg5jAF H1Q@4Kn\A昢j_Wm;^S5gzpBegv?h~۫jwߓ{wήﻧ0vxDڳt~!K,'q6,NV486&lO Z(ř9u+eݩqf&TMݧͼEBf s6g>+g%N|V|F>ž .M,lrc1Xlڈw6<}[>7G,,s[l5AJ^ ź;[0nCEb3OܦRʷZaǗxջǩIE$NrF߄&L_T 1Yq_s#4-《^{ s7( Эc޶94zj?B"Č Nb)80cӽZYDc=5㳆G9 eJzMlboBU25Cs?s,z-mK}F~ȍ6K듳o? endstream endobj 1637 0 obj << /Length 3288 /Filter /FlateDecode >> stream xڍˎ>_ۨi޲rKzw 0l%/%MO}EI.mX,R.CϿD]/8=wE/|WD>*s-(yiccC\e5nA g2<_m;v};L]Γ5/ z.WzIg' -mwx_$G`AeVDOښoxS,wC{7]{%!T3#smxA5 Gep|(w۶"$qH daPummӵ@S^# w V0/z`țwmgg}$'>˥,1pKIqZ,g1d;~b4nq2f6 %Hc*m{T{"#FC(-I콜uo/VR0 L,.NQEe_,l0[@x”u !>lP?cu;0鄾jЏJ ^q+I`愈8p9śrGkƒ>$d .?k311#L$ r]f5\=^LN!!\o HrK#o(p>1/y%t_9fCDO~LtXbmfAb hygz>GH>)г0r%%o*TΉ1'Ap: #o=`88!pAQ<].@u Rr5r;|h7bԔFa;@I8ҽK!޿m"ІK2h;(bs6ïAӵmڪkf_+ѣ\4KW0SִzG}M=4IALD.| 1u!+FBKsPqĭⅴܲEVv>uZs*jBx5\J8,#w N.ftF+6r^DP;]gďTߵ`9t%ep?ab0cɜh$z3JڒQh Wߏ~y`t; ʀ9՝@ g.(Y{VfVRcZ.mBXdDr!B^nXR pw5:ųr tN=dXD (FSX[>|xlV6)mv,v~Ke);_]nlt}~>Bet|]N 98?48gh4@|o|Ah;QW@BH:3}Pߟҏs⁋}q{FJvs#; tGiaj14WĭkNW8[9= S-҂;ܭ[zt: ߏ)5dwus϶tn!%I10ڛS+f>? eS,sD%H]oRa,DO t%h:#ۼ+Y4۽oJeAQrB\Ol@M^3Z{ ynYN\KˮخN>`m~+:fG`*M_$,^_}bݹ7ع/-8}lSIr5lN endstream endobj 1654 0 obj << /Length 3491 /Filter /FlateDecode >> stream xڭZY6~hEOެs,b`Y DbO VK3u%RdbG]Mzͷ߫bY< i˕ Uv@7.}&.ss((ޔCזv9|1vFiTzjw/}}M/?vMe[\Uq5o՞qxU1J2 OSq';>M&X&$TM]eϟPo(#z2)mÔGV̾ŲxS ?aA4d:0Dkߧc= |[X7pDW^ULΓyH[NJsXhg~}G`˅lqِB9|: ,;Z L5?OThCw>#Xw(-ɴXyxY]k]kBY OQ=sKyŗYɸ=l;~>>u&Y+R a}L>LKAr7zC`p'&蹢&~算g삺t1Rl,t;(9N:zxTFMjHQ)]0}(ӭ,f]aS?z@~[9xc'x97!e7;RKk\U,C<0(5:r>Ȗ\p &A앲,?{]10ۮ L(T8 s(EE"RݠعN8 An*{F0g |XE>#1[DS[vݒr\rٴɁWb_iʼn4hJXb(%m8-drKB 'cII74@9?DgǗ*w);93LݬqZ[n=,X#׶&-!m+Xum_ByFr( P0!gLPUYByf]-/tLFΞj{:D_g$WPdhƺH`hM{@h]"2*9e"+}vېw\lq+pZ45ݦyݪ>=t'e,T03͓{hy`|s@æהF R.f17pwƍ)7 Y#]L lm|@j3dFB]ppBry ]/dp8lPzxF,W8ǩA֪ȱ472R{oDẺ^k{yh >o1S~s6Ɖ G3څˑ{߰Tɵ<%-UAaI<.@!B¥Ra%& O xjJZΓsdl|CT.8&c\U y;ߝBm<b>9k;$ETQ YT7uD> stream xڭk6{~+VM6z{HmzYg}EJrIgWg|{v2߮ʰU;$m6^VaMgQsNTpYo" i0vXr&@D5Czb V&Μiv-3\ɢ{D7쑐@F9xi}Uvhw,TIW*1oYo2g{^RjˋLTEQƣ_B!_Q} AϰхTG'ȃW~`֭ J鋧"9 k}g~ᛶ ; gai;TaJƛ+DdY0eek-~V f< o|Km^./93gæ*?!`3VM:붟?\ݕv} O3# 6VQ@:xݵy{Sz/K'V݄_oж60OH,9 c;S|nN y)aDB0@DßBi4iVRT SC-c1+JX2 N=4 q '  Ц1{N<"b)R5$ h%mA(L52w /'28܂T"aa'n 01,âȧE0kן64 eԌg{ޑp4 ذЊcۜXfI ByZD PH|-G: "0Q_Z ި=ANXqM{n %k-'tfTGO*mR i[Dw dcj3uGǐӔ?zx߼=F^ M $Ŭ6R2 y|79ln>|N')9~m<\"&ԜCt; nqR:Sk!t6<94X*ؑ@)*b$7M<V6yiڰdUJsps9[a 膱D].0or \d Cr*Tl rť%,b6CUAR T)_AD6g'tq08Wؿ^K`/5I7M)J-n/g'O]%+2RO}C\a|V{fԉ^&Ak7H R)j1F('HHO )K1*8 ^n;|Vi:Sϝ'/ı9HmӶ<|UfI{ ˃u}Ԕ `({q.GT?6`as>0QsepKLD[tN CUE*Ja"Uj$noU,NC}J:j7?Y~ y=6Ev v]i7+Bjeh׭ ߤ/|w[Zm)xj&@|XVM)jxwJD S @wA#]5*c&rmݩ4,NZ!u:<&vF;ſ>i]`-RN/)` NECK#at9S5X,<"z zVLgVHtOp5jZ\fSM d, VՍaG55JySȶ=?= h~֝ endstream endobj 1674 0 obj << /Length 774 /Filter /FlateDecode >> stream xڍUMo0 WfӾ؆ЃoZېDi%LRٷ"Rf%'K5L2L%)U5W~ael,%ndz RRٖrRݞli\vԒ3LE94YO[8H+Cͦ_^h,8ǣvY'|Ri6g7͋@8gaɺq8&6) cbߡSH!JFG3_шVDr~d]Y>ٶ\ @B~ OXV.mYQYi^{wjJh)X *%pt;㠧K [&Q\ۀr3Q~|c_#%HA/ 0dL))/g %GN`?JU8wEDf沺i1^& dD-LfXT //?04dCD69h6q6w7&l=찺grxE@OSo o LH:o;5$kӵO" Gi)PUK* "]щIE!?LqYmbcD&Ks endstream endobj 1680 0 obj << /Length 3587 /Filter /FlateDecode >> stream xڵn_1/A(Oa`7.,@JbC*$DzcSUk8q^=}uvěrn#ƩiDJ!mFťFn/ۋK觋Dm/WmȬěKE*5o!$oruW,чm}=+M&2o+Sӌjݷ`J`ljѶ;PoN-ЍGH\\BdfOռo;uUmmϋFҴ5C2xđ&~;fA6!"61Qaf|c~(ʉ)HQ:x4YDEwe5k0tOf$@S> BߦI9-Tÿ'饊0e eu♌}:0ͣ YD?TՉY}]9J޲nP~{[}~ݰMؖbm^ݝ_PV$SQƙ]l_' 0Ƀ Ph^*/k--k?AgѮ󲚏VpSZ>m.R͞;TT;_U= Ы:+:+hszOUvz{&⵼0ZAm^<Mһ떔o׌(>-Z`FF!6E4w-VS}t͇})W|YQY&te,2 Jg޴(k8pylm C]>\h ܿLH3خ*D٦&̀"urRrVW R ɧ79!uZ`(Ob(e&̞3q<:od$76O< u&ȟ@qg3/X%$DMp}  t˪JUlopecj9WoOҭG)$ C'_L <.eĥsuXQ 0Pp2N/!ElUevo πN5w&# xFWܠ{"ǂ}9e[fc}}C w-qڛn\7=h{If--;@(>wHj{@Gq`L!^BaӠ":flSl͞ q&D?u 20jDԛM%b/A%`YW` z跛I? n{}ľ}pD`CYQF蟀Zp/,܄P 5@w^xМ+~4dwCn"tuf?-;.Ypࡃwn{\Gl/pLPWENVqvLP6DeqBI[L \ &"2I=@noJ?w5:yf*Ki2р/ r`8xTq,wpwq81 8֭$4I R( [Bu}@:|D01 ܏4UE o藒JIrGA12Xߏ$`;̋X? , ^lSEǮQO rH0r%n q o@ ?a+ÝVX ;j l,1 ܖ|,Jy[ Hcߙ 3$@vb=c*1 2s˔$KĺPZ'D)$LNU4Np{„ GhNQ42a3W,ʯgrjKae݁˹nm|C)˞!w_xPtAl\p:I'a435 ӤF0O?&ʡ u%hjhMg2‰Y Y>\c_*@P1I'yʼnHKiS3We,D/ʃot#ĤAS=5Zb8~KNfvz=P/.=\Ǭ G<9ۙcO󯇾*k8 q ;"D/%q i7jƧE0unm _EDͫ*iZ.(% _51& qJ#FwH dfKU)9 2%t/ ckcL5|T Jg+ژL:6:}6'Z]y{n+Je-'D7d|}߇OI9W( >򁛮+A9 nɿzb|4Wm LRAWLsA"Z- ME \H}D3) qJ \Pˉ:Dc+.L ~-7\E[mHJg=`0+ҜGn`"ruG9oǴrvt'Qd+ov"$\dY;Cwm7;S=k6p /M: _ C5pc)<&+=] f(Te6>'ʼn%}}iCejw⟯wJB >5c~SG1~zCHPv +*#%nvG5ayA @ 4 G &Nͣ_zGB8 t,}yT]VWDP% Q~BqW䕇쐉@L$1C;$?!v[j: ns=:)tB[w:"8-]hsF%\jWu> stream xڵ]ݿB @'w凛 ;q@z@ 't)R )_"3;uV4\ggf{/X{qNFb/4@-!|fqEyxw"Gʏ ,r kmW .* ZW`iLґ!CFu2zox*V<԰ 5f]YZ b"@#R$S>X`.e=֚}+DE+uR+؞5d g[TVce qbD%ci0 \E";juq0Dg ==EAp AX ZJ#;_pQ%r,"f?0z05ꇏV̏DMAȪ6:L5r򾧟d/3HԔ1`=Ejx{S]z0«~\TDT}fV~~ Ļc3הB:H>P#Lc? ¿s|'/w](WQ ckC?MCm^ Pq:|YGh9~Ⱬʔ/ɋ|{ЫFlQh)/ɳnـB$ɛCOџsb Ae&ɗ9z  T1MnWC^ifD>Ms4U\YڸhQ0@&zR6ɮ퉹E܀F*c[rFvM?*;Ak× ?6RR?İfB d(5~\YҮH9DȚYƚYr%pq^hnn%c_R/tVm9lH`E$GCv5I.L4+mWi]%FK~X|mb:6kT#-2)5'?ã"ډ9΀qVQ)[v/ܡ"cKdHr'>~)H?o0Ѓ>т-lnuP"qD~5 $HvCGOU_1R',cd#mckfKk.~dҭ,֫e{Lv*v'oOU!bG}iϏ-x38j/%󕈄dh 88!cWBOnwv|ҭLsĈ$C[(0yV35״IMLk1eGjsY'+ˌl l^NidQ+0(vBRM|g֣'1tU7-EB<;`T-T&-ˤ1z(i8}ǶbHpBB>اf|'2f^5# |ua>rwD{{gɏbu>BF|;xS? Юק&WSUA[JJqm=3'e m[gDq+V}™&\@uet}qE/$?Xud? t 6SNY]ÃUdZz Ȟ]EA zjm2u+EfrY!jH _L!de%l2 A{;׺l 0Tn<9f2/q)Qot?Ld/B<yowp3o̦Uf8(&r43ә1 7+2z;)i;>|SGkPami؁',g۹e\;HhjzH]ծ\% XB!lQ F6sfzI0ۖ]C[% rskVmSy!^/D&͆>;֘ƆV+Q@Zpy<$ݢ,Zx5pii|,m^[)&y0_ :_fNoQɷu߾k#=д)倔qx"3 9g< `]/w W£{&_d"FHo^ʫ" endstream endobj 1692 0 obj << /Length 3415 /Filter /FlateDecode >> stream xڽɎ>_ app`w <@QDE*$5`=o+n͞nAk}UE7߼W6&UiDFV:֛GdQIl-8P{YޗMkg@Qi%Sn&S <㝋d?VVyW!Lgj{ww*e첽 hbz^堲Ϋ뾐Imv.+W `6V-`/ Cyo ;v_ZTeCI|~\W;@:ޠ W{,@UYB UjGC@1Mж[ msk:Rx́Lh/ʺiY;:Cp"J脯h&T 77][dȽi].D%ZX\E0QV| `x׌YetG##X[v'lm}~t<|wiw5ɮ}s]yVB(rq4]b  p V67<{ u+l}|3pJޜ ӎXQ4?!LX{yVcCxh+~jQNFYcJL1,4:H5V$SΪa l H+FB ۦ Q8'aT- (]ɞoud (FOa* VQSG*0* ׾'9j!-ϑw-7Yt;L7`"ĘSes{MdA'ؐdlxU .T8Hzb'ppKqE* f-Xg`33ʞWX\?+]":VI01Ns^bWd2Vz\EW=mk`u8Z;gz |'Ea]DB"[.{G41ӡUQI1|E7-8p7tK]9*Ճ}'gE', @d&RE:O`\71(xρZBg0O`" Sy\`pt(-;淀36/{ 4rq ;vZSW/[}0(j[Gfpas8mP(J/bP.Y+)Nr/9,9\+@ ;[Џ}&)^d˵$\ #ua8nFV܁@&eS1Af`{v3Է?ܟ׼$¦cA[/{ `mh̭KÆQܑk(}Uta>W N*Azn%s,x3Ϩ@)`[UAT&2޳6$^p4_oa"=_pSFHu}LJ];4xFs^|l7JH6GQ+rEs ,xݣ]U66JzE<]5ЌZQ2"%rt`6`NF8b?.>::"@Lv;Rj |WەR#HNS&~!enDŽ?}r{>zLdyNVɺl34K!/+?J]YuF#wO 7W:4 'x'<_unij D7Nj BLSYa,FW2?c[{_Vg&lH`Gc0YpY q!uD MJu.Vh_MN`%5HM< ԱjvY%n"@HLypc"n2 ޟJanQWEVe3Cŷ6QhT8<;81'T& RCVp@%pB.M @<_vE.EUŸ6fvpxdUaNOquy z8/{>CQb ؛C)[b(ϛaӧ!K? b{i ,Kj4$pzEqփ@lG0X ( X :-CEvx7{V|c08,nHFqXzA! X$rA2$` P,I q ÍCX2#K¢گi1ioퟛ]-lYT8z3+nDU4-*ɁkL؊L(bJ' }1nVVkW[W:5/j[Z0 5I~m^Ԩ#(4;q tyGQin$ cצd(q&&#Y;euqZ{bhMҴ]J)RQ /Zt*RSʊe:ĻJhRv $*]#䎏._ەvd Ym'F]\f (;gDYĈ14.X݅(~_"ӨUWQ<7\/$(R1#NF J&:][s}-^Njq߂倇* '=_(a*i,kz;Rz5\#FLT^*B|\tzKnB XOhƳv׼0 r=ɤ<,-輬Rޑ7ȂR& }Ǭp`P4G=/rm -MP__> stream xYݏ۸_a8TbE$EQ:4Z i@{aZl [,{烒%Yiї5I 3 7X/o7>xI$v!GR-0bq--cUJImҒiTne|wdxdl|*{宰MgGF7* n7N[ o`|&ݶM?#ki;Ql[NgFMJ:tRaZ~̧*GT/şcyݨ+%dTBMXy 3$H$! >Yq@AjhiXVDt4u"k(+x׸)PaaIXO Xkڌm%q*90 x.>: IN$9 @GrV(!DD$ֱa?xJQcsI30-ȏ@yW(y$@oA2G '}:P3~ʑ_NA>(E& 7JQAyI2q)mJuVÞR =}a z6H ,0r``T4Cf.3I x+i='_9Z/v:[uN fd[N3Dv4WU6kTR=tKw'f6zw pq&VNNca%KrpH p[E> ęӽLޕo'%<5ڽo0cȂ6y[; yG &2&:YNjyϝGLr?ТXT1O蒁$L3@ 9 qW824sf`sqQ隤uepH;@]@_d1X'3z`/2>!oHD/L3 ̜#57YuDV] C0Ђ0-`qd$)/`_m1dXިR&~3mRHux#+>*ٖwmP5#4mUS&m2,_sSt 0*ѻ4P"īms:qQ0N #Uh!-9m\{@9vk5`ѡSnbG#fE ~ \3.؂_p,0 ӞmՍ8b ]V%MRgb8S oh% \jA[]7s:\}4Dc {AtS>s8wzG, ċm͛+Q{yJ3*^kB=K%&I,DL44$" }.9c#)HLP9E2:+ a^3 ;vx'1 -li봠/~&a(;>d)|s*u DnOfhzg!F{mڣ)lo2 )BF#І^@W|?&q8BFHO-?N-ev/(eEUxfEɴ6~qO~uok釞X_w}ңyT WHD[H]0*tz˞\G>|26oez-pz;j)bޅ\NHm6]_cW꼥ퟻѮNxfklj-@)$흟s'HJtI2__cpl݁ũׁ(vt.qaaUٲzOMUTvy1/XL^#f浆xm@Pyt +V&)#9 endstream endobj 1701 0 obj << /Length 3780 /Filter /FlateDecode >> stream xڽZ[o~ϯ>[HV4"[lч"u<34^os#uuҢ/3߹Rv"ra@!uPwooV",RnwE.0a}!n"/ߥŜ4U͏<3P"_?: X9j'|D+4\5y<_,vkCY$Tl{,7d2GZ8iEp{zXA{j>Vu<۱/8\8ȴU}gnTcnT\ON7NZj@w7qj"*Eȶ\AH6Amc9uH{i#EA1ʕD34&4u$]#C@8"fxVEF7=h dnRUdaZğ3$P[}tEbaWK,ꊑf8'>K 1t肵tt 0S\ Zk΀W8lL@*ǬL>M?4m?l Nvj+7&*4EYc4ly?6I3|TL@ >bZ\1nk0xZC\+ ^sȡԲFsە[fwRq.< (U'uN|6$軞:+?VKeh{n8L#a?o >mQT,l a`}WX@ls,=E\rវ2^<9ڳ 2tsaJ U<Bd"cg/Hz4A?ஓ vsؓ6g[{>[4M&C/F-0:xC7c,FxNֱߵYXܳ3\^jf큝vhxg !017-:п[\G]SS1C]yh?t/3"g!aJ\<=WnXd;J:\۶\^B# Λ6o8wgIjp _LaC~ AEeY_ sk;?g|g&3W7XXY!{G]M&$ƮLWt.LSٵ15Bw ''> kvy{Y=VJO(v@[D7& AA8JkT:S; &1\S-FU@162uS%B|l1)RZQE?EE…jpϖq2ӳ1DOQ`bht">CjS>r-mXrgXC՗{P) (!1p/^2[-f̻$ =o[ Puf:'em0L1..%qT)yh;cHD Q2q -6Eɫ0z0nd{O @+4q CGP1)jЌʤݰT_wvg:U F/v^*OCb$v׊=iT5/A;WTC{#@wD\!aիHFt{NpnI~#)sU O4 c[oƺXgrŷ- \_ X$U wyOP ?`yJB_jeNGbe\ۡ * P2^򾑋FA\S~PKtk8n"]pfH)/[B" j T376,|p<±rnaaV*".NAR-tg=3GT0SK|Юҹ^- t]U/z97S%} I'oEu9-/@X{^Ʊϝ*Pnx&Fy#oʦ cyO E$Jd⌆ğ3j'ȣ䮒tlMvw$dU1F<\~Aes8B(g O/>3?\8_j|pܷ(_rzMph6P[J7ntYk%0=H,[KUӃ|`yPmqyX?7 pAQG;|? 4Ygv~?33a6}{Nqzf"x4LˆSKKj)~x$A5i؛+p>|($ϤB>j]li8Yv#"S '7O~:(} J`0q\R/O2EjBbD۠8AvoŤ%|'rWNof*ycTeIdI t`Cl{0^$K` 8x6׳:#<}x=8Ϗ/lj(h;+.O+.ɒ(oo((#P8R{pz.N5а 9%gi}쯷H t~;aE#tΗyFO\Ռs~QKi1S,_9 Iv]>o%s/+ Yga|,[w_P!6\)Ջ)~?" endstream endobj 1705 0 obj << /Length 2424 /Filter /FlateDecode >> stream xڝYK8W؋ s=d, $9m D ߷^%siSdXϯ`_ lyzH3?Uzb].>zm\iTg~y}d1*<ҋ \ Os6תkieGcقLQnnۘ}|ZWy104ͷ߿`iJaI47FX@0O~o*|%tOUE`0PWly|4[$:M]^+:!ۣ9 +_+[}%2U5[ } Tmí=L&#xmdlMٞg+mZKFbA8fM_@Sr+W^(5g˳wpil>d׮h tew'p/G~Ums]XL6da}$m*.pF؜N2>R' QS<8yD^^H@+y|쁃,GAON23A@#/U'EeN:ѷ~8ʼwm:Sr| LQMmK 9`>܉:@@Ţ$I?vz1fל,I5c0%xèTS`g3  q>~[r 9D%De ja)8&3l9D~MX cڼh_~t]eqIHEg_o޶c^1,lrБh]o߯SB9_*O㾇$vze<9y >TB iΆDcXwx D?ͫquXQ}x{h(C#n/=5sVc6ˑjTDПr qK;Ow@a+ ш*; q*-(yͤ 6^Q?Q~hil`V8f֙DΉrBf+zcCygn#wq:yJN&y SQl~ޚC5HRlT11K+K+2 1y5v9*UBsP35D8W 5G :Y!H1txDnP;2h%gع3(+Cn6J;dw<.S' M-/uz \x+"Rwf{}χ0&DOrAp*V!4f _1zwᯪq,' ?P]Zg(^Fi/%ꭇ;Pkn/Q@$ g7D1i|?JwnO]mv- {g^E '\6͵0 8ad8/7+1I0K%#P„`49uTG{Ǒh9>N޻f) $JF*jL%q~}(YПO ?"!/$Azs 9鹯op}>5mz/xӇSM*@CՑf1i[(S}eGL9*NjW슾s:'!QK )c^~=hwN>C DLJ{F@x@aiHF*L}ϴ:wKL 1D endstream endobj 1717 0 obj << /Length 2808 /Filter /FlateDecode >> stream xZKs6ϯ%UrU! ʤ-29P%qC*qo7H?fLlx4Pp ~?*IU ̕RH+nWn6fuoFjGOY-gGWY= ,o~5$0fmVa-:mI➆ umfSkZk{`7[J'ˀP[`7&Ƃgy#MroIsXآcn]dISpYݯN{iZ}״6/ }K"Tԩw\SYq8ѼY )?&zAdvUQ8}=* Nȷ?[Ou@BP)~7k@ɜM{ F#C\0ÿ0`sюB320) Qpd?[Ғ R!L\AXԵxj/6Xeh5\!8|kX0  5w72FQhx ;)ҦatnlQ0^E,cв x .`%J2X{&/ 1$Zz Rkbɸ7ּHxic4Q WgImORCGpm_(N"Ș1pD[+tkq4<複mPaAXv :K3y>#uG PpiG$4x \\ɛ蹙}9rG6E?XJ0w^K v}:_X 59p=S)?a;z.j`.M1EtsZ4+L3 1jr! r,@d0ݤzikvc9j0UV `k~&m(ӋqR X> j O:%] H9 Slmٜ11"RP2wKWՄ"qQR"W^h.VmQ}Y5F{uހ΂-]SO:ρ ,+I]%l4EI~6|ה>Dw߿d n_q 7hjhF3.u{B  )3T yy5~_:'I/x82Bs,?x;z. K&BlOj)"zƫ8@[IaI g!JdlgͩޫL M&P0A aFz¤ !4_9Jua:4DD:B`y&zD$0d{̪,8ɖOj0=L+5xŰ 4kOH|4L}a$:QN@':b*RFI7k!.H!ndj"![|Wٰ\cPŖ"kxFO'ϹCJYSzU}Ģ[ʉ irБ$Xm5,i mѠDELBKvvuL=Y]k5jq[v?oծVp&KdH*s[`x1i$ hgM[˱D[b+l Sue ga;sb_ߴ'' dII;W3tRf(xt>`1.eʝK!b}lTjE$ZK6)<[AR.U_&`cx NyC 4T1םOdiooC2uӶQ۔|\Sl K^`pd&π4u55vn萗fK񕛧nVP,.&KK^9sEŗ<㵾 z9\̨ԸP>V;zBiȡ4`zb3':-kцTLoW~!_* A1Ӡz%~†; T-Ԓ,>b2{>%a$_ Ea"ᙡ„pg `ę DU~o>YSjc.i /S56df: |RNiT?>H8r9\lazA>԰6DFδi(Ab3)~']+R)d҇{bb8鸟îwuE%BJMЅSt5~{j'nZ s#7 s"h@pY<. $=[G97';\պ(>IѢ$.S|U#N^q<0__siH'LJ'(!E&b6"3{f endstream endobj 1722 0 obj << /Length 2496 /Filter /FlateDecode >> stream xZKoϯQ=7{\.6)C=mH<]OUW%56=NnXٌh˻7>,1gY-f,,[Y/>-?G^~if5 E f_q}V0ppJ˺z(:7 t`db:&m?P= bbWgE^0J`H7D3 ;PJV/bO+/ӲBqw@YuA$ ]n)*ZЃ!Zkb&5gNkKa$W(NrWk_) 6E~Fp/0gLUȭ,K}5|p*ve@\1eYm2veZUd4kGFqsWl6Jgp :$=ЄϺgQ8\FQ1sӏ_O#r*ŬOCd+4~ VK'rkObP7/Kչ4NMJbQ'!BA!8K]avӾläpatt&`:wUz2ϥV $6DX[spAƨ[&<<% a}|}J %DӃqKH!+Xa \eeҘ N.)9wsuJ$D *#Fx@Cp_ N5 AA$9`*߅Nr4r`` 6YxmL)y Od x j*(Xn4W' F1 /`])a:jL%X=9j/0hq s",S,r;˜ 1䚷Pj_"5v# CGN"$eBUXmpb7sj#OH/@?R)=9r쌪ۈ9I E0V DZa6)i*hϒ,Vֆn× av7@Z#D%%M QiP^tGQ5 \ oUsO Fe8ާf镁;L+KdHCN1inxvEK/@ԩ&^U%{CϦӶׅ\˸PM]p*`WaS)쥘T|t*>4йBppO*HLK]g= \ᎊ3V* :}z6\2iK '7&?GRUdžd p!fi>@ԍ_^d.qؼRe%A0HJ8׵R J<EJlΫK03K1HNx^x.߉IY@8 D/iΦ Rd\<`qqVy>'3e~gu2Bhz,XR Am([X0hTxJϐ>}Dt<\uٯ7^A݅d*:en<^a7> ǛgI{ڂjז֫êXyєqfo%B(#]XOJA/㏺ͧ8U5pU4& x>FxV}De ˂L/Lg> 17ͨ endstream endobj 1726 0 obj << /Length 3385 /Filter /FlateDecode >> stream xZKܶW-OKr7wa4$'$G+=Hp8T*_v@<Fltxݼ.ZxݫRaH48殺-xL,Ft÷mHŜ$Xt?VvƲhz3\φ°J)8\IXoʊnO2a'gH^S1v#lDoWo1terh&UR>/z%Qn' Ȏ H:|y<ҙڪZ.&!NT )ox u~{)@7C9Wۿu}]k6x}i,~PW/hח}whwK{(Sr7yݞ %prxN9,uYy6OwܗfDE0tnSm'm \pp\"zo.yT&˪26 {Sp,w#MAeR53 o7]*xa Vcw\%!A)xQwT :9Ci8]ˇ*{=o#Z]} .`rH.5`J?W<´-eA*󁶁eK h}Nu$mN@f2%mx_?(@ ݶ׬j" E %AUwŵ$)C@f0kClxn?7ixK>C{j)v=dq('uOͰrS,0;l4ӲVåPZF>[\iL5q!~yr\?W.eA 1w86N1ƊxX! `XfEߖ c`bh%:FZ+P:~#0j+ r<h;N(%/(i*3 f0J&x#J\(ko8 7 JX3SJ %.[XOMJΪxgJENUkGgTbŕ+T6[Y2x_h?HM󼮧߃x#D3x)\hVFt:S=yԚ')KO2$Y% >$ >4sz R?ip{ *nvv] Sip;2&nQ0 SٹUyMwa:*EG(BP->5[ BD C@е>0u,ŖNdyq-RY띩dHCvZقSLA.0]J!T٩;iIfFpKA-BPhftEcD+^̓Yޠҥ:,_\;T%'{EWy^TV_[ )ThZ릍_$pm,9Nt^)tnbmwȳW)Pkm0/]Lg4P" D̟8$n@A±|;.$0/XPbV2_"!D؉pa#OC%bخW²%.zt z6qA+FW\TqYqB4DG?a]c!Ѹ)타A-u[b6S3˩і}?2xewvqUz;^q3^iVZ[9@B;(Rĺc5|Kg[RfsSejUcetww!TV,=\XYJ2C5 +JR_`FFaQ1~:Y)!da6.X>P:.#+)ڧn2Ѻ}/wze4Х2έ8k#x-b+."bg\X> stream xZK8Wh3DRR9$dv9,]$9m"[$OH=,w:d\l(~Ճ EIx͓LDf",L,tH)d"7Efys+.YWut +Uۛ? Eap ql04R$6;E[ۼZHUxO_tR*)Q1 A Zֲ88MA3q4q6]6lz슫e&A48Śke!(ڢZ&=_ɠ^Z( w[)o } 06uUYC #xFޡcS7a M8 u)3C' ~աújLPvFT:`vMnkȓ C<ɥubE{rI} 'Y*]]N$MU~[ܼ|C"8"QUŭ5,ߕȿtsv4t{JJYV!JFof Uޢ}:+G*AUgwpiL_[Ws`}y(y>>p,1s0cW]̈`G rB9[W{_M}R+Ҁ On޵SzX]c}XoᝡI=2=fBG$@`塀nag MMoX4o AU-rv$k4m2+tN/Wadd79ƟzݶO5z#J[a÷\ۺrw (dk=ZN9/)J6[0\68Eo&|8S= NeD΂0KPk9cJf`ϙ&ϧVJi9qx8wL%zyyUA3-y ܍JšHoށ zmO,G|@~9|cBgm.$LM6F>O옩a@yoT]VD'"xTgNmrrcb) 9XcOyY1|1ZH"or^U;,xعaHc$@|_[YcP$f[)nvaSrd;s1Ehf>qXkyĕp])yxSj0 &?}|$da|ЁRX½RFGkN*By.I棵gY}ɰTDH+ 19|\h Tพ>d3!M:ʴ"HF֓jBPݖ&G"4%;Q0{iU : ]_,FRI̼}F$=K]B ّyOs҅y"9YNB.! d-W%Z&n7.o)oCalZ 4l4?{h* ^S{QU`sdscQPt7q@#r7cScY 9E*(h xkSspDz8&crCUjQ#^8vq#eTٛMLG&yp_7<8iRowϓߺ.> ?e$7/3X3r#Q'G:R0h iv^_ 7T1?ڙBب8QO)qcezǬd&!u9%K%>eЧJc](f5)۾\GRX>m qH=a <̓M*JQgI!E5`2LWZ ) e>}S.'>B~ֽXn $~47Q~*K/Lv+P鑺ץg9mb)ץaC(#!H< <ީmgΧr8T;TdXy3p:j=psף_*gl hNKZN=& P-)\(ƜYDaj3KKa|=d-`f6o(JƯ#>쉢:ȇ0Dn+-YE #$N풁ЕJuF>BCXzukcR1^zTervESDhIݶ>oK% PE7$SSuYແ(ق OV@8~-.y6$_ї>O#.}^O>wEƮ݁K-EwAs:Q3!'k/?cU<Úګs^}RҎ/hnO۳%Z6CݒWƌ8`}S*;}Rg.L> 5skkv-@]`RGf@J1ʀR٤W^<H endstream endobj 1631 0 obj << /Type /ObjStm /N 100 /First 971 /Length 1723 /Filter /FlateDecode >> stream xY]o[7 }"KHJ@PKW`ۂ>1"qPv;\Ql@?xu):$(T]pQRp9Ȯ=#".IrjrBv*MRNu5,J6;9M˰41~c[& C\bS򌑔}hb 0lphZb+QaGD[$դ(6Bb`3V(prq2%CRN mĆ 9ЖD妎-.1cH0U tYO!J ($Q4[@aP3EKL.oք[T$Y*e0^ 40$@YAT6k50j p 5Bj@Ql@cLm59N \U 1@fRcHqT읫D9 -ukTԲ%Im2ERHҦL3HʖRjFbtWN!!0xڪxYMac8Q!BS #ify$u'c;HfRU`̳;G *7߱y= iy٣GT yE쪺ՇNj 7^^׋˥K>/ Gm`6?]-O-^(⩕}u8UcOXlrlvX٩Z|Z/.–c1Kb2Rhg_W˷ Q_}%F%M5HGkvFogN.O7T_KncMI%dwhseJ'4Ehż5aTOhxɽhĩPX͒کK0]=>}(}>p)Ke=9"}fs}Mpyt%J|;f-h7Oh{8p_ \Rnj,z<#o=oI;PP_v3vE5ۅzpgJA j/NTd}͉F#vX7#K.ԧUn`v쭒au{:cѮcXa-a,axQ}%"R^s%^|[nulǑ(v3y!k?uGy҂}LY& !S|e{PFeq(ةpt馒|U+ݰd\/:uak.݄s>IOWOiѣPmϮ}Jȡkΰ1`rN8dq*9'5!~e߇{&/؏_I S*cĸOƇBx-:=XN&_ endstream endobj 1736 0 obj << /Length 2664 /Filter /FlateDecode >> stream xYK6WQ L+D=h`69`,l8-v2j'*VQL)Hֻb&,X~ӫ((_%a>lT'&\盷޻@׿~zE`0lTW.8:.<1C:^`]Ϣqr"PNH"?X6^]v'/]QWqTmQTJG~,͔5ᠨZCIiamŏ4j29oWoMWe2OVuYָ~j]H_8~\YrEYQ=p R_AgQ$.L=C..5qt*e|)HJDΓf&9tZ8L|u+\9 -t͔^@q}. %v'۳` F@$rsIFHݳ *?MqKWj`>k"| . VXxGhRH) 5Bn/;gjhWy | y 7P}5çؖы-)Ki\,/Phըkb4LKSrC2c煩uW`: h4M|(s䮗&"{pqq?Cqdl4jYܓv޲^'LQq11= I{]Mld)xY)xIEK%Xlx%0>dw.N-VGnxӾoC(rϊh ˆ~_C0!pY|̀l:]NL_1swGhWeO t΃p5O܆nSnƉe9۟d$ ^ HQ^4>~!?_,3OX݇ t@wy\(\Wٌ͘_ly! 0.hk`R( 4Jq?Dq@ 95vM4m WH쒙 zW'N5=ppv3ЄD Nru'͘ZNT(V T:&^w[# ^C5A4jl"w4$}H|R3%d4?ۗmz3!/k] #)pn $R&nRjeE,fMqg w.ͤjQBC=rQm XY ν)cR9o_ 6n;[7[5 lʺ:ѮhWƾs ﷺ9gqP? PtMˤ!dwAW" >Y-WI[O`DŽwAJe[lZGDb]NAi>aQEHN of sLZnǡ(p|؅qZ,8+ш)+o*dx/yGw,IB^NN~1p L齮Z N;L8jF \`bO? p ^x.Vm,GDΜ-N 4&vV;(oyo>tYDһBdRP Wdv8Hvҗ -́xzmQ:0[eRk!4U N '~0m|094amwQ-Z!2+ڴZ%9ڿ90s,VO7CC$~mSNBoJCB̕TPkBKODᮺS'W7l5]% ӬPO55E: jj0YCp""8xH>| 崌ԋ\l ^{XЎ]/?.Lj׻7}M{wd_ƖaHƌϏ6W >Pq)iXṩ/w |GS5>'jF endstream endobj 1740 0 obj << /Length 2657 /Filter /FlateDecode >> stream xM8_s*\359mmjjldKN'@dzb$lo &won?&$Ln67"Eoc>殸>L,~?78Ⱐ7zKι5n'̈́ 3h6晛 iF5{3j|IeZx]Ez_zKk,;:ʵ'8T/ K"˾_JKVɖpKRFhf<˄)LQM(D1 b-R`LjHשRfr[#>j Aɼx^>mYD%u^U.0bCUڪ, 7"E~Ed~dž4Z#Q?z _f^wTF9Mؙ 2/Fhԛckwl'Xeoe;엎a* 4qh4,7;渪䲗&7p +Md5%uQ`k7 _jUQɶZ{̧ ʇ ߘc6$bd>@X$ =ׂ^,fKZ-ؓ/b>QَOF'쀧De].qmj/ XO0Hw]=POvj}WV~ GOMR? dq'al Exy}K{\r`1Tl 1"rɐ}k6n(ӃxnߑUa%AF=>5[?(YOQhg'_TtPM~: L#|Er3eaúTkTbI~Ūaˑ4baϢ ~ `ѠVyE19c<~ !~tIS(MU/%0ư!eG yyrGOG]T]~ɆyG̏szJV.{:Nv{E"8l.k'F:?[8i}$#b+03LS]^GH~nkH m2m9dqaP]{D8k`v8iհ&PHAg_ rij}D}v<@HH [ UZ,'Ge[$  pv13r\C^l6!~ 9&1l\25PG6OopoVPrə9n9,^t>gGH>lұ/yYEޘg`|{fj nM엮 K 7h$Mw+\Ec )) y:9t :\iSu1{3#TZR~|{ l\tqxJ[kq/R:3$A? .Ed`HAl 4<Ü~%-'rRȥ+ 01}FCս(W!_T8؛aCSúC:@Zؾj>|HcG+94Ȗa~$HxӉ{BB NNɯKABṔ"jjMZe+l[4#"3&7ĵCvb?ؓw}>>鏔M;k{BY9OG5fW9DqjסfcM^P^.] > 1S=ܽ:dA endstream endobj 1744 0 obj << /Length 2451 /Filter /FlateDecode >> stream xZK8WxN+c(<2bږm!dHr:bYE,d'K(㫯EM8;- 3q/ X/O~xއfFٷ,RBemۼ*Y)O}<2L \0 }f<(NeO5݈j;7Nkiݹ__Z:꟏ХS!w[NXyWL)#Pk+DǴnoT>@}|I1|Sh[W"X/yp-b_g+74GVH$XhE)Čam5Mtսaݫ3-%gZ1#4D)KY_8"m3\FF,7I )'ƽVU>dkv^%Œ~jK OTS˺!-l`\k"6!F(?v0aq[ 0q&lr5 'nBҒؐ3l{+>4TzQ$5S\Ÿ?Ok;i`{tSsJ uȝUY8tyID(6*303؆-'mMEڎuM̽yhƵc'K /NҾ|.a]xL 6kekPb>N[xp eLF=9mѰZ_ƐcvM$p00cU8_3svz<1q:^UCHgՕ#ѿwsenX6,0AlamCv .C[`NR3@c$r Oy9Y\'<7UyȼC#ɼ=@@걋mAcmey{:W#ɶhG B#uL4jTHVy$6 `:4~\B C4HvͲMw̺RP ;S9[ra!q+L$^TGSN;S,p3tunȕ0W̌S YRJD R DbД)({kyQXL]epH?,؛8k[$A[@ܫw{D2$e 22lb",0g֏QG2]Vl'#,ρY$J |AqsXhXL& @$n\ })v)*|Kkdr QM4KoP}Q퉁L,m+{% y{M VB/0zM4TЋh*lY}Sm=Āc-L^"рBbB "X~W_r 5Ѧwvcݳʎ0Φۮ]#9}#"&_ <4LW-) Uݫ^pk~+*9` (y &43}WmFt!Kwq , XI_ n < zxqn=ܽqW2> E1lWƟ*"cXUDtY4͝>=ޞ ~b|EU?ڣ9@}J])I.qkٗ RgHgD/qՕv? Q J:fGkIɸLFu pr-i`u@J$U9mkE$3K!fRoE,:,\E<4qcO`I Ϻ"/A޿ꒅ/ endstream endobj 1748 0 obj << /Length 2049 /Filter /FlateDecode >> stream xYKoFϯБFm6A&@Y`׷9RbXߪjL  j:^ݯOw7Z"OTݯr+dJ)d*WS,۟U7|4 iH-īV&ܾ8WD tXX^Ưʋjqf(3ENk+#ֿ-5V: J10 ffZf>U͗vZGUeQ;˶nמ|ܕ{O]Y}_7Һ-bZ$FK"r?~-NnҠs$%ļ4e"HmZݹ51E*7V٨}]wl=l~X6l`eq2RdF6J5ޫ]Izl~|NPFJmd"I@Kf5Zm$H+rCn%3+ G;O%w(~Lۮz.yLi=H{<ڵī\LE׽K*1u҈yWB7诙3F8|׾y:6lbHNțBot&7'j`ɡyzաnDlF#sv#n݈/*$M3$% 7,W荄.e/+=:3Qyl! M؂ _T|10@x&6Mn]{f\ 턷4ZÝd _.f6QVX/v1`6?6ݼy}ΑBҹh;`z]ց?8U:ӭ sUh#fU Spq;)vj,;_ݡ^Za2--N3 or"]:,qIAo'|m--~1*,\ Dg!տN,)i]]R p0L H z)V p1Pz㿞SGPϡr %1~)0M>=`'Vv2 W_&$  U0nt9ΰdF}4l!Ze&r٣v螗(58KLa[-)bVɍ cXft=@;noP,;H W,U`ݢ1 Tn߱#lC`ꗐv k\L 04LDR==CE D&vpSh[V8Bv یa&K]}Xv/k0Lɕ?9T 艋"3:C=0sH60EyA|' 3qN;Ub`7Csv`vgJkQz{ʯ(Y"Z-9 ϭJ*VuSmv Sh\3)h/%MOj kšP)!)b]I΂zZ d&~}\ endstream endobj 1758 0 obj << /Length 2540 /Filter /FlateDecode >> stream xZK۸WH[9d<{HD"U$5٭F7(6[\F 4~.vp7Û"]dADaqB -~~ߴp!_EJJ̫;x[7/*o\jxcź3&oi˺h@T kiJdAS-D1etOM1ڸwUVs3xF/-M]Ul_jGϻ2oIED2"( ЮWq+UnohPmG< 2EWL{QRkKs_N؎>qgK๣,6H[X(F,cc~*;hQPA oOO-bH!E%K & Yp)v{\+\FX g +\.Å ,Vý+Diڎ&,CFZfpf$C`X&#`H ]-!-(Q<t+6ĆhKd9 96`$Mc* kܺkAc^I*11埐(G wݐܓƄ= c=4P m-dkbÐF|ii8RToeq_/闱!ȱ9&9`X!=Y ׎jgKT;[ ^\䙋j!Vj-U;14dŵ+\X>'/he.N:NPb$Tjw̘$)5fO!{$TQjW$Uu7WGAnMQ˓cIe6ŷPJc?Nn+%~Eď&~hFl,gn'Fzc{|md DcAsc+l2S&V6Y#S߸#]s׎\ǺliuD!{,_/>E[ހ^z=sOf1G&&@XCYą@<_) BhM+<Kvư 7}5m{k !]puɺڻIE90Iq^TN;帡]*YU1$-g@G }U=![Ɠ/xXROv}Hjvl<lJ8I .vZKOBa%0xeޙ_8[HU$Zfp%K&r.~'%쉈pc.   onXJDA&4z {ˋOex|+RV/B1+,Y(Qo "Ka`Z"p`^1ו^t|ic.b$;[`vg(I3' /jPMw] 4R:eϣ 'k-oΕ.B"|.72 8cLcg >T9W"RA!PQp Ё3Y-9\7̑ /˛0%}]YTl:p>v']_c+a\TbGEE |yx39 ]f᪜]ڎWhϬUĵ!2>KC'{FHj(Oe7?Ϙ@2FS˫N 3Oj.n_jJk mX+X[up0O-$I#3uEyY+[/c \\m=%PMrqD7YK;rM'&OEK]6`oJQd>{עX,3I.1F-5¨+Qo9.~FE_.Eו#^ ؛}5QL,xK"'t_y?UU_;&2X&4>Xk,AbWљ1QC*H/>9ٔ`";Ӷ}=B2pAOM)3{S?80.vo8q Xw*Ϝ{]^m;~3SJH3orod(w\w-9#řr.|@ ]$']CPvD:= ]~њ endstream endobj 1773 0 obj << /Length 2482 /Filter /FlateDecode >> stream xڵَ8}o+/ƌH4{;L ,EM0$*F#U,lI&/V"u_7Mp/#X7dJmOy y}w4K$ᦁ~R@|!$<5muUI#ޗu1KN0q2dz\vEQ`φ^*I7ܗ[[8Î'!@,.8/B1 :y$y!045[TȾ홇(t*ؼmՁ ei7m{X+ed<;0LJ"␛5~fHQ/zWc%:!g*IHdQy}#~mա_CદHbh})Cܴ&C7N4$$K3EDL00qJM_& 3B{ʢ47[ZAvVhzyk_uQH]^hӾ.K]~ T 0A|lP18wC9Ow4 E v #?{dp~ZN*|fǗ K5 UƣhN _X# 욀݁`{jрvgfK2yC//RmwVȲa RmAܝLc((yq6+ d=0p04e^뷞.|Ӎpk?/#}A p؝+|`O8\GDIyg+B. ~0 G lV*`臗`nL^ys6l2/=x?=n&/?xdV":?M&k+ӕ :/S-b~zlLR~N) ,1MU(H[iO>~Z%.\{3M-)0z] L;O,* 砫[gEa'iZ D0 r,ղ@v800 lj< $֝txg2[4NAO"<\IPCC\~G12~?P{%1~]nK B?vw^Đl=>vu_WJX%Xgz H*DMiD|?7+7A]ϱ4\FBDk@^"dvg!ܾs+G3fD*J[KlV5Pq]24vc: cTg'Yrc$WCf4yq"L}=%Aj{$a=I<]_}ΒP{/`bAd R4hz,$ġv^oy $_12yL#)udLeѴQ&:C8?Om/m tIзЇh߉HH$3 y]Sk& >b(uĿ"̯`I=M.B!R-%ӜGnKsZ%,O7C[;0/ݛ} ޚS^=8f=X}E/Aj%:+ˮvex׍GH#7<_KE-$b6hg8@> stream xZK6W 5|JT,2A{J:Զ֎l:=pnb9&)XϯT77懯{n$OMzs 6ɔɴNto7-viS](=-ur/yI3iOZGalt[ޖ{kFT,w@3SMI|io^ fU]nf'.gL%.qB_OO1OKT:>޿ Wm)yܛf7Kx=O;㱺?|k%ٵ W=|D:iںM GfhNŪ NU7EO?5vi#8QHRDbm?W_o';;ݙt.7cݽ.Sc&RF ٗO8m-f>qi,ڞS"U|ϝHJrv=Y;wN9g,)My\R?2cB< $BۗWl9f>(VtЮj3;,_63{S{',Ko@pI2q2>~%j?O۪..ŏ|Y-7vKDz/+w/D8?g0%AU9W>䧌u3qt8gnJiAV=f?-j/7?(ޕm $z#~4 p07X5{`6O"˿5uӾ]NBpB8irw6+xN:ILKnM˸08vzS.RDM` 3N9ܴsK:Jtc-V5E1!*sؑ/s8|&jjiA5ih@eWr$! y@U5D>SoNѰ&hnN;q &tMKyPdWU!"  O( अX$E+ELG<( )I &P©|E^7WMۖ+Pۮ&P&理M)N#M)Z1v5xoF\ EH)Hh슇j ;n+#kU:IMis*p&RГѽoBx%r#ВĨx0zc@6EI"|Jg'L,Z\ja$K/Imt{,Te%eN䐓H^ ·!ű1<<* 3MXmFF3'SN\HT'Ud.mN^A~{%d2,g[,۹.-|!|ɮܩ[@oh\<@1'ϧ6ѹzcN9 !^!d~U"c3qN޺|2:un9zѭeGNy-oc Cwp*# %Rz$XfRI/}''>66|XbP)ǀ~ebhҋ5WrĀ#x,\#l0LA@3w}iQ  k,~J_ c̓C?fS uF%z3WHPr^ ݚNl0:D1R߲gH;dd@Vő Fd? WHqc)@xND jeCdQ:FTC_ᆻN'X&E"Oa!5 1*)}3TPvM[TU{A{Wu";̖شcPx 0WX7O|_dYvj!xllǾ2.~v6 tB,ƎZ7Śq[saS`717 yAB`xO-g۴տP2}H: ×] mēv!\Lq~P(r7:SGS-Kzte )~:e>rlB3CQM+dfqb<4eTCyWJ w`Ւ4fKŒH1a@Ԣ_kպ$*[}b&w-c,rvb4_b*[Y[x(!-Y{}183qs7Vs hX f+U`y5SgDŽmD/mp M27eKĎ=ǝw+ि-eHx!@{ 2nCݗE' &x}u(V"YA{/,c)] P,R\ ɼ&a $Uf3$AnlgSvWq:#GH;LzI wT7DDJBU?](pu`NWzd 1 ח8"1TURa51!z5|P3&@%ӊD?'Rƺ,_ocnx)cOǁM_Do=7KRnntYK$1/zW}؞ZwxppDI"/`6窬KyWMkQbk\={_$7ڣz${9:LX gG[faHo^_0+sQK7Nߞ/so]^Igf*}ܳ bvYnG*,([֖Bt~ 2if _b7-,7$*V`ꮨdn={s9;x g }}34<+ Rڇj׿112XA -[Po$ x_WZIYs*DG 0*kI|JmnY#f/b(yC&N`a2c jlO>3/c!i⧐ {|?`#Q| )7\*m|\sBy~'}(7p([LJ?{6mAjMK>sbABx-$p>WAE endstream endobj 1781 0 obj << /Length 3134 /Filter /FlateDecode >> stream xZKWPfwt]؛  LH<6SU͗83~ɉf?&Y?q ~ُϞMgFMB+D,޼felԕcz{~範wUN-|~Z+m/{zҨuJDݑ+ʖZTuGP+^Qu^a-~6G VF R2Kl JvzE<{cG},BA&s,"?X7ׯVjdј4PBW?x" Ȱ]zvX*BΦԛֲY)} @bWSRɔ<]DTSfƊsO}-I$2ڎ>hX;q3-DZFwjn[Ǽ]"~a<~Phlr- X:i נc%,դ&GXz/كhnQߵG+0 ȑNJ snSyQڄdDC5 ?LNcG;/60'7UK_4?4='  mb˒[B^P"ʂRVhAPo9KsnJϑI__|O0\[^`is /&qR/QXHhvvd$7sPsxyJ[7X_X+B+d>XwvCP*Y&@)@ߦrzt; plC:ۉ]>zQmyeUlrۜ^yvaz SX3B B[څՒ< qr wlhStSlj87[@b>Ö#ޘԌxԜwb#?∨@P&k6Rc)8N-\x*!Ocs7[ӊQ ṿF!>F.piB9Op+<`=J4^a>-VusBG+Dz]ڂNlM8{<[IԌqsuzթF#ڧԃ9G LʟD3К{L#09&YY?v".JGb4Y>s}9򨜴h^X׭ %K@z2)#Qh>,Slr&VjiČM1(-*w63= @Пs t\pZ -! Yv5##"f Y)d,6\{V uL!CG7g-oag}&ROŞL0-J,G)(<]4 q!s? &*"0qء5Ic01z2O| &ZO9Ꙋ$7.ǧ,7\z*h NFAދ4Uj.+GC@$[H&u!C2djZٮ|!h M?X|,w 0M.8IT6DPGw@*=;]G:3˱TvvW?{cOd!ȞGedR}RgrMv|_^ _2x[k4kdRϚK-_?>Fwo-ؿ\z1fb'L2>If;ox]2̓OK _X7?rDׁ%JL"0ltsӴ RO+8w-ۮa[AMK>h\N7F{Ett e`>kW^ ⎿=ҿ0P5&szn\{Nԛͱ#zOl^FXtȇj72(pYgL⥭gB]ui (%U@|@{V uBW=W.YUH$:I-pW]ڊ82x!fS}*(oɌ Zmr eg/$lW͐r=?}1MPhSQ'̢ibHs30T3ǤP]8RCdcXlv 2)u'2OivMҧw{j޾<7LlA';ǿnY3iOV endstream endobj 1785 0 obj << /Length 2638 /Filter /FlateDecode >> stream xZKW%)tqFAH:pI #>$G덑"p+e-Ğfwu|^h`oZ=v~ūA8vByFM('B64JS"N*cSkꭒ:P +B E쒴o:2dde2z+q<[WFN}p$==EIA%9/J<):JLdâק.ϼkT|CoXRT>-IyUGEpyccsG}SфM % z*Ω0}90"V95FL8L89a@?Zv$wɩ왙fih2Ϭ"bX#Y E6H*W O#!LJX0K,ms3gHM2tk-`+ĺ槭 :%$|tdLeV8]rx&¥y@ ڋٮM*<4HZr`)9ijY ybD^=ls-ghPT:cZXVVvf7hjg`yoRyZM;!iNiHJZzD%5we^u41ڤIԥ5ҶOE~OjY*=Y?"`ֽƁW>~Y'9% !.%IfWȅ޷m6kYJLH)VRfR20 6~gh"L@9LE͓c0G3sw}& <& p9i4|rnY!0s 1Q*Q“N#h?P !yK<Ӽ뒶(h!4?4%rbzБC^[ >bb ;Zt-3ahO"8 @MώXS@蹻ť;>`!NN/rZ9Aӑ'ZYMY6= +!  'ͱ/k&GYg9ګγEP+х#bL)8uє 45$%$z @V!d@[D @7 xF|þW?@yLX,A9KP#Uq@R2Cs & XߪIJY'n#'"ȓ:#Gim$2*L8*HV{)괧e! )phF8F2ii *{{qT5]OD8yWЀt~h3Y |JÀ|&vl}ǭCE]*bL5IB`%kH^rP2nX'Si>dcR(U0@WYt<@ᔓ zuiKɐCzԳ&_=@KL67t/d8hL)L[Yn`t&sGT릭rh5^x{Ldۿ^ Nm;Sko#"cC)z{d mkG dR`G>L8Zˎ&ӂETrgC8tM ~#%>|M*2d[{ņ5ʅm9̣aqpFbbtAa ;k{.dKL?МʌV90jЄFZR`Z Koo E_(4~875IJ,]eh:gIf8ϗND*4ڋd=Kn9*]O#aV?(hCOLn(D{YR3c ҝFñm3/K5m YmO/C{+ErF6O~[ \_ލC/>\2Hg}$oL y؇ ؋"10 endstream endobj 1791 0 obj << /Length 2447 /Filter /FlateDecode >> stream xYKoϯ%XM2p l;Ar5]drhĄ" ڙYc{i[q2u"sAY܍pCХfF,b8Ӏ1_q4"0 ` ԀרG"LSv ІzTyɲP%̹tbتi( ur!m$Y6[AMh@.2l$UQ ڶ``}e  Kd SŖLlWDJQ/6A2nvMJ>L-Y&zODq:(k`*j9sڙ SvDrif=$ik,ߒmlcD?=ZPj~2 }m[(Qya '=U1h;L0[&ʅ0؎Ŀ,+n,TzYcaQzt|n[qƪ2 ڂoqrCЬ&ڂ6Vڢ9[xvrkq$L.b9LWĴB䷆4|X%lcAUI&',zI+C$ 9QƱTroYƩSj n)O4v9a"',}plڇ-+܂[5]98vT itleE>cwTٔ.T'>"[~$?HJ(vThpn8s)^y&3g@5y^؊)or[Rü`8PAUHX#rVًU#lz?DL{"PbJFX8S2 Bǐ؋14*VawO:[p>SaFAa>a0)TuɶQT`E^Yp%Gs!@h$kPǢt3C姪$&>Ra i"Bwui$f#r,RKa*T$-{ꛣʇj{l_8ϼxQvW~Lǂl=;glͬ,u ̣3P1bW% X5NGSK@_1EZXCXwn ᷍ ' /GaФV5˻?< qZaVr77K H4= ,qz&ӞG)/S BrrG221ǽh^cWBsdӜP#{Up[uhĎP b :pFsZ̡KJP2c0bG*NS+ohj`$Am e tFi SÑZ9 .MQ({^@f xs17B2F)t55҆?kD ~Ί dz4 >jbFd['*;4sl*™Ta4LQrw'b#@p6|pǗNTOǻpa׵y_/y /un >} Clp:Q1e h+i-`9 dLp"݌Nd q B3 Oͣ@N &ӟ 4[FIoBJyl[ '% рb?Xɩ>n_d `ɥ`3+'g+'>J<̋֟u5O/]`/^Bk>AH!upݩ#o< 8uRP!2#7&ƀ?JY[ ὜(vm T9O]YUkD_ډ.=X~DI~ xm&$GvCO8~tEf֞A00ˈwy5Ø㘺i. %K{Z4pݑO48I4ON/8Wi]kEj53^%Xd̛][Cz[ z/.:R2:H4:st@C$Dt"f!P g/SQNVGd$XL+eSN٨n f endstream endobj 1795 0 obj << /Length 1721 /Filter /FlateDecode >> stream xXKoFWHf$S$}\RI4S@R"3;KJvq~^>/xx|ꝵ3VΖU,NfLb\>D|!4ћe]Q]*6s%"ה>oLόRDjqwsoMf*0,e6 SIJIL$g6nU]\K kD)6F]vCE-QR@*` Zf*ЮT ΏnGkdʵ@jPr%,6!+M϶qBJӆ%$^ϡh9n›^uFTK+Hn}Gq:<]Q>t|}(#]p-ʾ^x6/r(uվ$pZi)V09js?7fW0صv/>-l <@{E#26K3{G! ;J a#fYG※&υŐnct{ b|X=&is7lBz54> Uaẏ^z',aVF-A+w]Txf_R]ѹmw*9PK\FbUoê%_U tHA_P? |E 0u?qѠѮa@q2r`躠3 '/6"6}/E"Lwquˏr.R5qbɤ6͠v^{sAVjv@ &s^ )|0: 3rdAKL&oR˄l5txqE؀aK7({apLz2j:W;a{)||#pV5&FɬΖmmm<j0eqC 2Çk׬,kW0'saLmÈ>\AV ClY+3;e8ɅZ?r8i^=8Ps-<q:# endstream endobj 1801 0 obj << /Length 3349 /Filter /FlateDecode >> stream xڭZ[o~ϯ[)b҃M6"q=}͆"U:wn"iq{ٹ|3dsI6_O>}ͦ,MibMTr>l}P֣;nyͦJ7;eZrԱ[<8<\]/_]ֵ_pve]xWGGO6jȁ/3!vĩa"N<-UhUWdLMx}=lwƘhU{ 7ڨk*H6QzNY==FLAtR[GtS Iƭ.F>=wT-㉇p[x'l׏V";qY8´maBع& +fFݫ)8xƮJ_ nSw2 wt>+'5YB׵CS kXmp ДG鐩lm@4,:#q /TzSJ uVF_UÕ/vN#W[~qkT7|}!1v_5f ɡ)J/i8e~FBj%c`)ҩwkk]uTYo ~ġD=&#j (l1||dR߲Mؖi[Xp"8^Mg xG7xGJ?M*;7rs%KUr%Ĵ(yPݞ~)x,fs,Vqkyrx5"3~lC/ee;kM~[}<=VS㮘3먴-=WoЎF0 |NlSCS(!ig+"+8I=q~dy 95JYt_](:(%G쁃"cC&Jx8Q.OY0N0ulcYMnbm̜M3jT|F#^pRG5Cq} mGGV7·E" {[0x}]Vw ;+4wHr ؖ,Pu\ThS]^IA2H#Ͼ&`EP*b!Ժ`/*8"ޥ`cpmKh^;)4"w5Q{ $y֛FG,F߂ryEH (9d{-:KkM/Z*ƑB,("r;2(ppkn҈U"it'ȳ&y@ ʊ.M=KP8z=aU VH%8|BTFR ha[~u@ Iϧf<>e~$@fHx )Ǟ!anfuCQ_ Z2 txƳ8or(x t{]㺙Y>eP.1]8[kYDrs.-V>fi˅UcDwUj$ yIGJ\|ҧdlvl^eMOrTӐ(ĜVþj5H>{QNavNXs/*XT/+1惡zRd2:G)쌖 ¦6z/-%'Cw{_,@ge,U *XQiF?O'NqtnZu?#c4sF'YgƉdr]qNȅ[VQuc3!-hJYC߳9Sz_lD?\2 ljq ̰g.s = b^]8 dٵ"4tj&L`48K ~O8;F9*ީ2Aqn0m΋ M~<5pR'KәK XhdZHxITD|Mwe1W O| hɷ-s-_Ma Nb8p`5q򌄢Srt WW'A, Ċgw(IG ?:@;F7P9%SB>q? G%͐YDa GҞXo h~L-;7Yb既rٵȞc%j*⾖XT/SK\agI$jO#^5Γwd(H8_T.;'`:V5Sٰ*dY-QJorx-ڧ&O]<٘8C?$"/`9B+v^Ik6NHoE R!1~/)<"]2  ׂ EF3"e:5^( O4\ד*6&U+TrN$jp56(z p\5˷/Deo/ɒ HشX#Is8:frTpF-oI[u_ulKkߩ'7@F A7 WԦ[qHqg]1:.TVd+IԤIO oY ³/$%-]MM0c`e/)4uD oy f3(C6B4DwC- ɩ&>/C ſ$3a$NdIzx97pbD9&[y<{)/ _ng!Ρf3Ep ~ &KILpp!I4@)xdO61ذwfaORJzs:0Vt(TӓH};{msVdqa 1+SUUCR/Ⱦv<#yc]iiuyZvt= D~yCvZc (R_Eˁ 56Ficr"A<-[z\I e X)P$A_]_ 9= endstream endobj 1805 0 obj << /Length 2546 /Filter /FlateDecode >> stream xڽY[o~_1&񰼓  M @-yg4!ɕ49C{Nju^<$Ew.] ~^1FRz҂2 []V$) c\%Ǭڵ0*y(|,ɛ2ww =ruE]_ WUJR5HWf#ItYA?䐦D κ3;덤4{ knl-r 5c-\ Sj̏yǻ|w̌mliFNX)la ڼ] ?s8PG{ 7U݀Joo5ڿJᢲع(!jpB+E-O;of~5Spd=U5 }DBP#^*hgj˯G9~E_ֶ.#H mX42o/NkN=l)NnfY# k9 uNjkT6Ls;`7z776) &,K!tKH;{cX<ԧ2p+|ۡ{ pq\bIpau'aSEoNpp6FEۋ֏S%aL_ p>Z&" >B;S"!zӅ.^xKs{GvE'lk78B_~A P $qā {QEMm j7y^^c|2y>!+ahiN n`E~V 2UrQ ? rGVKQ0_9 O,Q^`QmJT X9! b?nñ^+Ά/̓/r6NqC'ή{AY~{T*JYT0㟠=N%V\T1rb8PDQ{1f.3iN -"R9 .788//1\hƧ ];_2>rD?[j~4wq&Ch !XW@\v 0f]K 2mkg#5A[ϝFyL(l3i ׃@|̢$v4&?_~B|n'J]a ~ma=W r5} ,镏n`^[R($"/bmlSjp Rpd7o! ~@k@1sbib:94"!Χߗnm젇'/L ,<z Pӧj;M ڼR67WTʾEyG\u):9j3l ~< ܡ+_xA8{C'f{+\i/7y/|#z% O R ߬ sM?.;Uޏ:fH;Z I0T_زsM}CkJ.rIzɪv´8(ƃ(iGt{֠Kz'܂!j]5y/8da5x2ASaTjTI W8Lem1ufUN 5b5E͆P}q\Yg*wwc^^#r%&f-3 8ZMDj^4>]+t#R Z6ɡ0pOЛ8w6y8A3 \]=VhqK Sq^mJN ;Yg--(%xG1gC6kaظc^^19;!GkWMjZ=s@"fc]d]XLSe<"2byd6 }Qhph IJK"QצHYctqwGtw}P?T;hnҮ!C^]Bb{"|[]rPI]eK>qWs֓ ܼy7qrʞϷƞ3y .4lH[3z> stream xn8_ S h =l۹mAX3Hr2A*I=XŦbX'z~}gF0+iw|ᓉg10HFsC>\;ʥ*~0L{ >|Tr&# ߖ C(T @qk,_,BşU5jbiOLa(%+} :&p)OSX A|2e3|&ߋ> 8l5md (]yPTmWnW{pr=*H/me5} tPoZA+]qXpGn:l^ܙ Ypm&B4WzO-e1=g֞-nXJ<%9\؛k[R)5(ipzO].G)¥G+ $.oww`"RsAnNW,)R_8WMjRy*YY6q !b m R}ˏnZhts)k).2}+xH\F,E{n N2ɪZW4>[x8]Oد$bOO*`o+;eBΌcNDLv Q{wȋo\KЬU%j$'kwȺd^WVh;CXn˟Γ~*:o?wW>>4tUxt2CteaS&;K01 VI/ت;%=;;B0:# ZZGQHږ mKB{+R/XPY%.8kl6,0$1昿 Yx89.Ypl xXrc̘tV[g6L_j JNQysL[00#9)"$>P2 @KƍiQsQt+IL s~٫}==5/*m (ZHjYP% QG5n0'DU0[W9W3\ûM+IA'ƏƒlW/5-~NЦ8qiBy~šԉ?GO S7R7ӽ={qCI5ʋWfʭݷ0ԝ߁ID& 9ys;>D7X!bBIB@ws&o OompuG!=C&?uUcTjr7 7),C/^dv4;毶BS~W{_}` l/@ӱ7)UZ7])SPjy}?d (YXβ ^,4c45 IV\ %XYփ$ Q  >7 mn퓤DKi'q<}Z} g\ g/P]&Y zI)ͼ$b5ڈE(<@'0UӿpqaJ/(MW$w)ݮ0ju:Mmu. @MiSLل%F}]:`+u 3[/8E]q4#b &&B.1* ڵ˻}` z[-3Ѭ4DqW5AtC> stream xY~ !J*.@.MQ@\殕Ȣ!ɻl z{>>c8/ogwpз~[Rjg׷D8f1|v )ea|!u~S?2kr[{K_˷:UT,G'.Uc6[[eL]MVҖu2U;v[v|>Mf[?B X4dTt7 (,Z!**Ջ2,ma73~9҂W!di>Vf(|z gRfwƍ*ۘ#^ޯWE$"7m^ uq9R3d$ z:r:^DFMKewU>8"Sƪ\\BG g|G X?&] %b@Vr&Ү'dI]Ԭ0^FIPo [?y$ ĚaԒ'蜫$z7q_i~Dd~nDQ%H9;A^D],ёAf"zH9K$mejS.mLD]fc#A\Lle'@_FV ZHG"ČlH=܍Cbzw=NJ)t "Ͳy“d\B>YzY(5SM?d2$z O :#/οያ#ڼl^S^ۇַYQR$9?38vg5̊2}$i\:(/;CmL?_rE^ {Leh$kܛjO=qsOΠ,/ нZ/$AqUaM,s@xB,Tr.xw4kah8? @}ő{*S">5%ƴC]i+Vh6=VmxNwZW/ոҬGCp9d;'X$`:o gxH<ʅAq..g^W[P3T5]SY4ean,:zZz2c}Z&N eZtSf iֈ✐Ehƣ'U .Vo PQEfgG./3A,f"Yc}/-QO_pL%VZ31x> vBMGg |>A`C&q''8zuvGR*x שy_vK]aŃzV*:q0 ZP-~-b& 9JQ7SO>2~0gEo ?C<E'@n!9`߿Ɯ0l4GA~K逈"&"~05Gvz2Ҍ#mkƗP&PAy= .kOYwpΠ׭˹9dex,rкL>Cd5н}bX=nbSE-0`!|˥n+aioYCJP|l=qCzߤo'$uz=H ung>`b͔ni~K.šY;TrеNVNWBYu`S&dz##M+R_9#)zM=aȉaIV{Ycђf d՝iwjLʉKcV>łv?M`mW@h]bN z_GS3KlQ0ƊcG>"ES؆T{6Pne;d*Ld.ԻyӉT*8NҘi w}J-DjG!-7`H .6d QIp8!S)|@ٵ-4?ǯmCK\0QE2.XY c^`SsKkV%Ӂ7Ϭo+jo59Ă8 GhG>lb_D(Q8 )cY["G[~o| endstream endobj 1820 0 obj << /Length 2304 /Filter /FlateDecode >> stream xYKoϯK2/Q Y`f -v PK{XԳկEfWp~ O?r$aCT 9/֋:\WKs]'O(Y?U&+ ڵ]_~2aŒ, G"XyX|eb)8KxL+~ 5 qۮX϶۲~Mϳ,ym_I|ap ?>zԼfUn_hO%OX" 0zuŕsVֺqIpKlhJVyh|M=z Qێ$6׬n|"J4Yۆx|Ze{F͊蘗*]Y;u ;YH0G i,K6*n{oz[+0\DI1m Oi M{(¶.)T(8F57^#"|FX1%:/m<#XO|g2g񖛧ӄlZ޽Gh={l;Ӎ$n1ו}>B#f7/RE B儣jLs!@y "2B8.G14>)[rsɴ f4 hXLii YI᱑,JZ!ЎwyK;H0;TogaՅq6YKц qxRHq#qγŽ4Iڟ {P c6 o''[*^[~B3""d ΁K}'#^ޡ.V@XgAHR Hl_cUEw(=⿡Ja?՛wf<{cucEݿs.8k0/5-8Y("PkPrxuAOǗo)&2w /]0M+ ~`44 *s=w: a~4o1mg92EþJ]3/& Ew'"[ieTt8g(5WCT>baF5HNicҖL74ƈ%3Z[U"3*;G<'znnL$a҈@ޓ`Ä<[B+/ڮwsX888V%>9‚ endstream endobj 1824 0 obj << /Length 2410 /Filter /FlateDecode >> stream xYKW(#.aûp.xC#1Hf<OUW55Vl䒃~U_Մ,*?^Գ,bVwTI!j38}[w}5K~~8[ d:ҷvOwg$_Bù0Ȣέvyz-ȷO(|=h|7no9m񄧾<-#~Xnhx[4E4cOJ""z8ݲ(hJZ&AٖY-B>fMQ<.*ٙ4jҬlmC_oPsiRE/eYt_IySmBZyțl+Z&Ix&^탩[ZІ& HZw3aX663 m yA$JvdUB|ɿ#5ÙM)TֶD[>ņ.lUCIy.,N #=0\X{pNCcl2ɔ8=";jޒ) 6N.s6p0esW%pJ\W=<NR 1|z72osSлEK]8 ><]~a97HSfk|X?r(d"ʇng  <nãnw쾄#s8;;δ4[c,lh=qݹ*:))&+[[$*Q'' Ħ_mn̻ ' a4Ycci(!>k^y^V)nA0O! G0]% `ϕ xlT"Gx&aC^hjfHQ۩59~tG*SCD}4<-)\lt xRw"b AUڔt̃pMW(+dkOӶy=A>ս x-0,ѐڡvN0hED/E5FWRboV"5ݐDѩol6l9Ys!X: F AY /ч'RC:keGGFpWi6S/"|p9)7p0MQ _'l7}@s1. 2!F4j*FםU o%׋HB 2hF"|˳ ԍ1){M<9]T\)q${^2K60И1ezq1_(  _6 Ǟ``caj^G%164n!cVԞfXrJ^5w.Uߏg8:RQj:7Ą ݚz:oyۣ"\/t(6p#(Ra3CQIK!:Ik0jw#6$^5 G)bbE2<}j*΄{n;E(i#בNaƞ ~W\0Iv>WBhJG~Ibkv̐{2d* RҽSW 0D_Ȝչ.( Vj\"C9C^SPdXSxL8|ac̱p<܌Tq@las& }fL;?5L ]lTDyc=00YCdžW}SHJ.O0&2 ڨ$Aq~3~ S\TgjsXH9V* )KC@_\`'[t'DyԻ閾A9 *=r0L:(4==C?c(l&A$~tNh,:P2,56wp]9%u!F4Aؒ ÖlYL=FWߍiuu'莺K51.hAmr)K'[[6>=UUdrKQ&i /SMPQo#%7O}(9![抸;;7mFlڗIxQ is,gQ3u ZT`=6Uc5ڋՔF^{*:v> stream xYܶbh*NZH_q>+j!{g8DAZ.Cr8G|s/_oĦ6_z+&cY,~s2I`"b]Pm$x~qWoE-)!a.{gJu\2 *}%v+v+N­l迬;kd8Nd\g-X=Θ8L ݖmSݳmeImLGrK?g, Њ mBɄ7v&b6 s( U"XfEnB0+kǼ.:fy A$W(a;XeITЕDz[SPgߴDR<uwP6oˎ*;m)Qe\jŽ wLn4v*wϧ"cqrؗm׳S_XxʗkzЩ`1Й]S6$S 5Ve¢h$e{qSe֣AݡAa/=WʴIP{"욣SK&5t^9ۜvWqewO(2\6jrJ.ԧh̲r=7ov́g)IIAO }COf~07ehcƴ@',E_yF#5wyg5EVe΅iӡu_׏q/׏>{z8Z'- /ԅ' 2`H:3R2 rMa3Eh}C T| T'"48= ׮ s`i+&c|J+[9&MtpyH`mc(8}!CL],?ykc?'dcGݺܙ ⰶaSøm{LYY`.>&  ͤf)./`[sHt:*ӻihpnt]mﮂkJ&ֺڀh)\~AUq}yv{03){"}yeW_]:;CcvRal8;Z4zBʲ]4ܥoK7'uz&UT!wɋDڡ O5Leшլ&&VynRQQ"T $+IyPDi9-GX<Θ+guYun>vBC1 'vܓyHpB(Xf 8ǡ$k' l @:g:/ M"> ` 1f3>*\) ikq6X vo-d,B@i4/D OՐtp<xE> ^G' q2"7jaZͲjU՘L.IcJE7k>%z\E }* L? x͟p枣S~5<}~?韃ixSO- h,.bHxv"^@tFgaf+\2,~0 l Tګ)<@42ai<'cV 2*oqfw&<5.FaMeQLa74jGԣP /7Vɩޑ O$-O0hys«mBWxH1fu-35ޟ*¦8upv&0xjmh6w4fmǑ;dZ,XC*bWV8F;*eeTXdϧq&0m7-z>w ~z{ ߸9Բ՜ɥfCy 9L_E@, V 1Dʦ^-m"vѡDyE[;NDK?WY纲gL*][f@{Sw BBʼnf]wC`;I z u)Ճ{St`B7fYR/˘ j. @=%p$zp- 跒f:N$AaF?&G?8? o,J8OݜOo3Jy$/{K1)ǧaϩ[>*FmonU"ev<*gkU[9d[d ٨wLjפTgB5  m^4)OjB_Xų*.1xldPDh cJؘ}0}3ܴL0s1Y(Dt/'f~uaCgxb azA\!cDj&զRi;^*,ם;[L]O}Yt PVMIO~"x~'PA˦Z%Оi2mqb,ed3r耤n vv~bzXn>yK1_H׋[”<p_|55M_ o,oV50{%%Z}X3| l1I0sXnxFU endstream endobj 1834 0 obj << /Length 2622 /Filter /FlateDecode >> stream xZKo80 Vƴ9Hh4ٙ=a`>(6 $w:0߷E=Mv %YX?{o+g K ݮg`fG|vyb?*i0`C!@(#,{vBrV; C~ňLjf|!z^sT/ӂRK\̃{FR@F8M+aEcmqLW壈$T̴2 σkj6_BY|2Y B,g 0clUFERVEx/ib]V4tB|yz}\MVvMD QnWhA = ~C%YX1B!UKP5NԺ~zyz!pV&7*V/hҭ] 0ڍڥ<{48a2tDHtA|txW,LxKc$&m)<{/d01词+BWc!fAI]JFP{&ұU5Ut6c^,DM5 eMsC">E% J#"T|F/!i><ˏцX(ÑG1@zB fmW~V, (q 2#MWosjXCKHS`u+ L~g\rk$R 0v !$-3zXK$l ^\Wzrd!%U%KҐ|A.X;ArD @zAO!HB\-a>bAg't1#B]JEqhOBX*ng ;]Zi8}N“EH*o"0I8 \b }t:VPjnedJ\vL0,@9 5XL*.«ZCPM8 J\YS 5 a@ P)$ E"mg+χ{ئ9{3, 8x7j7:cf{] \"\^CV5Eɒ:J<];K5Kv W7] _r^㦽"#&}Fh>HNj^2ͫaʼnaCC+UVeEK1,&CmΉIJ q@>4s6Oi]%1N6]uۉn"']Uz2g/sA&w>Oqן=)Osgp%@,;6+3:?(ad(8`a|9&_UlDFW7,}h$sndxAgx >O`i{|ēsrLcK9:Wz̄Q 4y bH1b:y1ݝ8γbc\9bI9eǿ5 5o}5+ RcjgUZ]AZ䄞.TCFn Ej)hʩŒ:á V<]? :nj3¡G fwMÉ8&>3oAqgcO%<'[+ 6g|WpCUgţcyoLۃԸ|렁H)3̏?,wAcoUS]|ɪ0uD2~Ea}1rqj.oҟ@-11L˝5v]56jZs"RpD$OGWB)DzPFX?ƒ,@tjA7e(m$i}Ӧ"WO&$h>}O,w\%Zv3ݚPHfk_me;c&> stream xڵZKܸW4j)Qa`XָUK=U"=ˈbW76btśDoJQiLI""6EoUUJgL'Qomu^)DY {8#v˔ˑokFfCOp:1xþF&C9qU[^mO{^ח8#>ǢPЈ7}W̆RdY DD:]5| a3J c]cWݙS7hmSSOk(3kWW\K j lKQ^_-*r  > +e"[zn1PAp7Z"?@p)DYP@Qj$d4wtEsG 6յutI΂l8., i!e2T[ۚk~/ |pUj}{@rQZJgs\QRDB>UX9ܵ,XϟXW/L^?|ZY̸h/8eO,.6 .]5c)J`[4{ ha- l4{ޡ0:*Al2xaca r"w& 74=nsC]W5[^ޟn R-P"sH-} }:0DӤY&ߦV}o35*2( Ny2 {mt+-DaOw{$4!80v3"XD32=cƘŐޗK56c3= 4B- mnjZpvLNԤ]TsZE D(T\9h3vhڡ]` Xgg' ӡݸBWԘ9M=:Y&PM ٝiUp?ن<A=6^òG(B۴Q I85UBE|#*RߙTq6?W1tJ ^zb{%'dx C <#ḘE߻4S!pMI_#+VEdwfxXy儹Pd" ezme:H "(hv SGOF(Jg=Y{cȒ+U!TuݬlH&'|oB9O&^ν^Dٛd@Y^ = _C;3ABlL$ DLm&u`, 9"k F`0+gvAe2,3z`zpWKon&7[5J !gu19L闡zV$".X݋ۇsa_ (=3/f e\")ʉ_椑C=a]5ף؛i.r-j'.#?=PiJi'DC*gZՠ ˚2\2^.McQ8_K"Y4ڍq#khJP\SPHAE5m)wFi haVĥ /_W>0 8?Ne9@Ơ]iBkں~c96XcE:pAX9x{海# IMf[>/>`.> stream xZMo7W^p1 uZ8#A)e }CمVZo(ibsw7Y|&1!Mpl؉ \ 11+I>*&{}:wfhcx g1>d4ڊä]G\j$\!^rXӧɣFs"Dq)&_QVB+{૽V:?.2rȰHtUKLx+kKsR#F`z/Ut|PBmܐ3a%!\Sמ 0pg(R{Fj(X qhU 0 iWB@ ,!輒$-K"{^Td-L0F]_}P_KJb]Bq[Pue]V} O%@+$Ng%QtruXx)'rh,kWʡ5 6*1K-2[~WGqr)C% +)uPxX{)JZ V25~ +$NNf{>zy57~owzaogP1N991)=SB[躻rzuĴ=D{ v_M X^x1]/+sy95݇V}\|-VFNfy{}5Yzϗ̹ (]^7T'}?s^_ qYD$b fqؠXjF>}?{M5\K ד7}UO&t8ͱGg `3p#EЂ`VjF76+҈u:(.΃54[5ݎ;\gX-*&l"FV|4E 7ba nrvԆ jznºOS~K=cw)2mGJ:XUîՉ̅ YNv`}NJOP\{uJr ؔ,]=:O|-厤1op.%<I;׿~^=^-?ͯ({}N K*&޼ӎ0o%^VLvainn?ޠz8G%im3.a6ˉLU+ UCYjt,-BZs\!{ r| OZ0g?KqDd?lf4pd]!=BE|ߋYa;dU8}:d3y}vt$Z؍Q=?4FA;M1:iwp<{~zWJ98B݊)Y!֯B>Z$٦|c+9iH~+!o1v Ao4=?]v /@ #bOÒ-i x0xҞ{u1᤻l{~ZMZ(vvY Tk4;XlQ~oF!MoZ놌[ `KSl@,H;HaJ~mm#ɑ¯_m8#e7ሀ9n0(S6AdA=fVBE9#Q0 ]R =t{ػdž|v endstream endobj 1844 0 obj << /Length 3475 /Filter /FlateDecode >> stream xڵ[KoБ,.>`$v}HɁhHjlOUW5-Y3;{z}tzX|O}sR?D_ʼn pu[Zod{Z$g7e=78->Rm+jRZ^͏0uY e՘xYr 5-S0mV@, ? 53A"fzCϬ$7Mڢ!5K_o/!xaQQdj/2I4^HCA'Q`_yqzS|^wAsn6/;uF>3c6攌۽9#a(iYi˳C޼ 7x&ޣUg6v9uA]VO ӢC jD u!k] +: 7) 扳5G-Op|*2vڍPIo]$#R_ (%xI|.rid g_5Dyо}<5LNKZs6`ڝ>`7n_434a!xO܆D:(0*@b+A/ⱰpAȟ:[_n> E?U7qZӉQ^#Wq+6'۴ul{~~^2LM(-Lʥػڨ3,Ҁ ~ps 0{-*pijՍ- a׎tr$&eE[ni Oo3>Nn?8"N!f`0HԿCC&ǥX Q<#g}aһ3KlEXq[ +HG'ZԅW/z'z$GS2323, ]'˄< J|,K:l  =vݘҩlNbea -@Ġ@mdDA#@.?,8Idߍw$fƻT)cY`fZ8yܛUXd$I W^t~p 7MV`! 2:[c\6 H-`Y|@\`UOT|z 72[ۣuՄv$e5{a~׏\2dؔ:v3z|ʺ/ A$ \@zpڢiiwK>;dڏb !S ,%FHոCp\ں˅;U[zم KPLԱ9E~ abuyz7B0sZ  xs} Ny^bPJ[ Fz>X$³yԺs18tj.RéXpPWcb+*9:(E_U܊e9 g%x}\)Jl:w^ޢNQETI碩/J2C_'W][ /Heasc<`-r yYo?F;,EO2<v&ˊ2+s: cۿ$S71df;WeGjq0*OM=k>WQ'>[Sg{;22e>,;+}/!.4-'6/ybARk.$]6<4aUf.2YiBL՜4 E=T3t7pBAeQẆe`9a+v сP,^!Liuh!zcJSs|5"Lyd Z Ǣۻnd?ȷ/? 7~ݒ5'[g_вmJXZ>U`f˗Ap|a` 48\p3݋ \5qux&AcZ~ƞ*g(& M[L1kWՑegw/}/c첣S0pHM/ח׋@L$XZAa endstream endobj 1849 0 obj << /Length 2913 /Filter /FlateDecode >> stream xZKWQZ7i ob9% AFJ@R#OTԴ8l6U]rӫizL1u)ьiJ a}_)_4s(mF~ tV ĕ@+*H&8, x~X}Slwr%\<{(ö+AũXt^îYVDǵ6q{UnPhrGg&B %%Ϥ_<PISrS)RlߘK\,:NCE] k6+L:s8Ǯ\;M^80)جBDjKˈAmk,(C߹2k*lw9ݒ.> ER8k§*#ozSq `5􏄤\Lep6+&y169ީs6ٛ^of\{m㐰s;aSJbY*^+Rc<2iFO81Z Wl)819%؇טDFc ,3BxpFY"?o j$֭J IP7hS%F <ցTN!6)dp8zP0!^7n49U{Zly ':Yh}g/VZ MR XxX82/KDRpD_\"BM6酩;`lvOL$]2)0@:xi>ܴB cgAn^VrgHâ^li9ot;6U15jdey돐HpZy 0ΏaW!?snl*'(?gBi;lw|%^R36ӌLmN*1sft”ctgkJ K';rHrL#G R\NW0q]6f2t9WP8HE{6&no7uDC: - uݔ"hϗѱkcMB t mn?|Mvя}pf:yPWD-Lmd$F8>8h9K~]sܭ}4Fmb}#0>uO}&_簐`47oHWG ^\B5:m5Xp>i'C 3S#D,LS y%⣎ D8b3V+YZf|@Nl7h5G ,szIJ"n-Z}f0ͮ+\i"'.שl؟yh+^r|(y jۙkVŴ/E4 RƧth,;kT;<5~eUz'sGh$⦊_L"& aYq߭bR~84[ #bDgRQUqל'r e1y͈"Ovt1l2\s]c.ca>c>M*j|pTQW r)b dC8M;xfBWkk1)lBTTKM$5VBw11GfnyiSpezp]/Nɬ}0xi:|0] Ӗz6x}g^P Lۂcsh#M䨌 Bdgn}kf`\ֽ/nxl YUx zA+"DۉQPhXߦ ';[;bGOC7`ѫF1l%}H<8b+hNzQcQs~Eﲀ𝷪wNa( 3 &/X6dCnxo#H1ِ+K*(dž,mG2; K wf%ֽ)j 2rKr]i>> a*72goQ2.z]im(%JXh˒ɢ^ v endstream endobj 1853 0 obj << /Length 2581 /Filter /FlateDecode >> stream xڵZ[ۺ~ϯ𣌍"u))pR)ph[ZHr6 g(QZyIDù~Co_ū?7>٪E~&"WBfru["zя'[qI$*cmWMݭӻ2xǫEPuИ[\iOMx[*-ҕ;86k1i{t똤-!-=6=l8Mt68XzB(!UHA==۪{DqjN@R"sVn~` BIOvX=uKr,$KXpԮa,ʿz7&k̋}M/tv0;KmdaDj"QH- R"i[$E(TGff 3 !ۡdx$#% ?}o[Nձl;G uJV9X3h͠LhHe}U`|ST8|vc?<틤ʓŖË@z<^Ԟ򧶬/ `<3 Y+!eў˶G,46 |;^lug۞Jz^1Tu6-/z#?w3Zd`)hXLdG<kׁ>L(5 *xG΀}Ps(ChJi 6KxD1# m$op)XSi =~)O)i=TXx G {vMÀIWTxC"u ADd4I1պv(bgGLRGr#7> *O9tiH3XٷlioT*EIp.v R nc#] _/#rݥFTsvK~ypQ.: LǛ]ђLܐX6VWIbr]sׁK&BXW xǘ\3^!'D?ܾ/: endstream endobj 1858 0 obj << /Length 1188 /Filter /FlateDecode >> stream xVK6QF+XlME{0C6ZZle#ΐl! z9"y}zk/~ ό?-޾gKI[{1'I%PoYx;Ju|ʍzY|Z Ie;Yu_U_6"Xӳ ֨F{,߰Zq @Sɼ|ժհy?ZY9Y>oˀ\#_,.t+[Z2.B 4Z"H< " k"A^D/! =1N G[hFםe0k?"`r-+7׵v3؏\١գ=;6@km%q|:qr^7N/eoFx6m Te-XNq O4`H/ ( 0BJg9N'"8R1( FGN pL~Vu {p앆@X>%FP)n΂$<1_DW]L) +r hcOb"9n%\wUDL`}*p8u?a%IHOGy6I &ׁD8svjq3p$}6'w=%1RXL_(HVvc+wxZA B+sT 6m4]WӽoAs {X…KtO.4~w Aޮ-lFg'B>: 'ց@3S0E)J "rjp*'s\:|K΀p [!a!se=T>6j>T7*b-k_6vm;X_l%(7z!vӝh0 S߆XfotSzdw *ԢSfD BjgT^qW₺aVvvjG 9.Ndt,F8y"vRvh~n ^-\ xN`KP0xBgV8Vh) t@]ϤmI(#:nluBl냲ୄ}feŁ6>E廟ٺ#{ٷK̯~3%$˫Ҳ endstream endobj 1863 0 obj << /Length 2778 /Filter /FlateDecode >> stream xˎ8md͈QR4Y$i"Amm!dHrbN{iSdXw;\ݯՇW!}LVH*ND*RXnէr]I# 70N^m߈ eHcߞ-FQ_mZˠ߬7Q?.<+jHS{/Ƅi[<>q^A_ˠ9:>i N]ir~t9hPS©̩ʯj]A2i,dV)q@%>=b;fmJY!#ЙZrl/<6 Yϫ̔  'u B%qMp(T/ Y4"dud@XhPsⵥ3Lu"0n f'w׆.J8;l-ANF--Za0Ek9nO-&J#^t VX<yx g5T6CLRwfY0p^8/$l/FND2ȀoKmBҨ:ޯ'%KuXמ`=n8xD8u%:#2ayFh hoMӱܲid.NHP>q<=%YUYnh ~:[oѽ(Tcc]ܳߖ}Ne"tJXW& S`'t*8g, >.qN3~A`M=*"C@Ne}e^@&ʦAɨʪC6'twMU5(S3dfEUX.dEPC$lۓǃN 6F<;Fao|j leПCm)fT!IN(n+8-W U ~.&L(̀L{$ UDsU;xl/Y95B+p cͺdFb;zZ RSkqH3cΟ<蓋7_ϛZ&#pGorDf\$* C:mq**[JH/^-DtEi']4{:Ii!NA|ZS3D-aB!̹9`b5Fҩu/:nNo `o]6(@?Z_oTMz';AD ,a+Ba"F`ɴ* S%$]PÞ:dEHX]*yFBo6 ?D~u˽S@3!Z&d>2>1c}zV)No"m<]3J#d!/x4-xȪ/2Z2#A_T(=T3O[ pܮ+z9;=s0t\ wΣ0b:C|*B$HsKC iK؜C}|4y~ʶi],jj*  Sy%1ZW>sX'ܹ*<%8z(~l#IZnA>uљY#~vPBMZk;k>uɘ\fA-sy],(կ RVsw6,b誖 V]pHH}ڜ5KG[#7K|gYP!*s@RY3Ob(dEc[4[[ bi,"u.Ϟ]阬`)׹E*M]Q(ta &]l20Ҩwf}%,댼SWDoxo0W#٦⍤czaޜi|J}p6{4Zkyw3]v8<5T.EeZwp5d NfU,hiu dJFćg14ߧ=`䆈gxJ(H!PP*FKu o(`by~et lQ*E(S=zw.96 endstream endobj 1867 0 obj << /Length 2192 /Filter /FlateDecode >> stream xZKs8W$UcnI6TmULAcT}hiJd\F7x?^x~I M x3M"̟̗ |1~\TIkH5!_W9p>)pLt)H\E526 8 FD R4q#§OI)kCрPd 1¢C"|53=۴8fVdDUn>nK0-6M2YiHL;|vi^ُdv!Y4dUF =Yla(M]*xSGd.*41H"Shr=Nm$n[&7*2U q>FF4GH|,}UMP|L_38U48{^rF.)ډ=x]ʐ2ɳ릿_1i$3^飆J7e*uD Bt@<@V^{Ce^MKHrdF7ew~Nh,ϡ]֙! ,fdlrowޜ ݵL}@r^-(}~& I"P?<ͅZ8   9 k9h7C73zizR@YA!u%jTM !XAXlTXԇU99=~OVFvrȕ**%vd{k͘Rۆ=0WDb̚Tr% 9[|էlꕓcso x;0gnɎmroI ~lAcN[_cyKam62t,)g jQˆ1~n}e4$"dg@Yד-mnVz>6=:: jaᏡ|qu jx@ Id5Eپٌn ?+=QeILKyլΔ Ty4cY,/oKd.sXnx[eir(Hߺ Ei> stream xZY8~ϯ<3!fL Hm!ԐtAVZv;=؇D$MU_pq?? =E \0??yy8]"UZZ$vH)d"S~w[՛f◎*j@"RBvC-mh/ (~SA;F"7| 6X:Zd$RC^Ke̺YAg7Vđ|HF&Bߐ1KCR%ӹ[- *F8n6W3Pݩ}S-WpI%J,WƘ[2yvm=eE{*dK5߂^_"( 6UvWw폰e*l6 2Ŷh}d&|SW|0+Z3-v{A7b-_+˥c•/9ȘԽÁe,5^@lPz<AH'@tkn{Lofo9mѮ ^e:h6Y4˼fW&,GKXyC{Cw24]|6B~U8vqME{"r$p`γ|>Oǯy9Nnn|n0T-LGS-NCoW)ܘ]m@DDҜ f? qXMA a6%b2j ৥fCמD;@l Ќe*ړj&% >:vf.~+-nyoq\)%3s@ qdD~d8Hx8+74+1jkw,$^(FƟ-'p AҰo֣`TFZ h"1N+`TVB3zl Zz#USxۼ_;lj~~yω &c?vú6 y^fkK4A P׌C|)3|sq݁n()IuF[LDآmҺ%[%/\•|aT `$"!BPCLK8>qOK! |f ۠Y ,0]<tTa`Uڕ /\9@|v@JҲ@9 f܁lis()1fVl* n6%C$ 1O nD '~w_vT8ҏII-ohX@e[!ܖ$ I˜ >\$.PA8r8&AH!$C[1dH_nЊp2+t4+D^)Bfz 8$q6atL=f 1b89V$V~hwQ{C#wp7=(fB?pϒF@Sbp'܅1X(=ٍ]쑎O;T2*XKKbE S *]:#jDϷhtCx$8+~IYވEQ*^}7 #f T}+D24͛îmqc \J0*W czݸ0-#GQdD|#JVٴ7Cӧ87uEXht5.4M:ÍE9Wb[w BhS;#j7Ni<(HI^i7|̐;2{RkG#es(#KgrXm9(~tug:rJ/`s rS!5u֙] 2R[WJplX/Ex&^bA:xKꧫ׸bdrZR$36#dճVS W.a>.+'WU8%2ztLdϮs2 {&@u{iݜhz% mN''"Bø5=d%a kBKe諗bH%K?vk vpuMpJzC&F86Hddy Ӄl''JZ_7-,ZϮAR7ɯ6|I;KEeqJumPĥ*7e^RTZ4$>QC)H۱751̽:)`JƠ]P A6n ֍:hU{XǕA4A53!?;>U)M6X8-5pS0i9ggW'v #&kLhwIa?u],"j~B?T}HtD2L"Rǰ)!!#C-J~X:M_8 y-?*S#盠2uMPxۢ4iy/?ԅv.!g!9r]V$%nrw1ҟ46G[Qz;ԷyZ޳Ҏk eN};@:?|ǡ P~WlMeE Ǣ b^yuI/W3 endstream endobj 1875 0 obj << /Length 2069 /Filter /FlateDecode >> stream x]o6r3bma(6>( %CA!K:XI$u$wtr5/ tR<߼|8$$y<9Ăh3ьl1y3!E͛,O! {~AwD@KeB[u9U,ZdәP&78˦G 9y0\ R ztU*zQFnbS4˲jIM˸=j`hackaAu:wLA1S$lS:-nr=:*_ܠFv锛-}1r;`*a;n8$dH?zʞ!%ќhmfϭoLq5"7p&[lpZ^_j廁/4xfH=ˀlQĤMv:\.G fDjSyj(2Z30&y Ks& [/p⴫,VVdt9enh*dH(vgBE-f(VuJ:M.^J>(#Kْiv\.뼸rK<~i!-~**Xe;-?8焂 f B?BL8m!:D`;Y]5ss2,jAimUm|+s\BMc!_[2خ/^V,ZRE(ڮ mr?,vf;*]AT0 'fNw} "9 \t-\gd 19.`8w3HdӥD6` t3ѷM꼎#fYnS8zq:ǂX4ץ\f\9UB K'qJ2Orj͸xu2L?.S|=pS?BԣpM,4D9]9 +m mT%\2{FD}L3 C; q)(iG)XTd6RPaCRBQ!]nQH"ugVe u@Z{s*5`* u~$Ph"v6]_Vp2_{<`tN9u L[?h] Qa%ĞwqaEX _kr$$u[!+ƺCL2^V[$Ǹl>flB.=tbďMӋQhDV&wG] uYU4J,pc ]^J|nln[ާ%t" )YRcѯ_= ";{(?$FUB%TBsP .ӋA#(MhBw;|u(RE=Y 7ZyBVCUZY]xpxxxAp"BE/09UPH2b0FиM|04`͑[ҕEޕÆ6%S|' kڟ.s{M6)&ʶ~=bK#W $jFTeqYCB:E^m^Y1'4?~`*MLuD*}IcWkӞp(u v.ٻΝ*R]Ju4/-W)Q }:' q/Fub[q^?@~ܙ{ܖd@q0RNT]F{] mW n~ϯռ/ |zq}U\Wm$|HiU^=W?B#t~_ K:uLm~_!pm 6ZiH4wG;5XIz~_k endstream endobj 1880 0 obj << /Length 2276 /Filter /FlateDecode >> stream xYYoH~ϯ c1`I3X="-Q4i8U]Ko&Wemٛߪ߬>`U./-5ѵQ6`/۴9lr9jCfn-Ѧ+epNC'Y8pZH1rptN8t^1[6U5 ur.UjD{W*fR(?+c37acX=e(ֹN=Q #WMt*f {`nvFqS>sYxTS ʉ0Qߢk$Kpc'I~O~Zimܸ6DMӌm ~Ɔ wy-S`VW= <3hӫ"jGCR0ޕRI"}n7lhY3[pU u. B*iqlf]G%aOа+$KNs\d4W_o I |m"2=n^&=ui$&֯ 6;é] Wcd0k!tQq}MAg26HL"fzRK B+$ ]쩕zqnm^蔃do~g _Gk7f"/qOx˶;km#]ɋw~ϛd`|&iMYb,..nnr$!ؾͮsRѧ95廉O>`yZpFBv0F]\[ g*@$"+ IdjU\O%u=uu؁l "^Wv;2-~ Ѓpne/v:Uёp,8Y5%$b4 {&nS $>Vz4L1}>j!L>C12*) ./xQQ zK-ٸn=1w`qɓlҢhhru;xgeE-L.VqyS -ɢ总ҡж(м6l,R} Vt) 0{ 1-λ LmWfM̘JCE /axOI1v0`vI.Z\􅪖]E_=4x/hw=JG.*|dr \x>d)l~=E^f3G"[ BmOP[f ٙcrL dG?BqkZo_8 !Ĩ|SdOTvᶃۧ YOy>>a 90mtq`iE6ʮq⦖Z_\H;:qGb7:I1 DW68@lXLhk,G~i4U#Oj]ڹ#?gVs0(2<\Cr)bxu{CS Oɜ N `ſ-G$ Jt fF?$C77^efζǒEX <6kfta2EMhx)v–:l+̮9>ߠ{'}+hjYTAT u{>hAG6ާyڏˋϺ{֨?DyK1Ӳ)R_Vsn*HCxSKpY~ߏ}vRb):Hu!Ev4m gGN5v` S5Db5`>zچ4BD1_]Mޯ_ endstream endobj 1885 0 obj << /Length 1862 /Filter /FlateDecode >> stream xڽXKo6W"Ezm$ `]qjB1p(a)^'mOc4I녻xWggA`̉}[;aalJs|3+Mziз>,g%US/Vh;q],rx[%ҋHf }X2&Mѥyy^nc%a=G};fN3.黮dN0KXKJrZ8 y` "d $>lJiCZl\\-[ZK*FYIsZsomJYҧFyܲEYVɮ&+5uR?%EJtu)-ۢBN!)>jv5R7פ4k؄yoT^¨2fSl1P@1@i&u`~ sÏ6vۜfY7#WJPʚ!M~lCD|SZ*#~l}qd*J#4D +Ua.P(q#|[ )鬉IGRxsZJқ Ր4m+0 "oB;b0?EOb4\ة7nZl U3B]T0o<Ae]M Yί1g{Qg3 3~j  hcuY [[dbGtdH9,-Ԝd6I%1m owRfj"*pSXWLAYM"@ Mx x̅ޟڡ:ZsG \^[MmV5(z--o $[<+&Чr/]~ۖr5ΨMáPQʹ whLN{K?d<4 7<}E' }Zn{Y4*Ӷ2[/R}ڼMͰBiJT95.eߵ7heu3ލy.t9^3d4".dAxlDg.tj|#}xfbrց8 ,J^- B32/3A[Yw+1|L E>8qq4yzX endstream endobj 1889 0 obj << /Length 2519 /Filter /FlateDecode >> stream xYIsFW6T}3!f ( -Ty )j]t~o].7t|/qv'مa0כşϔ/AM >( vlmrț0%NPvcG*NŻˣX-HاE3sӎ,0Gv8n.Z kwIմoq.óvxwGZ_eֻ}Vm\ܞ>TUZf|=q ji>$JRႷb )8Q1>dM8X(q!V,7i&e^V =\ږ4Zn*̧) 2TCˬX&+n`A ,seb!Ԉv9h|$%]nۛV CPUwy6zq6.O-H'ip_)YUG^yd`},|%52Ȧ6/dž v5xS>P`Fzmx+pXnD1*,z5`!=w3 UfQv:6A#@hm"1L32+j͞AD0;GHnىEt 9p X7Nb?OawN[ܶmmwUrQ)(0J0ʘ%ºWj䌶 dB9;!P^\mV>14>89e(jˇ:>+"(F(x}CEeQYY!/ꪕ;*=~\{Vs.MH0:FhuZvg᳊{ox?FQnb!`@ CQ"0=SOwy4E PixX\ lFPAZ9UQ]_ߝWTyi>IHzϚ]8v>j'UĩK &#BB .}02%'0J; Swࠎ14 rP( d>wϙ7F31֜?h9):Q]t,:l>u%:TePm6BcU11V8$p/ہ^_HyLm5btTW>K'rD¨wh5mP/ž էK\M W|b/EtA&#(l`b8R͢WwPwx|導WY(mhG ֱ{O VbЈH>r^gM4ӐN*rBG8M )4 $tGZbg(Ж@VLOR$RQޥm(q5 -]P}}R7kG=7t|`WR+|zY3X,/N\R`ńPkOQ yA]ZaG#GXɆ׽8Xgg+u q8#|Ъs:}p O8H<&N˒|aTB! l:8gE.H.1KV)ɇ rAqDk VH0 e^md*KXʧ 8N$:ӊca-Z` ?mޏ2 a^":Y4fXrװ/+`2B`zOQxOW`Hֽڴ ŏnbx(ydlvh6ˮ?[?k]}0صM"Ҙ-v(hoAx}?g|mA^zaōa k fa9Lի )?8G:eslSo xJ]~̑Geؾqa)0!@p[QuD:7W (LçWquyܤ s"ոX*}]e e2}Xǫa/%͚q5}҄ 3W+z|/I%ϧp{֗O^>\Y5eV3 絤/l!1\b-ZI9%Ty`w@t=qK<=w&YaZ(`6s5\ . endstream endobj 1893 0 obj << /Length 2242 /Filter /FlateDecode >> stream xڽYݏ۸_JË"%Q!@E[$ymz-T"EI^ywpf88 /ShA o/^A,ɂ1Usx΃!x~Bߘ~kК(>E2c M. prQ^M@ɽ|p1BwTNUXm Ձر[tCĜE\& GvRCzuMqX:QCdiqpT}`'xvM5/Siz\ 8.s)fv4ݚ)WZ1"6iGV֡}%ƑY%0>DLUED}ĝx26RY *m@%zN1в2D >ϖp^Ǿ)=W8,/SQDg&|e{05%}0Dž㠦,(1[x7.1 [0/7eGX,ο1g dxg:>yX+aYE.̻Iv%u}gQ\X d;A2`ӽ[G X.X<[\L"K#f@a'DaGMTcZMdɓWON_/RD= Ȋ0完 -g"D gq˫)qvj=-tdCyaƩL_pp  Y *A$DOjR)QO E%{>ܜ(^пhY`2(~i +!NX!.}5tl'gM uX;|#2 &SJ0 / ‹ endstream endobj 1897 0 obj << /Length 3561 /Filter /FlateDecode >> stream xZKoW8V\# 9ACJCC*$"O٤8ֻI|W՝^_W*I#:{wF_ItI]J%*WWvS_}e?Tȳoߩ"DӰ]Vk"ɵ+ci!$3y?绩>\bWse3jwC͝j 5Gnʒk،~ {;Rwuq|f<⮯n|tK[4f7{%5WOՇV>;nɫ;3ܡcaס>ܻjUuavɳG?BnXnK_L^#IEiDmI*{$y*Ix=%'IB ,IsHTЌ”0!~U&N_X8rmc%EXXm4[}>5v.hi:EX??'%f-Vt-MvaU6*D{JaxkUK --ȆId1/Yl^ldm [|@?TZ7ǠSq펠5y:D+6,'? ፯m-iwwy&*5K +{DX.$~>M}hX 'Vf[a_ݽy~7󛋍Qڅa R Gi=|5táX8hF S@ӆ'"@}O=k<k B BOC}# @\FTFY2A]\ q U,쑠}_@@1tC,ƨ_K.0IVdfJ=؟1ꞽ:Vv$곶a @Gn'i#><ɶZ'$ǂ$ T2(Q@znJW"9@1ʼ,.C1Ex.{,!/$]r͟^8.X?O#HڮC#6)z؋^s'μBF/r')w0OBqJ\f65.XVQDY~茬<,I5m0+U[`{:6hٯ21y7Sp3/;W~2 拭 2]P>=%Ձu%Z4lqu^TmߟTu]=gT&]^p[!EbD0 KX ]rphz@"?PQCύ zAU ~T]Z<8nFT5lXw*!M㩘6]-X{N.oz&!o rdu3/Y3 2#~p(#6NTç ĜkpHC+0=b,rmF<9^nW)U2Lrocsy q(--8ns(v˫ 2g*mNOzr&i!bJ p-& O/"a  7")U_CyęS]-LWȤҰ/MK}Aa"7V$gfH'iAK w"?Ja>=Gj|g]t{OJppJX(SR1 q)popCc!ȵVlp Ayt-l,+.X+| {:bB~C  ~?v`6 3Q-Hw>sD+HeeWr0/מ_l"F$Leoaɋ?<|D1̋K R?ߓ@^ſ~Ϝ)ܦgY5طi9z9U|>!|dvx4888g:g$vG/SujNg{%eLki&g:V͌Y4F.]\#ƛ[Kt) cRX>Twgz͍CȿFSFD9 &o#oigϏkk e7^]NY{9ٻ-ɋK57%f7dJfh*U^?~\q endstream endobj 1901 0 obj << /Length 3545 /Filter /FlateDecode >> stream xZIWHXXrdA`O#ݜiJlM=y[YGȥYpu W?._zUNV+tl*T.P/t^I$*A ACK`- ]]փ&8 :[(ZW+QWlJnRPM\l8\mj3[JZs;[t홈S24mnP~TYd{ ͙ۆUg 7жs=OL/ձ zhM=8Rb ܰ\ ħ]yd/i5XwRK49'%Ӕo`lf~_^zth-iRYWLIcDSfjf=M|scGA(;EL[I$T@u V|8Nف@3y)SY} M` >Hoa gـٻ^=˜vH5,pw> 5$s|5]${[ƶL CNl#"q)+ + ơm芦?']dţ5&4#Qdz?{!hzh2S!*h,L`;U;#wt(a jg9;lm׶("H`w{p;*ʱG XQ%n1&;:ȶ5>te΂43v(?_ a[{ ?Bfu%!#kTK  urt tBJSu$2Ep8eKʇ (I.uLu 4Ab'֯j17myu;g6H0@ 1H`ά PӐ)cUW7N$^&tp,,i%.|==Pr {N~`r|nY#S ,-ckLԓ][S[`p1I繛Cusz.jI9}>Vgl{/ /My$דc0A?PjXzdC CXt쀁@\ %3)PM,D#<`'Zwe͇$In:g&Сab?=l\M\tj>?zr~C)f2&ײ*="ՁMCq_< 6S uLB,qI<#z)nT!Y@|dd7X&~Q$2ΞnijQ)Gր#P\*G3h%4oNӱjU1uH8h,h/ɓqNoEg\B] e>3OsiG C{|^~7 [|>UzSMwTԩzh6#yW OQ/_$SX5$-4*ت_2>.fҐ"Øim~Ԃ᥵΂$]y&Ѩ#v[S*hWCCKԙA(AJ$9P*|i¹QC5夑_7H Z(@\JI~:ƪ\HkQ!NOs)!7]GBÌ=FaBZ;\ټ]Em;3Ŀh {1|;+ ͋h±8ApҨ-3Y&\:ӟx/]s!m&OZlØ6%f$jBw G,mHD+ =0ܘ6?m,FEJ2K}|A2FLw pԂ"V*|SJnb[aeacMȬ_og[F.> stream xˎ-`|A{ Ak=5"$فTuU%Z >"6EEۋo6/^$""2P"fK)d,-biXHÔ?JmᦨwuWeGz-hΖ'{5.zkw1ۿi^X&"T.JT=&oㇿD}͑a*C~ފ_=ޅ?VU{hlϢҶ"-9~ͳr[T{zTObu[E1 ?RzVZ5򔙬}mȑ[/C >T5"5W^V'\t ʼ/l5z[T? Z` Ф_q+ Z@ O_\y[d< ` 厖UV&R!kF$<{e!ְHjo7< c8~ˏ6u2ZQ9- `xъٶ~$8DM.lQ0Y8G` a&=5YOKf3idF%!,rxU5j"TH5UC<{U*tgę&V&sM|'iP`zq<2J8@:Wq^J(RM,Xw$[c]~֒= 'gr#za"{H#Tf H8Ȁ\ᬷ1訩2߬B3Ue',? 55E?.zG]#ո8HHrqQ)F} |EK|2:zοPLy{iN0ihp<$}(i>iؓ>&^S$Nɕ69ą&֩HnNH"d<$yȔOI0s"GduaQ)!.ͱخ wdS tNυNLfv0Lۼ%ݡ\>?jעO#YXjh8Uh$dbh C'87ηE:CD#8d=/TbGî\uI-+$k,M\Jdp՜εutmΩ<ˉЎ6/)zqs\_/^\ ;/ |%hZ^A,KZ^˹5\zթ Q'[ 1ޡUMY5}/Svf 0vɎ Zo̤ Í h)΅4}qIt=163wct븵ʼn$"Ō O3I(2X+^pfT[2w[@9km`TzI!=߽ ?'E謖C\f1pL` Z}9NwceSdF`d3dfoIЄGm4{>8~GBƌDE(E빛p|lEI2 !4` 0,l']c؃W:)5g 0>0sU(~ƪyuf׺j\Q2ejD&ؚa͋C endstream endobj 1910 0 obj << /Length 2012 /Filter /FlateDecode >> stream xڵXݏ ߿"NC*{ؽk;>(hDZS[tH9vΓɵDDR$H"X&o!_QXaip.TٷtXFc_(\wFr%ԓU\D޶7d^ *ZJGtDn ~ޡ;/[LJZ:&?A1nK-5/ t+tc>bᙆfZuT7dڴ꫖FD'fnh*8:TU3]Z1z~!r:5UXzO64'< -ϞZU *h|Cpid ̮(bDaG`7~LhP+3aӟq F,%@LoUJcCocp0hN`"br;45- 4}  Lx'U?!G>$K8/˹HJ(·oFQ[dpVV'Go9}E> vJAe2X~4=ςxӠd.@y!3r'B$ mnŤolWUoavma! oA[+] a*fm 6Wzþd\qǶt(w FeȚղ&o`GHZ c)otǦe ]?eKu[&”{gβESG/Ź}q4և4Q2d_)Yf,k꺁 >_lVڢ.">Z 9A Ƃ {z+(L(=M?TɐKXOTA|KNPL4֩[,( dYM:j27UQK_XhgFHW(ñ_@Kj@#! bNbЩ;4}ڜzC]+6 X*71yQY_Y):)S[n!pB۱!z0XqqA(v`# o❢Zg&[kl|T ܣ.ueCb$SC!zO *ξO jKCۙYyB'06aVht2Hk!#}Kr]~~ y~xHȃ'8 ĸKwl gC{ 2eaKQu,.Muaes?8#_ QG . '{:BZX_YV@#Z %ZT.צ`B8$/yu.u"j>Ҽ<DJ,'mk3;iK#.) *\d.vWMUݴGxQvޏ6Z+R PD\|&.xb‘ q~.mTحlPxƑD^;{d&.KM)_~٦*5@Vͭñ?5kM_|!&_V;(;~|k {eڶ^ȶ9jc_98^/r_#1eӐx)AGNy5fY|1~J] endstream endobj 1914 0 obj << /Length 2433 /Filter /FlateDecode >> stream xYKWVc Uʼn؇$etCP{OS.`0~׍p_/Bw?Fт+&U$" 9/Żs_iUV+it+[b)yФMV+`OV>-yy4n량*Ub%$l)b-Mǣێ=`[Yt[|n /D"78X%nRiciKMN0ɢ,2VxgK4|ٯi#װe%LR{ZF6;ZNO))w b(ف(8^ qd5 x>hi?hʉwszܟvHd>4ً6ytNdV0K)uIuy#h@ QnRum-K)L*` -MCen쉞OU鄼u rx_d} Og5eA5M{ۆ皘i'(l}*5QtLji1*\Y8uzV^L+sHlPXO\yO,ڀG7^}V<:$ׁ:R麬2~Wo:1g_'wvׯvS޶MWL~,B 1)kGҗǾؗMIPg^N8~*o&ѮP#Fz![p` Gz ED{?yhwCV9bl'yqAyGEt1wN }x$#iSrYU pWr9Tf+7tS4̝ \Bt p5ڎ m9 ,R^s$ eiуAc>z6w )YCwNscFB|(+"}sm(B+8IHfLNN6u63޹W3Κ"ի@F9o32JA 0T|s2Wj&r۟QPw  (^RU_9,⴩k%%Q Za@zuCw^*kʱi )oF43EW]q2c3=z4f"1CBLaW澓}BP[gDwrh -Mnc} bBZAM9F?2l2Lrm$ $Oc}&=9*a*1y+ꩴ=:q_/&z> stream xYK6ϯQ]qħ&fvYoazr#K.INOWWl۝%'Q0H h]taGRaV*,*͎7 Td}TU>ª"ho.bU [t_>>hn8Sq -6綅U޶y2rř`˛P*hgvQ1dmr˥8_fĜŢ:rK; >up~/mI ȐR'=7vK"Im˭`IHP$W[;h4OXl4X 7쩸 nDTgzAVOq;d4՝Z2UEQmyGA:yU6^zFRv,a5K?ۈdz)q$;>jA dw [:kE4VJpt ^IpB:r%3j>wHk &4X\L-;5 `L4bC(+D˞H46olWyh- x D ӱH8ja(Q9 (ܻ9M DS\ᴣrdb˕'ޫ5z'fA 569y%}2 b: 9GR޳\t.Iu B+Wk7z(\*)wϦ R'75_$z\}@A_-HjSn#} x)Tl@imu7j`'v \4Ϥ;S 98DGC>Å IB݃/qSK5W0!{8gvY]/KPqyOku1/}qkV+Chȸ^Pb\IDIZE!¦n՟eГ`mGe。KrҦ:ڬNЊ_WkO{PZasDCuDyP5_BS,kb;ȱ>N j[$GJ!%:R%^`}Q}іU l0>ƽb½1B2īߟ H3IT1J$Kår"\%W}۰@kjdȡb GIIp3W5 r[aLWΐ8ϖ r%꿚ttHL,J80 =N+ azI|pXH* O*Ҕ)5c5Zʳ lQL^n;fwwfhrX>i :S7BQ8&k|۝uRINXu%yBmuϱ"j+?VZb~"2¾1qw<1qP+5tMwW`sf$VMaIck`UD<=~S*ocmd|G20R-KdGϰ)A FS:;AqdE_<ƲV4+RY% XЗ1jҎѮtY[(k"p*,tU So TG I5۩֧:/^on?^~g6Ai!%q q='"TWՎѫ%L/>~^R0\8ק?} rsrzzpeo5~S/toP~zoC1~rGzDn8dR ~=^eٍ=1ӝv$;!-@H\v1u(DX[ b}-O3.-~8>x2DoKi"PBKTɜ~8 endstream endobj 1925 0 obj << /Length 1987 /Filter /FlateDecode >> stream xZKo6Qj..Т]EnYȒG;CRy9{IjD ?~3C.t?{+0QN a-NWBߧ/HKFQ=̄LmI:YAXrF v2gyVܖi]Yrv\Y4yJ?VuqSu-ol˳mSyT\\*m,o4W?3N~wH).@6qA]]x'i;SуUSdׇv9>b]r˝vn ȥ$&(J"XNqz6Q0l)8 b7luC)I%(u) 0'vce=8sf~(+&k$v+3BրЌ $awث8t&'K)ipI_FsEURV"{+k`iӴT\\og l܌.8({e"uC*"x/W~S0k}K!'!r^,ƛY[{)5Ϻjq]so%Bop24mޜ{\uN B[Ƞ;aAZ({%ZA.j?? :=8`1M ^< 4¨ [$GDz12I߀Q* D18('@܊{qX M81 ng>!{m\il(qsn'5|oԦ|BH={w{350< cy$a"(rKB:Ps+ոzR)4"T=K'G >Ɩg\5!cgHzDʽS]؏@pFZp*?ݶo۩{æә6kL܋@LHJw bk+׹کpJ$˩33 ^F&V-CxA/O$+#rfRl A4.]d>1TC 4=K#r3yupq |UwTQ.k+/-{@|; \D"ȇEz[1B-[лuj]9{K6}-P!}!B#zZN[c7=ۃF8$˿6Ńxd܅RU+QAQ9X(Ȣq!ZB1 ŪƲ2+foEȿua*{jthE/s_ MDT4j46~̅~*!߸H5kӝ5iC$5zvxGPbd/UCлGty&y; @]#X ؚCJ{RȱD #VDI":h<`o)`1W.d_yFoC_zDTcC<28'm ȏ+5=AWcݾʨr_7 endstream endobj 1929 0 obj << /Length 2055 /Filter /FlateDecode >> stream xYY6~ϯC@b E ɾI hmzD o,y孷Iȋcf83~3, 8k?w?Y꧑fY8B"J(ٙ˷ngU~ݴY_4X+Cm d)9XFe4ĆI(?!Ezg7 CYs ^b/kX-}NV#q1삁SD߱n'Od?0H j f§E{P^1@Kzoz\7-"_٩j=D|QV㞨|]&X L%(՜RzE֐W? 4 |*ǣ!2֔?,eþ?;'6ɱF~96Z" :6ðF(C* H+9cw`>k*@w  t 0! ſ_I"B1WHPCjÆ"(8ѪƲ J||KʳysK?P `ubepרaoG3fcI(s.C﹡r3`)6?lkh;9kM_ K;$rͷD 긳ͰwÝpH l+LNoƟUe^ؽN5jn^*Ĩ SMYw]lSz dt]a\%70(V t6 to(ڐ @^}z/Lݮ~PgÝe֘G{s~9477= Ӳn3YZ wYwǡC}3pG4d aOYg]ѲQ,QD?j:7SL }r:{RnI$ʳÙ& OT3:9-Ȕ/xYH34Σ7;TGpRMq{4Bݬ)"^pzW]SвeV5n{D­A~Wyu+Q3 #_]Rq06e(Cy8傻ۮP~7|;Pa8tlŏ$XGCIs֮ȖjTؔVblr̒8& WD t,JNk.7`m0M$5)'8f3kPbhm(qnSrA9Uw;b\0lclyB t.Ʈz(e,HܮqAg2+O"$>,EJ.d`e1'Hd1 -h<@V|iHߥ9&{WAН?Ìˇ`@KNʧζzK^o(%$ nPU_eVp+W #nE6Q,:<ȕ_g[|=YӂOk>8Cgb!伱ZT\BZ taykÈ}P$YVV<< ᳜kto̒?׭ͮ,&Oؼń'zo=Xt#n榹얗ްjKh#gY hv> stream xڵZY6~ϯKfCW 9vA/6<-֎,`VJnw}6IQdίW3^" C߮-LVBFru~Im./?V>y~ZvwXN" a^U6Eٯ[7#F磭|l+G&=zWém?ڮxmӼh>w"%*z>oVeqV>[jǣ- u?mm+nk8t65xO( )&F2MB {|fc<6/EQɉj۞ꒅLT3:ܝk}T(ݥygq{|LKTK"1߀Z,Sz8 bR -Sʊ̮imnk[oJ@uᵌ]8#l{b}gtt1xiaB92MխԪJs8tM{kt8Rˑ;j`ӑ5v S+Z^e I$t*^ίmҦnBUCGu:,BGX`c&%z81_M5] ,Ab" _\8s)NmfK`ʦY<@YDu; .Lb-,9[8Th+Jp_l1/!"\ '/Ex(Ǽs@.C.efZub4't;M/.奲:ZxLCUg^OҺ:u5Z k#ŒS*,ikiu? HCtj|ؿIW 7 f{ZݐB k7-2){\xM|\tb0?X L0rq0jms&J,H'ХMF&[k|X1DuM}W@?)*vq.uU3#^~g=<vx WpᲧ1ѨLgFeOu[Mެ"x+ ;ݹQ*j47 W5ѸLz!,c1<ɩ3|9S҈Xi(~2g0% endstream endobj 1938 0 obj << /Length 1827 /Filter /FlateDecode >> stream xXKoFW(}$@R$mz@Q>PJ܄"cٙC)X-a[f}H]|†oCV%--z؀(ҡ9ꬰ$:D\kv? ݩ5y_=Q+֘#UjeʯW[ ۬=G$% \-4C#їcsL\ kE8}hKC$(6ٰ)%!la;5cQ>\b$xQ&"Xޟ܏ѓTSc!P |-HȩPA=MP'8+ #PgW \:o]AK/,{ȹU !ߞXJ0{hq.w;_ 7?=ْ;373Ǻ4#VuaG@ lzg$7,##179Q-ovr&y|1iY3xXНP:gcÚ^<;Y>o !/^=Vq$Zpe+;A/pgצiMI#H+U/UÕw:4<'S2du㎌wAGG^@h6qP za$t7qEHݿigm-xG K$>~O{?0 _~OwX9 {ܬ L=?]D27O F ?<AcU{#޽ﰪ&RR1l8"F;1 Bb˧Lo7vʍ$> stream xYY~ׯq6}!v" $7@I\w 9 97{p)62l6z&"/}kFj6׷Dlb)ؼdI৮9ݹ)N&Ƶ*tYW΄apw2ȳ|}+M*RY?")Ht"U$~Bw+l@6Fq^jMoyLca2hmµ8i*9J&x̪uuCTg8ѹ;FT`t8k+[Y$١yn ̕hp) ''޸T*"8(凬mP!KN'o5Yq p8pP l)s|g՝+X["\[oѲۃ]szP89'F \MQWuC[** z ^3? Z爘N ?e8f8w)HDTt,3*txxq44 A v0+!Vd{Ccǭ3w6Mj]7[+F%Sîn8ۣB'H7o%;*-/ J@JMb@,xpfyLVF##BT!0i1jx=b3S,L"@jv%KDKk4g n(CLp͛񊗞qeC\wG"F~.; s># Xp( uX J0Ԭe: jl @ Q>vk<nni91yaNc:F`JQ"C)=p /gZ+u3@<{²^k$y1>-{aƷQ8^CE+Y]!3 "ͅAQ I[ǽ>3VZ$f;3I L̜@rʝZ FzZO(ĕIJz0;BgY[ jtW?dP!*s !e3@į*:\D? h0ijFPs iX28Mǽn]Yt*ڃn"383nTU׾9q!mYd~G[u]k3z.ёy1 >sL} 7$ՠ \CB~ABC>^wXB/ˌ uQ 3e3P<{1]/w K][tE>C"Z,b p~^+7LO^CZ&gj2=+zD2@ 3=nҍC7m+%dtط\K}_\UwPCBOu0Gj| "HW392;x ]t/_$ qaTPe{ ,P(Pᇌ؍)qS#T5Oaٷ!y7 >Bp6> stream xZݏ۸2.fQRp84).ECQEZ[^ gK$gM g/䚾X5$gÙ .n߅|s˷J/ZkWEEFXJ!c,6EHEծhͮ++&kw9wu2porÍ}^f$by}'a%CFוggl߀vW_t|3Z+i`"Q G"ՊF);+?'CHM/Vwy}ǻ=&-ʎ?|@}5 Y9 rQ#;)RZhX(M6?dzV&q<,mU2k21J:X:/* Z_ik{|N,qOX`ձ-`+%HJY}{: +pݎt^m*F"Pȓ~grtnDx ޴HbУsh]'Tq ڻSiK&uu85 U,9כ|m1}smuv.Lq짹!M9)*|mCH0I MQZP|'a0DyKkv^g-/gB'nL=ݾhZhy6۰tC S+ `Aa/HkjZ@vT \E[?JF9J ɱN/vCV ڴrܜEy˻ӎSڐ u4y{ɳx)vYj("un.o#3Þar$Rۀ<0j}@䞍B 3t`@@as\=:y@5W޹v"EK`mާPƓNAŽ z."@ԂpG bIb7ĹY^7i"+o<ݺW."#aS$란 imL;4@=#aVdF0cku9*-""1Gj+meGBV(?ӓ%nv-D+[\}yrzs hp{Ve)F9EhY>9npdkK~/дojN]\{S`DFu͞ Upa,8',N~诰O?ɇ;yO8Q' ELqL#N@$L 4be5ysi$$9\Q`'Lc 5JH#CTn$ 'HC8eb 4~YqY^~-vV/<'-Ra(}9+0RD$+ t)@jƇ&Щ0>jifpF> ;3&.|R3wtR@vI3fǗ>H8WW?;NmytόI{y3O^4/ !z"(qR-FBz;:%t6!txy\d"z$&k`}7j#WC; jbݟOi8Nӡs^n Rk9}c>#^0v*B ZF3{pT=p ev]tY!t/sE4WNbʣXwPh5BI+pnKQ+y|zspvQzPwE\WE[]y-] kn҉4La<`Iz‰(l@+V p8F6,gp6&p@8Ô7|FǙ"XvdY]GdXLYB~$h!u2W#HB9t}E Z[0 &>وܒ;& 1& vEX!M Ydο{p ^{|i*4&= r1 1sAa.jJDuaS4Rv7-_cF ?:x]}Ԣ/oc;R8Z|2.wgRm+'֌ӓsV X8< on$U|UbMRa';Q^Q^*#40.қ$쮖EI0(:M}d.03Xcsp9ZVi4A p'$Zc 9mznYT&w֏m@"qSݚ v.wUs 8LV?~WN]C7<7E;]o-qKhA:9bd2u}7HWP Lc7n ]2U)%)*|]:M%V!&m1\A?ʙ> stream xڵZKQ@rv)NU=PgĘ"]%nt|h2@<1y,&߼}'E*HEǧEEE,\<|I5avԩ]QWY=̚!V*YvO{NREB)jwhġ˟S 'Y֟ qe2? b3CZf Dݮ1}slەgtĿYف%:߲(ܪCbT4tW>C:THX5|碩+'i2IOHG, #LTWr>lpՙ&WШ5 UQ=P@3u[+P: mG6dgՎ>ٳmW=ԭjޤ|)@$^1JbU[@*L}W /lbAbEU0;Y7}.H/i@k$E $¡w;6e}~wEW?QB2jxB6BvxF~BK3bA+t&mǴTwKG׼RSA^:7LI7-{Vt  LpY hPV![ TN #E-O=8(NuЌ֣"gxnHVZtSWm<7}/yoLjs׿;]# Ԃd?zBsW"YZљGRHAlcSۜrzXpJܜ0 0D銣!_ݞ&H6J$7H9kYQm쐓QyM~Zl \RQ0MFGp"Z>n(+r%4փ[°O@w]̉&D݌hѽ1k LR9I jkuC>cѰy_N*Fp:2dj%%A+ u QiRιarًqr #NAX gY%QYY z^K`[Zg!%ԨS_V{3Eqhtø2)x߃hMN jDL/>'NHjZEB,ХF78VG/.D^EP,sBҋS9ԏ_33}}R 1-Ր$lRE+>ɻIy G @ P{8MU=IWZܱGZ>LVǺ̭CgշZ[Z}XbyVSʶ ]rѠBcꥅ c6 `*Sl|d?KُKIN|BF=9DĨGe;nNkdJ[צKqEha%k2#gk0^O xw=p9)Z+J+ڰ^~3q@ejU`VnR8':0f*b 1Cq(JuĨXB5H:p|4u%fԡrc|ҋ=71d˾ny!EE3z՚\RV:5hr@1/d`& BHcSlZh2C ՠ}uct_qKtcՈmLDc.Iƌa¾Q,6bk{YvKɈ}jÜK] #ݦ}ѰT52֡D4yprR%Tկ$(%KGT;tjSR .o,~a_F5{ySh a"BGa="!WWTb wo̙U!a("($yt{P9PvZ;FRqbtezPXOsyt}݄_p<+d!$]lZ-[q=9?@2_dDoAEnNE#8XVyɕ/PDkC_:|7gvBKuĆ;O`|"6ܜ(\> stream xY[o~ϯ#D-6X--liT793CLh{49|߹VtzϷoniH^W a0Vgl]g:2OuY77wYWkn}w7{UGs9L3"1wpl(x_t7 wy&QCCTVsىfA8š^[>cK&5KƷ[ݦJ?mߑjS|&N@,Z(U YTm:'^Wdʨ T~^Ӥ{=«Vkn@g> ~:"&kkry8=}?5}7m7`RaM`FrAc JQ_0IX\RX%.AڭV/qeI1^Նq;cw1v!g\zq聛"p#?,=. yO/HzϾw`E-𴇷뱵0^('/3`D5gan ?j|JАsG&Y 6&`삨p&Lg{'~"EѩJޭSq{ & .`}M 6'z{x7)s̠D&9RSB=™0PuFF*(Ñ~ ʳ^< p#2"?_c}}l0|@/XܘfΫLR FNu\X?>dDl&xAB@egTxN  g@,kܧz-h; {o*Xci`sSbx Tvϱ{s\SŤKeȖdusmK !!;M%"#cBP\?q5'\˙pnf}(p"DwT$Urmx~cı5 ;p~ ]c ٴ(zas*C1fK@b"aHǏR~vbitOp9^y/ Kl/@"B^&I% o~9IJ qsgi&ܩ>MO"E \*E94E"C|s[CPz|ԓr H!ܖp=>zH.|zZ޽2@)e.mMv\Tǔ&ǰ֥6vԷ`q0cyl)Bd[jn@0"PïT$jWԕ2照=09ɃL:_of[ڻ%p bT%4>8ߌYR2H/M6$WɆPul6!;ZMQ;Ι&e9Lm0G DSS?5x[xv(-9W>"_-dd:`2=1ԗ;nUbƧP_FDW1c̓wvKDh2?a[?b3/:?`c-"f3nx7GR eR+xRg?w#Vq!jf/V_٢BjF_um) reK!U74`ncsbEcdR."W&Mrf`rvڴWl:c!|UmDP9I!=X/YPbvC.31TKj@ѯG Bm8hm70=o{[Oy^ǣ^۸ÏD}墰Cc:Nxpp={z?x푞 F /'?ӂ@BWNn#T &qxA OEאAHa1`͉1ZUT/m ҩ BR f㈿~BqRedY$ ýQQ"ZHv/>^z^5IN 춯FaG_Ƕ3f_:@b叱pp1*nd m;u6w%l P2r=8\$2K=_98Q Hm{:mGzH ī fy\UTZ>WUN&[enۼ?Ci/nM *W=Jxpw-`)s> stream xZKo7W^v9| 0QZ }hk8B4Yo(jWj0Yr8~=k(oMJDm0!k3^D.ɤ, 5maY#mp3Ph`!Addȹ†TVH Ǥ?B)' @ B b>mU(%l/J&AAyH{V M@DLJ kgX't ETbjESPyX^fH(BDOG:@fV²R!!M¨hI(RH\ڔ#[ Dr &zr&} Ac\tsYBsZkfQHʀl :%p&5p$6)OJEliJ $p&$\fD*c_vp(U$8׉,.l8S@22IApD(# ٫7(mu(GR (gaITb`! `NۂJ:+B rbf՗ ~w^W 7?}]Z߭ƕY}\Ņ/5-. rE_~zR|o}Po,BIƿӪ/fj67ͥ_v.\|-AMY٬~?X>4U~tjܨ >n1 C) oMI~E[!qϷyPjNj&}VibmXK|b i7Cٙ0߳rq*msKʃsqagCeT*;r"|/ W~^񟖋JTMK6?F5]# knx 5xF 3vlȧ#j^4@:O6($C!Tj(b4!S!j%t@Vj*!Q Eγ%1G!a W,д߿yLRd1u'c;|򹵃x_IoWm ;os4Q= ^(P]z8yԷCG *;{Xv" ~y\uqi~p`A:* U ln"b1u!d;G`+xL3^ӏ+nEWNo{ }Ir) y-2\ FK!#8)Ξ{s;bpg4͍8oɻ*<掱5y>WÐ7`0u $AN;`Mq;OG 'ۋ խNe7h1Tߜ3J(Ȝʦ%P /BǥWd5=ЯtwU!|;ӿQYfh]GΌ`l)! endstream endobj 1960 0 obj << /Length 2058 /Filter /FlateDecode >> stream xYM6WhOcFfi:}=5;vd^+$'f ]oL{H XzN^Ԯe Ldf{C[յm;Rf[>BbEbsnmStE]}A9^BpW" iMiLGZ$ aڃJ.zˏZ^:/f~o#~(#Oۑ5}$,ko-0:E5q믿Zl c`1XEćGQסJS8Y~Dd@yUT[ [I}AfUUwެְd+,v$@4ʚV#D$i m8u+/Oq#I> pnմLS?ygmzW3;2ԡ$Èdz[o1lg]'"p,$DYTm^P !N硺yrq3ӟ=Nml| ӥ"d21{/^T;_cM3L\gXI,z0@bHޭBlǢGޒUP;:sa؈~>j6!4>0vDzGFԛ j8䠳!} MBH׽HTtn!PfKc Øog`O$`MF@+9~tnr!0Qm^ NÃYuMr}cD=8g&MnMQv*}Q-Wy):> 05AZ;Sa7A\ J3+PR˩[PaٵRjL< )WܿZcHŒFBqnx=p1?xvq{Ɲk5>*UzNE(?D89L@lz*|Xƀf4L H(>ݼ``ۄZA|KB|_L~$<;_${48$O.8:#7*"fh+')y"L(ݨemJ~D@-GVhz钎J'q"}5ttB6Iz&A48S |:0_ƒq(DӎUD֞Ę NeN~gzQI =,)UTHtԻJ/#)4\UdBJMz endstream endobj 1965 0 obj << /Length 3022 /Filter /FlateDecode >> stream xZKܸWQ C$iO8ݜi@R۞,S/ѣ`7ERUd񫪯I6dݫW߼M67wyɕU67?7ޝ|s[72fkt4luWI ,t 3 .gUƺ0FBm5v4zڟ~(*fvEXN Y /֣ X=s;xMqe OT; (+ZLeyj,Nm޹k;/_ptQUVE=Φp~6n2Nd¸~y4jxq(,`SlS&pv~k>.@5P\@UP DG}LEo/' R>_Scm3?99-fH6ej#i+Wc]hlaS v}u֨h '80.{ˤ9:Iln WZ2m_Jm5yrfkCյ)GtaK8[Zzk O=YeIl J#l|5~qÇź5{??U-MٟLOr<Ŋ= nf 'T^eIy?;!7S'M4)Hv wQM}PoS1j*՚5q'eE+t5)J+ZSz^;̝Mu"{N{FϮq &g`6"-R n,T*yiОGmϊRr=b:!' ^t33V#\ ,$lG?B9m` zzyv%E2rW^c,4#g ;0Hta"; EK:>^1OPomˏ1;pwws]j0Ga1K8> ~>R< 8 *-Bi2}u2.M %@(F!|aEtI1h%G\lDjhP_qX rdn 2T?G[ff dHLIL&!P[& oA5~L_KAP=VOpAi\&-aL'LtސPX:VV[Ha f݉DZ>z"R6_YeWn?UDe%q>3%(l}<" A g/.0 Ƙ#TtS/^quߊ.r.[G;JpFגb `0)3fLsͰ=pޅiG=?QZ(=% m0Ajt:yj1RZD޿L F8S>u5+%{n^몑 tpjN :===72EvlM4Їg+XyLaRFoB:UxCKҀO"M1w{~ 8*BD'tɅnŏlcPdkf5L["lBs#XL˨iI(u+s)|zX:4uG-H;B]S=ڡcDc̪אCTt.BBLlb&iyM6xR^(N،\ :N$[Q& Q5P#9M p=K9a.V}:8YA%&. C-s;,." IcUU\&UǓº fz[ fJcbiieBhV*B/:lh FqeW+5ꭇ((yeeelrt$7lƼ//ul:ZZoR&]7ӌ3T"qǑ4&B.ë<Ȫp$sYF s}(ދvUjfhJZ(SFyL%>-)s,5\!!L {+ hS$o\)UVMi {ŨnLfJEwK~y"<˔q7~݉s+SS= !dtx=\]⥙!q( gb#m&XY_&pjScJh+l1p4D!Qa!R@oûz.E&w/|Yg2}[j!! 2) NƎ탿sz{ОEE_+P0E N]]#$KH#z1c's Y~XboyaZ ~` :UGZd> XOVlCEws uo9T|dykuq)u<֮!Ǐaf3h:a렬t[v޹ʛ,]ȽP:MtÞ¼=Dk!a2pyVDoZ@۬)~y7XNB@7BfBiwuHCփwB;ԷOzH~4N2:%Mb;ۻ7"SuP4%~үw[{v&ViF)wۥuSȏp[Wߒss{ى;r9EOu"F^> stream xYKs6WHT0tęN-Ac7]|eQzH 5mgt>zyv~Ƴ!g,DG3a͖ٻ yeii~%ZtVgޗn?}(Oda4&аʱsK-$ŭ)~* b+K* :-"M8 Rb`I? ^X! :QaZE~miB} |P%Da}U&$`T S M[?`QZa$ҝ&(8Fn\DqLP&QV Q"!o-*|M2Lk 0w;6ɵ)y&Kjsz#cNx P\6Yhn(mܥ76,0LY[ԝmj4/@ɔ#EHh=c$pMx^Q˸)Tw`{+$) .fjd!4n~2=bx0jc6dyyuN.QR))tc?#q4sx/Izi#"f[}&EńJU0+fX  E&(: Y\$d$.'q%q~]%Yv_)7^YQ:ŭݑw+8Mh;hHx|=p4|apR+Jc%H0khK-[#m ,ZFGa0Y8-8tm*2a% RD'Tw `y5VRy(d($?)Wg(So"aՠ>+7{pۨPlÛӄ+0|DBӐ,:&'ljgz5'rPr]@Loa+edJm{|||r]إ'ep Q!TrA3Cs/bMk+Khd 7"JYoEc 312qIKw]+sr.؇"IX$$3_H)QEx<&j$hPW Zlt)ܻmf>l*Q{6>i?OіBD {!eoWFȏyҡ*KmoBrwu!BA1ȡo/TA@L I3hu(\lkH-t&O `O#B-4]C}<9} B( $ KN곈nRkD􅭵C3;kZl ojmQ8C'y5 NAԋ=LYnS"kCǞݵ5F+zp¥< *+9}\Jصc יr WKYsc HfGL'6OAf{t[OX dZV~殾}][1II!֜*-f%pKo{45|XInϹti`e09T]֖Z,ôTŀe5a?u<Ě6Z ~!mt=.ZɽJt2lΜrWe˘((Cj1P00 < 95Dw^8\ E{3WPoB#kp:e`c㊰vM܂KU|W s&#_ ,$k "тT7٧I2C&qӗjAj:;갍s@08B@nP9%7˳ \ endstream endobj 1974 0 obj << /Length 2851 /Filter /FlateDecode >> stream xZY~ׯGiI1`; Fx;@pw ͐ {I63{DK쳺k*^$>œg/REtuqJJ)UϵVQі5tSYvsΓ<싾\ۓXvW-O'HT[s'7wm={!ɂsaF"rC~.ꫪbkU}8zUAO$|vlKXe8%uM{(~ zowSȢb_kbf٨yXYLl@v<{̄ 1\?iw43`1*Zjӕ[h~_^v߿Y8p|cޕ7b|KޖLC _:l6`mO j>@(qӖuM]ɝVSA"O8]+v&`jнĉD8KΎ&$7qqĨ n@lTHGszZfRǃU罛U~!1}UbI-h+4Tu4ݸm/7]mr渻bY-R^Hni$*33¦/hwBS6OK/o'#.A߶ Iv%gP9F*buIB7&4 1[? m9,`RȫeC#D ~I1QUw}Y9L"z@G,^MZDu8zh}&Y*L>Z$lx7Lt &❓C%l.Z4:V13HvO:E=V6uv\nHJHCjlu&zL=N*;X DOab>xed:is"]!%I A3X3Dt-tJY+_,DuE=6B;H#Ef@ 蒼-i|fy~AJ%wՠ Ŗ 2ӎVno7L80=e,h$$_ }GOLo+[3=YfCK#:r'2EP=]/[w Wɵ0ZWSdlBC+a3Xr7Bjf5" ^HS/ʘ2>\҉Q9 W-oPIg+vj^xT :"&/lb0ÛeQ'6myp{X |8FY>!S!3;a~ i<`OE08+ *QEㄎ`dF 2AD/#/>OjqoQڕa"d/"&|J0ƹHeQ??7! }9o+ w0d ^}q!IetmK^Im}q :$/oBmϊ/;ުHDդ́uLd 16-XK]$or3B ,ikJڶ:KW`8@Z{o:>Py'A@w"FXo;bYSL~[2z h<-Ȅ|c9yR ~os?kye&.WjbtO(#Or, YA>!gM+t q2` C.gy.//#&inWuyu5CpyKK_<ȑ endstream endobj 1978 0 obj << /Length 1544 /Filter /FlateDecode >> stream xYKoFWX}/A KT@ ="LIQξ$R,;-r;;72n"?NO$JP"בdHő"E,ktIl={ FJV !??ui[ҟo;w"0"ID4 cl/8xj{mᇹ8o m^ޠs1z穙d>_[miڃJ`UrcA4A\Jʅ F#' 04AJXJs.>e_` E1HH%UߕC?@DP1uUAFHS=F!>:ҽ8"6NwԌƦX*[V螽;hs E 7DHkޮvnL^zv*f>Y^,i3D;)CY3Wo6"6NXr4t%"bs:gRum"b\20BTVd:NH[h6BjCK܃p(K- ^P45O'o C嗪;NU p&t_@=O,{U5[}tmcDynk- ʰMqbhYWx,ǂ݀,%f<3O]XQ@f׾1{Lpj_*'HbdM g]}ux(VsO6hI\ -I'ΖS007myq93OIXIszUfG7u Mkaݴ~u!Xukf'UYuHo_/^fڦAпqxx]g:ys݋)ö1S#sM;fp^Mi5&4z?tigK"_Gpy_k9C%C  ̡9JWA(YnI%ސw ֭܉EB*1뺷;`(B|4aDg@3d᠟J'e:\ vqS'jx%Fd)9CĈu#]Bmse~BbHVp6+i:0KOA/&|ZojrCK11wd2~=iН)i˺H:V؍<  cBG`pgZ,a> &!7±h}( H9=(:{CtHD82g?x=mm^j#%]$c[LEATΕU5֫Q}QVԖ&pLbz endstream endobj 1982 0 obj << /Length 2769 /Filter /FlateDecode >> stream xڭZ[o~ϯP?@ĐEm i4mqZcbM$") ;3˛Wsr^囡n/?ճbc/8t$j^n6/6OW{.HG#~bJ ;?j\/ Z.تuPS9wp,N{q :0 MyiΨ.)/˕\˫Fr[Eu)m^h轮piJ$|1]/y]j ͨJDr]G1pFCY/UW7>֣zyQ n:y!)L7)Ԅ}sˇOٻ-$x~ևr,;8RC>ysuq6D9Mz+,M}VVفc'Wm% 9P(-1TAiNU=-ohk_hj{}0&ֻ_)pKxHo-ԓBwP]^~꠿{=A DaYm\E"BS`؎/m~Ro/իhz>T3E}7苰|rf[~%l{6|0 ƻ֠pym_rEie w7Y4zqUJ0Q_NeA'āB>8-UQ~y'lwzۅi2x"%5?듓`^۸I^bHzqYLFK~`x(]6K'dX!]O\q(sWORkõZ}:s4__t%xQ'_S^2"$GQgS[Ѭ {dqu0\C~^"b5&?LҠx=asFU PʒN}TSr%/{`pw斀.tw0KLEqq:m >m"oX0+/{HcZʡc@[Z 1}c ^@9úʍf7pg#˶$"_v{{V/SLdž2{U:~10ZH!ϳe@PȫZ"֮c:AUC`KL3? 'Ľ#Z\]O@UʝI 'IV )51s OzJ 0`6KrMM;x`[tv5cr4=9c_,~7}?Z+)WHFMQe]!4(Tp |7z@P^2ĘaYXaBֵ9d聝;\AUeQQ+95j[ 1c}ΪA[5$*(SBT>IC3>W1No؟mVuE%KN8 DTUZ89C ϑTl* R-ٞTFAJ'Ki\O*`xT_Z^L Jڹ:5܋׳X]_ƕE#ܾ,VB\w,u .&λBw3 - AgD%5e,& 1e.<,`I]g7&)2S0s tRoI Crte5d[35zb|2hMӷDv?Bm~p|RΏՕf& dfUuU?;cSOCW?07z<O f5|uSiNXѰ4**>yzi`24sE9:W?}%pwo?+H05h9e.>osa2bXnr])P+*u|0QXB1F@.y䊊յq} ܃7‹qsLsN;Ihڛ;ȃS] Kl*jA$l ը`5\;:"Cbt.Ǩ/ #(4HճZ endstream endobj 1986 0 obj << /Length 3264 /Filter /FlateDecode >> stream xZ[~[E"҇h+\R%) 𶣵MӠ͋pΌZݬ/^IUdI.WIte0mܭޮ߅*n˿P5Z0/`䮸./G*

OC]xQ&˺e~HR7,͒oJ u`4AJT V9o[t.2@ ca~9!w"L='#iSbcBGFoeLw`n{v؊Ŷ;Y9]pԶ&c',M|47XH!b<(k7l=E>%& 'N;8#82GJ]Uj[0CU+sulRPxhHχKd!7pk0?XAj,<}|FaMHxSRH?c5De*ӌ#:0W>1*|YVI5LPG)LݔRֽ#m9UQ[@-Á[vwX}"0TmPAm-%Exљؕ4[Wq mZCZZDXɥhA2P: =%͑JC䊡D$ի7zN&v#7/7# .lpZ R vzxYbV5]-K.ʱ.'@1'TJrJq$oM^̊"*pf 9~#\@Co~߀t$T O^<^%1I%ƣ(+Qa=}#A-Y *D wj,i'w,V~ɢFl-{_ *t2/j_0N-d1Mx$P3}̣c8sEvȶj:W|nx]t<ќf<>9q$m_0>@nLd=b ߕ~;pǽ:>-b%行@ڮzm(;)UQ.QN `GU c~CRMt@iV?N ҁu ˜bvK@XJY?@qshK|M8k0]uE0 c ~=?c4걵0zhvzG?!n 6C@vXN]IuѮ7Y~sS5|5k`Bu,|)v>b"j-;dQ_dOgb=K[ ac:Q8}[1WM9b,BQ/#Tlx"T"u|Sl&b-}{")71+Nɦ IG A(Sp^xhq`܎ös:WsݰWn+'Sz8vhX;r1tԓ;ZbSAK(!Bf,u`0x38_5fFbX8[`uBY5H#$ ~O`$!|2d 4/xw@ 9QetB*ǃ [vO,XL7G_(gп+9aw/ Kfd] endstream endobj 1991 0 obj << /Length 2821 /Filter /FlateDecode >> stream xZKo8W% L+"gN`,Ů=$9-[Z2DuoU^f=櫊ůtDDg߼",RnTYɄE&6sEvn]SDa&Ѧ\?m7t룡L FQO8g4eي$Law%VQ}fV@* z'iV= h;4dJeO]a*l\5C4L++㡔fL۠<"imEK8Bh3JO}Gfb."IhKsow5tB-QeCZE.`yfiF˯NRAwOW7tSKIuS4@Ff}Cwg}La+'#[fn8]H>8Fsf`B)BFwV l4'(lUHPR1 ;fJU#W؃+Jg2* UG9{Xe`*VO Tssj 4}I#MwC}D"4't06*VW=0-36IL$۴4t'喐+[a_R8tELղl4d&'= 0L^cMhdlV>\h䤙KYR=rp%UlS7 d: gY8hAsI8/yNP8-ZouVV.$y[PNظ;F8`LqpytnlRg^40a~y*4!-Auѱ!OLf4GЦ>0ebH?ktEn١uKkw)0lc c@n@0f- GC"13_OMԛ }]໖o1֕[ReL"֊pX0|vH!}u=ckܴ z~س TʗǕe_\,pWE}Su#-oDvI2gQ-Wx~v$DԤ(ea~DZ-~ekCTF''n 09O^dRl6w.gؙ$dh߃)FU[r؁'W15\euiD L%W[ `յg?ʗ"lthlD|&ׅDg~Q:ϝk fW%fVKz `'ު|xV,*f)oi@Sx*d;_ҥ i'rz '=N!C9aџJMu5)U,tf <1p4P]S츰d]a)4vO[$eP(ҨNG߱c;WZ9W\I@6Q)utRSal$(֑UսƗES~Gǧ ń'sUa3Ov܏}J0/z"0ubfEV\,''\~J(h}|ٌj'{2IfL>LW^ݸL@"v ~PrQfxe04eŜ[["3Q*r CY,,&3UU;\1NLɿS~W`NfHSMvfY 2MU|+K(m0`XdX<72j<{mv}rgxbũmZ΄$ K\ˇ`KB %] ㋂.kyCg'`BrNg/KviURa,刭4&Ҏ1g4fW Yolr6>;uGlhDIt~ao_ Y0/zz; `QГMh\էK,0f/|~_ endstream endobj 1995 0 obj << /Length 2500 /Filter /FlateDecode >> stream xˎ>_2P"b&HEv [-,5$yTzYE\lX,]XWbw?n߽UQU"XU~mJa?]i_ ĿULםցgh|˲^w_TG#|% 0+E{9Mug!uh`׺:gGsY|;D0mkrYBS1| iHe.9,ߗ35 a->n*F *`w'2ݿRۙl΀<P{;s,g{\,?`5ApsVɂ#a8[?ᨨZڕƔ8Som]/8!n\XF DorZk/+lW27yg& G\lԏAH$Sc jۍtD GE™q3QlH=#_(A>0wI?IzaAS:v(-㍜QG,FԬC&&—q8Wm|,aiX=(0[w4a v4H-Ϯ[_(|1#`##$^? }쳊 d FOϚں=ǩs1XΐDMlliS})s1L Mq3'SGڱ^g%ې`8rn\01r8|Q@:`RZ(8jM;˒S&Ds:' \raq8Tnm>>>‚T{uQH7eZSӜ&*;oHaLD`"GJD$M|a`wSVTr=  %2lUJcb<5W৺l5KE?՗X~^yXX\cc oiQ"[xP@ ﳳڢ-2wް33Ӌ  Ց}#eg+& j{ xKN,տEt!-f[QSE`V8pQx!ǂDVE}8GVoslȈ uf'k](h0 >K{BoG*RKN yVR+vG08U7پԳ+Y5C#nX)1"9n1 쀮C(]oc87xե?Q0eq:}#X.pJ|U%|/ {}'\!ҊPE5tw$`> 1'T^s?oovPt<8b>Z5NMeW 4^P(?Ʀٔ۔^,M2}\6JK: jMR纡EIMF_DdEH 7OWu'CP!kv\@0Y\6H`OMs$RUOA/h?,0=uY7:݊7 ڗjċY/ f5!-d8Yi/kc!ݑ:vExłM6gi;0(x3s@?b6RcԡWC2~vfo(y<5em*|:؍/8Z-I>rrWo(?yƅ:ǀq 2 a'F/\ B.t85_h,3.*ؙmo fڕvlGa\()c_o%#T6Vb,!6k*A14L;Wd lt,k9ᖈo}d,Z-] g%4饧Z0[--v秗^HɝF4VN|ھFp) endstream endobj 1999 0 obj << /Length 3295 /Filter /FlateDecode >> stream xˎ_Sf͗=$7qA2^zĖD,EHjg&ԫg<5 j&M ߾]m2?O=lW*ߤJ*Uby6Jov*8|Ne B`syve'b3!ۢtz0ƙegnTUp=sUatz$TwXy1Aq5UӮ#˕~ Ǜ`/#7ͼ;}8ͅWޡi`+.LĈ0I ̀ XĉlSؼ ~)i\v@@"NE}l( s2<'.VG:l?o  ֚qiE/v́(4ñ[eSBR~G/3SwŀN8gñ (v_xg3IÉg-JI]_ޔ>8V,X SeօmmKDh\KeIhDlETWh]Z^:̩d 7jscnW\RuH*䍴A/t2=0$b B[pxA-1B +oO|6s!+#%( 1r԰szjh.}g+'1A|τlߗqqɚ*kh-'T;4lkz\݁I @xW֍ $L:I6MZij{h ]‮hE^9)q"Ec\V殲42$Ip/]Q8583 8*4ʩ\iu(ͥ*{qb.˾2X:[&!nlIRr)QJXA^S]A6؞' HQ(.OX%תF N VK;B8{geO?sIoJAS֟aZ EBT]ĩȸ_ƨWDztgѱt5@fex) u~`[):K@PɯU#C0/<)6-ܵ6 ;ȥXa") T"p P:+z(&@Z/(6CfL $bry%`IytnOTV:'fDww%\>Y+HibC0&sÐ5Sݰk1ɖSfX@/Z`alxjVlb-} 4uM؇w$.3SEBr84&Ý% RDJ8yU^Ye(FpL~7CaYu.Sd֌t@$hq9y|ajxŭ#oӍoZ\89g07.Ye 7pm B?-vx}q,yJ8UgV .}l&$wo7,J!^PRXpp0?CKsT3qgaZ'Ý슂UG )iPZS'/϶x ]Qi ig+! $SIOg.15E\р'r)^_В1%\05L&}Fp=kl/سC ]ܮ2_zMOt*KoEу|ñ͗J5X_S[TWzZe?iM IR jV0+ ~5e".-g=%y6S88ykpXZ,@z7 ݙ endstream endobj 2003 0 obj << /Length 4273 /Filter /FlateDecode >> stream x[Ko-r`_l2A& Hćv@KDD$5TuUM5' r~T}Uu;^%W& YH$W-|?VWS^=\V镓RH'6W?~Jg{]]@JCo.l9;EյYUV t׷U+1@֧6~U?[#M?*:jT}?e=~"q)'M)ˇP=RҌPi:P:jveWV<{0O֨DD_J+dj&|G gHPsG5E@d]]jƍ [V='[pP 7}癗Ӿm"\]8fI2sX)fUh**TP ^WRBq*!K^E?ATe a KrNWW}/J淪Po(°3.)WڟB>(;M2ۊv{ENP<}Ev$icN}.S"^wxO:6m0Bdqӯҗ{У<ꕱUi?U]wv[;zAn#h`JxmB$^ֳ %\qcl2\4^ofu*R.fe/uz\g"5f DFa#'“.ze! {Gw2XΊYt/q b^8mA[x ƺ< $PlYޒ r#o5Fld5VF00gWЏ?%hO4ޒ}B*XTYY ӆDNeQN^,UcRkXa \{ <O\G@,tEXX-`|؅VmJg߀ +i*HENk0<゜b>pe}їC ؜o_ Ivt5&jNWe'-M!7Oh1aCt>r"5f T6nT]V4u9biF_ ]NB5<5oqChL 9Y1FXT)XI11M>ۦog`v͚kYHd©z6 $gurQ@zu"!:m–ʵ8 ]eQ>u"R(huͅF H8}^׼cH+;HkD jpM0X+ aְOsGnA3?P%Xgrx]CLb*7]aiz_S1H 4C(sA 8߃~`}ឝ*6~z2T XGK0ajb)Q4?\X[Q$Q6xuxGAFŒĘ&MAmaA=#N$n4/QިfA:MT( ;UpJr'վ! ;ϰ 2V('=[Y}dY)֩b~x|&v-Ǜׁ)6I=@^@ RTߟ :`F1tRlBqWK0]aedC](̙ǥiNy7 Է,/!bxARazˠ4O^8 @7pn]rxm>v"Zg@1]53Y3slcێLF6lDžeyԔA̺ꁁ.BUq:WqhAGdIhHAI4Y;uHPDlE}ӅQM/UN5cY~2^ U68zzf\"Krfȳ#'C⋚6:Aj)u5tJ.? ߸ݍPs`pSj>0M |sx {{-3&o%_omzw?16VGW 8(;2FL3vzɹLEɹ FO[UG9<웧őS܆kb;"=46r 4ۃwRb42q p]@ BK$梦l/a|#&7 ƓTX;)Iu~ {\M|J_/`E}rY$t&2JOJZ:%S':uV~VFt euHwI?/o||9{K<eF83@a;>?ǿH02ЙzmۻGӻ~\h=g:#:Y^i| zDBPTS$Ev}tZZ~A#¡1wwÞ Yj{Kl &pK8|N844ֽ@sx sܬnfc`$5C&F :xukJz8/p7CzL eR w__u.)ʓso+-vKrIF93,]YluTu$Ǧ(]N@թN ;? ?:=o v?Ed/w/HW_'r[M{ȒPzP~”`G`iK0^(3LɣpD#ze_x#cUli* ,㐘TvRw . endstream endobj 2007 0 obj << /Length 2374 /Filter /FlateDecode >> stream xɎ(`n6`ω @>PbK"E𿧪3=$Qݜ7ϯW>,M w"Tٟ6/`J)d(7tpi'ݿ ) Xyc7$^M^ z a(="ug;Ϗ9%ycV?,;=uӘVtLHE3,ҌrE\A1[T[:9۝Cilxf'#DZшD/Vl}{+\!7BPx59"o/,5vuMj7α*&duk 4&+r|-HnB{q):#EF.DC}9g巃I SLMpcׇ:~|[qa=TzʧojS|>\ 5yC'__+ȡ)5X^w#mڅ WNU!^@ޙʒzNs\Q۔h/Y][2`PVm }'䐳_dJpK2al0d^K+ !#:#;)AsWd;˔mdYߵElo#ϩ:LZIIXHNoDXM ЋvF 75 `\j#c _Z.$+B6+ АX'5@p0# ZXɬF;RzmnvU\Vuh+*vAփb ^9:x5f<ryr4ӀGǤͪ0iapv61ڻGG-rT8ВIpkLbcCle0pt,bv\n-_U&$,#fa}:2wFer@"ߑdS&;TsKGm6lf4vyoRTyMIfh˶3R&VoTk82>z˯Һ .eu' C<Ƿ#]VsS^* Z+}Z}qQ}k;1w߽C (SŬ!)t8NiY ⿓>IJsiy+ :Ma֠ S3fz1Xgz*ogT(-pfv(Sb{ `+MBYiu4Vr YBjNI3|)}1ŗW Vԇ!"𣴅[+nB@"F}R5ĽrJ 0P$C]y1c=6jP/1a1 Aׁ 6l- j'}XH;hL'/irKBK´]]ssABa1L&Os9T+ r OUתelDVy;縠j2Ui(#g*n&+fEq kw~> stream x]o}*g.?E{+z(Ц@}Pd&U\Il %Ev|AчhH _?޼y>WB[Ŋde"XlW"!]o&ǡ,eMu&;Zi˱C.]"Y,eF$L%)zs$Irf\sfa/͙-/MRDDк2\>30Xm *DhjO.pW7ێdz7eӑuU>5<&) ò Xtp61gy{~7[o(v0 ]6"QK!mM$}-W1KJl(^IMKJeǫ3fQB p9/"(˺$FvG%I-Rk"+xlݱ1CtLPJGMv9*(|humt22O,* K\P`%fn1v<)X)KKifeң-tY΄ȳFh;zt-dCiۑqhqq+YQ(}ı:Nty᪄399_ʐX%,b"o}Q}@fjh~ LX䈄D81=ﻐcX:VdxB^,xO9i7&[T/*0ȵ7JZonT1ɍfF!*UoRV %uM6SK¸AISAd}1F"mpc1M HN_!1\^!tb,bcHR*hiYS4 )օwK,C0dkOre زDK_XzX, }T=R:E>/a0/YLKT#n3hۉϘJPȳ˺=ʢrAod5JH}7MBrTdeq_-:/` TKrK4Tn^nE~L'yC׸-ͅX+f>$p] 2:Vk{Bz*Ն{1Kч݂Llh+SfxzŨAiPl%][ Jp&Y .vTe? YP]%zk&a<% \uӆX} b8B$=}*Bd&KCΚU n'_QA7D2!nm/ʬ_ߊţD:MfAODnaSH1O'_"=Q>7'48yolS"V\7J맷p@S=<: d'0ȓ$9`]U_R>8К~w!*7_Q;UB%в*,8S[20q=Ud0YRҚ=nwpKm-tKc`AJ W*^c/1EsoA˶4͵@};x{r!9X~ʰQ<ذp[7{~WI,j^1BUmo][d9>5zD2$ a{7D}a砧Pկ}e'c1,9]ަ .-xolD%\睫.ɼfmI;9gRAHXvvT 8S 4R[FO_Lu5.2C ]=r4>V7JX*xӂ֐YJ}W:o|};ͧ{"fQq(Svu?|1>.L_-V"4`h8 B}[C)r*6v}qaGOZ,fH[Y3Ц=/]ɽ䜩NmD?_byJ=ë pǛuE={IP0_b&ˏ <-3ˈHЁ8Hο!;,E3kb L/Vj> stream xZKoS"c.ER ,v! sմ[XԐ ^ԣ[g)[Y"Yz|Ul{W_]Ԥ]nU]*~.臛[SQɏnsk9ѱIxyZX"vN%<--3$`ݤΚd*sW5SX[Mnnf?ܘ,=1U0'Cg#oCid6+d]bCw-n)N-L$Lvd:ؘiT-7a_ycí@2?1~P)8ںjCF}P'Px vܘtqafʘ ٯ|ܘ$WIo_l1ܽ6C׳H9tt'n;ޣlJg1T,^-^Z߈ZŅ],gӪ۫&bU+Z׍cwՆ.i-Oxjo6Oi;%#:0,ѽC90ʣK bJLB?R6cb|nL2cлxY`ot z|Uo }>^*":)b-ZSu#ZpӮ21 \GN>l 9\9XY6L>y(`}vjU/\^: \9CF 40^3⿋2 6ͨl(G G` pp! 3 g#0p<֌FD #8%>YIDGieoiMvݮE Ǘ؟-RpW%8y.!F,Y(hxct~?LFnZ4 ܆ru.UC뷲.r;)8ZpI! ևhC G}c#!&%qvO`c *1a lIڒbk wL,F<utaWq %z4QSXbݒs2*.D^[{̜\gU3̉ی ]oQ~3$az$ @:#?ܘeE+_C^ʣ9 ])'$pSJ?ڰ endstream endobj 2020 0 obj << /Length 2631 /Filter /FlateDecode >> stream xZێܸ}W4H,/$:{"/ &8n=#i btb'&/#KzzW?go.]0|u[B.'ʮu|^gUs={{SU57ׯ~^⭒gYJau5qoe6XulZ$msca*]& 7&Ye˔ g['`E^.5Dfֹx+ʹ1)51eM2 ԪZ{f-,㬂wֲH>Sx'^qYN-~ϡSA ?~}Uv `JdO#,Eb)Y5T2g\ek+%+:;TuVi ` gJnl5X/2p$NR-lYW(#)=)Z0W *A#*'W /Es?l_شT'/_ח&,e{j C۵Ml7Yv]"qZHA$CABE?2.#(/}baxhY6 {5H6-&8cp5RZxvv f,4Фo!Δ>8+%|ګΒ-Ai4֭K*7΅: OWpf&9ѥE $I ;9~pN\Ӎ^} ҧk *3pQs~]L\x)h;\9lBh:GZc%d $oN~gjo=<gi8]"͇C5؋^. 'sL~" mJ>D1Ι#?r"w=|ःzBkOU'op CHKJbybV ۀc<`=B&o> k Bʃ=uS>,;#̳8vdJ% (c(xs@P ~KBvG+_ 5n$nwG3x}G1ۧE\]O7I" (#Y2r&&|@rH˰@\wA5q@ZF$ST1w1PD!p)D1C{ :E`']TW_|]:-v2:`szjhI]PC!Re}-kRZJGv夡3:;JnX!ˀL]؃uMJb*Ľ@ A=:ms -zB.~8[맣C23}¤ݧ.GuZaS3\6m &p_1Nxi8f 3Jx:Bpgo;}t_@ի׺#6tTz4Wфݴt`-qUgGuؠ_kK h[hF{cOs陿ۍ{?*ۀpP6"4SEEHݓwuKqAy`7_79{~*L0O:44QX~ԓzL/nYٓ,1Yաx ٮF$,~y&_ J.PDK1a(NÈʦ 0 PaȎ >{-/Qƫ,;Íi]|6Wa/ +…bRbZ_}]|Y]cE\cO5a ̿"҇+N"`aB38>O ^TshqFwR*1"* +@BL.GX6SViW^nO,TS]pZ2Vtc/fgc{3 endstream endobj 2024 0 obj << /Length 2054 /Filter /FlateDecode >> stream xYKoFWHz_|E\hC䰖hD$e0ޙ!ŕ)Er⠹X/XALQpYԍ7wU=p`4:QD7C`~mju0Nnq-Ih1 C΋ncSdC lU:7s*ZN=Rk‚-πXM؃=x+F4K=A!Tt3۳jBS^N4N:%VNZb0 ˪Xּo2hn 83]/D OX2.4v{q-֐'}bx$^\v/I-{%*m뺿uQ8/'b\q__u+s/a'O~W9`I3`nSř:F}_=M\ӎ'k6VffQxM` *7"A/\WႻVK1I!؁9k8Xcrk0Γ4į2E,{BOIdok{mCp+mS*T_m#TMdrPt[ ▀[ƍZ-|VhhåExHFdݲKZI'? :©.-Wt.(-@W}M9p`5sXaTÕ=|ަg+t3WUzЅ\qv9MҲ~GqpN675jmo>#T~\E CD+\@mƪ H'52k(ˠ<1K?uͺK9rT_g),c!sØxf/VpϨ/f1h{! ttǟ {U(~hcWs?`Šx(*y"huOxhi]wi),􏁫wr4Ӛ%[q?7o6eQ6xm}%>ZM 1f߰ۇ$P"_XaK_pM3(p#DqJo3BqoOW/,N8 endstream endobj 2028 0 obj << /Length 648 /Filter /FlateDecode >> stream xڵTKo0 W(;,Ew|[wp1X ۿpgh7`4G~$- ZܮߛfhSԤ\;1T1 +] hGܔFܷޮ'׻q7ARp͗%FAlZbކ<,ӌHc-;m [oX5sL2AZSߥ$=W('.}G;ulw)EJ@wé:|] 1.MKn%rn8@v9J'|"VGG %{/i}k\Οl_r`$3f/' endstream endobj 2032 0 obj << /Length 3346 /Filter /FlateDecode >> stream xڽZ[~ϯKQsEԥh n:Ede[][r$9 FJȻM(^b_}O_z$ mUlx-X"ZT/:^6nU[զ[}WotU?kUfzS%7vجL|_+p +zee_N-6[Ӛ?(˶ y%:j[v~A@YJ)'-k83@qY˕Ӡf+fz=ÍX6vCP*n=nw}UlUSƎIiDwU\̅71pcNz;>K?&ڶ#F |d-0ڵ͉[, B@OR+$l)\B+Du fd}ZP I 'F68nTf0(M p@]`>qS=˗~A,`6Jem>tv~ʍVn$uLzYJn!t+'w n(k1gI.vw9 I<z9^)^aå8V}#,03ވ^|ɵfuC!(h9#DLm[0<)!b^H\5ajHIq磼?Ds-sDcD 6*<6~ov}Yϓ`: 9q(S`5'6@ҸN.4H[[b:v*M_ZwvZ>PG]ryv !C$1fZ9oul%ߎT>\MdPEH(|m|(g>{^3C0a`LΝZQ9s}>̭ %kPufVיJH/ϙ-IjAi(5\"7trZ~)c~N/ĀAA*}=4򨎰& I@P©;tAe,\H,Q9t쏵N98o`0Z9a ޖ#x_)h X%Y2I]3O92] :H>k9s,> 6F*VA8I@QSvb`n0:l[,lܿtH9E1#&%P;ܗRVVsaNl,͇,5Eo齳Sa dX$h6hqG0@wnj0*͋d}ޤeU>:}h-:y=Ibm\Q\%~hb뗦1BsR6螼&aJl d~V [E$M{E"!BGG ܲa 8 E36Ҩ$ͮFe$Hf G. @b@^yUTŐ%*UeűkUub '8w>wTY=!jCևnLk~c7uO`-2ʚb*>*]uŸ!qS!g^RP)Bj_A}hf<JӴޠeDTGfcv-@g.(0χP3{e?0?u}y 旭?_!qg שkA$+Q6 'n)eD c!;Obs+ ,'%[[]zߐv8ȕnX3\ LR/./reuC)-^jw3| Ba y[.i2v㲵׏/%Q7F&Ոrf澤02NY>ģK 5,苆טP(đ&d0f>ɤF<2 ,NlaoCݶ35U[= âRxCqn!6m,7C^ɔA ]0JN(W|a/'M(w he2l/ӈ8cjxvā(5L((k8طل?˂לp1B\u8!,?VmS@xH UA:|haJnd/ WUm endstream endobj 2036 0 obj << /Length 4119 /Filter /FlateDecode >> stream xڵZKsWf*dnNyqJyJJCC*|VO7 HfFZۗ!@_w#z*^=rջR\,B__KJ9gtӾliٴYMh'ka_v4wt>ۍLcpyP~}+25m&@+J a''(mO' }v\0+GsyLiqlu~3$p̝1 sopbJY:9ȌWQ}Ufh7co)$ĎڱQG\% ӱCWmWCqiV#@0Bl߼B x8$G5r@ <%?*,>*fnIZrςpFp0p< 2l(jC/z(Irva\fG+3h%jj:%+&RNh Ldq18=3RΙ'}Si}"o@t|Px<մTiҎvFS\VjUPC12E `l}q$_l WQM{zvBl[ cU&=X#7);Tk,-xCqpv-%BkF@Nz[٥د"oil-kzБg`Zxq~@LxM~8FkRPFr6kfa?U]- {[lk1jF4:A ~5Fj+{9Zl-m\JNUeݏ}Z4(vdcyיy1g'- H'M`VW+ݧ?EI΂3,pFeB!.AxShŝ]|ů:< l'Pō>[Q_4z| dOi)>Kc .f u^+ꗀ#lVAw(nʪ{OfZ1cgP~Wڇf#mYTs} Wr~C#f5hH{z $G/Dho3@ 'J'˅&Q`I>!XQHfVʮ)LG8!E FUZPh G dކms) >0}-|G,y5_ Dv܃0_Ы|eAws.%*X0C{?/cЎfUK '.uOڸ`D•A,x|`&޺?1K0%|3gҳSak,Lpƈ.='6)c(V ]}>d9{2eG 'cG@]:bmxwmH}$҉}nG\#>k12T/3'{x&yηD3AOʂpej!*cýyi Re)™$(4OW۵$Q&qSRO+1L" t u*Dw.]eS`F, 47]5< 1(3hט ֵCys"n3suDmC}11,IڡĆ8bIr掶&6OdN#tp%Tq(&JY5<}(oeSvP$ SsZB`[F L5/W!/"dlblnEժ> r d_3KJc×AB2aoK!1ߺb P)ӱ$[g)^PM").pQ(&<%K" ʛdCd>2~TᮥEng$wA&*!F иp@9ai%.C(f5 9hq,}363\ f 2y!KI nK6/b9 UhM, !z7ϥȓJ1/CmW>Z{j.=jh.}fvlMAӹ]QU1u|԰q~{{',vBCb9D1DIٕqa'>q)IUvY S1o<>BceF]!2EyCDF1-8f>n\ SXxAUυ AU(_װ0A ߩX`ۺra\q8أsU4[H/ > m45_ f jK,n Sx!{ӗlQ30Eک+9,\{B,Og! `d30ogҭT;5 6PؚsA{ۯfj3']9^seT[ᾲ9,ei}w#.a%Ax9eJ܄SK;,6`LkbToyFbb"q*~IA~rHM v9Dq::'jKvtBЍ`:wqNu ,T,OYm%5^> (1S&}+ϫ;DE}ƨ9pH#qx2ʦfy.FG-_WFwum6 UXp2#)Zitc\M:U=0=9˴kI CYh>@o}_ LnZnj:\F8gf],6|FnЎ\1P#UҊҔ$7|[n!*mq_/pkU80:xɇ,3BS..f< d.^g۹TfqG:,fYr>?L̳)w$~A endstream endobj 2043 0 obj << /Length 1140 /Filter /FlateDecode >> stream xڥVKoF W)N[ @,uvB&#i(ġ8$盏9O7~<|7&eZɒ4H@O!L"΅mz:UDRV-$޵hʽ,5ͅxd,38h6xd|}&ڧSxùP,V|6zuy*lHnA)V57/)Z՛@VXx8/%C$В DҞm1ޫvH4+Mʹ!)ci{x1`x-]~[iVhlE%q<ɳS_WpH@Z(֥/ՏXz#ͥ}8q>$m[M Cv +&?xiQ P<Ə+Wz#3U( TJA%sD׻!ۡ:y"a頇{,]]?ȱ¥R:hrNߕs^[X{< Z$8 8q4o^jq)ƣlhXu>r7/ tcSŒMca៥SՓ)cW03ˇ [aZյQ*f2۪(z BNLH0mr>Η.~I9Wַ_lK,e/b_brA;^ Sk#?Bu$:rG!бg*ǃl/vHU{hD*,{5|\bab6sŌ9uMDŽW)==`Mg%8T zLof ej\:) h&nO] ]۸͑;>?+@J["RoeJm]ĝxf' <@ ]VT -^^&ZPa^;.ٟl",K7}R5.^E/r$I5f:r :*A\J%:V0{5qΞ8Ҍs~7 <=mK d/qXOK؇y,Q^m7 c endstream endobj 2048 0 obj << /Length 4258 /Filter /FlateDecode >> stream xڭ[IsWHUIȬ 8bY*$$$$E tt=R7O77_(?:oˬMnP3n6~e;Xڝ]ŇmuVzO {cB۸X/M3]d(C6ߴi״On8}[6͊U՛}-Kr YGͧ[SlV{Ssqj&|u`MԆ Fv컧:pվ1YȮ7u_0Fqb۸ ߎqձz;@jtv>0e G9V*L_۾{Wm]x2_$swkpS3wno~<@[`1A =n7lF蒙\\kmc؏ջ=Q~ :vp%0fimA3v#q }^fgysjV!¥)] ر,4xZqaD MT"D}[PLTzE]>)ti?6zT0~Z!ϼ6q&6wL8#б"{ÜMZdqwuu^nĩLQq ^߉'^LXE|tDqg+4]e~]fAX&%Mf݉UQM+$ *+$ū$Pty6$V*O|/v~@A|ۈX\^LFjYJ,œcf_gQtk'n½ˋ*0@ml胴O3&o,lRCxF hή#Pwm KALJ ^=0hRdaܶ;`ցk7C51PKUUw?D0\ p@Cv5܊'w+2*SJOz}{g%;6d㊒iF@[Yyjb=>4`hz1s3z@)3iX t8u2X| yp9  9d 7yGR>wg+@mSqja'yMgTе񲃨,ʟ|*6Zscq_ L~!PeD ,VNȵj?t|u^T>nӱr3W+ͩw,܇0 ֱ$DU3JO¼5)˜ˣJҾ$E Q{9Xs/ϩ688"C"4AcҬl ]fbqeJI5#,%6,mo;< vLgv06"B^JefԄ> Is$PE6;o6+\TDGV`™p08 x;\M]5V\HE,c=Z,B'4[?": w4υ+;t=lcocSs /3y.ap- >&|t p.^F l7Obsי2Peę`(TڶjNvp.K;RՁ]Al\0D g^ 5f7>r=t^Iukq*(5D;sM̙IJnmO-Dޟ#p X2!'C95/:#M!„ ? c,2g.x8 ?\%hy+9 7RY>fі0k̏cMOc[^Aż<\0QGq`C·ROkz8bj^i%RdNu_hN-ܪ¦hnU"nWjlԋOqqx)Pxj$GA$R(?]^I$ԟ\H2YӼi$v,L"م0(`$FxB/ ,P s,+"fT T>?2 ^Cr܅D ^Pe{rYSPS"ICډzi26Q Ͳ߳#sBO?g< آvwmI(0/Hz$v 2m˿{~w ʧX~gbI9<۪]DZCۻc5f<\)qhxpyGh@Jty%\']єYxs"+9, hapBaw--yM.,iM1`)AG_=|?W endstream endobj 2052 0 obj << /Length 4067 /Filter /FlateDecode >> stream x[KWqإ~>ȁ(@b#9 9Z- ԫ&zXAt~ꫪ*7~oHFfKٷ2[ &?T=Ȧnseq:x",\2b֐vS]Iq{zOjRm~[]3JH, Tz7;|? 4nY飢e~M IT~M74Py]tZX8Հt;܁uq;NDc湩^xďPLʷU-uIۈQZ[% V 6mu^0B0] *r8b%_tH큿 #|H,m_6<з~[r+Tْ|H g\fmjCH2*x8-7 TOËv| ڳQw4=D0+Ê @ZnYhSb45 eʅ(.GڙTNMdB?}cf="$,!6܄hUjՀ|GZ`Œ-K,-vܭ̮d .!\` !E/e+nPb@Sh@BG#h_Q[ד%X +>%}vnt+$':.szKl}Gz|Ձ?M. 4o3(V`8qε@XwR0:ۚqQOPHzMij'lifd:]U %lx8lZ ȽXɊ4B H^JЕ< "t2Yn'ۍZbl3.%tҌX4<'ɶ/i#[sA%ɝ$LУΥPpF4n8 YLsȑ% Z붹'+c5bt9&B6'4urP>p ^U=N`*Ng“Y2-FmGGX,($홇b=׻}a ;h~(SC=u(znEJ1 Ύx}_F߂9TxVW8n]/9s -td}U64#t cwfʥ棍k:[:ҷg*h7Y8 z4rs܌ YL ?w`' 8M(Dg`lLGHK7xpɕ]W^t^]ZUw59fPQ(q,"Jp'Qp 2z@A(yN>AD':7N.k8hkں-M#fGčI2YjНv> M5r78Hv..; AU?/ }77qQvxϕ7n(of6o?zk FOV 5W21Qnv SK" 9('|g@`K@'$bx`>+sP $rydZ0FLY+c#5-L٧yE1цAb_nf'# BHXzc&w;&BWy }QCQ.I$S~MG.WsJ8ŐP{mA璫ء, N1^w~7?Pa9.:$E|3:G iSt{$k$8ZlNeR֙@h,0{?sIS,Z?f+~!4be%AL=^kc#;5(v=(ґD]J r Hs^;2׀kŸk~$"c`ENs11uI> }g_Y‡p>Pڵs1<ڕ{(NQ/ɻ?ϻY3~|3UΉش81_Iܿ 0N> stream xɎ>_G hY6`L\`JZDS@Rn=o+nV/T|j{{Uw<U ߮Oo*QIh«U0V:W7۫x:Z~磳y&)C nڴnpYtG7b8fщA7KmfiA@_;\i_S5UvaE|[76HS3ګ%iMUneՎ7)ji\>ۊ,.?uašq2Ev=CޕNa+$^s=iW`ZJ;}^˕{AK{G` qYɝ_q#`)bΪ#2g44 }mԫD+qx5g [6 2FJ'AwbA}'|-;@sࡴzvfߪhVQyު,;p~l" Ed6Qk*APʚ̦-lލԮ* օ37u0?< S=&5Co|}VU -PvҡJH[Pڊo߿[u~>C)HTͅ-[/m-Zڶ*$4{M/9}?pt-pf()qHYvEsͺo7k>4$`/FuUl.ҞFsN'rvk;^w0(hf~K/W 8m!m6>^:zbim&xhÃ'r*(MzMܤ%7dkH3סЗyIf"lCM I3;T5:!A$SÍ7\,uE=&EN K9{&Lu8Y~#{R&{*9 S¸gnJb2Ћ* nL??j97K/yNx`qBpE}407@lx磖^$0I z1 忁χ: 1vS$(]$"g͟Uy*E uם8O7 Q(D9Y^ ͞ Ӕ0|JS"?<_Grr(݀#& 1% SP9Au֜ukid[Xz,KqA5va('CNR.h|fbn6^N$کh 3!oR.Ğ#,[8 mGm.&YP1b@=[=ZF|vhB*"dQn<˘Ĭxt>z8o0yb1嵦4 IhUFc!a2s=]A"Xt!o]O?B0 #5"uAMk*B .P0s5 ܎yMҡ} #ż}IXb!WcfphqdRhH%Nl:+֌:A:^/G."rTQ׈*c;҃}xJ V~ c}xwM_(|ez ك5aݸt|eu1ϋ. Y>r@*9Y>^RyrT?Puu8Kbg~oAxfs: 2NꕯTS. Bt043arְO i4JQ-HJFkJlhs]z@ɭdrdƲjAGz]mh pGp/4cco7cGxe`;fFc=R/8vݽB. -FC6!g*,~&GA80rMÍ5LpUe4 3u nJG-384f;ECHg/BpٜY[cʻwP-؋L`]п|+.P%!m7Z%O.s#dg Yˠ[h$LВuw.c`.apr6 #7OgV)c-G.-'JOUoE:pU/ $\1v>SV^`:A~ r*p/Jl/*orooo&N0#W2HL?}ByQoX wѧjAcBl Lξ܆CJlbyYlqzKXx9ͽo4˦{z(Y> stream xXێ6}߯>EbF7 [/)Ylbee %/& bS9sٓĞ|eWnh8pm6 <Fq:/k;u#l,ɂ6guZ 'tB|æ3zS-FNXs4(7k̕QiY9-Ҕʗ8t4pYҠ7ZXd#ZleY<4?Ĝ\.D+gN#BLA`eI*sِZx&+abC`BI!j綖Ejԓl+ֆAhVyo=i^'*|J6tkdNhѫ ,l2PQ@|]hñz,>[ dqQӷg!'wa؍Iz, `y8KY*Y*3Άc֩lr{7q[7^w* u%eߗ#A:߸3mfx8TLVuC˒ZYeN+_4(gdTnÅC|E%SаjTZٝx~҈U7GVU?/ HhS^a6Y2A9>6eK'cnGO;uVvfg}  PDւܾ݃\x%4F\X"=H}y0u-3YRz0A܃m9gv[}<׼BWCuVfh _ޤfٳ,TE]S}gqxv/vVmpF 6[6S0|yTϏIHt\ێ!*6 bO6v54Z\Oxw4) ?l ܯ,\ y;~j}6hFES4ꒄ?14[5@=(mu3|C zMPU\X. K|4ɢ;4/~9Uh jdV EHF"~UtWg,i[ooiϯޓy*G%qn:bKRIB :ȯ ż s}?u_D(} q:草n{+^>Nd@||dlƗZFc.8t~pC8 #Gs= 4np\n/(x"X2sgؚW(;Ƕ;{4́ɯ+c9 d)Izڅrע##'Il59\v_j$yIl]BTiBNnCtDZ1Qju@.;[B%l?^<դX0ֹ:f?`UU  vg7V[2,Õw}ٸzF 8Ϻ>$ɟ> ܠ}6_/kLFgS`cf~i5]wrsEֲPCNnY=HP|\h>>*=Ua'  z]xhχ۫`O endstream endobj 2065 0 obj << /Length 3245 /Filter /FlateDecode >> stream xڥZKW(7 hc` '%aTHف{M6%ʣM.#vu'ZݯջۧJJ,n%"WHS..P51/|jZFDafm[ݡ^56Zm3N:C-OkcSٔ})$h@alxޕUJr._oeǾ˷_Uku$eWtzCU Ͽ ]yVO_o4]Ƀ]]^5tz6gw.?0K0h%VZ/>|xɳXhB`JIfw8 j[ `ӻWR*ضC<`t }6T0IݮL:*YgMpG6*nˁKAL%#9C fk|Vipc9dž]wyoy !e< cYռzq֗i6[2̡{d/db1B= 2gHQ[[T9l%'CftI5V&$?v]' Z~twD 9t9~wc(49ו$<=N*gQ7}CB\ gX?wdz㹽A]]]9I֩UϒeiFO-@) 1lD6d4if0T88,L!C#[, gW wTCy)9}L(* Se<F` E8RqBrf,}no|}v7@PGc*Np̓A0:cLh9e RE+, d%WArKI3/3m.V&\5&?X=c&J[púP#^6PX+6SF_kzbE+8ed'yg*p0aw9l֖l9 3FݺƆ Omb!K^%VQΞvfv^Qnh^i֝7;j< 9o =xƒN@p[%#mfKG\m-L RWn08.L)7X־/ΒeX&eN&[x\P^$6C7/p-DB([k ~&=KQ) nAK1L1d7 D0t߶2&8Lyؕ``w$~<:K(1-D<J*/YA1$b8zʻfeW426 YH6ǎ%A"Xk~| 8piQh,c5k.˃픊|gڿ tlʮy &R 10>.@+>rLGTj険Y/@$\k,n):A&)=/K?d-~SG{D:\:<."~S3PMTK9(D&*ٙ@嫎Fhs 0Q vRBB "T\&dc/r oA:&khL g‚_J\O[n=.zB}=$ćK{Eܷ"2xrDxvX@TCEs:.8;nEg UnTfllB?`[~:_ wK̺'*<ֹDzۥTqGٵ!=ꖗ%67l&hnkw܁x"D~bvB9.|eDFPo ISkBe~⿵A endstream endobj 1957 0 obj << /Type /ObjStm /N 100 /First 966 /Length 1641 /Filter /FlateDecode >> stream xZn6}߯E"^#@.uZ8m<8΢5}P6bV+ =3YYygbP+5\LZIbC-k(QfHE!V-=FGֱ#~^?Rp=ea_M=Yb:0y ehwIŕ_#q(kKbDN:bL\S&gٓc-rF'.;ri peK%Z+z-Y_3R"0=Q)\*0(Oog" IY0|*Z!10IBX'1<,R3` %*`nHm uٔPa!)w0Y0L3JƳ6u(9$H"4b,(C!1"'MӲ& X"zwtJ`)Z2넰ՀT򑒪PX-J`^I 9Q q˥@{%A,PԆ `'Ũ EmUrhi)ۢ60,ʖ:u@L&"r`lQK3Ͽ̕z׏/KZn۷۫풸T,jKggTGx{$rn<}Ҭ.)2?~a^0f}}%f[oK?.W_7ٽJ_^ӥ[cjڸ,~|6wxhqf!G~t6fp l몲}a{{;~daOg>0`>|eX19!h+4|]#|rZ& [ӶL@>mO=bfw!ֱGq]Gkƫºkg-$]?B9@FTyv츜Lgl>֓&ĦGtJrX&y`*og9,q}WA ` I=̇#cq1g3x[ma}s%&EJ;9nlwqubOr1:tore;!-ΫvHxi9y{?. .gWeGHD"۹(=M>|L'jp2Mы~+_"b*^h]Q 9Ub8l2~hԎ7HO3=)nCy7+GD]9 J':`-C|9K:Ķzt _ xJ4J{*xpZ?3 endstream endobj 2073 0 obj << /Length 3500 /Filter /FlateDecode >> stream xZݏ_&f-)m&h.HEr@PY2$y7Pn!9~/DvJ{r)rs D*^~NXԻ&ijIpGv&O^{ŕ\GMU52KmO64N&tEX~AQ)]X׮K}0oy=e{ύ~-˦=J2_|B+)^ z[w-Nr7k|39Sq\Ҍk5O]ŗu]dR%8z l#m|WAHoġir[6@-|'\<{.9Ϡ'ԕ@I)ܔ Uw.5[+9gbH=R= hNt))l>+c97`\qAXd93VA#c̉7S很̧ KQ'%KSo/E OEGm#&}oEN|&H1㑅I˄'"2Ɉ Ȁ nda|/AQҕty=ps6*kRRZm)ޣg;BW;jN Z ;HbBa )iryy}SW \je9lh-{Ιqp>; `C7݌Tp)Bx2!HmO=LNm#[I hܺ*ӝ`3""-6=敒)iQi=q d`{pet/7),h61yx?c   ~mS'@Rwb@?mswLDב+8k9AsųqmdF0{'e-ۦ+{ g`R)@cDo 2 ‹' ؋m\ԊI (+˭fAyBcS 9RѰWyjx%ђsM"v%LfVsOnˈ iFLnjþشAqLҹ+n:G#` ˬ? yMε+!Y ȍs,}`_>@4cR1;5;=ݕU-g AHh+9W;j~*~prU"q0ڮ;j G`ɝS: Pbʨ0PSG,z,2c;@3^֧(;  uÞ՘-.*Η1Bs\}p" A8L[r駝H:C- 08v =a=(_u䓓~7s;W;0]7L koM(]oD˙kuZ &/wѯs֥HGuXڗxRK_=-✕{9y&3*>! Ca CIU4*QO/s'bDlHl2D.b ݐH(C-w0`:nbe#@GJ a»hU=U/r2ln#A`OWǣCUpQCKkg0'_rG?QUBECTCOЏ@̵5n.]BLr6|%4q"SM Gg—p~-@-8e#|EYn+r۰p:]stwTAEtBWXt*ҵ *r0.!G9x=g?8PsGX4H.| o=ôq:ʅD;[-u|]涿;L̈́I Fi`AzLO :x-]8BQNI*&9)k,9)S׳3J|XZhZ;t0}G zXE_M1$z3:c&;b,X"g䃊2վ]V ѿNn[6ʽ7ڷp-2eYB!M#Vw2__DGHePߩupc! VލS3LH 爏;&ش@&,_ a k]c ,}Ky&ۊ"Xy<#_IH_:&d}$8) &O}G(k xOW]l:XaV鞧.zx=yƉeA:I*&6%em-7]#t @lPJ*kѹ0ruvrvYB nY(t7QrANNs3$eiF^6T@#SDO (| Z]7LRhM8{߄B4E? 0iL^"Lw9CY us'9^.`hV1SHLK,0ЋŨo^~_lx endstream endobj 2078 0 obj << /Length 3841 /Filter /FlateDecode >> stream x[KWQSe\&*{RIjWŒH<O53@~|ݍ77毟?}7)U%M2nrc*Q?=~tvjmaWvm]minmR>[ ~?->I=?Wٰ諃o냧ogtSu$zB)Uf2t-ٞ6H5a`Kg{jV;z_ϡl;\uޟN๹Eaf φk<Y 3q*3n:e:Xxtn .'=ٹ\~ĉáY9|J;XyvyH(4NY+=/ط#A§P龜v cKrJơE&D]EFR$?Ou? i 5pD'N9_}xWxp|#Gшd]vNs?y.}s:X=ȫZ4fo{/"S]{zF@>E71|q5TH۱)axkSe: Km `X_Q /T#)tjjC` 6#p:f Û~úF9@3mk1?VU"e g.j &9DxZGo8{/}@6 v .P9?~a%pnD u̱OE)!İ 8;ۏFQ1=̧u tv\sw6UI'?\*m)B(xGxs ֜<\3 wd=V F`[N!aMN{F%Y^A?&*kA1Z#ʓO$F="Goc_}l۞p#q.n_U@J 4M׾# |-ЏC& o!n+4]˿NBL/0Tmdzjx1P6XyD} sFM0Y^cx/w8;'sgsW: !.AO!椲VMiDhm#,-I38("8@H"j'8w5j:~X=W5;8]PwWeξ~hV0l}:q( B}*9 9QQQLH\i|-.@l|%?,Z6f[܉@Ć]F.[Phtt@t?AׁhnNV$%Ltr_A! 6dcGI 8ZHau?ꎂ8QDUV,PS&w1ljufj- -,t%m ɱqj*fsp6,\E?nPb(s"0CpC]J(8VY qG p6#%8cNK*+2芿*D9C͘-N\DUf 9Z24-8SS &jdn *7ǁ$ka"tqRFn:яg/ s\f^M\P<(mr ? NeӉLdt`r Axiq_oDƀFЈm1+LtB{2Dr' ΰ裰:ۈxl KKJ/oSUەC;[LGy#zL׺|F|p+dc4,2rSSg3\@ى2H#:jؙ{8qzHėg+'II 6qRɢ|kvZHJ@Fn6a"!-/0=-,%s_]f-iU9Ĭ<<)&^d#ԫqB)/ً2 r؇7XwY[[~V<ĝEɢhUzu띸9Ϧk&VGbLz#^b<'A'~E#7Z5÷׬qBGŔs3=tP5]U T#Dꇝ$jkY]r`v=p <\Myc,q;-,: -3c!gUs!Gb'i:9)T*산52ɏbb.7^2b8':؟PFA1`=Yc ϖdk8 GӰXT겳*yw7܂;9i;*S_.v 7ۖ{0*8w#(_ęYPD,(Ž ﲗȞ&D~\0\1s2%Y>M5&nKvt &//l$؜T=اk-!/yDAخB2&jLk~ &\5ʌ5 Pf[ulV'KFc2.ܜUJgnsGw}Db}@(6ڔ)ή`*_DlatPv)M4'l$%fY3"DMiJOh3*+$XG{VPRFG(Da9kr5~Di/=NIrqm{$ѩ_A/2{>ay A^z1aB>2Nt^!0<}{V sՎܪ$I_׶ߚlI9MI(_}]oFAR'u#: tR=MxKq|k2+㨘Cbo ZP@?dUz~?da\^^Zyo?MB=`{Q.\\f,%` XQbUjrqQPV(SϊkWJ', Uq"]Mx7*{V2y%8ٯe1ߘsw-ĖM3L1&&H[V!EWo8ev{fxGH-Qk.Zj1UɘX]Vn]pF@D*_N, g7aӈ)U* lw̱ endstream endobj 2083 0 obj << /Length 2885 /Filter /FlateDecode >> stream xZIW ^y<`=bKbLIy<OUW7 GdY.R쥖*2\lϯBpo/2<^\nbqHEIa,\zlx h c6պ΋jG{LXp\F&؛nW/U4r2һb˕ʢai`Pev1I.>_@O&]^kWmh"0 o郾us]LÀXl+ϝ>bbXy^ǿn,Riff(1]2O \$O 2SƐbk:vPI>TM@cpXF\E`WQPW[V^ؖYgEVYƔ 2 3vםuKRV[I,NS|twڛ-@}Yͫ1,ezi"^eXaO;7ÀG`xV9TiZͬH0Ku_|k 4Zӹx6]}rmAȭL|V:hH#|UYT:ԉ␥Z[y!f;MkEt_YwCp ba]',z}J4Y0R~6H()#$x<"sGr g"A[ob\?\jTtjM裵 ):YkEc6f`r=^WLPZ3ϑi )@5f`v\ٶ7MG葯X4<21K[J[Ba0l'qU7{]R{0'z,~FDA2.zBg<읯1skM<,xYV7ASOhc6F>% Kg}9s9ۣQ u]9Iiu|V˺'N҇km|u*AYW C-$BN sv/Y#;:[W>ؘ9&$VnfB8ғ>F[fĽ 27h,rVu73FLjqmEk**04 _C(,]kRh^h7lZ;S):#{Pc7M\{pq.),K(‚PCfgI/?~@ag:@,"ww>p]{7ߖ3+*؎L&_Ɂv+[[e I@TIh)7kܧ8Lp0g}}dc.}[O΍Ej(ݿ9)>} vGm<9YfqKπP:as!c$9P06!760iuIşt{\bW'y;G2ON{]`8]ZW'$ ,O"N"\+-V*יk|M9ܾz!ë̡C[7O߂ &Vب0m#E6Jiu6$`j{6UjS/\j[jK_6[gSg0ɔ6,7_>dQ{\0q[Q9"oW=|fzQ͇@X+4;KPts,߼ln?v!<}B^BH:r,TkHl>I^dwN޾$K ƢWN 3QJ{ ݚ4Db} ġEӭ |G8ś~pb},u?BШf&R[gM^fr v`E)Ԓ2ȇZ'u2pd \6S ؿWA=`IhG$ ڣ-m d[9Xgn{2fowxza7F\r\*h5xQ/-ϘB읩$*o g<տ21 endstream endobj 2087 0 obj << /Length 2240 /Filter /FlateDecode >> stream xZݏ۸_!)I>ݢC-ɒ!ɛApHZ^gw ͐2&|W>z;N22,'IN!Hf1yܬ,<כӏ7|.z<9̀"T]vQm]4b((fJskt$NmY,"o9נ\6zcjjdv]OSEmEE՚^?pQi;Iy?(?il* L)\wfmbXZ(Uukc0ihZF[FNJ ̮nS,)m[ܖǏ4IP²Yj)hj]Ƭ|u0{:a(sl1_Vs ;+O t`2[CmaJ#D^#л<_ *[Ի6 (a01T!RcR5=kmfqV,|?$XÙz@Wo1/m X%=ʂV@O ]{7Ʋc)BͶɻC:7l`iKVkswfe$ط;gHz1@v5veӣ# bdBw̐Џv.+ͮ eIB2[E^ouϪ DX @x[.ķ?uA<Yd%"cie^L'˘020oDT O.|\cBn8CvH$Ç4xĺ3 W{06esG^XM]Y:􎒧<$Po~֛؏iz"U<HUgzy0#؋_ rW~" q3I{{ C߁Z^og Џ|,YՋ!^,Fn6J;6cy6mbm&w6mAL}@ύz²L=S\?_E&?.mڭ}K^YW]N龻*9 Oq+PÀ<@3?ya`fbaĈ5͞8ׄOWPղnrVFcntiPϕe)ѷFOsS]O>t&ȷraX8G2wy.>ayZO$ G)%X$ Ƽy_T$" endstream endobj 2091 0 obj << /Length 1156 /Filter /FlateDecode >> stream xXKo8W(kOQ*=,KHt,@ =EΈc%#I,rp83!)]zrDzA/G̏O؋IЛ/Py14w1!:)ڬ$5 (g5.j'oׂp*ݥrKCHA2u3"Yi~FLͫrL&Pn5Ff4-31JdȦǴF#a,'|>rE[3G~w|3!.]c]ywH?ōQE3H䭕]3f $GS5(2r'qx'Ppg$0lE4T="9> stream xmUK0 lv^=t=0CC d6Lb+Y" -"I,LlE&>=d}|x,EnRmJ%Q괪Ei^bي_BҎa誐_Ͽ_#ҲT"d"Q&m-E#1"8M$?D6*_ke~ލW~D$#7iFץ<-TU-Ϭ QWrJر> {8,rvÚ~C^Mn@`C6F{R}\?ݢ.خO)>1tl̑4Mt#̔ wS侶[ե\ɵF :隹c?梷<CǬV%2&ߓb&(RT3nmK(^<%'JrFo[DͺۜP$iRS4Lh栾%w1CFH1v/]{G09vcm%OvU,Mz;&ĺAIH:>8K0"dz pz àޏ\ZhHٍǂ QT @*痧]r~xwC@.bFA- _;";'R:iӮ]"cx CCD}MynLxL:Y{0i='cgBiv<[ ͋l@Zy9l'SJ2H(Mqad$| endstream endobj 2100 0 obj << /Length 3362 /Filter /FlateDecode >> stream xrܸ_6[q\65Cis*cʿoʒc;<.h4"7o_;wlb׷$yq+\]\.~ڨJ)m.RIe4+&)3%s^7/ԗW&^[]!P n7&EN;%ST"\^YS"4O*7uumI^m[ /vjiM}pkb^Xa[ֹ2HrFw48_K2eyƟypkX0ѹDdf;Sl %[ޏm/ y$Z32OGm5vQ*ػzh٨MCCskz18Ԛ$1hZƼ?ڑfYoڎ{70mX@%̂twpN=N7rD*{_c=U/sY2#<4mO{Hd g):"ް%^˄̤ ZۮP#{ԌF7滻;wp6Zf_0`zZjmo+ӀmoIyME EEVk޺@lI,G!7L0Æh=(sL6!QͺNrƶ`7GTIpR!myydEE%n(o,eTu5vYK7aX|5lqnU9`^v6 wh[Wi>-<uG:;;X+ NFr1mcg#ڈLj4|.Hrr uwdBɇʕI: Zp@^e$cB5~,o&K[Q(у4,r2YmVLGȿb[`j^,MQw,P\\wlTa2z\ElB^ztbs6eB+.惼xaWY9渇3@upO6ќ a`W| rCER^?߱|1pߢHtzz37@0O[(?SF6+ SʚR$C`l7Rl7>BH !)xbR7@4q6Q*RB^NG#Qf e07KF(($&y\E=m r܁dHg$qe@/Pk k Kp60х9 kр]~|Z0T9<,R쐙 YdtlܙDsWMCl)]hx#e&St&U;q ?pg[`Pݲ2M I޲gg`/JKCz2ǭ5gv۞vJ\-D U=Aa$c6isWZ1 nBv&" k;`FKj6ZJL\5(뛪5g#si,0Dksr(Cz7)A *'BApEQb!0y cC7Σg5jqڽm^>:*)3P,.D,7R7ҋ *O\&V 4Dd$jb0'>Jȣ"ՉI?Jf"S%BȨĕPkH((3*MS1h+ øBϦ =$g({f7.,K3hYhOTrPɫ tn͝gs`f ேA*?G2Bp͎}o&/+=7K? 9].=~ /e\|>׳hx/J<0z܂8SqL7E6Q> ]e"NEEߐ'shrշթ]6&&k( O74E2 Z&/=wJ㍯Y|ܮ}ujt W?&@8&@!Yg3z=lFc,P^񷁭|K0ʗTpI;чe"V>}]Z\$ZrIolzKwE^P,eRxa_Z endstream endobj 2108 0 obj << /Length 1836 /Filter /FlateDecode >> stream xڥnFБ"pKC&izB@P9ɑIҸȶP([N 7o"Z|<_qXeYXoyL\ċuY,WqdnƁӮ*-`ݚ\k?>k$g0.{!.UXIz*.ôX*ɲ%/>&hNP9lhs!/P, `W\W{=wt+HE^ypP3yc`g4#G-ZId-bL?Ki* bLf[Z3W? T=e$hgCө$ #df0,w1ىT="1 xmgyW$E⡲`tqs$jV*¼P rBH<-dԴzw-aqf 0@~`x?rh2JS3H Y*|~ǰwS; ?l[7]<9Y6+L4À#ߤcl=4iXAiXJO~iJqghtPTi1Ԝ޲SK3NѰ8<( gⰄnC`ÿ]c((i-kD}ش"$:wN?a~`kfwcTߢWa[9uak | .A]$Il;ZAD7x*xP[w.<F,yFSMw)^gLV1uyP3tI խ\gFUbJ-8ZRep\q\Ýtv2θKmD*[-dOa <)1$SOGޣ`Qa:t!9\G 02ܗOeM4\IUY ca4z±}NUKT~%L/]is1:!~[sGf󽤇#퀣43z_m;7űsc8$dpO/H)!pTL5jLVv {{u>'`6dehȞ?,2{Ϗ@ܘD =&U" 3Ӽ!닿AWEe飄E-RUQ.O[^,O ʓSLz9ي JI9ӆ.Ca0/pC}J VBvRFX/ 3Z? ֨.,k_|DHfRr|mai 3g}̳>2-Vޞ)4,No,h.$XUfy)NRy#$,G6N6ml(J_lM>%3 UYGqXe甩A)(G'r4q7e5mjX{:7ATʧ5P?IN!x}0(~D%Bz^qzO|J6z8f/mJƢfcӕ&>x`&|c鸶-\QY$ 0{Vi3Hm*H endstream endobj 2102 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemedefault.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2110 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2112 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1041 /Filter /FlateDecode >> stream xW[o6~ LoqúV={%ɉ,9H*ѥȊ$lG iF. #/WlRW#./W7@gDjA,0rАջR^%.ɒƷ*\[A!uI5V7duJ TlI>ThTƨqqP*`DJYy &E|ZHi"GV 5ogi./zOr JP4uF: tZpI!HTLp\"!°e(ΧD."q;A F2fYa缯}l?aIO;!L4*EDM >ׂ۬QgO,_/Kq|ҧionˍ'mD$pTCy3%c9@aTbU@l%Z0vvk/M vc*d{A0Z=']34B~u}X0aSrvcg3lؾ Tpt.Ƒ(uvUֶD'Fw}{slj a]<(F~j6 *[(@`)AOu:[]ӏZƶ>~Pr_\)o}Ff8x9KP50 a`HWy/h_az@?]T7 о BhaIߖm>,51‚O/{)%TWł6Y/oRLQcrzWd8T\۩wMvBx?4-w0Mk멠 endstream endobj 2103 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemedefault.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2110 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2112 0 R /F49 2115 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1360 /Filter /FlateDecode >> stream x]O9=Nqzҵ:TUCHDؐo^f!pHxgaӀuW5~ippFIM C\NwIJ&?-4Hi>u@ !IdܑA P&?:* 2cz80JI qgdpT_#aقlIQxx D$I5 N w[ M:zm)-sg+@`}ԁ@ V%Qs-Cr5,8*b/  z@I%~~ +fkm@!Q"1_b4 %fiKrOm.-XWt8=!pý}\AILN̋J"nғytkxJXx8ĔyyM?kW~ww,jH"XR*#[3Eg dN·몮FcaM\yZ_UZ\vyQգ=(1Z|}w[חs6GȳB 2-EºogFY/6z]F;C-N ӎZk'N m}s,ux܂;8Bsu\b! +X2ڦ_7(<9: EF770j0f+[(*^Р˱! D(E_1Mio5^Ǐo {}cE~ pyJ(u\TGamooכ*׳&%SE5s?0Wrݧyt~C`]&Vidx# 0SAoP[>T ytHhxML}I jD]<aE7cSԍ?0 ՛ޛ2{x(܌ \;eB05zHlr]h>(e:F%? n?m<3_,.F o߄fZIzzD8Xfߝ*b<\L/`J߫ö^c̄oj|F endstream endobj 2104 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeboxes.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2117 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2119 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1041 /Filter /FlateDecode >> stream xW[o6~ LoqúV={%ɉ,9H*ѥȊ$lG iF. #/WlRW#./W7@gDjA,0rАջR^%.ɒƷ*\[A!uI5V7duJ TlI>ThTƨqqP*`DJYy &E|ZHi"GV 5ogi./zOr JP4uF: tZpI!HTLp\"!°e(ΧD."q;A F2fYa缯}l?aIO;!L4*EDM >ׂ۬QgO,_/Kq|ҧionˍ'mD$pTCy3%c9@aTbU@l%Z0vvk/M vc*d{A0Z=']34B~u}X0aSrvcg3lؾ Tpt.Ƒ(uvUֶD'Fw}{slj a]<(F~j6 *[(@`)AOu:[]ӏZƶ>~Pr_\)o}Ff8x9KP50 a`HWy/h_az@?]T7 о BhaIߖm>,51‚O/{)%TWł6Y/oRLQcrzWd8T\۩wMvBx?4-w0Mk멠 endstream endobj 2105 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeboxes.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2117 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2119 0 R /F49 2122 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1360 /Filter /FlateDecode >> stream x]O9=Nqzҵ:TUCHDؐo^f!pHxgaӀuW5~ippFIM C\NwIJ&?-4Hi>u@ !IdܑA P&?:* 2cz80JI qgdpT_#aقlIQxx D$I5 N w[ M:zm)-sg+@`}ԁ@ V%Qs-Cr5,8*b/  z@I%~~ +fkm@!Q"1_b4 %fiKrOm.-XWt8=!pý}\AILN̋J"nғytkxJXx8ĔyyM?kW~ww,jH"XR*#[3Eg dN·몮FcaM\yZ_UZ\vyQգ=(1Z|}w[חs6GȳB 2-EºogFY/6z]F;C-N ӎZk'N m}s,ux܂;8Bsu\b! +X2ڦ_7(<9: EF770j0f+[(*^Р˱! D(E_1Mio5^Ǐo {}cE~ pyJ(u\TGamooכ*׳&%SE5s?0Wrݧyt~C`]&Vidx# 0SAoP[>T ytHhxML}I jD]<aE7cSԍ?0 ՛ޛ2{x(܌ \;eB05zHlr]h>(e:F%? n?m<3_,.F o߄fZIzzD8Xfߝ*b<\L/`J߫ö^c̄oj|F endstream endobj 2130 0 obj << /Length 1474 /Filter /FlateDecode >> stream xWo6e ̌HQ9`k0`EaH{`,"WtAGRm2b{(XQ,:OQ~X{vqyv&$2eipydQd24* nQ0|ǃ71;2(,(?fXEBC?b'YmS6$!qkQÜ4"<2OL˃m"u)UL$Ξa#`I3AD"a3GZLKN7tlTsq<45r.X6pK pέKhn*¯qJSk/}gb0P]6@> ,~2Iwm5x?îmAoz9_;;ԡ;ǰ3By'#a[Ѿ\s@`L>_Y)0QFL]7fapQŋwn֞V kd~Z; ͑͝H,EF`IS"w N4)=?ǁ~(8auUo1 K07?~%;܀/᤿,G2jFC2pS'c2BGglD6*bJю1H@M K3u׫jݟ/  $z.jlAJdD}i=ߥ"&=GwOD:!b!$|pr=K,F,Jnmӻ<\L?)6j[{[pJ$zXWQn'8u ]gLGYs(,L9gTAt+ȴMiV lE&gikMֱi̵)M_ḑ澣DZRXCj,d#@.Sߴ|>~߷Jf4Ef,)12arlģ/[^Ŋ8z:J !q6N(\vcYd409חgAUEVŸ/>:;W<1#etLQ9)^q|-qt(ڑ}*ѯT ]fh R'mi4s?Ϟ'!g{T.u70IaȾrxF_nܠdRMǥ[UD՚[p‡zPUۭu;eHWxnV8uͨwXkiq˴9O|w_؎+L0 ]}1I Dsqt#^嶪 a[l{*)=GWL_=0yv۲?z{̜tfO$M1Db~VHbA'3xi 6 #o/?):WQ$"2mj6XcQɓ:!"-9^=< ׊` KC 4#{ endstream endobj 2124 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeBergen.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2132 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2134 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1189 /Filter /FlateDecode >> stream xXo6_G9~_OÆEh{h)J,̒Y^~wHɶ:K%8OwlF. #/&pN#./&@gDjATDAФ)MW)HsII QܩpXOB5l rD/s"dF8/if ɫ5 q@*򑠠B23RiDg #{F&oQʒ,췘2(?< OHi]#UpM^[O4 VrKvit0j\ VEss|b-Cq,'*pWc >nGxHOL??6j {'lDT^!GCiT:?'jXxy{|1'@?Il{7c7eČ$ Z392G9.2Zp1әiCD,ˤJ8sD qÜ24@r g}dfTqJNVIOoIQfᅩ;ô9>OS_F| ذ{G]QmS)]ȱӧjA#ܟˍ'm)ړQy7SRI:k8J J\| ؟X•9yڿ5^չ!E)y`.eB7|+2#8D11ׅ3Yoa19D)3-t\BEdqNO)fsa67ai\6l49WӲ_ߋfWL 606F\ce uX˺m6综-7 Z.fM?U\tlE]qUa~HA¸;ɀd%%{)呩:C0P|RKyLx㥟X!߯dӿyh@ð7>/Pattern << >>/ExtGState << >>/Font << /F23 2134 0 R /F50 2137 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1480 /Filter /FlateDecode >> stream xNI_яX+w>^WD(޲yca﷪a<8vE2=]SU]wU#O]˧-FP'5VP. i&bmtߕrM?-4i.ItEZwʟ|V;qY|9彏t]`D9RQK% H?oJ4'H0 -T:+%ęF7r$u^!EQx#SQkq$հJ\nhx[ "Hm(ծ֛bCNhɞj>C^3uRr-C$I>Z y9jXpTĞf@-A8"GC*E= 5AV>_lAՐU ̧ ,DCifҴ9y n+_fj^2epo%DǪ7ا2.s&Sp5q"CŊ*cI:t 9L}?.,@tXk#cݽ3̡E_~W9Q;}!pzDCs M=<: WE )"hkUx[pb)}M?kWm{w$jx'ASTF A{k@>'?'d8y\?6]|m# rz6i?NpPFFleM3_b@>j֢۠A/wWI-r \fr[vI;(! (e2o?Z NN*npRSB%V9_>o&h&PǠ2dxr0W)`f 퀹lA Ͳ΂he]4TDN%zSF~䣽Pp>tmK2:=6iC%w>ꔍ oZ0"\BՅ!ؒ3>NUH^E|1)Ų_zoJAlTJA,})gS>S6q+Fz]( xh3xE_hmʝ5YͲ# 2[,wI*H 岙0r> stream xڽVKs6WVjƂ&ƝvC[)* 9I;]"S3.>+?WIiʰHȐd2) g%HR$G2N0klCz0RWO횤O݇m*=dmF;۵A+:W 7taz9OUfpNuXڶ&\Wr8v03e T7(>*Ǿ7OҦOc\%4;}ݍ)D7\ĔBg{4Ӷs\* O;hVLoy]oBjJ{={45 }ALӥkȒrt <ޛx׆1ᶰu}7W2mz/~VBVcVX195hotu8/0L0xł"kt vA3gi/bj,0#HyFPQ>nP\hW"g+Rىtbf xj70Pϗ|' څw~)]C} {#>֙5m P dZ "D]ڏqSIui 1 q5=Ls*xxP5H>+^x$Sf I )—H32bpS }NWO#m=#̟gWmǮ>/Pattern << >>/ExtGState << >>/Font << /F22 2149 0 R >> /XObject << /Fm1 2150 0 R /Fm2 2151 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1374 /Filter /FlateDecode >> stream xXYo6~[mbxc=E$N>t*Jl4R lh8-aGqtFJE M%]/=v![ҞNT#/6w}% dSܐ= 2,YE\h( pq"FJ"3.$ \eI*6SP$,@RDHT(rCi[Oᭅ0hu(|Kϟ@䔁it90! R#"ERQ9r1DBap9gjHǍ!Giܤ!ߴU 3uu!OFk1FDFL4 mY%6XxW39(LA!߰c Ky&V֌kl`ȋ$)Wi$p#rj!\ZyXK(%yܤHC$ZSh#΋E$5=S 2Or.O:tr9ôx}_$ X)ʏM#uݽ(Ej"/>k9tT |)rIfDQ(1m($ZkZ%V%.60'2~mxșpH|TkAnvTC`5k|5/$ƎO7a<[l|=ɸ/lWS'_}zBŠ÷ :8(uvΖa\,.V5e[+5 ò6&f+r+Ь5ѐ.~:rWN$?[^רv=tCX6'6W@F۪\n>j]r8gXWTXrDq,_eA@9̄Z0E-=M3t./VbWZ,h?g!lP*|ИXlJ=55^ʄ(kU=oZ%q-ܦfݓI)z@+n߾G`CZB>Pqn5h -ɼn)(,;dK]Dr lbeɃfH׶;kõq{ga;U4iQ$:NnSЭ07pS>IB:C!gXufA^˪~~\M{kHķ16ezC+hYAa{'iD5;=J)=]1 jŻ|pǤW8=@VC{R.sjj=F|EMӭK9X$lK}@%3m> stream xP( endstream endobj 2151 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2154 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2127 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeBoadilla.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2147 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2149 0 R /F50 2156 0 R >> /XObject << /Fm3 2157 0 R /Fm5 2158 0 R /Fm6 2159 0 R /Fm4 2160 0 R /Fm7 2161 0 R /Fm8 2162 0 R /Fm9 2163 0 R >>/ProcSet [ /PDF /Text ] >> /Length 2384 /Filter /FlateDecode >> stream x[Yo~_h4xL° }G#ic.I𰻺X,*[\F'R=FP'5VP. Yh(oK-Y^ʡZ&)}'t'B*'\R,-&d2&AƕUz `2N$JI0qqJN-ežY^#VpCV@`fU&'r`3[01Y\$-e" sb[<9jXȽȄ[~zđ94wҒLyfT{k ` Ym&Y¥Ad \ ,vfH~&mŇY''g'ǽ%Lz\}uI3$øȜIrͼA =g2#) %YCϝ Cy/ ey >X)̬b0iw>@ڨiҔ9/#!f  F(:m"3YWЏYI_~&rfaa[6ܴRHgvH"oK)Stdi ":QMmJe?@C 롨Een]l:Ԙٌf36.n`z;Y48Dxu| g _Ǔpq8W]qkl8뮸2Hc{8!t}&<vTu]G2tͨ׻髜Եy *yBvX]&UEuw+n"N\sF&^y{ZXo8Q!Y>8tvm)`\\?na뚕0;6S}RmfVI6xV~ڬU6-{q +c:YўWY&i{mVX LU`{ g+zZa {}l-Ԗi1WiJtq4kwO;Nn~Ooo(~`%cX9Gy m* <ԼoyO%SBXBSkU3ZH؛fӎ 2ʻ+AYE.o&WkL85 ;^ݎTn )N7{C|Au_)*8.7 #C7r."TwG$+5b IZaѴFX 7[VCxk xa*=ox؏rkcU\ǦC9ލ~n"Ex p"_{/i63Dnf(8fC\6ux~@  @ x/n4'8^Xv+y{$JNԗfqI~?Υkn< Vu/R'>F1+ b#zNߎ%˰ endstream endobj 2157 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 3.985] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2165 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2158 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 8 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2166 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2159 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 16 16] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2167 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2160 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2168 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2161 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2169 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2162 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2170 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2163 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2171 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2139 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeMadrid.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2172 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2174 0 R >> /XObject << /Fm2 2175 0 R /Fm3 2176 0 R /Fm1 2177 0 R /Fm4 2178 0 R /Fm5 2179 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1729 /Filter /FlateDecode >> stream xn7aylTHRX%Œ42, 9|z# #i|e:8#j& C6 >tOM6I=V\9|Ѥgs.O!u.Q5/G7d4DAT:G W3N$@LcH, Vż倓 PJd <"zM"V K f:n=$ Z뾕ON䔁3)@`Cu-lIEk= [YjT^F@-{q=\dWgFk;uu!k|A߫#5"2_b60 9giai9y _Fj< QQRV}v$5%ø19$9.zX#22˔ g!ypYNQFϓԌ,L'w>Era4e_3 1:*gxZOE@*QZxi N,d|mxKQn @u)l,Y2 y.QEUdd7OR=󜌤*l]4.BڈI FWw^ *k\lf2ۻOtu5`|/=MAߖ<_ű#:$.joM80L*4%"Ϩ^05'eU}WuS=$aypKg~08b}xVoܩBYߥk9!UUpE2;[{E_VuʫNWeW^ Uz_UJD0cDK :U5UNxz~ۼoyT\f3U&p'Q' .vW~ b۬/nźZ񳰬`aa^_hjm::"jkE`rL$?[]ϼ>ColM[5JY  x(6-ծ+Yv+B#M7b Z!5u:j1@j]٧vqlXʉ`?;!lP> stream xP( endstream endobj 2176 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 16 16] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2182 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2177 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2183 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2178 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 14.834 14.834] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2184 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2179 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2185 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2140 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeMadrid.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2172 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2174 0 R /F50 2187 0 R >> /XObject << /Fm6 2188 0 R /Fm2 2175 0 R /Fm3 2176 0 R /Fm1 2177 0 R /Fm7 2189 0 R /Fm8 2190 0 R /Fm9 2191 0 R >>/ProcSet [ /PDF /Text ] >> /Length 2389 /Filter /FlateDecode >> stream x[Ks7WRm 㘭Uq\ckI2E)%ͿO70xp8(ٱJ h_ "MX^%G3"Nj"\SK*HdyEۓ?*Z59彏'hCƉz (KɂL4Ȱqi򉠢 5膷IRBiS29F-G_b aSؒ#s5"7$HPsIi.J1 Պѫ]ws9eK P,uஃ*%IE񒋡*02T흣Tb !n\Uq!M:үzZw>C?6U},pm'9fC3hN-X|Yxx b2:;L?e`+sM5A &0όGT%)Ba3B@QF)D1%uI#YHi@,Ff/RMv3XʔBߑp4eHX3̄Os ,PD/Ydڧ9<~YI!da!}@-roJc*x([j2d},u;b0%.go6Qq?tr# $^t w@Fc5є&oފ0nRA.a1i0*.OgΖFXw*bjz7 VlyٻLhQo8I Ee|\Vh[*MŢrv8}n:hˏ5O rNƆLXI~5d3=cļ zz^Kr`m(,R$Nzlݦ>!nrGC2$֩KFe$4?0r^%R tPafudlиlƺq* ,?ƫO-{V8>`4t< G]uU= G]uUw^m,q]'uUn=Y`;~2WNQs#^(c5BvۖԄGn9;L8_/[=+,jo7@U5&ktr O*4TBG)WM`Q7{uD:R1V~"V o$bVDo&u1\`og;ˢ]&X=X쪻0b]eOH/ƺlyN:#|iPx0i4̴i" Uo4>q YvmQG{q7rjL,.\<,|,Si:5҅(d_*+]{ٻqn@[vXt4Nalh9lbOV|Y+C= /J|BXɛٍD*,.'{jX glϙ @BxUw:{Xx3CN>/.LQ'82aMMR T_`23TI.rqH$\Z #c>f/NI/ӟpBBδ[AS%CsQ;Dk8G(f%~6 )j38؂|y;alL X`CG.^]<Ep{5̙&*'ˋѪݾK^g eIԗr/L ,:&Gq+fڰ-`llnr<6,0nxwq~~qYv9;8CIK|ps)PiyCp-.E)DƟ~a߹F9B~U3kAq> stream xP( endstream endobj 2189 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2194 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2190 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2195 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2191 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2196 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2203 0 obj << /Length 481 /Filter /FlateDecode >> stream xTn@+fiKx2ҪY@e1x!'uZޙ:h._B wttPJ * W%fmk% ":OV@C-~CЙ$k9"*̢OɻŅ]sI7&&Ea|-P1:%bJiaaF8֟ʩq]&eߘrtЯ'K|Rd㊃erL3H8,*yDD (JX '=-M]qċ$Tb i^}фv TKabf k endstream endobj 2141 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeAnnArbor.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2205 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2207 0 R >> /XObject << /Fm2 2208 0 R /Fm3 2209 0 R /Fm1 2210 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1621 /Filter /FlateDecode >> stream xY[sS7~[2u!+]}Z(DjwӮ.FF]RxprFIM C3r985Ē(Fh oI}z~CT=F6E {1Q?Nyގ4NT3OFY2] nȠς;N 1jeH*PLゞ Z9[ P8# kt$PJ\nh-v RmQK2g9e0KX Vz :Ku RPr[H*ډpU.D04aa" xOQ9R)/:C2{k |!k&Jdk'/0X3ii52Nl,v&k:Ͼ$NQ}+!,}8OI{`dK5qgƣrI5\(d8#LQednOǔYCjAYr1R{Q$I\LeJ23)Yˤ)s!D`q ɍ2X%<:N˔E"[OYzVYq%]+Oor6RNiJ5jq*[UF8ߑHS\q J펞сj̪Zdϳ]7)7ExCPi%Kz^⼉;~^DҕS$b}JR`V !EuIXЂ,0d%5ޢ^D44ǖᦣu}7A8Ğ 3vuLB:J&J").nKj/"̼&|RYYzc:HXzj0p{ֳI~d/B*C[OajQ55O.9NRog|o:IYyӗn7LItHDTYv6 ~PI Ya/T}]vˁ5Pv-`Ok돗=jcX-q`}gㅵ"ƷQix,| l,l?CԋpU b@Lir~A~_ֳQ#>U,n7j=ph_-Gcq!z^'XΗnZɦ5r6l!6ޯWVm6ZofG w@ F&ڹݻE:Az6ldyr6`b, [H@ ܪd|(6,fMw_'bOo?Rp5iym9k$po>>e|J8 DHشϗ]Np&Q~q~u;[(vF8֋m|v3M-6_ҰCBzkFNJxC1\@n :0Z4 :pρ{Yxx [ ,dcC:KK[AxyCY> QC]8ܾ5E`=U; 83GPW.mEլ=?{2lZCGXDу_09 endstream endobj 2208 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 8 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2212 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2209 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 16 16] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2213 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2210 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2214 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2068 0 obj << /Type /ObjStm /N 100 /First 1031 /Length 3287 /Filter /FlateDecode >> stream xks6~>63Wt&\6ڴ?mHRvAR,ɖ%׮SM⽻], H f aA"I " O 9h-1b M3I6%P 4 Ⰶ@tp:EPMP!t0 ypg pppR<B(*P%mz$8sFHg>vsa:ԲDH0H$ qsvi3DKiSDZXb <1YlLpsjd:=$ee3-p14yHF m\Z L 0d,$F%K1+ABq&8т!:&B"H%$U@RɁ\:L;DBOсu@ p2(Gpȝ "1DC5H#H>H(3\;JXZT T$R2$4̅(4$! r$!Uo:D;gd^ L$ “< R r5" #S##0Xw "A)oԕXW HX帬aFoӦɪ6yߤMFDWeѐO }jڊ`H@Jw)HT./CQڦPalPPuor5({EAvѐY_>gHi6MV45Z@rZ 5!l rиa^hUm[YQ5HO0?qoÀ>/QV,~K_@†% @tFVGx՞><( Hzz =dW{x.ߕUz~鸆=x>y:N5tDJk/"Q=yW?e>!Rkh`}˞,;L"ϫyqVD 蛴s|P۽_*?G@[<;n,(/N D( l0u'E\y<Ѱ\f N\8$vt٥v SB]zv]܃OpgPd8Ҁp[:!_AX޷-0ӆ ͑00CåC9u `~r`q(IN58] ~M6:b:9pZQ9=^ M'bVӳg']̈́z>tXN&)=|~,/G#JZm~/isVe=}h_:mȡsٓi:hl j4:4m3{%}E_? ~Oo;O'LU:5OmIr |WN aYe-[B!Q=g4tL'%=iEk)D3#`:UQfK;ٍ $l < ;,GYi%l&tCdR6Tji;< vdQzz BhԧVH(p'PSSU0Y3G1X1 ߌ6y׈9+hfJ ڑNiJ$w2.h`+ 8s\70s A+fJٴ8MdNZd !!4}w3iYN@gQU%VPCqbT鸭^vAF>ݜeMZfy˓qmuV}m9R:GJ} TmHHEG*:Rqrsˑr'GJHEG*hVӳ .ֽ럼ǿ-ȷ<1d cUÒ;(r.3}džNnWؽ]wvnvWPqWPJ+MvmuVo =}ݛclxrktbGU-WgKYgU mYYҠDmeyHO0{9r\iG-ݽP3䪢M͑t_9Êˋ:^l<{oKC̀/^L.VbA*,_1dv k.kFr xp[l7F/u膑pW[ e%+||Y^m+ޯy{/ns]7tᶥ׸>ڷ靀E`gqdN.I=zw2Vͅa(r,tڇmkȴ $nuТv=Gظ7b|}۷uc_gno>@<[pg+>d܇q ݇Gѱxt,nģcq'sGǼ蘋/ƣcͳvW=4>/Pattern << >>/ExtGState << >>/Font << /F22 2207 0 R /F49 2217 0 R >> /XObject << /Fm4 2218 0 R /Fm2 2208 0 R /Fm3 2209 0 R /Fm1 2210 0 R /Fm5 2219 0 R /Fm6 2220 0 R /Fm7 2221 0 R >>/ProcSet [ /PDF /Text ] >> /Length 2487 /Filter /FlateDecode >> stream x[Ys~篘T,eG%L\I,sy쒖Ӎ{]R+ER, h4f ڼkhs|@%q X6Bsbjqݬۃî,gO%UO>(XU~U'q@JO.$q5L-MX5c=q@ΪC-QbDX#DÁQ z^ Q@$P8mV )MN3!Ե@P2[D*c$04)vge~*mۍ1C`4H!}ҕ弮4ٶLI$+ gLje$ RY$0deOV~ QˤON˔ABɡ'"pVUbDl0Fy!K '좭`Jk'RXF$YFSd=kr73J.`sj17gχ'׳;L(RgߝU6Jʁ&ZV,2M77oZna*/Cסv~y^A-%A__bi:t=ckpf+C0LJWoi2? !5G[ \aoB&?-7j}2ux/Vojx,q2@U ჼ۲ 6KϞC)=r ˋeT"o6닇Ujb4үadϤm[&Cre\]] 8i+z;޻#iCIRG T!@rq|cw/!T 5yj;,-?R(mA9jm=1.F^4},Gau_qD5ՐB1|B:?i1,Ċ|~V=sBo]: ygW Ğ FY܋BwvD@'ژSkUlnJB^cz^m 5L @j(&{ZF ՄMwXzIn[Ԑy \#|j:b7\*B q݀v"b[v4&cAFŶQ|8 5c">ڱهNx-(**~@i8ݪ|x,c1kW NX1v^:u;#X{8uFOH/P3HY@#>m]1z Mg2Œ^E'ߞꏅNoIoeG-ȏF-x;b΋[7)yE-8Ki[2HS[~V< <tRNPhh v\+@LC{ Wfv7+u;[f/o^vhLClyWMQS`U:a ޸9:EExER՘qy5p 6K}ͯh jwO89>0%&52C^샢[NJ%$omoDOnoo6^b`-N+L"q|B>j>c6}y(w հ2Abp+aH(3L;Ľz{3 g`*z6LDD(bǮf w 48 N XPsN' dE7pp/4_~7#P5QbbNl8bO&+bar{ROD2ZLxb3Qe=8"Xz=U[]1CMU`ŋ/7o8=ODv_ :'lXFtCtlz|.ll>sӒyG ~ ?BvDc 3~ 㥵Ma3>ʭ#js3mϯw#89O306INac.,t) g,󯴹g/¥Bȹ—~DdjNa?v%Hs4Q”Q$@1^&aB+|KY Upa@1ệ߮.!(P+ߏ,a? z΁=!5ѻ7 6M Q8\#iL@vҪ6>m5/gr&߭LA\mO_ vPg`{ /]6 endstream endobj 2218 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 3.985] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2223 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2219 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2224 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2220 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2225 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2221 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2226 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2197 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeCambridgeUS.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2227 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2229 0 R >> /XObject << /Fm2 2230 0 R /Fm3 2231 0 R /Fm1 2232 0 R /Fm4 2233 0 R /Fm5 2234 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1772 /Filter /FlateDecode >> stream xn7a/Im/EM"NFb+-'[ÆK4Ô)ntCWlYA<kgFKUqv XI3Z@AU(Jh4[nh&PnDh0SjBh$Js9Yxဒ9VA ,7(p,aBTaܣChu1!Tǚo)&%y[dtHJAEE(u[ʆ@p$:' ؋H|o7*@!&& mVp^V hlV Y0QD|ᢁh(14MD+M D TܱP aMo̱Ae%DNJرO5sy&oR*,Q!'T2,b TJ(3! I3GΉ,C( DLZ hγ,Ed1Uf:)ꝃߠuMC}% Q>C>~!HF_gpג{'ZB?g4rWCXs3;RϗjO>fɷxQj[ dZwӊZe,Z+b1KHGeZܟmSjPJKUP,t^V곏[Խ-#wNT°(ͱvhfN20HZl, rX̅J8#M&Tӊj&pv@HFVu v,x!p4ɳT2ՎL^v7Mo;%I@_-jߜ v b!.#`,֓!uۻ^e;{W] ھSd}J9c]|݉+,VQh\]\?4LMX߮tlz{<_Dwϋ7{d ̽\1gk'!f0F{@m |].f*BQiX턑p^"Z;^o7!`iL7*馝p2w=o`H,k L:<~ AEv6^v>8@J@i܋C?&z3~y˰ T#^/.Yӛ?QLc|`L1Ce믯.r0ZAJjjN pYR騩:#_.N? 2.Ku.wsK+JHP,am$Ҧ0%#ND!C;= s3$P%:)wUQXBnl vsw FV|4D=wMR!78A+']MF])1/bBtsW׋o3 fX0wgWRPHq9p`CTD_  bPV7}a dr"]CPڍ)q/>Gt3:WC3CDfEm~h )WV4) endstream endobj 2230 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 8 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2236 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2231 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 16 16] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2237 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2232 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2238 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2233 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 14.834 14.834] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2239 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2234 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2240 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2198 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeCambridgeUS.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2227 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2229 0 R /F49 2242 0 R >> /XObject << /Fm6 2243 0 R /Fm2 2230 0 R /Fm3 2231 0 R /Fm1 2232 0 R /Fm7 2244 0 R /Fm8 2245 0 R /Fm5 2234 0 R >>/ProcSet [ /PDF /Text ] >> /Length 2465 /Filter /FlateDecode >> stream x[Ys~篘hW,UJʃjX%ߧ$WXUF@wCC/SX+T 'fl >$DZ FP}٤ 9nՁht>z0ߕ5\Hk Zf:kz4*Uͧ;Z5J8CY#F 98i4SMP$IB#f2sy$A(Z1)ꘘA]w0K\ip E'V#I;-K4 Wl nL2A 鳮7 -uu!϶MՐe6N" _n~7=fV3-$Iн"7O}MfW'}+[^sMRQ#^)ӘIH`\՜Z,b*SHR; J%@r Mc"k(Y$b0E1);j2)B-6gi3˒:Zg$+I{"'~/=+c/>G>!F,>wR8 /Sby %,YzV]\扠qYi]vVH0 BBWO,#LGqFOQ1<;x&}PZ)lH- rpu9%~:ȕgۦޑǒzɼ`#ӳhӝݛ{Pu}\ެ FٺM~u[{цCD6[*!Cuō9FMF7Rs=)aoR™ Fs~ބM(9_XnCer_?--q MaB횆 rnˢ=l~kx pb}aqUdFs뜽#K9-B2.V%ARY4!U9;66B 2 P_4BB/N! 2 aYZ~H/Pr**ct'τ(ro($.ptޝ1c3ZH'm3.?YwժGċ]h^J7Qa(k%qۀU(nDuÝ@~jYIk<]/1ЫM2zAüI?UQ ucCdOh0.b\{[6mI g9§ĨS[+x%/ m'"uHlGcb;aTlaq7sX1&i{{}r쯨\E9ĨB~!c{F+c]':c׽Nn#lNfhQwSl 3rC]DxHf"er.#<窆g=xv}ah&3Kz|R?v9-a%C[[wSܶnRF嫆[pR 'e 0 #2­"xn5dy֝Xўh v\+@LC{ Wfv7+u;[f/*ws3sVծm4iAm#Pi1ʧ;J' ,NSX(bTƌ˛YI72u(!~ҾFh>5w`J<M0$je *^Lh?‰Xi<<38|38Ofwk6ߋV,c6.<[TjXap%eHy0 'z5(&qq x>%-AⱫ2 A)#SBsey?zwAAn7eۿ(pv3lG2qز9C6~Xm"&߽'*$O7-O,~ń'1#UҞX~#c _s~+^m/^\~|wUF#F'c෫]j>asa:#k՗ <-w,dK›[S}4/w l> Vnu9>Wqh{~?,yh> stream xP( endstream endobj 2244 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2248 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2245 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2249 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2199 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeEastLansing.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2250 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2252 0 R >> /XObject << /Fm1 2253 0 R /Fm2 2254 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1627 /Filter /FlateDecode >> stream xYYo7~ׯ[%>[@6Hd}h*X%Œ63ؕjaI H\3pʌ| HG^LΈ4:raȮ%K;Ra#0*}mrVy22;ƒ/һ4Ҕ"|JPmHNT3OFY\O rZ8PwMp 4FIRLitUh~:I2íp'G )"W$Ha@ .Px01 Vc " dPoGSY@]$#ER9>rqÔr5,8*r!a 7O82GH&Y=M]=h:3YpIO diZYZI`y-E/j^}e&zp"U߰c >穚Bxa`xdN$If gQFqLI)Hgp}D pþ{lII:)EBɩ'"X*Q[xm`;2T+%0[^Qxs6R4Ya8N *1O2vή}%p,Ք8 In$ c";׮^mc9̐+Vɋxnd=F&VL!@#)o'yI&R*PV XDU% r2,ldoQLѬ"^W7FO8Ȓ&t5q/_3n:|z/ Ad  ]wM|9h`OfiTg@>R ac'usDta%"RC$Bj8r]RSћϸp$#bnk#Av=kbC4BV=jJ[(UڍҲ̷-!WBCt3:Lz^T+-?^$U X#bv}OBxFK@gхZHVв^RhT\')V<#, T'HDIB4CnλX{S]NzmJ . owqx@*R<^x|MR6?Ugx!dߢE:P?\KCg0, ǦtuJ7O_nk| G/v޶RtRQgt ctTzk[?WA[윹ǽ,pC0~yuD; g' O @> 6ݍ endstream endobj 2253 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 14.834 14.834] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2256 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2254 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2257 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2200 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeEastLansing.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2250 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2252 0 R /F50 2259 0 R >> /XObject << /Fm3 2260 0 R /Fm4 2261 0 R /Fm5 2262 0 R /Fm6 2263 0 R >>/ProcSet [ /PDF /Text ] >> /Length 2212 /Filter /FlateDecode >> stream xr_1o!+ǤbrTT?P (B;{wϵbi6UQwς/w3;Rw;3"Nj"\^٧҇ThH+=qDaa1;ƒd ?X aG!.QW;2ZATz/:* Rcz8T:+%ęF'\¿b;怒 V#+Q+q$0J\nhxۮ.@x0# #WSw9epJXU6$:K`p Tp\ P0eEEUd~C Qy~z850W$" =KWh ,XCk3huvL TpR`e^?b$QOk1?D+{n;$6J5q 39$y.J8#QedA") $BM¡d Fy>/\dHa3eN:NAIu&M!2|9~^ pal8;v}^(D1DD`tX> pþ܆IYe~p&[m!%xX&}'S0_ٸo[#D)uF"}? /kA>o"$ԪZߟ~DxAh~p endstream endobj 2260 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 3.985] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2265 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2261 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2266 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2262 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2267 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2263 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2268 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2277 0 obj << /Length 1153 /Filter /FlateDecode >> stream xڵVKo6Q X4IFEP9л%X+mEݠCiE'Qp|C=D4z3{f:I.D,RXXE븘YrZ{S/[ڠݔAl!⻭isWe[u{wrU\Vθ𩩞\:"&'dRE $S)(uo)ӱٺ^MD"sE=n4di>}QW!к'TȕWoMc!]>D y@@oHp}2ЦQF͛w<NH,%zYogsvIJ5'/U`\ίלF?__TX֋O%#UĴ'tQD ,UWA.@%Td[[:U.BI]մ<@ڛ(º}RN]mXAV`0-($,#J  $u@?<7sw1, ]8oQ=mlUg hwSDA,#QcʉcD }{vLv%`t_q.K7t (_GZ)');ސ*^1D &tB_20{AWԨ]Ԡ,4]s ,=}L`*] cR2-a"> LTP5N0bm]#W}?I S壡ٛ}a27 ]䂈w|BSkծ 3%̭5 SiJ3vۋ$} pv/Q`)N4Mx d31ny{0m7vxww߄c?0D+*x s}ڋt L)#l~H(!1&1hy 'X<9;⺧\p8RI,8a&Kӝ2g]8h\uWe8B&<'Z!@A' endstream endobj 2269 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemePittsburgh.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2280 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2282 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1200 /Filter /FlateDecode >> stream xn6_G8/-iM@ :!Ild1G@yTzG 2LRHi9Y!#k8A7(BI4!"$Ha$p;q |DƄQz ه2=}z+6:K``[H*zC8-s 0a!PI[~G7] ogH_obٷ \9z#_ ax3td 'q1<XL,\?~ORȓV>qnpa`xDN c \(qF0Qed>ǔf!2C8{LZנhe"ASJ|oɐu&M2rib_fX :C#%z6މW027~F5D >WpzDG{aAILNEKO1E@*1*c!.:tb)ts?6ָ8 V&? 6O2/@2 rժ-n_6zY7=cw_~ TpTXIq&{m#M׺cջJmV+f]hUmcͦ&[3q8u{u纾̓d6EM7aL4 pSE?U7زk;VͦV 늎俵+Pw(@B9,* aS޴ĽóOP^wsXS#mZ&@Wd/eB+mfh{^LpoĠ$d]jc;F-~! ;u3p KX딖1j@6J(`T R%4q5#) kANzJ?#cֳmabC 5@q Ky`5So '(i;BTKA> x8>L ڞ(:la {je*՛Z }՜{R9q6 endstream endobj 2270 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemePittsburgh.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2280 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2282 0 R /F51 2285 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1627 /Filter /FlateDecode >> stream xYYo9 ~cUbhu89x%ugf#uѴF}&\FތXw^#oF@gDADXA0d1#磏}5RI& % I|8彏r]"HrNDHE=DR,Gd4$@uUz 2JRLi1}D)Goa@ ~p)\ɑ9@(5C^r뀤``[H*!#C$0L4s԰=τ[~ qd.͋TwOg8Z3%fKud5%#9f Ps&[6u&oj`ef N>Y yImI5q39$5$ps!Dee>8.sd y ~)^4@6iEmf=Sߒz0L2Ce$f 9BE8Yue >-_w#Z S6S&uB)yYy5[䭔=EG@ƣUpcGf< mĮ:=6߱Tf!wNF^I sQ%t0-fca8㻓l'cj~:[~ݰŰ G1 `9Ґ1F\nq{{Wzy#W3El5}J=9Kr8[ͣ՝(NX5qZ)/ (q:`@hZX.f虎u!p自ϤI7)2m&u2搳MA%[_1Pvuϝ.3ګAK #Ώ9^.g5 +]e tLf/rEy)Cʸ_qk} Wc|x"m@N8zD圗[ٰyz` o>l1Aa+)RkB Z]z=+a7>}1{3 >!0͉㴋vp ADyb96B `ɪEG@ҀII,!/`.2P>ȴQ/d 3 mgfP߫` gkqH`-h[2_y?*STӹɀcW*p|-d$j`}xl]>}ߘo\O{Ho='Mxbvx_ b7ֶJK} 0ZDgF8r9_ Y[cGBp Y@0Oi=(,3v6SR*AvϓdPG7p endstream endobj 2271 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeRochester.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2287 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F24 2289 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1158 /Filter /FlateDecode >> stream xX[o6~ L [&ASX%'~H*$M&cܾs!AodN#o7'+ i)SӱC)f(|4tyRV%e63ϜE lE Q.n:>#'h0SNDa59b2rA3zh3,ԂanQñʁsisD0n ^' )&%y,| [ͭ tpK[p@(u?);rÒ8q: V'*n##b =nTbQ9@dֳfU`iVW}d?aY/[W WCiT:4ۉ@|-Fi>;/^K|ĊWuO8O$aR*wYYSIr ʄCN(P<+@e;GH8nDФ,+h#E$7P*Izrx{ΥIbb? =C;Js d-QW0*,/>!,isG[RojOZdcIeӎ?ڿ~}r&#:sp Ͱ eh P n 2^1nw9nM[>|] Ӓ9 C7E0W,+қ+Ph_$@1 T_Cpί尩rh*~Jߺ˺7×Gx9IXa֐)(T 1S Jr_ݾ9]_1 9ۜY盀q$ M*\0 1anj%ٞ'vuS,^G2Q9[Ŕo* 940 ( $nZ^Y?l$ݩRq)):AEX{4_=- <\Աaq=QO'',m endstream endobj 2272 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeRochester.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2287 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F24 2289 0 R /F51 2292 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1585 /Filter /FlateDecode >> stream xY[o9~WhumQU om!)@2{l@ !mV 9>s2rIcz8|iuRajB.z_֗;RA%%iNO~T#j4Gm J@8RQglw\՗H§h ,XCt$qӲO˛RpZ$2foؽ0٪{-&K^b Ky&)w#^c7<3IR7HB!r!(#| 8ΔTs$ i6g )%@Hq>Ec&kW,\0?&PM2Ce$ 3Cs8SfXq{ZϚ;J>Ή_dw%c %hG> stream xڵMo0+rLq%VDjQ&n"xI-ۓtSJhGL$8_%8~Y%D&IJXoZdȈd2(EKyʬVhJ$WܬNiTØm!lLp kkP)1UXjF+?'ŝy 뫄1cxi\6.d^PcDx|5n?̵Q^u*3zk9Y䨞(D Ṹ17_-bIB]v3xő, CɯRvݻ!p|f?_AuʼnŏNLa ic;}_89i!R=1,Hp}=㗅hޥ\8䴃ҏ+H.1nQ)$;Dk P\%4Zր6Rlfu_W =0%M!B~f-Q8t,-qͿԖ'J1NK _MvY:/Oa"|dt^7M?S>}SNr@(3I]$ endstream endobj 2273 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeAntibes.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2302 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2304 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1253 /Filter /FlateDecode >> stream xXKo7W(]آi YEmzm-li43\ɲb[6bF弾p%aS~Evt|FJE M5}-PJ /p9VZ9P~PVs.gNQBƉ%uIKkHՎn9YE>ThTQ88(HIlLaFJY{|M%eВ%-@H=*8kf9n=㦡`-! d§3ҕP Z`@99>+X0,~ef>Qaw[qi4YϚWgF3Fy_X6^*9x? HANC-Xxx Lf^#M[Ğ s8Mb?FZ3q9n,IbN#V !2+@IJRĉw!*q8YɓYNF\WɋInFB"I:Lr?5ô=Jsy dN+jد* ~A=DI?tx{D pɽ]n|oXjԎjFqB'+h1cVAG lRk7"ϗ6n:V]9]o~Ȳ6VWesw|xܯDӠ[[|}9Ƣd0H-I!`NJT_AG][/];λEλڠ~PUv=FߖͿzt_Nr jX #!ab-;xFsL*Ͼ׫Mm{/NfO!xO)۽!fK?wtsïUŀ_y.8@#\,hh[ȑ"vi'p`Qjj|'8 8tuZoWpo2f>}eܛLUx>~¢5'zj];!>OXF>yzIZ:5 endstream endobj 2274 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeAntibes.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2302 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2304 0 R /F51 2307 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1771 /Filter /FlateDecode >> stream xZKo9 W`aUumEhܺ=8Ď_RIį,J$Ie05[5~#FP'5VP. YL6-$Y!GINF)}$Q!Id<;y$'] [6Pw|!0( N- T:+%039''ˑWtao IQp)\ɑ@Is$J\nh-| 1IuƸm79epJv VzX,u]$-%:.j ys԰`8{I0?.QiB̨WDuH?"!\u$|7I'MBk'-$I^"Of؝tk1 {⾵l~62'5q 3qr"I5 \(ԜqF82FSRgJ9O3Cu ey Mk8"Q6Q6);%uh&M!20L@hl?8YЖDlY={'YIBE_+c(>GtX="ú܆NY,~2wp^--zf,SY~^D|kh@Y-`_c T rɫpzMH/5SDE%|:,&gaؾf|קY5jv9Y}xsaFie C}i-?0@Yu63#W06?}8sBBW}Ipxq >m5D뢥inTYBGupYMJ=gl0bbE 9 Vd1P`z `>Vg4odְ.ٵͯoM{3p}ݲTb>% 6rT` -p]+jzc.yPZN_ּ g9,2.&WӴj/jvZGv,U l+HZPG R9׿gƜcZp`d`㠈R2%!5^">><Nn?o 9Qi@uhVГ]zRj#ZxVxWиgUYsaPr<)bµe.6Nr\K@+8E(yqCIgprjO)1+Cj< >~V*DU, H|cEU*Q6隰iRMpzx_NrQӼ\]fŊ4 sqs(nT/3h[_"{rHFV5_^-p =fe v8FxPG1e| pU>Oz솶V5 jMd}_bٽ2ݘ*%B, r4}ap[RS 0Ў*2\+ .`@:4}S!jt9<V|.s6 X@igcmUǼo_zGNkVPUFrެqr 'uPͫǦNj JomN4p*zOV(gJ}EzE JA<}5ɏm ^$r)/T(GQr^p{MʕHWE[ϴY endstream endobj 2294 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeJuanLesPins.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2309 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2311 0 R >> /XObject << /Fm1 2312 0 R /Fm5 2313 0 R /Fm6 2314 0 R /Fm4 2315 0 R /Fm7 2316 0 R /Fm8 2317 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1587 /Filter /FlateDecode >> stream xn7]_G 貼ImE>:bInڿ >#4'B*'*gɲܑ P& :* 2-eJg$8 29C*G⯗lA6(?< Ory% GR 5ᆆaB Tju6䔁3[ 1Y@\ +DR+9>r1B Ö!9wH`7@I!Y=MQ5AV>?6VC%\Dba4 %fii9'q n _&j^^|e}MNz qT}8O$12%ø@rͼA -gTTFKcJ I3Gep,AtF/ L,TY̧w6IJ֡4eHfBefZZx%پ̍_dwc jG4ny8۠Oޔ2(ɓyQ[-\z2Z4V׊hS]NF*0Ky1پn#ir?n% wHkXF$WMmgnbWؾmwy5\OW]|e痥9*:ڗ#2vkR sI#Bp\s\d"\i몢 @MbP]8zxldհ.3@XÖ@A X]@X:F,H{46(rI+\D&oBT N|\H&LE ]| 2K|5*xԱl@:HX:d8/=1!? ֍ g7~ܷ0UCȅW;Ԁ׸`T-9IceqJA&Yo"bz\/M/ngMͻfsݣ˛@  X4]]EvL?Ub0w5(kibBJxZ4 A?k-b}׮s~Yon_-wX) M#3v)+4^P h b6pzYFſݻnuROn"w!plT4RCI/fQ&4UB78|uZRKb?:@Wpo藏kEnHh+ 9 Iz "?1%z%?i+QrG pzP7q0u`IrxvSxF / \tA.kV"AK˅M%a'Ͷ\D6iKciYv endstream endobj 2312 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 32.044] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2319 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2313 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 8 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2320 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2314 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 16 16] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2321 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2315 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2322 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2316 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 14.834 14.834] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2323 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2317 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2324 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2295 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeJuanLesPins.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2309 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2311 0 R /F49 2326 0 R >> /XObject << /Fm1 2312 0 R /Fm2 2327 0 R /Fm3 2328 0 R /Fm9 2329 0 R /Fm5 2313 0 R /Fm6 2314 0 R /Fm4 2315 0 R /Fm10 2330 0 R /Fm11 2331 0 R /Fm12 2332 0 R >>/ProcSet [ /PDF /Text ] >> /Length 2271 /Filter /FlateDecode >> stream xZIo$Wh5Hbdi=^7ȿZg2mU("ŏ9'aKKlwnΈ4:razIv]RAϒ9io-Z>)h9彏C&DHE=DR,YvnT2-;M>0( f- T:+%ęFH% -eCH@RDi/ITC+rFi]cfj;Fk_l)YO5JMR: )h9-S$i"%S$02ӝGEU&dS$ѤyJ~~fT{k +FK/ͤՐu.M" _j`a55g63dIнUso}e}Mf(ý%8Vb~>:$'øȜIrͼA -g2/") %YBσ, Cu/ ey 1h)E,b4Pߑu&M!2b:~Q(0@ѡx.gmβa/JYM!faa[6̧ )Szg:%nR C,>g%Y.NEc+2OoKuR1,X_O+N~HG]?~Av|+V3E")sru?obul9Y/7w^*1vz\}n:7qn&v___Łr{!UݯUOcw<19 $[k> &AzMCe9+n8k@gmԋy;sp4/Ş7ՓeXX{셇XER47UjiO9%󲎧%!KbRt @<LhŪf׮w[x)Gi,&O g'컌] *z#)HVi뚂8{]ic!76waHP8\VzVA5W%(LVB40}|-;nE|pjk_k)R[)J1kx:5[ObV bĭW􀱡}Z)fUp|D1VX@rmXawXawvόX,[e|ᠸ|Bh<~@M-)MdFR0rn‹ıf&9EuXS(ƈ0Pa!,1ĔyBCb1mPhw06_?aČ9UZx֍P ?, iî s6#VePΟ;[So\XO=8|f)qt4=` r>Poo\|/xVfY*$Ŗ"Jl*fYR!sI?\6 /˻)Ao2"Nc!ZݬMЖ1&֛= }=.q]_oHĂEFHXb[@kC#qT{QN6"ZX(ՃXR8PI^bs~O' Q1Kaø2_=*.X򒡨/_.Њrg9Ds@]0眹je6FGo@7[L8Qvra\91߮'w׈d2QX7 l۵}Se Sx.~q9WxdJQ}Ⱦo7~NZaIU Pϒ ɳ.*)Uy*GP?D0 endstream endobj 2327 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 6.253] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2334 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2328 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 3.126] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2335 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2329 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 3.985] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2336 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2330 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2337 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2331 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2338 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2332 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2339 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2344 0 obj << /Length 1531 /Filter /FlateDecode >> stream xڵˎ6_1GQlܚ6 R@-Aь?6Y"q)|%ߤin^߄~ Ey>ɕd$HU)7ޜeDJF"c^oM!TqzDfa.uq-y`:9O6'VFoޞ`FtZ^lwqTFj 3% mcОm'nǞEMR3@l?HIBZm݂J)TLH(bW/dIlkk,oǡ"=jMi"q9~0|+.%BȢ$MQA)'_e!82 cAXi!%d4-D[0L:ӃT Ω h Ϧ'ur[ā mְ؃6%_Ab" G*{CAIԡ@ƃo_;R\D *o/0ȳ~u0RnȲGba(|"=Lҿ0ݝc¯Wdeȥ3S!N/?6̤\5TsfED ESQP g.Vy8%Ɛtjs~PIplYϭ7!HZǕjz8cώ*j5 U[^',_|FҴT>uGu# 6tvM_c}WE;skp:o]W+*#\j_bˈS*m׸j 0<ޚri'Z_8vϾIBL- 7Ԓ#rsg]銖ܣhZvnPD~%`z1©W@.%h͜1=,J+1NS+ʞkې:l*Hڥ `( ɹKZp{{f-I`R|Lb) e!\ău(JpW. A֫w:KSot?z`zVA DZ!%#L3ZJ 37$(4(Iai<!seISM?'K^:Kp [:kl{?7,1ߖ W 6)4Q("La  '3ƗYׯW]'s:>9};F:pHxZK'rt FjL]؟Vaf%&CP#ĪL{RXP~8,*dMͺ ,s?ͽD.uʉc[dsLs`*Ek\X&bbtwm 6'.js6J(8\OއQ]^B y?B6M/_XdY-5a(`ss@s^Å `!+SE8W :T@"#4ƍk$ю5XuQtѥqϯaE~2‚a?7W! endstream endobj 2296 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeMontpellier.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2346 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2348 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1142 /Filter /FlateDecode >> stream xWo6_G8~"7+ZlExMQba#ERV 4 >aM)9~"y52' Mv5\|+(9~rBgsRgݏQZ/7A 'B*j%*S]ܒŜ &' *4*cTBJ"c|NP?X`hR.+҂DD$H\Mr8X[u?ƐS^Sç-UBWPPDR189~r1aaP#C5smBl nCIГfEub!1zLNj`ROґi Zp40?<f}TLRJ$VĞpmƌ( Z3L[dk .FN-2+aJ w!"UD8QY6Ca\E+ *RMԓ;%0M9e3L !UD3䎦xJ+l|z]Aô۫x0rCD:nor./?qP'J/7!q:{XJ\|8y}=/pcgἍI9sLߣ7 -9ݗ{yWU춎%axĩ|}AZ7^e07{Om=]VϗM;0;׻էۑ敨L~~=A_GgNgjΟmO▂_3 aP>/Pattern << >>/ExtGState << >>/Font << /F22 2348 0 R /F50 2351 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1551 /Filter /FlateDecode >> stream xn9#humUj> RV=0h5F"9>0rMa͕z|iuRa\urMZh&MYS&'NT3O$UΒѬsO:m6@w 0HQ-@T:+%p3:>'HU-eWM̀BD^oI:#UpCۂ]b:TG\y8u))cg+8TgvdKIE%E5 [9jX0T<=K[8Nx84]R@jWmg_obJY RYp o(>$MDk{%@Sm˄fؓtrG)o1zņ}S5Ii ga`x<@ P9 2ȼFSRgH9O2Cdy ;~Hf"#ʈd:EsGRͤ)s<_FB0"4='ۏ2$ Rp=WD+QhF(~ޕB9DJAp:Q^nfº߫~^py=Y˲;U?ofecM1yU kP:F9d!@!.32wcV'gX`ShQDCHaWYfnb@4$_S rS(*(LMrvN2?<>,YCO[c)b ǟ졷lw( _@}X>FQoBcKGzw}6Iw5a(x3ZO+Vj\m,o] 8^Gtzm <.7p5EQ@oQ&Ѭ48sB!^߯ݟ}SuĤ6[ΰz4 )C*jѴyeۺ5h}Id*܅T$ED`a'z# ZM 4Om u Y8#CGя\aoINi .JtV+,ђ-ד#lQd`j \aDJFEOUw)EZ`TUin&hr,T}7aӉ˦Aƪrz3Zfw┫8k#jY-Kr ղMv"8oST)aT:D]ެeeOmeY5AsT]+XE&iOWacp$(R_+U6fj0dkjўa8XNkN`aq`*)=֜$V%1-W7GLa֐>/Pattern << >>/ExtGState << >>/Font << /F24 2355 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1365 /Filter /FlateDecode >> stream xXKs6W(͔(iI$:==2mijID5Ϳxzؕc=c-.v z ) =y=_0mw0U).e]>>rWz.K̬RWuyT~?|*uUY6d;%f p@GIIQ1&aZ]mg1j&`E *unS~Tp)"τWcO5 76] n ;\ h'F2^WBBvFQ`j >c?ٽR}4:2fiTZvry A}`թ.D1k<>>*oHpq )-(XP Gs7uEUo[F/#a7i$ I:W3´i|bOD3\pщ|A |6t9BVޟMYɞ, N;<>'/=YZR}(w0vO,d~4hKY!rJ: ɱgMImC׺?F :ɖhî)i}zڤCmZ1ibh{#Z耱" DZ@%*pkť)n0=uu ɘ07hPK;_,OΗzuUqI fSx:ΖmsǍCY`bwױw݌=Y^D<&-z(*[] QW" ffnΚŤOTh F f~~HJ[iFCU)do-"^`5ϋf]D+ef7RV9qԶ}ڻ0t1`YG6#!5 zb/> stream x]YsF~ׯcRV*Uqdg$^ۛ8qĘñR$%S,_m3ݍF{z0ZBZ+S3! #}w8h]h+ާD9[er+LTrN## ׆PTx@Wx/-|W E6bȥ"ZI9+$S %C&Ƃhro6Fd}ȵ We| eY' eepfM9dmI *`5Yd=h*DO!@x@ZP|p&ؤ 8(G8$"z"/(PV;Q6!^ɘS[D_g AH@l jefq6% ؂c-XF"=9GGD$b # @'E} ]T2*QR ##A@y&z=hcV)d Qhyk,f4,mnd@Pa\7C6!0 )]1h!fVg@I,"GDIp]a15`摎ud=1b ۢ Fe tcplȷ1ZTэmzs-hP9";A٣/<O^tVb닪0G`QF(dzl [Kʧ[PCH5F=MUqZt=OY\<:~kok\bд::MUʍeG\fш0aHWhi`:]mcFdU)CQwܫj1E0\pSzl{15s'fkp$zZMQB-Nx)TTr(gUd FI5F7 ʉ&j4i9Ս'(vP6 q1OEw<y5"`qOL\]Mb<쯱OJ+1^Oh؅0P=׹A5y9gZWM=8N[G<ߋďx,'x&~I}Q5 [.w|(DJw3 - N5A,OƣV<̒$BcܧCy>-%%!Šn>nJ`t0͠'\J֟LgߜDGa G~ov>$Y<> iwҿHž'+tU ESdo@"9Xa-dz @J\MЁʹ:E-s]ۯ'k[T ~֧0m Uۼu;Č~tRtjwV-^}ªNJo {Hm.M ԓgc; mj\Nnϵ;sAV=pC~i~܀!_рUvq7u( pR6{c jW x@޾"oټ4zě`>e noo@# 2jD[a[IX6ֹ- cSߦPm 8ݞmw7;|7Ao)>>}:z|-E7P(bqSKRFK-> CG@st `ZZcUCE9;Ve;#?,^dpre&$ܘdq9ɐqw簖!p6{jK5+J˹(-|S+XaPGr6O|\=QQ:% RY"WHh+|\Xb9l 8ǁ?}۸CǪe%͋:f%4ZOo;p|A/1.o/ʰY?M@ <"?2&E[` .w'vxb'vxb'vxbWUhUWU ^U1:AN`%?{Sdʐ{#Y7Af0v&P: ^g{8ᰇބWzvC~gk\Q/lj;=Zy-ѝMP yb] vn#AA9Iy r9GrK:lJ8}ѷj\f+T<[yò3ּhMc2z5ڃzd"tT{L ƛ\{LRl>2^3{5^1oKk!ku;x# muG |.B|dFbLC[1W%n65%mqHK=_Pn\tTmvM-*ƶ"m55V z5+'/$r4jq5!wu߃a?Yc?"m7i1Mp{p+=nAqq[eۈm#8GD!HQYDu5jռvoG*^HŏJ0GnbG)~8ÙwH%s#{vXWf][@0][jTw;DIR9 E!lAk+鯈26Rw#e[$E$}}T}PHG#&5qyEPveM*6ؤ8}k$ԏ_լYWUQ]GT#AH#66aݑR_^թ.lt|X"oժ;>9sbņ=&`#ή:X C>^®fY%wYwy[h|ܿ cD.MDwAe`W0o}Oa5iR6+򅼤$߆t;"?$ڸ~a-9I&9XyÛyĕx>w0&_ɖ8!2^-JZi)Yr f`wn 0tB^ke0b[.BaN sCa2jլ6^ǰq GYvؑbGp+$ endstream endobj 2341 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeBerkeley.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2353 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F24 2355 0 R /F53 2358 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1780 /Filter /FlateDecode >> stream xZKoI+hu$(%طl6&Z﷪0`D2tWWWW&\FX{^WiuRaŘ|}\zH,HqV vDKWa0~{F(֐P$\Q<9$Oξ@Xw2_ޑL*20\Wmqp}2tGk?flZ{GAݯ@DP9%_N.xcTcpro/Y[j,jz !~$Q v;.zx9+oNOA Œ׋,d99)}4l&gnzNsJ%Y;u!*ABZEf S$4>*G_>""Ian;92Heq:i/Y M~n~6ejlPܿCJe6*p pԀ]{uqRm"M(L"uᦶ8˯hX !dqb|NpiXY\3rsl+I- :ȂЮ:E T,~݀pT+slmRcrkTQ({LJ,<%ȽIi'tiROW77q+[xSj{X0\.e֊p+="?P0gLuv׋@ ہ8q=^ 0V=d+]^wjttx1>s(ÝwbMPo*|jyeIj0r ]9?K%oJNMPC}nPƳ @[0fU!G >/^~MÁРQ/{" G endstream endobj 2369 0 obj << /Length 1226 /Filter /FlateDecode >> stream xWKo6W("zHM]{쁱h[,4-;|ٖc;iҞD3Ù7y2O$L0IqfbrrvIpRf%<̒e' Lkz#16ᠵK^n+֨i_xcKTl)\dQ}*WFј8mG`HjP9=t:Վp~"{'oGc*fcƔtuܚ`Fc\ɘ>Yczeh*Ui5|#,v^NUv4 o?F,+xlԬ?v`f(}Mncﲾ̻MJa=or/!/_fT=~kAq?UΪlEPFu /DVzZc)JA>]EI%׹R;۟x[”3/F:XM(xjuv)٫*%_f0("' TzJ^y?:9ӫ.L4`~|~^ $i f],MjSyvLw~InQz:fڜS6'%`bpڄ*3N4 g/o}jd@6&8Z[ I6x(@TPF}p''f< &럂d.8.Oή䧃JZk~`PaR0<0 .,ơDj.S_`< Z :90cvh1~˺+*;e;_5ð x +KσA#jF0g۷ڋlv(Nk2!([d(0|A鰯؟^dɊץq^K@M6kߚ8T"7k8S6& 1@ mĵ i} {GGp _,%D_1Ҫvڿ`M lEu ^`0bd߄5Ej?o8ܗߗE5,jί Q@m9*l򷷵w/|k [oFpf4R!v^>/Pattern << >>/ExtGState << >>/Font << /F23 2373 0 R >> /XObject << /Fm2 2374 0 R /Fm3 2375 0 R /Fm1 2376 0 R /Fm4 2377 0 R /Fm5 2378 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1767 /Filter /FlateDecode >> stream xnFأ }" XEmLB-)ȱ&gf20r2aCH[N&׀gDADXA0dӑ.C!$[H4R0 BX*Zu t쥐DZCP$\QZ2='M/Mw^v}5i$eR Ŀ6m {9n>Z,;O(mn/+u @zgA:~q'; Ѝ"}D(R8m<~^mo,J?1n={Qztұ$i4(qڂbntPf^Op{fX0(!r\כnMJa4e_3 M) KB=D>wt{DG}ޞ<(eT's'bxɭ'"i*Q[xm XBOAޣ`k ߌRM~A{]oz%ތx3ZN72V9`ƈ^Hr,lx:E4>$-9 Cqeحd쮕]0лT5w׌]z|kfI Ivp=TiC1w}́''mt թ҆\.l?[Xm7vm~;. >m7\-o;;`9[r%;w:zc-ז`k.Zyi2;.ն?ϛ[ζQ Ɵ o?Bu#B@ X Q8iaSP^&]0 ?Y.}9qs !plT!.c:k<,DnЩ(z]s7۰<uZb)g|nq`yW&uY,?%,%Û6_u1 j+S D^<~~+ Ѹi(#t.Xj*ҙݯL#iYc5Lp:j !!D#39K5y:ixzߋ-Nӕ$g4 endstream endobj 2374 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 8 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2380 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2375 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 16 16] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2381 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2376 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2382 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2377 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 14.834 14.834] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2383 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2378 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2384 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2362 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemePaloAlto.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2371 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2373 0 R /F51 2386 0 R >> /XObject << /Fm6 2387 0 R /Fm2 2374 0 R /Fm3 2375 0 R /Fm1 2376 0 R /Fm7 2388 0 R /Fm8 2389 0 R /Fm9 2390 0 R >>/ProcSet [ /PDF /Text ] >> /Length 2374 /Filter /FlateDecode >> stream x[IoϯQB4X䐗<B4Zfg߿*=ɲc)1a7X,kf0r0cÖzniuRaՂ|n}lKI{{V fDKW̡d歐DSo!'I"yrrF~;X-;aޏr;Iʤ"*t:_"ٯ뽋";ʸQr|Xf?R[  *`9u.g=y~Y -5GG:.<} sMIS;e?D=cڧO/e'We.r~n氤8pFDHXXY2_nll gTK>@ q`*@ęF:&CHKB[H2Ca ™Y$FR ^C:ÛUW萃JLCK>1Y)9tQh9-H*BB -<9jXبHY@XGO2/=i%Sp5"E)bfKO]1^ۤ)s<_F0<4_罟XYѡxagmμ2Ke1K4Fa܆:YY̼. Sx c*ѮPv!.*X~Tjq>)L7FPer<F7D_/BH&WE,eޛjxAڦxԘ'; ,\2o/˚I*',r=IGYXG3i0KvXp>{դ`K$g 3"4Z~(g 'wqZ#fXчӎA#{j m/Na[ͮ'0CXkq1@Ґ!4p&ڀ9h6P7c.Gn(ؐdEqn: f۴$`S6OKneY(a,p:8%<P=]4)XPn 3Sauv|pJ@(C@62d$Rxe*1E@?D<Ŀ~q`Iۄoon׋r<ِ+C*0ޔ#Ȇ|9{G#yʕ5@=@ңOr">{p&Y#q؃^CQdz^)\|/xf.+G \%Z)M}K]QgX3?RHZF.fu/b&>./YHHx2E}}t)#w?>hH0$[$IIaMGb^ՃP|XI.wx/e% C_Qg\QaTAōy>Lۇcx—-ʈ@l'8+S~\<Ͷ"/_XzÄ{v;\_W#sLTɱNG}u[SW۵ U ?cs~@<{?F%Ri~rP ;.6jHh #*&% &ZnN`g,y endstream endobj 2387 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 3.985] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2392 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2388 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2393 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2389 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2394 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2390 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2395 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2363 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeGoettingen.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2396 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2398 0 R >> /XObject << /Fm1 2399 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1184 /Filter /FlateDecode >> stream xXKo6qXDIM[ʲ-ڻںHхmlr47cF#g3OБH-9\h'w3N;H)W㪝}Sɋ)(DoAWd:p6q BڢdyI$77U,/ou(&з$IE2 *\MޭM[{qC;o}N aͩd0 Ww2 i= l0B:V= h\ 4\Tp̎!Ճ+'n!Tiˬ JSHJY*޻Uq IQgY2ސ(#i*:lnᓅQh0xP;/1!Cy>>W#*c]j#ȑT r0!)s03T3 FF7cq' FF֓fY?{Zx9a wøgbQ$NԄS-n:j`c\'V}~&' _+qb Soxq# o c:ȒjB9B Di^Ô'98FR2o\Y6FWɋInFT:;Xu.M9e_3L *q䞎>ֲuE ^_oE14N9\)vyIXbEpT>9rѓtEXc]TbU@LcJB΄qDᚱ:`*PU=0Lh"ELѫG3J&?Mm/Sf;g/rwP]- ;tڹ* @WC9S&NUK&3=`=ͧT+Pđ$E?p駋շsO:| endstream endobj 2399 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 56.693 272.126] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2401 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2364 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeGoettingen.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2396 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2398 0 R /F52 2403 0 R >> /XObject << /Fm1 2399 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1512 /Filter /FlateDecode >> stream xYKo7W(Z4 A Kk[%ْ %w-bM@rv8̬&ݕzvp8#& ʅ!\ >}~I JyzU@g~= !ZCί: }5V\ ou5 놿oa5r%eRO!}\\*;ʸaDPdΩs>au;=UQIS &Y*tX5\mıDJz/>^pS[|պZt1űʾ>/ĭ"*gCLݓAMP WxT:+%<)=g:d| IZf @IQU4DdI5V kh|ۜC@oHIc ن# dJ1_ X,uׅʡ[H*jE-x ,- ys԰訄Ȁl[Gq943i@/όx~%>!!_lAUC6JZL|hhb&k4mdJ8ަ ^,<~ǪtI6QQB_q{isj1IkƎ3HR7 3QFqLI] >3If (Y^C#E )bf{LMӨw#M7i3 fuw)f~Q5(,‰2o?N>92j 2t o%7pّz/u-kܶn'#Ά)4^9lQxF|TN bОQ*~Vj>Io ϝMis{}#EQ ptDJX ^%yRnbvwx[mrt JY- `| RҬ| :9:!ИՔYl@B@^/ L/:eOP1Ge!QZxuLI jU)d/Zo:9s!ePV s[E]jtM&܇T:~A\vG!"}1%A;l|3 6}7hLmϋc?88fyFw/1g<)d]NoI<-f}%Ouz`]M&! fP) .H8Ze_ݻ4cL ,h1 >PP""zd >D!cj\O9fwDߢZ c;[?j9:: endstream endobj 2411 0 obj << /Length 1051 /Filter /FlateDecode >> stream xVK6W(W$E Cf[ E[@۴M@$o(;䐲fds |ÜF(nf_?R9"ym __O qFIΊS.fWTF%)sGhKXh>Ŀy|?gE4E43LUuWyydfBM4[ۉkBd)5'Y 6Y>PvFj {&8VB)vx%)Q}3X0ŸGJ\?AjO8[|أiuw* ^UwүsYSI!eY"U>LDmO<{zKdo& 7T <\Hg;WN)~g 6MnToJ:$gM[U#PN#gDdGJR7.ƔTLiU]'aw\UUeW|cY<ȮT vQ%܍z *Xez8C]7ƯH''MHx/`y,KK ^>X`{h*B-> a N3M#_ aBp Q) |SL`٠ԦZW|@K 2о 于NoaFM{bG|<ܛ)`# ŬݛEKv6nzǪHZLS*hɠ8OumJBe>-Gc6566l8 68 YǾSQ_$O$Hl:DJߝa2i<Vi%N@\))\ޛz^BW?so+uS~,[Uy 3 xe|J9 endstream endobj 2365 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeMarburg.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2413 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2415 0 R >> /XObject << /Fm1 2416 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1229 /Filter /FlateDecode >> stream xXo6~_G8E=nhWXm$";eIYq gIƀ}x䙑KțRZђ7[ZP#s" AdӐ٧T-撌[HX9LS`:N^ BEHn)8Y˫f,2Qۭ֋?H&)d\6ދ},2ۮq2^Iu62EKQ:DPӜScJo|h1+Sd,>%g32d 4{(Neg2 ^ #i*IEc9|ƊޫS\94 )ړ;]ưPMb5G.,2·Dy.0w[ai$j_ti;R:_Kx#0CxgWs!i0:4,A}l_m^==9(Lf$^_+_pb ׆#&a?FԄ w {d%)Y- eF VZq D S2p8LRG,*s8:z8`^(5vRxgIUgӔSf;q5ôr_G"stOi ݒO`+XV{~ޥ!"q7pN)vC克'd`<=smL"6*1*Jq ƃc%sjh7 9^m{{TZFDq*s[XCJq ?+]/qڻk_y~>}8SɪY6KM}jow Mq&ōIIWרp,$SP*?ĠA00j8󯚛 6]y_%쪾] S 7n*C˪{!yٶ'x9OV.LhO$i0骲驮=Kw޶nbull} E."pOP aq(/9vnlSLȋrXwdT>MdN,a,M 0;GĽ5-IjA$v?]<Vߒn1O endstream endobj 2416 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 56.693 272.126] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2418 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2366 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeMarburg.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2413 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2415 0 R /F52 2420 0 R >> /XObject << /Fm1 2416 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1551 /Filter /FlateDecode >> stream xn7QB!ǵh4HA֎PKWV}g%^d 5`s9;f0~+qy?8#& ʅ!uE_vRA%5ioTD2Cdyuۉ`ZDSo!+"΂VdN.oU]º~ZN>L*26@@EGhpG؟˪ƗEZ=:k[+!TiΩs>~f1Duj?qP[*kXm4rVm7==Rs?,#we8r \WQibxZVv(i o'u4+g'Ƞ 'P r meT:+%X\z49|S߆ɲ ~*ɑ%@ I8jX%@@ Bx`Bj\UO:bKƐaIR:X9Ȗ F*x-9jX0T^&@-qU.)OmgLz5ϺM""_7 ghKrOTp[(2fV=aOAEʟذ?VG&)O1 z l@rͼA 5gDTF3ЈcJ I=GY@)tʉ,tG2 L$vDoNtC3i3̄M D:w(t} KJ!"J 8+ [6ȓ7 JӉD')U@6a\v= j0=_#N̅']Y%▛k'jEM_5tM!ղuy]ԣ#}096vȻ|b 6il6ߛh*cZjyFw' # ,)d _^k$g:lfݟY }5:iBX=a?C> VI䋯݇8ØKTBS SK-"QP(`8d lNqx[t^qahq gOW4" endstream endobj 2405 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeHannover.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2422 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F24 2424 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1359 /Filter /FlateDecode >> stream x]o6ݿ60qxܰhMazrpFIM C\>vN+!#ǤR _$~mdoɷ? E42&:&d~E~Ηնº]\ofߒBR&) b{Sڈa;+*;ʸ~_QmDPȜS|~uzu}䐐>LQ1, (lKIEg@a2$QB"vɷ1G$}H8C +f}@Ց3"14p3,MLr' rmρŗ,帗rDا:kMR?F\c7ɌGk P9`2ȼ/#)3$9OB ;dpNey &i_f-$XReӛw >K0i3̄ M)ee7Zgx%l/s9~]ȱjA.eP'S'$ KO1E@*1*c!.:cSOȅTpqiJeN5fV ({uj ? i03T1*p\`m4Q_V2r]4q]5vsu_Mi;qi`Ӈg*io΄1vLߋL4>`yN1E?T شݗn#fhWe~}uJnV̈́Vݪ-*XM! n6MB ,075^ʄS6x,x193ߠq\$!RB ZhYW TNi mڔdR`#X R%4q5#) kANz1K mW>6B Wհ;|8 EkQ ESoDgPgԊB*E/-7Bà>HM 8P~ϱqA 1  gwu|ڳr9qyl t endstream endobj 2406 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeHannover.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2422 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F24 2424 0 R /F54 2427 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1798 /Filter /FlateDecode >> stream xYKo7WhXǵ@4H-Ad[d5ȿ һd;& 3##FP'5VP. YSw#uyEVE9I P SA⟍›WxPDSo!sbc`grWº?qpseT2He`'>}\W\-(lA0sN!yF]{oApRckO:jִz9zS,FGW77[idqH@Y͗^{J/ _>kA]N _(gt9#9_$<>}>Yn@9ؖ(-Mp:5,*r/!߸#qd.MJwg_kjg&KudcH— ,dC3$ѓ$R 6Xf F/()V}w$~2L5q*Hf<2'\3oBgQF)x1%u#IHI4Sb $,aIGzU$J^f1eJ.ƼS;: p2 3aieq s=+O$+Ihi>E_!93<6ؓ_e֓g'IP󒒡'hch(\4EgLY=7f? Xt޲4B3&+=!r hql@*Ugc\x} `9cEQG)!5 D5pV}ĩ,ԉ`頊)ۛC^C]?8k6A뀽kdY5 fwJ fK[EP׃/ _ // _lŗ%d|6|i|麡/h8vL %clu5,֋cj /+ko4Z"B x+U*gn> stream xڵVK6 W(̥H[2loZYIt$۝N{-ǛMg|̓]“gUV'JIEwU%)2VZ+#}V%5 Q$ɉ,u|J-WRVi:~)#Nt.5;7uHK;ޒPfRݱ`\\}t7Y]ۺ |k{NCZU:)0E< <hF;޷zI@Gn`k8JcE !BvDlGmxHq4c{m`R{mxEE"'O!wɚ!Hb>w}Wha0cL!<&EXwEr oFnHfYkJ0/DLjGj:K=(4݇'ՊEJQR6Kqk`$!ԅdUOo㵜,IںdY}2LPD,6/hFJΓ&D~TWXՒr,䠯<+k/l ud:HNNgU>ihh@Pt7]J g vt="\ xA"-T巓d"mx'h`HV1dx!`8%7޿7Ca B?,#Tz? 烁9S+Yfdr9=IqQ_XHBuA I./^$e/0.6ALzx̠ UÏjvUJM[ZnҒovnrXX;0@?۴\oT$G&v5MIЙ-k&ކYñqHř(lOp&}O`מV=5%.J<0Gڻћf2Un<w?0HGL^WftE؄,/f:MƲ endstream endobj 2407 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeBerlin.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2437 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2439 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1430 /Filter /FlateDecode >> stream xn7Q:,آi [Emxl $[K}#hmɍm ߾r!ziuRaEC{vQRA%^|+VѤq{io/!a(ׂ= Tzg @ o'Jg$q% e %E!+h D3jX%@ 74-x C](C7 9e%;|z+l,u n "hB Ö!:owOO qp4ibR@WgFY=HZg&K5dQµJ$SL4hZ$JޥBŗ /̱Q?p%Dc+v쩆{8O$=bdL8k g0~0oBgQF} qLI!iH>13xey &i_g)$HRqSԻ'%M2Ce$ 3!Cs}!Y谖FրY{'Zv׹4r!t\ B-| MaAINċJɥ'خEQ+*]E\4Sk;enuTTނ照sLd=MƭKHPѴ:JJxKH2r:I1+T\9gŭPDu֍i[(vBGpt>(A-47yc(qSt,^TJhi?{ i(kqp&+GYoW_;\UO, &h#MCOv  ĩzCGa?zKѷ^?Z f՘\A`J]oZ)W!h<50 Ʃv.p,A%[<7r7d,6B7c]#;[O*D8fqVպ^M-dղe |~klrn6dxw"b`bXL!Ys;ndF~`0cX@i %Ss7Wfh5nդH)Mo RvVyABf`Hlef+8TlF|9YO[)f"f9wF8WVXw[~eBCui:s80VP,:.m>RUEĞz#B C\;A0Pu vvjFcR#PfF0߭ι|4 [A0nRMH7_4 v *-O/Û v8gĠ/ ۭ>-N,ֱ>UA'*'$17sj͞kxp# e endstream endobj 2408 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeBerlin.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2437 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2439 0 R /F51 2442 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1877 /Filter /FlateDecode >> stream xZKs9WԖޏRR,Irp'qm$v ~43 PknI_"9bzؼ9:#& ʅ!<,mK̮H{rhyVI>nOPBƉz0kA{r%AUzW `2N$JI0q$#J9%.,4)N392H!GR %ᆆ"]`b Um 4g9eK/|z+뀤尷DTT"!e(ΫCEI"$l?u#s4MRHjΌjokBV៱MȲ Wm")7 gNNgtx|D ü܆N,ztZpR^-JN=YG;]2oE0'2_),y{dW}`܂內s u2_v[cܦH aTtZJ)>U`L68SwҖTe:d %'#"[t6(:aOSyI_hMigG/^j%*`FQ֒ w2/nǟ.iVrHG 4I'r:+ nʩ57h[RA=6bav{{yRp=tv=&-11{d{Mv4T%*HSv0dqA,4U1ؾ̮F0;sO*h01NJ\(J.(/^k^ 8Ȳ(8],jQ=/fIoL H;7mwY>9Djwh<2?'ׯ-Cs`Uv2ŢޱW0ET5X2|@ ;宸ǾALm"XM|P+h(s.no4 *n)^UNи]+^ǜbjVȭaiy Kqm=t`C l8k5q$&~v*(j]Pǟ@|Zo=c(S^  ՞Dqʭn«2˪)m:.n|)H>ESdI5|4:w$T&Uy&VzX.] %LY##_NKQD #6^4GIW|Ya0\"07z n e6pݪ8q 7͘ͻgs7KIcH5,%\j*%'S%r+JY:aWiw @?#2oPߺTu12ϏT:U)FA{Cr=hC^7&kGʎ+o9tzm>ZPUNo8b:f~}TLMWgڢ]:W160J %U `Oc8'gENM P4 ͰJ_J &n]4SGQzyy5޸5/|6_NRt4Uy{ WUWnD2A_cӾT;azB:!k:3C*%p[5 endstream endobj 2429 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeIlmenau.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2444 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2446 0 R >> /XObject << /Fm1 2447 0 R /Fm2 2448 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1623 /Filter /FlateDecode >> stream xXYo7~ׯtcHmTy Xg\+T'Āp820bG5>bttFIM C6-=\#$[yGגaR&ݏS({xegCdݐ 2,;M>\0( q"tVJ"3!9'ʑߩXHRn;9Hy&GR ᆆew«^V?;SVPoW\gulKIEg = Sy7s԰ȽL[~zđ94mRH:ΌjozАuϾMoՑ/4pʙI&e$ RpZ$2f7q*Uq`>穚$P#^c7X<3IBA =gLTF3cJLI=GiYphY,AѴGϲL"LyS;"%0L2Ce$ 3!Cs,S@a,xZd% >˅_w#R3C#:VڪkC\tFc)sk;e_}骛TB䅧sLnu2_LǽKHP"kUI"H oQs ITc+ɩ +BÕUp2ESǙRiIxӪpH.cjP=9x ?h<դE O'bO+@O9FQhK^ﶓ?/^spUי;̲Ph:JJ$R&RV t?kc7pn(?Bؔ~E*NhP7e)(pB W G]2CU}Q5]h3BɮfaKR(*gE1ExU*1ZH=Ԧ]|h 9Gwȁ?$=īc;' A9SW)L\M;iu8^]ɛͤzXv̯o~⸝zԉrHҰo,H lZ8h [ )ql&DXty޴˞:rߒ_ռ9,R<ةXstnuH&¯jx86}xix* qk>{I5CKt:^V?r^t endstream endobj 2447 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 14.834 14.834] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2450 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2448 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2451 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2430 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeIlmenau.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2444 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2446 0 R /F49 2453 0 R >> /XObject << /Fm3 2454 0 R /Fm4 2455 0 R /Fm5 2456 0 R /Fm6 2457 0 R >>/ProcSet [ /PDF /Text ] >> /Length 2202 /Filter /FlateDecode >> stream xZYs7~ׯT[>7+l*C62EI:H1tcIIV,U2=  ;`zؼ;:#& ʅ!99?0oK.H=rhTIS(OC^S뀤尷DT#p8o{ t Ao\82GI ZEۙQ5aVZg&תȲ n" _7 gNje$ R[$2fǯ̰{d;)bX X}i?O$2H5q 39$$pPs!`(#sqLI)HR?M2!S~Gwi-p"!ljAXH V2EKp,Te:d3$f| ";Gy {o nѐ4BoJ[J3ئQrx<_oGH~m?-t%I宠Y)RVn=ܪK@بW77G0u|:߬ˠ=u@&|4T*wa@qT,4U1(ojul>v~\5\.-a6G1 'c\(-Fݬ!P޼l^F,\6Eӳެ6833" 㑸*vZ͡V!q:Xfo ]Q&4PٲyMEo Oۄ quqy7'oRnnbZP?S2CU1q$d@UZ SaVQKzt_T~-fT ~Ldހj#y+F hqT ۳@{sH0wۣY)_BxTڰ!٥H { sw2YqV5j`:N#j| \<^?p8kd{{1f|EO{_ 3 `~fl/'e % K3 ,[MRO|ڷ}0;ʽIt7ZFWr?j=>Rvw,ط>LmUH#BՓHҲ_[Avi/ IcmG Vz,v(X({--~_;j$tl/V?4 ++ %w|c5 j^'>$g%EhU`s,OfZm1=ܤ۬Ęp1vz?_^-.0ٮp҈quy:@}ed&jv?uI 8X4ZWFpo\( ٕ-PCzhX^V n]JZ+> *\Ez((N?cAnx-bESi>kko7]-:Kdb"O׋ߏ^4RC!Z; gmN)3> stream xP( endstream endobj 2455 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2460 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2456 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2461 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2457 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2462 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2469 0 obj << /Length 685 /Filter /FlateDecode >> stream xڽTn0+tWQ5͂F6mJt7 \$3̛9O6I\-p\H\EGRT<@][ƒ~I`$H2j2)Q)HTJ8lIIg\jhi_lu 83=·JR1 ZQLw`Vd ФHMNY]8zG]ޘ Q] |X"ح5Pɹo{} ҴUM- ʖrunTmX%GXMl}aǻB`1@K/.J-lKO79T{gOCav >X0m3S|xHyVz$KvGkoT@@xHc$xMx0kSvc/ 43J\-djhGj3+~xX QWxT~߻5iR >iTMagalAr`)L^r9 RT{O҄L'0[s^c' uzT2uc5Լw}[hG εR!;=$t1Q`V9W堺o挈3$ y1K[ endstream endobj 2431 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeDresden.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2472 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2474 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1337 /Filter /FlateDecode >> stream x]o6ݿ60qa]b+>xĖINI#7 H#RP. Yza ~%Yސ{I^FUι {yecCjdX& 2Z* J3\8TRJ"3!$eIu*%(e[N4 1"[i$%` 7Կ|z 1F>cT=}r" dPWJs]I-kr-b$!#PaX2dR|uѷ@>GҸIF=i_tծ, ՁmD=WGf#lgD`60 9gQhҼO})Xxy I{))]^p`uSy&Q#q1`%A =gLTFx2%u3Gq*a8I,AѸG\WIIjF;Tdd.oI: r?5Ìc_% X1Am Ⱥ۫? LnKsXMXެF!`> ae{uۆPDl1I 3'|J/L@АeǪɇ颇/hLv/z4x잆0%D|`xs;1 UX͆]_I-WIMn>)FN9&=t~8HXc[eC::=ڟ 1Ї| GOs;d"42 endstream endobj 2432 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeDresden.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2472 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2474 0 R /F50 2477 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1680 /Filter /FlateDecode >> stream xrZ9j ErT%IeR9yrmj`O<0x6zjZwK\Fz898#& ʅ!8Б /Iszry+UI>^#T'B*'PLnQN;M0H q"tVJ"3&9!Gq#XS`()“ 2NHƑT(rAa.@xccFjn\Y/J䔁3[ 6Y] #2DR?hap;O3G Ⱥ7@J!̨YmB$D&>Eo`dI3цL 7R`q1fa3A:iw1 X=j~ e'øA P9 22FSRH92<χ C{/dy 3|PȐf&!ʀ\:U[Rͤ)s<_FB0"4g $ ZY3La=bV 9Q+}}DEs I=2?ewf8"qRRO`GDSśՎ% cQּվt]%{R Oͻr5zk1"!O /ƩtFJACS*0W`IW0tҖT:d3d:  uozFy2IeM[4&=7A<=zZ`zzJ3( Zr:$gb9[t?ݠH!ZHet/֫ӆfvM9{[uua~}} :yŏ?Y:]GӠu<;WԐY2fb*DaI?q|whq'ם4!_NGwGz7U(ך5v3h7Y8 qb?Lb9.q΀ga2ɥrm;p[e* eB[LkKk{k8z|}#u̢ʘmi 6'=4E^4N^4K4f͋f]:ѓ4FٮP 5<4Q9GFw8Ё2WS$mr%ǭ>6$O M+ERS+9\B{iwz1* qBɜnJj%/-%Je:8Z"ȪUa/^Bc DpՍzҲTU; 8_rw6Z*mC86aTa,[Z/ZOSXfꗋ.ZFijf5Ug)Ƀup֦%BuaT _/2b|3I JnZw*z3G8Qk^FxU6GiUڋU1rj0|15XnOYX/1$h'UՋ8u;PiirW.`R@j#CX{vSY*RV'|ALQ0p ~ Xm_Ф 5{ʕp̈́\>ǛQJwsZW&ʻ +Ysa[ٓJu~b$Y_Hn)W?>l OBMpO*>/Pattern << >>/ExtGState << >>/Font << /F22 2481 0 R >> /XObject << /Fm1 2482 0 R /Fm5 2483 0 R /Fm6 2484 0 R /Fm4 2485 0 R /Fm7 2486 0 R /Fm8 2487 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1681 /Filter /FlateDecode >> stream xnF]_2Pn>[$5A|yht,ԒbIn. Ev yùgX20r i3tey &if-$XҒ̧w>IJa4eHfB6Ca-x@Yݽamn"/+k(>WppzDG{ˠON '$n@r<ƵhLʈkLɃG Nja+qOpzP7`Irzf1q.KdpoSTtqt1D4` -EAK˅K%a'Ͷ[ ԙHj|-qy5#p endstream endobj 2482 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 30.481] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2489 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2483 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 8 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2490 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2484 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 16 16] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2491 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2485 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2492 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2486 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 14.834 14.834] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2493 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2487 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2494 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2464 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeDarmstadt.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2479 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2481 0 R /F49 2496 0 R >> /XObject << /Fm1 2482 0 R /Fm2 2497 0 R /Fm3 2498 0 R /Fm9 2499 0 R /Fm5 2483 0 R /Fm6 2484 0 R /Fm4 2485 0 R /Fm10 2500 0 R /Fm11 2501 0 R /Fm12 2502 0 R >>/ProcSet [ /PDF /Text ] >> /Length 2359 /Filter /FlateDecode >> stream xZYo7~ׯࣄE3 F6`yG蘑ȿ*}LXZdbǏa0Æ%߹vFIM CKrs0ܒ [>'mʡZ&S{xegH%ٙ@uCNO;:* *Yx8(JIqqEr$O*e‘Yl"YFR 3 ok?B o:fc޻Ň2%\ ؔ,u`&%IETz Ts԰PQzoA>&ѥyEWM3[k惭},67}piY h1g63dMнՂժŗ7 /}OfWI{+!,z qw f k 70όG$)lB3BQF<☒dΑ5zdQZ8Cx[`h#ŊR*FSYN|ԬeҔ9_FB024?_Yhѡ\@_;پ((Ս1DԝA:d0.a>R+Mٞ;)q@O1"qVUD\tFĔy.+IIΰ} &&8N#[Bvao "$6p &YZDjʞd.BK]ie̽’A,]" :cT0XsyI'46#df0M9>%.7W??4OUP `뛛NXe|u|:Xެ0SfhM AAA g0zhC=n8"R,Vp:yXv_O}޽\%VJ( |( Y`&/q<}X_&NNSq>}XܝNG۳\9^R)" "Fѕ}Lk[Q&bU)C״w[dʼ vT-ty fe" aDŃr|8 bVi8{]$6D-M p֢ƴCT;:y(j| @8 WP9*!)qzpKHԽk=f`%ϸ &KQcT63Q gܴZ/Ilb&0HtB+x]fdWufe }`2{դ嶩mj`UKN: 3, ^m=Zȃȴ}!A@ [bk {RYr/נ^ Abb70vcd8BFZFE,-}|ԃzд 󨎗a,Bݚ M&f$U}gbYKY&fYG>Ѿ=PѾ3P~w;>ƊX~fec}V>OaV=LlFK-zgXx1S/.hDBJ-RB;S_!G<uy?Zx%MƤi2fC]ৠ-ØXoG2f@||@q\q+;h"(i%I$%U$%p`zo6ZX`Q()nc,%i’^n.? {$TJߚ]4._Y=GS—봞,*y߯dN"!Ԗdjs3wVmL?M2-?9xl2ffqr~qzyr\Z'[7I1;Y=^OFN݇3Jo\)F "]`VȈi0@Hݳg1 *)Uy*w@O+; endstream endobj 2497 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 6.253] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2504 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2498 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 3.126] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2505 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2499 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 3.985] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2506 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2500 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2507 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2501 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2508 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2502 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2509 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2359 0 obj << /Type /ObjStm /N 100 /First 1070 /Length 3402 /Filter /FlateDecode >> stream x]ms6_UxM3Mz$צMh$:,Hђ%;؍ID ],vKe|,OHh9F&h$RKY2F>;HD T"J)]z Ga"dPR>tVN&F[mbuxZIy)IMU┕ĥixk&I5um" Ssh.wTIs4@(CmOWIu"@3I0@q0n\(\E hЁZ+-Ղz) rjƤ% X+i"7BJb eQ+$Px"H%炰I\!q-"z 9)%)#/\E2EQ6H!KOu$C rΣi4b$.:b%ѯ6;Ki6ػ@1+QSS-YqATk > PP6(`mSH6( KJXteARqj_Ac9(=pIRq@aTP(teQIXQm'r< 8i qʑL0 Ћ|Ho) Gh:8R7LuLz2JEDt^4Iք$N6VH_G`/uxLqj^}Ui>h3gAqχU1Kr6/g^" L娘65t1ׯ+s ȅ'/gϼ*Y9YG*I@߻͋s6ߡNN rIѤ|٘Vy .e5=f_Coؿط?)}~`sdc?+3Wm^6#ِ.7,aQ aY [B!13V[6f6e%Yf {gXi[]G9F aFS$DlCރ}'*iMpQ&oȝ8. $&e=RO m'cr-YlB͍8aĒ)i+tĬ=4:Қ|<.fbNXrAډPtJ@AvdЩlDAr'I6 a`ɀS:G!ð4qYy 5~ˆ'ABRrXYN°g=m L 8Ђet3D xAe{XBr;?Cz~H|$R%O J|W~p^Ɏyɫ~M:HCC T/@/K~%x_?O2yk+ځY!B:8-۶8jӱE)FT;ҘKi& @Α nGa_Ӎ>YVp(PvmOn{#. eV YI'+YAdb?1n9Ɋ)L T S_FN{G4!8%ak^k^.>+Ȧc\GZ `׌$8_|hhʝ6󍜋JWsG]fY0}+bU6bDq 7uE޴f0oԤQ"pw_B{vjuc7 n䌥/EF-t~o!a+\۟s7`i!K)QobtWm90E61am؏lz)jAjS_x$ʬnzY@_^R^Uc^^t3K@ZФN\}X"o|u;/bV*_.$B ;ˎ:Ve-k^:+^(a}åm+67> stream xڽTMo0 Whʒ%˻uhtm;(Gg)>>ڴ8HJtHJU"!'\EySܵ-,!eU9V^/n rK&njs"%CxLf)"]]6x;RX\l;Y4'>jふChmU+TƎwEuttf&b*tf?R?jǍ5ůǕͮj|mv'€RpI%CHͧ2;<sCƵ=r+-$ CI ^5Ngb)h0B21[- =A?e$FISe^ 4˓0:^T%/h咰LM۴.06fL7nuֻϥ;]~Sr?*sCopNy]6 +J:2# Œ%?`ip^ıs],W(`b"'n endstream endobj 2465 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeFrankfurt.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2519 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2521 0 R >> /XObject << /Fm1 2522 0 R /Fm5 2523 0 R /Fm6 2524 0 R /Fm4 2525 0 R /Fm7 2526 0 R /Fm8 2527 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1677 /Filter /FlateDecode >> stream xXYo7~tYcB6"mTy Xw\ڨv ٙspfe-advƆ#qiuRa]KnΏE;RAϒ[RO/*MNy#x2NT3O$UΒ쎜 qlJ4yOPQa qJI0q1"N2IQ0"xKF  ow+T FM>䔁3[01Y@]$#ER9>r1FBÔ8f׉| o\82GE F3[k`惮}m"},FΈn({&Y@+K: k_&i^^~e}ONFAV T}}I*#jdI5q 39$y.z8#22ǔԙ !"Lp:dghY^i4_d-% LYe)]_u&M2r9~)`Y0F< YݽVBf"7~ޕF5DNAtxzDGu IY,>Y:)I"oғ1dk Ac_O#l=a?1^*;55B)QuTعJ`K5P!}BOZv&/q|v׻id_ݯlwVcyrJQ'ʥYQ~jsmնqشS&nroG6N  _`mMo;a!`0lʵ#=l}7 &u9e~XaRp'nVOBxA-cݱJe2bsjO@.R~FuQT)Lz52a_UXK*z39}.k)&G~iVizQD˘%p /\$ 4"ң\SX1'}ߏ}-,wOP@Eҩ.% Uxw7}Y"\* !YHÍ­}[u)`-TV]bAQuOO*.=&^]Y endstream endobj 2522 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 21.884] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2529 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2523 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 8 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2530 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2524 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 16 16] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2531 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2525 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2532 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2526 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 14.834 14.834] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2533 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2527 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2534 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2466 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeFrankfurt.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2519 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2521 0 R /F49 2536 0 R >> /XObject << /Fm1 2522 0 R /Fm2 2537 0 R /Fm3 2538 0 R /Fm9 2539 0 R /Fm5 2523 0 R /Fm6 2524 0 R /Fm4 2525 0 R /Fm10 2540 0 R /Fm11 2541 0 R /Fm12 2542 0 R >>/ProcSet [ /PDF /Text ] >> /Length 2342 /Filter /FlateDecode >> stream xZYo7~ׯࣄE3`a ,yAd3[ŻiIcٱج*Uŏa0rdž-9ܻ:#& ʅ!%9;>/H}wiIF)}=$G 2NT3O$UΒjM i@i򉠠 2R鬔DgW#v6Ф(8 t EdI5(V97V={ׁSd>C^ru@Rr[H*D8G.Ha2aa"*o?)GGj2i/#!g / f(:u# ݽa틲~]ȱӗj#:{XEEQNƳ\9!#cDAD+m*=lyu2!ƚŪn]C$w[Q/-~h$}rI% ㇽ_2Yk0q$@s C¡`b^ִz^dEwb.۶Ә8y,^t7e2pU $|ߧrgg  =ȻfFT3.?RP HLFFP欿m#ɦ;+ a?%( 'vˌl^aLM*PnۦV*Fĝ03mQLҀֳzh<*D/֤p8W A)ƾ&c'3Τ{[-JÉEyuEi8b)5p ]'tB>l?8N'^=-X$Q҆X>IP?M9d(s S ŌJP-A1kx?6 Ō/ŪP̊`!vc^+ UayXa+Xa+0Xaہ4+l}aG/ l}¸e#x Z%rdj45FހLSEnBű)9Mg&9euTXPNa u i9wÉ)Vh0€)X\+M-L_?m:;f@IXd! ~rnf, X mm8 ~9$g&TRa<ԟ_Y1'rctOx8kdz1Q7r"E;8_ zKT{uT0f$RbKmj&KKƋ_O}P. 9_> stream xP( endstream endobj 2538 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 3.126] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2545 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2539 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 3.985] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2546 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2540 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2547 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2541 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2548 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2542 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2549 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2511 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeSingapore.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2550 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2552 0 R >> /XObject << /Fm1 2553 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1207 /Filter /FlateDecode >> stream xX_o6 O;`vEh89c/)YY,kR G")Ga͂M)u?Y\iRQ ʅ!/>VZrM-4_)dN9LADHEsDReKRkS +AEKAcdJ[JIqSZ< R%-@HDI5P s Y[#(4V ^' 9e%{,|R:lZpK[H*@8O.X0 ada>QA-{ܠfXqzLmPH VT~m =jRJRABG\!oLRiXXrQ˗_DL~VA6omnA4Us΢B_C= 'ϡ#jPE5LgI}8^wst_q, +'y{4Iei8+Z>zU.} >aa*^6 Q4 cH} XnS@z%S\wA]s}LGl/P^l΂wJߛl@eD^pj6[m7iov7w0Q]<5^C~NRSWLDS!oӳ 9M&6hP} 85)lYYDE^>vq!o'g״䗐قKySoX̀2ݾnopԚd塝gZ` endstream endobj 2553 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 35.433] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2555 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2512 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeSingapore.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2550 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2552 0 R /F50 2557 0 R >> /XObject << /Fm1 2553 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1526 /Filter /FlateDecode >> stream x]O9_ǠS\VwUU y!6fِ@)\%xf<3#焑{R{gDADXA0I_j\?-4iIt8De4>@ !In P& :* 2cz80JI qGd+R9Z dN2WM!"W$Ha9#pZ !LH](նֻن2В=|z+6d:K`[H*ZE8O.@ha2$QÂ"vɶA7M.)g3Y1Xkl] YpyB4I&M=wp`0Qpx9v'< ZBE^ckMR#S1l` $aa 3** ,☒:C̑8}S57 7F ccT64Y\.fI>h!7o$lfwzڮ'es#Pe"[筿&eqhw Na|(Ŕ m} 3=*)?`ZHBZzxch~02~0]t:L7`lJ&΢oˮ1 @H#_[D`Ik.VduE~pW#&SxyT}ފ|1srIEC71Wrݥҹs~ 5X:[/"mxŇRa`0-wŠ^m Opp/p8[I?cSԍ?0162}$\C}K<eVSwj٦/̣ɬFǨ#ogN/\\ 6j}6?M+Ժ' >)p[.?:lzu;c4't08eu&2₟^ ul|S8;rk1kTX}EͿ[IlDpP;?"Yc endstream endobj 2513 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeSzeged.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2559 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2561 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1313 /Filter /FlateDecode >> stream xn6*o.v.v== Ėݿ ) l(͙P\FNxN+o'gDADraȦ&O7I_j\& 22V98RQ$U;&C0sJg5LRag8TRJ"3N>%OHeI*)(eCQ(ɒx DDI5 W3iHV?9SVǺPWJr]I-k``[H*zC8W.0eH mDDG($u_>C40s^WɷtFވȼh`>rDK#ӁYNC.8XX/'ZBE6V};i5%ø19$5ps!Dei^G,SR'H9"8B18E8Ԍ,nRe;'9p4e3 qUt>#pʽ\^z{$ KO G$^"nғxk8J JX|h XBܿaץƖ} <uJB*p0 e)4߽K u֥+5y-9yJ^:y8~Da+N!e:k r򡳕PTU "|Ri@7PD<& |PLyG&/<i1L1㨁 w ceg(6ai]| M#ص֛>5o#(3G%#6~meXYuٮuzaX3j^hu\5׻I]-p{~Zo]k-n3} aeuPe;)CZK eBnZU "O6 U8--8U sl_1>ːM+ ꘸Pc.(Icú8_ <(QHwwߋrqlJgpR__> endstream endobj 2514 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeSzeged.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2559 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2561 0 R /F50 2564 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1657 /Filter /FlateDecode >> stream xnZ9#hq+mUO>B@w>枍D|<>c3rNa͑z8|iuRau>H&?-4& j>5 *!i *ADGAjDR鬔D&4*t"#WXPR'92y$iF 3 5ĴU}?+SRPoWR:)9Ȗ J6j y5s԰`{I? qsTi:үZ3x!u@/UEW OX3ID&i9'Q: ,.&l^aV露"bX {_=j~ ø9$5pPs!@Dey>8ΐs$ ie))@Mg(s DbMtxGRͤ)s<_FB0"4}'ۏ2$ Rp=WD+QhF(~J!"J 8p.A<)eP'c'"@r4p-VѤ2Hp"v^-+!ðQ* Um\ٙy.0Vv2v1rPp 3 qRdx9L&}!cp5}? 038T@v NqpX^.zO떏rRƼ,ˣF+*e~uu iǏY\i4_jj Lw( HLZMF-5qMWl`ye?q|Oxq'_>ɴy9=ϫFQoBcO!]Y.!Y l&*"||N*VxXOӈr3JD;p~jTqgǂS`oNWmLh럣i5xg;CB<_;?^ I3Yc=:1Xhhy2$nѤYe˺]7h}Id*U^cDB\BO]nv*/U$R1ʧ>oI hr|v2¦'MO"UuCL֓2+\]d]jBT94Zȣ.Pgm6Y){aTİ]ެeN''IOee0Y5A3Tu+tWE@3Zܵ*ll.ȫRT}jT`E`U{VΪ`>B~v+] [Eu[PiqWIR@lU#vɏs ?K%՗nNXFL7R˧% rw{Kڼ 9N Ɔ} J u! L&-5Lw54\">B D2(.g=}r_*ʫd!]W'H]i?c' endstream endobj 2574 0 obj << /Length 961 /Filter /FlateDecode >> stream xڽVK6W(oI5m4hhk +I7E{+]Djf8|$n7o77iYwQ(49UGcrq>LkpOn$b}vGW;Cϓ m<u̐%n)Y)h*tVkqB$@:EHA՜2tReEvs"zi7=*HbГ!xrBƝS=tȶԓ=#P&h~ \Xt[=3\wwo F#]1 VnjX w3,yH],cgoKm,xcc/KiO?/:I&w-IWmc{rUg [36O('(FvK؊aBwޫ6B+B>W&znXa89h:ȦU9*n1 2.$;7+ߌ+hAk/"/M~%!V@3=~M 8'p S|IҠ%-BNfoI(|%h**2Q%2%]1} yθ,2",*; _Jy1V8vs5 ?G}7u}z?5 K!v=gt@«Ìo¶G`TdgRYNe ? endstream endobj 2566 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeCopenhagen.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2576 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2578 0 R >> /XObject << /Fm1 2579 0 R /Fm2 2580 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1474 /Filter /FlateDecode >> stream xXYo7~ׯtc$F6mlM3$JkYm q9Kf(.AG#=b+ݣF@'+ i)Sh٠ևhyɏJa\Dݏ{x88QĸXD6 6a@H3嘁V8Fs,DѱePv)&q$Z(,(XȁrmGbc\Tn Z꽹_|H1+cݧ X@\u lYg!0LN@m$Dz7*H-.B2Y#LZ+Y IHzFΈȼuӐL42-,r"'^rq́q7/O_X`䓽?qW:y&H;aR*W,Q-$$V9eyN(PټSG΅Ibb!gh|,\ZRV+r:~B0J:=:G)rIHQ;*gvk3%AOⱍE:XiUZEKCLpFc )[mJ ph>! C_PF?58\{$:P&ћgK8F @ 9>iVj]IwqY&!!Am v,yܝWs Қ9XyQ8bW PR Rb>i*/ k4Da*6ESMfw̋t\2caՎM֬ ^ *8=*R3}WT=_T3AoTCvQ0X%"C%qwN*2!si,VH(@6dUl&faO0:]^6u|^N**dz[i,{u- Ul}Oa^e݉aL bq-kv@HA ͻͿ׳.p2:?,z *֊x Q-ms3m3_6]_5t==+wʵ2l}>oYf믏вIeнTLAĂ cP> Χ. @?,VMi1w&V(1!m[M9I8Wcݢ"2Z$ lKZ]kp*WnpV@[>;`ms~jX[y  DpF)=Id3h\ yЭECE θ+J)p稤La0'@B22GF@ `n  !$Iqa ,U!a%bٴ=uvJj.=^c ns8Ovw2DHگ({[`rj4ЀV>A4m5&M/ endstream endobj 2579 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 14.834 14.834] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2582 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2580 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2583 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2567 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeCopenhagen.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2576 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2578 0 R /F49 2585 0 R >> /XObject << /Fm3 2586 0 R /Fm4 2587 0 R /Fm5 2588 0 R /Fm6 2589 0 R >>/ProcSet [ /PDF /Text ] >> /Length 2040 /Filter /FlateDecode >> stream xZYo9 ~cUbbn&ۇql'vEFh6iG#EIskk|H#+(liu-$,{rhyTI>nP!d4ܒA-;M0( v-DR鬔DgO >(G/@ T8#Q+y$Jnhxی.Px503㪶u/:.}g+``]r).j s԰pP{ Yu#sTi!=I?sfT{k |XLYl¥Md,i3Ok)m$2fOv;dob"?`3>*M|1;]L𥉝8.qs,8j*8oQ&haEʁVqq-t2 62̸;HCKV+<" J[W=@ĝ&1!DD)Si(ZZE=k;>-L"0 :Qis|<R .9Qc 9kTT F۳%omu)!,g<`!!z3)x&Y+ "0‡?CPL[D+[Y kvϰ~4\Y[Sl4!_6LWFg2!u!oZy^DI 1;i] &/O Z9$7ֆrC]I (Ӭ-~){/s?8[,rYXpIIaB'`֯Ww6*)U˼ =d'7[v{oN6 7$$zt9>5?۰՝]>->K endstream endobj 2586 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 3.985] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2591 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2587 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2592 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2588 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2593 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2589 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2594 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2568 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeLuebeck.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2595 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2597 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1268 /Filter /FlateDecode >> stream xW[o6~ L [&SXX$'~HʲIy.߹KDɄWl間 a%baZWbqCWPh}ŕJrUa SAF[b0T649t TnD_h0SXa5cn4!J|t y ' s$(,W(XʁrkGxhx1hu_Z>aH1+cSjn ؀HV E Ǭ7RC$0lNxGM$DlǍC$HLzVOj?, vjAC㟰 d6FD捋!L42XDNp}m3><{a}&z^.ر!C,(Lz~A? 8<{$:P!_}a0F @ b~>MOۗt֯o\"LBBށʽKc ,y3Absu@(q0k*C) H`.F BxWHBdլ`Ln~jӅ͇rZ7jYAqMF[ZpK kvUOz񋰴Ռ闰^V\ͶX@ :seؠ?WytU8h{<^BcH$ s`gKuLj]9/e, < ߁?jr2US|Ytt۶ ]8w-ksۦע-b63(S̐W(-u)>@DŽIϲR13OsJeXT.Vdb[luY(1C|P~rS^yX P S7AWKBC"} Յes#jj]5;&KrT1òӿ)=|١ wãzZz\!wzTXi x|4#?D endstream endobj 2569 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeLuebeck.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2595 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2597 0 R /F51 2600 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1743 /Filter /FlateDecode >> stream xYKS9+tڲUIjSTܒko*~4311 aH-~j$=bzؼ=:#& ʅ! vi}-$[$ʡ\&ՏSȻMDHAP:.A)eRO6ű]OE0ǣT.U낸F3c&ت.@*i(I}SXp藶t?Ϗ^5 yɰp ct\]/O/#+R6}}^ +4lUqyQ-\|;S{5t~5YLf\0#v>.N\Ogd87Fb,(7S./gޖC\-'A_Ѽ6dp,N\Lƫp\b鍅86YQ_)W -wDG55B𣅎kjm3.WY|,:RЎb[-fIʠKVC(a@pI=ce30t5M*@dzPh]r- 8iޅį봲yeu{mhUF3rfPp9<.Ol`vͮ-6r [lZY4ƉGuA9/.I|_V ~ڄWL)u^B ~])%]4\,Hz* {VNlIYf9Gm"Ƨq9J4;:s:3pBj_S-mGOEzq )q*z׌5(`70Ej'ŠZ_MUOgF?2nAwmF\,Gz/Ų{eȽ1oXXhН}aRS ųF\]YKj[+?]-a@D4B~,kYקC1CnΫ׫fz9Qw &>7ST2| endstream endobj 2606 0 obj << /Length 1525 /Filter /FlateDecode >> stream xڭWKo6W(1ÇHIm]ttb= HUE{)WA5f ' N_FxP0cp#Di/>Hޘ_<(A槧p;R$%*n2a$YbK[KRk֋%Sه?\UTCct6wŷǫwn의Fee!;:$%a0[Pno(FQbL3Sx-)'|e8~KX䟠5 R3ar`I7EU?oWq\m'3e#֦mt]g=M &'$(XixHP(զꚡRetNUS?OIWLI;I=$E1,"^A\0X1h /^BI19OW.(6??[YjڴZ7؅hmիu ,-a"}P ZV-(4?(L^kZVw~B1[ȏsi(MSUhD՛耧HiW hv[G+oe8fb`6['$3ڡTTr9>P 'ڪj2m*Ju]o:W2ll2$e0 ELy9 H?E"+. )@ AZ mi :<;խ#Nz`c'=,C3<Ī` q0l,_yͅ(o=8UuI6~l6mUXho`Njv2k=9]eU?بzTé:}3˟!-=s oY s߿Y#QT(*teC@b9} b~yipf{M3rl:lz+F#ϐ+D@^/>80N?NUHaO&I^Fq7RH^M2;h*0M0IS\-(s.ً;GѲ>п:wA/ (AYƎQB%4(}DºgpoLlnw='n/ 1tX{7r/ލqꨪݕ!<†30\X˩~z&{|]wl(i$'Vٟ-]%]\(ggD{Ky>FT?!|b%prs }:} 0k}϶PEgi=OP:\_I .s_|$s?ɖ endstream endobj 2570 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeMalmoe.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2608 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2610 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1185 /Filter /FlateDecode >> stream xWKs6W(͔(4$f[T85)wE1{b{FX],@%"dF#6~dvtbXsX0e %}M΍2]5$`[pzG(M,0%v;g+@Í)Ҡ$5ү:K fjB drBN!L4xI}(Nn^X` ג"%=wn 3NUPe!X@Jb%P&,rJ+Eq^".#%90JHp;$F вC0/ "\):IP:&j(W;ľQS#5dؽ a\El,/Fn:}< \ۣNKsO$e쉻Axr7Qe"cWlUCGcK汯XtN 4pc%\gD' xy9WfS.C V,ѧi]u_wp9f9%$-4y= )K\mXo~|ov~]dTΫg~.[vx#}Rk<7rU{jX5]9])]oM`dOg+uS;X6)8v(emmov\U^xPUdߪ9QYyu#*xW:_de}խzU+ %).T.>A2pɘȼ"m:{J Ͼכm{+cy]O̘bL6MCۼF pb$d೨%%гI,6Hu$#<>/Pattern << >>/ExtGState << >>/Font << /F22 2610 0 R /F50 2613 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1525 /Filter /FlateDecode >> stream xXKo9 WhcaUuؠ[Ini$N2_RIرm("?R$%F #{R{3"Nj"\RMUC[*HYR]fWqNFSȻM,orn`Zof؃0i{-.K ^a Ky&)wW\c7<3''\3oB3B(#s 8ΔTs$6g )9@M{8K(YbC1|zg )ͤ)s<_F™a&l?,PthK"ncXY3{'^Cs~i$r!d a@`} N,!j=X lFwI9ARVh8|O ŨKSnTKu{{5 }ƏGe:VE7Dǹ >ؠ'X]*#Paq( BZSСkϷ4R \gzrZQoB)XDl>+Wv>hX vaqa5ZѤn/Wj^6vZt3!qNAb8@Lh뛟EI}ؚ[!n?l up$\/XdH Edj?Zƙ7GgK%lԀҷP')pH"Fl>R.RaDďNSOűMt~"_|\jjzX:紎OF.p韭nWFrjLj?䃖S'PxFOVIkpŏ-iÝ&6>T1TNŠ Su)=-_T]%Dsۡieە cbR|Zu̅}jڊ(H hVSBDZv =e4J3CllSjmjv9?m:?:hܴ"/z3F8뙽܍U~,֊NV`Uok|uG˺fsPMGJ7N/FA"v;R> S ?;#;4GJkm1o%)x+Cbz0 x\ 1 ƖC JyJ8v*E)~ʬuP#1L~|6YI=A1۟aZi(1< endstream endobj 2602 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeWarsaw.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2615 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2617 0 R >> /XObject << /Fm1 2618 0 R /Fm3 2619 0 R /Fm4 2620 0 R /Fm2 2621 0 R /Fm5 2622 0 R /Fm6 2623 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1689 /Filter /FlateDecode >> stream xn7:," ȡADZPKeieFcy 9|F>F6\trpFIM C6-9}J?K6I=VT9|Ѥ>!d\2N;M><0H q"tVJ"39!#ύ_dwc jG4nym'o JID-H.=ưZZkE\4Fb)[UNF*0o(I|BS0~YI~ih2e!ɏ 0k0 HqzF88no.ׇ޷O+$ yUuYjɽيa \rj,nW JK3 ~!MU4"$:'1L$3+m]ՠXje ,JH@ddXG1@8[X⪇n%`ݯ~/zUSFxZGd3Ic.7ܴBxN>QI$srD3%vMI&Șը]@:HX'=B*9.Q ? )z66nS*BiojkJU'USp%;I_gu?˛^7u7ތezM?wRU0cD/k :UFк4sf Ft OX}; 1>7 q!ZὫ̮}Fm?(ƙNlM venT=Y@+ԀKdqznFXw:qu^o`,n7$c#;A  Dnۋx~bݬnźl;C>ͧz}ޡꦽPD Ql?H.=x e- _OAWH A 4ljl{.gn6ZRۿ`UIA(n~53 FM1߹D0ҀfC&/,6EXPכvg7=.%Qy=b=S)ݷ[ԡJy-w}-gw+C5ൖ03<=^r endstream endobj 2618 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 3.985] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2625 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2619 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 8 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2626 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2620 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 16 16] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2627 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2621 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 8] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2628 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2622 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 14.834 14.834] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2629 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2623 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2630 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2603 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugthemeWarsaw.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2615 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2617 0 R /F49 2632 0 R >> /XObject << /Fm1 2618 0 R /Fm11 2633 0 R /Fm7 2634 0 R /Fm3 2619 0 R /Fm4 2620 0 R /Fm2 2621 0 R /Fm8 2635 0 R /Fm9 2636 0 R /Fm10 2637 0 R >>/ProcSet [ /PDF /Text ] >> /Length 2378 /Filter /FlateDecode >> stream x[IoWh#}>x ^<n;T"EIe2d7%X,U0rA9cÖzA?#& ʅ!%w4kK/Hy{wq*WI>v#T'B*'\Q'bwGjH7J4Dp 3XIRDi ;QĿVdN2SL^D#VB Oq܅^ LD(նڻY2X%{ Vz:KKAamGR.sօ[y{aPz:n>ZG4I~vfT{k  Y*[kXgJb< /mǁŇi4 O0Yo"a6s~Iy$øH$y\(ԜqFX2|8=H}d{8TLR h#/'X 3ny'w:4 1Ltl=УC%a;JѾȉ_dg]"G ]hGT0/a=,w%y$pb-[z2dC,1W%Ue*^.Ee+25kXb/rZ.R-8GT:UamvRI؀pUluS^'[- l!o)J1kxd6[OPu'K1ؾbP)czX=*GnQe>=`0]e>3`0Uep;^/2Y~f-eup\t!46;BS˺CHTp*FJe2Tx8VSu䗹3(ƈ0uHa!*CG1yKhBCP(bl/KwTKW#1a"0 g7gPߞ<a|AL~{m#"5C}ڃ'0'6پ=Bx}UE'mMcOύ- nyliiBL)lbogp1v1zPb} TЛKwu2&C̺]2&֛BBƴۃf Vhsg/pę94iI 0TaIXP$uZZ@1~fdo1j9i%\n.բI}a| wꥠa\^9xjj JZ2d9}O $8#q6EYf2bqa3dxD ;wgm˳{o؂xV|n5ͦrCñÇNRN4Z7Fٻ!$7RДJ3>Oc`VXMqthg*v^ЩE|(!*T'-Lp :} )8_CN2}i(.~<=ԝ>{ܱX |a2[ ) endstream endobj 2633 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 272.126] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2639 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2634 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 3.985] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2640 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2635 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2641 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2636 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2642 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2637 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2643 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2648 0 obj << /Length 1842 /Filter /FlateDecode >> stream xnvЮ20zRuI1]06c%W'^{^e))]<<<%$K~]]'TEYcR1IҍN7S]nΫC߻qu[4Uzs{7O*"uCgg7w;mVu^#,͵20 /6ֳzO499w>M:O5; dMiUթ}{5RuAd=0zRQhju[u&ڣ\S5Ͷxvl#rAr<'-KTEq@ԕ1+ 7u &Fk XXjTQ8Pۻ5l=3R@aa9h)#F1j8+MnE3H(€n wLs =k7Ɓs 0Mvn_!=a/!.a sB [Z6hS8DJliL:D~/4j;iږe?=\C95qE7fąPy?# orJPx OHyeJβ(-(1Bnqȃd3ޤ(2.:hL RAq 7C`AexD~4-DYFy$f%8rktXrjkg>](념IJ lcV,CXL~m>A(L+YAE Xg]=1`kFV9aX}u|-.撀/ZƷKdh87`%k1ŝ3C*=6f̞QXQW݊3^ M"|D6'?}4_/`a4nGB| wzyG+fx r4/FY<0hTD,,Y#ĩH|uq E)umr2Ev va0^/qhC|r<ʶ9a1F C'^ZU7QYV'ʫRWjulpP^\"q 1v4>1^ .b̓.G6WYQwE2`zȗ =Z ?x &tuIo'kQ֬Z|@/P:D6/iUU߼~ϫ T7 E?ΒK|k oˆw,0@,i3%? R _kUjz"[?9~ߊh?yCx.h䲁(el,htٵFivvJ#M:E&_-#eLky endstream endobj 2644 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beameruginnerthemedefault.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2650 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2652 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1050 /Filter /FlateDecode >> stream xWKo6q|?- ڠ!AePKkkM;C,o?Q?̓ 9#2rNy`z8^\Έ4:raHWwSdtd\mM }gH%e"c m@w|"0hQ-`T:+% ę윐{r$+6(?ti""$Hanhx;q>QLBSŸ۲! dPo]Qg:bKbs| Ô:f$nA>1p49'3[k`Zm+cn"op7="MF'~%PZhŗI',wٿq/e'U/8%y&YFYc7<3$)PȜqFQedcJꌤod!͓2#,aGy L&nRm3w%4ipf '4=ܗ86Xgl% ^/rһc c l:zD"pʃ_nCk e Ȉq+?\)0:ߜq;=)VCM|Y|9#S]{(_)lZu78;}ҭ\/f~why1K Gwm=Y>&zPۨ_q۾۝ʾ H?/V+ܶա{])6 .55,|N7PS0JR_O#e.dtjqB< V pYn z(*e)웪sor-uhEQ{%ueB7#o_p(]NѐdPT.޴=T5X*|n.w _V`Dw!pagjEA0GЀNf\\Od?Vک-$ endstream endobj 2645 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beameruginnerthemedefault.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2650 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2652 0 R /F49 2655 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1499 /Filter /FlateDecode >> stream xXKOIWʝ~?+mEQ7 XblE[5ӏx066"5aSG5>wtFIM C)}wN+R^6Nykm" ljz扤Y2.z%@uUz#AAGAeZoY)&4Z#/0OaoIQH:"xK"F + f9* oF`]ћW CN J^v)p." S<52T]DB+ܸ"qd!dҫZ]ۙQ50^1X?aIo| 3Qiy ěZp5ef˳7fؽ0j{/.K ޱaʐRAί 4SDh„\ot0^E=~C=Z\gE`*.IK12DR6-TKޕUZNG, e,a65r*'_[jq<'mj7ු m}q\?lЇ-3D^AwrE*cAnɮmٚ+Oae@%"^wP,EYbb;n٪(V=ȽA>ݗ1,4xyMLu}r 1,s ?&bFS+FBC6g:5kȋ6 #9Ĵq{8oyKKkW,P:Mq(_/ W?4F9رb.s~-^ʻF.p=ퟭij  알. ,qz}4˶wC{r=vznSse.$`gw*P;wzkVU P-C?&?A'82T)CCcT-gp-+>/ )­O#^^ m<~yp}?MF]-;̡F.Up4kr:zzX,y34n5mM Jۺow)?K&y8 Y*FУkV8MĴByigaGJ7nEdPlW̞u endstream endobj 2510 0 obj << /Type /ObjStm /N 100 /First 1071 /Length 3322 /Filter /FlateDecode >> stream x][w6~c{VĞq۴&6mZm5: xd),9N8`Ù!j'c&3m|2SA:|@L;32hʴzNl=bf4HR*3.әRRdR6sVf^:l|djM2k$Q`]&x@+O8lr/s*˳Tb ˔#S>*b"LiZ9.(mJb$L=P~\W٢NѼLٴQ*^P!~ 28B9 (/b,XLrp2͇g1FL\~9D1Fj^Lu&Us<%.FOB8/'l8TL'|Vtץ/ż|6e:bwa(X#q6+ q8*J|)ġx,_ox"ߋSL<Gx!~YUVO'H֤6ma8/ŨԮ'/g\ J,ko_ C`չ%lpQN “U5L!.N: )Ӑ./f$ ojr>*;'g!iR\M!ސ%PHjy$8VK+bV25:[FËpNX邤̄NhlXt DsRa?Ȝ n A2ØbF/_䬘-ƣbQ'_>)S,0 -BCszLbjX% :9"D|L.Fuis*xݝ dzL쥠ulof,[xZT$3unL餂Yl2ҨxG3Ql鯤kz10֨.de=Y_˒mSLUvM >-JzB'՜lD؁xVΡmH'&3}Kj [EBn쓋q3ճxOWPf!4SK3N są_Pq\GyRL&5~$%CIt϶eUٌpiꢨenOWgqR,*p6:/f}R4ipƗ lxA2Gٓp)e]>jG=Md|uJ!&TJt 6uE6#cܧ%e~ l:6]}$с6)FST4Ԯ׵kZ ["谸ہ^"K T Gb]o!6,tE-%r7O\LK~tۘ[nZ6jlkohLBm~:3p`67Z6cRm0[R^j9ـܞZIsozA\+p3bǸ䩣+~gSԝZUmzBDVۉ]mdp%C p#k]QQ=0/oƶSVUAU%<Ӕ6)8b /V3#'{Ɛ`o "i_gT U.5,@mvt) LeޅwG'=o {*'=9_Nm)k)㮢S 9tANu7+|Xkp#,٤KE=zodc2M%tfGr}[M/nc-k h[r _Tx7[vpT+MNc yrW]_1)|k+ [!ʹ"RsT6)V^b͉tݥg#͇Ny;ZD4;awDa@sȇgqЇ>݂>2*Wſ+gzOWmզhYc}ƐLb6K]\׻(]Ef]ͺ]]]H%op!w\Hϫw؅ͅ3?̎w{9Rcvؑb]ͺumNZ]'@NRM]'h%:ڀKu{RT'EڰMu{R8کL'E{R>07Ia>6W{y!W^x1 yA0/١ 熲?(;ran9v y%՗W_K^}5d=l`W_V_%co%#d䩳p3?(M)'#y,jլ:6Sg75Tׇ3μiSiő2V:w}-}-Ͳe髸M {MүMOþiQ<ޏaZW{M2/{lEVCyzq{f]ͺvQ7>GJqWk'bq֛?ߢoQ[-j5/=<5xnqt[(~Kׂ^nM+gwo3{^cKy=g@P8- -MKCtPx"ہ}e~F6, iGm-6`&=t{EY/ =. 7hŌ&gğM4(؊z2w}!㺽= endstream endobj 2666 0 obj << /Length 990 /Filter /FlateDecode >> stream xڽVM8WpU!PdRI%[%9`,۪`dkv=3C.j^?5.ؿ߮w<4Ym 4P3x_2yvTHN0l?ت"iMK(I~ߵͱx?MEY/D_c!ˢMCl5z;w\Oq_27:[2|D0A:MJ*$& :H8ºj <$8(öHuk1Ly6ƃҾ@?S+]J@I\)*챚 ;y8x_Ȱhїayl[~H*]TP+1`ZWO%bh{J"QY;8Q,5%*~Gʙx5;b<,g_5[9WI瓲lp爾R&1O5e_Ի?kb`h:^YxSx*'?#nz C:%KE2B>kJ:fBg[G_\,ʑ(6mP_ orO2bzy}Td:@@r5_SGXsBwfskFf;i4 G= (`ȳdfR endstream endobj 2658 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beameruginnerthemecircles.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2668 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2670 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1292 /Filter /FlateDecode >> stream xXKo6Whآ.f㢇WQbrw)YvNT3O$UΒܒ1r\7Pw|&(0Q-T:+%ę蜓J9neВ# @5ILLC CNxɞ JRu@R0r-Q$#+H0Lna!PI-ܸ>F!MFzҋFUǙQ50axX6N 97X I&O{;I$ 03l%>O$#Ȓk  g#s"I5 \(D8#22K@1%u#iHd"S>/Pattern << >>/ExtGState << >>/Font << /F23 2670 0 R /F51 2673 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1773 /Filter /FlateDecode >> stream xZKo9 W`1ޏbhܺ=$8-噉nm[#II%a݈u[5>bnttFIM Cr1}nK"+2$Ϫh޷D4'B*'*gx:'!2;MtTTƨqP*`Lw3J9~ KeCHLARDnoHTC+rAm.Px%jvVZ6gr`lW ؐ,u0]$-%".s|b.Cq{rO!ݸ"qdnM)gF@χbhlDY Y")vC3iIi2N }Yxy9Y6Y RX~>O$4$øȜHrͼA -g22`ǔԙj! LP)2ųHY^D?γH<ͤ1zI:t 1L|?XYЖDm YE_zW9b(>AtX=!ø܆N,|tpR^-JE qU^UB\kՊ OTn[T^@M>,~2z rrѥ"B<ɗ|r\Y~8_Nmz?.gדy.a4G1 cMlfr1Y7o5$8rk:Nw|PiXꏸ A{tZxdI\h5P}H xR$Ma5jR9hv[󘌚RS184c8w@U10ի ( *F?3%@kJY.s!"S qCXauG Tg2yuۍ@\K4(XYnzbW->|w$8d/͇T>;arז0ymBELFm#l8|7m'])/GPn0 /!)t+׭| o,/ObFOOimٓC @Ak,:GQϯ^\ vp15t [}}dȶZxٺѵf"U( $yIW/P![ S%0ι}8*< Gkc$h/ jNG6îpz Oo2X)'pNntQX 3T/9O\⁧U/_9w_!s  V Jb:N`aG5@p *Ln*)U(v)` 3*W=f8x endstream endobj 2660 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beameruginnerthemerectangles.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2675 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2677 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1197 /Filter /FlateDecode >> stream xXo6_G9~8Fܢɱlrk$BrV Bќ#(.:h2(z lIs&8,s8@9pU:X' ^' )&%9>e95@)9J+eXa# Ȉ|XMF%~q&XZ>㟰s2;az'eِs&zY j?^Y`ɝѿp/%ES{<$#f0W)Bk`(&GT2SF1. %O1Dp8%qTR&"4Ie%uqdfqJINv0sa/A~wh|/<incZZK;ʊƻLorO';=: ܐzT{ +KhOZ ³KTJO1E:Ы41K2' vp9i9 "|u" SJL7GN&i%ϋɏB$ \(WHY0 -.bYmٜi3} :ߊuf6rZ7wj3k6wNEsG\mnmum֗=Ռ0٬W\ڳQW' 8TF̨G2ȧf)tC/dVՌE{G\BPk9{ 4we$+@%~n GiTmE˭d ]'amiחc0$8y`%8y\pYh /MLb̶pXfwMn{W΀Cɘb<Pp̤p0ajlaq>GsԻU"uЇכs0@;=U2׾cLH endstream endobj 2661 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beameruginnerthemerectangles.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2675 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2677 0 R /F51 2680 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1586 /Filter /FlateDecode >> stream xYKOIWkNו6Ѣ(J[6c Xl(~9ldg\F>X{^O>nΈ4:ra|L{E;RH/HrZuMҗSM8A8RQDSRJ9<ϋ C/dy k"S6eSw uh&M2bwPdX q{gue h/Z1ZK6N#S6LbSz$nRJ):ڹd|RAN!4SDh~pr9aߋ8~b41YNOò12@R,%or1^5oH8jrt7It-Q|eagŖ:ӕ=IM%AiQ/Oo)Ѵ&A>hl% +j-VrKuM0F:mZ A⋜z/&.X@=>r=OW-ĭ9bP 2`)` ckb* >gK-' P͠>&bFS+ZNRR\5>g15kV_Feq1mz^0vZK}ahw,R2/p_TŻ({$8 %\XL ݾ)Mkr=z1.IOwS\5gK=гssGveZgvnؒ2\׺ e)"hk8PӭG(,cJIKLQg^`yM5t_/W|c$v w+MTJN?6? \ puvGpXhZg'i_a3ga\V~0g@xkNI]uYMW` A5O]a{Gox:jq gxx]`9agDpnca0`+h&BM}<;B s HF [0o%14A Zn ~{V)U7;o\ ~L endstream endobj 2686 0 obj << /Length 1488 /Filter /FlateDecode >> stream xڍWK6 Q-ӤMgzh=thHKl;+9JA $ilHCWIҤ,MI):jӍ/ߎUݯ.)֒;g}f5}i0X)cp3@)zrK;,cb`28Si fhOXhI JZM۶#s X'Z$پNd0λ/;p^IA4"p ->/s[,"In/ =rBxF!D'ֽ.,m`YD*(O=nAN+}0yRA>ee;"oct(%_'T{bEB)TDLlΠGA!Q9 Ť^N@;I32.`P F|'j5 C X7&pgC} WYޭW˚$"l ` ާXZ CK](0wſnIp-Xg uN~:D#b Q"^+ Vur[/~l =gǗ)ܻ@7)X F+|ؖpW鯭cX1O0:Gp4£#Iz\GC*8NlpvSWG ڝvx>a1a@{.(wҤ|] A ݊l`V#1oMqLi/L1 endstream endobj 2662 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beameruginnerthemerounded.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2689 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2691 0 R >> /XObject << /Fm1 2692 0 R /Fm2 2693 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1435 /Filter /FlateDecode >> stream xYIo7W(rlHRGPdkiGr4v:A$oȷ|#9& t2"-tqŰ10e 4N}h@ݗh}$gOU2Z E>8Fݢ4>!7`2ՄRn4 J[s4:u @)gɠt8 K5c8rU?ZLʉc[ C DI VsX@؀DZ E Ǭ R!CM]`EBmDlaǍ!uH}Օ~LZ+Y>៰ dtADclȜFENK-50&[ars/c{nM;.c-B0 fYl?1 a'S̿Ƀ}TJ܇sS(Bak4p%u'w-l*rN% ?ެ6]zyh3wAcr9߳@/zzLB?hdy7(|tH-KqZz .]㢀'ݧ|ykWo[^Fe2mIi$0rI "|u$g}YhOۍx{}!D]p|"0Rޙ @+WN.gfwU?$fSnXXCp62Z .g4N&n6.Z7mϝ/OIC_%ñ endstream endobj 2692 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 14.834 14.834] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2695 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2693 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2696 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2663 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beameruginnerthemerounded.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2689 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2691 0 R /F49 2698 0 R >> /XObject << /Fm3 2699 0 R /Fm4 2700 0 R /Fm5 2701 0 R /Fm6 2702 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1898 /Filter /FlateDecode >> stream xYYOG~_яh}Qb˲AʃXrB,T5=!AZzf9!X^WvfW@gDADXA0d dz)yEV'G6Ny>vljz扤Y2_ήll T&.tTƨq*`LulW9?e[N,ARDHT(rLi@T/! n>CRu@R0r[H*E8ǯ\P0eCEe&dc$QyC-̨pV>_tI?"Kt,|7>oV7mɒ`y-,< {/LZN{).V`>Vq?s6ɰ?rxa`xd$If 3WTFYsЈcJB5GyypE,yenVHp^[m)z> /2K GwsU oڒSFRaKccQS_goފ`H ])"4|X-a8~b}'W [fyXmWvsp3Ft*eFq8~Y/([v%(G@.cqjqt3>M:8Jfut;;C-q9)[v[pjܖ2Η-7*Xى_Atalbj o^2_n9If(Wں*5/[DHB@jD)@Sᝂ"ӪUn%!:@5Ti_bXvdSWl%>^ږ2|g RKXrR.5",X'Ȇ"as1cQQׯc5g5ՌV3t]+ZOǷjq? G[\Dq,3(0iTg5|^|0jzZy}R% S,YL!a[ SBLouZa/0 Qʽj+zeLDZ*r;j T.]:zj5;6~M-3rTِ/ Cp4+O&]*tR9mohih,uk^@'"ୂX4WN;f:fFK h %Ou5YjZn.//֋:T *qkT* pI׹Gw?HCܪי6*ie*3"S>=bM4:˪G#^m:2]7 x>z{ʊG~CTNM q&6M+hof\=Ab4y`w1\rhkl]6s!ruQ$)ObL; )S[|\on^</oj. R8 qvAfpKAoZ1#puh”cA/,\K 7(*$ߧm2IcX9POWK ^%^ys/ -X ݊T[f[8f!Є xrp~09Z\C hs0&S~c+u5) -~<{F%|P=Ȯo%۲`VX8m` {KPqw[JJEqP^oo 2 endstream endobj 2699 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 5669.291 3.985] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2704 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2700 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2705 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2701 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2706 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2702 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 6.048 6.048] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2707 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2682 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beameruginnerthemeinmargin.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2708 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2710 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1184 /Filter /FlateDecode >> stream xXo6_G9~_OÆEh{)J,,Y^wHɲ9p&8OwlF#&lRW[3"V*"\hr~_+4WdD98F sGO ۳Ӭ9#"?9`l82#if ɫ- uU: *g)&Lޣ%Yo1odQxdI:"zM" V K5o{9n=#P0Xuljϟb)/٩1P `R+"ER99>rq-Cq,'*pWc >n\"qd!Ϛ'gF3Fy[.)X;a;' <zDOҁ9Q(G{ '}nn3$j͸vIrŜFFN[-L˴!"eR%J9aeOe93>OVDJ23s%'wbӤ(_Fas' x)ʯ}#9:6QW0yj"/9wT nɝs:vPN?,&߾@eY\KHt,.oŪh\;} uXZ6WŦ wlմ:Ϣx&~h#s ?ײ]:e6mޖv-R3Y/;"_8ªq_,R,c0n@2YнW賒rxUXߡvY <\@ /]/7_3ɦ,˃c 1E0<@q3>yg,Sf] 8*AE8%d>cӶ*v?/UQ-2 xeD˿gBMfS WQt\=•;yN T+.M0[s@IĦzSn6]v37ZXv,~p hպg0P7hL3CFv<+6vs0o;׏?i Zr`[7EvBe72]?r endstream endobj 2683 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beameruginnerthemeinmargin.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2708 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2710 0 R /F50 2713 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1421 /Filter /FlateDecode >> stream x]O9=Nq=IPUׇؐC7^˲@Zx=L;g}ʃGZ> .{etO]׬ U9L;ůDp?i)kXu!T4;6]٠F ް[FKKP QRL!l˳m$,[h.CgKA (npU9c`y!BLڈQ]g|E3Ҹ Fz" V:4;ϭO/ v:MЫzMYp }m,JFD|I h(14MD[>жPeˣ̱OVd"ı ;v_ýv$12&V ,p)FK,gUV[SZ I=G4CP!S++4Hi"A=UGS;Bu&Åa M Ajrw)ѾD|\TCds5G2m 'o Jd$p"^TGg $L['VU>mE|4ݎ%̞+L3M<)\Y'Jyz tyz)wG4?Wi+ @t[@Ȍ ̫h,˸~TM|Fc0Ų9en5ш&2`Gj>LoPY7lw{_1̞<3Ҹ~.Y+8 |9=3?p7ەcٴtZgo\Vemjo`qr ;D0ɞY4j|sNF 1hxǢpcYQyjĈKU]` _)QH;LJ^W64_ؕmA)%ĝޡ>DwNƈG> stream xڽWK6 ϯ6K%-^uzPb'VDZR?&Hٱi{)K'&A|cQ<D* pb~ jOlWD*em˂<%NCY%YN?6`ih#{wz݃\=iPկ@IkX,|q?e뚘vW}e_eZ<~wZy1?t A#/{cM5Ѹc&)C]@@`Way hGhCTuI.Y23YCm{Wx{L6ޯsB򕨋*-f>=T$`Of7DT@6IEH_I">>@e 'i"Φ9*%teSmY|*!᳚e"ʅU$2r)fȢ̑ ތU.1k@Ǎ5)u=~t(엛15%'yOE'{6B=.㕘U- cP2y/GM__X)((GbZg<nIڀWb.JXL7EL2ť`EEhW,?:OGj \OSa>j۹ɜ]m>Y.".1O]+vo&TFI2 okJ24ʃɇ6S@֥>^vOiF)V^TO==XYP<ԃyoaBkv@0o]?@YlJ['Cf4ZϤ'4J&%r-(?х-`CŢ*Vd!`Kq$ژ4q@p˲`w<*|g~C gTBprZTh@|Zdz ԀĢE{ֈqTg}WE`87uA,h&M B.)La(9@WXrY9¬ۂ#W7 _O}{./­%p9 HYcbe&[b~t ҞF2:^+xmM[cՌZ|M┝+"v<;Δ'}@PY= =14sW\TKÏĺilhXV2azwai`tPJF|H-th/oU>/Pattern << >>/ExtGState << >>/Font << /F22 2725 0 R >> /ProcSet [ /PDF /Text ] >> /Length 999 /Filter /FlateDecode >> stream xWoD_xq'<m,jMpj*Z*5ygv5aS5>"yiuRa]K?},N+&GȏUdq{`L'B*'*gI/9P& :* *cz8(JI0q:de &E)H:ސ#*"q>LLsC7CNDMJ]NR:P%DR19>rq Ò8V ק 1H/ΌjocSsn\YpSIyB7I&H ZpY42IQ9l"Ia .칉{>OI'Ȓk 0όGI5.f8#22ȈcJꌤo!&#YY^FZ7ًd7OBi&)]@ߒL2H3̄S훌@dс6 N_w "IAh:zD܆xP'K'[zMwM&_ݴ+ɖ唕!! `0,-ǾvMcQ?Rp´? ݟ+nߍrV jaHWѐpo^ѡƢ7nݡ>7`_DW!ptu9Q5ъ 2hf eB:{lrW3i; endstream endobj 2716 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugouterthemedefault.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2723 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2725 0 R /F49 2728 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1381 /Filter /FlateDecode >> stream xN9=_D_^WV-}IHLc{2d->aӀuW5~ippFIM C9|E=vNW"Jhq{w4'B*'*gɴܑA P&1jeJg$.q;d F²ـ !+H4"zCI5 N w[R1Ju~! dO5JQLgqtKIEE- [9jXpT]%@-vr4ibR@/7gFY1Xclz,JFDh`!J$MіOm*-X͍_dȱs5A#<67Y%y2v8/*qw $L[ǣVUۊh%̓_Osz,߂%czIKa4Ώ>H g])"4`F·gz> eϓjhpQ5ly=qve (dJ(b֫eܬk$#$te,"fzh̚bg*o1vZ#:ݒ9zжԚ O n)*܂;w$Ɵm}8n؏[9?[Ǐョ$=<BdKKM Nn!%<*~3r>zx]繠IL%6PX񀹒>Σд=twWꎽ0ux"mTAAoL[ *&~M6 _T}%i? ͍n(Aƶ7ӿ`׽F\r=xԓ]KiC2ʣ]pg/ enIlwjzq1lx&l~6SMs׋|Xj`M3YV첀,Dͺan4Ouf/˓e3^a='7QX7 3/M[I= Q ~ qwד jB;;/Gf(W (Eԙ endstream endobj 2717 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugouterthemeinfolines.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2730 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2732 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1284 /Filter /FlateDecode >> stream xXKo6WV|?-]dE\EFvb!)l$6h8o E}ርtn0z:A\1lDL3LB ݌>.=vF Ek$~C"hG[bX fFVʭ r fI#X[M(9bDtBOnAۙ`Hǩr j@4ޡñQۼO0Xu(| ϟ@T[dt0IHHuP)GrÔ崛Tn"!b 7*cF%~q&XZ̬Ղ?aI霈 gCΙi4뉒`y_f $y{&F J/o8yI4Uɟӏɚk*uF-WAu;g0֋vޔm(m~E5ad%LWMVEl8%2p,~* 'g^#< 6QbP_0'd6բ묝Wͬ˵! WdXۢgZ VVXTn1wh!(]\fw~_MYx,o}(S̐a)HslO;AIȽcыbYcN{է$lwhE>/Pattern << >>/ExtGState << >>/Font << /F22 2732 0 R /F50 2735 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1650 /Filter /FlateDecode >> stream xYKo7WV <@$HvOn8B-ٖ!j"Ij&9Kΐ9b^Gj2\xW3Fq"ĶNvkhf+sh{$~YՉb3}|$ hQ.x2ROY7GGskJ =G;@SY>kY*ptM6e>Eil6p,ms7`=c扇t}!ijŮV9"ݗ՘(37+)`PdFpZ,t7e_%b82b~7Sfa~Q*p|˳T׉4 lORb;~R{kIRv7GxSa _d"> stream xڽYK6-j`_" vLnm`HrP۲-DlEVz3I|z|UqnK,Dy8ld&9oSop*%6?UC$=ON0S#lLweZP Fۆ6\a[x~xAC{kG흼6ksu8W=7g*G"i5\8˩?mO$0%uŀDϡ+aY{ElxdI9Z׾'b!I)vQ\"KaߺzlCNw4&:j[Xdy]O\Wd -AB/ڥaZUfo,S: ެ͘LfZ [>n+X4*HbPvCuc#Ԅ~Nuڗdb``4p`_EU;*r$ZܹSK?ya3"I.OӌRlN ʥWitU40'l; \'jB!5*~,#]b_f?p' (j*r+RosrF"M^/ug?_ֻu•Ҍsٝ޾?lǛ$X&fછyBq;G#t0Q" xөBod]ߖƩCoCi},:b>=H31gA,` %b$YEz}:[ң#W۲2Q*+J Tա0][]yS(̄JTrL_7֚Rb=}zɃ['ai} LFaEoH'&p>bpZ⾫6GYAnd ߯`;ĢT<9V9f<8NLT5R.v}k-WBP ʹi8DmR&LhH I($|K}[EyYE+ mڰkufVL+_9ɜEDsUCG*\lK)g_'b{tn^.:6XZR#%%N6Xнew ORaK䂎m={ˀ"-E{=X\j t@_7tkA D^ 2(+Ca jq(ru 4E  ١[^_Oh[k05!A2F@_ƚ,EC?Ą)sC70/x5G˥k؆-J|͢sSمGXXA a/ f_m\Xm~~/_~GF$*tbJ1aK&# KyXOp|>̮˳ehz9>k{ξ<zŃ[>g:ǔ %paUc]N\jZNpS7JD)qyA:.Al.k*k:48N/_Hi@aÿEWڄbF F" %%iKIqi$7+:^1u57Lu06PdD:#Lju#sS;߬8mICwuuoɡye)%i|rCo I݄u\ssx凲n^dN+zr6 =zz_=Zvt{eą+VބS{+TkEAĠ3+7s-fuG(pb5A?([ voF 43Q3=[U( endstream endobj 2738 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugouterthememiniframes.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2746 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2748 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1273 /Filter /FlateDecode >> stream xX[o6~ L"7+ZlExOQbaC8s)iw.ai5FP+5\M*2|8Edr\uMsA>,pq"9"%5 uU:g -]8(`LcvNJY|M2CShɒt EDI5(f9n=#X0xu,zOr JX utXt%Cl"rqÖ8vHǍC$h$k_tծ,  'l#CQy|5䚉FH Zp50J3%^|3GRJIz},p߻i7$ø19$9."gBTF b:Q#jhJ7ExGhU"RQōP*Lzrx[Ӥ)ܟawhs_% D)گ _+ul|zG]Q~W)Y>q|ҧionKOdcI*9,Gn758X (YθPJDrRtd$r5q =ȲY箍s #8lr VwTBhu_N?04`LgI^٧ۧ{uDСx55 -FTQ#i?vH>/Pattern << >>/ExtGState << >>/Font << /F22 2748 0 R /F50 2751 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1589 /Filter /FlateDecode >> stream xXIO[IWhN5$(%-O?Ul4A2^w-_-]$HGΈ4:rarJ._:RHY^6Ny#.$pq"y"rL;2@yUz1jeJg$q;'dw9I:݀ PJrd<"xMI5(} o6Eƨվ-! dOPo(`}Y@]$#2ER #!0eGL}$#YH%=k?3f>Lz@V#\2"3c4 5fici9 N+_,MrQ섵0nx\IrͼA 3&*, ☒Prϑ9y2)"Sp#kP4I"SŖ)rUTNfISx8 9L}?),PtA'׳μ2nO/zc / vNymLBY̼-Rz n-=Ueo q͎%oA =-f9obzBrcMmfR[pK 1Ԡ}焌7_hZ( ߿VqtǏtu'G#yZi=?.7<9Q(Aqmuz5 fN@@@ |=%i<[yܾ!^{_b DC,oมLh6yF }Y(V/٨[6uFI_Ω:x=+Ԣxc;@;ų#e83KHιn#1#Ά1j4븥R]5 >$Z.bL<{] <ڕ]E1ƸI <4u7f5-%`Q2R%p`e̖h <8z1ufVS߱evP 8pGAϋޠX*gN>UtCS}$Tx2AgHc7h^ɘHC•v۶.B<,5UgɃ%:F@;5y|l5;;lx|&?S@Hn{]"/lgXUU|_<_MQ/RziƵC h~g^} }59{&o%1PzdB|wqT] qw{kؼcq3+AFj)`c( endstream endobj 2757 0 obj << /Length 1804 /Filter /FlateDecode >> stream xڭˎ6_ ČHzmRlZ%Hrʴ-D\I(%˫P A*\zP%a/H]Y$JV1VwHRL:[*OLz؍L a<~ ;:q1Y>_? / & %xcÕ}Wb4RZ IpjG`A3U6<*Nb`+?UÁ7;ן@4p ixWlqjcp|Oe1&SIbWUn-K>Q:הhgA9ʅPlɊ-DG]P-QCQnK>9}Ƞ wʲNnow7M}/&U`陮B'$(j5("2`vC\Ϗ=8 FSǢ<(PHrϐ(6djt:f`xK3ysBaEA{^ҵ,*pẅ`gơC20:U6YՏh ~-UAH$r@ i !Ko@Ce@˙I 5Zت<־ؐ{ОuݢrO( ]i?&ˆTZ/\A#W-*Q>i5? =c:s7"lHEXB`ˌiouF-qAc6_3݈0tgyp)-o|fD$czq:C(ؽ#b:t@b8u0כVIٛ4jcIBpC[d~E BvT%UD V[HP43P4V 1'ϊ yӸ{~PSE NtGcIJxB ΂dPѕSZ*UCCwơɚK[&Nt}H)4av B%軮=.i<^=F/.dqoAR~KB4ZM :d{ ȧWdBNoO:IfX0) endstream endobj 2740 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugouterthemesmoothbars.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2759 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2761 0 R >> /XObject << /Fm1 2762 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1218 /Filter /FlateDecode >> stream xWKs6W(͔(ޏc;I3ɴ$V-NMʖԎ멭ro$z8iuRamC.fowN^#ʇh2>GD ljz扤YRw2;%@NN1jeJg$832{R2&EZrHy"GR ᆆE@4+z}rKP Vzv :K,IDTp\"!0e(Ǚ@E.p#s4)G3[k`Z؈6* 7:w ,dCəiR:I@|E4 ϞX`'K/U8<&XF^c7yf<2'\3oB3B(#DSRgJ:s$ iԙ`lyW(yI-Wjz{gRä)s<쿌a&ThzO3< Ʋ5z6ݽlCDs7IG<6'X&d़-Jn=Yq/^WOqK,orURЗra}Cɋͩ ^x(R&JJ>Ԯ5p\ʷDIݓBƛriŭ2Ed ϫ=`U^P+T  26u?@ܡ Ofqf7F8v :I,vʄܛ]9Uzu(6Hۘ5e:e6)dv;4 Sd|uQ*l@mzJZ??>h endstream endobj 2762 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 30.481] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2764 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2741 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugouterthemesmoothbars.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2759 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2761 0 R /F50 2766 0 R >> /XObject << /Fm1 2762 0 R /Fm2 2767 0 R /Fm3 2768 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1555 /Filter /FlateDecode >> stream xX[ObI~W#fCO/1kf'3;$ [0jV]uK7\FX{^#G@gDADXA0d>"WYS$xEפE9y&)}&N}gH%=9b ݲ*AFGAaZoY)EiD|C.G7Nao IQT 2ޒFR ᆆ@ Ƽwa}! dOuJQ\g: )9ؖ)dE = S<5,WO2!qE84+EM̨W>_|IՑ' ,DCliڰɒ)U/37 /O_{d+;9z>q/繛߱ ka`x\IrͼA =gLTFYCcJBg,!ϳap8)2ŋhY^F<]dJffʐ9ռS1Y0i3̄ aeXq{gee l/ ~]mXCD#:<6S&UY!,-Rzv-VUeo3VO,1e=yߗ$Kΰ} &&ۇON~mTn مZSS=5o>!R[FƸ2O!٥Ү a%#yu |*oʼ'Ն(TАڠ{>G(JgWᚁr rvI{'aqQ,#_a_X(>5Oh6MvҰiH,D>EhE.֬(22Wn׆r.#xh$<<9\8O~s/8~̯G8:?sO/hQoBe(qyW].F!<>|Ҭ .paq>\iS4^,$(vvG/8)vR)RnF8j#J#7P)pRZ(&=~m4N<~C X&y1|5<#Raam3Z6=LEۣPyI7FG)٨tk1J@y|8DDJ8=3M(M.5¥ 4Dy4}mWn P`+k]r%peeLgU`p0LF;c"mJ/:rsPy_Uta{)>I jaS)ZW\# 6 G:_tjBR\rq*(xQ3rZ&\޸@vGUGQyox&d.Cz 0NMStuyoK0x){ثamlN.m~{UlDYwUL `><@}8J7(FQc$~f[]9Jhn\»o܎q»=W%x+ T:MBo{P캷 4Z>K u5ָo zj>Me endstream endobj 2767 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 6.253] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2770 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2768 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 3.126] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2771 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2753 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugouterthemesidebar.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2772 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2774 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1268 /Filter /FlateDecode >> stream xXKs6WQ)Q iI$:==4mq*RDͿIbT9'Ap ^x$vx9E:91B9a\îcчH5(R}[3{5}3HW8|v"㹙v5dP!!(.=/u<ۻ"cj^7c7CW/N$23F 8/s\%19!nyaӖ`W:ZQ/Ha3R2VމwnfUZ D>xm$ZS7&Յe$AƥEN9.QjERDQCG#e7% xd 6L^DJr38ZJ 뤧_baR_ fvcD9rce :`1w!æZ:w^TVN8@rZb#Ch>]f:$wMvYuYuu.EPĦ/sYp5v/a0MrOI8x0mW6h_|ln/Sy_ ;Os =dpW?4&|]P0eوSgTo=I` =q5?<F6c1}u{:?P}KZvk endstream endobj 2754 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugouterthemesidebar.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2772 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2774 0 R /F52 2777 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1557 /Filter /FlateDecode >> stream xYKo9 WhcaUuآ[Mni=IԎ7_Rx؛tF>"9a0v#qx;tFIM CV |^zH"WduI:yJ~AT g:ɿ^h5$+ʘ'3r6q{u ]NGI%!*DrOpP- T:+m3qBp#6YWdnBM,@RDIT(44 Z p M p00apLT`;GBap9O3G ܋L>GiVRIjmgµ~O|+FKl3g¥Cd L>i:iՓ%V ,̫Yxy(LZ ^'U/ذO-Z+G@ Wl3Mfi<_oV".jޖLjHGȒy (tQsӸEwxEBR?n/_hȴI)= f`g@``pn;m #Ά4 ܃߹'X LA!s!At}rPa!Sr h#gch'ۛuSOUnrXbcY wt|"Y$ň9[H"mCmϋ^Xv*ILp:`{ɧ7w}$eoOFtx$ȧ w|jݫC1d}ԕUnv.m$ՄQ]CcP-]v$GA+̣)1lwil|=? 6N 艹Y"߷8aj~`!sпGBncwd}OOTZu}&+yL%܍8\N^FQcG{wսkgտW6 }edo>p.g:Ehr?pjODY]`2Ky~)͐Tx_81vA;[?g endstream endobj 2785 0 obj << /Length 1952 /Filter /FlateDecode >> stream xX[o6~ϯf%Q }C y[t,T]Z ;RGβ6Cύn~ǛbU2O~UHlX*^Voz#|m;=֦Nk+)fF}[nyw֓Z S[{yqwI4Q^FPH[e28d2rB"uf*v%߮ڙ[$b#U$$ۀ',c&-ȉ Q$ϒCm߶q BcYw& ܇>4uͳJǂ~ 'knq"E"r'Ӡouz&ޫ7 wJRݹ@ 6Rx1) 5z4:buQ+H$ Dlu,K\ITDNSm][_y"tp{>zT* -0!ZQ".FGJ y\EGJF63562_Qu8,9,Y ?uhS14EϜ71̋dd=qn+ 94<<`BMu S^y9|otr`E P2 $Y. BXF@<$m:gQ 3`Y3-ƶGH+OƉnyyFӋ vfU 2pbЭ$!a4H ܇У\oSO&#:p SO^y禱=ȧqwہ{`nFi`Y , [|]rSfN ݷ65 KGJ%lKƈAνh|ٚcBwg#-pc B/&2ˋ|~KןN<;nI 2kʇˠ =! <=9OS4nIck}֞*=s }: woNQP(! fzۅN2_ʘY} 1Bam)~˳!wN#TA09#g2PrKo^!dIQ1ݘ-dn]zH>叆880iO*å#jjJ,ס<·r,EyRpI:Q=ӥ%B}s7Y+lO 3a{.vmw`Y{ק3A, a"RyTa@a?xp^DHI n@-3~s|@LL ϮsXkG@6੣GςaƢpQL] >/:,4t-[_4z/oo><a_@kGџկ7I0 oQg$d"q}!™ZURjWFV$gx7,|AGpDx^]ןx^plx#%CQ.^Uf-)2֢]8 vpk^L̆ꃙňPѿix:>/Pattern << >>/ExtGState << >>/Font << /F22 2789 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1227 /Filter /FlateDecode >> stream xWIsEWQbޗ#![ ck ȖFGUVۺ B[龺qŰ10e t9pW+6+ Q^n%Q0ZE>ܢ!tX7P5}DN`2Մ"ќ#LHs4 ò@)gɠt8 5J<KX9P.UZ:LLcձ?cH1SSSjn]Cil]$+% ,RC$0lqg">PK-{ܨJΤ&;Im@I_X`ɽ? %E8yIjȒ 0Kủ1*GL8Q} "̔tH>3M5ȲM6Ҿ^$Jv3s-rs-*U$11_|+4}O3N)үe5Z2IWҰ_u,/V!L |ҹۣmK?Oc᤼j[(dd;*sALcJ7o0(?Ύ[qjZ/ԭP,G ѣ8EmpȮU|%sKHIx0 lS|̓W d&a<>yx#x x`._Hȑ' S,RArMY W!f*&Vaij6Cؼ_**mm?Ns=33m!?hvXEֶ֫m=HEXfcܬW˾6 C su _E0Lw8/"*Nx@4}"+ϣd:tM?y1,n1oJSS4ҷϘ6M;|:Q*˰ULCL{F :?u7M}y@1 ^h̺?„IȽ׺+jDxvӷѐ5e;nzUz@`0Q~y!N)b/3٤h#Pūu#izIZ[GtgQqҭSnP]%;k'^Ε<ٗ*b/'wOq l>Lp endstream endobj 2657 0 obj << /Type /ObjStm /N 100 /First 1065 /Length 3314 /Filter /FlateDecode >> stream x]ms6_U ށLg8.msM-ѶIt)*uY%[r)qZ@`w5eLZ P"ce(:Bt25 :pVDBTL zP SNXS6ɴqaFQQ3cu,61'a9i p4:MCfCa+AA b?TF|>p "3pKBj):3TopQt,r>u`Dz #ƍOE  Z 0 E`JV͈;pt^SN4<1IE D$utȔ,I@d$'3[AT)WDꈗ5.U7Q+5ڃaa2$a|֢"PA4kAEB#G4 &'k+A=([A9)w Rw EExV ( BwLE0]S2 J@0m;<JQZD!Qfh> W[b='Vd/:9<вLju T EϟDU0P@uT$&y YFOEcm5Uπ7 =[=# _CFV@: }ǵqm9hӐC$ };BcL4P?b?΄ *j>Or8領ג |v ^\:/bx2䤨f)q^ӚfttFg5v\1[~1Lr~⼘Q9q>;UiJ^WEOy|6tr\N<5q1y>gU-+f?~Cßo;G'~R僷EņԶuqh0 Oʠ-q\O9s>|'|K~;Cbz4/C-Z ߦ)FGNe5"5MyE!w60){NG'Z0?;S#p" 8)Y_s@(9gWĬT|iMGь圴^FtJ@AvЩ|0DQrGI> Adpb9 ?Oj>gP|b%=BgI$(w)u@qdR*e{*8X<goz_}<N(c/O~c.o W5}}uɕ?Yya"!)SMedlrZ?"MCx1ANQ8!ikB5xWPRx+ N~Q|=1liC.}EU5XYÝBHr,fadic۾K:CtA"5 7L[ ?g_\ OW_ @HV4/)b*O?7pc<x*a>v^?}?,OC{r %Zx/e_/c?U97#\??`o/|V];E?{J}OXFUy^1 ?ڄ᠘ 1]5ÄD̚Wd1/h2(@R l?k~g=Bq(v v6;1iVsnEDdK$t |\b,EX)J;gi촄[vZzӲ7ᴜrZAl8d^o?R"nKԽH^)JTJsN99J/ )JTV'[մb;ӊ{NNm[[3GZJlU-_3跜 @}[ުC^ykRޚ֣֝<*QSfKMQUo hP|)L (k/L5(V+Nt8F/* k,:&2jӼCsPͺ9G2ai!K)Q6_": !eK0W Kz$ 7"Mv Bָ7*"F\)B$\yNɊ +^X>*P²ފ~)诂]([Y@ȩ6`TjЋ;CMq&hj+.(Z+Z7M<5e)Lgz;ocy;\z;ao X!}ڀ‡6|p;=Kۺ푴# 25ם5gl # b-&&v V!2$+-F^**Y"SZNsa9%9drY{[jC*^y)oMyk[S,b U*^yL˹RޚluVO+R"%R)JTr9'|W{%RJD*%RV'[l6Nf[cƏq|lN0`fao9uMGiY s\DNmii{ڥ48) NU RhuWi{&KipJN:lu̴-as]YZ&> O^v]D.ǞF 2d}hG1=bYy\2d_zkʹKӮ];~6~Zhn&|&%_n.eߴM֦|lZ]Y_{՚Ml!l9DBnh}:7`Bo+ ̤R}a3Qn[ e)+Hopvxc[ niH{3vڷn "nB޺_8}ꮵn~&jypKϭdv?֖7az )RHBR.Vlʙ@9@7PiFr9'|Woo/>9b#d \>KD'f<S[9͕^}Ε>zw[֔5B)J-X endstream endobj 2780 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugouterthemesplit.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2787 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2789 0 R /F50 2792 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1555 /Filter /FlateDecode >> stream xXYo7~ׯࣄB @H֛Ym:l ;C.Jl ]wg998$#w-V#FP'5VP. YmcG)~";R\VF)}d_'N>NT3ONHZM H3oJ4Ip 3FIR8++eP#S Is$0JnhZ.PxeaT]:Y1䔁 :K뀤``[H* C8G.H02\΋7G 7H'GHtVOi?3|Ճ?cHWO1X2fiRN˫\ǴW̱GaVB?qzÎ})p󴛤ߠF^ sa89$y."gLTFcJLI=GޓAplY^IFzd-%Xl2 Oi`~AʬC7i/#!g c{'^C=y[c NA:|A.R ˤO^NKŹ%%̣^`GDժ*X&Є?5<U-NWXN~gw?/Fyh.-%'!R2v@\JOjqQ 2_q_܍mrO_ӛb QoBa,$ S. +J算>iVY .F`5.f^ Ӹ|C3..'_b 5Sk 0IWӲVF1Cn![Ω:x=)iV3u3`'?B㪷e\ˬpͤ/xu8kǘѬ@D)"PnuȞmLJFWOܩ]YR5"_ǣ<~4r݅s]j0_rA0+JC.Z) <'fKNa zUؤ;(҆c\|8čCcPX *P_EOW՗Ѫ)*9 4Ōz(.&/F\Hj=<˸\v ^kef5Ug*y_`5쓎Qioƶy}K-<33^o:'o˯ !Cޮ[~n&pԖU; tɩU͛Uvz00/uX7X0 txE(jۛdJ[krqV% E"?)[*+8lrV 50^vqxoܺ`)U[??T`xbu /#BP#fQV~\=k;ībOAې훧 *' 9`/k(޻ endstream endobj 2801 0 obj << /Length 1225 /Filter /FlateDecode >> stream xڥV_6 ϧc4:am{ؐ^|ؙ݆}9_/ ((Hӂ ,癰_Xd$Ƥ*lL'?w^=`V ix($g67M6rSjZ6J˿V2[vxcUK$>n/m~_hΤ5S=z$ R |"}:cvA뿻=y9TO'`es H93*Bؑfz;^>rz|#}mDe7ݑ~"+]S%CobMhi5~u> C WQ!  E+iƴWDzT4];(Ryge,5.@c_w,L[ "ߋ);6o!R qȲqr&}2W̤BB D%R,238[1u;U-b+CE G .]`%E|Vh(4s| opsڒ-<~kXyb̯#"ғL2n!;+Xsh#W-ׇJX"kH +=䜄tsۡw[@Õ0 `/PLmbbө)=X*g*{1ЏeiorLX.لa5>Yc@&B'nlꦩOOȣo[W5!}6~&n+g }H潐7y /U{m AqZ灆A}c^⪷_1:TQcJrDC-󍱯AŅ.6,*N玞 /V۾,fzqlϾ©7owεZL77mwD +Y!fgLX>a!/ endstream endobj 2781 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugouterthemeshadow.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2803 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2805 0 R >> /XObject << /Fm1 2806 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1248 /Filter /FlateDecode >> stream xXKs6W(͔(ޏc;I3ɴV-NMʖ]@ɪ"EJ+{\.}"jDGl{uë# a%baZVvcGlVڢ\]l%Q0ZoAE>=Ѯhlrk$BrV8Fs0Q"w[eP-S $ Lϩr j@4ޣñQ׼Oi0Xu(zORL`T[dt0IHao17B{l! S~f"Q-{ܨE9@d73j`f,$= HT &L(q@|4䘉;B;z$X>Y j?^_cdX{*p:c7ei%*Er es$qL%(9ecEi^".%98JDpR$& вC8/̌"lD$'o0r97IL 3D e[M~9cT 3 KȟJwl,3Հ^,q>3`f0PP5*t^N]bM)X=XA 2С8WjR0mƯWa|ϳ]rRP9ZnpPGm:ups $[Yƺ햋uՋgah #Oa\,n{ڝF_RKl_oʨjY{ӣ2iDcKQ_ %E0jM=̺y̺D ʰ׶kZ VVX5 au+b::uہ PΜf~yXu[hG3d5GO[ '}f {ײɧb@/xv5y:"O6H$I2W P[]*Gݣ YXV͆اXq {>.I|,ϐn4G9\3N:QݹRa9S/A orBg_ endstream endobj 2806 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 3.985] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2808 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2782 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugouterthemeshadow.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2803 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2805 0 R /F50 2810 0 R >> /XObject << /Fm1 2806 0 R /Fm2 2811 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1624 /Filter /FlateDecode >> stream xZKo7W(Z4 Ab!A[d5ȿGKVۨ;K y#ׄ=1 {w3"Nj"\ϽKOS񊬮Ir\yM68 q"yu;Z@y* &0cz8T:+%ęֹ a#_a IQAT<EqFI5F g _uE /IJc[CNv JuAg$co"7yx䢋+ yaPy"$l1?uIHCzRKvfT{k |CCV㟱M d Wo"1o`I;ML6r',/׆>,~xf= ? EêذyuR81omPr<ڹk|ؕ(wgr#ccBL%mrT""nǩ]bq9N=9G_/{/^1/fk+@-u9&fv>t{9tĜ 4:r%XW糁Ip.o&dduou&u6EY!f1: GRHH<ϥVZTJr ͒=R 24_)j@zU-pu=YW/Wgy=f~5Ym(s4Ýςl֓6/^iVhPjj2ތRq=^7f^- W-[:B4!rȲH*b R&cb.}КhH1'TܼZḿ6NJZC5wvb'U~={,jKJm⌳~"ڠ AgAq9ID8 Bvgܭ@ӔMY G)hԄyczW%S)_B8?+*з> tTbYjz;r()Vu;6͸jjn({p X;%s!+}PvxRhVSbBZPlE< 4J3~AZ[f6 endstream endobj 2811 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 272.126] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2813 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2795 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugouterthemetree.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2814 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2816 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1201 /Filter /FlateDecode >> stream xXKs6W(͔(NL2m&AiS%i}wh%kgj{],@F#gl:R׳[3"V*"\h]чԖdq%^ ֊ ?tS"XDȒ:戤5jgdvL T" Z*4*c88(HI0q0:d, JM%KZЁky$U0J\>LcS<S^§3acjaH%|I1" S|YTn#!b 782HL~qfT9c4̜_+VOFs2;a'l9=JGf;Q4k`ef3 0bO}<$nG$Wk560ǴCH+4(9mbK-ӼD,+Jx<I5| <4a,T d)E W#|׏E#XeQ / y2 ~hƑ^_~W]n.UlJ?_?vj5uhhw, +~뺹&dVŀ"< oG|!JP߬@G}[wWnW}SP?*^>/]By5Gr jx l$!abt=Ľ Ofaݗf7ZXv<I@*aʠck1F%&OGzͧz@`8yuRCp ~>% Cou{.TwF>TIC#Gw endstream endobj 2796 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugouterthemetree.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2814 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2816 0 R /F50 2819 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1601 /Filter /FlateDecode >> stream xXYOI~G;}+mE(<c6`﷪x|{z&|HG>Έ4:ra|Lz֗:RH̯IrZeMҏS(M 8RQO6NZdI)U/j^2`V2[qX}^s5ice%øȜIrͼA -g2G`ǔԅ{,!ϳQpE,aYG.2l3X;ʈ9x`cRaҔ9/#!f 3Bc-qk=kV,+KhG~Qj!"j/ 8vhp2 )溺둸EJ)h"XTyśqK ,(8|J:ٗ@*0d|y !!-h=vkP>|!Ϯ 4SDE%쒜n@Xs/wq<_qu~4?&/x~P#VnybnRNaqF @`ޭe .u6h:%;'rN_SH{謠uEZChH/v8u@1*,D\b]DdX>.ڈLD]mPvSfH a{ ~ ;6HIEp$/&_wwW1px"d i C"_8ic^\Z*l?dC5 i 5ϝւ6G1 12ʨlQWWq5k #Ǘ$mjxƋr~+ tKkW:OjN"^ʠhZA>h0u :m|$탪`Ω:`)TBGX"`yZKadmc_&_f ۦܷevY?f-P: *=>EߟC}Zt`)]#o LJN(A9T<~E9~q=D~ʋ<|e|. 4BJt_rV  g`hxK5q߇(҆Oqb@Nj.Qp K{.yc7IA-)C7q#XR7Yíq4})G଴ݱ-bpt`B(joӄbrq$X6a&?S4C\Gz=AWKLAncspinFuשrщ~2OkxNYjV1 #$t3t"G7m1Cm[ͻrc-Ro(eZ[rED2!ʿ$@B"3I 4ļ㢸ʕ  [?kk endstream endobj 2823 0 obj << /Length 1651 /Filter /FlateDecode >> stream xڭX[D~_7i3=yt@aLlժsI~ gY8&߿nB2Ÿ0i2ͳW{cf/ڛHeq~y[ϗ7^FfV"rsR 3[g]qy0M^,QPv<Zvng/b' `)i:'ΌYrsR$6PXV \WoB]ҝ[90EK+[̷ۮ=6k,ۺif+=zF ~(q1T12$-\`7L"4VvйH?vp=/ڻ56mǃ# Ϲ7jDž(v_??uvJC0(]LzW `b֮Elܳ8B>{?6KC E(kIK4N=)`;Nָf}i7nY jaō(!z,tjHopCƎ-SK@!Fq$TVpE1)3l5Z;d"@$B?𬴽u|wG<|AxМY/n{\57 /qӫXzO7_kT|qř׿, CIiS&#z۸DAߟxul HU[7\4˪s~9 -v$|6FYhbPST(c<,-oJ~ endstream endobj 2797 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugouterthemesmoothtree.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2826 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2828 0 R >> /XObject << /Fm1 2829 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1109 /Filter /FlateDecode >> stream xXKoFWQIm*zHz`i"*R6E5Ϳ.wIB`1j ;73#W vLLs]ƐSQgcSY]$#ER19>rqÔ8gDHS$dd"=juZ3|c#Dz@NA1j`I&H';Iϵt$˳'{a R"Kb3NC{:OIZO% n`̉$)$p92<ǔԙIC'#Up8)2ųزG4L*nRM3w!Sa4e3̄M)U@d8mcw+i8*o"/6r\CĴ `OL2)I;QғuE 1*1*sy .q['dT>l?rb7. 5 whTfE9\o^º}k_!Neӎo_usᗤǸ܁zpT*hLsk!3+M-V 7 (U#0S ⻧#cx+hn֓AhfDc P n 2]l9NbdM\% ˦ʆs>z9&韶Jew>Rt"biQN_W%Pl9u7ܴ[9ljA;S({zYf/gi+<,20Se"lJn`+1i6ϾW}shG/~"F8vΆ:U} X)joXiы#FqU3Mg>b2m Iz.! T7ufDx zJZ endstream endobj 2829 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 32.044] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2831 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2798 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugouterthemesmoothtree.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2826 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 2828 0 R /F50 2833 0 R >> /XObject << /Fm1 2829 0 R /Fm2 2834 0 R /Fm3 2835 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1471 /Filter /FlateDecode >> stream xXKOIWhNnE( H6` `E[xLZ`gjW%aCW5>w tFIM CrЕ:E(__lI>oA'>NT3O$UΒѬwKz]HlJ4'QaP[AtVJ"3蜐HM'p6(T ^#UpC׺@ፍ1j_! duJQ\g: )X9ؖ)dE = a=˄[~㺋đ94+gEŲxᬘ},6^#.0X3,aiՓ%|Xw{OD/ǽOU:?&5&M2r9c?*,PtXk#n#Y{gYYB;G_V9Q;}!pzDG+z y|,-VJ)=EFVU7 qKLC'ےd/ d{~d{P&O_ !N/ b5SD ,Yj uVqr/GYbOGOL `d[fG"*Up:Opr2딺i,k|-6}׍k PRpj(\C᪗чܐQoBm,@/Λz5 1f!dMӡ㴞zo(vZ.vvu**tNh@/P<(hVAxJ6S_AR?h/q+$@Ҷ3|5<#ފiya7q֏QY FQpOз')} B^4j6}G%<>|d*ɦ]RS3E&ϣh#gO77դs*% Lpc4+ꀃpBRx ixS?$LwI38,AB-`+3*Z;ֿL U[?/8+ endstream endobj 2834 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 6.253] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2837 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2835 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 3.126] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2838 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2841 0 obj << /Length 2891 /Filter /FlateDecode >> stream xZY~_я NEu:vf2GI.EX+qo{ﻛ7_|F˓DmnMyA6{ann߷*}za>T68gAL]<>ŷAa0*I<闓w(-5O[X-NCkWvVDcUka-ٔO-#R޵݅ f[әHAzAZ @%]E[D JS@50 ~8 -HGI>eNIxLۓWC/ T D4L8س@bUJ<_]B*tD?9uS6p2ͅrhZod;\|gܨH[e2nhh{;0OsIŝm Ё5ElKp2ڣ6"rGUloY z DžEBw!0.d5pNz'B Y-cǐ#j"uy0.A"΀t_x6n@$t8FG-.Œs,y7݆q~V&RϿ ^ A0e`xh d[#Fr(</ޚs9ޭI^yP%=XKe_T0_xY/8ؔA+-bw%ˑSXy$HB`R1ʺ$Xrr_ƙ&=R篠[s=#o7mvUڋn'4׀sX- DDOI瞒sNFBW]y!h=0P:!+ƀ~:ajt"ϺG~+&{ʊ (/Wl{rH].CE`\$C4WνEF|3aMf$Ń@T*^DH>cNk޵L `SneSUA/_z pb"5W%7#u_D%!eA2 .]7b ĖD ;K(9flY!esro1"~Dן8߳A;f\-(#Ќv]Rq 6-:&o@0b‚,v@l3OZ4Tr$ 0^ m;*!啁F̪?Hg .*QK"}/ZCl3Sۮuۣ3յXEJMY½ct%_E5 DFVcEGri8;nrziHsY=f@-1L͆q`0*uMq'wٟ@o"e[&pYf70AreЉ} #>gTkH ߰*\ScHa-)B 3 6DCnv>K]Ϲ%g XVxJF$s>UQ&W0Sѓx1Z+6`D'NlLa &uQ|U܊8/иEB_2q_SMAIV[hzj+ kh Dz yfZ Bgry{ ,V~2X&T~FJ+dz.~}xCy^JէL50zYx~6F WͶxާsycJ @ N';qZ]^S|P=s]Ԇ U2lm:;[[ݺlj~g0G_9ɑ"NO39U)v%bPs$<|1=>SUOfʕJk;1 plmil lZ= dS$KlrѸٯR%100q.e 2Y4qO%辮dK`6-&"jȂ f5]nHNL[x!bPc>-daCZģWYė(*/F\3lqd\b{T #yhXzM4tf] ]I*gOs;l"LE$xAvO)=3:l²еC%I2/D`/ "j; <2dK$77JG'|W~C#1 x3> stream xZKoFWz0b6mLv $$Z-b$ x`֫(َݽR?/y~sW\vǹʙ8WRHzTD?vU}2Dߔžl:Or+_}P~2qrR>6>It8te˭掟Yt2%Sq5LF <ʆn]rOGAj]vOL4?':ࡄvq_u59.v=tr zem}vXT{Tq3:ݵ lPVu,}/mp#>ld}oID VIt6 ݺf_>nV8ڔ嵊6}!OeW="F{yhA+pf&6*x^hXٷh2A웮V -f_둄F,[ЯM]TQ#d.a,~OdH[u[YFO􂤐XƠzc̉1×uQsLc@n]~_ԛdxY 䪅;|8Vs2gK؟ϟĩL+M{nH-=Y,NƸS}6F+e@F9%l)?/M=oVPo`:WDu-6KjE1}UPI2vO=s1yZT~ALF#1ͤ,  @0$>mI,<4]WM kHSILF6Ik:< OLtrKL阁r] R;= Z>v 2<zHycC Σ4/#)#B;`хCFm1Z :nWnf*mkq[E :;gP G^o{P_!?nZ4&aY>%LyKile g$DL'n  7@nK[0ABTjQo8B[ XFkI^MZݷaFFG UjM\5N24+ *TP̆[a/fO 0Cn{DLH D< A5ɟw\]-Z7;pjlI3-s ـh*y&CĸgUK6ppQրGg5W-**s&0)xy2Vw6ƾ#JoR~\6xkf#hX!*0MnB$260gG.F<i/`e0yF_%DbeoY@*[x vCsh&xO|x\Kgmxꂧap G)\Rdn]]L+ )o@::Ϡy"nM/vBd"L)>Vc#` &\"\$pPS-֨Op8wJWYqE4kQd1= !ӗ0d6%[P=thR$)B( fGjDIKQ Q w4tkFӀ-(_lx_ԛR ~?CYzm!D0x( (|h3sPCU- Bdpţ SPzv;Eφ{3oٔ!D_$j!"qM1n# V*lu/wΓ%G /r87xO= . q)6^]G2>&1 a@s 6H|KQiGB8<ɉ 9i1ZٰQN&a9Kt% Sd3EbvvW)3Ox4yEi*uQjBivNy] y$ND==7- EyEOcU$MZ;Iq2 Cg/h[ QĹj|)1GBe[201z42K+T8Q&Ђ)I]s^qb`4 {)}1GH4&qY×(f nA2CӍ!Kq>RX{|sM )D5 6v`LjO~Η* U~MkG_k`'9z)<F>A* )yܠ.>;x> "siCiNIizo.?)P/8e/?l3ie&f,1|-m|v:*٣ siUy]tdޙaWҡOdI!zYz&Oռ,XDYkp_7cs"1 )] } GХ\2cwI&N{u"2N_.DOuam4f9#=% zQM<9۫l+yJYg-;^Pa،NGARSʬN5اOv?6o}.6|ܺ,wc8g"<q- ${sBU Q7csa(9|:,ES=ٗ\R7=\t. Q 'lrӈSTBP3I;<\ k.D"qcjt@0*S>|{ endstream endobj 2849 0 obj << /Length 2752 /Filter /FlateDecode >> stream xZݏAS. IQ_E[ 4} fΖ6|bpivA+"o>h9wy*"t4y%e8*VvXW2_/6?675zۜ>WmQَ:m^/n,q{ mi6H xȶa!Ub#FU̟:Wbi|Ħ"),J"L֭}^J Ќ}1Q%`4lKszir\,0v[4MK H1>e06+HcDu ,yk[զOey^nÝ?!ҰR:\OtZH׍x cUyhlc-ȉ1b1p\D" 櫪l7$L Yahgh0;%u#w;jU0a I#W`#ʑ Y103+SQ6SVUeUMچrrC=P9PYe E/|R&E#LrXÂ:֧82c~Sk+@;MD:Os>lPVAV2g%bo9$At=A,5"cO2cvi5^FNIc޳vnPr}xہ,άZ˲b noL֬~OА8218@$2j#aY{!H؃AqB3 1J:¶B)>z_J̲__a9ʄ}APчFOxv,- TClCЩLc -cs=<^wceEk[B´olLthޟlvOĜ^:405yUgu9*܇~Ĺ`Ct:tnaLs#-%'|RR'FV=niF&g5px7A5y7iʭGnpj"Ў4s9ӑޝdVB΂viw0zB3:\ -KE)9D~8XHtR`1fu[/}IO>>øEgO#ߗ0kej}Ut -rgqhCHw |LFO[؇d3[9CEܕ7P׌'Z6-$-´cx S"P h4 ~_mrdX&𶵙h ]r@5R\ '<=잓=/SѸOvoݕgEަc+ p̈́fJ38JU _M̍x7C fEa{.eybIWQ$: i^uDw˅-sb?q*]F*T[\QmjOw'c9z{2YQ_ x] 3MA!?1Õb7Ҥx2pĊs-=_14<)X{Lv_&EWߧ\u<Ĺ$e`0&}& {+OUѴ)-,eQ;= )-.ݴ @3ݒJh#V(;6{8jHŐQ0aej9.J'2"gv{ǂ,/S4Iڸ5c$Vq]K'JY)QGg|Z~*Wn~an3`"/T}r=;.nAv^?ZSZi鸿M°V@Cb=$(nSu ]R7lwÓ_&6b^/%uL/f>yF>=v=G.E2[slW $a4M$ O̴2S/aNpl7!uzUw8g[5^aOyK*v B?n [Ã7#)s<_Wֻ^9Ͱ0=0MLweH.`ᮋv ;۱Sғ0OMΡ4CSԉ> stream xڽZ[oܸ~ϯ(VZԵMM- #D#y%MlQ<I( ;GV7h7YajME*S*TZ]mWĝ믝=wQoLtCѶsZ;иTQX$/;7c%wޕ7~X| 35~/j3no$r%Ew kS=y2+4V&z۶n8yڮlj~Ao[5]Uɞ[8}L\;m.`bLp}k'%Q=]CbʼnXpIrF (01Mov}ix(;1!T=vnw~+Q!X scaZyoVzRd_:>8 CҡjyǃAM<*0<5ں/Ҩ 9g1B[\eA5?sC•ѐpƗc<Uo:W˙))LP7QBd^^7x"5ܖ̼fNl-?F:"8 N^U Io?ʙMq`]iQ9piY ? t{ ;f4kX[|'7[qEytt$<&&Bh {pzdC&ʿh7N:wy?x6[nfP7y xĽ<\8Hg \p,txސ;R+r*[InC*Rԧ ،Ljc8 qG7a!ik8\w= 8Z)LzۮL5wrc|~N%Cb-zJa۰$ҦœސJ4+r&.MQ& .]Q&sxm7ofxB==x.^Xۛ'-wHyx$29MORnSv( >p2;%㦩cD?8D~ Ǘ480 j$==^WG%rq<8v`ci 5xݹ=WTЩ(#dOUtv](>ԪE? CKX|Ѷ4h̑OC;)` WJ '{Kd>^i 񬬗 :m;pwT %-dc@I_'1@{ޔ,M}w)SpK סE۪tHU" Aywx4\O ̺lk8[Nm&܆0)VI:H RɁ+TvnL4QnʞkMDF׎SRWյܮ h i-TPO6dKFk ;m7._b`9I^84E>"MC>SO~`k ׂ:ѱ9LDG02.;-De_"&^" :5:בV欎 c?|J!d3m$mqq]1b.(HόBPQ0YI @Ztf_TB ԯgo! ~A$Vw:C0 ^ \NlŅ\kau٣<^;B1 v滤sL:IcD/n6W +Ta2%YPj&*$Y\X'>txw(ݴ']ز[.h+?&m qlCtfD|pDGK(AIJ^83)4O@[S<^\%732`$.gêo*a ;ٍk '3xsbXcVIô?P`4 ^L.n D0fϭӇMnZժ,$;K<.a! /3A6ԗPz?rILXũgQO(:WaRXM~^P +d[HClF%x ^ 07+ԑGNW4朑2k̿3θ}9&"sqZX W^[mM/xrB"88.m]v^}'xo(G( a@NMfB?"&}MJ2P ̵ eצ-9Kuk'̒y- ;#/> nJ1I2\0d1 u*3]?^9 endstream endobj 2857 0 obj << /Length 2872 /Filter /FlateDecode >> stream xZ[o8~00XbVRf頋X,L,Ԗ Sn[9<͡oif&)PqL~}gFC#l߶o޼擜H'7T2M >YLnT po6vY[[5Ww76p)+r;0ů)B HN\i>-;̤Φ3 (WLI.SҌq}'LƄo) S)?"S"UEm4e]}( g>q eZ<B6],o D:B)1c5fB"#nݩW[_i1E)P$_(?R&*@Tגxŧ`{q ݊ -Y׻b4Uٻ<LIV]&,ASh,K-9uQ-hq^xZ~qUX}^V.rhs&;]Cl3v19Ɯ}t kL 1L~J*Υzb NfZ,Ni'Aw:c /p^_!bt1a rA,`OvAmBa92r KV r4F>#k[2@fru<#G!d2|h -^ȃ`q"6$aIg{47З _ód3R0dG?r bB9(w YR'YנcbNob+xd)IU7aέsŶ\}h^F{H鿗-XP{&.)^ (nly#hqУ6 x+;QҦbYē0ͤ[0d驌U@ bwtV%3I _:@`1x&I:ݬe}' sQl"_ѝ PB C 9#k_({"nX hZ4؝&ϑ w:M]XEmÅ\x?AMQ܌ 9o_ uw6_=[D+/\"/(Vp]>ZVȅT f@+f JJѵlUOe8F. qmָKU|騏q> ybXL740ZҾԏzG/KCjU;@a+ Ebx%K2pD Gx)>^YsY+p^ɿ4ﺣo` J,ٰ'2ݞ-\(mUq0~H\!<̀|lx_=P@c"7iWº -b .tkBc{2ΒB%΃@q(vH5Q`WWRiY3Z! ; Ё$3B^vQ\I''؅sbѪ%'zO^Jrw|z uuOL|dF m-$p \CKd^|߃ 0YtP;pGw1v0xoY6 ܺZ} u )UCSI~%kKDť)͒`+ِIH=淟Ȁbۤ yobvZ oooE~Ʌ(>Gב3#pǥ39=#E-_6 A%#E9xXz,PҀ3F1k u!M7,菬vGág Zt6> stream xڍRn x0 J5hLbKm٤R8gG! ~'޻3''dž/߷r Ks<+!0%f:~M6.?; w`~}Z#C2kJL  {.U8j3cM;O Y5Hy@p0Ξu3=Q)EB9t#ꦭ0d+xٽ n!÷-a !3Lb$0GReR`'qF>K#,~r04i$]]TK٤R1=Iz1,1b$ Kr)\ endstream endobj 2870 0 obj << /Length 1922 /Filter /FlateDecode >> stream xڝXY6~_2+D][)PE镰R63p8h"FW7dY U,nADyRF2!#f+e_wM͟߿~,>dK(S`wl6Q"ܣX\[}gNE8жnn?^7ҁ#=o@6H22aw$=4=sfUD*)jzIȔXf?]gT)ŁAe-AC'HQ˻=KKBX Cdؓ,/sbH/xK J"/#-oUD ;y9Dk棬Po"NInXYGњhU o7 jӹ[6ZHd8-bΖ~6gl`U76kqxB JHPTwPugt;h}rUG}2^6k޻qX P,]Rdm[v%9PJع 0SGmg3$F7r< o؁zFI0]H`%i5]TRWnf&iX^67=x>kkL wnZV)l Vҵ wJSCsPy3h}Rij:Z,ٮl #rxJP[2;ysN c 88DAHM2Ѣz?w'lRat$,*~Kw;_+1}E$RDLS)o>zSt%`B8Ůd%/bp!QK':Qm}/ǔ7M~m<"?6~tO~|c/>tӣ .ڡ؛+nYkJbY|!3%wv>Z~o(~G$ Zf$P|S@\%5k4h4ȃ5IhÑԌk' ̯pk ݴG3*lݶNjZ >>>KQ^G^DjvDE>1tg}O%mʩj+sM%B{٭ %l-gUIj/ĵ=Vg j endstream endobj 2864 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemedefault.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2872 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2874 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1035 /Filter /FlateDecode >> stream xWo6 ~_5aaföuc&,MsEuRYIHI& p#i8Y\#AYɜ2 KɄk|52 WӟO߮_/,s\49-`}-כf׬ Y}oWAW : P.~ڭ amqǸwt6;zyqL9uٞ~:-i}$Dެ(qsiWB-aqLGTygH1if—\QJԣHANNSt-i񏖢thKH2" , o'="fIhz,} ,ϤHyu%1玊G%D19BarR1Ct-ބ9 E&E3̙ G-+>>MЗJH;ai2:tZ'YBNx|yxy%Idp9t">둈2ē'bJdp2>$J|dgxJΣRbdb[zg6i#J#ᥡnenOmrxƄF:6>a\f]̓.F'85ؒẓч_aV}~mnݎ0:UšoV/ojݞbM,oIdbqcxZf?Y6l!#/mF5W|9tM?]j4]5>%pD_4forˤ*BL)z+JOuӏvtCu_!UD~JUCz‚ϗ^ƥAtXwӵW32+O=q>+ endstream endobj 2865 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemedefault.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2872 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2874 0 R /F51 2877 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1425 /Filter /FlateDecode >> stream xn7QB!ǵ@b8A֎PKwΐKz%nc7p8C\FNRFP'5VP. ) r58۾R+$YR^'!ZC&WP$Q8p(XX7䔌%eR*"EuѾ1Ų2a,/'*@:#_7y/j19彏AE'NpgH% ~i@ 1Qg #f{@IQ)|ɑ%@ I8jX%@746 ޺#W*p9gHzOuܘ1N+DRQ \Pðex;G H7@J# U-̨+Fu@"!\-D"Do`I&-Iw%ަۆ6 翘a^"a6s~IJ=l䛀k &tAxDN If 3"*h1%u#QH,C DJhz#gl&[ȏLt~JC3i3̄M D)uw=kWD+QF,~ΚB9D4>gt="pûyy,?vb8oDqHN=F7RTqQ;2̲4X*P8zv@RӎQi ;a5D,<0rb#rOn$)> stream xYYo8~ϯlޔ臝.0y-ƶ1}XI; @DRTi,]pf9O)uT1Ǭ?\X]|#%ҝ~/޼"cvq}Rxu=˥R*.N>]J Mֵ[_ؔzf#Be Ư]U[/~_>c$jNL-2qX 2ݱ_"N)84I+"uuiraһO8CpC߮qm6(txn/E; mY Z:Sv4Y#گA {LUr˙K6HAf2cH`\fr7P : D AߒoOXN+U܋ۖ`I1pKD%:D@绦5s[z=}'[h4.Jmr@AuXJY&4nu[~Kj,.-o.e:#VG҄itS7 mq}bDS#F7s&t1Lwtvd?,;P$F|1nXzkP %,PdOے쀸'+|D =;|&`z7Ma#zHۊfJRH9`nRF) 2A`7TޥpD9_mLd@׈ @6Oؑdײ#c+ܗ*FLM\\'UL`&/cBL: 88=TiQ 6ES҄VHp妾UoB#s2%]+n& K.7a=bN5ia:,qƝbȦZ;[1GrjM9:ͩȣ¦&Y32 }C"9hIN@QjB\Ďal`5U@w(D{_k1ټRYK9 +zaM΄P)ՕeZঀ(]T2lԞD:6"Z% *MZG[ v{@v-Ûy@4.ُ-˻̱%lH{hs9G2L uקr#%incWaT.0BoT1ǒV < :TCZ@ï4c0ּeivΏ{c1}=InID YWy3jsܡoZ6Fj$cDP~mڹ;~P733`BğI \ې~/Jӏ }%, LBU#HXQ endstream endobj 2866 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemestructure.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2885 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2887 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1171 /Filter /FlateDecode >> stream xXKs6W(͔(ޏc;M=LRCK1'&eKTH=Q$gX]+FF.fl^'3"Nj"\5RQ #;ُ? I4!:&Ў:1_zQ7q|Z|A IT0]E_zGEi(~ն^DP̜S|~}w\rtQ^\{YP"*_Dm@>>~]D%NsDS),FGu׫MD-˲ dպnrbϖ3‰`rT $M =M@AZoY Li+2{tAGI3ZyHD2tޑ$"E$I5("C긏@ᓍi1x]HrJ|XZ+\<fai1Ic$FN ƙpE6#s2)I_1O2pc=FB6D!#HO%7!,dȘG$t'IS)8%vx8g4嫇W=>/nIN5q^ dHk PqFpOedWcJLI$!͓*Se*<C4L"\m3wx ca4eۘP'`ÑSܫLEq z6˓$a« 9~im {?!5@dTIɞ;.O)2+1*s#.~G p5L2+WPp{u9 i41v 9Ũ>ۈ<Ub?S3W_~J8Ji?Tߒ=V8 endstream endobj 2867 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemestructure.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2885 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2887 0 R /F52 2890 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1502 /Filter /FlateDecode >> stream xYKo9 WhcaUuؤ[o{؉/)4c{؛4d$q(JH䄑=FP'5VP. Yuwsxx`Tdcz}yAH֐511Iv)NcruX}pF2Hr? 7rپ,z}27?˫b/wNU9uGxz ~A/"w&f[iXe.{J, ҷTϯ#Ri\VH9hEQ"]:)!D̃nY2*;dW9i 4 `28Wq$f<.*.#%HD$I5(`"Czw Ssa<10oFU@p^6-4cÉ!@eH**h#1ph75,+r0m$ʴIMzA{Jkå1 Yep"8k\R^!%І>I,oJi-ŗi5 //#= >p`Q^ܼꕚJOO%%#k &T ʰ&I5 \(D8#22GcJLIuHiQ@5*I$0i4S$J>fʈf9z# M)s|k5$Ȕp]=%4Oկ(v -ErQ}U?f7rه{/|57|#;+97*Ho2<0CNL1HH+FK1GeARL*TڼI jKrMFzG1rBe\Hj}ԑU⨝rgݺNvįJ&w!ղsyU Q>/Pattern << >>/ExtGState << >>/Font << /F23 2894 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1153 /Filter /FlateDecode >> stream xXo6_G8~_m(u׻8,\!L*RWr{U~(7me~oDP̜S|~{\>Ap~wuz9"ʩ ﷛eD(j@mt,F :Df[GNyDr &/'BŨYR2;&C`-AA2[AtVBgk>#79N<Ф(?\ WrHy\#Qchx;q(|"Ѫ!HWAgsXH0r-Q$#XN#!0e(·@E6p#s4-24/:Ό=lcDz@Nl`!ƜI&Ou&j騁ŗI,_?"K` c{uE0Xb>/Pattern << >>/ExtGState << >>/Font << /F23 2894 0 R /F52 2897 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1533 /Filter /FlateDecode >> stream xYKoG WQBɼI [7'YZ;Bp$A}yj%iԀ=gH~kFn #{=R׽/@gDADXA0d]އ5RA%[|x}{JH֐ 11Iv)NFSr}`( Jʤ"CUd~;^V~=rݟ-(~vq]qrDP̜S|~k>rUl.nbIۋjo.ǥZ gG' ;g. ZHN&/^ݸ+zZeHO~ZDsϟ2!.^uh}|Mq61:"AHЈy0r]֐n@`UBGAa3oY Q Lit%}Ute[N,@RD$Ha@!0[.Pxcafj.:Հ_l!Hx|0HuBca~n"H`b9EB +<9jXpT^dB-qEM7I?![+},ٿ6~TCJD@43Y,iO˛Rd^سlr'gX;8ϷIN(+M(ȜIrͼA -gTTFY'`ǔԅk,!M&dd pey {I9Ecf{L"VlQnҔ9_FB0"4?gO 4 "nXYβvO/\}cM_AVh|a_n>ެy|,V :ޤSdshjUxS[Đw9|R5U빷KJe67JG 8ЦC<xL6!(<4JleQ]em7UU_Ң9@P\,uhF[8C?Pj endstream endobj 2905 0 obj << /Length 1909 /Filter /FlateDecode >> stream xڝXM6 "9@ZۺEwWD:vf9ma}H)vv,QE!dqX$wO _^墊<qdBXb-~uc+X˴j%Ӷo74}5}ll3)Kc8et+<.SkC;x#ep`U2C툸A#\hE6݁TѮHi&]a]Ohuz6/&Z bfqY大(bK=K5#0wp$suu˲"iHIl,h`*ha"a#""$@s&XL[ֲЊ=-L/m'-{h('=5AAM\)YD#l5!5PjU2n]-pHOY|âF˲TSp*U)Ly;fM ką=ƀΗy#f[9Z<ۈief Q<='CN |مsI9.%)ht|RqXEb!~˻'ءۍi7YMN )TBoh4+O8-OR0aU" g7I\ ,˪K1ݙR4eI* vz Vs%SgmKx:b۴gG Gt-f&zԆ 2D5c;`t=${6< K67-my}PPKr;5O&i0g+X J@y;287cY;a~ĸpݐ06-)7A@ĭf&9(j.&eW"+j!Bbxw+Lܻ˶G_\gZiJUK\TI'򪊶`GL/JY사}Zf9@99W3t}VST(y"=37Hz/J) HS6|dNn:\;"`tkv/|tup޷p?jg7#\coO"}s5ۚi1k HuQ GO~!1x&R5:%xUt>5-Idׄmi0ق>8cgoʰs4TOsCjO}tݞnS]DBVZfSʠzؕ}i4^ׯ;;97&MyםBǝI0S]聐ں*y| _j`/:#l#l򃚄af񼞾W '5S{|vK8Z%ݣMk]ݵ }p4uٵ(bRƥkCB$UAʮ1KOiWgHW6vuNbdbG翯e@2<6ZY3VFp~l_wqrs|F1:D$]߬14^HΥl{нp RkIٟ,.}tJ\YL34b/}"g@(x2QX;1c %zE 4iZ.4;-wRLϋ(<+`Zn kYYv5~+!ᑗ @RݿBoP CאĪ͆$"}g-Cg1I,cgyc E-En]<j endstream endobj 2899 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemealbatross.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2907 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2909 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1216 /Filter /FlateDecode >> stream xXKs6W(͔(^NL&ṯIU7Rv؞@|X,0h;O ~|rq2'ʅ&ˊMyDžK3R;Im@k`ZSXp u>w!IN1ψI"rKd~J>LղeUh,f_LR&4LWbZur|Z7'qAfS-qkjQ%Zx>[_\֧ʨ$_ (j[}Z_vB ]ٍ ٜ9uNP bqn)"˪ :-,|}wV ;g=O'DH+s!e )5lRmfw< `ƁF"r6'dgq lE&2CD9,i""$HC+ԏMDACj=Mcw1& ]f2RCD$aLe8=K5N M HL)l8tez[';F1mPD zy1LGDN0}lO~oAOe͉9z8@L;N3VkƵ28B9 RZi%X2%{Aq2!pw .5.A_&)"Č,P$Ϡ %v&rn2ww#ot-acS7wrldžOx1i@[ܯˍ'uI|xlP+1*Q"6cc qj1%eRA*!)Ris Wc Ɨp6 RhC[rq.z#]/T 6 >򼭯=^ $hj [b-a8岚I6hO{ =7he`DH& YI*` Ŧ]Sݦ (ӛK*f۾|Z-Wu@ahpxvW2'Ū^7\) ²;~[|Txȉp*ܐ92.}pFxEsd>WφS><)Gq;ަn?\rGc3/v}L\q?Fkz endstream endobj 2900 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemealbatross.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2907 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2909 0 R /F52 2912 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1634 /Filter /FlateDecode >> stream xrZ7#LEkgN4ļ9yp36SOґ 6$gjw#03FP'5VP. W[~8l+\'YჇ)`ΛwBM CDhGd0&'Y5z}a]E?\H_R&خ"{h>ɴ 2W?,ccDP$9Hb2ޅ=#bWZZf4GIȩ-FNj}_^~zIY׿YP#}4D弚F^f~ObFw%6bqAtN2RΒѴsM:dA M"Xq $઀ęƨrL:pǛ/U0* LBD/H‘T(fehXmq ؘʍfۄ5 8Y^B =DT`Wd!10tȁTFφ5bv^5,(%bO |@ - QtZ)t R-NIucf5D|gA$nтD TpP`q1fa[5~&sx6%LSq)\w1P29$!\(qF`Ked@ )3$BCF5dP' j3|o VF,i;9ƣP52Cd$3Iߣ DIzVfD+QXQN"/5 3h2t`hXա pù~9,}tDa Z ^BrX4 ȕ(XdEaVM^CG4l)ch?}Keg S ֮[0nj#Ү]twfMR||wtEZ7(v^N˴>{\eD b8*+' ʄ:6)_k85E"U`BB9ciVޑjwZ4B6ِ9ZGCX9lUAwF) `\`Th*MneAX $H~y), Bg+]^g%'zvqBrq_ʁ\;:ۺ{l._h{CӚ< Ruy:d=~<^ /ē( C{hEzF#늅Gr9C=^^]].\S@SrUpZ 1n1ؙ߲-"P\ks 4έUm-?'KY.Z-_ m)Ëe{WzǡH62l5_n5v{\3P}^&VjN|&N22Ln-F%N9UǣM r_D 6\l/ƈ:Pgi )DP|IS endstream endobj 2793 0 obj << /Type /ObjStm /N 100 /First 1059 /Length 2930 /Filter /FlateDecode >> stream x]ms6_Uxt^6ڴi>mDR%YdUؔ\, )x&]ЙВixCU^ 6L8nB}BxeR8GG3OTBfZX2!dz:3Klf"jed*+B!y\u>ȟ̂ \4q%Q,m,xgk@LpvR@Ԋ %LDuI`zIՀhIH^ I^C2-M!r #"-HO6p,BCh'Zh"&2&7juuzZ-7DPAS(B5eJ @%_!XtfM!fCe t6#oi89i:sRSc4I6P%I &ւ Ml\ZkP9\{8b iy) -Iua"ʎX1K31@ TK \.G\:&,D8VF F4M$>'nZbZj.@C 9U4CTH3U@xRX+*Ry {nRd'E'쬬뫼>aYAw~*Uә==]M.'m$э'MA'Q%eWhܯ3JT'/I0]>8Hy%.DeơcCS# onڼo3Atw(h,3#57ѿ}|҈ExNˋ.^JvQfJf V\Vm18tt^My9fj8k6)~1nY>A\W-vX\̠Zk6N֯F]\cꬬ+V ^. vQMk`My͚-q ~5ƨ4,o]E`h}){7[O/}Ǿg?'){ƞOh5Xί_OGl:@*.:v9;g}6`vɮX~cؘِUlް5eSή;GP̨]iZ[2gx(nP>fqHC 8@(wŰKZW՟֤ :vGjZx(=[l_^b/ҧn=(v\u>T]`J`+a9iʆWՔA,d ȡSyB] kFydkQ,wr3&0j:hO[V]B_~N8BR#rYRa wJ!0aЂeRφz5*D<Wdib~;m^KfeR=$fk̡lIbƙꊏoVYYg³m} !JfV"OQIW!7DŽkF؋jN&qQnuϊ6{ VO6[\|g 7n; ƺ0:{ID,A!f-\2! ?bbfMϋ_ H^3TϋSg/“/}93y>WPLw|-v M/dO~%ǰ$s.|U7S6pW.v8,\~{$oH0JOޖp<"΋pڹG<2 :2;!w!v6CQfinoA¢>nb< }]Q:8[:-O;-ޖ7a:Q^aZj FHl:4*ﱤgӻO\ኝq=u*}o†Qr?^6J^$f6lČv=4nIS ?s䷻nߋdvKVT_{I~69ܲٝor:s&Si3mrsZIZ+Ik%~qgK97di]ۆݗVpdnУwuD^FxK[ֹ, .&,'!QWN7nyh!WIۂԶ.'e8lC2 ɔHD*9䜓s>^"u؆dH)J:dwې#-huk}D]l_[> stream xڭUKo01nʃ#@ Yw5%qh3BC(y|3F(nV^$Kӂf/, NTFR$YTu]YDջg8$cUVY藛uVF%)3E(E$9#96c|K'] 0Zw[i҅U߬bi5j@n\^3qdKwC_8EJxig97h B! ؉,GZ'kɸSMmRW6Y"u$uPjxQ/VU 86Ѡ4m?W0;%/tJ)%'RaA$aĭ)VjH'4v nw'~;thl&xi\cjlta۔sKj=ZڦۮLgM8 (Ճ |ף?Q۶s3(Ɂ|O!bi.bWZ{S$Xxu²7-F0j%vP606ՂyA<W0H9JRͨ4,ԨQ,y~Fݻx@sM Jn85}O NΉe~ao\+oHxYʌj2>Y"ة_ H{BjY؍x d>/Pattern << >>/ExtGState << >>/Font << /F23 2925 0 R >> /XObject << /Fm1 2926 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1218 /Filter /FlateDecode >> stream xr6Q)QDZ$M&!Ac%n>RH۞@,.0h}##ᷨGQsl>z4KgO>pRaBEIR; S`S0$MgDS$Vq2=%rQN2a2oH&)dl\b|\եGqvU[.p{jP$Zh>_]\VΪ$_5`x"{C\.tvvA_Jlѿ:'Hfyb>? c{ͬj)"拲:XXIk,f=v z>MIOH+s!e k2Z&p$7-x 3!i# HmN=(A!)!9gI t"xI"9 V~#pcl!P)5&,mf2R`CH*:Úbv,;%`m>- tIw> 8/$:1zElH$^~#QHtm'RC*8)w3x@N@O)~sm tq@L[X5evA9.ZK[-2 eJ BG&EY2G Pj\Fq^$)"$I|JA^+ҟ(tMNn2ww ~ X^džU7Ҋ6Or Hk} / N4ա!p=_n>i3K(O{CHJ+f=C*b1o<][x1HV)) Yb"9A9W8uF= ڗ!0 1:jYƪiUVvBД7armY7ŋΗ YMHl%5ǿ]Ϛj7ie`DH& YI?+fCq[M.Ǜ *fۮ|\.U@ahPablZ jfe|jUwR6r9/ZXC 9+rb4TW2] gR&r8Ϣ/m:Y>rmuAjP/vy.ֶj^~w}LT[9  endstream endobj 2926 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 362.835 272.126] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 2928 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 2902 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemealbatrossstylish.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2923 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2925 0 R /F52 2930 0 R >> /XObject << /Fm1 2926 0 R >>/ProcSet [ /PDF /Text ] >> /Length 1541 /Filter /FlateDecode >> stream xYYsG~ׯGR;}87YZ@[ߧ{]+ٲ$TZ3~[zǞ~aGދW3N~[=ǡKiP) ʅ!˚||Q+k'?[H֐P$Q89zY*a]U|Y >JR& ,Wp^]GAu2 7EɻDP"9(t2;f% GV8Rc׫zAiv{A*K`ohp2&bR C/,a.v$7ڹ*nb⪗g% ze,0wEzd[ Kq$ęƨrJzpǓ&`T"=EC;29H9%GR O aY]^OOYS!ȘUL.5Yq9 pLTgÜ"1pp9O#G FܳL:0B#sT]ޤ!}s> ÅuC|8zK.z̤YiE\H>C`#Yh>Y,oKa#ɼdăRsьorغ^c7fe#s&I! \(ԖqF22SRJ <Λ jdɠ x {"S1[WENsS i< M)sj= _6?΀rMwQjNQ81TXHBQ\Tn伂\O@AJD,1+7kMw7(~JGܝ-_e6!f@L>hv;AfH2}9z .KA-8OBU7ƍ(e6.Bc7쿡]:wBR2G*A!}V@Ŀph(f fe ʓy2w«v53YM. aa5Us[X+cq}Pt+l5_B !U'>ţ1u8O' zx=32"@ai_ձ%?02iTB6%w88H>/Pattern << >>/ExtGState << >>/Font << /F23 2934 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1196 /Filter /FlateDecode >> stream xWKs6W(͔(ޏc;M54$V'cNEʖe=;XrƎGj k2"Nj"\mǎTh\ZiE맗>&C=0_$zk Y]CDhGduN>W^º]mސBR&) [R~(7mep۷[\̮S|~{ݜprʹ|sB#n9!<¡KX~R J1/b^ (%;kNTMn64o˦ 02R(!rv6ۺ=nn*Faډ_٫~DHyA9KvvMȒLST P ֽuI*0q&gdKe!  5Iǽ$3J ]wIyd!cS|I$NS-85YX<R8x~EۛTN Yxa܄w3I$p#2< vǔԙn!͓*S&,Wxz6V|6^x̵`O2)I<$QiTOqÛ?ǝOgs,B*jlij=w^+d8>/Pattern << >>/ExtGState << >>/Font << /F23 2934 0 R /F52 2937 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1505 /Filter /FlateDecode >> stream xXIo7W(r-5 ^nI4IZ-Y hȉSn-VO ?*#& ʅ!|2>vB3@*wL5j:GR N$=wx%$[kGbcS\ɻvNaML>\FR&i Hzn#zXQ7Ur<W% 9_n^PWf>97oApRc}~=I{AKQLjF?'4.VF2Df.QyZ:M1!NF// =!Y2[Ha9!nJ|!H%d}oa_R"go!qY} p!\'2^L#Q а[ +Ø,PNACPH h6da@0d_IE:1쉡%F~2dpL /Xp=đ8”ԥ`_b0ﳄdA)/Zԣt,|d~Yh~UO])Y%YؼL{Q`&R (O9+9p118/Ilr.bd.2|)JYBJfe:1ɠ) { :"cf;WEN{Jj̠A4e:Hxf`<[yVVfaE8^ϺU0:+TZZ1K, OrS>Sz%hlyw$"IDVw/"+ w x F*j|3?j\C[%74^cb PLhٲ&l5Mh:- ݷQ&K,x6CcE2*!{5mܫ ghr3'I Jtt*' 4?4HFrT[ţR*,cS.L51/7d2(תےy:$PY1S­80г 굚^;  b×s7!Zpw>cD)vW}ojoogXo5s!e2Eu\R!Cᯍ9jW~PVC (2߄`Dcޯ fq5l|,>d}ݱx,wc݁;d/`2zOv3h|eכD:]FO8$l頻`5p(G|<#&wi|[)g8yx@~@O}0bx :}eY9ϸp)-[|0 endstream endobj 2945 0 obj << /Length 839 /Filter /FlateDecode >> stream xڭUK6W(1oIH6"r@˴-D]ڍQwRWX bh8of>qq,p~ #qM$|_(dhϫ3xkV(AVXtm'uѠFRYlsVY}ܞqaX:ӨRxeT76YCL}Xu0 ozSvpg\ iSl͙x^l=ECpul&.d$nE*phO{[է.eku*OC0}LW*xƤYsL~VdIp=ܬSozGǀX`b+Ii's5YqxZ5<&tҾPA]*.R,H@gCMb>/Pattern << >>/ExtGState << >>/Font << /F23 2949 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1315 /Filter /FlateDecode >> stream xr6Q)Qvfi2NI*MG-QuRh-M]V.vDy9aziuRaME.'d},s`/ǥT%7ʒM~tTR 4ֈ2-HcBj Pxtp8|DSo!KbcS/ȇ|YmY!Fv=}200_OնmfU]{? f#5Rh8 !*9uG/v^.@6@^3^FQ ꃪ*YjlɳjjQt9!ؠ-2Ԗy1Fz9f&۬ח1 .[,VM<#"zS՝_9z?bn=J0 R@<ٜ `|%e=!;=IBX-A"b2⥳2,Њ{FrdpӢ!cng7t%6f 1 {FRhb ^Orp>CP:!a}%c(&=d7xzK|7bPq3. 1XȨ>Ё}$`J^$to<ș=ro" Nuw:ݖ.2'565}ό %)DpЇSe8ΘZJwڤ'$F(I kP4푾ˬEd5/L)2;&ĀiF‰ Sx=%$"rVE\+B >/Pattern << >>/ExtGState << >>/Font << /F23 2949 0 R /F52 2952 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1753 /Filter /FlateDecode >> stream xYKo7WhZ Aj`KJ"Cjr]k'TvԒ<Ђ}e͑GK?ix;¼`)e+.c)26CGg3-KE$c zD\HM(m5F{ǎ0ǃLx>.Ñe?\ ?c#9ty}\ GӴ=@j~:]bG ub4^[_"LqRbzlނӒV8:<$ $7<.Wg,vmh:4JBtyfJ_xA'xF'Dwi9Ȼ\ biAv)?e'y ՘n+P@{ҥ^H˔ҊhB*C6tȍ3N1lѶΔjp(qA?hQU2S,,n2f*V#Xkcf2UJF uƶ,Ǡ[K^f.2DUEuG ~T!SsOԏ:UE¼U -Tylf*DJudW^?`=".MNޒޥj\XOK lPDCƖ">N[U#GӪ@P!44:7uCm =7"T>mWizxƪS`#2b:Yg'f<]<Rr}[mH8VE+\ݟ9R;?Dm$ذWt^[dGpEqrIvm, RIMF9ˍx> E+J.wkjח3rS}(P ]{77ty̦:!S,h_Q۰}b -6Z)*6vM1)3.~4id88Z]^^,o-hHEqCfwd+"¼dۆa%:iN q.T!?E^g듻>毷f>|kŽ Wv6FsD-b{T? -Sva"|6V}[t?a yK~_?enrv:TS4﷐7'2naf]=ZGNq+ [5cjgz'gˋ y3J!\%.^Ig5-gw"Ƭ0ςM.?ʳskg \?uD;9 Kj 䃵X&O-G+{iP̺`'M7 endstream endobj 2939 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemedove.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2954 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2956 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1133 /Filter /FlateDecode >> stream xWKs6W(͔(ޏc;M54V'cNEʖTծݎ >]<τka9:#& ʅ!ۚ\>>v.XrِR`GS;߮f_/$[k$B;'Ki_ne2Ha@\EzGEi(}k#׈ 9jۺ<ͨ(& ;cۯiz6z9bé *ƚzmt!lF :DFs^IeZ8DHyN9KvvKȒLW QQ- .P0ę (aX >ЂbGZA$I5(au.PD01M ta%%>,_hd·sX0r7Q$sX&N00e(·#w /Xp}đ9”g֋vG| 3>RvIyd!cSdI$NS-85YX8fA`4Q<t, 0n«̉$)$p#2< vǔԙnۤ!͓*S$<ؒ8G4L*Bu3w!h#gqOY2" :+lz%]I^u)rx*1P^BB pʃ]nC8Ód E0qs< y6g!@k5+45$TFCgd8<:גtoDs O9.M鯣|űr_f2]l~'7cub`w R{k6Y iyRqd A&`SIWߔCy]ښ*OJSa~BP^{ u endstream endobj 2940 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemedove.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2954 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2956 0 R /F53 2959 0 R /F56 2962 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1457 /Filter /FlateDecode >> stream xX[o6~࣍,m+%o][MNb+JYN&+.@@:\i.`'#_yHixЖ)Tm*i~+IS(z~=x4Ҏ0f.c}}KA"x5WGb|"Pb8o\575E^ƫ vټD^卌mI"aJڭg+짒Ť]4|֏F{: _E`lYڱՓ%+^[ Ex(;Q`ncy*b9p9!]WD4VDGR18]=m6KYɼ`>ZB-uy9E)"LENk)}ڜ!X.L]K@\eֶ}9x,+K꼴KUjc^4!*^=UVy w>pޚTvwJ(2OrgGE[ݤ~4IDǍ{b/HGDz˿De}z k랗VǢ,߯ |ts./_d.WólxΛjv;cT#`y\> stream xڽVIo:W(5]dEw[c3-8E.k"p483F'73_f+B4Ui9ΉDRXqlDzqFb=:|Ĺ1? h1s6px~ E4< J/3gk׍CRM`wbpB$Q<6OR^!7w1`Qi"@i B_mVv|Cd0ӃC}(Hbם.~=ig:3;E=`*)4ho#mѻ_B`cPvdS:JR _ѻn':JsMP^i6]@]c66C:ČE.M1k lADR%r+p6DƓ{E].thP4{u,m/0*e*.iuMfC%IߵՍ➤XOiH(Th endstream endobj 2941 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemefly.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2976 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2978 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1146 /Filter /FlateDecode >> stream xWKs6W(͔(ޏc;M54V#NMʖzĵ }~x,# #;/g@eDADXA0d[ٻSǎTC:R ϵjBMI"Nq$Wz[/ a.o6?VH!)Udܾw}d{]\ϛ2?-~.q9DP̜S|~뺹<($ [jnJ'ڠ<"w#.z/Ha0:*|lbiN˦ !3R(!2mGeb c<fًĊDHyN9KvvKȒLVdq;woỤY Li 2{R%qDyE4ޑ$"xMF u.PD01M/PtKFCK>,`hd@sX LT a7qĨ%Cq> $6^#s)I_!g.c}wG|$3J ]wIyd!cS|I$NS-51I?Hѣ7y'+H/RT0\mS9g fI5q^2xdN$If g`QFu;Δt ' iT/'458luHfRqJEY{)sSLEqЎ d=ނIWpW|m㍙r(/|9!.!eR'K'1$x)%YI2Ө2"7OL>sL9 Z^I2_`'}mJ?ՔD$cHxNpi_~.Mo7o6̗q`󻸸]s ) HQGtЄ|w]/$SvC٦'iixC렗oJСؼo?v- MR-T:_zkOrRo! 0p })/rYѮDב~};xW о߅0±M8i4JX"Η=ʄzLv 89-b4wˈ<{7'4P `fӨH8hy endstream endobj 2942 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemefly.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2976 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2978 0 R /F52 2981 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1474 /Filter /FlateDecode >> stream xX[o9~WRmԭچ& Z6sɻHͤb(r4ǻtI3M㡏1"x9yy)p@am:Y]0JvsuKߚW43r/|.<1Ii?Y:m8)o*oSr:v+ x>/Pattern << >>/ExtGState << >>/Font << /F23 2985 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1133 /Filter /FlateDecode >> stream xWKs6W(͔(ޏc;M54V'cNEʖTծݎ >]<τka9:#& ʅ!ۚ\>>v.XrِR`GS;߮f_/$[k$B;'Ki_ne2Ha@\EzGEi(}k#׈ 9jۺ<ͨ(& ;cۯiz6z9bé *ƚzmt!lF :DFs^IeZ8DHyN9KvvKȒLW QQ- .P0ę (aX >ЂbGZA$I5(au.PD01M ta%%>,_hd·sX0r7Q$sX&N00e(·#w /Xp}đ9”g֋vG| 3>RvIyd!cSdI$NS-85YX8fA`4Q<t, 0n«̉$)$p#2< vǔԙnۤ!͓*S$<ؒ8G4L*Bu3w!h#gqOY2" :+lz%]I^u)rx*1P^BB pʃ]nC8Ód E0qs< y6g!@k5+45$TFCgd8<:גtoDs O9.M鯣|űr_f2]l~'7cub`w R{k6Y iyRqd A&`SIWߔCy]ښ*OJSa~BP^{ u endstream endobj 2967 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemeseagull.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 2983 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 2985 0 R /F53 2988 0 R /F56 2990 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1558 /Filter /FlateDecode >> stream xXKo7W(Z 1AR K#ԒɪoKje-Ԁ]<83!.`']yHN-S^q[>cWP=z~=z4Ҏl1f6cu}'җ j<EWG@*q޼G7շEQƫ vYDrvE_OoKq妬zhXa?;~»}X^3CY"(R8g˲Жe, m)H-!8`rK ?Ώ:PspN= 'hҥ~EHyKsiEt!!1a-;f =+GZUA>-;YĞ)Si;w߲P@,A%XBpiفeiǦ)_u (5/wuZʥ*ߚGU5/*^=QVy w>pޘTwJ(2UDӨ'JW2nR`  K`tȫZ;pgc9CM1K mj M$b>.5W5xڈ z5bXڊ.lzO#.^A{ J<s Z+[9gX]:u||8|ƤWūtDDt8?#j6+jۛͼ&ّJpWC yaTp ї\ =gVAwit13^&ion~7![v`Ti;λ AB=A~FjJs/|]FLѠmCf֢Ytյ|Z꽓^{_pnٮ=[,GJ ju/"7}ߋ8_dcu,(J8Oۦ?l7Q2\wPUݜ_H2xLz"k/"KSPQ E~@`wr5km K .9> 3 IO@M|]tiҁFo0? endstream endobj 2999 0 obj << /Length 433 /Filter /FlateDecode >> stream xTKO@+&$vh&=xR[ G݅(m<fvof"x7!=g} crAy c C%r"Fx%PPqAtշ &s?JL0dV ܅rN\,+6>m@o*]50qM4I:ߪ\,U\A&Xv2:OH#, '`*),+qh-dIӢ"i?om^IUv 'a]vKf])(XK[jx13֔6al]†uv4-Wo?Jh0+|Oh0Ј6=>,w'ϔroS]ul~+%j gj=[e7B$ %p>LF endstream endobj 2968 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemewolverine.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3001 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 3003 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1284 /Filter /FlateDecode >> stream xXo7 _GixܰhmnKb4wN%8,XÖDQ$#)f0zv[5vy=:#& ʅ!O>]#4lOr@8^7|Cq{TiT@_$zk CDhGd~FLºul?,gߒBR&) ,WruQq5+.:;ʸiW8yh/c3qDP9(DN1F¡xK8כn'I,g#2tj/&D!Wi^{A KѐGiR2/pTk`+f&sr؄77 ,D3iIh$ pdZ3s09{)!8V`>tcy%ø Of<2'\3oB3BQFq8ΔH8)2^!@܆,=yu28 ESѓeExW7"/2G>\MwnrA[@P+ '@ 5\!uc@ׇB"ZwKefr@«Crh龜#n1|׸aBxUXriϋ2+.n>/Pattern << >>/ExtGState << >>/Font << /F23 3003 0 R /F52 3006 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1616 /Filter /FlateDecode >> stream xYKo7Wh7I4 ۷4[R!lKV~C.ɵ8A,o8`L9# /7 A[R9w۬Z? vo~ˏǑʍ%3L~:xBifycAhlHv:aN?MHp*oN_B6r`7itu]GӸ3|p}<_<fwL€\5w'lKuJ9TAUKhn1jPp'Cc^eLV=ցP"5>JiU<6u煢j7BنwD4flg;V3!ߤ#IZ\TwOgPܱ&J'ZfҏȺn" DDCLiiՓ%+UH/3/O~䓽~'5?q`\McFZt)\C3IsiE !Ϲ3N h[(Α%yV2.ourիY*bIJ+*.WCuTw!}8<8nuH6ZsAc܃) I,md&fP66qq-ȥ_8M;ͣj^5cwjy0nc]z-hU|hP\q:념t;?^n\:u* ցpMU^9~=Z)C!%p='Ya߆H>/Pattern << >>/ExtGState << >>/Font << /F23 3010 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1243 /Filter /FlateDecode >> stream xXKs6W(͔(ޏc;M34$VcNMʖ]?MqgƑVkHaC8b`#(ZeWff뷨p E`~w}`]T.j?[\A0UİbcljUs~D"ifBA0itS_;/o9o)Ɉ.G4;|D8FReИ)l.i/cޕM& nuqYNLa^?#oJ֋wψ XۃpuVC8Fs(`D*;C(8lv&N<$0&q&Z(,W(p,a@+W}x mLLS<ƐBr|$|.pH1 Yt9CiTn!a 7*H1H~q_z[]6+&:.φ!gIAORt@bM3 09{))V>tcƌx"T&Q1'T2SF1. % 1Dp)͑$yRRe l9xW`hґU"QIW*t oPu.L^߿!WhN2<"d|{'YI´ګ|6\ aMOtpSRɓAY&%{dp> SѓeL"cWlUcGLJ'S؄;\3PdX3w ЀAk*s{(Y_-]ۄBP5WZi*;cnӿ5A9qCI k tvsf)}4 CWYކuu57X{=IDC9H!#'AUdwٝGlʠ|" 1Rndۺ+m˾|gt;bkbrYowMVU@hT㱱f:MC Pڕ.XU}k7fF+cٳ[@˜b6GݱtWDZ"\ L}V-@/&>/Pattern << >>/ExtGState << >>/Font << /F23 3010 0 R /F52 3013 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1575 /Filter /FlateDecode >> stream xYKsI WѮ-7~\ X HnY=k3NMW0{pzZ-Ojik|FP'5VP. Y7sGE%0@8YuwM||WѓgBM\':&Ў:\/?6f2֍ 2IEleד)eۄ2Xj^7k|1:DP 9Gl 4E`#ؤf~uIY̎҃%Ns; 2TE^޾v?gU0)#SA,jYљt,H9[Y ߵS9`1Sc &syAvӔT%*(XYW|S;;J5ᗌNn aEP5/VmypLT{^6C02\> ʈr=_;^{>5z3( =eWT\n&^Vڵw!~:Px0TK( ܥ!(h`9b *_f>-lP/ _ endstream endobj 2995 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemespruce.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3015 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 3017 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1305 /Filter /FlateDecode >> stream xn6_G8/-֢M *`9uGί^7_<Ic@fe {P97~dnG-a8cy-McPTU . B$Ns RX*J}XV1i쯆+.BcZm-Xi%9(^-!LXi 3TΒݒ!r=@%$t}d)-T:+3|Nfʑ PJry& GR au.@0!M V: ه6ǺCrM1e#DR1 k= S|9jXTn ߠ8"G&!#I# ;⃮X}lm=WGFļl`!ƜI&KG9OtbfaA>9RR z}:ijdJ5qxDN 7< P9`2<#)3$94OB {dpOM2ҼZ$HV3gJE2Ѽs[2VISx8 5Lb_eX :A?V@Nj/rx"Ɠ>!)r (,>:)&Ad{xJLX|jؽĒyG0w| 4ۼ F`)ZnmT=CSunO?qcH6%H}8z:/( 6.8W:։K}wDmhTaw:Lri&4U]vql~V} Z^6Ekn=(?rb`c^H6.o , ]NA$]dC}S}[ww%m7UxEV ԡkZ=כ-'!- ,N@7]RЮĀ~Ymm;h˷`DoBAI8J>aLhgՒIb'>y:Az1u:zr@RZ? ?|VF%_I8H?}G endstream endobj 2996 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemespruce.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 3015 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 3017 0 R /F52 3020 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1680 /Filter /FlateDecode >> stream xnI_яVn>^WE@`m$vU}'-vTW}"JƯiuRaUC>><>zJê >f&aFG "œS|r|v2E`$d-ށk,56c\߯=^IXy;Ih'Ndl0:~us9=_̗Ų7fQ]2= Nex/8_ 3TΒbpG}gH?yJ0y xЁ8Q鬄$4|SObn1@Qxh DdI5 w[3R`X.~!x0HOuRcVe" 1 D5 [y9jX0T^d@-qU/j<xcIE* o>%D[{2%8ަJŇ4 ~0Þ?Jq?'U?a繚F9 0nBwʌG k P9 2ȲFSRH92ϗL aɠdy ;~ZȐf&H)RT@oH:4P 1L=~Z YB]pֳvδ2nOK~Y-CD%[6S6әLoCJ)4xJ*X-XbȜv dy!߂G-Qw%T(ЋT.Aӓ-C᫏žTEV"` ֒w#0[R9.Vq( p'NV"t5<ެRXRnKh@ &;ѓFOr(ůjÉ}03zmy8~}m7+o6}>#e#Jrhx/hWޛ2{]UƨKn罎D Ctyޡ:/W0)*sPE nO#Ia55KTGVZ )Y|]1+үB#mZ6^KdKM7)uL]:܏8lIp=J;^o5 8yoA7y XQ h6BR@`PEX6 :OSfJk;fJÁk QPC]Zğ endstream endobj 3030 0 obj << /Length 1204 /Filter /FlateDecode >> stream xڽWK6 Whceɶ[-Ӄ(1NE{)QrIf;=J,=QM2/>TYUZh~Gɓ` 9R*lYXoPgfYJ9:o뼏ɧ&4/%ъP’"?vKב.F45KY4hݵH $ͫXm$7 {t?d@5]NP+e7'6Vn $Yf$R. LuC$@m`HĮ5]<[W*81Ґiɇ\@)K֜Z7\#%^=3t @7`d:stKd{5"J8\Z]{ hljBXC@`8^sz,=oq${q\w~R{FF~>l8\<_s[Z-wjUO(ɐz04KgyÙw@N p!` i/Lz 2eZDž ,HRŐ|<[z8*L9~jA t{Zj ntK@O6ԽЪt$hAW\XaccTt'Gda= .~cZ; "cX* _[ܘ Tg 7]d{q*N1ћS6V.tBy@"ӏ[3kZQaiɳW72 C73_4e갰B#n0CJ^ &+0qo`Toe7OWbO@@u_\ 1A5‡I[} endstream endobj 3022 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemelily.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3032 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 3034 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1162 /Filter /FlateDecode >> stream xXo6_G8~3(Zjz7QqM`E#c|:HK4 RX*zȥ[6]B cZA>eNEr &5'BŨYR;2;T { `\oY i Lis2q $E*H 2"xCF @ᓅi0Zu*]r('  Lz tJ1#ER18!" S0s԰&Bn\"qd&%#I# [Kضbm"=W G'Db6 c$OЉ$ Ot˴,_KI%=u$m+M!29$y."g\TF ☒:Sҝ#IHJ$,Ф#ͫlEd3T:;ߐ0L2HfB*S@aMO$+Iد*"/rCx $O2)ٓW'%)%o=Y^kuE0vo,d{Tߗ ;ޞZBT*#SЩrUWǚ0W &Q .Km鯣ԲcŶ@8tB}܎V_W]s#[ {N3Mlo] ລ A-,oKؼo󶄶- +Rp/p_:_柅ziOrBh a`KSaS^w=Ľ])o"S{4v;7о?0±ZI&|>Ԡz)lXWLω6h/FF$&婵HHOO}>xT;/V?- endstream endobj 3023 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemelily.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 3032 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 3034 0 R /F52 3037 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1491 /Filter /FlateDecode >> stream xYKoG WQBɼQ# X77YZB-֣F}yZZRm@.~$g5#ׄIH#+(,*r9^R#$,Y\IA'!ZCWP$Q8EwpS-^_Xm/)Kʤ"}Ud<\\WUdNU`wqzzY-Ɖ 9qd{yMNy#&8"P&˿Uj5״ir }K*.VW7 ߇Yc09'Ȝ bSΒѴsO:mkHxJ<\z8JE`Lcr$&)l$)BMLARDoIT(14q(035] , 9g‡I%faRLT$C0h#!0eGEi&dl?u#s4+I7gFu8{c m&@FdD>h`!ɖf Kk=Y,oJi-ŗy5 /2^[ ı ;v$-(+M ȜIrͼA 3&*, ☒Pr͑%yV2*B%8K+kh֑磲L)"L"60?%u֡4e3̄ BE7y{gYYf/"3D7}9 Ba@{ʤVVHy?eup^hн'P:dJ8^ؓM(M]7 ׂPPh>\힯˪gMP*r"ݕ3++%w*eb2t?Q1h =A3wK1ZœBho'#zIp㥺{P -2d(Qql#.į&!2

>/Pattern << >>/ExtGState << >>/Font << /F23 3041 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1162 /Filter /FlateDecode >> stream xXo6_G8~3(Zjz7QqM`E#c|:HK4 RX*zȥ[6]B cZA>eNEr &5'BŨYR;2;T { `\oY i Lis2q $E*H 2"xCF @ᓅi0Zu*]r('  Lz tJ1#ER18!" S0s԰&Bn\"qd&%#I# [Kضbm"=W G'Db6 c$OЉ$ Ot˴,_KI%=u$m+M!29$y."g\TF ☒:Sҝ#IHJ$,Ф#ͫlEd3T:;ߐ0L2HfB*S@aMO$+Iد*"/rCx $O2)ٓW'%)%o=Y^kuE0vo,d{Tߗ ;ޞZBT*#SЩrUWǚ0W &Q .Km鯣ԲcŶ@8tB}܎V_W]s#[ {N3Mlo] ລ A-,oKؼo󶄶- +Rp/p_:_柅ziOrBh a`KSaS^w=Ľ])o"S{4v;7о?0±ZI&|>Ԡz)lXWLω6h/FF$&婵HHOO}>xT;/V?- endstream endobj 3025 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemeorchid.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 3039 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 3041 0 R /F52 3044 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1625 /Filter /FlateDecode >> stream xYKs9+tBqݪĵl*}abS F0 :YWaVC#WkkIH#+(,+y{sTdyEӓ7$zk 9J uLu _Wj0X{2IEaVr0?WQZíA0sNtɽxMNy#OApRc듟V~5״ir CK*>-onFx]h12T Cd{,y'jwCz{!aWd<ݑ^-!:2B\8'gW9?&eP#sIN6NZ$I)Ej2^"aOlا~n;W1P29$y."g22ǀcJLI5GI8S $,aIG.%o3:ʘ\g9xg{Rͤ)s<ܿa&Dhl?8Y0=ag;J>KE9D>gtX="8A/?i ^jTo(]S*e8zA3a9?r XVN|ۖ͟ ,\9zR; z3Ys&Cz5GM6Z]8܋ɎNFQcgCt&/L<9|,[M r(/?vI(KA8 XKOYG 9pepBz8?A;vX endstream endobj 2922 0 obj << /Type /ObjStm /N 100 /First 1067 /Length 2850 /Filter /FlateDecode >> stream x]_sFc;s5745isIMh$*$:Rոq+\4]bX,X,1.T.Ɋȿ.3F1241S. ׫(:B=@69sՅgd6:P\ L*̛[hNE@>6 .2]C [dP܋˳'l̢ϙ! -H:>5TRhP\h`^\ L\84$tL ?ˣ[ Ԭa02$J@h jͼKB{D-x"EmYTDSmЧsU"bE"bbcUXQFsm  &Ğ؀TZB=jƫùq15b԰@ 1z%bO1jEO0B^gX<6xjTj+Q&,@޻sgW=*Ϫ=jw,6=fюnXa5˻ETB1_6#~umƋQf_ǧOg_}+%U7Unfe_e_T+́Plo>mgtTN: gG䤜͘?+4Wz߮~a*cZ|yWeC/WDy!ѓI\nyfzKX|~uIAՍzQݲ&[F͸ |)`c Rg|6MJ\k*?~'=R ٞoЀ' w7_6ubΫXq2Ѐ˩!A0pQ-0U\b/^+AeAo0pr64|pXY]6/V)7XXWħ۳.Z'}r^&%l*f0i'r>^ף{tLz`Wptvܥ[Gوx"*$*ݭи+WpA |Laܬem4pso#ŴF:5JcԞ;|6sfi}zZy~鴆O'ѤҫEW 6Zg37IҼYTNul< yOs6t ZݽdѨNK:3?fY݌9^ 5۪S8z6UtVq횡zZФ:^- OZ0Wu>ŪVĪ.*VQbUU%VdXՙbU$VXUlj;zg{goE ]sHI %8gqwH-yz#nMnrnu}VgSFvZ4׊}{V[5H[_axS+Y[]i˳.8Yqd?w'++_V0Oilbq5OCa>k(e9梸,[l]FW35B~]_woc(:` AQe$; 1c.Gz!ZljHT[RQ^G&R9sY Ul>jFԈ-ԐL qdJ|Yj׽_#}"wm,H xFxF^wvyEq5o2o#\wǍ!7?nLF9nF~HC;9nLqcIކjbwQ\H!Rj@@J) 9s缫@J٭)%@Jlj; uTT*R^) $,Y) $\)bV_6e{ d>#D=WߋU2bb*6&7p\SWY}٭mf%dhvm|m[YbV`~] ߆@)K %R9sU eV5HI %Zlx,hr]c?5Cܷ>b{>P,*pybĂ=S endstream endobj 3052 0 obj << /Length 1534 /Filter /FlateDecode >> stream xڝWKo6W(5#zyomhabb5RRl',j8o~3CEtϫTiZ^_*4_y [,{mѪ031bm?jVlV*Ŧ^lvͰ\&=/natm+{w*|u-MLu[|{"u]LN^U"[/rO3[eu\}! cGHJksz 'R>eY^ݤ&ud<5nz1#BIuU"Yvwv6SUZF6rBBlxQzV,bv (i;NA`ת8np)G$} 8P̖UeTZeKi&ߣ^n0x՚U}h-/:8{)$spG"<|/KQkfpSf^O λEv褄Fh P.\:C4%6K+kv"sfa##g]t/Ej,L@MEc N(lAo(\\l.Dj0m/@$+UZȉe0mk\`\;w`|DŽgVt_V1P'ޯ Ch]6P6XfUi6P׿|:NKSG6/cyz*f__Fg*/?w2:qHFUԬ H:"T劫N+.&#Ұ| 3њu /!wj='#M%tc`W( Mͺ8o֬3@@Iñ`i35dzQTBp1шAhy5UbFMH8q r秤P`˄qf24cS[zF|)qHch9dlD;^8Şi[^a'*NǏ{(u4iSsnRknyB +<@jD֍ 5Wܹ 3w\K('o/DܔYW6\Ͼ? ' S \bE{nz;B&5cn̺&>/Pattern << >>/ExtGState << >>/Font << /F23 3057 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1162 /Filter /FlateDecode >> stream xXo6_G8~3(Zjz7QqM`E#c|:HK4 RX*zȥ[6]B cZA>eNEr &5'BŨYR;2;T { `\oY i Lis2q $E*H 2"xCF @ᓅi0Zu*]r('  Lz tJ1#ER18!" S0s԰&Bn\"qd&%#I# [Kضbm"=W G'Db6 c$OЉ$ Ot˴,_KI%=u$m+M!29$y."g\TF ☒:Sҝ#IHJ$,Ф#ͫlEd3T:;ߐ0L2HfB*S@aMO$+Iد*"/rCx $O2)ٓW'%)%o=Y^kuE0vo,d{Tߗ ;ޞZBT*#SЩrUWǚ0W &Q .Km鯣ԲcŶ@8tB}܎V_W]s#[ {N3Mlo] ລ A-,oKؼo󶄶- +Rp/p_:_柅ziOrBh a`KSaS^w=Ľ])o"S{4v;7о?0±ZI&|>Ԡz)lXWLω6h/FF$&婵HHOO}>xT;/V?- endstream endobj 3027 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemerose.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 3055 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 3057 0 R /F52 3060 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1605 /Filter /FlateDecode >> stream xY[oZ9~WR[mխ$oim )w>p K3F. #{=R+{_Έ4:rarJ>>l.=HKy{JH֐P$Q89ٗr: z Jʤ"CUd~;Z^NWr0?O{nls꜏/\&wQI)}i3(Zjlsj}uwk@WR4Gt9^ן#ZiҠh12T Cd{\/N&" :2'B®)gxJz]kHxJ\z8JpE`Lc\H4,SHRBMARDHT(14<- ^-LL¸}\!aPIuAg!sT0r8[H*`3EBap9of 牐]$Ҥ!U3YC$sL:iZI`y-Ejb= "?Ű}o?OIJ+M ȜHrͼA 3GTFc@1%u#IHd)PJqWװѤ#yDleLd9xRͤ)s<ܿa&Dhl?8Y0=agd% h_dg""MAp:p<)2)'NNˑ5%,`STqK ~w(l5lM?@R*#?P:J# )Î/ۚTv;67FAc+Gy7SZ){Jj%tƒŅd=5[Mb^Nbg2-t}U1B1p-9͂?Q&$aExvE"W*H!&4^5Yo˰%;)ZG'\9펖xϝ9nCNCT `  T90@lg2 .x 5pz :oZqp֏Y ǡ50*#:u vcWpwiͫ7f: R6@qHOcT 4>v>/Pattern << >>/ExtGState << >>/Font << /F23 3064 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1249 /Filter /FlateDecode >> stream xX_o6 ϧc̚K~ܰ]aw{\5V;m⬻o?R$'M]6@BHGR2aSZj|Dvv|FIM C 9} /txM+c-s? I4-5dyN uLu2_^6fQ6~\-~_'L*RX/ AzQp=oƋ;x#qѬqr.C2u AUs\ty՞n81Q/U[jI^ ; (g: X$i4(qZRatҧjuPtj{F :Djtcvt=>g}&h|8b% ݐ١5zJ\UT/-T:+(@35vJfq#;n2>LQ4@rDW$HJ@x yw' taձ^>aȡ%<>>,oY*`  ("GR1:5s !|9jT"#b 78 HzH8)-)^؈6^* 7:w gCΙiT:4ۉ`T &j'O_X`Ƀ? ג"K`+S{夣'?`M^WIOq7P2O@s6z!¿cP}n- bn5c{bTF`UBs

#0Bf5;WBU6Qv#PX.@PD3A͇];*zjhkߝ*E(ڷ-7M;|{.'+ A,6]?@ 0W*Ou׫M]efF8vpot%kj5.nT8:(nXwdR_<2IhSe$G!URk˻?8T?JQ;^Ǟ}N? endstream endobj 3047 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemewhale.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 3062 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 3064 0 R /F52 3067 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1574 /Filter /FlateDecode >> stream xnI_яVn>^WE-&X;a/﷪x|m@ lkή0rKy9`]HG/ψ4:raH3'v ג斴YR Y+<{!$[kGbcS\Ӽº܏>\"cITdl`į'|61reoQ,o l)= B AUs꜏o[̶xg1qr /Y[jl|{\ޅg$ma.N ~;/zx9T񶹿?'U09#cALK -T:+! 3YuIp#7.1#@Q?( %9ޑL#(54 ژN5*rH_ O4& X,(@e")YD - KyZ9jXpT^fD-q݇HMTwOgxM|!>%fԏjȪKJdKL43miZdN/n^^`=&~O~b>p;m~1N5qzLf<g\3oBgQF,☒`rϑ9u2-i%fpf^Uq1Z{ny -Z;Tl3}\CMf ެ7l۷;C-y;:iolb9D8V JַK wh,qH-05ki5o 0.AXYXY%ܵc+g/%0)@+3 =$S#m3 퍑Z#QJ}Keô/(7j/\4AyKqaz rpR͇*衔 "P|\)iVm_=΀KU >H|h 7- 2})N8_ ǾZr|(#y %B=tWͺW2{4UqAvɮ%cZxFy_\G(QIlw/zq3lx|_SB~T+ > ߮9NncO- EJT=UYz '{krɓUjTo1 qġg?MzCE=aJ˷GY-y2 #3x*0#~- + '-K8R!e!r]f;j( Mb endstream endobj 3073 0 obj << /Length 1765 /Filter /FlateDecode >> stream xڍWKo6WZGo)Z4mSwEKV;iyYÁ/I g&&ټJWI'I)r_2.QsoՋHkwۓZ2q_)V{y}(7U\iYU,\כ?8;)HOnt?`mZFn+޸ScxАVd;PtjM56{=]&ڶ?v\wm[@Vϣu"}G=YkH#X`lhrq^I3֌^S&l X"6Î?RJ0/$7n=U$,V>2[p ݩѣ1ͣ}s:E .XqN]5w#_;b̅3_vi3'!3>‹MŅ"T 4jמvr c4V EoN\?Ǫi4yXZ BF¯wGd7PQP ltǼb9/, :[׭|4-sL4dBht8'(P ,|YRj,G/&ٴR08JE?[܅GxbaӉkҐE& qϒXUfibs8!ʟeplY-4QAC-`ԏ#3Ly ^Eve߶ET KdʹV+:B𼞇u( 4 [q !(`X=‹l}Q@!VRPb_aܳn]0ZAq3! 7{_OG{yz͓GKL,p~5)_3B4S,Bl ?4zyŃ9*q߰4@K+2F$#t[Iž"~z ɼs7}; o1:,.AtfO/-B`-Ԙ!t$;$"a3g JXK(ՙ<;:[ endstream endobj 3048 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemeseahorse.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3075 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 3077 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1226 /Filter /FlateDecode >> stream xXo6_G8~$ۨ|oh5dyE uL8:_ԛzQoq|^|K IT0 "OfQp=o:;ʸ~QoDP̜S|~s\>:D| -5vSݭmx#${D K? RX*N|جW47C>ޕMePC䌭7u{,uÏSn_-gDHyB9KvvGfdq@"LP~ -T:+aag>#prb呙 ZrHy\#! gE w'i*:.g 9G‡%*=&&Cl"zw )Cq>5,$*rH#HzL<.6_؀6+cn")oq55"MJ'v&j騁ŗI,d,%'=:OI%Mc29$y."gBTF ☒:Sҝ#iHdJ,d#ͫEd7P*r]oXu&Me$ 3Bs})Y0Xg;JKƃ1y7oNym'OFc| >'ߋ@cTbU@\%̣;'L^SA[@P+_@5kj΍W#ِT uh&R l<4\V'Wz0[ghaO:;?_ri_&ʗ]߬/wU߬J?/ vl 隻]} 0MG bZ{wz!ﲻP):4cG|!`.-Ab󾭻w%m7UAnhBͶ>/Pattern << >>/ExtGState << >>/Font << /F23 3077 0 R /F52 3080 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1545 /Filter /FlateDecode >> stream xYKoIWMו-b܀c`m;ވ_?g2{ Z`U#ׄ1 AgDADXA0d='ov:RHY_m9R/NOI?7Spr䙐DSo!I"8wO|4 ؤ 2IEUZroӲјb9e?Zj˝AsNi_7cTGuF4%be$\hY~$i{AƖ ۏ 2h9Y"pxj|ً9nvq{urI]N ,.ɠog䁄f[T:+XęqAo.G/"EQA#KQRH1JP`HCfw[ˢtc\Cpx<ó>,Rc. F ER тwƔ<5,*^B#n\xX -BwOmg丘g 2BQlpY|Eoh|hZ4mN ^, {&p?'U?a{yMJ9F݉0nbɌ IR7 g(#| DSRWJ9 2/BU2υ,q"̧RYX2%*F `4Q̤)s<޿Ęa&Fhy.V 4"S}{^C7ڧ~]s"ftz @)rI#yr¼Q e?oSj<{|Jx[x\9yEknjڸ϶E>dǫv=.G˲7}g4wM<fѼ5q)tIZǝ5;!Wo:=jj q(3/D,ǬqnsՈa:fAq9ID8HB~4IR ==5%x-kGik_Qo<a\@uT'ŏFލQY/wwyMhm(JTMIw5iDauCfc /W.ØNeez^Tb"Kez9s()U~2^W]W-=QߣZoz%s!qد*+܌௝|waXQ"<Kg'C!^2ߋj$&&N*h c(&+eoj?,6\{ZkV϶fs۟'\^ X'#^4u!n5p*-$t y ^o!\gѸЁEisϭ{9(ϰCO֢>/Pattern << >>/ExtGState << >>/Font << /F23 3084 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1212 /Filter /FlateDecode >> stream xX_o6 ϧc̚[zܰ]a"y;>#j& C }~8 %Y_,.,2ʁ}DSW,/I"Vq ϗͺYw@?.ߓBR&) LWAj}l i(]-eHv5k|9qZ;LB8 *P9oߴ;۠a?g{Lԋ*E%5Y ;([z"C/`jQԁ`ҧjuPtj{F :Djtc>)]OzpiD~ ,|N7Rw;2;4V\ В{-pW2J-%q3β$|G#ep%K:Ё 2j8^C<[ᓉQh:1Xu,Or(f '‡-vRARC[H*FG8Bap:GȈ؂ǍC,ҸHf=k_uqC8o+VOFK2;aG'l9=J'u&>Ղìq6/_X`ɣ? ג"K`+=w$nH3Aƍq2P8$9 ."g\TF5 b:q#jH8pÕ QYNq8̌*R'w'0L2ˈf|:q3ўx0ױuE ^_w =D>>@uyIXbE{hpT]O9iI:"+1*I#6{c %sr,k,B*GؐRΖ+zؔz%[ h`T .eh4:h@~X.ЮF0U7 ap;na>@} ciijw B/, jn+С|~]CgW mdPr_2? z_NrҤ:v!z+ Ou_զvcyYC#,;h>4O;MJ„OT/eBCM.{ń_YoE^>[FrR{ǃHHO7?M$%iy7866 endstream endobj 3070 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugcolorthemedolphin.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 3082 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F23 3084 0 R /F52 3087 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1541 /Filter /FlateDecode >> stream xYo9~#VW6[H.U]`! ̎c73`7L==O@L;ŃLyťrl9e׽OKObdz k?孍ԝ%Fޫ7J3+f#ń]/LPcU/ޱB6tXnjtX}\gid\jz~5]dKi[5c04FS@~Ivs4[DPŒws>AwsZ&B M^/KT@uaAՀ}e0UW^HkUVV!GH3\CQToYbԠf "[ 3S{a}c\DDj|&|к2`]y\)B Qe*)BQ9E"(hLO; Us3!c ]$I5y]-Sۙ]J_YJ'LQlI,|N 74>5B[6dIXޖBQO"N`= ? EÚذ{y&8FY ^t"L\ZQ9"He9RP8ty k,!?MƅV YRVeqмG~SdJ9fʘ})r΁;Drd̿Ř.Fhm?.h)6M"X[vβhį\QM/At: zq_>٬y|,Q lSSdlEXSVUmEB fR̳{J9|fo_Lzn<6NQcQ:jE'x8zq_Y3ʃGr./^kZ+Bd=~&iZ^qpK#N~Z,]pȪT嚅?q?"-#}!m?l_M3C{/ZK nwhhlsv-7Z ׮dE~D"b F^Ni^&KzgC?:  [>J[E#-(b'KH=ퟯVr7@`ʍt_ Q8R0+oNs(T&Hd`5y6PC!(CctN%Uʹ%z?}'&oy'J $`J{xRhY*ͽO[p׭ ejBzlQ69)vA\tc=ioar;&LfVd-@ ێǢ{?\!sTZ1G,t߇NTZU{F+yH r:zH\NNDsHf~((SQ,OςM0nѧ5jEO$ *(Oc].Pɓ,^HN@Zr~ĸP!М8S㿜B=Q endstream endobj 3091 0 obj << /Length 4224 /Filter /FlateDecode >> stream xڭ[[s~ϯKrfH\)$i؞N䁖(DzHx2(ɋX,v77w_/6op|oU:F:I Uy:n&.ᳺv8uNDy|j;-|rrnt25cfTIç ~qso,q^êo>˚D{]o.RKnT\ng\\vC{IXokO͎K.$$N75؉AIaX/1Uiu|;nM&+Izs.IӅڎU@ JGDٜ4?"a)ۡ(D Xv+t]u,l~z TkWd4MR3v`v]hV *PllP7ֱѣȽR,zݮKRvվ<X{c_ nE}h j'R&sq @'#jz/χ  Dkm鹸0:O~N^+ ɣ#Jtn"|I^n q#0* =1`ʲ؂y*O9Ѱ?Fi V\ܐ锱;7gZW`j]nKl,e6:љ{vh`<<?-©hO6ymt?@d<> psލ)K/H^OA~?2A.3ɸS}نۯ V*Yfd4 8`3wYlѕfFsfH]rwy ٽ4Q@98ZZO"Dl^EKT=qD"M|?6O-#ΰWii`ywOUa+7Q!Nɳ>̐9zЌi{)+6q'lڸRwh]vu gh'k{W$oV@eT|,8Z66Ɍ[Eb8DϮ']: 6<N*_?Pd둛l+(=uK~/ z+(=a,=""%uJa]cg ͺ^F4=`;hJ 4%v78dzUHd`4兀O~.Q M7bѰ׿cOe͞=ʞ':/֐)8[l t exfW.&Cƈx92T͵Np^ K9UX5cuSc/3f0~hDv*(o%t>PHA(*0gebVڔ52a JWw@s5qq{D*xL I^upq( ky$_D!$7ul;򨄁^ h Č~?"uM w v/"*|)HL9<pA:q9a]>Xa"$xAM#ثHSWHC9 yY0 f#L?><oM@r&./Ԑ&{䊺J|wO6|6qc{AA'NwWt2<=XDuC9bpUKrQ.bnwk 4]M%#cUUy6Eןp/rD;pe%/UMsbCu3DzD"G`B=ORm>ЂٱC8B7\77bugj5$Ok42I71&39a+kMfB&c=C?xNZMɁ $QmyíUǕ~NFײ3nM*~]b7AmN(ApirMGzU5G+ AT& 9ɆӺ>^4q/b"bfq_o hۗ'޴/CO1SY;3&sfz4҅1-ٽr`s寘G6^sP1x{f"Aψ0FT眱agd)\|UǛ ~OԌ)_pe|eWpude;朗xzp[ɪ4kG7]="HhHIUQWM2aT?q% rb5o4f41n$cu.a2(n R O?p"Nr::3+:^OY~z2t77leXuoi~ dif9o?Q؈g?=!2MUótu5dd;֍td"e(',>\ڶdkej&>\Rumvq:v4CP]qrdPծBEÙ0{>U̙oJIga3A 3ebM= ) 9X,A!&]Rhw"o5dzv!'=RN(4!'[2- ѹ+Ƚ${ w z(XALs>xrR֙!5<_>IGTJ.MԘVC5)D('j]2xLtr>f/4Ft. U}1nrv~fWttI5N?\&qR ]%d vK#vH!\y<0@'g֮b 76-]J")=^l.;!",W% TgdO@EN[ar;͹I.MgzIjpo-pép{56fA󟻚q|X 7P, j+-KyE[Mem Ww_Z@e&;N[>c] sk9H4sVYm[ 9[Hsk򰯥1c{&k D8&/ @cGϠrXrE*2!-wD)xD9AM/.fBgFT95qD[#*-|tױi]7w DɛlqwQ_,A+NL:}!t(,{N8, 8廭N=ϼ*O`·爗k^P W/NaDu+гIf_}RĹ6 m>noKO `Qazзȶrϩf\1U=$q828C p/wF|F endstream endobj 3095 0 obj << /Length 2341 /Filter /FlateDecode >> stream xYKϯ6G"e;:Vi[YYrD=F{X,nOE]l7f~V>|,aIģj;^8}?[mfjrb^V fRmU/U[n Wl$.ɪ`fJ 0-RDN\8JQxZe}ڨ{d@Ջ/. p$>=IRv_8{Ư⻴} %"nhQ^"!6$K*@d`Lq3b}EjVAF1bɂ0>aF= Y%h)dI@~V0_9n}'Ɣ&/wa$ftSY֊mw|O2ô(&l,ePF#NyZ:8\ /b3rk_8v+&z1Ҫ;y!YG 7-}?}MB}( @Yī}rGQ7p-קCZQg4W.W50Mm$j xB G7#_Z:6|fF;X!Dv4vZ/9+  s01WViSڬ>{Bf.hGEAZݳ2<5A@lM=Fnl42>$e$AW ofXʊ?e#S#x^_!9󤸙73ߒ*!'qh%^b-Z2k }D57 f|HK 5 \fTP $.ۯGxdzxςוӉD2Do{S}&pB#&+k|*H@A4yII<#% J¹H.[ƋQM8paj08#_4~[x񋡃i_#3JWG",)N󓗤 _srOz٨^C0Ϗ_12tO뗱?oG8ý,/5UW %]B8(#%XCx-cƙXW՘CR@n0^ӏtvFE jg$M&-w6jtn}\%dٜ[ښJ0orJ1=Ao>GB`K^s2-QB vduĎvUE$1]՘Tl_^ӄ{bWjFΣ]#?_I﫶ؐ5ԋU2]g9-zGm ަq ؜2ɑG o^CER~4?eZ:Z063-5 lO۩c[fMk{s8φ2 Wxd禥V4YE4/i̴@Q 2f׃:a GH]@ A2H پ1>~`;`p.ݾbǒ3n[N6I;Õl 5 c7fYK,jLnrŌ_.=]<מ}#'եA.-n*Fl7'8yOtc`PtwVPwA9Rʓ߷*%9.KڴuZ過кJfnqPJu* i=VMngaSi./f|@GXWIT&kjmMWc6\+=kᱻH=CT;j`DuupO]Qf l ,iغڸ'o].zq;q`=Ox306|tjVkDRAz䕘(t-%@I Ѩ, 7G+g%ᬹ 6-(8Af 7}Vzol$j endstream endobj 3100 0 obj << /Length 2348 /Filter /FlateDecode >> stream xYKϯ#zn,rHAh[hY2$ybdnlgEQ$϶3}8?kݎç/RRF"mfiȢhsxgw7w^<ӗ(# _ *)kvB%q`!n&alWtQާ/<,X9R ԍ6Zԟg2'۫fs<* p% >i[|S~C}VˆObe }n7%3?HX,lqmH+\$1EA'24xsQm[M\oєGC%"kTC*(@G`֊.a, WH|i\τltB]eiPI[ ToұrБz%ǽ|F4DˋT^q  Rg&_}2 fv^{@.<.a"8i:v>t|[z8{%, ciyFcyMYv%+*|Z[eN+9|F˪ʙ) !R>u'?ՖNh0{Cpq:(ʒF5~i܄̱SMѩ|,X<6%e%dQp?WG9:fyMkn[yKt: =$0A^3;vNy=db#x)UʈEՠ~ѡB$i u GL^1Fk2jtlʺ : I$^ ˂*C6rE.6M(Uy`htWLjbp i+U';NkZ qutp8u6ii'!RH O~b~t.cIx?XV&c>5K "C(4Fإ]q(͌mh& ďev4+3䡨ڹ][yʢD?-жlB:q=0(!`}[!& &rK&4/Pq6ҋ5ĺmnݷel!0]K&=q/>~$2u&_5eb9z(L}K0`E049؟LTw9Ms>=?i{<_㩌{ХC9U YI2݇ endstream endobj 3104 0 obj << /Length 3001 /Filter /FlateDecode >> stream xZKܸWahH@"dw{}д8݊bGC4Y|T^j]EĿ/^|J<,4{Q@ɢ(B^UWoBFl~ʮz(ǃ>~xy?h}~wwV9-OFVyؿ>_&2 ,HfU9֠+jsQX$_%s5{_镀C%D-"cD=oVyX[°\?$:%bHly$/hK!dG@. {iQм]iA7D{9՛.>f(ÚщCt*&ɲ2 mx spF.4={VDŽ2y{ qoշzf|{Q*T\I)HZ@_\:8Mc|GB*aqx 8r^w]z 4j{ hn\7*e*V>irwP)&;קŇPNXh?!oϲa/o%;SW̅ ҏw7j.Q k'׾ zcb&V٠9DY$*ӑ 40 أx$Wa,5 YCt(GhC;bV2.35.כohmiFڳh%2ZIhFPcTHwmlYLM)[2@?͙롦j6{TfI]ç9*zAr/<`0y @,P\x b{U=e}FE"H.D/ş(ZgrW~;`J%45*m@$C~\ط5#ܚrg*H?t %4sNvIPY󞄃Azpזtb쇲:~}HշԹo\@k=:4 \LoN+? hoXvcS`h<@jl 9!l;Nܛ-Y0qhAsݑEy̱u2 >-`#s~6˨<~QHlt\"̹ \=dxv8O@` S1B Zz6hO~yyނ: 9*:z3!V˓ K y4RWޝ8^ @\ =+AuKv7o̮,$PKFd\*Ngǎ֏Mg."UD' ,aeA8'CȦwi2e/y !&Y{r<& .-`߸qb#ܓ{M0F- x SQueACO'y"9=ewd'Fԕ6ǸCZ ,tjIc٬++QXܧ %[@$W\"̅7aMǍBJfY1 s={LOubт/RQTgX-a{yt"/l+{H|.`2xܠ`m|p(YDa$>@a*}\h0*p'L-nrAޕI:@ŁH"ZE FfY0|ViTx Ny.L(<5<±p'c})b8{?fێ!z ęţ0 KF)SL-30䧰6l@16aa8d B`J $j^5oitn _/}%iPۀlU+WT<^ X 2eLggzcj*P:RZ&Et8Jmt7n:lO5eFXUni,'EtI#~.M;8p˾U+Ӝ.o--v &-V &>;SZcYǚ0eXS72-^o9ԕM("\[Ų<š22Ds Ql"?!HLP%Sx;)iѝvZiɭJ%4nI@xb gof[% DR2ɱ/Uǭ ^@/Cxo}ϞrIuN]}J "0a*#ȋŬ޽ endstream endobj 3109 0 obj << /Length 1970 /Filter /FlateDecode >> stream xɮ6잯zlH@nM͌/^Kqڦ=4dN.$wOL].$Lvw]DR)L{nteZES6"zk[gR%8#^ޏػoJ fX /cG7WaWSo8P`%i; `͙z޻uIKg:>SPwk8Tv͒B-'iQ TqL"f@e$H'~"ww5&V-,% ` obVMӪ5@7Ki7{-x|$tkh1t.A؀ES[-ӊ0*B{S3D ؚ߇ILu3EhfJ| GQ3Ǧ>MmbLEL$/f@Ku"dS: &萱t"o"b9j 9롴#G> f`Gx,_nnzڸj$EM}Dz{i#Y:s*mɝ[$^4N- tI A/rRgo6Q$YǷB7'm9K/6,'3++N¶<5}}ac0`Sj6 H$YI+e0b߼LgWy$2X!}iǾM7%So4GGDyMQԳɵM6<*E|^SRSEUCEvh-vNm p\QR cW(xWw&0[$ͩ҄â^f֎*}Bf8=!AL_q*rji"<&w"Ɏ=\*Y(ЎTtGS6̀9&n b 尼]zKj@+S3&NP\w^us7LwZ(cb{M6}=2X*6T4x5yMT#U)%laA E.KW!9Ol^\`3L5mCMʮ=*X0%Bœ 6lȡLO?6QyQ88@9 :F 7X ќ! AKC69t86yfs0\p []w葐݀{˸soyd]ͧyЭ5@856:Q }}Y´"[ojP{J(<7{br88ѸUq%͘1SL4aEWJR*#+ܰ5't7$yz|lhnv (/> VcHiP9teA^X~\q3zegz0tu_[|8{6 H|ѽ{5N5Hl1$zmHBzŷ&D6j풫JJ+rnKfo7 ׶iy4?? ʩp4@f^akbZ;YG%wMntڕGW6{"ogEΟ(AF|=r;/Y_gk,T;Pa]`,{',! endstream endobj 3113 0 obj << /Length 2171 /Filter /FlateDecode >> stream xٮD_GGj\+BHڪ (sIb%xUſs6/7P"^33gξL|G7GOʼnyYnKR'QSrv5߶Um~}NXUBh/2X",= elQUX&Zzh')v? ζGz0JK>@ɫO}>L/MEg* nngaO_Z|/p4ÑOތh&ҳpM` }=)[|fq&ArlpQ@tl/@F"AG=o*|ȓn`2A &_)M}|ngBOt Z66/Zp!-53f<3i͈`ۼFiEĢX~/xN 1:ڞO hDX`r.&ꎡ'P??lz,s+?xT.0F0 x |%U*$JVzņ)b n?L7 2)!vԗQyBC˶CYU>T^x/v~n;p@I4^.$}O&rOoʾz?`k$,(,( SDQ ? X#=Bka`{l0V5d^Oaf9Ō96p7 v@9A.̶ω N}_w3!&aErlPȉSJH l{ke mG\BYA0 @?PG]g%ᔤODUӞb#ycn{h3Rr8&L)t"K' Tv2ʮ  p\o٥>$ri뵖+'ŀ"Vb\w22|'+} ~(c7Y0*XͤrC$t= %PuŽ2-@J#`;*`(́FSQg!7BTV_\H8^$ p Tåb| cV¤UԵ!awc"FNRH5l2 mar[ÚwUA2' ~(qݲ"¢$6>Rb*ha-(jpRVXDvZ.˹@KĂM7Y$xS^Va*EW~$ 0ep,f8D҅Ё:p0M_7aGb5D$x85өzȒj_j5iRoOå^Ao?Z!6K&r `/]3n2I)t񔫺c!⿌v:+H2zdk~X }h+إE{h ܜ?9$L<ӋٮGO endstream endobj 3117 0 obj << /Length 3018 /Filter /FlateDecode >> stream xZK6W iF|J EM\ 4nDR ok^Eb_*> ~h^}dˌ0W #Y^$3ſ\v6?fSݮ}k?;CwM)ƕnj4B oڅ$g&a\A#&ƉTpOx:\2c$44 :j-,c^mQ>6Qk?D&/-蹭wh󗫵e,u[fu@w4ӡ K\`5y䰑nc0-{p-=#a_Ƶ@!Lkz慡RFm6U^HS1AvniPW ҧ 0Q- RvR m]™m͘c9pĴ&aY9HRW[Eyy&U˲v(AX0gGc*)9+4H}Af^}OGG~5eeD9f KhN\c&i姲#|uZn 'c#+}u~"7qS170n^,Bdbe_%{ńi?o|_PWG'[v^49&L:٠304fbPp:`ؙ D29uQȜs uc>aߟT7BD?Sof+_B8գ5pIXwJkl$#K܅>9ڦ.놚X|vb)_'$xQG=B`.`ayz${,z@ N3~9|@q@D'$@yE֟M-seAKn\k&8pߍkV]_,c2܅ ."kax0_Fݩh31X)y8ČXL*1;@-!@sc1$p)GurSds:k 'Zi9YYF *<1C`=`&jCxppDij즫MɣӇKzZh[>5Dm7+KƱ?YUw$~WqA jqbM՝ȗ8 P,mo(b&Do[Rк  0x<`hNgWt-đ$rFqD Ce]mCC ?ݧ"xp\({${5@q|K8> o~D̲8$Pmeuu@#6#{oD %I`:VqR*Izb& /`F5d[ Ѳpt?"s\xY"gl-H/؝L腟>8~? +3g^5ow28|лʻ o9Q{0P܉dXayڭ~eE, Bov>˒X7ޙ#fSCQo$g-G*ՃC:4h#84=ͽ掄 !p6`c`FK,%䁱h{< xȷ9MO7CW93l IV3 *8;|Ɨ ?| XpRRrMPV0|WJ& {-5 grIZ(}/ y] ,XDP_?U?hjXa? B E[[G=@7e j<"qqŵa4He*DX_[&!v! fK uI"MGU!¤8nTQ=xEеYu o scܾJ#8{TՑxGcK8҇țq+dӄu$*,($U*dE04![54=}J_ D_c@}..ibP56lh8\6^NR#ml/ 5wQ+pq1$C!d‡elQXVˮd(R>#f `@i[?MoqUPADŎ~I̖|˳ыr$/ez6VW;MXJ/%pA $vM Ѹ_hGqƼƴcܜ`jUI5Y‹9vlZ(möYcuĸ#䪴;v ƃhEY}0NM&0+EW,j.FHQ &H_5F>^RQŮ.h5˺qTu5OQ4):+wQ|2-|zYcsFe-`3 |/e(0+t1C@}ƻ;u7EXC*<.@sLkK9mt&]%/W"~w^7݂ sgL nÒvs4`\Tz1.V r 4şqx~g2^ l⥰[/Gr<Ñ eHG}h6mUFotGfGW}mwLd_VGR`:sEbsμ:cvSGpO/ykZnW My;a)񝐤k; 0Y=~۩@: pdL2߲m6v쮼hZgX*$}e ='dOW |f- endstream endobj 3123 0 obj << /Length 2730 /Filter /FlateDecode >> stream xڥYKJT $.ՙׅh0Յw+)gZ]U8y;YjS<%&&Ow]$"WF$͢D}I4sbwe\iߪ!MbwzЙ(m?O> Сy"~j:֞7F<>|h^߹p܌gf8U ujcC.!Qq*!znÙoq&76C L;“G껃-/vָ2˴\H >y}UG+'_Q,1 OmGUC: 'N}l\+ h",D=j-gh=8ꃡ8HWVu,,5SHH0& ֑ɕ`uM'{̓O#V<8Kl~\ɢhP(3>h_ɥoCb+FU=kSMd=n!^V7IQJC68H@Cudc]#!Ib`QdHZD8YPtџϵ0P|QL=6BB_#!GNڅ68' {x\lk'X9IDt[ƏɡvOҴ w)vbQrxGRhFm^Z󆘁'l桕%Y^|MGx{ߥ(cH08M4 =vI`C, U4R.gj(slŽIY[KvT$'T**b߯g~fHhyNbqN?pTM -E,J`fTTJէ_婭Mܕ+e'j&q 4?^~ͯx>+3Qik;J5Ì}FHɞg !N|=4 q2+MK6nB\sK9ј|YM'e\*3į v tkWx6 nπrHSBV'w[6L!ɴ!р8>N?mAhEfX\:m+s2Ŀ`\t:|q50.6Yl48P/-cSp\ )b Z bPdI`!Q*V6Ɣqqyl!$Ԍ8VJkQ4{R5o%Jbqko뮮0KfT 8rgP֡Bi}KR( AbFkMXb{$;R!d 궅Ma4b[[=7or s 8jv0FW-g^U-/* #~>goh qrVf 8M8oK.(Fe ڱd1Cjbs1+ܖrO`$b)hNϚ j/6Ze64컚,wjJ1jRzA/=_cZj頠snM˂PE쎲ϔW :  FC4};kţz6¹쪙~D8OƱ`825KY<Һ:`ӶL( `DRN+jU3ҥN <$,0^7=P:컊 ,M أB3ljnДq)wTݼ$^?|c; @<$S Z߹o-f8H`eȖf@qs0JKx3Ük˚2>=BE?9XX_|N]~z כ rk78 :g)Ї2_{$υ[C ed{Cr7t3#,|q?JðhGm v3僙ZЙ3b0HU3ch _J}@eJqVdЃ1>Уo=.,\һ EC!s@lE>TW24K`x$H,s0Ukd>!&ّ5h`,6.,s+4㈊x}y:ˇ\W\# >G8r=di7ʂ=Cߤ5k~I P*cY&#`f糼YsCGr:=v4e [A@X~xDsj=Y <=OD\ [#e*&)8u%wjIyz7`a5z[mUt=GrWBzl8@gK՟ nW6"51;^>=' i97Ϗ1))df{Y`ի#/)W !GBY^t 0 endstream endobj 3119 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugfontthemedefault.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3126 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 3128 0 R >> /ProcSet [ /PDF /Text ] >> /Length 975 /Filter /FlateDecode >> stream xW[F~ϯDs\AtSz7kgq{Ι¢Z|ߙ[$<]GOW73"VDAdh%)/S d ~J[cs.-AIDHEsDRe Y2 }*-{ 50N5RJYF+Kw0!7(Ht: % kf;n=gQin-{OrʠJvW4uF: uZH@r-"S2 C|YoT"}LG@i gX #s&QEةls&V*q'0{ah˳+ƪػy&LV/etXw+fx:/ߺ|Zv endstream endobj 3120 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugfontthemedefault.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 3126 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 3128 0 R /F49 3131 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1360 /Filter /FlateDecode >> stream x]O9=Nqzҵ:TUCHDؐo^f!pHxgaӀuW5~ippFIM C\NwIJ&?-4Hi>u@ !IdܑA P&?:* 2cz80JI qgdpT_#aقlIQxx D$I5 N w[ M:zm)-sg+@`}ԁ@ V%Qs-Cr5,8*b/  z@I%~~ +fkm@!Q"1_b4 %fiKrOm.-XWt8=!pý}\AILN̋J"nғytkxJXx8ĔyyM?kW~ww,jH"XR*#[3Eg dN·몮FcaM\yZ_UZ\vyQգ=(1Z|}w[חs6GȳB 2-EºogFY/6z]F;C-N ӎZk'N m}s,ux܂;8Bsu\b! +X2ڦ_7(<9: EF770j0f+[(*^Р˱! D(E_1Mio5^Ǐo {}cE~ pyJ(u\TGamooכ*׳&%SE5s?0Wrݧyt~C`]&Vidx# 0SAoP[>T ytHhxML}I jD]<aE7cSԍ?0 ՛ޛ2{x(܌ \;eB05zHlr]h>(e:F%? n?m<3_,.F o߄fZIzzD8Xfߝ*b<\L/`J߫ö^c̄oj|F endstream endobj 3140 0 obj << /Length 2587 /Filter /FlateDecode >> stream xYKܶﯘ[8U nIEvCbo),VT{9˕Tֺ'fFM&_no|MYmn" (J*WjcP.IӠLUnor(A*}bzd#3.V*,tYI=%9 "b9CnMPf5㾮][CIYĀ&:u"Iƾ>(-~}"&B, L[iJ]LpYl]ZFP6.nyv08kp }]kaZfl;0p]7YcgW+NToa ʞ<wt 2OQwI}MማH47adQ\]:qSIfa̞x`'({s1CXy8V>Ӱ:s5M|xύa?k5L/0ʶo?PcW&[%6N\埔up4 u8:2/f/X"2jk [ e;Z#x9//RQ%fTw O4Oxїy \犝 9;@)xM릤]R73M\+38{h |O:70/H3涘JTM,S螿y{hn"Y[/Ii ]`*}QQBg7,} v8wlh{>wK "R*y|4 |V,{L0"1r!YTs5G> Ap ,DF:IbxC?0jV(ĉ\D_8T#E}}4wIJ\ \ 륓"]%X#HKǞwj Cᮇ([[WBdHmȟN~g1m<Ѓeʖ}IRH]1"2òXn̸㜤IcxԤv=i<Tе3^%Uh486q{y/IKQ6@_q ]l)-VH#T9 htpjqO6$I2/Td6]z*T=rJQ'phKz-Ys=Ҏ)#YMTq5P?*$M!i%&'/ Żʃ15oIzJG.UN(0p%S'\H87X'aYHKJ P5TEz~qF#+ L$#}ߍm5I [_<4P/c&+ %ݽ .;@"jdHEfHW޶$ݙ撠k69R(!*7[.@.V/Hmǂ{|quv c:q̃(p:)(@ ^D"".s:{UL/9@ϝkeWÔHJqc$=0(|KςY)#xtP']+QOd3ǪƧìRC~e<>/Pattern << >>/ExtGState << >>/Font << /F22 3145 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1036 /Filter /FlateDecode >> stream xWKs6W(͔(NL2m&!큥iS)i}viufhFZbo K[R>"y>#R j"ʅ&CC.Vo>\G EKd=s.- IKkHݭn9mYE>TThg)!b|FVoP˒"K ,]'K:2*8kf=n=\1Du_z/0.HW;µ*r-r$S"#X0,iefPA-{ܠN8 H~:3FXD&TI)hn`rLYOs+Xxy Yc"RX}>I'H 50ǴCȒpaN#VC.'i]"R%NsD qԉJ,}uf4q'쒝`]eRY_Fak_'d9|/i Oh+ZX:"/9O4 |ӕk/7>+ƓcxN͜4z,YyVI7eޏׄ[{!K(x﷫oSYjA8jTI,-ٞM![8jOհv}x=$ ߶/%4sc`x%Q»M >ж@f#CX\$Ի96n6Q%5P4T&U{lG]5UV”OPѡ) jowMWm}@~BXRq4[O7Ka.}$abQ^c3֢ u7=r&~B N϶ؾ*pwA eVBj^di[e&!y@ms8^⠑P!*^uǻ&C; u?4-w0ȀoX=%+;>?G endstream endobj 3134 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugfontthemeserif.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 3142 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F22 3145 0 R /F49 3150 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1372 /Filter /FlateDecode >> stream xXKo9 WhcaU[E$e{+KI#i2?$H-hDQɏ"2rCc:?wtF E&9n}"Yߐ6kᏕιMĝ@pԆ*!ӪwOz]Hl gAFKv!q A82SǗwwYe$IG,P<ޒ#Q 嚀a(ؘVzoQo't'uPZ$ImKAymE)ۡYY*rW|ot$ѥBzUg|:c4\աm",Fڈ$B4I& K9InoJ"Ŵ_ ' '9w 7~c`׎TMRP#D^h_3'9 Uu؜H-|L )H<2~Id93|Hfcʔ|ry3RnIQf!_Fa:f Z(*)uY$}ۧ_Z+^*}!?tB8L'OaɻIx1 -zv.=[śVe.hb3w,ʼ|?]&28PHtQ?Gy𤐚5bp0G3r}!W&_Vq<^o曇H^T5m5FgG *X괖^FjiQz|:J+Vܸӟ϶ӇExV6ζUH>:'Xpd_RwH\FѤCX}UT? 7'vWґ1"7WR:t? lM<,|N@,5=H+T]?kDfWdn|P;Uzx7%Xl|夎w:5_'#uW)KRFjك<f|˺9YklƝ!P-T)],{=+4t7Ffv$ 9 wޒ (GOaJ3}[/G"M9l ,C%??6Z endstream endobj 3161 0 obj << /Length 1475 /Filter /FlateDecode >> stream xWK6 Qgn4--kNp%LUicC Dnu^}6v UUā2i1x>,9㪋%2RoA#၇"!^D9AJ2qт#Z҅L*"Zmu;ȓ׶csgJX8W5>Ɲ0]bjG"ԥ @ Y6~_"Oy0]ؔ%M3 ;=xC帙M;Jrpˇ_2ygUnØsT얥|D92T1ˡv|lк`gdI lH֑yI ^yy#2|*>׹=u4t$A}89ﻶt໬tr^bLM2U=}Z?e 6qG30Ui`R eǓd2e[`/r~K={kox`A.id׉e T1.8H <@0Jw0ڬ ۬ZѻřAgLRXH[brwEfI$QT>\^=iDO^f3/ WG%P2uB%utz{ דL>/Pattern << >>/ExtGState << >>/Font << /F25 3165 0 R /F27 3167 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1055 /Filter /FlateDecode >> stream xW[o6~ L//-m<ۃ(0KNdy]}!ERQEV$ P<:\H1rMybqy:#R jdA E\} QIuLnrs"Hr p"dN-DhR[Z ˺*)' V3JRLYC)Co0m7ДSh -҂IUpE$Ǎ`` zEsCND VK[NS r-P$c #K$D 3T1(BnPt $`$iu} vF#TLA1j`R̈́HINS-M{yUkȣ$6Ɖ}(pߺiQxb\fH5*$p#r(! \J}"R#h`=,[FWы@nB.I]I:LSAe SCs})nM|@ֲt n/b»t 餏rgkO$c<5&J=Q|Ũ4ŧoǻ#~ƥ֞<{?W`*s%( ]CYr$]כLh~u뛃_) /כu}~YjT{p[O16ͥ7)+M/}yTI&mo YC[w];înˡTpp^{#u& a\fBސ!{j"]Y+~9S;zхr.-6__lf b 6D|M(>Vm: =ُ,r x8p<+0$srg{JZv  endstream endobj 3137 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugfontthemestructurebold.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 3163 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F25 3165 0 R /F52 3172 0 R /F53 3174 0 R /F27 3167 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1380 /Filter /FlateDecode >> stream xXKo9 WhcaUumAQ4om$b;/)x&AlG#JH~I+ȧkkSH#+(T3r;fU#Ф"mY)}kt'B*'*gdѻ#.-;M2:* cz8JIlLIZ2@ Qx# Ha@$аZ `LQc 9e`%{ VzX,um" ?"aʐ3G @݋DHot$K!Hizk |o}H#6" _`4 %fIhrNM)8-X\L,,f>'{?qo%D~ \ǽvj~ø9$5$ps!Dey>8Δs$ id ~)%@Mg$k(Y$b˔ ryRn¤)s<_Fa&d X(: z֬IVо\E/B9DJA:8\n=yRˤON '$nqoԓesxJ4ʻxcWytl]ezvh5]ߡTf#uz>[<)dt ᭙"BC )]Ϫ`(U?l}_fY\̪-zcV6Venֳ5 Q1T;L܁M7yxZM6,G xI}Aj ѿF%:>ĝNK%@hQ&ɢa>l92,㇍s\0|qGRABnBeU7-G@CZlԼe ͸ʡx!r<-h14Kv/'1'D#_}Qx(?:ډFy.JEHM 6X괮o sMq) onoWY.ϧ}u:{$ %=->%'߼D+a o$A64q%搜P+j *6wWa}WAġI7uǙBa kq"WC#UOZfkPZgA m!zP5zЃryuyNM L75anXX8 :쭻Y}5c%+%qށp8o֫T?^=^j6ǝn 5Tڧ]=Z )% a~JhM;mIV6OJynCH _?ՊǝQArqm>PV|0/{5 endstream endobj 3054 0 obj << /Type /ObjStm /N 100 /First 1056 /Length 3111 /Filter /FlateDecode >> stream x]ms6_U Lg8._Zm6T߳ Pʖ^SL\ž`)Z%Fz:; 3$DldAIͤLjO,u4SN ÔwZL15e=3& ml4IԔ8saS8ǜs M,>at4ZRKY"q*z{Ä M@k i=hKÃ9J0)Fи "Qⶖ:9A` , )ZgPMt4O)h4 녑Us bpMƦjw hIe}A J:MEuڔck"ZdZ'* ".IB!VIb'pE+x!AI~HP .RCsPz MN/08-IOIR`\ @- $IJId )x12.tXPNo hN ͔Jٰ$xK"ZF~`4i.hV#2P dқ<քV]JXT{FчY>OE/x9/\Vnjh&ٗ%;\*ߌ0HL"*I^.GX'ca*Ϛw_ kre^cI,o7"2~j<΋gLJ$[,hf7]^՘1DdRi?cݓ~"}hYs^{uc1NڲLW˓&\RâY?:Z4S_ 'UqAW/:d;Y<[Li8kMycf`d RX7%t$m+" P\j%\TUh\:<%}̡F3nl:>u1 &1O:tCQ{ \~ު_SǦ:4^+h <ܧ0<~ߏs%xk%5̐wV`Ms/<_LA9Nv" p~ށYYĴiH>@+ϖy٬UKiɡwdivv!'ҧVDpJ4%;mWaf@ ,⊘vie>uQ,y$$R #Nee% ;<ϳIΜTP7h}M;HpW <% ?_.βj9eˆgP|8tj|Y>t7eSz~Cˇ1Yob$#z~Cˇ1덶:h|鿇+X>TLs9:K+X>TVG[[ˇk|(;v…8ǩ}J㠚{*7W'+/^u[+kK;b;4dw)EbƩ!57J !={rls>U;qnכW֌̢sSF\BwH+8| nKF_調As}/8?(u]7X^PJRJŢhi {^,"uBWaMqpAK)"ccIP~<$_G%D?' ~ UyDY.-n얅6tcw^bn.dlܝ Λ=8oǬo#?+w\}8o(7ere!],2N,ĭ5C_3ۣC_@eXƉ:hw(y-*7 k7X΢Tf'9KMüU<ܿSf}bsSZl>X+# L" iqXwibM_%-pҦuW[*f#cIuU>!AP|.`=tPг ORmϫgidӘM0F$z6+ J‡aLՄ1ЊV bR|؈\rYf;)=nlԞ֥cf7Üxr))]Ε|Yw{al?n~~Qi`<ޔG?O&Q VTboVo+vU&>P#׎+] [cTw*?;B}/^@|/ WǸz:ʏہ}tOlm~vpFW7k+ֹOrjzxϱ=f.7j endstream endobj 3154 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugfontthemestructureitalicserif.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3179 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F27 3181 0 R /F29 3183 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1068 /Filter /FlateDecode >> stream xWo6_G8~t#iF#RFP'5VP. ٶrSQ5~d{EYi|~GC&hr p"y"r4,)㶁+#AEGAcZoY)!4b|NQˑ",K ,)Г#=@$I5P K owgIh:!g 9e%{,|z+v :K뀥r-q$S"#X0,iaPQO-ܠ鎰8 GH~uX+N&s$$n(=2MFg?ϭX`ef3+a? "ORX Xv$mGȚ k 0όGĒpa gQFu8ΜtH:9i2})-5|uHf2 \g;%s-)SeҔ9_F0&4=7ć]w,N{~ޕQN#Krɋ,R>/Pattern << >>/ExtGState << >>/Font << /F27 3181 0 R /F51 3187 0 R /F29 3183 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1366 /Filter /FlateDecode >> stream xXKo9 WhcaUuؠ(ǭۃc;Lx-Fd<~I&-hDQ"2rI8`ݑz8|iuRa՜\ 7rM?Zh$]I.SK gH%jpG}HlJ4Np 0FP鬔Dg1>%cH5)e“@RDIT(rAa.PxkcbjoZMrJT Vz :K뀤``[H*C8O.H0LnQÂ"w [A82GH!~~50AW}?cH+W ,DCdiڲ$ ,.,,f}&;p%D~c+vS{8O$5N5q39$5$p9`2<")3%IBC¡cg PEi>Z$JV30eJb)`~DʭC7ipg 74}'O3, Rz֮IVн\E_Z+s(>gt="8\n=yRˤOޝN‹I"oԓetshh[xxر+ ͆qIXq6e|;;ڣgQoBEǕZDy"NQ(*9[OjY3:[WMv|dH8ByʕB  oN]-sǭ8M eįtl|A tjHr9D= uoq.cX|7zc0hb|胣{`5!}>oOc #PxZ7K}7NO I;V>7gnJ AO""rmqpcoouo:mx( &zqB+aU /B6qH+X55ѯ"ժO0C0ǙYy7nWK,q r{_hVuBR!^µAw&@/ڮ*-Seӯr֛> o2_nn7[#׍G ?6]͇ա/P3IWfZAkE4IQ8T?NeGW=>pդ7QXZ;ḙJ_12?rVT“XX. @inAs?%ABV> stream xXY7~_1=3oD$PxN{v;1Y(=U.slVBv|U}uzjO/~`qX3Ÿ2YH)?QjЄ5}S:p^՟5Q9E"L_Ge5y(*\_H ;8 -@t8e@[55}XO?IVo׻} 8Ҋ>WTW鿓܁WoB%z%m D3$TK h~ALN6Ǡ4jkK+_QDAhOi󝛳5 TcE@֎۪XquKۇ7SO@U33h"XYtn0L$ ’_MF!4?Hs~jis<> 6XH}x/Wд`2xV^׾+¹`-0d*uXCkơ35 ()Ɓlq$ L_fƀ_v`dì(qev?> endstream endobj 3157 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugfontthemestructuresmallcapsserif.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3195 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F29 3197 0 R /F32 3199 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1220 /Filter /FlateDecode >> stream xWYSG~ׯG*;x!.)?$yP0"}\Ƒv}20r8b+q9}:#& ʅ!%9}rMҏl>]!)oÏS(KIN0gH%n06Pw|!(0ƨqJI0q132:E)Gn6@RBMtQKy$հJnhx[ L}hվ[CNx>C^ u@Rr-S$!F y9jXHT2!CܠHcHJ~y`+vK/ͤKNdj5=͠=O}V_fi^Yb+&^{*% UO8 ܏|?`F^c7xyf<2gk  \(qFpQed/ ") %92Bg%Bpc8C_+2! 7&0M2HfBEgZuOv}Q~QՃg'}-z MUVHٞ" %nR)d\N$=_m& , endstream endobj 3158 0 obj << /Interpolate false /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./beamerugfontthemestructuresmallcapsserif.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 3195 0 R /BBox [0 0 362.835 272.126] /Resources << /ColorSpace << /pgfprgb [/Pattern/DeviceRGB] >>/Pattern << >>/ExtGState << >>/Font << /F29 3197 0 R /F60 3203 0 R /F61 3205 0 R /F32 3199 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1551 /Filter /FlateDecode >> stream xX[oS9~ϯc1_ X,KX$HM/I3}r)Ej|<=\ #Wë FP'5VP. Y-֟5RI&S'v\ ?Ny>vr p"y"r̖2m u@iFGAaZoY)&4b<&ˑްLn IQ(<ɑ%@I⟱M_ȢkH— ,xCiѴ$ ,.,,1>?E~aolGy&)Ww1,`̉$a gQF qLI)H<2SOD>Nר1b~[hi+͛^Wj}5:6]Yl9WEާޟAث=ߓ Z`4'TNNe1ʛ#`=^; ӵ# }π8Gza n_֐J[ӆHb:lZ#;_^f {z68.vqاGzmimwo˻[ 'זӋU=O/iB&MƍWn2Rjb "_,ĸ o%qd> .p $$4frS\W= d-*+?YOG endstream endobj 3210 0 obj << /Length 3672 /Filter /FlateDecode >> stream xڭɒ-`elERHQʡ+|MH=o:f$B il^?sUob;`?nMB٧iu S$'fTj@0 @C/"~8 6oWU{:η}`"WZz9OQ|]MYSs"$ּ|JKnnlg=kyߑjC"; 0%izE9&7u;p y/vQ7_=_ 9)0 2oW5EMjGnsR^&,ˎI+/+YE͊q]Ecjڀ@j{BXX 5Ow|g Q F_cFL:͡EE뻶I.Z߄*( [l@#H.3djn:-l(~KvYM   _-4 PmycnF;G'$9ag֜.O=!?_͚!\;g tnfN`{%e&t0UIb;Pޓ@ Lf#EvHᕞ6`E֮<]yQBUۂ*Tt ,/+DnhJ`VY tIPWr&:= UNp kK< g0+Xq6p6_^qsOW6()5Z;dq$ . Ůl"xOw@0sƮ Ij9 %G;s4UelJqG rl՚ Z& n2300_ r*C%9srb8 C'5g!Fsb%gc$޳P/Z B1wPP n1®Т&m)>f׽A99-[~ݫR}f5R)Ԩ_:F5WEF n&Fr6āٱ 0:pī6GSS '1y͗ Z%wkEs~_ri݃8I>?(ȓ5F4`5vcU`͌>'*^!۫7Ƒڍ@ 1v,v'[i#Hp.͚nUɦ6\}#emC[5m-hECg`6k Ԛ6Bi632{)O|%d6Ur̗GGxPqHx7 {!S}$|@Eۑrl5`u! LIc࡜@eZ3x^E )MMZoC?U. OgS S,x OK=!h|Z r:btpR:4kAK'ă1Dh({6pMh{CD3ly#n[ S BkI2Zyf'@F k7Š 'um+z,9稜nfw }k$S4YMzf4"vp_Ayhxʼn9V&)yxW`X/\:`ya{y7 Ld7 /cIDŽmAEU&\=*ླྀ].ѕfG>(E: P@8}(&B;#*EptrC/I@sͲ/$7As!z"y٪gCy endstream endobj 3214 0 obj << /Length 3229 /Filter /FlateDecode >> stream xr_)Ork]J*+89U\ ]mrʉ3=====nV߿Q͛ަJHٯRe*fZ瑽hm+뻫͒u3aܴﻈY@t6&"izfۇ?ܲ[bc|Щ .}&ė̮&av[ݑA v_ nWʵ<雥ɓ(ym]ˬoOF_A]m[!1i5oGiAzdD|:]ninY7HQ䈪|Og,)$_['@~`Jpڀ%lO =AZ#%Wxkx+\xm MGs~nՃʒ(oxC ])h$!@OɎ4#34J5NfU Pֻܝ\U=@y>K.˒*\΀eM1Y`SWufÓSyPe-=2xVoqc{烼dorW59CӺJ+FVF[as|8)"  P5;Vsr-{_|,QTF6H9`DqTʊ`DT]Eq|s ^ 烕Z|Y&#>Zuu]{KVSĀ堝>#0u|E$G ^O98387{'AodIH8 (I80 cq Mz4719p;6` f#e?55&Bq!^2[s-``CGQGNHx׍83Is;b8>>HCHϾaW8^EU%G5CX+o+]q?'7'䝤"O+l[60)u{HKA2TpА=;Ѿ;2E-7A`sq,A-@!RcDZrC.E~0!`7rGRxwbDN(O( gdDVaBg w]QSҀDbc&|Nnc2Q.7f}Dq/@<!Uw'!K*^**:Nhp)I8XzbX]s䠑cB\Tx'aV-̇_s$OUIE &X[(GM8ǡFyжJ`1/bX1$呶#rA{4N`֌EVF咬 BSDG@rSܦ6By!EP!3 _ϔp a3 OHSXQ.+T]yYFxY6 PGMj)8~K3eLixz X!Vޛj>\L Hwn&7;uh~IOSj&  M@18K,R2ZQ&Sc+rTCq{MiGetpUjYXA7Hur4C xylG~e-XF+ SSycMzA8J&s~4z{kGy<2Fzyp);Rf\L7Ǒ8klw[#҈<g3"lD7H-{j%g%rpS:~j$9KRn]L _%t&'͖RFv0Rba|81`#s,㉜(=́Pug g7Qc`eayi?)OdƭXgJ%"ISm>(zQۈZ$ͫ]B.y+<`??|WO2TGp2L%Aq-˱88 ݮ d</9A?z n%N)RܷlNey L'mB])JgUfT8F:/66lU1(}OYқ uizg5j:tyҵ^C|Q{wa]rVX2 ۿGyCQ1[:d.=;9P|n4/|Z) Cl$Ų׻9!W˜JƗjPI/֫Fy%btDG_ T?["!}w?cp! endstream endobj 3218 0 obj << /Length 3207 /Filter /FlateDecode >> stream xZK6W*e!ă xakvS=PòDHP3[E@4n ^Yċ?}&P C7_}J*]DXH2X,o_Y7&% _hp[Z|OQVD^wCQ-2'\i2Qv~TF]S)/vF]Ky5j})e#R9XxOx]~M,gm]-UubZG7ds&Zxf>gv³GYuWw[fzU6Av[@\n:g0jaKuF qPnD8τjLD Kq>jj@+9/ @zǃ5$èo<*!e#8dM􏶸=ze\^&JH23ek ,~cS5{1C1NRj7Myh%) zvLﶮ3- pV!%ȇzX.hMqE&;R"QJFLHL Ib>胁S ~Jf T ,hcSmR?jPc᩷3{q,ǻ. z9ùX('/爍k{hЬ5h dB۬?̢bNdrO;z&Ec.0Y2Ul~ZX;*>n7F-̰w9ZS@{t2:rC\lX"5W`عGskef| L[4zFZJ7U`Z8j-@w.D6`#UXkZm CҨؔ[OR5UTsxP8t~E2( iaH`{ +*AG7j%Y D Б*b|66¨^={p&=$&'fcS jUtB}2>xlD+WMUjӄ=WV$j* #{I'u!Lx ?Z8(qȲ{c?$<~ZJŮmy¦U?=[9gc+{łS<Xjs1KA3!fO4ZN; SjLT-YFk6X":!j cKߑ6En쎅`Qpm7D(ܖ2+Zfob\hnh& (dkO< L#as &*}aUFg_;"|@86ExXlx v?wB|,\y5/! tpy(CߒzU,C[|JCS/[؜+y3{DƥЕ$z<+Jn%AK>ogKy[W}膧z@.p ".+mrYQ;g:3-lfFA.͛0|~Q75r4cϦ<6&ʨ+B]~M,NOp?}*S(ravQb`ɡ= ZC1d* - }g]:NХ! C%V !'| ?gBI&,w@JT@8`)vv$Yq?4|?.y0hʊ2NUѩp)ʜpeƼ)$uh7 8:(3 BvjF/s9D?S@(`*\K͢KJ~Bh+i (L eb +\>φ}!HPq/dυ6wnc09\/қ~϶WE8B89 B yĹs@g3Δ]80XX׻O~6ۮop!u>vA K9Up(|FKͳH&c~O endstream endobj 3223 0 obj << /Length 882 /Filter /FlateDecode >> stream xVK016Yq^A, 7uiv{vY\{7vI H(%+hXEUPiiX_ÏQ\Qys}ޙQͭ bʒhJ >~&a) >n~Вw-: ZUE+"T(eC4@ryx>Fɉ:KROePL9k57J :C:qgFA #VNɸ6X2huM$[eYsq~5SVP@K R&uc1YjEGY>ot`7ݴMی4X3uu|#iyasf>>n4дjV(Joyg{@sZ*U@yݥdb'AiZ&)܇myR1*)zVhXj9 2K()M+)5h>դ-h'ϩ(85JMY ?ig į DU)AL[i]>EΠ]ݰ {5:v0hDk+@t;%mv6}D˟ l@Zٹk^k82C'p,B 9?i H˵vhZ|Ɛ.p gR;gKJ\K4#`.n7Bk޴{3F4Ӗ~:ٯ[ JwR6'ΡSx.;㉡]⃴d̜NmJۗ6Vt9 ;yct[;hR,*ςUp(!gZW?] endstream endobj 3227 0 obj << /Length 3216 /Filter /FlateDecode >> stream xڽZY~_G0^aI ME@KԈkTH㉑,2jY]WWo7~E+e}c#ۭ"*VWZmWo<ެҡ(o-CǺ[nܤ֫OMww;R?tV~e1~d da7?6yX,Z}4RܿY[HRpG&癧#Ǣ-֧G;P6anCyN['nذCE#]= TȮȜ[as?^ 9|U^2OMԇCVmQsAxuL̫|{hsXq`clhBnٜHީl}m4U%Vl%؜;&NHPxX04C <w S^h*7o[4` L78XZfm+H&}{TlQ *ENS­xJ/8+jao^h˵55`Z޺s|-Eo|zѿz&!Oc T/4ZǫQ?v[9d,(i)ѹv(1 lpևw Ga!pxOt ZBOeX<%rN1A&߲`,-qD٭wp0e8Y&N[!軙 8o#%7F:Kfk0.pz84#ȍ*9/"ߒqM%6fhP`rx&DrS] *{m@/ 4"kKVFI&(bh%a{6m$ 53stTʥ*GMH?:ێTu$Qg!(Rhb|: )3a8K,u-`~%9ې+m)ca)'Seb-2tv$NpYdXɠ}j 8Dc,cʫ@"+s$eҚwUwr' P6`JI<'B JknE \7;g;>6GDb3.W؞=&ɏMSLb;#7LӢb;MVUOЧӁL4_ yſdfp> ǟ 0iz'gj7eVqe~2;s]rneB#m_$sۢJN/`^V!+/6Sޭ/'˜x/CҢ9IY4cC@e[&M]>|hƧzvI\>xqW!0aYX9 '"ǩe8_ r=5Cw8`mr;!X'B'o`ڷ@SJ]/Tqʐt.=_}ZS] :r]QGX%7MG!v= L{#(C&EMs('AZҡݰpA81929g KؙSq6o7M!zl1~>%0U[\ .3<?DH,UmG;LP~#fHTkK0<8?.J&'%xMAR>4R߉0_̜a}wN0#CdK4Nh)ܭ-{y(`rgv"|JH' !iw /NF_XkEƦ_*%Pɤ_dz#?P~`4!5%4Z;g0}!;fOICrgxxkFel5w-řRG_*A* %ws~t; `C1'1}2i-<+g΁+p`u*UI온 vhz E_oi `-uG Vj0ͻMaJ|@5:D;sj 'Y=1d `2=璒Qʃ6>}t\"=~ܼ<]ViAPц?>AŐNX74yɽfpyld}=z؛M< 3IK3,橓 *+1BE_6UVhsel(,ؿ>~bǚ_2^ltY[e]c@{d4D,sǀ}X2id >uŦ̟źgnArq_ +)!fMܙCjxϯ}T!d5a> stream xڽYK6Wp"``@2l4inR[*5g'QTXWUTY^=ajx_z՛IDduuX%JK) j/#΁!PD7C5bJ H#QhL!Ryڪl%Y,QLGF'<&x@D|pN0N׭]1I>[?@# ЉA H]=lgz}i^oIۣmhzWNyq_uNs$>N#6[BZf`%mD``@$=I)Ck (q{ p(eH`oUYܑ&nm{ts }>0\7F 1EQV ؋L,pu4PLn˛H'>FN N9 u79/ɔ?PL<>VfblP1(# NH}̎8NҚ:B[[{SaCG>*x#F4%K&TI ےH[5Uyq E1ۗF9 h5¡&˨&K&Ɣy{:q ,+H/5Dr-a0nU&E bV?ӹ0?W W)p?:LKMuBSKqPNU^NeESUGЌIdˮ5^S'gDv4k1h4`yy5e9]\'k7XI%`Tc E! *&Dv8ԛ2]K|pIBwSv?=M/ >7}RId]L*Nȵs]8(3iE7Zsn=H$2L(vLR5j%kaXUf'Bn IHJ  gk(J HBz]&w+|1{LoCNt$xiH{Ks;9N0?Iq:07b%+u(rW"E<$0(b8~Z#ÆpbɵKBM.R ؀B*nip3d"E{G;:^io a\S@yH t(~*LDWյsLj큏`+%}1\ ԟ9Eї{sȻˏlCqZ:ݤqc%T*U,؝B@sPkdGJ-o>^$ Vbc`ޟ?E`pi_U /i ʢJ3SMj隗\kO ܂^瞷P@P@沍)4c |[ w<$uI'Ȥpuu(Yp_XK~%SY@|vsdl27n|+װBSյ箥1G{PE)yGV"qAFx#+\-=N[ 9Iεy`-̍& I!L{ʞ:̜|׾Fc{vPbEZ N_As ϥ^,_z>,`+TݟN~2=@1#9/4㲃-۪z W M,!{ zr3r+ ]Kog|pʨV%"s>pdӌkX N JԳ"|p9KGkJ\bR^;/T`gb(Z>*^г 訣BQ3hOB6{c7tkʾW3PVez]QP5]RAoXIx\XXiWs /<g᪎?b3 УYN=Gx-t./”Msw6xFҍxTs5x"ZW4m;zesfZ4ZZ&yiҚb۰ae"Hap,Ҳ޶.ZA }r!DbԓDɿ=gv0!{J<=ԉ=Pq(MCp7RE07*rA.Lkiu Α@ѽs6pnjW=~ݕ[ [ki@]{3KXh3ǻ_2Nw\G诜Rbs!#8Wq֨U Hh.&v ӍMc[p{99_QEN3OIO([a–,P֐gq,8~5tHdcYsA1Av iwήۦpꧡ/_W\[/1Q}H` PHbVɚwW } endstream endobj 3236 0 obj << /Length 2319 /Filter /FlateDecode >> stream xn>_ѷQd793FɁbW f ,Ң<#A.bUWon7ӛ7}&WE~k&"evw%Ҧ韏ۛ$Nϼm8REO5?}pp=#omd׉BG*bB~]y S("R/]o=Z~fgv6kx-EpݟG\T"t?qRqq:Nִ!v $S6A Vy6 aX* sbA-bIƴD~ŜT ϟj zFtB*<g*Dlj+d$-x 0N:ˋχ^r1JK0 .8nQӸiX#v?xE~C:LEUeeN~lo<J" %U-;*Qp]Okm6Bk&j}H9]]m٢ܞ]hϵظo; ^G y4KJ}0-"Isc̴2YkNai2֞۷߯&$b"x5ϳHo&_xbl/&RP%rK?~g,xO8ՉɰEèW 'R؀hC;/Ty9Gm/t-|)V-ȿE_lxĒ<@灷_Bmj N/5_jబщo/~0/!|t*r^lWYd7b>ud3-M몳ҿ s_KcrȓDPE2.tw OGw0g-%0aMG?|c]H-[E JWsDS?? (zkϾ+B8/Y\;n pCjojo̓t4Zi\h*QߝOEopLDwx;w;_! v&ؑՂ{'r*qADжbUWrj-Z|ѳZB@u\6J\*/&~X/xR?Qɿkt_1vkt*.ƪzhOk"Qi] mJj"bCyf8ACuu*!K<-^ _1x_7HpA86Nd5W$d\ 6Wzy]PK4pͯW`?7 7 Uon.ƌrͧS ;5`A/ފ:NFgGjqA)(5yVx,S:7ɚHS{WQSzF1ȯ`X,咃ܥ-OLHH>>6L"("/7v ==X[0'lWLA >REVKOwm80 T]8If*cAS&܁LJ]̭LX<{Zj(T^s/a}( `9:e/8 wcP(SFGƎ+v{n7;xtߙGSTu|dhgD] VXN宛4ʙhl2> rhkYʻZJ:|p']AE4߭bj//i#/'?[Q!́f3pflr 4YA]:ih>kA85=o&7ǑJz@@ endstream endobj 3240 0 obj << /Length 942 /Filter /FlateDecode >> stream xڵVKo6Wh+.)R"ȡ@h=PA([,$0wCibǙ<ŃmO7||T<`Sd)T&RlK?_OW/ܗAy r꣐IoXb gy1]q9`xuWqΈ5#Q3î,> stream xڵZKБF4|-6Fq%cHʳM{&Ee71rU_=z&|&?>Cn cqao2BaSN)U9vgI-LЗp)հ/|PTH. s-Ov88u-# *#V:ˀ$zsկlaU_BO#\jڭ΃Nصv?ʃT(\}4ՁOq9<`; N ʞ)]Π"I*6;deU/? qZn^xmm|k> ϯJ}*녶JEl_"^/PcY7~xh~p9wZeqd;/vNs'ǚjԇJ㩔-aW** Q/Rh^ N~GEH?]9st_ׄq* ljZ@3BWH-Zan0mSy4/~9ՍlCb%wg4K;g~>a PqI~q{熠(^+wxz8qcw kBe#VW}1tyٙ8(1r= $7 CTsa ,`䟥-rVY:]X*_{K!L !(LI;NCh &)#:9Vۍ c$yO?bBp13X0PpMí}y%fi:F̉&6>F;h)BD z)NbvbNpFPYRkZm0ؼ2 *W,\˹jJ2 bssՎ ?10Cmz bn3{hN`$mL _zX)6ऩ>q_OzT">Ga0Clikv0qJ6MCug zx#0AxP\s}ɑ |~ARc 3v6q&~6a]q 4`yo~9@PcSP0c,~ńRE` = wW!(wOj,CĒ]R XDN:,~eD t7CGs K&w"f#$]SN1uQpK#ε9p{RE jډt#ˆ8nw8/(Iy!LȲ|OP|4+g"2PFAv%*^c$^K^zT ;eӵCMR9]FY`n+ٽ`nf"H; ׏KJۍO$^QA\" l)gXp'\d}M83{KeE{-rOxi qH[y{'&+Gh+ӹɮ'D:XƱwOZIPӶ,C v(',rHn, /m T>&cM.ӨE6b#N-6@[Im(X` MyDU ZcHҀZidK0)G,KV C-uC[?1&rH­ z*s 𞷘UZLb$!vRf@j9qSΕ ]8Ew)qЭ8Z,fK+P 1,JRÖԖOqݵ"1"QՋE{ ~r4yb02N)]\)_~=Wja=7XiGz3ӚEYtkcOs) Xbc%UCb\qʁvB(ڮTs@@z[veؼ7V~e!ŒJ&қw% W+Jxy¸-B3]^1xA.ՠ  \A14C`A\˴pG{|D呲B/.XXXU4Y.V(~ UDY] .LT繤6R=:S4/<ϧ`p /'6=,bH!C|cY0Jl\Y=Ph_%B 5D[efOn,XuKxTctH@dpJwVP?g'+Q.e89i{6=-j3M|P cگ;g9)z"'vsV2e: a?8}%6,;?y]:;i7.s)R9G*؎Fnc3UF8?碑ͪv6:-o*$ϞԜ;Qkѹ$𡔟;f6lw=A~]j+/+BQbWڋ 3rX==4ޱ)D}C Ff秦> stream xڝZY~_ᷨ1WksAv`vԲZ I`{"uXiERW_n770no6Joi^kP?rtW~np&Wyb%lVtC22/>y/FZ\X#( %~O0r4X[ U 8A ƀvuT z !  ob!N31r+N{ ~-ʁ/T~}߲Ȳ+Nk<ʦWK~>q['*L2 8r-%ʦIP󲣿bx_*; |<d|u<<C&1d`SR62Uz Do {.U fx5ǩAxꇪڵmbrk8bUlhԑ xU_U̾r6AOʄ&FzC1Btl ?SoB ѯ%Z bLݰ/^ƦnG0q*85~t8Rɗ!;ςՙXYo \'H;$&^h) KU*>T\{GJ@B|0|N>GZ%İ R3^)dQ|ab]a+eszYC˳\=X'#ͨĂw&Vqd7ʐկJE|{TR^\z8#2w$ꭘ'-/Ea/F:HV )历XR0;maTޠdC%aX7E'۳=TΩ\(n/VK1!8L\֬?`=5yqAIҐG/MfV 'oM݅"g4)={99QilL@Yb9_fMBMX\:nuqen] 7O6O(',PZQF=i2C.둯^ǻYGȉ#s]E< S eTE@/t 9M.=?%iKMg_O- eGُtab!pdV9kC/^S$7[ [pBf]X> X\eW-O]uv*Oh>a_t_RU'[DMP!0_ &ͫ/&#TBL xҌlևdX%ZV E{J>жOk^(RI^Jh@J#:D&<'kn` 𦣟y,= {YzM[HB_V 3Sy!3 +c{}ylv@G A'Xw}Z̮c2^_eioPY ?<6bB(d',"VOEÁkJ[I<.z=OhLݖ+ ,x-8Dk7G"+>;0 6+g;XE'ǘ{BSW:VG|$[[|X|:AcHڢ+YqW6U,/ZVa8t{ ֡ U&Lf endstream endobj 3254 0 obj << /Length 2607 /Filter /FlateDecode >> stream xYݏ6_C̈>\hw@pݢwHi[$f8$%^|f WUǫ4"\u0v?ܾzAUD$*YROvCOJ3(A`VgxgٜKsWu}**e’zc(B AxdT[b)Ib佈L[3_LYt5ELHzUoS-,H_tβCU.c  H;>`aIi&&yP}?_ }}F1c;`} c"j0&r_{sF, boLmxR 4(|șV@{'+ gHϚ$8G\a,8a* TKH!zKKPH7c&AwG,K˦L/nĪީ&ͳ/Blw HhSk1V&3/^ә ~w6F^qJNplOyH#vm/>2farz ٓԕ\l"з%T*9Vrn+9ϼ&n!KLgߤC%w:kSx>~t_j-,ywiklS22{sP{!CB<bfr9*"&Jj?%1`O8VH$j֖f32&9@ 8ރ_(kؠܩ Q`G>kЧ?ýQH*E6}3 N Ľ5N8 8BEox (ڍ&aY_KRZw.ae [hz;h+2X,+ NEh1]!&sxGj!e>JC΁~pvU6yFl$C\6j=TuC?E5JLDQ_e醄yAHXO4j[ٗvfq[,Rkva/S'F %f95KW|ĭ#m:q @;renfBFt"6(u RA ۽m: ϣOD#dQZ5AXF ?1-IZ}F)ZCwdx!8) "SNH }pErқhp|Z+uƩQFӎp' u?e9 38ABlsq :쎟+Wk,ӳkX lYP[Gq]J*5Ԙ!^1cAX-&mm4Ͷ#4R=V0Iwtzjw]2.KZع9J(TK# SrI1`<%@9yL6.kż7gt<(d;tOE&7IQsҸ=Kq倬hk[d*si8Ltp ıި-N#x^Py>?ZOY+5\ z{sU*9ֵ[^}Le~qFa PaCFco3ͦ1aDVyQ! 3NWEt(m.7pdLNVS}tJ OUQ;Ay|T=hUܩz~lіmz\}~;/OeӾ|+}C7G3x|6&2A#3I0+L endstream endobj 3258 0 obj << /Length 1796 /Filter /FlateDecode >> stream xڭX[6 ~ˀ8Qm׃;@>8vf#Eʗ9ؒhH~̶3g ?>xƓX$a6P(E#<כ=d],)Zgu늗ԗVkNw4O4;}f~# !3jTզ$WOe593VuU"q#RJmqSjdؘ\=`,|[Mqg!N)48\mydtMsMj2oJ@XnUϔ!~94*/ӭz,OI-'T\^2tf'Jm]~* /22%[j a@4~x`^&0L|e{ 􁦩6X(NWۦ+nqoi2nA|P]9xg<*#u}l0ٝsaxD@RfR= &,|5( '3)fA'!tfO<ϛW) E՞u˖ H)xon0qeڴoEZeH ~2>̡fL>-%zs0)V} Wӂbi M`8c&DFK Ws߰g5(!(ÑO+a/*9 !XeZeLϏuvx%!\H~"p3 ;+7ُx@^Iܧ)"K Ʀ%qM 40ŻE#} |Tc!>ntQ:>KL 2sG/&؝:XT$%joN4ZPci"y mqqvPowc27#̛ MΌ2y 3ʈAس"| OoVLfau?E(+]'>F!9@5#Rn0-]MsyBFxHD0lJR-Z`Xnf3p+W]h#+4]G]K:ؿڻ<;B|({*| }te_W}|$^VChpH!}\1i0t,-qD?^ \$ 8:+Js/* endstream endobj 3262 0 obj << /Length 2744 /Filter /FlateDecode >> stream xZ۸_z9 iSnq"Lu'K$'.wCQN.")jf8͋t[= O<yQV7U(V1|uY q6u~ܛˬm+|z !Ku:>dwd{` k7w7vQ~=IO 'qqgʲ%~]ح:Pǎ3{סR945~ezD)AAD5lu} +ܴmHvQTyye13TcT *=37a&@M,?Yт'Nv{0CV;!hdIͅ 94\cG3Հ)1 00յB6) anh "_%)ilpp0r G5rĈ@GP}}:0(*`&abF$1B0yzQ9P/=D90o\Ar*uQp`KL\{JI2Hz2Զlp_1x9i´-QTA)=A/@G1={_me8zǑ JGAVmY,Z.5+/exU2ĵrz0?;֛ߏmVB"BC`06_c79YF4ޅ""!G@zȚk2jHMFvt%80= .@HIPW.E h60_;!K\ja"HKB@V@Ko\\'Zt4z$ @Y`ߜj[EkL`$kqp: Wn(>h y7zY9m4<3S:LyNbtP3n(R.CBJV348sj5m]󒷄)>}:qI]yߋXPD_qCMW)ivA 3z $m`i8I?7!!WӀ۩yNc8i'Y@D/Q(Ev:41XG $Ap-%GGU7{{O«1d6P `a_<\2z51mucӐ0+ ʏh746j^[4͒K0 XR)fQ:PAf :ְ p1yr&"yf|]3d mM֔&wI⌮h[WÆ4x -KqiɨuԘw> _~h9A?,$~qS !YǀO<1JIdz]AC#> L{t BSRLSTKkB̟˓R5δR?cWyVFAd(' %Q=IMJQL1/ev`42l5 _/pG;ҏcW[UW> stream xڵrǘ[.7NURr"b`ʊOt@Yx/(Zݭ"ͫeDxu[xH)d"W7W^Ft]ŕJ{F~p=uW8δHm ;ѡJ i]kF8 0DԌU={ ?@ o6E}ږ[?< {a5ўz:rɩۊޟLgJf{%\mID0"LB:pRm wX?:fAnvʾlpiȇmh7\(>, *Ƣ9U#nK8-K2pG^Lq}ƖؤHX227`նD5J#GA IZ:}M#n0x-/slx%I8hTAX?AEBEHͩcc$1I!8>!hطGN7jgÎ6@n}ܤțh,'Ԁ5lͬ8\onWuM:f>chт!Lpk55|B73,3n{Llv@t A%?-nHMsH Yuzu~dtw$2N$/:eq8'mẒɹ )߮_BEO3UӐP"u^!sWmĪY䧾[dBʈ99vĭ('D9GkZ9ĄCٰtJb@f .U{8 Ю=0pYPB&}bؐ0xED)rTEiJG hWv}9Lv(PG%\KԍKtۣvL*,mEhy&cbP A4"I|0T )L5ҹB`1!hz.9r)K&;4 - kkڸċs٘ʥLT =1궹y/Op9pA}*'#u[ qxp-/mJqT\FT|0)䵪a4ljě9ں&c["uƉ;1"AEbxg"JX<`]vOKNDgsЪvh(L7cp" K0A` 'ޣ֒ЏaB^w{Ǔ!~S\V&ZV'N{`6ٞ' Cl24e|!&oI6Dߦhp\&Dʜhw )*^F=oI=D, 'R藒~H؎`c`amAǛ]Q0\쁍}1:{W~~$gTBJsF(,&.m dc;LlmxB:ۙo0 %{ UU :9c i[e ۶x[s}kMcV<^/d Wd n?eЎM~fz+:?02L`Td H;xk`_T*28|1\0,ޘ\/9?nWi+u|Aq@^Qe͒INr+ 5~TwRWU%U np=_Xh:KGb7Fe9lR UX>Tw{&V{Bvcc gNp$$5q~hb]hGuMGyPxxFt T(*P6NF i*8yT Nʇ#l{Qa-Mt`@JCISFC,jl vZ"v -U̶,dj}YGaF8us5ėT{qIRVT#ca"3OYnNz 0 бuBhS` V9CEdckҘ5Me#(Fʶ@ڥ{nl}r&ߎvvEYQ2t!6Dt`0JQ<!W=ŧ cEdT#щqV^YpۨKyH'ήJR'TK^vF,|^)#abl]\ e˔JĮnAsbI0݌  eGgB 6CH0oG&Z`a}e9n؋GN50N n᧲d(ʂM%zģga:_V7ZC8ٹkǷi+i[HN|۴ /mr+BV2j͢h~9Z>( P}{]{ B>DM@Cpl"BV^^ySv_ B;~ |ӻR2(kc8y$K0Ӫ=xpD mQ?/>EsL'\KBO|s53(ٗc(ovPYw8{ qy۵7~V,QF {cJ  SK&Q2 ovxsSk4JiJGhABp?⋷K!1Mo-_]K>#ZnʩvW?S:zeeC#Ӥ4!s\YuQ6!O?űzz-L(Yt-ns!N'1K;U _J{b95':s2E endstream endobj 3270 0 obj << /Length 2751 /Filter /FlateDecode >> stream xڵˎpV0|`obZaǎj 1r՜x_ūŏ ^50_~zg/&*ynhfTJ!Sݮ~KmNqXXFCЯ[FH:SB1RN\kE=܍UѦ|kyѕu@*D`L%ALn8!zroe6\2ZK+rCUUhU9mi[mndTNEyΰTiPb6YDFrY5jOEv;4O55  ȭKOPl_ެI<X[7AY)ΦNPֵ4|(cNZ i7~ j/&\ӯ ¡iA?@Xն+:'J*zCy<<ke`b5XoŨYN L< OrA>up,: !i&(4lM wj0Ȭ%'+ \`1e̘yJ}0x+@i\ ՝ۗ՗m9\}]@idɷfc>2B+va22KMk l^9dYt*>a:̬0e1#߁H'%oF4b9(\҈=+`;6@Ri7+d79X%4H~Ffv#Oi|<`GIU3m@x<F`1M"5.\c(>Eh;E2 ػdO+qw$UAtߍwch $gAM ɡ!j]vQD3;cY DymE 4 1Z-u yY`0}`Ѡr.GeMdۜ>l ä<&p]py}`UpL6P%eX2XEGXCVM%:G: P˃qeYV}Va' tҏb45d6F cTCEwiKsN+y~LA,ΞLf$k)]B6uZ2-cPym3a8-)6Z;RrxCy(٣7D]]U*=PU s7 QB5x3A@ !>g/3$2S'> +XʹeuY3+F>Sz vA}PCp. kx6>] crckaicuXF9ŋijGq&NQ1fx~/s9B l\QjT10Ǘ=>?_N9< dUnX׭E«Z%,Ed^.'VPV;DPy`XJ|:uH|M@{DNSe! N`9&(gj`3mh0-fNi 9SUcO qFv Rs!(|1?!;A;5XcyHó ֚++!0vRƷ)ـlffd@@hA\ ~sԧ!)z[6BFhyU4]9!?p2`9uH9oW'HjxˈAG~ؗS%NǚxuUC%//L[Ǥ?v] zI&AZFL|:tJ({($EX+6,/L_1bʏ Խt>)}z>ǺGB$L)P<]=_b  >SY/ĸ?l>|ƙҠt}Oo0BW`ԴOwP<|N1Ϫ/gmz%e(y4FФ\/yO kM?-nA4($_҉]o`~5kWjs%諵1׉WVOXR7X3 Sy,M7'1>$ϛ=zP]G<V+W+[]p;(||TD'j^VQ(#PM$+)zkNtsFdPqa[*)'Ponc endstream endobj 3178 0 obj << /Type /ObjStm /N 100 /First 1052 /Length 2939 /Filter /FlateDecode >> stream x\ms6_̕K7$q]z%6mDj$ѡ鯿gARmɑe;rX "Zz)d*3Pv2)r!-!#!+Tfc&Y*Q3 kX+KZ@$E<2eu/Nx1Y2Mc(M`T<{Ve *!5g68puf zDR$YRL)VZx201 8sd5 x-߽_i%Cr蒉3!NORӳZb!J$節kM`\R 81CJ2ŭ2QA Q#uɘg.U2yRd9+A^gR)0Bs+珡c \,oɐJҤWYY^cDכ,6$` oyXa}T!ܑ`$,20 D@Ab*3x*cLG[ƴk15D3[,wJY?`y1+ GFE wRD `x~k& m Ç:x^z:t@㓓*fb.(:aApO\ ͖㢚Og4*'S@|6قst;)Ny'9 4gŌ;#OYT%8Ne>4_м6Et6Ⱌ3TO54)s*/ VEaA\1_-_#zLO耞!}O/zF?ҿ9KzEG_~ JU>|W,✎֤6p\ SZFʰ-]N4a>tJg4MhJ3*SEsZВ>tA8BьZեɨTF #ٍ?f%l@t֑IYiupY&|ɝ}R?]LŪ1gkȢQ~z !/֧ZLpĶŚV9D5J'b:ziuLGYKN\) ڑCr%;J|X3 Zȇ1HFXUa19*,-gyNS;O1J婬F'YVaJy=e)伜D #)ebX(d4UX<Ō'-*GKh|trTV&&M~0'l %-EgƏh#|2/0!yf<85?R΄Nܷ*1-y7J< y84tL%-jyE:WœpY y.K1>6z{UW{U}<[~o,a_mo3ܚg߻׺֯ZW_fbl<{U՛ݽ䍌v`iHOBJQ)@|3_ZD> n*OC'ڄ1N 7Z>_SI' 2S,2+^'[PuW NmK{\PfSOMϦS~K>Ϗs7?L%Jjd.k.Oe>̷S9A݋*NpXK"?-/t=;4IK2o@f?./D0^Bդܱx鉷lm.[Oٚt[V_I֊񢂻d-&Y+Ι ͠>y` 6&k9۸J6o=I^xt}O [%K2-dUS|[">#g ߐ wE{-;; Xv!Jd^RIv[Ub:'I)fnөx.Ap5n >sćjkKtrۏ^׎<[7)^9nieBFAT'טݥPb$⭢C=hڞm\UH\].\]ʝqwIHw5YHXwU$]ʻc]yw%ܕ~7m.(^N\rˣ~}n/5w ܵ஻wU\:$>6)ݥWvi8_B_w?v9rfrX죴oJ\a)0؁_;~߸J]r$XeTU_R )-3| s]?U>ˣ֚u#1HJU&Yȶ̍tpqw'`0&2tw(քݽ.Y( O_ǛVE/†٪u-]gYaKMn?-up'RFNyN]K箓s[>|]׮ 9ۙ[έ}v^avn~u/ endstream endobj 3276 0 obj << /Length 1770 /Filter /FlateDecode >> stream xڭXK6WVo3H @l@C$Y-!hHrwpH=ly[b)rf8̓gWo>x$z`qx|i7~TJd'5κKe=Q("4n+݈[Zz7_ֿ&#m@2ODpg.^vN凌zl1mX D2V.-KB!msVe] ~:g&9xJE2^-I7?߀ulAyy?fļH[3N+Go3È%I0p\qL|ɒIX ?:;U1`'3GJێ{VՃ墸:n^101/.UP$qlSy93L=(:C& CpZ,`Uՙ9G5*.l*.pC8 'Uv֩ݬ ZAZub *@"W]D]2ӎ(Ԟ-kgO7Puan!U?EݳS9PL;wE)-%%pv@:ݱ/8eB*@fo٨F8Aw(zvAA ҬPy>eB"58AQZs9cs;cז-0ӾoBZP>t蟩j+PdQ wcgNWC".<) R貞w`yay.P2BuڃLP(uD=(gƻhAS\2Q0OHI-v!&Ёh/P A6S`8Mỏx0t: ?2(SiXuK# ZZ fo5TajLc Hk]`ܤ% 9nC<}=r&-  @pZ)i$-8mATj4PgH,UIl +ʤ},D#]HVAc,<ŀL3ﺰ?&l}O PΪ55Ƥ%D}+MM]e0+.P)`%h!;4z}n02ݚF|9W!Bkty27A(HX:@'}ΒGpe.25Rnd"B͑I(˩Oi2R`b t6eVYuL;ՋV3]=R]$rmw4߅fPelnGHwݚ6p,~~HVg=c۶;n(nln,0}ly]cvPyWMԻ/OxEʅ<_#Ƽmnd43 &YZQYuq= X7*պM44S@*I8hMWkk;a(A8P48{hT 0vV`OE,]\A]\ s,ɿ>؀]U."/sN} ?M*-:kҳ3WQM;i}QL*O"{dƩ+(}Oܮ_>3 endstream endobj 3281 0 obj << /Length 3851 /Filter /FlateDecode >> stream xڭ]~ߪng>$h.MdAkkd3)J%H_,rH.}*xe8 uq0/vyqJDZJ2 Mtw4N]*#ڱy?ug/Ů LemWqX(X偩cw)CmCxw6 /8./CCs<+"oǸ1L;>չ6(enڱ|bt+`C!4aCl}Lc=yTS3%),Lr4e=2F@Rw`И VHͻHz;A2#8ex9O1C{z5jl^C(CLˋ/yj+F[ Z~dI ? "!d6F@CU12F^8 ӳaP tgB8ho!%RP̹jۭTt ;4ⶦ]dFny t&f`XM@By^'f˖:E?`q:2G7ovHJ 0Ӯ"~ 8U dtpS15-M270 /p 2fĪBK˱%v|C* 3zlb_u]0~^ vXQhfE ޓШqZE@ S/BU453$AǥhϐLF'jWKrfHEp~2Ў79Ђ!Mq/>"HtkT 0m]I'9(Mdtl!'SN-wqœa텸L%|QXfM8E%@Eqe; 3i1L@02:Z  9ڵ-_KitwO<^nB0^AkD`z}aKVVSƘ,PgjdP=6gBJ7G]x!qn-V 8r# SMQ?ڶ+  YqdD!eVx7܌oPD@F1`/@$=P@#$UW'Q!@;cls9L4Ahn:8 neebݯٜx_5gT)66:g9䒵~#i#8@ B"i'b;Z65 - wko. *]:H3ʌlu%7\ɗh}0`An-VFtڣL:I30ad˃ #0ݒ!^>4@jiNm8*.4 6D#_;x/h&`f]ɧgKr,?C'RzI6$^866t6i<˷j#`pZnrkB4Q6ǠV3D=IӰ2IOMsn/ nLjo4б+l x[C ~kҳhOUɘu0=^JWJR]!7_[H2f?}j M[#%YaQdejYOat&BO5J .h<@i++,$AS00?) /b'U.V;\KxEC,> stream xۮ۸=_al*Ve]bI)Z`k&ye"D G9Ih_lo fY0u7,e~lO,ag 6wޱai Uc`xmb'1?\ ]nXn/Wt"KoUk`JE~dh*[.-Dvbh'DG 7#un A» -?Ph:qlCg-N8=!9: 7 "b ͑ԗ ٱG,1nЈ, 8f6tD2ОI$t8ECwizFK<ը!@ٲXXg{ `2^n!?|lq'#O9*?F jޣPfU,JZtce">ԏĩ69yi<~iKmEj r/ E=$B㙟.V.`Eq6@p(W 0UeDcqaCLSaOڅQ>n%Fg=gkC8^`7tHyWeЗdϖ#u |  ڦRt xۚ'eXԌ/Ǒ%Q>%%D(\8mj5A xSl&0AVlK"j,rb@i…c%mEɃV"oKQ`=J:=㑪ӟ"ἒeB4Yģs}H!ƍﮢcґqɚ!KڊhʺGpD2 ,u{m:P3*qYpZ=+,W8S׵Z+HфF e!$Cp,KDN7q7`v FmTdR4͙"ҥm#"9śP6u 9bApyi4-6E&IiB.&121nzŻj̹J\rkL]wŲn lPl<< C=MYmIb|ZFJQ+ƨ4fB>u(P'ٷ\E>e1Y9(-ﳻHJZKęx`N \ǴAP[4+?ZvRIǂrT}K;4+͔1b}p;_瑟]?r}V%M`^%]2w_j^ǹ#C@l1 ; Dk~J.5}CJo+ \gn74ҽ߱g:nղo]*N?+9yx9?gWB|t[C2/Y P#wfDO^C@IVU}^diwN̳ĄA6D_ e` [i3 lS= ؃fnP~;9-? @7b_к_$u/F{~PgU˷zx+ʎmJJ.֧ۣ*W$/ dumV]|& WXMFfvGT/sOԴQZ@O!sxonNuaAJ״@ A=|$ݷu G0]5oNEݾ_Z B_Q05ٹ^]c? ~ԴieG1pe΍M> stream xڝUKs0Wp !8ҙ&3=uwzHrh0 Hw8e~ $Y$xX."(H,XnRB% .<5_r:k $AؔKy0Q,^=^Zv(t4JݽjWל ewփmSoGGw^wJgy 1'O}-A1eTDFX@ <6%7 pHRX`E6M+$@DQVg$˝,wmfMCᥣٱNQŚcH{9k$ Qƌj?eq"&Ãk~$^izi}W( O)`gO503"Dc)P "`rA4Yx%b<kFӎu;f~֥?k`,q1̀hP+>a_rihK]/! E _UlLn閇heE+]WJ|lfїq]Ư})70=WW][6#> stream xڕUˎ: Whie .(Bu4#Ț;_JT26EѕD"eF #nX]_on^5pE2lH9='-|l%olLm'{|jn>[Qcη鄢#3x}WSXљdw }7yȊ7G̡D3 }gXoڅnZ14] 6ti7y4O>hM[q'\RhW`oݟ m8:,mMn|H9.֔˞t5F.Q'F`pM;[&X-]$UзZܦmsTvZͿR> stream xXK6WVI^E)6==I\kECwi;JI4)rof,6d㽄O.=|VTBjQei..(Ufy]4YDGZFʿukuYA:Yhk@_^3닟i4/,VT%=37ISeuT|ڡa{.V:*UM+~#~)k:v83<`=?()tŲӲ:83R&$M5i#aI<1#v`ڍ l_>z}!|_q\x^2ϗ<3k '׎jt oUD3Yd=!"AͱKC4[+L3IN,+uhQ<5Gx)6GYvuL{`N<fK`m";ÄMfkZy=m(G.įnPWҬ W6{#9 쌏*B4q* yF{oIlbL!'E)s?e&O+)wڠ #{)x} NJreD.ɥI oVi>+#m`~lF-c?YQzgt!uΐ=Ovt)=/oG#ҙlv$o1HwUp gV?a,}d¥I="B\%BXI Z^UO 6iV%q9SS4htpu+p^$.g\Y]G1NU:frwfeB5b KĭA*_j!PeֽxQA%8i WI^آ1".DqDg,8) ymzC^ FL|a=eHLthc~h:RRxD 9@`LI)m(|衒#ۉ}3vpwt<<'>bMks:4Fc ,K1HKyhhÓϱܾهp_^q"JRwO F!fd3E< {l? : ƼWb_]69PnsɇCIBXD?pI.2PJ@Q",-gRO/ endstream endobj 3302 0 obj << /Length 1772 /Filter /FlateDecode >> stream xˎ6𥭌]+ mCQ .Z Ɂk6J:v3^vbpΌV#o#ǗG/x$;"4[MQl1z'Bj-WIDλfV)2TˢT49ormT)k]㏳__t4uXo4SZiws4.itUӬXXbPI,.39H:8Ŏ7yhPF 5P.Z@ V#]`p*e3is#+5Rp4utVqTx8 q)9l֙"0NŮ}]HVme ൚#%>x!,,E#bM,VXu'!.eA+*\/BwL"RSOb.hCjZ^pFc7[0՜}B C}3GĹ_0Zx&v9%®ypƑxZI68-Q)K}|J?)$`AD"@4u0+ 6 *6Ȏ/`B:6L}NDګZ q61ⁱLpEn3S7a1*U_* iZsV/5,nołZ{"D8BߝRW6 O_~KG19|I~#CF)f(NWcPr$ ?I? ;PVXpi;ttm^06$_:jI0řb*"_e,޺)L~hӤGcb<ġ)XeAzoѬ5{ZT .ӓP@$)*<,]M=H8wuɩ)+-Js[T=4ſ#Tư_-"rS?&?p&$<7&]"7Nqe6:Fu[Lb"ƖbNYA9~ ߄BzP~2"o;ʵx`;Nd+zMAF~'H[E<,#\7"N ypdj؆ ~˜Ї=>A"EVjkNCJOc7~)i MlRbGjQ`f/ rZrYcE* GOr)|0oVUiW CU5yLE+lu-DYTԩ}jvO=%E> stream xYY~оl8y LI(1E lr`{jdk`꣪`7|߿yQ0^VI'^%J*Q S+ڲ߭(Cik]x}3*b_fc-7]=nmT}cmZa'\:`nCq}pZ+?Nr}RڜrC=hga8va5PbMmr1NcǻiǼZ9Wk#?NWkX0"siyWT㽽[ APF2n:& 3mYoqΒW^8qJgr C۵ũ#@ٹF}l+&t屰$T|:O~=X_*( Um֓Z&5;2 "\nam.~RRG"8Ge$r6܈ќ@ ,:8oP5Gp%6x-Ha]ؗ3)(2v<) #W{lfEY8փ?wOnt5=WY.10Sۑ,3TόF )I*I); (Y/и dgީEWSȂ#[| 62LK(H;l(?+YgOA6Qv8SZIe J?r+ᇅ"3j+_ܰ7Jr0#1*UqΡheלlaˣCQ/h$qv0SZ8'jtѠ])Դ.,d>4͍%}WϢB% I tOAHd: AA+_JO`.Ƒ!zWx8pWZb-^u0#  .kC|1d !_ָ/ hӂrfNקx߳1{'`o?E̖ Wh-Ls.1vcesYɰW-cMΘCH|7;45fCuǩi5d$&%t`%8"D9&ni$2C!eg^jfUTP>6wbЅ1,_R^Ї@l \D XI@>( o HG^s\AMJ(P*!ށ54D 9ܘ8e`A%Љw x) R{4~e/V "?f??̐TP9Ub @!ij$@ c/: 33ҡNb*UE|#P޲7ZM,9g\2965dڟ L?* S Y7ͤ~0PLJ74T5Y(g.P0˙&>dq!E^_l& I/%Ow7q| c=;5N% ~p7K5fɫ0 $n@eS j`[rԶid2zmp}) "ki!ttG*_㟍?4Uq?3)m~[cq] cCg#ڡsBQ4 zT%UԾH$ a ƖsYr.3F.0;]vTglj|K-A&M^}4O!6Y$ ,9:6!?F08&aGAK\&6^(tf9=|ԙ0KMEiUTjyڲN \Ab"AjĂJ$qO&UȶpE8q*"A^:ʣ[{,|K_?<$}M2W Nmj.a0_Dl2o j/ endstream endobj 3310 0 obj << /Length 182 /Filter /FlateDecode >> stream xڅ; 0;I;$ͽy3*Uqnc(89߅#9Uۑǽ1 XD! #C5L)2QA bRj> stream xڽZK۸ﯘ"UY4 |$'oTqe'9p$h5E*|x<O@\$htu]xW}IrŁuwKtfwiQ~ڨx"e65[m;67 ?_mwl/ꯋN@x( ry?'J?EţnZ:]UtBOF]Jp;ױLq'-U8kA1Age:bf{xSY7g+ŧ?q?* g} 7GnHH\U[nZ:>6^̝H?= ׍TtBSz) e11Z&ᦇz vdvieÍT/}O -W3<I WsYY8sqxK}hBVU?>A:n_g8ȣQO(JC6  7+.e6`*E]s5 %c0-ld_3+U>PTܪʃ/p;ө{yX6I=^Z{)Z  1j%'l +: 0VW֏ Q#}ށ2c}Qx2a~ϠT3\$_ް$m}֐JX́B۶ą]SJE4@ɖ BÊ: 5$J4A69IVA#tCחXc`|WƉç}8Fg5gb,2n) ݅J[daq2:˺SYUB *6=1T"`OG[CKmx;ղ#gP t +MIl4kz)Y!(ufENڨI^džkjgj.XG~^>hVD"hR ߜuie֩kFέ= xH:iyPs%Mč%gf\XIw9v)}ġ,t>xgDH3D{E66m+ 版\+v_ ֶQ_Eȟ|tCeK"h1 ng+dܐpƚãbkpm*d2?3-z%cSYjY /Ɠ9ɘI\HBk$@setMFߠî̺-JTfyǣ;<=3&h2^uFoxxg/YŒ`4^aY|'r5m!?PwuOqJ9P:r\"q93SNmɤrT |qMv=3J6R@fq7j#`ɢ" ' )¾*08$KnʷL:r~*+QM{$ٍ:cD($oy픰8`V,èfAҊnҐ97m82Y,@:Ͳi?7x#gf1 O ͺ .r9xZ%sT/Ayaa?&SV}c}`fc`V:ft*ĩKyz2ʗ+a-΢)jŇrkg|೧<sFQZhL-r zx*Pur6EV=Fpc ;ف ݳ!yūǁҿO&<|L話8)eLF:7EnKF/9fF~"Q' эY{t*O֯R>ZzyW|Ij:47t(}g@oӘ38F\HԈd^#hSڎW^a]% 6ց0j7Q] m~86C}Xǎ!OLNYHT zAjEjU6Z:[VtC}l~Gқ e|ivIGrezUc k{[f\^#[6} |6.0՝J9_ Fc784+;7 . li2xUwpI$V ÕD*Za endstream endobj 3325 0 obj << /Length 2061 /Filter /FlateDecode >> stream xڽXˏ6퓁woiѴ=iEQfk%Y^iȡo:o훷Xx=%"X%36_}yk<:z{\ԫq6*YRc+uE3H,e^nJyG^e{% BSj-̽nhI=)xYgF]pFEd#  AqNxxΨv [՗J<ǎdx%-[o zLߜtҩP8*k\jf3\e*sn3܆гKd88zoչ0aYӵzohD@#t05'{FA5\c!|[&߅؞a3_ ^?,q'9PCN`}բaɶ>ca*8aP#*Ȳ) l9fx{ X”{H' ;CJՇII|.^F#j(ֆ(~bB \C\9#(ڜ`os09a !gi8 5΄g4P"B1w: (`uߞỉT֭"$Fuj銶TNm>;pYOdtàP5'rHb"l,'U}p%~@^jtUDwԥK¿4eq2$] զ4ܭ`" n!iF1N TTUIQ:Di]PӘ+rW7Ʌu'Yc7>. t;:MC@l QX.vJ `&7k$7OBU`mBsPqQ]K0~~3մ5`i.yfHj/ιBz֣0qsYnj_vW"?1 -GR:InUi< 1 DZ,>W }H@똿θ'0HX MP]ͦ?،w!]gjNX%k"*318u'_Bly=f65E,Or.)C1`a@e7GTwU.i(j @aKf,~= QY9V8 W}W"N,<'0.KvCwz `oOjY&W %!` t!oSV0VDMiY4Pd;6ӀC9n1>(Ǿ_Yyx1Lv!$lV֮ւOPB)Od

8?"ܗwdy?Pҷ[ NN#wW,G 8PА$~tCSN ,8xnx|JwyNu{ڐ#[ ʀ3ZtA3w#کl,ږq=ݬSG]]\UZQ^]wp{ϖȵB>x,94ξ4JQ8;ӉDd z~'STn0AZ?JvWl H}fD+dg8ͪtbB,';#hUzn}^WN7ۼ~jmӾxt&C~!NkU > stream xZKoϯPAdd~A6&M0aׇ,<>RK""Zc|gEl6U_=hEo"w>0>KHbv%H*:^n)wz:駫R"-hDR̊6o B2973vuꕽ94yv Vmoeuk^WN-G$ɔüջ/^֯5\*KxJ;hڼ(ov ?.2>ZqDApZKt݂pY@tyáU{pMeG"j~o'-"p!S1,7|YvYj y1 $'"'n?TU$R/6+Ԏ|SV^6+7;Eg(05QNw݊Cs@sаȄE`e9ᚗ`#1Er hi9N%P,GB$r,)LaXMiimHxn+'*XkC9 < Nf p7I͗K`=3g. i,Pp/e`,D~‹9OrYson0g_MȌRau*jX}rƺ* ŷTmmrn9+UChySEY+0Z$i ]&]BEob*ф]#2hX:퀽u$Q0- P1Q/fJKC B "8 9ol}Ts; gLkj^By[rtg_7tps/))T*a:/.&6X S9o&_.c\Xl.?/$m!#HNuOaO%'^!Il[XA$|WuhC~3`Ȓ^UA #c P4%q";sV֜Q_sidvAO}+h6T:zn1ϑB. uHH"؂)0N/!A:!!v) ϱ*O:((c#c]vK 1rh``P4NxLW5䡙iB; 3όvK,# +vOnd#;[7aVs;̺Fd;_bW3@US29ʄqixVO<^+$dxhنdr"X)d̡w}&c &GvRk xRƦY emHM^&-a,FtM aSJ'yKP'c~u>g lI 8a3"R}* w2E$iFQ:+=[#K)7(JϗD@)FwsDuڞ-0 YJ#ovSɦ0:>Z9=[/5maMW{ס 6 7Y( {L&NJ.BZhp^& >mDFZL&S=er<2$2) [($+ubn.,o ;? 4]а=t+wE_n}oSްipA`R/(i^ ZUuֺ+ DjHϜ gzԽLL-L 5abzڥo~bKs sx;7Ys9!?qթ74-.HoiZz/`_LPQ!cUg]Mɋr)p}U߅N,@݉Z ~?Uv-m;QD^o;F,o6H_?VomB[5fO>1o.FG>;!LG;![|ڣa}G϶rߝ1wMtLJ\6 }^10&P忱?dI@"F1>zKUW endstream endobj 3334 0 obj << /Length 1207 /Filter /FlateDecode >> stream xYKo6WvQqŷ(f^ ۃb1= Kn!)ɑ$Ťp^|#;.$xowgF)RBh2EHbd;)B7>؋&'Hq7?۱B wV.gN{7_I\w>BE ,%Zc#F}uWyvUwƻ3Jn(ф{z%!AQLp8s<ҫ.JJzQ%&[]B~Ȟ^Gǔ#]^* ]6R"yb.R$R kc05!s[fCjhw~*R-?nHFtT/B[|#P{#EY:k;kS~Csz:[]Aq tG] (q8E+"èg*LTk IB:1:Wyٔ]; ¥-_@?j:}R=mŭyx&M|9(Ȝ S^5ZmvOFuAbV~N!K;LޝPs%DWv}A/gcy 5/Ua:7*V]]ӴzfnZ%wa3' >m2y}h1.$eOD:$Y i[wkǡ4[l37`ظ}ZJP6u9mLDzv`z8 <ݗY!Y>RD HJR2"x$BTUW!8QhJ:rS젯n&HQGztv,^(wG HQG:88~D%Wm8;3N ~rv UP"?(}RTPT ^%*Qgow`'Oh*vk D<)oПo-X@ @gp9Qe{S*m!.j aoAͮ endstream endobj 3338 0 obj << /Length 2523 /Filter /FlateDecode >> stream xZ[o~ϯ[֚܇@[mYCF[l) 8^#g.z$ӑ71~E3|;aYD_EǮHr<߯^ZċłBP$Bbċ=ҭ1)W~f͋^S2FRDYΰs#HIh&0 G#q,2_R"b9̍ڥjM)]}R5QKu/""Hn5m)FTǶϟe9"rac4+q"o&sp\o}yh䵮:YO0q4˙bDxjbۀexYԥ T岱/NHy}1@bDLJONe E\~͍dǽ N$7W(S /G@52 a !rHNbOmlSP%oMq0MˑǾ!f,Q Xg,Jc,ܬ8̃S(Q4#XBoRxFpC1{$텘&i>(OL*F+iX9S۴kog1EHnwB 䙼ŌDfu~x47:oF#8vq<2Ǖ1Hgܼ@xfyHtչqǔ[ԭv7Pzj]ACc\$Gui$~^@.KlvH"s2pG!/„ BpO%.o1^zӸīDCi%C AM9s8?ԁ![Lgx"T*T|HD@2㼨I ?)'i- l#N[OrX5LNhM@NšpVD.ڸ۴޹el|OG;͡t^:G1sFb.8IL+F<Š&"458´?J] e6&qഘ3 $px܃=wib!ey _"N4j3I*2鵻sa,fv (ZAp+'%31XRT"ύRBԴ x{7OD1pj#,蔉E淆8ۅ==]GR(RH?'Z`o]5%" 0H&LӝSn|oB36S*q{$ SމxiFSZHM<Q/$Y_]>?@1jM<[ֻY;5F~tR5Eqv؇LAdsD3isS*s9}KjO)B28,3^Ppq0SZٮM& D/C#T+3XGڪw.. x9W^ WPݪ!|2|`Pb<|y7/`fO&%p~ݿw1fA@?g9Ǐ+/B]zPrJ5,T-S\dz9,cg}}] .ZA, -:`3IKOf?/]6:䴴3mmv9_rm:wEHkiojނK;dTuWGoi3s]osrޫ-%0hl<J>> R'˟^9)(t/]uvS|f7Mx`'E8z z)rX&"WE }sw w,NH!Wy $OL{0cjF06o۝j<-K@p1Sˢ =ecS1Dإװ5VLCwEeu~cXEq蓭OX>6m_wtwYߖGg`ʰAV>^>῵[.|:jY}h)$NJ`&ŝ=UXbHͦ/U7f>tGo OO91A.giCƖɕ *OZT; 1G,kگط_H=1TDdv(Ps%?{@/ հrnBeP=IL#¿c^~yw,/#`GX  ۘv0im"q:t7G3AAxGeaoj3C 7 q*>> stream xZK۸WIY0ܼfSYk={H9p$jĘ"U$k{swTN"AhtuSa-~xeFEΆWݽzsE-n13va8gfG˪,~,{ϻ˾]%XĽéon͈u *Vvf_Zff8"8/7&6pWc6ۇ<?'L5ou78DGuh^a8'HEXP1?+6=]MU -:x$=T:+׻lll ʾP.EޥC4jccƁԿTQ>-Idq+%ܾ}-۶'m. Ծ skr擮^І+tR_ìQƅZ~_)P@ndQ%CƼ)}9^CNJ9L E>=4E?92hXۉxq eCa2@8LA-kP8c%|啔 |66 _<:Bq h,^k<+Ez <UF.oo'b֗tSdnK:[`i1-<:mpj-jbimO@pHqEb:;և7$$ q?z씀|$^Rc CPZij;iQ ;f~E!XI`ňPQ`کݥ-f]4/4&Y>!~ky|GXa.^i? Ir|;dH/@f>F" ޟC؆ MKwuTcܛq/cDjM30A3)SևR A68{]T = 0JK |Xy/R|HU7Gl8q/]Ҕñm;6~5TFbÓN4_?+GZB?vc}Pw![YƜlh+E_lׅqd`^iӄTYl8G$ſSb'^ΛZӅU˟K\P{ @zWdQ1=#`'},@mᚔOgX}Q]+ 1>qͮ:}`5>oy@S< ~qo޽nzP٩R\ )QܿϿ8[caj ?fC{5MlR{e*'R:1L_r] (O}HYI۞d)jsM9iP>8#k l(5,l2@>/!8tUO"b1DC K6ibr_TjA(L͚4^J&`7b/|HE=]:quޢ}Z E &Eֱɀ#:Z-d R#/,-g$ljtA@6VS`!{PCA13򹥥{R=^u:qm ,% YA[".-}?+ܿШ+l.6N4=}UELmtܽif?تmfmI`vD!9e[7 GװQǯ*8M X_|GdNnjE37ݓܻT˜;$y>l]z)+mA FC ~=QnmHt"HI#dU8d=ڎMϋ.BYM&t2YKE$.NpJAkyE Ա l53fJ"EIG;uF|ǘ(}uyŏ'ƿ 8][E f7ImX2|=T̈́RbG UjFhv!A%g35e&Y4| o_`8XʦsgZʀ%H:L']tAF <& c'Mxw"9c}Q Ҩ0'߇ %rN.~CB@1#sxxcpRw0NIEkWikXBJj躳׹44*rlr*1?ĦЈ!6DC{BOfտ] endstream endobj 3353 0 obj << /Length 2771 /Filter /FlateDecode >> stream xڥYKܸW-`%988H`3A{дZx0OkYIIŪao&^=rGmr"7:ayn4k+7zmѧVI=ވ,."pۏi>[4L ֮KePw-M]RSv}`5.ba,Q~;4$nݚ-'\*z>97BGp9; D 5H$yE "`5*4כ-)Oũ2 6V*4l%T4"Z7[_jWS~VGeIEYTm` $#5 t[s8tδR~rnAl_Nr*IYefџD`1>Q&3l֝5L+؟lf%IA7p2P oq<슶j"`;\w׮n/T`,!h!djT9vt+w~ 0 ŻsHR= ع+Jz OaW]-jbn~ p q>XL@L8NG!v/<@%yO #3P`u COeEe­u1.!v%xD@baMqd,tJ9߽.P[< bNu[*3V08Np{q:7v6,.mu;R056/ۺ8p)czy<u[vå- )#obt sn ~K2쟅vTX:w h(X_bWZ 9 .nYGv E/!GF!Ni S˔9eT66A+t{,dBC_bKJvå]錌4`2@M 8ZrmjѠ#E`՜e* j;H*y^U ,a7|f+!J8[Ɛ:6I{p\s6C_レF2Sq̷y܈@'s8*p}Sc_ZI2sO'n0r^FQkl,)UPR,*4*)eGzǔmjm·PƱ/_1DԸݨCBQ+O2jD6+(hfyRBOtZ.MQzOc~\+6ebPmf5` PCG B&| σȦ EV)flHJ_G۱t@]aK31ݩ uPmNHAW:ϪL\FUxr6㑍v}ec30_D5s!c¨vkQ`dY}CT&B `GP"W$Tz%&,0}v`5j;3@ 蟫 )t'BG11`񐢽q@iFj ̝Wj{^ KeJe Ma0KmS`W$P@NgGۧCO%a;#3 A$;V5ĨHzY:z_} Ori'Zz6d$3 ^lid(+KU2 Bp;Yմil{p\ ^t+ʝ”X+k5[uK.Ib NxPڣlΖθeYThj_.h' k<򨇥Aaf{02t d| h `刃WEӸX Ճ+,Cx?qbyN͑Z T84ANZXy̦8k1ss_{{l'k6T7Һ}jw m>[` ^ u93beD}}j)6Wq}mB(.k?+?FqTl ;*zn7?bhiO( ҌZ=x e=cѩpM⓪tl Q^d<@4Im-V`:'ƭz_\ =VBSr%!,4zZ*M/!НL]Z[M_;õn 65Cf9r8n@A,FJ]Iv.et&wWm!7P b0E+LMv4liv2]K>l?FZ&쟧YQ^$*+LrV㯨ħ>M9{\MπJV\c?٪+`RY>Uk7g 'o/Oќ) kʬ-k#-m A-ھ#5쪌ڟ̇QdncTmgr}h]3kE4/y>jٹ~㥬 s*L9Xީ|{3 endstream endobj 3360 0 obj << /Length 1973 /Filter /FlateDecode >> stream xڵXK ϯN5У ,0A Zn #K$Oo1=|Tt XtbHrsI݇OlȒ$m"6&UJTmno?+ݺ~rڼwv&7{%EgWV"&9geN}ߙy) `'ȌOf\v{cmLMyUJݴbyZN)SK؊+FRDI؊tC튝6u}V Nۭc;n!>7Gqߝw{\+DEޗM,EYTNTx?U$@(0n*UAd2͟|d&FQ/ &1}s΢opL_gjTy׭T$tuv-뢺E3@nuTcp}0"/>R@85^+K8]SU jj_ta㊾ZM>):3+aKZ(!eu@G#{Uv;-?'VB͹ O%'Ur{6'~)J!>,z^P" y-}çs ?K &F(B ԏdd:\hg`EXXȱF@%]F9Z/@~ G&؆d*FI7V?K-Nj/`Q^fs+kM1*w4#;u+xmwK/,s|yCx^:T1  !QѢ/E~E>i᷾G58b%/@P>?cǏ|?Eǁ2D-{ 4sotW1̓|=KeyOlU,?/U]ߪ$C:+N}3ujBf{JE8`sRquab-TXIno^gk~ޮZX[@H zXVfD46L'S&v]p[n'oyIJ[*,=XM]lV:{^ٞڎ \7*6sv2Q/GṕtT(%mk+Yest2BkjLxT Vѿ}{ah+b-x^Bk*:P=Ⱥ+g&Z$tè׼ ((Uå!vXl4S YDgB?YO,F,0pw#;F5M5`upA yd2GB]Y\*/> stream xZ[~_z5ëDmdMQt@l4"0oٹuͮx-W2,ΙIeʹgzu=Ŭ}q%WkѠbj-Әm7ty5ԲOwY>(&Gs6eV,~5kōOUH[pțX/>]"䃣FZ|aWiPC vŴ0[Wpȃ@#{TY ߞiJɅgrt"=۵7{q8X:!idHB"Sz! xJmU߻{BĤ{!u2{sM`J (fk@c Sٍ퀯>惠dC~BNЗM=HɾcJ,SI蘛1:c\&/4UvJUMWNEdQϫ,; X7%Wb.(Y'4fK29S [4i_1*k׽ sn+Y+3˪ñ.@CO&͙@fd ?M$d<ѧ]|}aIc^,-N gmǽ^7-ۻM$9D7s_f^L^x/ab rz@60& EȳmGiSpAߗrTMv]{c6@1aJA䏺 7uIyjX2bQ}|4΍9-3 MSAE@4mw I!n^"51Q C?.ҝsDB_O|XF,P ko ST<.lmG6ȶ?5۲s0 }4nH/@cn2>`)![C:D2@%\$t Bn|L"/+G]>BLE_fw?epӾHïm$ּb ( R4X+gV>PV:t+F *~N1ڹћQp !`?[`pnomG{f1_6#v>hEΞ,bzԧGK@~ 1%ICeec8_#Tm>4۽ANhR U7X9$y+ #<^] #E1ItՁ/s7X' dc}c=!lM4`L,(V]?12qI=pٻšX@%+} NajCΛZw {T4qÝnqS, F M 64KC OհY#d2)sx!A,d*3g& b3P;ԜH8DWz2&QŅjjqC8^Zz7C"qS~}.N]W6ŴV |醿j*q1%}͔iI\D^C2EJl Qep='&,]kf9imˌ`c!3+,9Hzk:S_E2kiSRy\p*M%94iMðp6`xS,1TmdYg0j@eDxB(]lBb VՍ =.! _( :gg% L9Ɯ^;l׸[\f2qr)vRe)L%dQbZu?k[.9ehl!_)$r_t7~pH[k|& :D5"Mޒ%X~z;,L/dvCv\+a qPo}{IjxF"툇q0ggx*/ê ԩQWF8W(Q1l~Ez^1zz'O}׾LM}՘@hg1* ƒROp}c  y oY LX̩́OEp&<ݯ.0^ll.h #@;?R qtzkn@*Ot㥻`_A$O'Fjs>1k$C|.Cq ²7XWEj[A. i@S;1.R}L셻(2 PY#b endstream endobj 3376 0 obj << /Length 1182 /Filter /FlateDecode >> stream xWKo6W(W|z,Ylm{H-D n0;|lq=3<0Q}K|\}xeT-W(/cs-l/Ů8,\t< i4Ow (WCI+lƇ\L bX,JpJf ~n߈EB(զz`AXmoU;9"e҂ /G(Uvp`rZH$Z'4?]-9@8b^۪o$Z$ rRzcGvhoZCВ2_$ҸT{{SP#66H8PRmw!1TgHeuR/VC ڻ_" T,;p!Fwګa uPW]nգht~ /7"CjQ AT8hZF4.a9&ezɪA !KehFB#HLcLA=G%O5)ej`а 6IsCLXha.6jU'V6jH?hhW_Mbus ^-7jkZF*,76W:Xy- rK u C-G}S @6X@-ezR/,erV0W@7q6 N.;-6ÌįoM 2 ߅Q;5ϩ#essޟRJE\CS K0iXdu /us,޵R]۵ sRa=Oi/`~z _o hz`/*r8=nj3XnKEl%Όzj #gݱs t~q͐ QaWmTx,晱'FdF;uۍGٕϭҼO7v1h.{' $iZRx ^jxfPiN/G7нC<.GZfW+N3mcߢEP{͸k݄3˻$ endstream endobj 3273 0 obj << /Type /ObjStm /N 100 /First 969 /Length 1506 /Filter /FlateDecode >> stream xYMo7 бh%Q(:-AC[#YA^6<#7ы͑(ꑢD-]pD]_إ&GAL@3D`BQ'ZKrE\#d](Ӛ Y]%SŘL)6Tfu1'jpBU C,XJX@:*Qj &.ŝ6u)6)MdR[nY$($ d$rI`D,Ƃ `1$$# U5D)̡48h#zskCGh3($tHSŽ htDL6 iHmUL!RfH@md$Ie6qm%XZdYs-1℈b#(9(1[8z\[8F#$L3ԳLϬZ1>Rahm!$4C314CsEH6~SF 䄚yb`N`3怟k,/B$d#(T61C؂f X(Jc)$k 3 {p Yv܎Em aEK녾ZZ#ļ88X,_cxb?WKJ>RvO-=3[|ڜ}>9]d]>}}=ٮ\j funyI"6xG !\~! ,ߜmNV[w_՗q+3殷ܒtuKRՇ'/6_qp~pW;Ltrl1V0o^88QGڎw)6m,G׏<[e8+T=#L^w8‰ϱv䖯7o7~9ܬ}~4nzQC'n,+/H]X ^p +OGٕmΏ9ǜ}/G^G8Flv+٭q>5;ޘSF d!H'e]d1rv?cRtaq67矹^F^f׬H{&D_>'s/{pwY}J܅M7>I;~g0ރ<\el>[=!`XNq@s>LهkW}͝P<=$[߅Mg'QA nWÛXMWV{c՚+j@NrɞBlOAld~k 8~4%o6ml /G aY"rO~?8o\tXA)8/x\-ء>D=zG>̻0 %S'>)ԿYدɼx`aE|NY> stream xXK6^ z6|䠵i[,';|ɒL?vݦ9pfGç~Q,`G5_gw/t4hE (&fʋ?:c$ܦn{?kv61@칶w$JfF`odU؊sKVw {J·#[AFNL$cB4jM[t' YN =l&d/fbMYƫL NWMV.UYmNIZrB缮ʍpcwɶDBU-g1vtA㜐#H\9Sv)|.P^)< с0v IfN)m.aJ|CcsmTV+>Wk;Rk'WmUa@O,+joe \7a(JÅݲ# VYc’5ܝp=5yC4='ccx+a=Z:jò JmCWsƳuNb]'aq9I1c|Uh@)f)1  !TJeJ3}0OfySь%=YgflL= 0̘++5((q/kw@0Pl$(PB|G8l]0=(uZc -甕 X$(e-2C2/B)2 Gy920Mʔ߄AQGPƴH4kL\ẹiCb+6J}^8!v'/u'C> PhSNV牶QfG/87/i󥗵IM+_»О`ѓ NLŸd>~>b`1GovBc*]+nrNP}85j/r,x` heb>zF@@5Hu Tåۭx*rȭ|HD|VʗQ}`^ϐb)( ;-"!bR~s(:pVJna!/@>ק6dqp[ux&]͝νQqlj)GQp.*rW@QgkRocߥ=6g2F\XS7%89ksMI1X^*ݢԨ['

0,JD9γ\uFDw{&|6YK'>`(TLwe'jv6 endstream endobj 3385 0 obj << /Length 3348 /Filter /FlateDecode >> stream xZݏ_2zf/J"i( ه>hmZl-$6 {g8LwC^l73*yIoEsk-nno2Ɍ1 j͹?Qׂe:>ߺqen&~%yҬHlߗq{<N֜eвIӛrV:OJ⡤w|nLZ;we/۾yd 3yǎ(;ueO=AMmw#͙xtxi@yv;Z8O${JkjS]GyR]Yߣ"2{joO-589 5ip6+@z$̤t:etsFP6cyv_ߐۆp2hދ8 鏰EM#m<JMO]F`;Cď<nnbPǨbK}\Kwօ'u\-57z 9U5b̨}#G*!5]WծIӚѶj Y+C@CH] /uDrǹOH6ab۪zњpd|O;s9q+g|čë0)Ӱ3*ZW2YWm@\\0N+Zhu!4|0nj5bZ&=v=H!ۆ73φKAz, m 6&G>֊\"`!%GMNn,#q1nUb18+ t`ŋS lxI*Zu T&>E"u{0QfO7Fgs/ {oS}&C^tbDz13 W8~̀ l秵N.S`%iwq"鳗(9Pb1a]71AlĞbP/!`jdφlw.R^3.'"EH"k؊h@Rܭ`/B )`mq[ҍ)Y( S>j'VU͙| 7$o9eRpn gs;$h0tzEE3pV`ODSmɩ(#9KG"9ZTHHnp e\8LA\\wt"b^t|dZp BMX PΣoqȣu}Sl\m-9rk(yc2@7- @DDgItM)@ OjSa3c\ʤ4bRP@"4ɲpA7ut), y~=zI4<78R( %r׹^8zB:`Z9z^RNȟ3@"*>@B027 aF2H/JEG|.D|R8(g<\yn-C9$#C7%"2rjsnV |7jF |ϓIEx́Bȕe;.<Ċ:c:ͮσȻP&'Cg3. 0rG9>J*=Bv5pkG_ ;ʥ[*jL[NCH$ 7xZrB?+rWtpEj .Eٳ(\iw <`:Ȓ]u:L*ߐ!J:6YaTB}&Ùˮ$5?½r7 Peq(6m%0Nh߅,R>@<|E PP ͼB<'5e%kt,3NeRaJ6ILlv>qFu0:AC8JI1_L!]50GFhGH|tߢgAJ)?zTi|, CF!(Tx#V&w-OQ݆p%r;SґiMWn,P̩P.^Ca o*bo\%Xuz*[J:%X* o-?wdY!q}VO|ktj8!4ܷ~1W$oWW[LcuL_</Q`fϬ4l! X!XEm}ҭr@N;5 P)qSۄ8B%#3,B&t؏ 4EZ\ %V42ԔMGaYicf<!2:3M?r^CC2- ]Uv+L'p CJ1>0!g|G@x@]lému(&өϡ}9<=?= s>ՉB ]H\< ߂Td8t^67+2 +R:}{l=_ endstream endobj 3391 0 obj << /Length 1260 /Filter /FlateDecode >> stream xXK6QFkoQ@C$hSCnLڒ!vÇdɦw45"9Ùo!"}x~Q"`ƿ~xqLh$CBIH4[DǏy3=L"I([WnH%[Om"ip+FzN- j`1J9D[7[dl}$&TMN0n Qd1Ү̫~&L\.Q 5&R'&Y`d"4rK8딲W^D C*.x]z?,!̵֮ծ4iurhFz3u65p̹EDX[!VR9ooKrvCv[1nܗn:uϫOk՟(mcz$. 8NbX r,}ԮMM}٬LD>'_LDnS]ꎆZeFB;۹jl!R>/B[h-fee|H^Ā1/A\s*bQziK' ꆅ+i8H"ۖ4ҳQغܥjCZ#IʮfXBM=4JeU~:s4iXyly6c{l}lstH$-E<=uXxZ ɍ톧> stream xڥZK۸Б0xnjqIUR( 0H۳>T.#l~~fN&N2{<2|gH)U=$ʦˡj.mO4u{݃q.'ӻfe4t-!x-̮LecG*~kSe?63OI7(cyt_?>13YYHDCml *TFUIT_hD0: ,VISH7ͦI8L@z@?SuK?/ա%Wx*dC I9U帗QYg\v'gETi ["veTvfi.CKy cbs p<:˺n]Nf?LӍቌڍ盧v=3\y2=ڊW9sCÖsٳxW>,;4Q,dF]Y,ginM;l!RӰ8ls[jMȐ$%DDH+Xh'ixYë= Ӂts&{CΖwd'N~ֱ_d6 ~;rqc(/;hOj-\H'sh&Q[*< u(޴4_(0=t@路eoJoaa$tz淋d3د5%,X]v 10rh c#}YO8-6ÛPEѬ N!f@jzvW6!bi9"!?َj;)[ޏܩSEN62d&x]O'~)iڈ,Ϣ A{%48pu4"~ 4`))@l+V=<%) .~َJĉүaE3o#cGsa4+@}4畐=mb@$r>53qLw DU1$¯sob=)h4!]$KB5jCEDU6{,v0ϾԼJ6Ut\)緓 dq4nO*\ dƙ.(ҌPt[q2xoC!?;$# v|B#* M_:kyH[| 40Ve8<9g*>@A'T@!% QĞD9tFVEfu:G7Ӗ.'xtޞՒa;ftHPG [(dnQLl+7Ti_:Δg3o.f&9fD1&WuD߆|2T`u α}8϶5%ZWN3לBSWP2K!v#joTwaW7d8h(w93ei0YlW1P-!cu;wQ=Z gRvFX%Oz' =2zX"8W8ׇB'FwƉ6wtkqvk0 XlU |@'cۊ0N% 0ELMf@9ExFp$UɫkwG˦4dES6+k]@[ 28eGr0JiHpR:iaj?贶: G93.;"~EX}\=XljDƅd qmĬ1C g"9{Z<]]1N߀6F#b\a?dC:E@tNά!FQFQ¼Mˆ4! _GKG{LweV7,7:W2 UdhOT AU/cތMâqa܍q@aG$$9r$/-~ؔi &΢cg]g݂tegj (6e/@u֪mhy<~sR pZ_ɽlCI5K8B~hwD"xܮ5|sGW&Hmaܻ9&V?L)gt 4٨bI8 25 Y3P9+ `x!Eq<ͷ@\$9Nl's#\uMj7C&ԉZ##8` 0zŠއ<`zt8zH쉹"\SfvC: ӳ JhpOe<˂9++w*sğ1I (2(NU':qwhEd5'ͷ?a# 򎝎*PD'Y"s~eSf*β0-i_B1g<ԕss;?M+󧈻*QqEPIlDHbC pzz|e^M؅}j? IE& M ~M,~~9 endstream endobj 3404 0 obj << /Length 3315 /Filter /FlateDecode >> stream xڥZIsW-TՈ&sITKJr*;R3&;${dm -$5v<{JvdWoT*aWqͮP*VvDܔ&ꇛ[cLdgw"k_>^z 6M4]eT?Ąsm+C^.x|{ϻ?oȋݭҫIVq,I𹪊TOͩyQQ<2pl7vy_r1d2yi[ \t:M$ظc=:SPqe̎8"B`mJ3߈,z8YY~I_q"f+")}.4n:v @*Z ֽM.7B-GYd7yYͷ4È<:YF /ʣЃN# BNj\ԻS OAv[h\4s2m_Wl ٨ؔ-#.n,[AyXuh:sv ſ~k4plFo19AZY[6CBBۢaʞf:rφ8q-j"-23$n+KkM&w)gQl@Yl #o|t{t/%Is[B󂁆ys3Ii$Yxb&g.w|p-Lg!s^&4e4[OGfqlK @!aDb=72@ ?'CuXPZa9Y@+?Xrx]QVP.I#%tFi:ſyܑB6]:b` _"+ -8L"OL3wM+=V-Ly$[6B j;{L)$Uʔ%//1|&r k ƗDO z)GYAՀ*:H2L1K9dmN5N֫k 5c֛拗5Ƿt9$Y0 'T*T#rúo5%Bf)|U^;q*n~0?޾]H[g.?c\ [C#eI" ABzi@ k?ْ{lnwo^8LpX 9Iu RAVBa ,ru&:l;in"Y%?xUU1 wϻS=H^ gJf`qeVUOgهH8l W"7 "ssțַJrP/)$[ &R"I8̱.:sݨ}8S$%a2̒LVq'Vh sU# i!ib # QT y:6I@:Y9T%V@Y5jBoNϓ*W!q]a"ZA'|t|5JZ| <8>;> stream xrHБzd5UsVM֬/[NԒI-Iq4$;있&h7n/>[y^tsW_+֥~X~[Rd2v[}N_W/(ElŪ >ɫ̻qOK"WzWTٳXG%1**hˇv [WUx{/WT;ot^wv64"CVF׀#=2ն~K8P᫡-X}$MMϪ1#E],r* bG"14WoE z,^1 @\B.A͡l\73BE * 2{n<9bu7fjC\]Qod=Q*bnPazȉkq'H3V-@&62 onHu_,A3ƛ0e{1UfXj^Yz-@SrHAO_R "0KCn! 0HK/P* Y70T)g)DMyAkoF|!'xX=i>聸'ߙ}BGX_=}iX٠b]t4@Mtk}x/ L7@xK*Ha(4&h4YsnAlzѲ뢢r!Q pr8RV̇~E؍R8fd%3 EۑƼ2j>@A`,jH&#Qs[JOƋ)Ir⫏|l h/HթC䂘Qcc۟0utm]d|=2}OD7q6 6+D+ &#|1e@z`t@8ٞa"MVF1!Jg+8OdBE:t~&=IzDfh(A\^G,#nw3b=RnPG`6MRU#=8Fdg ҍzF$ʞm#C6M"pM2^pg3.?#TBҥ!B@ ԼXi0gBȷG<!+K(-]iLR +S08qbuICvC_aH2jBp>^U5aǠGTn%1S]Z]~FQw[ 7Sqc_ɞ:P>nRU%(as "03mH7m ^|CS&ӛNqnF;/,Uj"dى0펺X5\q'ǭP$2q1B=y&S䶯X(xeF+z rPY)f}3RO>)J걱cvPs*\#mͧD(%qUA8h4 8RT}YZ|n_=¯d#%gz>W-58ΡǨ7kLAI|45ـhF!Hl4~"'ؾk1s5;B`vm,˝IpW.f'Ehw'QL̸ % M[zV dboNW@}|@!?S8 N6 N\-pQ]n,WDd5z 3ЦKH ? Y;{~x' n endstream endobj 3419 0 obj << /Length 2394 /Filter /FlateDecode >> stream xڥYݏ6_aKe bD*p6h"qi6֭,{p(Y{1 g3n~zWonx>+Xle9b18ginT#IgT5*heK(ݚ][>j3XR a9R*ֶ{,tm6[™hyI7cw#H-!9j&E!)eMGM]hݚA,7VhUۻɳB}`D@oa媜xtgIm*>P:$!9R4 )20& Oe(<Yԗq&ѳ"9xhGߎd!PP"$`[S+Y '(VQ VV+肳H ~Z1.(tKڐMIlm`}Ez}ɄIR˿^(Eh Ee=USQt(ԶT c.pDʸصf::HŰly2QFR^<>v,a{ӹhrmX0A3[Cۃjm*Щѝ =\6D&'ƭ^7UEP>A e@dG"Rȍ,&nCeg&P7!B_ ! 4j#}ɑ2!ƌ!K!FLrЃ=b w W\`repՓ `+1gsKNÐM\<! E1HЉSL1Rvb^URB,f{U立䪡Rc`OIZ.]`*O$,2G+C0x< !͒33(R4>kdIQF(FQHA%KEJP*|)8~MsKDK&X#{˽ ؕ*FŖ*B)jUUP*?:avA7h[T8ˑB''zًLCnNYv$w*ݾU6g5뵫vOu+&G7;QSշ˥/ B9w@/vKg| y'?ƺ1O/it|"ȯZ]ׇ }k]CANC_} W>W ~P54>Tt_]Ev0qWP~һNoou{5}5{jx5nuQ_O/o6mJQIԜ&ȆǓi H,9Uۭ}M} wq,OF;`q޳M_q0K9}]+tDSN﬈)ˢ+H(Yo*\fE5\N΃^}Տz00N9'b=9[zP@nD-3(~&ض%<W}H}39dZY%w5ZwŤY111KͭzulȾKQg?ŚR{YeĪ "FrѬ~y91|Vz " +l&nw噼l/('Nrɔ$C(\rI3{tpw͏lY ˄ ;3Ș# Dsrn,8A~c_gs젟P?I|?s7-6n-[ٍ '[IdRHg"Ob)DK&rZ@VIpK-?r6;3u #geS" u|H8c9ř<ū@Cy endstream endobj 3423 0 obj << /Length 1899 /Filter /FlateDecode >> stream xڵXo6_a  1#QDC׮[Wmޚ>6c %OfFyGY&i>~wd8YNg!xv*Re O&WTǓ4XFSwE]M, o46ڮnEe*ȱs]M &/:*:_hȫiPee^-`1`JŎr/DdPNmj\XAs^oʢ]9QmQ-3vUemd9^zk>5ف/5ˢ}nh,' ]k$5oy^F0Gؐ7P]1aAH5T =eK\ d܏m$S&@:v: )K28/B$ #L&,G:3!["t>,z'ϷkM.|ԴMlV{eI$"IMH',I*G`݈>nm8+,)@eiwu5H)6FUwM~4hPBy!mZ,{BЪ-8 oeqcAG{naעZIڞ^ޙI @1`WfɠjՊʏ7V97Va9~;Ԫ|kFz|z-DŬ*Z!pڔ dsNk怼͢  8wI#X?˸E|=IH$R{d(V?;q&djC4u")x<փ2#}ucN 鱗_nfVQьj;x*t Y(`"O*IL%XI;sC l΃  bLq^aRP81a+-Yn&S|-q܃Kfvæh7#s!t$YSK,U6sTuunafђjǭ ;k$ZZv,HySTcHLMXݍEs8`dD0pW&}o>;^ O$)YSe ܠ+\{+?Es!kg'.;wةM)*.ʠ`~vxIwזϨnlX)3R]noL1yLT\§[>|gueFSZ{7B/̷N-8_IYH}4 > stream xڽXKoϯrQd7_a7;l $́ZaTSU$ezfs"U]]b? /?\]xQ"zrrEh.na-?]]G IXeО+X.,A|Yy6[◃_Ttlו9U۔=^%<,w=хCu$LR74gG>i3IpX%V"IHq[n8vq :1(K䛷i|^&iPVuy[kG(X#Hn+QyJ?=hB!Py虻_ou;9z;'-lP2]uA]ݱ q}8H.쮲ٟ˽SD pUBj:TvLʴG2U:4R5r- o㳕ab4!K^`т~Fbk=g:)%5 HlvV@| Df37.KK˜.)1[$K(0u*q&~ꯧB>߸ 3DD<Ղ4aPf`D#N-ugqu e ~K\67dh֭q=̘q0P΁@E<2VFw6v5~+f}XwK,M۱ xƈ#NMjP5dtT͜X)YwdX-8K )0 ~i^oҘ >6eWcƠ/?v6J,[utp_XoaB3S+qHIuib_@q Eȴ{Dh_krD@pb#B9o^R0k~|HDY\L}'9!9/QHN8$E8b.2 gCpB\ QivE3?}I?_:ӯU{xl|xDi(O~WM&S;uq5V&;l(yw@cwnjr"QA3@1;R&ĚLM6hM{- fR~Li$(pg1&pFi ϐ /"> SH?zíB$AEmbSkţ@#a'N_xbv~VcU*Aqn39ƸJӻ2|&I8=鴷1&f)`da4xDq{jOpSK05kӃX2?:CO}>45-v?Xioj$>!$|QALHnLDoRxFNI^l(B&{gHzm_[򈝩3 0ʇ>a'f4IOݹ>r`'[ PѻKX8J.ˀo&zɂTa=-Ϣ6-b9 OSYp:0'ݿvxcJ2 *~IJlz~? endstream endobj 3432 0 obj << /Length 2568 /Filter /FlateDecode >> stream xڵYKoϯ[Ԁ+$qn 23HEb v wnjz c{X^=MQTUUWxs7/gAiُ߮11L"&,6)猧|s}}Rm^wUUoLC̴ QT2!p{BVH/h}]@,1ү+ib(hdx 1S q|n5(,If(?1$D1B x6[i̒8fFcmw2}s:"޾QUnytiTXLx1[]-`NXl__#IU;ʪQݸ'#XU 9Ž74(WhxLw2Fkf@Rz0 ;Ac Kc〸fʸIO̙K!xm{ް8}:یGY"hYQ3fsUؠK fWOEn4Q,Qf'4iV%Kp:~! /[)KG|R Z~]&Sju̴): oHfjڇ΢3B)ZՆL~g$%!ޔ(кUL3lKꊼ#p,jxY)SI 1669xAawZo;ɚ{:QWs "|\J}uW{0 oD/_C}W1c1Nؚ\0,/%-βOb"z=8ߙ *YfkN3-4f6_:J+_Πcsm *$4NQ*[0KHB=+/DUhģ-Ƈ|EŁZ7q'+7EW][8#>&:Ԫhd$MCdoM%؄drXx!~:r!3dY%O]KNMޏMM~JdE/:C;UivY78 ̛7#Os,bJE;-ep>1AplUw:eWN2O1āZpZt4mɑ+ȲVIT%?{ט9IiLcD>mQvBy^ d f@n%۾|Arf ) JvɌJb5Lpoaœ}>y{8 }$$Ԫ755㾁6A-$?\gµ8¡e߇֦lYLWeu%8p_&8i6p 2zM3 O ž/L|Q}^Z`rNvt}^V-?n_Mbk_Gqk˯"r+8bdt!E<+qLBI.bW6m4?|w!=j<\G(WFT-"#:=Yi>0j9 t-vUqZg$;#/V{-mELkMWcѩx4LŌ2PUم?le/NWIL uO$ᅦ{z.͛${'>v"A&iftgJf0lOG57V"0]`&+9KQ?I4 H gMj&]/3h7 )]嬤9aE 8=dXG-ouzI: r"=h˾7Kmi=ݰMiĹ-_]e%!COafޭjqÓ/o:eN=ct8W]CʐB?Kz'h +&gu:, fˏ:DZŋUJq endstream endobj 3543 0 obj << /Length 1957 /Filter /FlateDecode >> stream xڽr8y 5L$ਖ਼l}$TOmQjPR%>vrڭ>W?{YMO[='\ %A3o뿞ʕ"J0ћƫFdԚ=v,*c]IF5,:]TRbKkE;SFw&")L/D𨭛漖<",ѓW߼HOen_Em2jK[ݘS>r$Du5/9^Q7yK!o},JBD29δ '`8uʢŴmQWȢӱo};㦺8& K k ADfp5S4Dgg <Uv(C!&1C Qv;Ib:n[;u 4Pc%~b"UbЛkc%1QuY7/}#SQ7FkN ŘaESWזGg=,6f]L%#3c ;<̍*GX")c,oݘIG+Mg 0S}0%]-ba!ΪCl%呂btQtS|]SC/G-ۛۚf2TQuN&B4M)+/1IPzM1d-)/4[LV/qeFdGƄ`$Ruc(^ Sv^Z+5m3NAKe>I 'u7}nҝ5nZڭαG2/m@il/6H1cR"zj6лNQֽSHKB7˧+6k\L)ꨝf'o:-LNd΁^dר /kug< }^isE8$P䃀:y7Fu'\ANÝDrh[]}X/Jasc&2E^*X|~e^:)yޯIfx Ϡ$#qv*S%~^s*pw>ϣrO!Ho'57n7=Lv@ $;prUw؉%aBRq8W2"4x[@7 M#iG#h8ZGC R\W^6g35bs'g t`W4#$4,vZ׈*$L}DhC⼝7e&v돂0@"Di*o8h!(= y@mTf z|*\uQvqns b~.x>,Z>RU̐ O] tw%C˗ \ hw')y/nP'rdjńNv9 endstream endobj 3382 0 obj << /Type /ObjStm /N 100 /First 968 /Length 2234 /Filter /FlateDecode >> stream xZێ}߯U]})@0@!BkKaETK^.)jDOf̙snRȹSЎr& IS-J*9n(B+ ^% ƥ(!@Tդ(l\WRYJpe5SbXQQW3%Af6Zq@=K`xཙSs Rp(E!4Xॠǐp> hr Aq w%aRk&[M)iA'0j|ơmQ댫%ȐXd+Ng! R+,99`x#肳t& D-̕}`P9A_I29P'{*d|aZqBw><V54̄dm X&dCxhhM3"!bW֞=:{K]2WkuB:(jk2-bFt0]-fW{7R.##!"7zja~20!_\^o><^|7wm>[SLjʯM1oO!`*1G o߾Pxyywzdv~y:vxZ]ux,xx(~!QIv,LY>Y=ؼYo-uX\YC|ẕ́mTmu6Z}{؍ϓ͇_osnaWW[}KƛpX lbERbonMwGYee~~!uXлgrgbFy.kLhHtFp0GER,]m< 2 u+um{/u5Fܖ qn44mN2~lM־[ѭ yo,]b1rŰmP̍kKfZ?;<)'ׅ磶dmhksXհu,bQ:ޖ>j9Cpv&?dyTcItEۗ4[B˅p?Gǝv~Y9'9Or[~#t/0Ϸ8~׏د_?,Y? ٠b ̂nJpm̭zrl{*W+uh[0x=;2RNb^ӝ&:^؇j 6Jz1 <GzYR$0EdS$$M4w&_cW&z̞%-0a#2ۢRiI K׆&6SE%*6XknΓCSd X?PˌH$'8,:vp,[D %hi?ŦH<9fj[nlg 7,UPCХXL;+ uT*hKq4@[BFRe/X.HjZnQC34`ᶺ`˔< %b ~9Qʒ űC8Vیrj+zp Mj er^Ulo\xk$i_FSQhIY׶&4qmzim@fMXup" f`~a?vd endstream endobj 3665 0 obj << /Length 1564 /Filter /FlateDecode >> stream xZKo8W #bjdѕ_IٖW&_=XsW'{TSBS|sS>[XY^h*%!Ђ(X )D(d/cv`d3*z$uiZ( :8&#pYT@ tB5hF/9<@ *5 BqX BFg( h֐RFC Q}Yњ53'uf{ p5-7g'$,!C4Q '#0`$CL Me`s)Pȝ9>JHv/S~-Rkzd.J5EI'ō;'|m]ᡠykX&}-a{z[ ./ S5:,)_'ؔlL_*vwF*r=y]p'S7M'? vwΊb@|;jjJ6 Ӷ쵫ŤDz9~qS6eޚfdJL綴!y)Aq|ṼD )'>(Dko>s$C4l3ea>$PJS1?ѱv,Gem(&#)o@]fLkmWFA4>hs>)> QʶM+cE\f9ldF٣G3)tD 0G(!g~.ayCFTg ;qɂ\#e1Kmc6#lOrR0T N$Ȍp*qs 1 GfFQN9PEUt5S)|):{Pldb9P+ȦV)ܓ@ηk7"#@G yFH*XzP],4{]ˍ`H?canâ122&gDPqɪڢF9"A㮍ʫRWEB* {`d*3lnܡHðÈ&p!HiҮ.-ecUG:,by2ai3[6Uڧ:/KHK#%LAs1s{am׳nHق\kg ;M8.F}kX=`A~ wUݏ/]][Va;#MwB~5#zXȟӘ[+m[ۅA!4"y jǒ׵#y*6)fͼ6D4]ߜ&eqMU?x#G^pJ0+gU<~^h’ǜN\DfsIn^ݗY[{(\G6KכLOt$vpo8'&.g&B&&dR3'f endstream endobj 3549 0 obj << /Type /ObjStm /N 100 /First 1014 /Length 2904 /Filter /FlateDecode >> stream xڽ[M1pXb X:81tPE`5ky=5nۀeOw?֐U>XSg*Z/Ij@sAM*-984[=I^I;&!9n$mMҷ5Z«gR#O 4zҺ#icLJfIg`VLVHֻuc|Q %WR) \9l ֻolR147HsUJYG5ܤV̾ܠ~e44 (5 ۠R<0 a0Fcc[Z^:fӪ1B=8lڶ0v ⊎ʚ]n  FƍmK`0cs{Yiի˻t.?<<>]u{w ˗ɺ|s9}'rQ\2[YfsWm|1]JsN}v [.r!hYk;Y,0ʛݲv?Iܡ j5R'8,B@!2C9+U2t>Crqrc#đ+-eb*NMsEmh@sụ,  ;K < ܱ%;[FD;F =Pڲ:30‘|gY\I>"e_~njcñs_ )َRBuy1V/$)ze/tI͆Hn6zRUTD% zTlLcc"Tܹj`] Fϒjc>i' D`QDN{L1WyaOy `fu $=P`O!Ɂ6$Tn-#W֡HY Z#$!;BH9@Vhۭ*GoonyP!xӀ+?LHe<ݼJэq')}{nn:CF}M?.PUoǗdqv,:I ɦ ^i)!\ ,ν.֢ mҡB$cev؇<:Fnw 3fqnx&QvJt獼4YB\3!qlGF:Y2\ ]=װB@i\ɶ)S(#,ʀEdk#764ܪneM8k-5eu2UY7`Ѫ;d0Ǝ&U_ 1DP({#wi)$6,լamo+9x T,=ٺ<._>mo|v_~>mw׏Kyz jt+fOvaC+|o+uy=|:]v7` [3q~n>|kZXpo>Ơbb111d d d d d d d d d d d d d d d d d d d d 5k @\r 5d9l=l=l=l=l=lЯ6JpwYCi;:l֏Adž0/ WS(m9'2> stream xڽ͓6+|tHB4Iݞ:=`2&+,a[;S VUC`㫘$Q_V1'2+I)כ|SծNkUmyI_QH"#9ᑇ|Mndc/Hć[Pq@&p$+낊*biVm6j/!!O<<#r^vxD-HP"c:B!dG`eo-g'ӎm[A`1aa82RleYzhsP3&F'@VѼUMVFkJA8:UN[5II>NQyw[7<X7+޸@Mϣj_UEH cIQgeKy|o:X8e6a#!dk}-š%ek_U{uFDEDH71rKA@bI+ {].>u"=*gx^ӭcd%C7Vm (6LfVJusJ<2ln)!M09Q(uwYZ]{/wh7\Й(VM[5 :dhάl1`ax8l0I囂*&7C\n`'_Bqg.!p; B)_EǐhvN~3O Oi,ʎl} 6:0MntYj?6E88 C^]?;K89{Su-&b FQx:Ӟ-f,YyAԦ:RsRTe{wu{2m`kܬ*Q ᑮ]~xBT9x}"Bz x[cl>/PrUտ𲜓vՅ2tNfd@}1c jd}TNCc%Pǹ0UP %"'-Cfu >ĩg}Rًs쿐>ZWtfv3=t*~o /UwBzdB3KxCONuR}fT qc Xn }E4FyuhuV6F+$.De`(kRˆ#HŎx3OccE<^r**FW#@ t#6Xό:vt= N?i yYۖs׳ _nz`^u/92MFlFNg%4WtږlZC3XV6/WһaƍSUU_}DBD425nk\&W%:`'9Wó"rwNà/D.j%0C7uݩ6%ǭ>eyj7F=G:+@Wp3+HB -Mk2rơY5fR/}Os8[0TQQ8iph=oFOV<_LNRJ{( (GO4^%zL$tM̅> n;c~{?U%V endstream endobj 3667 0 obj << /Type /ObjStm /N 100 /First 1014 /Length 2817 /Filter /FlateDecode >> stream xڽ[K ϯ1ŇD 0G ڇ$w,Y̎磺HPwU}bIGRdK5M%IH-q>}S惑Z) >D|Mq;p5D<D'6FRQ8ޠ<NE|$ ie YKRl>pAOh&U/^'Z\*~lF=ʾبUVٰ}ߧF~J4 Pҝ4,Ҩg- jOWOGc^zJY C׫kL+Է@2SuFU(p11_raj@$)^H!re"c[skA1#eN E 91v4'X#*?fK '1ơŋӛrN_?<<>ߝ^uwPޝx۷4?ܝ~eswĖH0ɽuuz"^o_>ߧßRpx슎sE()fzܰd7\LB5wv[@Tм )J!5+M?JGrnjRJ!T+1ui؆m\Z.RX3Tӝ̲e E Awٽ e.TARЀ' Ivrc,yJ.E,Na  A`5(t"bypV, oqE_(  N B1M7bfNUnGI`k&*<%fA0 Ug\$^arbv,tQB\B2'Pc ht5F9O\f@]A(laobkXNGI9,:#Ykzu+УxS vxSr)b+#y9q%A$A@֞+ HU<<%E Db#nbɐSLn1yscn CY"!8Kh~@' J(CYfU>X3o<1)HyMb8 R"bV:Jru얫&z)WG:[ޏ{ڻW }eWWODU~WFQ'ޭ⇖go2Kx<Vٯ3 R'Nxv\H+ ,(cRVyjTޯ.%K*U{FTXK5ڥR\)F+4'_P]yUi%-zLJf˓ y^ -Mo[ΐ[~Aّs^v QERΧۥhGfC:oO湤?ro:}_O'^~zHrO߿~~|x~qwz<y-_Ο] c: mO1?aӫƘﻗszߋ v4V>~|p?w<~Jsy76\s^.J?8WL<]UJ (qI 45-@@r={ @y#G @<y [)1p $AA S S S S S S S S S S s s s s s s s s s s K K K K K K K K K K k k k k k k k k k k @\r 5k @r@nr A A A A A A A໵-B--7i)k'nwZ)]­^ve`)ګ^ [n-^/hoY-%;%G{wUY~{rnAY-[nVuܤrn(mnMGldt endstream endobj 3787 0 obj << /Type /ObjStm /N 100 /First 1014 /Length 2502 /Filter /FlateDecode >> stream xڽ[M%ݿ_eS}I% NI ;E>389kkpvNNk}Ҋ1 ,JX灔>xrjƓʴ/҆(hu7>yEuYdXh"Rouz}Ehטh;Q4M&+>5x%Z~%d ֐:o 1Cr("wQ)1穖.uqJຸUd ځDY`uxz(DxT5`ᾌcep1otز1oGIYw,k]%m!\ͥ\UJNs`ֺX'OeumI,>̵nHs=/# W{/`4 :apul)paiY't. rXM.pб:V˰˰b@ԒsV jzjcf2ˇ/O>O|_^~'돗?;૊ m֠QmTX8+㼯ˇ~.+X嫯^jdž j(leElPHD^.9jG Flb7@DhudfC'w$Gt*Q0wH<;1"jW"{uwP)(kA1FU0ϣ@ƜRyaSD 7m$AB)QI SkR88td A@BCVU&hq E,"& SQ 4Uo"n!>G <zAJtTDEޡFڪLm &jó+ "O5ʨ61GKfބH0`CcM(‡/3KnChGiaM@擃9֬'BuL +}g$DqIQۄ!ȝAO`r[`]=jl)'. m.m9XЍ=3Ix>KhET@+a` d ?K8čM'[uKWe!PK+P-mqF%kD=wQ r(;J/5NUG3FޑDZqA)5_q5] /8]LORLj tI֬jPvHAs2S;ivU+dAm,Z ]x+ NW8e 54o+D=OR7u$a.M8i"-#-J.A ƇpF= }F;[)ϮHU'A5_=+8,r&WO19~` ODc_a,;q y\|}n{VG+k";ؗ"'  I9kƎ<?&TX`c2B!T6"kmqkCBv@\z^(mF`3bzo<@ݵOK[.ǚ'+tm\#vw>F 8nj-HA. D9/\%=yݑޖ8Ɓ]x&B*LSbc,LsNT ݷͣ6I)|[zG1&vBcg1\/ b%tG [yR`A8J-nBa _\93v#R!8P^m)3NvBfd-Y596 ?3 ؄es[~Zߵ endstream endobj 3902 0 obj << /Length 1919 /Filter /FlateDecode >> stream xZKs6 љ0"{Ws@tY*i__ȢS-x( TxX_>wE,Khq]ȐAH9g<%O//\2)29} pɳtuPo-Xg"xXF q-PU]^QhH ,ځOx,)M zAûn z,IVԋGot D:k3p)( E~tg%r(rӁ$]\ XKhU>=@4ک.V,y".uRæU[,Xp8=;: WDERN! :;Um= &ce]Fb> 8>$ DLfV1 8g_i4snWRts(eA=:TE5ԋQb[\?2Jt: ,,:B mlzD:/.B̘M[۹"h1ktW`2MN"aI0FoDc AN%\TRѐ+A*`DQ *Q\i ل fd Uӽ4Foվ 3k˦.]^eLG~PxטZd.VYCX+u9պuzlTXoi1}Q%yWq(#*_4FT۩/m0vLݾPS;Uni,]fAD.e~s˗yq9AA{V4lT,d2J n>b[, F&X3bZR !L'v"= KʙKS-YW>AWǼI@W#QIDHV6'EE,UMjcN jj[]m䇺ToEPYC#n^S="g=7_U[NmЖP^=<`*t 䞲m P~Jv9`o,*}y )Y;=Fe[o6QzҼ0sx)qjnt@PGLbZ?S`֙2b_36o|s`}U=d~Ϭxw|r$ zw 8ڢYjweZ𴅘Om,  ΢ }wnjTP%ڪ{4J!#B" iLL^=%A bХ} DeSv3|> stream xڽ[]%}_EW) :}ج`̘S[3@z{KS_jK+{/$Q{ f?VL(T9^Hg2G5pY9f+,O*뺉@ܷ_6FVш>-c]sYGH#A֩#0ҢjEE{n:vs=@F#*F^blu9tTʘ3CaU.J uZq@a-$0zsujbҌ'aPi0T -ch vEP@1a8 80ZV /-lk <#&#I44N,阍il0X`;fsc]1M5:fZ ):fYSt&]7̆}S= 06ӛWn.r>7/}˟/|7o?>r,jxLQ[<Ϊ}˫W\\^?_X>)@U-oTxQ@!klEj^una;#ㅘV)n"4P" =.Bd(9ERiOX밫\?;3w?zm|yݏ>ޖo?<>>>ǯ=~x-{\(ulux~m-}O^)ony,ķxxx{Sx%A>ޮn^pjׅki~Oڞ3v(6@#~؂?S#)JQCH !鯂)?'C^'BP$@(i}GGZՈ$ ,ψV:P;"5 oȬ%#{I.#׃`\LBszvib0Bh$%X†js/ fDSZ )x" _` !`i|F<U?"*ilS;zm*7=H,N+a9X2BER;>΄un*I}Tl( y ٤O~^cK:ᾂf'i!JOLc$ÀAscw"Dj*{&yfI9wm] i6F$V"#ql",>kF$zҀI qu %b^نg]+@X{oc )6^,_ Flϒ/x9`>GRtN)|֨E?Ik" HbCVCO2qӤT!'M/C^(+DFLd5]lLOg B'/FDZ k|j\s?8p>~4[ =>N+;ۍ^hU lI.O b=t,OJAB.bvzV6Jj8[Q5$[pAD'E}0)Natش 0kr+@OC$ Zܫ\ۗFRh?NA@2 CY\jr$={"f!窳zS*!ĵ `o`{U8mHzT-Wv#GFj[%5SXBjK^ P 6d4Y4&} xtYtjV*:#z N'7hX!zB\2>Gk@7S6FPҞ}9=#M';XhN'zCWьaoΨ)#S>ќfdlRi[>d5'a.;BБ6h)Cҁ@wIe{g7xF`kK9N*R+2jW'eTXn /'HF[gH r>W$*K0 mBd+H왭Z!v CoPGM{06kp*{#M"E遲 &r݈4K[X_h"GɘIݎ{N 5^Iw!stdDp#v-t7 ;RX;~C' |LM,4N`^e:I"F@P#3ޱڤ:Kz)֣?WS-y;-I>ґb8).2͕"/ 4 ޒå+vݓ|dbB Sl"^UuhKǤ~Z鶎 N-|h`Mh.BvkUfX$Otf(~ )WU=1w^x7bnĘQ&/~^X endstream endobj 4012 0 obj << /Length 2118 /Filter /FlateDecode >> stream xڵZKs6ϯQZqaSɣ2{-DA3$& An7MSh>|F4m4 oB~\k}x𯷵4 xa?#m %RYH ٸ?nE[hf4Q6kohKω]֢Ȫx<Xި$ț#Ԑ/7۔ltpPnG(qMj)Ջ>HC=]+ } $a9@H1q霾%vU7)j(fE7@BXt7QKr!7zCvSm;,Gu맃I ڸە:uG@GMd;I$ Yd4 R $E2{-(Qߋ88G^468:}~HYjnHr{^DWEi (ZL4#~f,۫20C:̸}_,r c0f>&esB"!8"AعUV|1E;Wq3"εu7 S~} xoګin;ۡ#TGG_问HxU(VVL .'#>7{~ֲ'vU?fih z"NBu.EtK7"/> stream xڽ[]\}_E*U$0 o >$Yxd118>tj`R}ko#T{/[')싚xKoi[F5_DMKj6w%BDmŽO!&l%&V7XZSv솏X%!lUKRy$b쫑DT4w "dB|%IW 98V|Ւom8IGu<.Ɋ `JF٘x\.C:|7d%ǻ-8ݑ?>07rj6䌣hcJ'v:m=u9!+Y ' 9GIxG G?4L]Bhc4!WP)(VhQ\FE堂vHg >7PW1w":@unxV!DFtP38>a7^:09nebW ٰ$8׉а[=H6urhحCnKSpf͍qLuS1͋76]?Ï?8_._@w@>< }^HM͐_Ϣ6 f+ *Ϊd`A} )e'&\2id,NY{|hNFҳΣmKvkfivlBg $eA%{C4X'D!Ҭ0Y_XJ7e';2Ȥ¹3Q0tXNld}"hKHY('WN$xRNꜻ"D|!Z7I%] ⅿ !p3;vJ zY03i3X:DY(p]B)r\X9Hh&rZu᭺w8Ec@ p~{)|3qt?q"%^}7Ϧ??~m>>>ܥzӧo_?}M /! EEE|:XXH,r 5k @\r d d d d d d d d d d d d d d d d d d d d d d d d d d d d d d -[ @nr -{ @r={ @<y#G @WRJ,( bq qs[HF6\6fTKnxB\`$ ^ E*/ndquTb㐅!՜B$w*kÞ ;5 $': 0ae \E}' _jV_\dY>g8l~硜K_O'^"7ba/B8UT6V0yl| o P/X)sib@HgJFtt(jnӚIfAt^QdUe*i`W` 6o7%UN*5x7.37/*'H ΛV}vV pQW~Vp޺rm*WgCERw%oYC`˛,BQJrOBQ|2\IP߲t$oe[]%ӭNQHgR ]tM0mv7\̮_Ikv{T|mG(><ׯEX-82G~̡c@[XpV(}VUNG,6|I1LV'_'Ѳ8B(;P!߂VCu0)d5P` lJxzIpNC-y^/cksB˥2u0b9O R;7#鴨CB6Цp?) YQНav2^ ebaվ:z驾_il> A8^X9VdXT{)e)g#.3ybMؙn#{S)N꓅( A Yc|">ut>y=+Y?g^]&Z;YU/o6moJQH ե*m Q,{W(RY,HEyJs]G/jpk/ov D8"H= 0b,G.(A+Ug3JϚ'^A>H@ًby^IF1{Q :Qm٫9eWt6fHv 5;kU}fû>Z57'12Yd{氬xїor! x tuh3vr6/oeAd(u-,B΁Fzc[SJDte 7,cŘVTgJ> stream xڵZKs8W(Wa$Hd&3MR; X& 3DHd F`-o"Û,^ix.DL/2J aﲭ{kÇ/DYЎKxIS/ o[) ಘ8}A~m;".D'n,HƓVU( N誾akat]~=5$ [T7t [2GXa\?ʝj{6.5<ޯ]$Tcnx[uueJrݱܯlps1 @VsH4YxW#6^,K;j / a+W$8~i+U@qEYG.JJ2Aq`@one36OVUE-ggzj_8ɣkw ڄPƆ6Jk]j6 9GX*Ѯa]}IYM4B;|65gZ03) / D>wU!E3 tܙ4vB'9gkmwkwEtc>hmQ\ktȱJ[TjSH{UOvFO»`6/5A275' _I& 2f FXY,ѭ[=C4BES]m1h<;ݡ*[啕m]3 銦$JĉxtX/v)^@U<YLRR-ԧ:%ח%SSt"#"Jf GkZכDy-e7\a+6j%͔V)$Nf H*̵)Cw ٯi:|yIm1vk?;W3Ab8}/SM2IPm?..^UB<ep@c ''+gUZU5.q;0(Gi}x &?b&˓P]ufZЄQ('F~cxo[@Xhzt_fEM}mBW22;wnl#lVvThm ]x(>OL,$t I񭖛,%FJ? U&TI׶Qe  Nf}Ip {Zx#"m\.[6i_,x(#M/k}UFV^_磮k9W[W*Z3kb.us(kf*$H(ZYN6 FoU?&dKK!hbtof,%i$o͔6Q#iRAe;v?N&\t9x]o'G4`_:{f_@47R;{ w'^ w0(&<2t99eڍ2^@9hlu)^:Qk+] _u}x1e~8.uEBp4x.VCI6Sƣ zVaVݞR啶JN848ڀ Pr;ڼ,i*9q췔>\*w~T><T>nK36|blD{ Ƙ<#"a^ah6~˴  EP{U!&].Jb5)A~fHU`QpL!r# "蜼8wm4 WF<1 |R>C#;Ӟ/'rS{~{xڽ endstream endobj 4014 0 obj << /Type /ObjStm /N 100 /First 1021 /Length 2897 /Filter /FlateDecode >> stream xڽ[M1pXEV9@|Hbȋk׀{j79Coa?/V5uI%94ImԤ9h%ʁ'w㠧>'#Z9Izl$Z Fȅ99Il=:[dlz£\s9ndUZ7 Y4i߾Le۷mηаyŽa(qIf\C ʑ'ٞh$3OӒl($Fe*К\\?9mE)x%H>6zY֒TI]׳xޔ׀`Q-! NkO J4TL6΃pFDn 5M71,YҸn4sle̓ Al4s4G<K 6E FyaEx5f<$)7`ׁEb1 CY1] b5hYĶ XM|d &2U;5jejZ+ќ w^i|!T0XJ]a}=k \mZ5a`51' :KWB7^\O/x\ݿn._?p}A(/>\ogXv <`ZpFَaB$+= ; 6|8=}FxU4^́fұ)h$A5`Rc@㘔W8̞#`@ِ␔nGzgnZFFJ|EBNɬw"P9fǑa7$ ?&̍N VjMXYs -#rBJCtD66zfz SmHdbcIQivFn&uKvR@ [%Dv:qk?I(,M x\:%\GeL2{IŁJMroQQi,,¦HfݤWYODOJ*Ca  :5Z~Q TaO6{?^Bg We .^̈́ߦ_QXvX;b~un|}O>ަ=]?ͻI?\=."oWY~oP WO!''~؏ D.o?7-to¦~_nW%mnIc~O&.M[G bt:dZb 1r 5k @\r -[ @nr -[ [ [ [ [ [ [ [ [ [ [ { { { { { { { { { { @r={ @<y#G @<y 3g @<y yE@b11h1x z F YYYYY9|P%|P%|P ˨"#qEUl3uAbvqD#(*X3I(i vk عֳD[a4-WgN>=Y5V\L '7=ŎnӒ79G::wgˊ3zGeHKet\æ*":%fCͰ zUāp yY"lzAȩ:QMiH(8]7EL[)bc q+L"𗢘TgkOFM&UlC&K[ X&S店rc/'6Vc=KazІnfvd v>TٔxP+/7tơ^;x# kh써 q?5rWdz~] `gnκ8ۗ}q^͂]e|/P)3鳇#z*'/cҋ#ձ{3M^Raƾݓ0MN}ƞ5KmrI x Wv endstream endobj 4211 0 obj << /Length 1816 /Filter /FlateDecode >> stream xڵZ_6ODxc^>UJ}$NBgw;ק+f~3oi~߯1%Hyz>Fx %k̷ɟ}<*?f$J^ s'&qō„3Mb58ͫ=C-k<ɤA6ixhSZ%;kH:A}*\c4?%eQa"I¥t&u!f3U3=CIE*#[3&c U[kMfMM+%2t Y n R c/l:WLA?X{F1}BGY|/u/^Y,I8Ҩ4Tz/")-,+TY{ܰީ]V׽47*g(1g ՜' +(>5/6-u;yBm{S[%'ot`h%vEfǹ{T@̟ 65b MCٴk53CެGn >)k8 ɧ] ~a/xtTZV?r$J'^r CmOY&`[(шah$:j@ĦaC8 bGGA@.I,""Sr3iP˶~*2X@!zob h{iM-ACY/BAULq31;GEq|Y4$x8睎2ퟃD~#p6b+O(txx⣟#`2} fD(7ΛwYDǍkm2͡SLc0FhЭ%0ꗎa',p{7}p0,hGΈ7+Z/&H4S&怟O'9,ᦩa dʢv=t2tP w.KSmaܦ+c詂P1l'+Ջa,@b. c#ChC4-JMAզ@7wdTCiS476K Q8ӗ&M3CS;jR/Z,}z2'\9Jںv3慮KlSTV+"-MeuY#w*_hDhQ M>Qȵ R}%9@8!o `/zEhFQ>rLZf;\8U0SXuV5]tq5n`^t <˪Y jK&n(۹)s3b)_.Z\GPx7IU'/?b9yp$j5׎Ք;bn[C8c7 P1n1c+t0$-æXEb!1Ƃa0XrT\έIx2=|b9]OaÎ Otq)? endstream endobj 4128 0 obj << /Type /ObjStm /N 100 /First 1019 /Length 2932 /Filter /FlateDecode >> stream xڽ[ˎWplx*V~DN,-Z( 0b}a_E8^ 2{otx.iHVBƁA A ڸSV!'IȒ#HK?=q!n U-HJQy7Dی$Hh%H; v$z2*hBC2^Fm&[B*az?~ J'0$C5 `11'Z4:$``C\0gu+a2B̆01 V~, l K s+DLr<ٰ&i Mj#٤gjb6MW̦d<|䅯0ZƭX3gy?݆˗ww78n._?|6һ˟/|6w[bf1quTy2x.7MO} _|q6(%& i,V(l'b/dJPveEbml{0۰-B6ѴPNUXtl99R3 $ݐ`J= Eމ"E۔䑻lagƚ EۿMȐbnӂ0aa I19Ij1ve T (!t۩˃m&K&?_1 Ҡ*@dDE[>C32 ï߅π]ͅ׊,A}wg^m(/^|} z\㷯?{@^AipJUcPl^zYF+z ߼ 7û_pofRJ}G|-vȼu) m{P;#WkXJGxF:ׁ9s0999s`J.Sr˔\2%)LeJ.SrmJ)٦dmJ)٦dmJ)٧d}J)٧d}J)٧d\:%)NuJSr\6%)MmJnSr۔ܦ6%)O}JSrܧ>%)O*YR<2:el|(*a[zHsj#X 7'*j-k#;QxQERvfe"]b oբa#cW#W2>,om@"ٕ.P%uZ%<=b8̾%4NNL220q]'>bH&'…KB~\,)!-"3AƠ#PMclg:$|A5jL7+:_̈ 1*,2Bš.(N`(1WZͭk6*-N =5L i0 4׆9"fJ)@բ9 ̞3]K=jPxW%ݽ x'nٚFx $ s>+!lLz9Rt}ă,ً:]Uk6:1R _+ޖ=(`)i%w6DTCF;O:G4xrdABKϱN go Dvu:"T}Lt:@%=>(',ġ£uAucK4‚3MeJa{G9ǚwءBWWH@}It":kw&w(1;F'PT8,p;DuU"I4#(,]zvjEO~*n4J{? C::ABP3j#魝DhƷ#hEyAN v@>9Gz,+{?hVz6= Vl{qk|]=Ya ye~Ado_ŗ;e7LSwDLu/)\v=>3, endstream endobj 4246 0 obj << /Length1 1680 /Length2 1274 /Length3 0 /Length 2304 /Filter /FlateDecode >> stream xڵTiXVAJdS!K $ԍ!9d&f&,".U,*"W\*Nj]PQ^(= g2s=yX 0$h6"F+$zUH(ďf@j_@iLWC>p 1IBnH$@)Z4Sc TbRHp"I2$@T`D@&) b$h #xpPaV&5K13&H`FDK!'MRg@&]$IB>%PCL\2JMԐ*C஠i?8IZ搚$Zi'UБbI+`_l@.PϩBT$dʾp@Aد bqPa8AC#d(h- 6@[@ Cl2= <1Rip2p*B+!b ' 6QPdXP"eG l!8t*mfD?/GS!!&U*b1'蹃; uDD'2' ת1X Bg - ҀbSe .֠g̈t5x"D/V:-haF+qeF$ό|p'͒X9I(@YHFpۀ^Z2SAhp~s }8Be>a4!HRB{qxS|<<1̘)ѝ3CRY0w4dH:iPBDFY<$OooGzTzC4Jj-I 9a7pL eҌRx὿ k !S\.OBd :TGv_$[ Sٞv4e';_1a 10X7r7^;SŏlU|%lCwv,;]꺃 s2rK8ߏ\~-=eښ ΗrbrJE7;y< /u6ĜwDZKc^9ͯnUc5Jmmo4{Ʈ;ts+·W<1z^ݬꢔWXZ}?]>9ll-E7=YZ:v,70@uvצ[Ȅ.x{I퍜S~ ƚmB\_64U.}|]k]{AUZOL92!Z뻂WI5{+:MGQev*=RѺme! C{>Nio)չE]BxwiOhB򉚪N\N0exƷKq0mB4F.nubu^gEh!HOMse0{qU &*g?:j֪ya;oce^W,<鮛Pi!>dZPqa˟^#-_JMmw6n8;tɊޫ{ydv=ImӻԮ'Qp[7Aa@҉IQKKbUâRm^n18u㘳r e1 ~۬PtH;]rEZ|鈑<*j2Uu{#GOw=CWy"lUvmDE/+w_+nKb99s.'wﱵ \_=;zs٦*rzbg"M[]1clg h,AK/͋ N͝z3AŖ5ϼ.31r۴=^ܸ: ],e?D;7s}oLBdI%Yn{Y̗ BTtfobZ!XE9cs>]yjg͜,+YN.kVgUYK\)љK;v endstream endobj 4248 0 obj << /Length1 2759 /Length2 31611 /Length3 0 /Length 33153 /Filter /FlateDecode >> stream xڴeT\]5ܝ@pw$% w[yNss}QTdLb s4эr0sdce[ؙYY9$\fn GI37 ?bNt!Rd@` Piz;fU+ tuҁS$@N.6nkp01;[ of`h gVb(0?g pgʿ--X-T3gzpcejWX?OOU6p +?A.Xjdt+l y u :l`r*sSG/?X!2dqq؂ 8?C]9mos{{_snl` F@zYm8ӟ\`El\ XC7O_ A"<`=p_\/9p%˿ZN/?` 7;%%37[/V5su-.eu&v>.7x[_z/ h8h( *(c>֕OY̚h%—$|n ʦ R7 H v,֥ ñYZ9~m&e@*%6ͬTNNw [s*95|(q}2ܰy%ֳhkha ;!ά[l~ڴ wXΩ]!@Ӥjn.AY+'{R38 3[o({xIr]MTg룙?bMt~j񶛓Mh@+W-_#=$d ”qb]8gOur?K!9b/ [Eta[IZw|&"E?+WnTD rAXr1c ҁ] J/6T_Bd祣_PG f-y׺=^g,KW!X蒼M,QQ/Agqp\g< Fɏ3/I},-FhnXc;;iWv⟷ ];ϟ\ >!w(eԧ1L_eyO*Μv'x|.9>RI<7_;y{g˘Tٚ zEUy7QNs(VNl7NBk_ pC0`|9a+RReR~3nsS@GNG*hEh0OϹxIni+4b-eߪxo=w|:H`~"*+X׍v}uscuV;#觙]U~O@g"jeK薽Pn4u강P#`i\I1Mد5%y9q*J+ ڈ5<;9LVyRAmbJܜ2тy)Q.}oLd&a.̟,E//L{?dc(`&S~WY bp Kȓ1o@=%FcH[5L&/MLDB͂rGv!HhKGi9 0xf 4rK&NJ[FHWcȳ  ޡD.2!<sWuSt88#^C =T3(vJ z3lBSu7hu3,Jא]x(%ޡm` {Us@6_ dm$͢wt[Rq,,% qTrY.`:jP&@]yj+B-1vÙןp1xᲈ+_[xN|T1W#}e&B48ŧ%+xzVf; aY@v'nA$aJMon]뫢(Mz%?zm=(A-G Q=r񒷈PPɬ_$\sL†?BzvDq' BYuwl)dSrAmkS;H6$n\>RmOm69أ"@ڞ^2Fӡy?~>X {l$MsYl{kq)n|L̼%-9٘ qi%YctDwѬdQO>()$=%z_).j!L}#z)zw h^26f",N?Ro8 K IoZ4oyXJ`3}0e##zMDOAY=Yqxu6 rF`s@zb܆AM1 rTAzEj;{*,5n"-.64N^m{q'S:4^{âhz4c}RJ4 ,j[} vv7Y8}dː~vPHQ$9/Ub5Q`2 $([ !G :YN wUDc ?`s#UTS&jNu۹bF %7>bhD-[jXi哉U6n'x{yCEZkk*/!'="ڐ"{6+ bӓ y. n?րyK6 .j1 zMHEt;C­Rl4 rqЏ=Tږ-K{ O:oԂ(K*(r  檙 Z{|(Jul[(\lk za[FM$|FNJuӯ Vo!ߡ/9ۨ8l<#U=8YÐ1.r}gEdكU =1ajGb(v l%ί oN"aȘxTί%dJOByԬ|h/G<ň˃揫v{lێ{W8컈Uì&rx1H sYa⦰5y#mR$ `(O\/[7ͬ<*;{ץwDpo>sIyoT:|uK)zompv^g+=\^ݙd/JjϞ6GAXhJ҆M[6'EOJ*J쯓e36G{I ˑ1[w6sSg!'&D8ݤj>7g<i2WtP)Ho9ܚgJk8M}rqN2L ,j\b6"Jx2-@r_^7ZдXx+b7)K&Yd~fQ؇G, RgHOݮDxQuL%32E*6)#>Ja-g;'iW\#˔:톌6Tt?U6TNA+cO;FG^Rzh* /u.ÛY%ۗqxzvYnħZ%TwD!{!ÕyX>ߙ8K aq+A{kb]36L3GR.}a,}]pb~moDkRt؈BهPAZjeW.ܒAm}6q2rjU#dBeSYJ2kO hG ?mWIX!utMʓrr+TW~*Fn௰>[bJ2aR9ۺg936%ơkO .Ro0J=Ft73_L48-dD?n` yG!͊ R|3yTVeJj-/\SZ;bT3Kg Ď#= ,;FS҅¨  S!WٶA'(KKcMv@1ޒiCfVQTiψ-B eNZ>G,ӈAEٛ[/TYֺ@NQؔ} AXcr] ] G\P6ϐC赍cu7s88jYvuLr1+K( dYvOt[Y-C78Je (xGÆsQ./4닦:h!yR_Ր-X!N.!7:ńDQ??g ""3 Hm?Xhc2^;>7W\ܩ1/;̸U챻< ؔOFFi_tT/;TțRlMdhKM/e$Zߏusˀ*]bj3ML^Xx&*>^`g9 KJ&q"^vuSAcw7ܰiN%ES>Bmhݏ($ Ff;\o5~ebrIxح[)OxY-3B=' |T.sΓ [|Nrbp4=9LdrϿuV24E5K֌ajp q}Q4յ/1@kB5c:A ? ΰ3 !HG@wtbtW2/nW+lK#O?Eٞ)0geknzCq*SW xGxSEV(h*fP̲ž|+VÚh$#ǚyYϡ^1_ 8k{!;?/|x?$(p7cp}fjZ!t.,{x;Sϟ\߯^}͟i-2N B8=K֐gPS fO ZDw V!˟LPcxp ߋb sZ}egg&9 sW슯o^b, vTĩjN-e^[ =I-:Q4Ĺį- vz3ຠTUH"2fkP^'EkYxTRınA#SXjr23JL)XxAV^&}g-4*$uV{ƺİ3zGÖqTm:ބ3*]E"ȏ"!%zXmN_JvPqP}yFDw͐c/P]8J,# 5=h!^XW؇ӓ[n=5Z,<&FoZrx{tȰ,dE_Fs1FBoH 01y 񒱿kDۥ]q S-gw~]yJ~bewzJFʫTxUqBku9Na*Nd"sH&#iy>YJPf:LQ3y(Ծ_UsϗI(蕅8.0[>-$]ʦmbb?dqLӽot?XEL4I#TGl,TSÆ1m>=pi4bz_gc`(ɿ|P“xK/ط~>2p ķ@G1R!-Ǖ,Շ=dNEx&lҭwOQ H-g)JDN8 u`s$uWWDx+ sr!1>Ȓ]m2&'/cKE5lRa#0WjفAbeg@}ہL!-8b<vz{ f~b< %TSGXpkMR*8P?k|ib|S_d7m;9%Lܑ(oqYխ+f>d3KݖU㷥zJT ڷǽeRVF> e,~7CB-L'pq޽$?)% n'eTsդrO=jsmiϐL?pV넲N̢W7 k,t!8w"0H]J3 9(†.yX~o/AKgV[ E%G`up[܉R^>DX_v6Q1p\㤌 jZ'|F5$ n?҆",Z:Pypِ>5 5Nz :>i9j͕P\nR&Ǜo4b'#â #0) E fɫ6eu.סF '.E@ NMvF /3U<ޜ.Uy}gW,bT# :hl=1̺p6xYE~%k8f}g 59.:ڏ5 ) ˦M F&:˞Dn&a.q0bwW?/j[yԪ]O ^ܳT8:r<<7K Q'G~tH֥0S ǝB|O+ɶ%(QS62k{#]wGSx t&Uκ*H/C,`:s!c۞IӦp-T59cEk\B(xtw/3[BLGvEh!OuZh( U_lV $8qY& m]4l̒~c,$c?R0>FU?'W1(^8~8VC}^BC(yyxF> 8ݹCkdKFAȢMIp)_=](reb6#(;Klo8/KGXasTklz{@nCTNdV]d6j``ޓUq~5eh%qDא1bm폃\kޱk.6R/3U|S`f⴨9d\lR L)֚;\?3vw vY3XW ICr$d-=@ȥz!. zЫ zUE"+]!3Ә:bI7{]qA-XP!Ȇk L)XHQ9ڮث 6(\ZmYʓԥF-*PHU'Tϕ5_c, A qBdVNSJel,Yb%ؓsCk6F׾3-ᒌ٫9ݚ<,25 IݍY*7&j_ĮsYm俆6ݟöς7ϓe„mK2:$D.pira#O`8;a-BS>!h(5Oo;- E$kvp1$RbH>40қfb ǟm7^1>mBLi#Rw{5t#8NtLg[cɖh?g8IH,2<|آhXtGUs45/HfkoUz_Lwk*vs\Vd EjD/o{j_!^ayt 律N% W-zv'q>_bkКJ Ҧk$q{rBm^"8̺eF6GlKa<5*#p8OV;ND [j+O48:VL>xswH.4M'VHR5 =ʇ7s6IXv>YfwNM% =;*QX+qUMhX%_,ˑbYڹJp̎g [p6Hs& ZݾPUanu ":@^EB“m|xKƗ -C°iM mêϡG3)v&*/d{ BפUf[@s/,Q%m~PW꠸6e_*y CX9gVbɥn4G`'VD(*$gM-d_cBnċ6C)+v~$} DɖIԖ<,b$۩xjy{9%jBcOMEYd5K 7bOYjJ.NX *.nZ5[ BˎL 0pP=42a)C{&ga4ƒ^.&SK͙0sN>9؞<ӭp,KQ˖4R R$q8jy9k+O^M14;%,C,,_F$XTG%ATXH搈,-F܍]:D`` }h( 1 sɗN0՚nr &=16<5`wa1‰n7؎[-EBg4WCYS-~M+G/ݛ~TF4T _!jLK{bD% bGK!va5VmigH;E}r#kWW([U-ڦsTt6$7 :'d+^t)1*_*JMs̿F{Y^P"S8< ˯rs6XS5iCjc<jCx/ T!N[ )SZ$D 0^R-CgBo_1hK2wgTR7bazH,6; ^n iw5ھӮ…̲ˠC_~9+Cf!,x"{"$gj >SSzN{\sͤ7|B0Н|eWnYOk2s 󁒶nJ x}VeZ>|Hgav .dDUSvHcA-q@$7oL`AEe< {{Ź;Mcg}ھ릥`|SʇiP5\R@I딴{2kvO  f\­Ș۟g(S|, R7JM?m4m𝬀0WrUIzյOO+SowRtgHٔL 8uR=B׵mV?^0N_2k{F@PU]g2]鷄_^?Qe-i>'. _@x):gؔ3Mٟ1Wcqo}Z\ۼUm.+ .g<{Oɘ d'˅Km[ irα"MYxq}՛0sbV۷|x?G#V.):WU% , oY1=eIT'72v08]F ؾiĎ kp _ p_=*NljI">BKE&rx4Z,[)SC,0%)s+U0Xq`M5$ҏpF쟼 .jYc>WX5Ē>G 'y8'&B#0w4-LpEOjEG BS Z+U$D/D!і|%CQǕG̒`+vjzvސY#ǃoFQ,$YZ۪tW͠f9RK)ܣhFC†דzӓ-HҠ40UN̂mث01Oٖ#X \ȍ*7&dGdbﯼDa̍s}ud O;ZО{ UHm/\|7;Cw'Whb'} xzzz`zx>_ 'QMzw=~S,ݤ5!pK2ڈ;̚}zlRnB\sNASٛ)s@XDYrcPZ?0#_m g3V\C0="֭3^|־q%pa5JK$;1ʍV-BO,p2pSy 46Bݪ<"ksFF>s[>;LƑ~γgsF 7%<N _iB_hcQOd+EC C#g~FNw ٵr/r&, @-fT4Ptӭ{!+@b,TUiOPWK?7>~X$_ٌD'+XIqS$7ŏD~SrH&5^V yܲ9]Z9-v[\D{,x#(q8)`({^}IS`zoM94XVG#%>GN,mD|5'2L2|=[+'+YhQ.XJ/ ޷+c &fHTWۼ 4Yv2p$C?'F뭁vTU7D!v5Rq20e#k{d8j90f9qm>UT϶vy&,lgY:9s3`ē]zId'kӍIگԍ>;L"m4z5Gk~ɣXfQΌp5ˆ kd:A${ӯj.dRSZinƴIy+ْIf&_VPNj8o2}6W3'v{')Kk5^Wb^X"/ .:JH_΋ T7ͱAi=N'j ɖշoN^=yJfQ5.8z:K/[;#\h+ ]5>*Qf"РYqUr{$g}iخ'Ĭu~?[! Ql  ~?/WIq6J)̓ߓTt7jsN({+FUSf$!WХC2Qe΍EΈTG8Rw 晟__hD nᑔRGSOc"-EĘЭ>0Vr.Nmc~ID z՝mi#|0-)g2{p΁JaZ߭TѤ-I'^sA6;\>2t9)3٨RmciR3-m~]<3k*sDWe::̇6cdC:[R-#5Oy[6 2@>4!dVPZx fdg 7D~E63%X%HZzFNQQAA{{> PvgF;Smn:Pu8C6 _ DX6pun^cY^Whϡ9׶ߢ.94DѦcaGH#پwm3S.TĪaXV4?ުxLFԩXKNX0i@i-g?얿__Ya6N;'{nP0ct'5ࡄd'Cf_Vk1ϪgC7\"TI#PrhU9{ﶏ2@Eg:}wPqPE k0(1.<{?| !i?3g2HNWGӏD|cB\"1'A[EVHzkqdQŷC"MϾoɆ WGIE?7+9 Y7Ǽ@(>.# ېyEb~#|eˀ!͈'u9R~ V&plB.;^eERlDhxP]J]&,LQg=LڜMN#Z_t{:wZ9 [OȼV*. }TsUzupU.Iq[P}P$DI @H` B}ð[絙/cj?J \ȡ&s n/yy1J2SN/2UG{K|B:\$>HP'-ιa]8Qήԅ̄@Z@ ]TSs+^./DŋQcOzQy^NLqN=ʖm۶m۶m۶m۶mm۞3g&7*SZԙ)+m3n"қOYy+ 0AΈ-دɮ" .(/"lgxM vS#F?4vMVV 3ؓllJvZb#hXl}2k׼IL(պ$ vL;0vJ.ET&В/}<_2ᑮ߰j$pC %?HRb3wA?۪ɒWƻǶM`YΦ<Cbu2ܲ" mw!xO Wk¼yQbzFFXЎO\5ECIId OeiG2&v:; \[\=ЩϾk[}9Dsk=}1E_kR{ 2ꍻh.j!,wQ7bku m⚾ґd)Z:2|rTDl/a p+IW_-W$j3Ό+_2G!/%Ϊd|삘%ܹ9$LP$iD3M\ ʉh&5z(-")j]@x3묫-+]m5"&i-?;?#h?5eA$7Ժ)F~l pfSRmv2"9&䫠_Vjy%!V?e 7':뇠%0|ߡccpu{4ɮd QR2.&[|*&0e;gc]/`!;[Wǵ_/CL&fŅ,>}(&74=Ɓ [;Q];hC9(7=7!di:IroKB=+MjU%Ըlߩ?Ƥ5rs"%p J F?s4^Rj`THQ0eafg ݲ+_PSA_B_cvrAODQr~mΩZ, \zvPkly<6Pf)L:DRaYOt8hY-ƑGPf`KdiJFW;Ie QWGQW qcE'mC2ydIlcwCt[ ΅Y'kbKE/Mdo5Zmx؄3?I{n)~B"}'lz"d!c ;9Ft({t2~ =5j籏0VyVû}\;>'!魈v:,' _o+]1syPz8ү. H$S\)f8BQ"ɮa3K%,j`ʰ.Wmſex!24cOR)pSy!6c@E IW,v\Y[ jhDn%rfhtN3eN˚9_RO?A w>.A d"vhp+Ak R [l 4w`~)g]k 2si#d\nt+Mkj3QY9np wҪa% "8HkJD`D2@!LןvRZj![D)A ;:%pEzA +f0eQߒ{\yQƥk *:#wҺGsKvq1pȝ̋6=YH#$ܮ޺b揩V(s ҏJүȐn|GB6*,uL5R9ZʜMj>(~+dOmµ̘s}!u1 iNd',HbJ+GٷI+ 2>0@N*!Z-? xnL|>u NCx;^FGחGe6P nNn Dg"XCŸ[umɰGXU$؎bX&yTh)+_I%f-g3)tpͶMFִDPUC; >lTx:- O7G>YdP/O%U}js mQ'.OL]ADs~:\B]AXp #{խ+F֐궚Uߎ( biO慣)0W$$p$%^r+"bGFS DZvM!QȝX0}l}FCރ 'Vkapt@ ɽY緷XsZ\߹P R=I?z kIO`'ە`0?ӐFLo{فFv3F{ë )8,F #44ꮔ\`y{XV|R hxtne&~owQ Xb=1O4VNbYDn b3 CjLn!.+94q@1@G^|3t c!4GU:+d)wTxieQ V]ыz,aʔ9- j ̃vOĄm4 N;ȯ%d[T{۫@_L,bS@<Rlg*lZ :y9.JuVLgfjxD3,pot n%F@EUŵɳݘoh*0:Gx}@bA 0l2,6oe +OaVݜ}uR@=7A:kϨqZd,)f9 {H ۄ0BVr;ЫDi] 6JZn\"}\Zw⢗Qz!*Fnk/tSNj$;#T}咪`^ 2`V˓vϻ)3BЕs=K};;Dv3y*_0s#RM9s(҇< ַ:B2 wX(PjӜ jM} ;ƹfW1itwj(2oԮn8/E`cVs*L~d"}c TD |#уv 5b5Cy1$72/ۅxfe-6?(kLJ+`Qs ֽPc LX{F#Ey ]F`zz+tmYdYDÛ{8j`߁,N Ni ylz2"jgZo/?k_IE6]g??D+xh-.pO2nZ1%z k`5fe eاba4mЏy%0djQs=Q° :[@ISx)_>zE .U[WK,ù|$ne(]O*贏9grk[ͪ? K򐘳C#ey\'tpScZOH .ڦ&x75 ٶmXavM1J;ΤwAɎLJ/{B/| W=ӟOz)gۻ@^~ӝ EܻQMMYҹXHMfYPT۫ V/.Gx! k};ƕÏ03~fxt-KؘbZZqò 9 zh|cT.px!lM-&~X43V઱"!OL#|?\r Gd@Y ɤ͌$)I4vg)?6c) E:b_3EDYJx, ɂ7+ !4.㍧ª LiHvHc '$.Z2Oo-RE]ܜnMV5w}MΡߏGBl ^;Y31z/9i#\$!Usw}Iy]?`ޚ {Gwƻ.bqt(e>i-JA7컑ݬo1:׸vyeImHyOf PNp U|–$Zxh,kmg'M qUObN>^KΙ P?bs+X.u /YjTEE'NEVkMš +i=mL[]BkTLnJW8;vL\Kǿ-Xv"T8^W.C BhqkY@/` )Z0 J-9nilqH毵Lk?DGũ;Jki'||qm| woJ+;YٽN`=cv7>QB:5$3M"% :-#:TK?kh/XA b |!?cc@ hO &ķ/`_!#ݷk(K 7:wmrITʭ$^ְTC uk`嬊>灀 H>BKP`QUY NHg:W_X9.ѿiKՆ@畟>Mk՚vn 0Q2 AQ ~J,PʟĮp ɉLTP`&D-\A `A1BQ4Rat 6B\4ѣ&6Xh~B[1}^a]=/Cc<&?io_bi+Tq8 :+ΓAMPq4`חCә 6{o} #7{stz1LlƞH:#e$t,AK'F׎:O#K%k[,rXZV"ny XY-G ˅@}BR}(.^1^g8H{!Wx#@S$ 3-KNLB' C1/ ͎ 66lclM{|0ܤåJ!+K\ @u M3:G%[;rA.,|RQVf 2q n8a #͆I@,́'*1^?,viM7mAy "},,@Z/fw7bc6!Ħ@䙊$ol'_tK2IvTziG->Jԟ% \1 ئ(S b9aťvtYnr\`3HYtrĆeR{Sv>Cax$E0E1A"$J?{9ẅ́^Ѧ Np9nHL{[^憿VLe'(Ec%Q-ES̭,RvKsn^gͥ4F1hA: YQx]Aup+RJ5$(Bh]UVyf58hoNZ4oD 55Vr^{R6<L鷈uiԳ$ ^ ۮqh MSg  VrDY[^g XaV{_kE#.ffۦ-\ڨ1QY(քGR \3f# D)UWAQf3a?8^6%ھQ#;Mo_"%Y!F&umr)aZ9zLLVz1(O3TIaCWu =BL0&r gonBs8*g7aW_Bb&мJbѢQ3,s!Et?mFb46(7KF/C8l~fXz9I\o0P-F64FPKM` @e 3:Γ* vnbbv@P3%/V]> ԷC fA3@2k"A!y;PFn0uCXsyA cGivl =89XJ$3|O6k g{}oޔJOg%bߩ޻:3,㠟5]XR;d ӆI+8I 4YxMuR$=F#t%PH. pMt&]d2j#4y$c1`)I#Ϡeb"$4g7$σwYP!t H[%9{YsF  rs/"^U!DvxX44{ mX/i2!ttF6N}?M=ru~%O'^!uoM`885@v?y/+@_0'x<~5z5 2u6rh#UT)3S0s?j\8`&͡UNҚpv.S"MņoCe?ə5?>-o|Ph&Q8Gd^. 8M`{U= ml mP3@yx@x7D^(l$]X`%6/s!^`FX]Eݖ[OqR{i/сUK],݄R-?-r} V!v#dt4>.@J3Gd=CM<`X]>)3c ą8Aw!~n K8 }9sgi[pX~b h^ kO[;}g2Y_2npmN Q1Cm)m +|ߨTf)AUTߠw/ ^a?&Nrg-]Dkt{kt2N(G ѿ.=%}ٰٓ w.vEӵ @.fw˖̼g<J<;_%5]\ Au[AQ@[qtZ^(|C+ae)T4m=#?-?~ BT5RO([(:{Dgα<4!j̄уޒ|U )ԟ >dxy"VZ-uO91uPS 3#$1'%JmWUƒ!AB}>?/AF٪(ɜu` $ nz$gΣ/pU'f4qN9wI']-l#\˖CZ0#JQ{IegfkvRmA'1 [\RUjF؋R-/wXy;7CNߤA~KS?4yGw|'D!`OK}_F_JF!~ |┞dYpNǣ6yϮ76ќJWvezK3&F;\>U k_.150f֡=&KcQb)-SzJ -Wugw 2Er_'#~?F}C) פ.떆`Tu#_[%gY/stY5Z^,(zUjO#C~PÓӮ$1V anYCʦ'8i=:X(#;;hKdPbo38C V CzV.[/OH&w8T'OG܎bN''P}2 ճP kڝEP{#vu]+뿠6Яq4V AMj9:ݜ䓞//䣭Y:c<ʊ ܸ䧫}idWc_w2`Um I-Eߐ |r| v cRCi-,68F'"+AKf7YBd) 8Td%~=K/85>gdSk"sݥ<4 FT ')( O%f81\|%͕K̼hB+j#&c@UmnζBƥ,Lߊ5EgŨ(s2Q!(w9Va)ƘA5zoȯvgٶNpن>bsa^C⸜0BD({j,^Tm` 0Jh"UӾ]܌E!%74$SZ ; f dp?)/Ѳ D[150>F7gpi7`w RnlrԖ"aVQExǜ6D8Eiq eգP6# oSjjŀnn!9YM$\ Zy_U'|}e`5PPНiѬ+iRѹX41kkSKtKȜQ a[A)#4kܝkM9/`0_&`;*kKE6J.$bFz,V(I^a^-y@a6l߳Z؍BB3b[Clb %.C ukI*&îQ|d©zwzǧ H ">` "f]+GXV` &V"}e,9{ N\n#jUc/N^U4L9ՇpGRP 2zG1ƁSW!q)5 B;z磈>_h /߀ w?ȵ 建*q",^߮(=?칋)RPc>"F×Z׎niКBfytP jJ av.y[0ڻ4~!}n9LNГ/9bS !kaнu#>E;#Q, a>5VDٹf_?_o=q? a@!Iұ YCr%LngwdI1SI> <ե/nהi@жǩK[䤶 !`q=Ri?ם$.Tdx}>mn2M*C<ͧuDH4T|֏KX94R%x/H4*&{|7QpM;_/gY/Q1?fjuƲU8 ^FG9>$=4~|g5HsyzY9i<eZ'nBf/B0v|Pr)AGp`s1މW\~&j{^fo#s1^ hPXlpH }sZP;YoԢiw+i{籞 %ǃR/Cn7oX{1Ҁ rqlpgGUA-Yf',uԃs4S!+TbAEoiD(bSbjIgaZ F> y/jOx1G|jX -0]XKfblYIz=MaGc#8ʮ!8uff>[7›2SvU{'No[L1ֲ& &cGBPmV1YNaWWu]OS=O|TAJez6u&)ߪtPSė$2O~ 6>mD/53%!Y~LIUi6.3|@d9jU_KΤC?^~2Rw38U>EʹLF4`*T;|voBABL` 2U+\K7Wf6; p)`ϲNt wH`:jF֖BwA4$3=,L%lrp ;mEŤ0if8la̱,ef#"aΙ{q&<LJ8r׶冒;KQL6$-ex)b![@O3 Alݫc|~wIةII'g ? fѯ P#xM*N窮:te}@fEdlBQ^ `+zq \N!~ڰKbM>L^f*_,'HqUӞEgvߑ~lsN!!5!g;x\ -NozjJX3y]rA˻, o#oLOB'Zyؽ!?I+ ady"6~Q}{ @11: Y)VX2k8ȏ{m\ q +|q.]5 Hg% ]@Y30!Gt3H1ZpG4#pqe?RzBE&1$@vX͚p5ֻ _ x݋ K!ELpc:)K~9)F| (_r]]'h\FY+8v Ǧ ߑC?>`Y l?ne09AVƫ~ZnUun/5XfAl_9#gCI!EȽ ]R\wk/U>RV6x%xg7ЙDkI(wD^!$BӮ?n3 .AUZd? Skow.jRϸZK# |+qW IRa\IVTD!iwu@9O9H(P^Gq*%LK@pmK߹ǡ0ց_L]뿑kҾn&:U{ Α&5&M߶Q/NRgÑl(wcaĬҫu'Fw!A{ E$\i SHm⣹z>-DMSvAa6 G|暰rd*Γ=42cE6וUWۦppggmA:ъ.O4.{CṶ^pw(,9$d.xقe[ B‹R[}iY+VW}9Rd[3Kk28QnKK0W1>_n$§y ~yp6Ss<85h,'{ s=ܒkYW- :"\qQ-R725O<?$7k'!9i|lq6ؘtQ|ug Ҵ$E+~T-+6_а3K>SUԱq)9anא.4.¥,#qi?vH};^v&m8\;8CQ#$Bks@kߓyܾA#,ʴ+/PVxSƉ ./6|خǷ;nᾡV3x, !cq9`J/D+݃cձK>٣D]KnԤB(BdSہ[Qt8On: iܴVIB&1mE\LhM=Ń!ಓKhޮ1M-tX\7ՠBTTRq~\0} D[×6ܾnۼ;;B.hQ-meWϘoQ'N@L BpܲV)tBīM7}4xԝ4p.V1qK-L k̥|Y$OnorJαQqs֖ @2 5of)R8w=Wsn>s@t_xLJ?O}D#aJ2y.o頺Y'`:htuwBf݂ustN.[צ`(u}e QU$hQQbbTrAU u;6ԉqu y`R dil|bsyP O컬9ދ.Q &p@^w FJ^ݛ;YU|RBŹx88Xp=2ҊB"!&Jf&f2d#l_jH}=KmgO*20IfԆ`-tQ9QуFgbaZ,i ä\Fn",߾A ¶{* ,n:=X3^.0'0yXN?N8M=qQ`d恰|ܛ@P0=*q 3" m?> stream xڴuT>LKJH#0twwww0 %!ttw7R=GYł׾~LUI ( 911& 6v&qJhdI88B@HI۹;XYX:lqf5 `23+1 |ZؘM.@KCJ] A )lgv?.Z2I1eM)P &oPքNWSbchp0I5w@kdl v`#` |:m 2d W[P2rB$AN!wMjciO" L!N&NΎl_Ϳ{(6.w6lS0_s+o MILYNZJCI2x &%0D?ѿI*xYl|VȐJ$֎ȿ哴vpg]Ak5VَE de X `@7SK߭ffޞv`;#@t4qޞ;!̬L C9(T|2CO!P30`4GfQ;A3?mlMl-FZٸwS$[9J[TL-rN&Y!;I9 ,ұ}gxESk B"?OlfsqLLܑY!3d!0N7{# ,EHA| V`,ES H??O?OS H??A֮AhA.:AL Hއ?gm o 'o|6VHq d? ׿ 7!ͭ$p.*q@ vv $/h0D@Kw;K ////kAIA_~?d rCc !bt6uO@{gῥe,/a tC7%$H? ܝ,&dN v Br BNCj)HG H%ÿZYϣ/!` '5P W;Vs bՀ#lqq''6`b.6.M_z,?@yal*1kHTD<q9|2$ ,>ў_#zj<|1Fw1:EyA~r J:2q數* hT[J 'UJO>-o\tL$ÁO7AQ'&f~\$8W]g4é8N[;IYZ_W+,)?hB|CR(_tsx}қݼ dMd+jlZDs8SGb5FS}}֊HXNs NjHAfGe E*U l6}Omt\GKRq1iNf)Tpw!ᇂ ؞.ӗ)1pU9ءScYk_7pVKIҺ7)0dH,/&߭P">29`/n(w'S,E7^$Kq1)#0*(.K̽ %fQZ|Ajn3;CYŵ79'UjC# 銝95o5[!{ ng2@xkZW"wJ>ϟebwNӖmngj+wT^ phЮ3UsA!h(x)8F䫁$s/^f|X$(HÙj0ob󪵒Jkhzk2TeW,=˂ g/X޷ڇiW3O6(""B=fh {iFGZ5hM(XdOʈHNվ!gA3 ɉ(PojJq7ʳJųנb+%u.UeF5U6u@n&0_nÍs7IL}OUY|GC=Ϣ\ =?2Ps=Ųaݾg-)jσO{FU)1~HW֖eQFSKS"?V +rn|.Zht t4H@ݳDu𒘭@h 4bBNWpٓ٬=L>>dc*z$!,ڟYZ2#͍$%\"InǦ'-af3^&Aˠer1)Q^1Gtzi+|l2q3`,Hw{8zcG*ɂa ,icZ}n >2~ʡw)''ݮuDS $Eǭu>]S|'ҕ Y*h9\t2ڥ ~ݛe2*SB/[IQژGޞ{PxHa#&ȸ%1ye.En Bi*c^E A"y-h aӭvMu#9F͹aaŴQ3d1vŴwXf|ّ^dF_LSp6c=F;M̉[]xp.5f";ZT]Dgu Zg/ޖ~{GLpM9%Rё-_6rA2p$TV.mT78?S!x#~ؘ`OEq:xC`=BsTEpڍ'4XoD"tqձ1Jp2 myZ7^~fkg ‡"}B{|X3*@Mw#{ߙSo0Bsi /!t2=%2BKOQr1ZacIϊvj<v|lB[wh6\0/e:˙؈3⡺2C4p,n.獘Jwag\o/UFl6mܚR+?53LEV#h~>X޹Ǚc&D秶Y۲UTe]ɠ$Z{5t$jwl'E1ROr㯒\ܗ6fb}vOb$jl،y8E9 A5g;Es.QG~ത`m?D}^vғ*^d-zgh#f^ҕqQ6u4-Ҟ /R&ؿ 3a9mkϰsjd y'=3VA/чkNeJ77?wQx9?/3\4nJ:׷hg8A fHYSJXvI[θ3MX'ۤ %6FRfŁ,҆_&LRJfWbuiok۩ prOy/Cf{'"'Rx p>p-梑U"D+ghhsb]cI~mSn?~ߒ&\KlW5lFx^qoYڞf* ;4a([,M7~TqUlXoKWHOrBȐr)H]ZB2-%bMrRqV<_V{h2?6-foë4ʀM]AB2)4>冹B8Lt+B<ǓU++[얳M}_t,JUz6.Tv7n}Z kڶą4%M ֢:Â.?cR%LdPMJ@v/d竝G ^(4$þ޾9xZDo=L?Rҗ7 ɚ5XpUfEH"lZl֎ e|ɱ"k*^Ou.aoI6]ip4 +܋6ҩ&=sxg p ./qiNmIJR\ /bdg")9;w'juL}%,6O<2z}C,˷/Y:zwQ@d1k HjjԨQ A_X}=*w]BacO5Gj/ft>0S"7j͎?)\񧷰|P.ο:JJ&Ws"br9u{'@z\(|>ؓߎ$-^y I2> >Dѫ[vODž̲'A)Gj}Z|5*=R򴠑ʦ\mѵޤؗMF<$ !*l2eb,6?|/#mW4YIѝh{TJsjlൽ:,~e hu@-Q 7~5?F4tB) hԬ1V"OypU!S+ķ B0<*r6mQO'CIP9v2p-W1]Ȋbg߶MPܷߩU+X6oi`v$6Њ?,<'|TgoIq~ك0# PB~1m?| J5C>ށgܷ3~5&;OS +ʬtB Я>dv\LяR#՗ᮁCA /V3q su?Q7ߴkJ4>Uˬϗ|sCSKk9tLJydxڟN_,ϼRܷCN^ X.NcV VdRyVyUu{!+s m0Yڦ:YWg3_%?FA#r7N=!qqZͩ Z/T)VTCvTs( I}qG(}]KЍwIW6FJM@7&Km)O Lp]^7L;`p7w¶N[vU5)\*3vhL]4c=qA?.=s 5;{)%`YړE8"͔|Ir}uɊA>ɖϒH&Qo\Q@/Ե~EaͥSIH-#YUxV[-f3 w]$Eh#ĥ_If_#ATʖ#^1^$/N[n M}Jv:'3T]z?Yrq|'2˾Ki  BD V5,ג<䃒SCc݉2y?SpKPd9QP&\=\qr ,2Pb`ǥw"scaEzU/{D0)rX> ۚY-5&w{cz9Ll"B8G6%K>74_xZ9a.5*ٺ<5}8_pLw!64+:=iƕ7?<9&JӃ+p/礶q0MXI_/:?b0Fi #L:D C:a-i6ﶿ38NH%)-s -MorpP=PCQm> tdgfGy)ΊN~QO#RFmzr1,{P##٦%;TJG8#3-;u#ٲ3!,z ^Q莩3DoL8䍬D"z 2/]xZBu m {qyi+a.;j[eOd+vQB|I 8>b?BC @l!mUq $!WT0^Z>;˿S0?/DOR5:]G SuPYII*̑&GDQyr$ܤ2ORHT7J9$pdKc$PV 'Xsݬmw3bRl] f{G8F Z)m(r`a&9] 2`cYk+"2\#]0Z{-P^hSaTKV>$$B{؄fIG{A-|e]߬.KǬȊB *KIMi=K"x16=>b2FMf_ (c=?@~2f2vh>59g {9|yPZYOU2ށ?N,~;I}:n~ š5J A*Y7RIAJL1  }S٬s"%=ԓGb_~҆TCY$<(o%3.ŸK8#ȶm,m', lU_aٲ4ͫA1W JWeܙܮX 3Q*ReVFk//Pڰ!ֹir^,ZAUǤ͍ܻߞL'o)玣&mݡsu۶$+F٥ 7:Y~:MT7YΠ[q"Q^P'VB_.LF/H\r~GF H2fu =i{'1;p^췔r 522jezaTV!R a//՗ofǵfȰ>$*+6k`2hQv3GaҬj+GIftn/1w|( ^qpjWz)%"DSO52cbQ)N$LKrpd~}feN1(h~/lp)$'3VwJ&MT/4z|1&kƩ]MG۳y=_$h'ƛ%hȺ_4*m -]!KTzOT8r7]xcZ;yyk׮ ᦎE#B#6 Vd#3J+Ꮀ鏝:~n{60jÆ}眇8IZ8;' 9g Nٷ:fo{J^?#%?} W 5n[X @I֘؟-ђ:/gA,?BZ?7|X6{Ж)Wϋc:e"ioWܴw5Kp .:6"ڢ+PmVi9^gpڇo;$J_ýǏ3'Z3kXnug$m_ Ѿ!bU̮#v5v"M&ш;kȺ"9߀2:NOWu;%m:9XgEmDzpI⏧=T*=KxzfѹzIz7xz%okj5S3M܇E8bf壚 SǼ_;%6֔fY( E$-@oLq.JHGbݚPm;\;s2 zn-#P JcZ政TϞy0I2py5)ow AtvJ "X_x>egx<~OSI?ώ B^STL-&>h1郅>:W-r.qƼv/=Y nRv䉹:}"bu &K_ǁZvAd1U@3r=9ͤ̔ /Z9hOTVLd?L>s:~Y_z陀%Df0Nأf(d8q/f DIӸ@ 0siT ¢'yx|UрX.=Yts9)l uܚVw#(=iڨhR';| 7w}4_CۦZ TOi~MBrBcFhf6.B7|{DoRk=6sɈ’z3c_Ū^y~Tj1m}qea@奝q-T_MFhђww&K@Ay?CW~OtǦXf. s/׉YFXj%BnjYIzt219"{ƗBG23Δ F}  .#&*=F>Z=0H5?bosc;ܽ8)kb#ë=m|S+W?yC_bK\DVkq;Os]%,Ou Ȉy[ |,9e'Z23۞1Zm45a .]kYg(fǩ,.tgzL5kal>0L&tT€xn ?mYؒgWDCW ep٭A$*#{ sEBeM~Mlds#Yc }#jA_OXPOOAĻ̼[7PQ΋E/]* sۜG+iĩ2#w܁cVl"/5~NT2HBf=OZ?V7Z27"3}SmO\)svQ;B_xCNp8ʝ tԍGi&vhHIQ#GO+ gӫD~|D>o2 :R5&l8!~" ZeL#FfP,ο\ݱJDcD$A2;`(>0n'DC٨ټE͍ Jb07I"[#G\ٗ wpE[@~CqnFZ aĵnE'HMD@0{ͧH@\\J;CeΣ$|1_<םjhsC yen҃b҄^9QȥIyd/k1wFR&&m202h1dFl8~Wτ1\7U,OCɣx@zF9͓L9 פTb<󸵤.&0V%DG?+Dt ~^k]6oU j2_Y" i2r . zRH.|!0@2Ps5"BFK8}z x{rVD8lU@9۪p]*$\BWzWZR LPfjRץ}ݨ,HdXx#)98q;6۔mVs7 Ab]?"Vɫ]W̓Sʟ~33Ox{۰oJ*rnD>kS(1> nyb܏szx܆x?SjVc+!F;;5~_VFiڕ= fqjYUPh涗dDpIb^Rޫ9qwL,)ȋT3r Bu:QHA(ɉ+ @18n#/Fss73Y$t+dQϱLzJ;Yk'j16j2Xv`rOgd)A-fYŶ^v{.`B>]3kstX>d~Y,udk1sx9_j +<ǽ- ։uI2k+`y\tݵzv=9kTEt?EBGKm>:D=TqFx~ u72[G5{&_hgm3좂Fn ב#lM֫Kχ?!0;KMõ}{-uxz*@C!Mzf\4}G\f*;t!RTouzd"1X! 6[4v32Y6DכؔNP&){q)~Z2I'/F|prՁ*(0Hr#M82*NWɯB[{"0pn&nn:Yu\0Y^h'l8W"zMs<aӺ7Me+@䤝`adQIpbCRD@. k$|9GVE%Tiψm.se!jx^Mc%dòb=eP`9Hg@tVos+hq~DSҞmG]m vjL(Y}(aY)XwЌ4z\"FI(_Y9 Xh'~:"pCS[óӢUaq=:mXUzЂvlPfUmqA4GD*øqG*.R_`X1|08/'b?x9w,_CtG9=om.,T̓!n$alxn1 q_!"n[ 5 IF/+茏"ұ|S &V<9׭#΄aגXO^ՒX߿@Hkʹ8v*O#aH)U mwkpZ#'-7|z#֌LyG_ ֭s]}P3'O JDaƮ̒w+JG'|%wCyO:ك6~\:dR~Dw 9UlDM-!M\a+N/Ġ{*wՐծf981yzKˆ'Vc^]&x[|~ie|<,$ bɇ"ׁؓ V/J[Hr T4Ao_ĤcWSWJ|*,$y%-&Lv*e-}Ĵ`+B{zfQU4-41 gp]qyhBxf"ApEϭckR^B?Kq{l6tRbvs t(Xo¹2]DqU{Dk4ŹU;+Cq}GEx¦{{p£~9Ó~֡頨)FXL)V}nϾ]L:9ZBtީJzse;mbY&(c0ɱc\]F20r2IUˀ#BzzWc e!r8̠T1J'>4;g"%ɺ t4u: )61 AJY8xp3RRa?QJ{'/0+}IV=@ o);B扎/_&1a_saD4"?'v+9ty$ʻ9=8y;!vQBs5uڄCZ5cM-kwl#qE͠U\>A3l XrSO_+ jCBg*WAjG?; a *L _R( xkA"xzЇZ${C/AƦBm%LeQd(`I[j8+|oqwʦxaR8^ĵu͒Ch[RTqO2HgeiL}$UTp_sjvE ;w"\7M вÏ. lf/W u쪭NQ1R#"D UO| :YFS<[:󗙟}ќR7R4w&*,=mN?]g^m"PgamH0r}rT~52|l խX:L}ڍo0 œH~b` >wOWF!ތ-{6K^.Q ML2,H%x,X聲 ?o~S0^Y6LQ(,ۉAp?+8:v⌬ x|Y)9e=1ś|Ef@y(zI-ƞ0l<a> *6IY6 KreOԲ+ $V";`{ oSP&f/G< q􈅧:Y. DҫXTuZm5lXCϋ#dmK+MnR 2`z_'̠Bw ,t?;.8D]h wM;NEgn`MI* 8v 4 +w#O:Жu4fV`{PTY[%N89o"4CaKR2UV# %<6_gX) 2xl&%^{e};#K S$0bk[>CIL{u?n\:6h3]^~vmϻqZTѲ `fV,jȇqFT OX_0FG^6Y#&zK1Lӫ:spvP8Bae}ܵtvvoW$÷L` W(jrϝѸܞ#u!);bҙψ'wjXY `<vO+XyW IT6A aM<(W\zOx!{dm :j ý_bh 3gy)(6(A:; ŵiZ}~KqJ&'&8KgrG: gAG O-V8x >R@] e %tG , +~ZbdKgw 0^]O/ંVhEϢyy:W.^6 o0k$J03 $3=:mIingY$6(` k}(m}\V{MsA͉V@Ȩ&4^q&_wW1u! x9/wբ4=3d{*- ҆+\)GbX ^$& KU9NĴF bݤt: I)A,Y Of0[m_Wb:swRB$4UIPD/2ߍ(]ZNa9roUe5'{1:@ܨL~ݝv7Qջ۾la-$7Ǐx>aߋfTAt8@G=ɍ\m~PWx/qO u,LjƊ_LKcS*&"rh[,_k!ehM˾G}u3Tw`LAc}-<:,=8Mg G]$mílρ6ގ@ sdUuJt #R"ST>a1>r-Qo<**Sh2Dt#nt^V>_ s-:% ms4׍]9y^{ـ{y۽ Z?Θ)NI'J FT>[ _q2\Q .Յi^${Ҁ7 oj* SIAzy:QP.L8@y!q_]}pK*sd,nh+q(KtK:ڸ7EGOxRU)8 xiu5ƗZ{1D!* gY``3 9TgIaTeDM]mSA`?&-5@ښd0Cmƹ\\c&O&*&J*&@ʬ4?(nPPgs: ˦{[9mz(e71OV[nnt<G0)Z$L,}Sz 0"1o+`BG|<FbH䪡hTT{Xa Ƽxmk_i.g0-ٟKɒFmgqpr>&[v+Gh=Ia1sU6ظVaR쾘KXW{(h^R;#VY@ٍX(+C R1Op+!]oh EGCb$Х=l%~GjJUwH\n[$mc;pP:zt%MFĭ !é=NzݺaO_~-.9܈eS#=Exiz5,}DƬ@>Xe'hGmM:U2Q1AK}k9T]x?xp"ې 4(@d-phOvN[][лMML,V.Zo| j M'r=1Ԓ)J3Ir*ѧ{@).TôOČBT'3 $~j{MsPٹ7Fw!B[˔d=u N',BпwhqRֻY,Ks23ŽM6vPS_LP1 JF7 v$ďEӛY} t aQEf=}g2f-ơEsƺ`G?YVJT-ńa"xyir3-KݓҭPIjxsmgϭIU/iזŖ{ZQr:Rth]wUPOmM?"+{qRwz%{6~{!5iB{2amm *Q_<lN`FAA8$AL8 'm_fLs3f'LGBQ͓_N=rRm 4\K յSԜKp EИqo2#J3>GJa ٜӛL G_ErH*ga I;m1=uP:uPJ5S|"2b{geҰ!{$MUT,=)u>!_>U2$pFAv04PE6%",YG//ز*Wز?-vM):kjB8tn@[UBasY8p?v&]@fW>E]Xg#)PZ v[D 4@NWƶ!=@bT )p2cm< ?`G%= ;)/=ܴߋZÅ)Bf$C X6@N;+o2RQ-3YA.GQ 6"itCE댺 G6aE쿹3&$Ք[ƥ3rhݽW*A\__ט&fƓyi{)g AxfEQ߀Λ5,#B@#0'KlOX*}@>,Kpjo<мa[?o $,q왵^_bK{cWDBLRmp^Dd?q sRi|oW&ŧÝ5*m%n~`Zlf׺_mXR9| o)tmO'."1aDA0H[fKڴG g򰮄JQh4l*1?,S&ϝ!HwCuNJP)D|&~FLK{c-Vr`.V {,Qpmby܄Gؾ("&<` 쟨\x\2SoΖ=jn݃LIe{0 vrWMG #]7WhşޮQXƝxl+Fיµ搞u >-05STN :+ӹ6E jc 1,= izh;Hyg?S?^F+˞4.Tou}t+ wrx ѫ "p-Ww1+ˎ&?e5}PIAk^/%ܒ=X [n+wV܇䣙'0`8; g>N7-ZƟOn( @=_]*#u\j"ZN1gi9ck5y )K =ְxƧfaМQ7`  BƄX.]*5e_.89l Z&;Óݤ!vJ5ouX7MZGEU4,G"&6co6&mG|ˁwt^ j&>Ï VB*~bw~CD_^Fs!C/ a'iTܬUJ{;blT| F A@deϮXt.`xUIVԗ(/U.Rտ[;stKB&F~g P(F3*Ul )o;%x-X ?ipaQ tO:5x41qS>809i"e}<:dg]ƞax u6vߏW/$2!JS<;Sb]؁bw%S{"cfZw]it6ڊp T >H_5oGAtX" )̢hTo2OUp8hd`tUBu?g{t@%.7J6Edf41`35:iFR":,R_?kVAȤLmQrC4ͥl%T*IWtGZ-EsJQH߻= *FF"ks]WH6dZoriai&C{#06B 8F 0@5mKM >Q<}[ B#!%| AP<M{X"".O/"?NioM#@[L[^G\cCJuA]% 6Z!I|]XiͯGu4̣mvq,'vTetzдR]}##+tdވR&UtAvsJ}U3 ?T: E:D1 =m G2sV&Oi~,1bq" =9 u)a1Dob\9^@}?s"iֳȘU:*6QU3]MxNLw ]rVF ӥ+4F,߅W#Kq+i)cخ)zѬB2P췰tmI~JHEˣvI ǨZ?!s5 twk75@v7˚=eV j0nzJp-DT҉hQ5AE*)Ά|d?%sCdVL1HW2V cΧmR - t(5ľQp٫Z}(qu/(תǥZRIB>HuM<^{mtB'}USy]NKIpNxD] :Ro`^{z4- _V?J:46)}UexGdPVTu.NgvψT9'[I?;deԢz^ҏ΃&7lìw!.QGDƱ0g (7ґ5JK.H i6PvZil?.l"hzֶXL bש~f(ޭ*{9ԤQCd[@qEq6uδ*ƭ ԗn3 ]7}0@I~0Pu͡޻3Z̻+b;sV3en6XmrHl޳wSwK`Zbx+ma  n~y&11>J'ӈRX" o#j;tL!HfOgZ=Ѓs?}: ~^B.f^CήfG2kc771vwUIl=!nNSdl)߆IBn.uR扪.7+^Y{"GmAe I@Z0;tbF`aYKұOt/IA{Ҽ < DVnzT*BJ:WA[2n< e10j ;W[COڂ!:~,VBh Og7@˽rk!%WxP$'Ēeuß"qhԳ#ڏCXehf~L{ 2͈ c'{`yu)"$d`?/-Yp ;7ϧtG̢`  Aΐ׻f3H&OX7uJC[|. z>T>K1[2Ax=1[4ϨDjGZ>Ei/ Gm*[tc,d=k/KS)O DK0@ۺz(ü/4xHӧ9&ycmnP=C.&/◬"iX2l8u: ܃^-o1bFgW-z-dcihzwѾF_Y0w~yNRp y&6U MBVJUH QkȊDVYO8x2!ZۉU sՇ:Əpxh28 FjlfhJv/O* ʲ.4w'~'LH)F)͹ @Vme ЖMӢvl+uhnx0*\cGF>SͫxMGG&%I|4F&;tec4zXL %D*<V@ҹN>fBi߬,uOL ݶݴ79^;2nL9)x3.Y@6j\In. f,0]-t7R/@0 3"N/c2;(3H,V?$(Rڀ*RhE=J\8x gj棻RLO/W'nBr;FhkIl4ɦN Dkx ?0W>܌yژ\]ґu'&A ˽ɘ?mAO4S"~] hH{{@\™~f$6 ͊0~)R:/KBhwow^ߟE]/7Y ЦԞbG%lsAVy}Q##$ y i1T̶gw;d3f<T5Z=F-,cv@L袋q AXp~=ɞ{"cļtn@fP2p,$ԏ`\tqQ `mkAi#;/9wqVL.ʇb$RÞ *ygr#݋OeCWÅ6+uțI]!yz{?UsyIeqv4B?a:!fR/SIW}A%;A2)*>}/"Eٔ(>fc[+89'Ԃ4EŃcF:Mx&l4G="iB &&2bjq? >Qք5z^ s$Ɂ-Ǯ9P:p"dği7U3D "l2;# ] ߈, +A,qC AK'Ife!3/j xr݋@~]c<_vKנk?&qZHrH}#]WB!Hm&JK%K5\ o.ݵO2dBTahE?PPޤV!Ca ~E 7<D|S ;57ιQZ i{E'9C-J7p5v l/AĄ'pD,5;8XU{CoPv9D}'S"QŜl%sE333Y#Z;BC/.EH0n$x 9cM)gЁi9ws iʯT_Sŏ d{}/ ycZϳPawt_.)Cw* _x49s-6׫CRI_ ߻ҟv׵bI3ݑaXԄ("> OӀ΍r^0&e{@RIv@" /" 2iyN*Ach~) J;Ȓѱ-jP#qDW_`r"ͫ\+DП4,ȫ:0W4.eY)B{n~Eq/͖*o(LLjjZJ!AqڠcAA#P5ER PO?%t4|Z%LX;Z<]Lyp YAt+']Ѓd=?$ԩSvY#ؼ0} P,+ө'ŲJIQ'u50'@wKu<£G)<(?UwwVN!,x(ݍйsm6f⽐92u<7SwtyS8"LiSc\V^zC:q4*,[8[J DͥþnE.۟LPOKN(sBYTZM O>5N;)aQasسuvB`=%i_Kh"xL\Q>z [ա5O,b@1./b[nց'"]v+P6&R\QL+JوB&HȟT3'e#erM3VOQq ~w?-jg{†HZ :+>+LI^KKҷ+@oSpl_/1 -Pmp.8'ZH%V] paO7eTYR.Q;xZxԊԡ'NE*<8}͏,9/$qGc-'|~RGZxNʾ6m,eM ܽW$'O{i__էBJH3ݣ &WQ i,З]#9f^gD\m_59Ƀ/(Ոp'惆צK p%ϟkSb+rêUG}겗=(r JɅeP[3-*2|A)j~[N A\DsXaEz~IC#5lƔbRiNE/mj8wu7xqBWp]xqyʨh KJO#K1Қ -_ַ |T ^m+r{n|Qt{rP^㈬HH Y TV.Kл?Lt.$U x]0,8N߈k'*Bc \C!S3v9t%Y=e /%le7b{٧0 m7g.UN`sא[2ixI)[ό۲ZPi})B5 DKOY9WĮYcBh7:vKN\TF&"7}3¹S[njDfG?Pl@ v[!rMdHbk_=R$MgvwW:(~7`!Kv›.I\׼zrvjO C<:|LװosTM=JV\AQKVYفǸ—VSrWJ:IQ/ 3T/k˰_?z Y.Wp|_Wi-ɢԩn'Pi(Nuz5.2(ʫq0nvxF?1m)]Nc4]Veޅ c,<++.0 ;Ncr8uS'ӭ4js\jzl$cl*;)ɉrulدewiFQ 9Gu.ozTCKaa> ۬D S"ydᆮ76*b'F *ˆYv ]QRneϾq[OM%"ӈ%(!{. 6erbvt uJ3/8gZZͺ 뛖mїޭ! tO 7dKn;L0Դ.1+ w#24GfR# o')au(F6PKL7pt>Xi1 _؆_"C8B7>CԤc F5޽:hQ _RTᡰVR8%$+"95I^qLU[ 3iACw_,M*HQ.'l4{ )85 " f);pzrZ8(roj|> 7EWcw`FJl4^,>R bl1ziK Yz Ha"''+9!~_huC~Vr0WhHi Jt+`G= J!l#w0/ 1 O6;ppn8z., / Ucٯi}:x7ꎤϣywݽw{O6i0}hu"bRDbw@qM-?ݹ~S;KDɾX َr *?[ˤ|=\=ItVQWfQbTF+];A78kh% (VB5NϭZ=LK$ βV9͸  ֊ @BJ!PЂt%Kqx4(z VjjK"!lQ-qSZW =ӳ!k_X jRÌaoLB@T%"[:/ut'ZԧX8jF<,",tq;N> stream xڵwuT[ߺ-N݃wwwww ݋ww]+Z裿s}##{g}:\[c\UIl Ll̬E%uI` `gfeDpAl I3X@\쬬| {3M/' 쟅*dnmA@ o &f3,3%@Y x3h 9 huZRu-U :nNN`"%S֔2Z@~kFoJRbzRl,pm>!T+? 6? +b>Mvw:! dF'whk&It|-ވp+oml\UTUU8ق @-bqsc{-ipsqC].C=qmںB\UuEwlAؔĔ夥44߄bRbxB[OLR `T d)vt|C>I7 `/=-/nN,Z [g7f X@g†otF `e ݐ}\܁;}ImL.e~C߮|Fm>- /% E y ^nf@?m-?"t?rm]m= q/Mb k~c;Cob};plW&6Vtup1ph "%&!+%Z'F dYعf..f^Ȭo`B, 0-X]"7E [?X gqul-dq4`}Sۛ߿e=}89L6 '߿ZLGo@@O@]ZsxTt9<5I%|rt'dP850c1XQ?%E:e-j귥趙?X6VpR`y7ݡ|^W٬vRؑ_?쓯W%l-.K]DK]А?؟cĖL qz\S&P-W]]vOP%9{}jks ۛ&ʋ?0us,[ˁ>sb/r "at&,>l ߤ3dLL>JJQS;F7wDvDD$)/bq?kdAe D#AJB,$67kcԳ \Vkz,Z G`EU cCW9} 9}`ET.VGGpdiѯJ#+'6" a/T#M1pmw 9J%3/~v e{*w}ϡ6? -;+eJC/ץ8nn=| H64.AvY=C),AY&TWikބ H(J1hw+[ԼKC*kC'NMɣdE 88njm E z2E ĖN%nP9mX wH%\?鯢G>E=Oi;3ikFr&v'|:oWHᗜ7~ὠ{N(>s\m`^֓"w-OU4 EJT(dU7{렫W:pR}ʭ$rc1)(-PPzn %9 xkz:"CGػӞW٪Nv.aq R.d.W-CHADQ2)fysU1:WIRG}Omԁbg* I0+8kbz0ഛTҔD)< sFf5NHuB\[چO8{3"F45t΀疊_BYSk1Q=yZG;sZBKv{(J{/ص$*W|U9YN?@-Jd@2i6on:$cDvӘF5Ehd 8[oBMI[F#:TrTC2vVSB.pjEX%uy{߾')`•F[y.#NaY>/>Q[|эU>&%# ]~ǫ4Usӂt:0bw 27uC׎빸n&^ߪ1;Cf L1N^,Ǽc.VL70+ڻ7QK9Msv֧ %)/=NюoZ]TNs8y3E{laf :"\=$upwSh pr$[5OlBg{ -Rȅͳl1 pkyW"Ϫ->IEr!;4# !{n%|%P(Q ?eo2:-e{`vWSP[nwAZgv>Y70\6^˸26I56DxS dr܄8q\2n&f}'n4hH'baj3kjHxOhXjUe 7" ʼnSM PqX@f.Ŷ~Bu7A+YV۾8MSm%2P]2L̗hU"tepF(SSWߕ c9fiRǙK+K ?o8 NE0`ƶ37]1<"MYHM(HɄske~ZfR)_ďFLԖH[;iD KĨ95*4֥fd$iIk{ʶaUV?VЅ4,Ey{C&7a,r_7Q,MKL`ԣgqq(kGL+H/ZDUDBzGZM[DõYSjF-x"y >qg[ā;6u apmKQ IdqelEk:/2A.Y䘿24$^_\^Ɣ2 4"A72DnH,~kC;tZp{:Mʣp NFIHwKR-@6<0vqԏTrZq{ijT%:tL%:|zvhXk:rN;I pVXPvqѫ 5aeF -V-D*)^le,8tXJڲ4|oY1kc>Kku4;\HݖiчFKŵۋEoݱ݊k?cOb pOmVtTbɦ h_Iѝ"T&4W+m ' "`*\'(-r>+(iCmAeh Y?5Bh0%%% ϩj;F"بwbCq(79WIRofD%Wu ,&l8~?T-9]KDiF(󠭮sRtIw4!1ﮕԱz]02C*qIj5Ȫ|O \/HglE$c,;hcrFb-γ8@b>E25?]FFVsΜB|*juCcWxHs)F%vg(e{-m`%v_n`qQ9u'hUc^*:k_a7,WkUAfv1Wcu2J&ʂ˄S]fB4)aUEQ;-ˋA#9* ( =q} JNs"x_þC+VVwcyIŭw.[X<1 }\v*Ç܂ Ы X7sjV|[»"ƭ:į%b\w;>n'D67[ (j4+ 23VAk@˃oojX6k1*L8Apқ%ed}LKΊpt#^,l9Eg|@g7[ŗEpM$6`$徤?7K&~d>Uxff_hNK{C{背bTJWF6? Ǔ).a_:~Quiϫk;ˣ0:#vt 5q>*^tWI:V|.7WrUۢg羼#lW鑗b]gK]و/*6 MAgA\m]V8km , 4˜{c郦c]I76+,KʒiakASrgIm:E '>Sw3m<+k--\1 g(,u]C ./6)$UzϣZ$fM(̰qi.zkV5 ɲ .DA|¦Nż%'Nhm|Z+ E*{%yt@EA풌|o': ߭WC"3hs"XDߟk&m D=ǚh ƲsnDAWs]_W4!QԢT)R/;0:(0#ʏ1U.U`dk0:Sq܂ ׾ wxj,/}ߒoZSP1،F@!@mL ;赧jٹ_Bmy(;2ݭX!RMXW7녗ww|?Z:j'ZL/*&?#w2ƷDd_-iHJko{#:޽,$hQJ1n87 ,nx9 9*bHv&e?UzY+Kב¹4[?Wz'l2x,N{څ-wW9{0)࣮R)zP!J?,] *WZ_gi3S'FSv6H4Ȟ)$WGlC;'rO fw1+59dKV>V8~dZ3k;ic4$$O W #hAqdh>x^: cA1gґyX -.Z㱧N1XD?+ʚTsA,RrGQZ *E5::kLa^ĥ lnw^hD{a0}H,H>vDd@`ѪnbtvUp`ᓎ;mw'Kc/mTE6Kh{AGy; 'V)t.W~5Vq5 "?5U֎63c^ Un7E?W&Tg_tᚲjNLH7g\ E463EI0-v)`G(KP5ǫ/TOA?'d{41ԟ 3Sm]~qv&/;!M Eٶ,=S(RY$cZH~xCs5<4Eҭ5a@ Ǻt2&\1'xc &QmIrG=O`u&vo==}.Qn#Yg{=T~MzY)-s<{sPn7 |jwlV$^E$u>`pU&q N0UFyI诃P);j?:cirfRjAojWcRbfP%FM+ ~m:-4 @mc;:g遺U?4Tgt=ROf#7庌Pz  ^I IHR,Z筬vc6SW7w^ Ya35L(M1\2_\]QA +WcE^1ӱpfNKk+2 G,v˸+,ֵ?Ң馴%F*t͹VS_]:qHQ›HHi-13B . o QBWu>@D3AdS~{ 1eSr|Tdriw9dP|蚐0nӭڸQi(is_- ''U[״U)>ӰL|6КG+tL8>>fw[pV z"B=3I5H3<;b|B(.d-jF.Dvʍ/ШǮdw<-LMĎ>jo5< Oe_+JjtgCҩr@mYFC@M2Y?dQzd*ɭTmE!xbr|cuɛU |gM=LEPT7#rΎQCۍ9I73%\j bW;Gl+6].;o'u¡.ڧVK*F"\H >FѲ.dz ;୨L/a2*c6KDfY+tZ5 (:we]({SdR9Qݶͷ}*X9R~|ҩ_/دwꉑJ?tY]CLۭa*V1Y!ٻSD|$$NDC:|ێÜi='#ِ 0|-KPd0.uһiB>>ƎM.zǂQT$N;3d2 't ]-e'+kn)=w+\.+f`@ܴb7 nQ8\k?lLgA `cCK?-g1Pe*n41RT5d “E-N)=]llbFvVE% XۋFH@x7x'ru{6i8TZ8aT"@AzT z5>mDŽ]?-ͳ |~ `_ؕeI?"<^TϚS Uhm7)sҔ$ 3+Aڠ"c#e{t.>= v5As ){+٤HW6<3<kҚ40qgYQ;WM\Ԏꥢ H V{@θPM"sQ7oVahɜ)de&g8~~hU#"U=w-.YC!$oK;F>X͋XDM Cmw@E.(yS R:Mn$5m `ܔYiVn'=|1o=4 5,&JlR'ޘ/'m>͓W9 _?WWڶLƞO|\Fzo2!kgL BO0g !+dйa.WJ|B|dk';}RIIWoZ;||0h\ɠNN6$cFK5˼C7uSLêي$t$'Y7D5I(06ؼOWL{C%Mjÿ&Kq9-Wꩃ'RmPA O0c\'k+ߥ*[(IEW\9@'A1Nva۵MqJ*4oˌ<* Pc$eR9s(B+30^xD^rˑ3Fuϝ :nMVG1ɕyrj:a["YxoE&,S\S|[bD\b /bME6iVgڢxֳp2jrdpKR݉kXj[ zs]>GEU# H7t:yW:(bh2t&gBN߀~igzZ)g{"ScUm?7ŘoX~C%H4 B}WGw @Q36_ f&w,tM2Fbe{W9ż]B+-x@ʕ]%-^0Ǖs+hrup -,gX} ׼ط={}4d }@jO8Lpg\yZxն Sz:˅&{5XHDڨ}Ɓ~N~3WKL%:[p~ma^+hH5'"f_L<]71Nq~1AԛO9/F} "JPHi4>t eW>Sl]R{TSB;︼Fh%06"vrivv^ zu. Og#e$,^ }bH7b?Td% 6XixH-uK/A]fF׻+Lx SټN /wO0ǧGMܕ8,Ê?PJ(b6OJ "͙CF0Vh&w"ZKȳ5GB\UP]2nx~,!}b;Mw Go9!TŖfTֵ%78  ;o +ܪ{wh`%, YpՌ)S!NGtޟc"~umVφ$ бEٯj%LOWRY$Vۙ x0N4fhue/W*yG͇ʦZ^'Hx3JSe*$uD_gс[k|#M`ѮT!ꌚe 0>P|_Dwrþx+YW[²nLC˩Nw鑶V!9+aɰRͫ3%9x|#2`a7NG`8>6^ R爹!}eBqˇ&3g()2#Dtˇhqmy{1-+ݔ Գ'%l9~KxԄD̻$6' W6(y vٖ;ا يNԹQ5(^Tl#n%F aT> stream xڴeT\Ϛ=;@ݝơqwn o3{|}W]Z)HTD@&@  #3/@N^dgl 5223#PP9]@_].K˟<'+33@ht4x.j@?% 7H'E deaJE2Ʀ6 wg+@QrcP&@Kc[s$UՕTiVuup91U5uIz5qP S h=@Ao?DԴYp:9[m( ?N -]\x-\]ANSrlN@[?ĸڛW ge wMi?I."\ִW86))쌭]]]\FfT:9!.濡L?Wq6;[98"`ne YcQWUc#<{yv]<\[O/`#Rq{31b''ӿnFs+{3󿜛:0[9W,.f0d55!07uZ\݀'Wv `feG ?եA o->?[4z̀L ?RgG/ W[[c; AvV@\+g +8]E-l=dG/CS{3D%]+Ĉ̬ۛ-c''cO?`xQA.R.sUS [+oAX dԴ2syc'+]?j`coրEEA ,<6f. 3;rMu&?@Se)_uZkXxl%4Y5LZl]RPqව,b_J}Ef{r̝/c?y?O"yAY=42yeY D1XTRʎhE6L'[tUTnnpg̸50 ^TC6ȓ6K[A~A/r70;6-m*<뜟 պaշC撝*ȕ:d1 :H)XfZ5|sH/+9H"mɃGDʺN3Y _߼;'v<'~6CȽP60Q` \1fZfk񏕚>%kD-IX؏^lUp~D LDŽyM@4=;>}ͨy'\7DMNDTpiYzmPl:ơ8ۺVe~i|4Ipn¡כ <Q9/ 3Ѽ{Bb(fXOc\l}V0飖]hƳߊ{WGW)k 8u]UH] 0l}xxGvkLiHsZQ't6(u'Kk㇩縟rvpVN.bPggR Sʤ6M›*Uʓ[SªT.t$^㣃R#4&15;"m%ˏ7L>0$'v.=ڡgDԛSMH9z!mSM jQ&Ij=Esri+x-ǠZMY> ) 7v /I!`aF4f$y] {3N %eBj08> *7.#SK~ߝ)8 `Bk@+8DU`Z:y1ԯ($pf"4WטУOhB\VZaw2`_N/~`϶ZV~VdDEˑpTɛ< "BI evE$o5Tդ][+UQÀ0c銤8†DH-{|И?Qdy+`#n`%RF>} / ~8 ]B"ENutqIJ[ZzGˆL`ˉxK66?g wtq|mgg\7c>#67rc"*&>i6ˡš6HLm'1l5M‹kҏ ΃W{DZ74GI$ۈ`xMov'<=Va7lGQKk$q3};ug~)àaY`xߜW r56DN^ ^S߈+9Vx+hҘ1C]%d"?LqG6#`}H<û8kӢq^DR[DlA&8Mۭ3&NH}8nz 4 AcrO!f-oN,&+/I/(RlEˡFko>(ɦߎ!K+Ŷ+_PZmW]ONX& ճ_s>Xh6rT~}1vu6+;}~BN_97~q_fc IyxSk7HXp>@u[g簌pJ]wU.[?] HŔ޵'꺖gl0Lj$\]S.z⵸L 7UZnjAlm%` {ڷL,2pXӤUM!,1D,́t%5s%wz:$,! Nctv7j^!X .LK(Ưl!Nsg%E[dR`4w"7|I$?ʮ`T(Oc{s *c"0FV@Ogq7|8 3@lo.-͗g=n!3z;j+YG9W6Xhcu恠LuzXȱf[$m)"pW2bRSɑ*2ztj~}PاIMLh2e}&޺Hy< 4VD(`@m@)ytI!s/fArӁS;.cqJ2y=R"s: /P/ڗ&Pp'B9";#og,52ܾzߠ5:x,e~~! 1hDw|tHbΥp'Y$l~#vv<(K5(kx%[ܝI{M[OLрbXui%U"}tjLwd m%|4Ex)A`~2ܙfk]uRsW p-#L&] dgIz)I<2͘lJurho@;%/ IJz9#;*EȉE3_Su%ҿly6Gyq,Q"ԾZOuR1/ xBjTvHBY^sik CE+~ZǬ鼤SЙی8h5Josɡ- ncX޲P]*]`L2E4mLX'f;ʄe68A\BZ> i4;bwfIYouFD,5FT,kzQ~O̎fO" U!{4KzDap$C jJ5-xE8&Pk&`UNr\ؑw< sqqK57&dH Y)oBZhR9߯\DbU*/]T~bUYQU;4Ժ'(XӉ\r ^yu6K=`g} rXxOKLٰmEüDnGve*<ٔ )*'۶?37-۴Ja3i﷖}_0mTo4ur"3]v4xqep@F.Sc;:1 feAL.A̩;f6B| 5y*ըTMXY%k1'Z]g e{W Jzs<.|7&izP5 [Ѹzv |XVX7[G: QS->~v*Y;kyEc^LQM-ܯP/'{%PtٸNDYbxJOJpDP `1_R,5˞䠽.l *PaKmY*6ޚqqǔkf0|S˻Ph/5j|wT.0foȲqL5"><(PDbGX/ kV Fϭ>leB9% Vb61E ρڴFN*]ވvWyV\GޘQɃ(=@A2h^`䉊pQ$A7EV}s©4Ǖa6810ÊKHGZhq2tf(5GՃ=H[TTMetǞE YsHq[PYNL!!kzsVgʖ/\VL!Qbt?+jY87rݲV rIqjdɾpOQ⛙Ϩ(ie-0U^|ޖ O+F)!d"li3c5V9(^\]u%FQQrd350eOP m] Pdw(Pc+U?lPn>qgDW'# yN"ڥ_IW%?"Xa~{ˉ٪7~gVtdRدPQp7_bv8iVg=uTx:9@G"bЁۢ>lb0i'(@OwxxM@}|Šȝή^V;?'ct 5FXr׎z e#S8N5f}Lt}O>W`֗a%\ǣ^Tocx TT-syMYVˬة kCEyR@5eJlul403BWZ0;WMy ߡСWE•5 g;fM4vbn3ѡޤlեsX C,DwN"/sRNżWfBXNE2ht4/L5;I(%pfy(J!(e`diκDC>pZjɁ]qH;amOV Pmb[+?˿eCh̩}ӓ$x$ov}@߶ܹ®\wjmd*[a"ݡaF#Jb,{̹"`-s;ltiqt$uܚ:*"yKZ(\Er#\H>UVoX+&\- wGO {OxW5ߢ]):w;Z}G+[ӾC5(7ggw1m?븁'{׉ .ટ?K>k={|^jR>; uQVtfL+xg5\OWիk̈́t2㩛P['(6-E֘D$t?:8,~BK tu^Ǭ9ob⵲1ND79 ANv==L'3(,^Wi~h#K/[7`kE; د斐ӇF3?Ԫt}>7"_${€g lk7(ggBYl˧ǘkђ<E]Q8| uJ`z\CnK< 3{R׈ujHۧFmLiWuqxe1K*w7 ־a|]6Н3Wq;k8I zYι62 MJ>m>MVhijNҞd)n:w(3bltxQӅH,lZD+߅pb^&tyM4d]vX\Wv1]Yk+{ M |l)RpSLF$ TcĀ+^A.l8Z͟eo)-ޔCL(_\Ԇn臱bYNYK W $}6rxf(d b8s~%̇b$w-I$R҈Gٙh0-/? jO5LT[:RfM\+ jNg1mybi]V<> f=p =T xxX/<gC[$ 9O;rn}UO2S|7xZD ISiPpՏ~?w4\ ׄ(pY~gڲ:qK^7ᐺac<ӹ7YgySC\KSN2WvL~\4do?X;j6:,TR};QG+"/R69%6!(_mKLa[F< :,'YY0S~N6r&=լcMQ7}Fɝ>\ͪ#{\I \/ -a&v FM v⪩V@ea5D$w''2zJ9c_oQio{QpnJoCdʾH2JV6G}2|Hģ8cSY*^3BUUg8|&^rX~7og_kĖa3q#֭5ëo-o8:y@RwuCw&c_{l Z1>_WG)2b2NTr땣vtd1]\sz%Opuw8CW%aQ;įP=w9*kI(r '׾N LbA%gB_hyiWH hN̯@Y+^ljᓟb$t dm^3r0\I9Oځ5q61 *,"0 〰"|?͸ERM;1nqFM_J6[x1MNY\W`̊17Rݍ,WJ[Do/|:CSKUC)IkG/ZU: f]<{ݏ3}>)@LH[)K?<>rpPR/;$/ lR76G&^y;8,RW8aQ+!s 5z{G[4v}vy`o0@ގ­<P5QFU(H_/تgMBnjpy,fp1)Kp#ݰ~ǽDI;C:Boo|Y==nbuQO ovoht9z$]IOeAWy=d)oeU`Di_iG+0R2@Z%k#zybsfGFՖD&m7Y h |:@j{iziS:aFdJsm#Kgd/dhDD VzIDUί"$nq| V`-sy.]Ȑǽil<jяZ") lajd1|!({=yr ii7idmSy\[z%\g|dO!k2+F61Ԍ*&Ǵ4Შޝ&:wX_&( xtr?k_lk 82U* ߤ9LbJRԙƎg ^{g<1d4ZjE9h$RԊ"H~$ 7_=m x&+PĆMZ䐪6m㫈'OMSM1mZu?Gfb~:AMcfbaʤlD3g(dsJ=Q;#j J,Ki9C~4?NΗ_ܮ_mQOݬ q{#~+:C3d|ue2 (!o$tMLe͵4o Aae^'f2% =p I0ae8obst;B EX;t+9ϑC`1F>9&C^͂UUXm^Md_4;!#3A1iCLRѮ}&18dcߴl#5KЀL.qoy0`yJSŷ{+m]ީEǼK.3ceKv46C:}&㚃'*2`r }MnR#|$A*"p4Lɢ;%2_ruvt%A`шtB"n^TpY9~oY`;z".-^nh Ƀ-~nצn XRUIQ{%hh|φԨ9:ifž2alxg!ɵ D@ urk^)mr&N|DxpOh#b1*l-Q@ܹ*Ƀ ~A DNmMod1-ͷuc _T $ֽTK_bsCֳgFJ.WT#-e FnYum # QB+(_VĄ;4SƬ|j+ v&{KuUUˉb<˓o{◛_!R֔yk d?Wu#r1DlSf uO輻{AfV@Ǖ R"U=qE`6f(v4Y^woŪGT|iR*>}eEq2&R*CFIq-Tr!SvfiZn0T I1.WЬ\9R|p@rIM~k^epN9g+ꂼQӖbWQvODK]`#hȃ5RZƶMM~Ir+}WʬTL)wiї;!Qw5uXݛYl.͘yGZiYBdJGn,ٖWyp\; e+9Ϯ&dZ u_# -/J_B"=\ rke2؍x֖͹w/nb N9S@L܃8#]͜mKU)~#ycS[r=PX6jOlr6n6awxYT|Uj>qeT7T m1(]$}9e\IrAhrrGw2:K?"i>[ꯩ D)8(ȃ2]:~d h]HaVv`1ҿi=iVpz61vgd^.͎hL9^ 8zi8`fE\ܪ/7(ZZ$AmWou}Aڈ8φ'7¹J?3 B1aߒl%^&o!}Ӊr_"ܗ'1L]t{PMGa'3KB#)s7,[HA$_2m"VؖS9pbmhʣwҧ}yXq[P yrփQZ/@ >ZΈřFF$\PѸG_PbqC,h3#X ecШ[βȊ19ȉuDъqKDl)S!Wû51bNw!%"m^$BG<7timΔF6F`o2hiVs8A,g{)ueV//zqW 5Tpiy ēЯ$ sn9}58%͸cKAB5t Ī6ݼ4 @vf'|IgG6ؠSe}o. =]F{;$](p(7!%A5Wbq=)TgK䒜LDA&QCNWdc)Go«fsqG$rB%Vƭ֡zu D)۠LZPJ`Wis`0{tI"{z& ː@[rMCS`bݪ螥sVO];Q{4B]Efqn|̙dP@X[M2lՀQCND !r_cB;"+0 !%QBȯtJKNQ$4_~ q)ĞYLza _ryhUs"/N% 'K)dD_Y4(8AZmzzp=?3t̄/Vg=D~w;36_-mj9h_S}I]Rx@# »{խN5T}o욼;FOɢ֗ zʩ/,QpE3tW_>ޙ-Gb_WLS.tnڞgr*[,AI#Kw9 h(td8DJf相dmĵ|)&sW5N'}-SSs!^ tSf:>pU' ) vO9DĨ TrKXź`[yJs"%Cg#h܊./05AwQz$T5JVAο z|ǹ'X7ږ5 >Y᪔c25B(jh|T/F8E>(aH]H Y(0LwDz2BKCc'N17< PwDM{UQ>b[Itw7څɐTl0V!"P1m|W 5{eI-#h掶 3գ]a4Kb{Kl1 ;C:g<)Sё.]IG7XÍy# d.jqgF Z>@p0){0o{jZ3^MxXg9#ڹn*1R4Ziz oY;mk.%t4=^x(iޕQ_rKAlghw݀f:jV/ND߀r85=u&}8I7xg6/f|`p}Ee:icG#FCg#`aS pǜYC#Ū2ѱCgO{ңn\;#T˻ Mq>ebE߀}z9aq*xMM LzvC)a-ԁ0pFZ9+*x݊[}}PtR1q;7F1z4 uވgiTa\ XS%s'u28'b0"(<(L<<ّI'azQ&aIY`$kMZ5k8=uUrZ#\4̊YAڰH)A[$IR %^폧 iZ>X݀I (4mxf oov"Wys4Y0 CAO|NV#zxq;դʼn'X8ulڙ{_:X3J̓tAlp[At<{`MĪŢ̎vmӿ)R6Ypp(̈(:))}Us u㙲&|% @SQ`=d*[} p߃_-Լzikadz~5!R`XJpZ1+V k[\ףKgrT]~h=nJy %4Ԋp'>&\W֢Uxm|"{')BO;1[M73H~j8f=Z]}ۈvo_SD7Ik]|Si;zs["_ND%)B5=fe{P5!jB[%-a&[x@S"%Su Hs nFx޳t1ڈ (H~Hi<#HK=ڐh&^.?N)uT͈_MYor$!ыx\ !r[rE>^a8;}.7Q`gRQӼp]AJUy9ZRƚ7ҝqy nE~-ZtOzAO:YEJ*I'oO+  9 4o,ױE\ S7?.9R^ueZ'q (CHtvo$1'@v]D oQw]뛻X%μ~tKR Yls$ d>W{ Q=yM{'Cϯ+n6XmrHl޳ƻvQ IͦBw?rfݰG(95*wQKo㼒#)`5&va<'1'CMӇ<88@/5 f+ F!Y@q>cv rG/$NK>B8KLwmmӟOl9<9*{)qIܭۡ!n\bA(pW?2i"y~y9c)TP+ȴ"z)-ɀ=נ݈9]5{lbysn~ <" / p{}ˈ]k߉𢂪-eiHA($'gNTm t/C끸r*8ڻo; h{=,V `VI5|o(`bI@شzMkg6xưVP|= "v-B:$58Kܣɝ u5bg+⾭oh 10B0-GEn3malbQIѢ2=E`j8IsJ~m,hW'd Ƈܷ4Vy=!݉8ĝ~("_RX(H2BA"&s {DDfuD|'\P'hxRp *_y3>>I qؙR2{m--S7X{L Tbg*ba{\}i;=}NC.#N9hƁe X{ !nX?.2lƺjAZ`\F:;]kn EguȆ@mw/K$4>BؗS'.kĢݚأ[iBS'i5 =d`]ƮBƫ?m3Ð\2W?hzݾ]QDa7_~H EՂ]r' RX}\g !ho2b!XbWIڵm.Ƃ /DΫD.bȢ˳beq1Fi6yT1{dX](?vEWVB4w9uN:ģ`6)  ԅ]œ)HVV3׈ z$B5YO6&? ɸ`52?70 @hycc5(s!F2/բ Ϛt)7!4T5~&.|J,jO|Wt0j{2iX{jkZ͸kK"H+8|m2}ޓe!pkw~'MZ50PdM_/ay'R(%E endstream endobj 4256 0 obj << /Length1 2040 /Length2 22886 /Length3 0 /Length 24150 /Filter /FlateDecode >> stream xڴeT[ ŭ[pw iqwR8w-NK:=3_f*1PΙ 'bokd'jbafP9X)(DFΖvbF@^@݂ :+My@mP93@;sK; ͻl "aXۻ-FvFyFۻ@mo0Z٘j@-*@REQ]I=pUUS +IuU?j@ww<ՄմY tYI_(ߙMj gg^&&777Fs39_,,A7{'k h0.vtOgr&@;JR;˝{!Ĵ#/_9%%930KRMuqrC_*M/"wgc3sy6y&v K3@ {ПY%VWUc{<;y1:;e'/`~Rq;SQ{[w ?|=vnv^J3K;S?=0uq`RttJ˻2s3tM,$knY `03},̀x/+?< }vfLakei` 4gRw~ 6rI(Ϻ4XS+;$a4Ut6˥AޞDV}#?tcjbm _߻3ITMMLAlLM-#''#x`x)01;\}fN`# qpLF<&E,&@V? =Bvw`Ż?;1wf,坙?;3wf̜i9L\ip|+9 Zo<&ªN@MKG?L䍜,uw]7H@c""^ <Vxw}/}bu.MMRCLAQ0T`}Ғ\Ll" 4gPI&kQcڼ$VNܘ* m`T̐_AJs(]>JP9i:zLWֺV4҄d d;oHEPhNȢOI:7x = _fP%XWʖ -4A4y|Sh9JIr1mDlq?׫wt AFh=?*Qfbf:Aqe}& _U\{G>V",b#p]ԑYvpFv:gh+CGݰc(n%W9 Tk`LjhסMBz˯>dt[w&j=>5uaEldLOIP:)y1Q~#s#[ȺAZ*Ʀ=kLٝk<}z;(RdE| h6z`E=^#D|ʈC(IP bW]&HeĮjuPLJH?N;,v>݊r=T.Ԫ[/ t>Ѱ\TGTBGw of.#Țs i*ۼYPvk+=XE3Hh{ZƙG)( N眲 beQͫWc.y@dtoxҼpRCITuņ|'*e@o"0MJw0] MW?]"&L(-L{E'$4YK[]g%x'.YA_Bj] vAD7< V.^6topnH_-YW/ֆv*l_NJg=?^>f ,f.=$}9}\wpPedB((CO)ُ"pZe5<ӳ 6*2L#w>Fa ok2h4)cΑ7^3o(b@6ݱWi >9j6+ƺ8S2Q^de$4ȣ=bnGi{07,f);G@1I3ך\s2&ס.Ce^ ܷZzShTE ,ћOʣQDA-G"Νҩ[a$'Q}NQ6̞jb&]-Q!' ,(I5@Uub##bAʄF;5)vt+ݽ-BFM*Wä) ԰f{hR\S$FmQD6_sGGS7tHMMܝK 2<*-9,3(~ºzY `A%^+%#gS꿷3ăU}FGwB4/b쌥E5+*+T p͘[O1`]^q/b1hEVa~(TQ ry't6GY d>B~v'\_8F?xwdFh+3RlW=e3ǭv  Mf2@ɄR .n ߴ(s4|aI:'Bz rd\py\- #]crM`}Q{T{ C9lU@0(l Yd:+7鈒 }ɷ׌}Ut+-ͣj/`0#`W`z|-g1KzKo&鱇& %ʼn!*7c⦯~c-sbRY2c /Fluud7@n#uҀRZy2# C ĕ[ϟCeO_ЖX\%˲@Ԡ>RII5")앝wav${lDi4iFYF@ey mrPA)ZI g,ocgD]hy;ݩ5)Ip z]_ir6Τ -ˌ{:B5N[ {FvZ'6[۲&6D+BB_4<H\`~*lNU0m`C~r;"nyR F5uu<[224|nׂ[5?HL%"&u6h %3HجbF_F) 1F# Va/QR#rډUbM8)>j*H5[Ε؏?uJ~IT(Ű;qr Ȏ: ?>׏G9!VOM~H~AG, ]~u9/`Үbl,϶dօz*xes"'pQc3 J l}*n1uCFHҧ\O )vp(~5 bg$.KnF >Z>LTw;c7tfq/SğnPDu:'5I)7un4vO%oTT'm99)E-t䧲ssN2nB>k|xO@u*Kz!3-U.#do38n,KZxVOZ6×ސ)*Eɘ|w~ }$qo97vţϓfM4+Wܧ.fY-x{|S͑èPJnK;/<*o&w$'l0P*rzmLអk,\6l<kmx,=u&e9McGmp4ځ2"ZXBf Vim ys;`9=Bk]/Iţ*a's 2TsFP7TZӃ\K(rdslՑ`$9d6SUu$?)O-iL }+/pUT UGEeA4us"n I!1A'woEGJy?N`bxd9ҶWݗ'ר#/M`Ky0܆R䘜)誶d!"oeNL_/ s98,>|>i8 s#ҟ>8b&o]ŀ). ƽykҒ7@/OWQVABF>̻R|L9 }dR{ vI:$o¨4 GCM𺳪ul5ʡ}IcRȺL<EHE&kŶ-IdT@ȂMT~t/N̨tt̡ -[ bֳ}H@ $רH_Idf򕫧1Υ?] .lH S ö́#wt C4DKb}LbP"ꢟf(H^S%uRaCQ;gv5dڢ4/-۔L5ýqڬep2e=wG\*-'A'Њ(Xm?lbAB4%ULjY)?"*nXi rr +G >c}Nw;q_t|Uh%)W`КX(Ї[jPut3_TZSxFw(/G9kywz,mʇe~;XD4ݵ<]%TGҝM \wē4pƨpLGI[ /&_EOFoA7}cQ TWfN;˗?Ѓэ8 ťfŐQv{-7ijܺr BF9-F&2j~_ 8X8EVl1Y^ȸbTe.d)r]o[G:9Tx(}{ sήq_ `{6 RpY = ?7pxᢵ |Cۘnb2*7P'׈ dHDqOz6| {@.0Zq`1Y;__|]10}9pۮ7U}rNrUp>^FŖ`pۿֹ`DNΟK||SLPc9Ӄiď[11IP/xyRu|,6yNM >d84V<(Ŵ?CP)EW9*HU*멠}zɓߖq1"F=([܆sǺ.7vE7m?DKk3*(cq}]&fX&ʇB7υV{5U|]Y8]*Cb̺C݃^!wJ-((MSg圡T}UtZu#sC6g^-hRƒǛ_*ma$6|">qw&ђ12[&A[O6k 7f;N%Vmd~6&pBß!hA@y}RٵP@ytz.lM}ĤTܬ;]/;#ii۵_'zi>r Ψ#9˃"H`\$gFwA%įӆB$EY Qs|{<۲ Ir#QnUK/dWɅba5wL ob 1ۻ([k\(/S&#Wgv_ՆOHEh4# 1̓.*v<LEF05,>WD1Jh^t֍ГP}nYkw}!m@ x(ȴ&;S##оy%)J5Kp 4ImEUKVrɉ).}/%?5 ГtЙ20%2p-]wJ鳸Pa[Q ; T-dX- :?;N4:)0KT)JB 2F>G*VsZ}aoЬ=oSGu2Q9D铧g*AolQQRNQ(G{  .So6"=U¢IX+gV3% QAΚYd+)a Jg7>T_yj8T}## F#Y0.t1*Υkbdi(l~¢, jSS@im[QU ǘ젺!֌;9Q*wmptd:EyXi*d ǧ7laPd%b.[`z.^cZO"#Nd"Dr*FݒJ/qApKjN(K ǰ4`'9*6k.m8}ҭ#f ~5CK=hp׌懰 ^eSpge5ibkX1?6É/3\t#uɶAWJ|{;HZ'5۵=9E%8pnc~E1Y78!2\e,-QHx|a~98 <9Dkj;ÏD>yjB3)[3?Zlɝ$nSN:Nrn mIJ@"5:BxNE]:Y?Ƅd\҈T L#v4fXJ6 *iZR)U[5S']]YDOAl L, afhI=Ptzڨ}jvBpY"R^/=q9Ie=PݤYpd|ffÇzLe9t7g߄z?*}m)f]dNyN"#e&GtRdF8]yCog\*Ad4)O? SOkjXœ/uNWp[)+%&HRmN@0Z:d%ÿSBQabn_vP'",|16!. 804E{5LҷAp:l.+ -Z)D֖X Rb? ’c`| Bho a M0p~Itj?`f<1`"VF:ACg[8$&svwR{G:?Wsm=;_~GG]-ܗ^E?.X7n.uG ݒ}ߑh5 /f1ק7ч4 Q\z[`/)M@~Y~L}8B=%P/h̟VuLWN1(]Dk{,?~t`uvվ1,"` 4PБ^OOuaC]@8`Pbm&DL!3(,烞2-|G1jo1yoH#$x5.M>-kļ![R?`K ~p,3^n`~NLGir8RdIjAo$ R4b3j8KYlpk>OMARot]cPu5#cǙ 8B T% 9RڗT] p8O(n> R{Tݞ닏#Ki*c/|=$5Qu3άV#+UE^*jgVß^z%EU5HJ Kmބ;SVK`)Q3q6He;7@>3div sxphTg,^`.V;YŒg@Cay w A}7yFΦk-d 9?V޲$tѓLL[EfޞZq78}$J`1o+Y()Sz/ 9& q3mDbi,Fu=#H{=C.;hRlڒw2O!pNMAkv[)eMCV%gY!sMQbH`3/Kw(cpQD8gpps 8'}ɶdyݏ틩e`F)a4IDXnYJ MBzQ&}P.csguvB7 a ^io 2H96? UQY7~)m]#FP'Q@Pp}QnѠt0\Td8Zz.s )EkZ~hY`CKb1\mIyXrj5YXz%roGpxe偰ѹC"#6Q}zv^c  }K ZWvdѥ̏eDD? 6D>:_W])_w6"t>5~s2J(-e;K,F{2=PJ^]x<i54@{T/jJ@RWgLk1ɥڻ`4irB홮ZFߔƧ.M2W?:$m]ʻ&0EFNw~ESFo.hi&8@D|E/_+%@zSYkT4;=8?5yکͨԴ^4ha`.fa U|FJnP^+]$yq46tEY8ϥ:x}p V͎IT m>}5&tLPbqϤgtk?}K鹦 /m0Ls+3"SyAtYIC%:؛љG-χk1vSO/e17{t6mwV)iism TBHBI\U~,CkyRR^ 'gwfuN:j-uMX8h6?`h 7+%`4 yUrFz%Brw[ReCa7/vRЫ'' das:U7lXf0dw 3mЎv&m|H:Bgw7qm_11 r$>p窀hEct(q0?a\}K}IZ|J[20m 4;}-'R);COo^6y 2>];V~ D(Tdty~;ZN']!ie6tjRs$ Gڝ3LsJ;_IllIo,||!'9[;=;`|H2QQ7gnjX1/KEJvz~8_7FWY=L:M 1^b4-s{SBo5x6ѱ&6@ ̟7yelisY*I$e"R4܏6rkfT%ދռ*Uy6ngA?!,ժUa,@xr mǡQc'i'P`P?WXV{6v1p #U9&߸|KoHO^ȭkՊqIyK r (/.r?3yQ瘖/2^j5ڜG/OFc?_: B;]سD+<@?ԾQsr@*gnػu?Q}xA0HgvyhKTIqAS_0SI UeHhM3чlS͇ ;uɦ(dT 0B$AW5F (9mwq$30<C V}v(pwn/:jqr:RqČJ؝WBm$IV:E\/5 .-;q8`j0l Ӳ>ѳ5J[$D3EwpiB0ݻXoN6K#> %nab &4](W6yViH@"tu4Okc2꺋56'Nʤu$5CZZ ||.@v~}KR+*Pa0oտOc\Ln]7&P`)MIqf[Lz ^jL r,-M;h'Iyeʫ.X#W.XMHT:VgҖlJWQx$ےZP!IBYc#'6Dzͪ68 a6$`^M:+؃{]TSw<|ĭh2l]].\qsrL&BUQ+>uJx|sPdUHpdq0$1ahES]ZBCޤzaI!g 3nxwd$wkPNHq5$`#qYsఋN;Svx_ks9f!i7CQ{k "7*.J1SPp+FSK0;Gl+?8Z"Mo'vz[cbrOq:]%ֻ~'@m|װlnDP!͓ff#zFGZf xj%( \ZfJM+~ kwrٝ$\<Ζ,c,zu) E/RFm:%kn=)CCRrI|4KG7LM36ebö:qĨܤOz"b/^OݣL:2_)H*p0)ܙZI+8$p-]ƒE:;4 uf(s8*sWJIR~ )HKg:}pQGgv(z kSv }V/eh k`,gF[iE]'ILCXm&92,) buN[*m*? ݟJ4.w= |}Ta "Wī{0<6Ǽwa;nL%82`/ yr BZ#']O⡐C Ov;aG :&vF1Q3!;j8b"'>"))s>Mm=JaI"%eU]u+%*=O(}ۘ5aYQ < NOwdߟka,4kOy jXoT T]j}k{JTJvd_kD L"Pyۛ7-*VEz蜯^OϴPi8kxz8Ϛ;{ê8¹ S3FnۥC5ίɯ테5 &-9sX8J3Q6v>vEfO1^gWC"=Ji5}ɱviӥeÙK@Qnj0L 蠝4[l5gN(B~hSxDH9kI(bbҲnƜUd =CyxkjGXΨo\@e𣠶y,K o\uC-sje=fwE|!a?5!fGMfum&m ]yrFyV|Z!)oQU֜LքMfbDexQOM)QJ6@P]̲dfegة9Kvّ\YUUVXt3Χ4 qI'G_K~;Ȭ!,aJbX% tw!-w[dE`Tx 1y=XU 21L-wБow8w ?grJF>Ŕ9ه? ?|;7Y^J ^p/F5s Q[{  t0dQ^z{ oy",pI'Ƀ28q iАq=g5fy8֐v]$pXcx&;dI3"cHງP 1pȖBd?6,!KlR׵DΌ\ke iDNcYyxJ^>K9#pĖ{h >'I~Eg',.#" ̥xt]E6הIN"&'O` lsAd:F>ZinQk_5bU ~:bLr繖Qq"9̮ n7* _Sіv<7ֽ/]-6&9"sUgUz)lu"v \w(&a}]lO8bQ1 V2nAcn8RSC>ꀅ3~2\#,>EF5w'tm+aa&aE2H+^#QDQ/B"ʼx ) 1t+jò@̙9IS#唹>SH B{xKtmH E$ )A3bz8$GYFѮǐ0`9[ϓ_"j(QiNjWo]{[h8ի-t4ǚ)~1HN91A ƸGbV{U|N4=\{w 㖠.*zj(Sv/=m(.~8 ~*w~rJS3bR]NY@\7\&* Oi\?hUMDwFe}?JO)ЬSՍ&vT1;ԉϨjff"Y3뒥4u3rE>❑ 2z=Uɕ춛tSM/"L bFvm]1Y \V'YhinKmk+B|}EG0BoqH D'sRr+lƉqA% h8ɖ_C}zkD)G5gvF"@+PRd<ݔ+|xWkvae2#D]Q_. s,ki(e/:eq~F b8, ia/f4zo$3:Mxw;^лAN兊F=F+ p{}ˈ]k߉DŽ3PXbcYO8.dsEXeTŝgmQ!0U O=a'6IiFDW]:(y 0z FjEﮥ!BVElyTG|ѭk߇H:w5FF?Ep!Y*Q)'@s!z‘A^9߮H׸!*:\5QҪI%U߆Hn+[Z!WE;>Osd;<$~Rl/l.%+CI =IƤ p=ʗo }bڜb"mj k!gVu kddRQ|/?4C"x^6q C`)^${/5AGMPu^7gZbq( 9UK!rdz~v>2([ ZqzR5 BH~\x,?7pg,e '`^& /n`Lj+8(@92Śb>%LwCXT3:-gYZ#*Fxo{{pyI B9na h(j{MsPSyUMa,L;UkjoRL>"^/y3:\UeWJl4AB>uш:+3RO]m%,Pfa\WhS1řZRMIz~Fuu8vg>Pr8'^/Q3Wv<vÒfQfn6Ph*Z&@TtK;wk>ܠɡ]K=˸\KiVEO47Ϝ?ըg 0'VOđdeN_pp#S͌,Η@fdN@#Iu@ͬbs⯊UPG FR#&t.:ˍ-E?niW(P$ , )"ܵEw)c'_.4z?~V7J:0Ix$%+fhP9=h0͝q?}MvLBn@gŵI:2ܧ|,kvi<Q; 5*ɬ撥Pw0NUc,{7LΡaL`_ެڭp"tJbs '-)>RfҌx+Bx{kmZ2ML+zACPf`YaHQ<-Ӗ+}(Rxl!a?xV*C\x[㗾EkBmRH l)Ce)dCG.m)SOO x] t!{YUy=olA7Z/51 }{ );,^oHK="VkE5 FvU{YtK6XP%}4{OTܐss+åʫG DEXɀ70Tɿτ+2GlòJ+#B"__ b*$*꿁71]<3,kHg @t`9lO?-כN*qH8}^̊"PPr)ԠVQ7Df!?ٷNYHC|i8/ 6q󪂐:g3H6v{It J2Mzr'j K' 3dvU]gcxs"M׋K쑆?cPhlVrYuwؤ4%~$NCVk[\@ |QIG?v)X 6;:;N:,"* M3g<[+/Eb:%oﭭ0 Qm(} h|cƒ1<=px>SVOb_"%x"Lmtt.B("h3~ľRn${XA[y MʢkДIAY0PYDz$em3]4]a~NO{QsHwzVm˻Yxבi̓P_dN,/uKy |ɧ89$^M!M4OUp..|HjXv9}"? .~┹UVt߱ VjS_q"X0d;nD$\!+/ꏞ;1VwɉPȝ\FMC&7vU N $|E8LOyh!$)фm/]S/ǯL+E u3v{2StDͺc)ňt(Or&:LY4ȑ_(%VQ#,qv% l٥~H7jFFk&—tjߴXߢ^X7MƭJ%M ߀;3{Dx ""gVI{B>ԠZ` wt&jկ© CtVʍ8E<(-'Bb״| b*( 9jq-y83ŠiD!&WޡO7<1ūkϧX-}QnB # /'T́2.r% v LMSy7FRU%ZAc3`^ 13چLQ;hOw([[Xhon$ } VXp) oDH,?v. +(sBՏbft[QcF0gȑ-gq kxֹ/iS=gaC]xZ'L= oT#&VsB96v+'j+~qLyU)M䑸!Ǟ2-Z<(a $2歑>!d,/o|O['󭘰-&kι0[@ǍVxy`i<-j"ʫ ϛ+AKo3_;X`0M⚭𬟓_s*F"vWȥ7T] :?WVA0~5>Kzp~GXZ ?o,{J e;+R7+,;wĆڼE 'yzrOe|ZC&Vi5!Ƶ,c&)@9x"N0Ɖ;0/7hd.}\gi.[4_c u"X՛SfVն4n/ǸbetQo]]QnNγ3<|`m_']<`YA-0sWvTToPqf>Lk=Xٵ:=wN=c ,Wb^Ȁl"*WIHxǘMqHq ls^jE q-CzD+_'j[̟.q3PaEO-FM1wb@*KHr-P uƀ|燚V>2MP/6n 0Tme V8Cg0L^ӥ^n367]d A_9!ͮ jbudﭏ\cf{p#P Q|pAF~qX}+AVm()(KؿD>V(l#P(:܀ǟAϺ3y\Vq6UVXE|CCu-!=1@2S,Ny.8BՌPZ-)ɲT\VmLy=X€`}5Qq3y?\R-뵉tVeS\u{ckd h5xLM#P<LBx(_@, Re8_%E `$РcĭzFhwuWQr:>H'!I8_ U1홊ǥ4%/o L(E3廢XpͶ[L3wN^h23 fxee0'ANcse@&fo~ӷ`DZjVl2ݯ,Ok$n|흐 5 endstream endobj 4258 0 obj << /Length1 1801 /Length2 3221 /Length3 0 /Length 4346 /Filter /FlateDecode >> stream xڵUy;z[pI5ae!Kρѻ@Q^;d.cI7'%^aK ߩֿ_ɫcy1X/K%ЛbQ+yŗ0ۏ#*dǥm}\㛺tHSKv>}G oفFol߱A:N*a9;_SޯAkPyg:E'6[荕wӪO\ 6r>~혊2TdNR ~יּcbXлt7k q{|? v[jt& Ԋl4u͞CG|Xlc:Su N dKĮi Nr##"p?Y3+Ʃ59Mێ4Q\v!)?XVŠdv5<l8;Wc*V%9D횔h%&VAyVzHEMCPcqt1b8Sn&I+t_h^1߮ȡMk]9ۇ]rkKV£9&.x>s醥WRmj[&D4J *+6v> $8~\зQpd߹Z3M#m֧_b*~M_X.C?*4ȽӝnAJ\=Y>zsϽYqofSi]r;冺=W3:ZbBzp)zvD6>o-1iSH`32n*;{&On&)ugc \/.F%"'zgnE<e}b%nR1Ja] !LMPcUw>=]{;z+4)UeS%zomU2 k[9(-{W*OQ'%W9fuPk&z9њ1{2;v*^&:I()odi<~kӊ  "ǙW7X/ T3)'RryLoʚw^jqozv]%f_nnSNGM9%cWY;vk*F(re6ͅ#Y<]6 endstream endobj 4260 0 obj << /Length1 3172 /Length2 35927 /Length3 0 /Length 37659 /Filter /FlateDecode >> stream xڴuX[>LHt)C3tw#]) Htw*twJx={qpZkϾfLEI (rcbcf((9:XԀV.vfVVND** #H q(}|T VZ̼@7S o' /df VAV6 EW &_~y3M=]l <"3@,:f@kS{K%@TRSȨ)k1;99 #@RLIC bhk[14_y44tUX~J?ܨ]-]Jvssgadrwucvtbv+~u*;\N7k~u`c9I;tC \_16Jcmnnd_ w_9r';Wf`o3Q/jwD 믞ـ))IKk0)Ĥ/_$6>N+xH@`֮'i7l;'YX&('s `@/sk_ _b_bp!}@K psq7BdXؘG].t-3?C@VS G7hȢ vvW2uMD-l\m*6no)x@V@p[iR?6/'cin8v ?!&/;) 0uq1Fd; <@ rt.`%qX#o `,R Vo`,E7F`.o~#0E7sQ\Al`GeW{SWd`~*oF`~oNiF`~:?E7v4b0S+_Go^ x 쁖nތ('275ww 2ܠ{!g [ktv…vHX =bLG:uwbnCƖ:} 5Z|"(ş4 )^NxbnGl˗}Qq& 8ll~z7N[=Ҋܐ_̦V{I;~w㕐Fgoa /7 Y9C5r !榀|F2 IfV{yx[Fq=- CO5cqtݵThJ k51ZOߒ^sR1]'!?)qu{ _*i#DeWJ{U wDDeX6!HVuPV(,o V2b!!XC+|7e \tڞvکvwsjT riuH{;tr,$N<ڀtHP}EJݑADz@#Dh|qjD-bN($+ axP>$)fB3$`< -휈X\'w䩹KOT&L%p=ӟE(R7oI#Zg,?eg!@qtÕ9Ʌ-~`ay55-u9GYPrz `Zcrkp}M3̋gƆ >`Hs-~p٭u9SPA1N"qcӷeGB^.ρ ڍ!fMNe F :[^N"w b&WAU2fda 4ؗ %)/(PkWn'b5 Ik-r]ʞRG6J+slϏ|8HiFڝ#b&& Xll:3If~@gIҝ;g]+ynY5mK>cJ% %˸v>Ƭ FsmٚBccTF0G\ V( qH/jmSs{SI~~NE.*WS#zf٧Eϙ䖾x jD΢>@Vr/:R&h>P5re#9OfLU3p\~ӄO '7Mz,S:llOHGVhE8+-լ4˷R\D{DBc.rNB~ؤ2sz\P㯼p}^(Fʻ;+|^S=_a)P ??a9ʣ (3kDu*[k2q $j72R@~N?|)e-^4BBӡnFťY>lD6""/"XOmI5:6zL9b3&mO"`"'B3,nzC%_c #] `URPBnVD u<@%К˷Pz>֬@*O*vi2pg ;;[cyu/.GLIcܴ*%0!MbaHiCǍfO{L@[f{]=`{VW.i/,)8ObחQ!yUJ~xiE 1Ga fAHRϣVCkoT6~VqfJZ43 t:5Q^Bt04rTm%<}EFYb rFS{1~wٞ渖_p]B' rgMZ?Ыs;I꧅A;V <m ɣ5߁hv:!gqo;peU>tdbw—p?6& d8dgB1"u~:nY-~Ñ=Qc^C] 8Tjv,7`s9W-XfS<2t!wPR!?{uΰu+}Z*L|O::d\P=e|sDq9mp1@^qg R;z4r9.9=k='dBU.U@Vt>*Sg/4Hg'@$NsixS]%cۗc|4ѣ.5,&)۷efIR潕cvVV=ZBmA +۶,'ExҬPd & ey:ؑx{#jNZ;]2j74Ό[6SĻU◀@$~ b5 ]|)}Έ…a[~Sm_>H1^0&(^ӶS쀄1M4 mxRcy&!Z RZ:|oLcM_)r!dxMKp\լ+rڣub浬:{P4#\mzY|^kŕ{gks4+<Cj8,; S5]ᯚt?m>Nk\5۾лmT~ZzYK۾kdػ-T"n48m_O[K{S<]څVq3o#?! ES6% Xmjbf|e)/d̫l,EӲQ2G onSmKh>>ZNtI3;ٳΜGi99^@=%O#8XԾ>Bp[и4r9~²ԭij:ۥ~%+lK/}<\SH©Bsm=\SI5*o3汶a$mD4mFe9A;Xxb%Ƃ!i̕ RYTWJDA,[SY"9{qiJ. #,NNuTd;C( -jAwhIAq?ctq3kx _QcoW4f-:p d4t5  ?+P nelP.un$bxU76Uj Ʀ\<u\<3*3cuL 8lVP?uSQ 2ܜFOpFokZ\L#8~utB>{"#6a?(:Ljh8JN `TJ\кתYvei)_g\I辄#į0nG-Iu=ׅX3]|`됕'I縼qi4 ~=܎p:SyȻz91pI♡lzh"gN9iW Pfa6W@FZ=fP o[`w"tHR_x(2mÉj\_,(b}M .c\A_ZY;8f?/67z`(uBO)`xUM?zzkyfaCޑw{"!v(@cv/@p,[Z}!ȹU7|3N)XstjM~-oPQ4t[s[Gv_EgJ%uXQw²rG}75GuH`Tuˤ`- [3^gEy8< hB<9h}!?2 ˂@@],CܔC-TC82V%'k/ʢS<mӫ[ v;4Ncv/֎DY! r*blv~ ^83' =0㠩^NLtZi-K" N'QRSK i#$UR)W'{)4P[@aqV%_.˛aY,e^Nr{]MEbP8rC)a7mD[*%;#5rs٪lvW3U[sXn3oLcz^Bԓn8)JUtT%ASfСVe#mm{k})b}d@}^,qHvxڱf`A\jKw*3ѝ!1bCu@-J*)tzمBH˯iM6lK9Su{ ꟤)eUGɼh Go'&ɳW(KWO}ב&ZӋ{:bm%Q1BDG*:1=w4Çxx#i;F;ӧ/MpHnQkZ/M7ӥ!tn>ԴhOZ"KHtr:BEA`>0Y~gD82'omubD7ѫcihe CH|BLN P-z,6y%D.?*z~vܜc@9jXDik 䙑~X(W%*,x]5w5{t3kn#Z7cɕ]cd4]BjS7+<ޤ@KvNSnzub2̟orC2aG8(P%8 ϯ}t#_y |Uܧyٵ)#R}*B~a4-kPώջLYPBFsuS]cЪXG]Ro[;I5R{r#KmdzCFFiS3GhCgm5C,%lČj/|h{Vm!؉mh/wl5+MC^Tu WΙE_.G8&؟&ֵ/ /ʅm8!s%wl|ID1_GZ8>W2# ;"JmCo^FW],d 6<": nlKvݻnE!ҽ0Y qo{s&l{Vb7/F-_НTDŽ6?gVT\>(~*ҥx[?_ A'KN#Ip3AYz"dzٱ0FX7aE{'nI.Lq5fBjM=IR~d-ɰDKpl&ja4_peb`Z 5r OW&B4St  $E ʛ*#%0AY4.ݛ?ҒV0 !kSSHș7DEh[Hh3I@(iLjjϡ'Z02e'JV7_5#C jv0_^Z4F#T0:~ Mo2:'xz~ҏYG}l/Zchy++#k"v85Nz4s)ʎ6OΞSew>a I\y^ztlpO}{K9SVh WR1\aP91XA:WA9}tU(bWo V G9%5VL;2䡋ŐKvh@%LVnW!ՋcEsƜYYCDyH]A81d̆p?KV?E$c98GQ^C&=k*qNjR,H%"dg}y)hl5(w"m6 ZCn+_che_Hj8A#d23(G}1סlΆBN.Vޢ*xX'K%a$LXn>zf\ (R1W9I5줟+]Cl]lv3+>eцF4uϾعl֥':kKs4+e&֍z:[l)qTs1,6gKoS[tGAR`,ՉO*ךl|=kZDZSjz [Dq2Z. 4 m]/)Y핖 lp EWhR Ө:'F5sܷ"ʾ Rh!MgHn__>v|$O$\kpJۜ]bjXN2_1NfSy% #Σ}8|>+b@FDg~tRBK/h-Z-=l֚Bv^H7ڢo9L, C $Эщ@m⇲#{&Ċ{S62h&ک)4;Y)臢޻#%b"Ts禍,gի||҆*k΃[%wC֔.jTr跉Hg5΀SgjpsaeqjҎN&,nёح#yDG]Ȩ T.ˢdR`dSJ 愽%^t/YO0X_.G"R?8}![DXW4 "d*@Ry!վ&"6'IJ)GQ!9Ąޮe]J4AkJ[3<ҲR ;=#8jFL93$| ~hme;=+7ϵwxEBҵ58YPdZ.`Xk+wBƫEgoNnCO*v?rA3˪Cbֆs$f֒~h9*?mpCpfȦGr0pX,>LETM.Ju|gxm _bǣ={7u@'M iY%+G4I Wts^KSϚQ^>Hl,.Ş '瞚Ms&;"B6V%3QZ|{J\tڕ% a$MJ6p_W[^lj'pY&{"YI'`%kS؃mK[/)s@,ŨzM>*RIc 7!.r^%^嚥B[-)y}K8=0gȉ 94o BgWKQytKx*Fn~v4!{}yL uoGID mtim3Gܣi3Ɍp4| ?Lw/ť.Řc["0b*m>=Aߧe"Z6BꮉN myɂ4jݚrm!%TFŢGܬ B)1[;H*;Ď"qyhunC:>"$S)dM.T1U"Fg1|\@xջhݮ@\4j=l䌚Pqp8OWGZBg{ȴj$3^tڑ0Yzj<щixؑҦ2{i2!(&=֠IDE gIY=svuěku مےO4SdU"'iGs[cL?AmC xncv%a 8JW]镋g\cث h%rQSwiߤhTsj\OZkנyC6*hMIJq&:c ME*ŰvjT ʅ%oafI̊f^@_)Vq5,i'9>ǠS-i[mj+:?/մYD!@(5@FU,=Jxt봡z@,&'kvL[lo2)*6l`Q{ a#9886Gw I`JhRwv{̀M('tޣO %s]^"7՞ff0JT')ax.Wj,̵"dM ~r@ki$M@gI?FoRhbya@ݰҵZH68Gwh i7p[;b-5S߫qoic_vޱj4hYb>aT@y(ޚ6~VoVR-kLx\{)iTGq573ҷKLV&? KBI0bpUܳZ? ۭk3?sNި,u.Ӫq!~ja󱨐Zu.I١a?A--š-|3.KDAg?p'SWz ꚦiNz#T MEEjpծ/2ȼ[-V>O3 (( poJ6s7&ć<0rD6"ɺ#4a(LWyQ۵f6 а;Zem9hh?,^cW\8q*K~\@ZXg$TU++n /!,^ pp(?g\5Ѕ91FхFm mK8;ͩîϠ]>HZrSV{oK&uxh.Ư ߩZf]xMBz&-{ݤ8/v8: 0ugni+o=V}SFc:Skoطl\|VWg)y"a9PC0a̅$/m_D|ojjnlwFJԻL]xBF;&ľq6" G$m 2g&]L&]\ J9 `5Vk]68",9<-[хIlӄ=tާ@6( VJNk><Io& ܊a|jv |=};>4.\'X5ՑX^X]ͽ$iz /S6C ˱=b׶τW7{V~:lw{⬱Q!EM"]'">zDDCq`tKIL U]׵^)q=xtVn~tepljhmj)TpTsX'5S7,q״ɇ~e~h[\e?P_2>$v:me륩ʺ(;O{%63?sJ^82)c1`kB}nP8]55$aDϒm>YRq`|DJ+x27ًJzrvq#a}fwUyMP(^>ܑȣc$Oo37%˨gE7hbbd QϾ}p+m!z0Ğz.Rz/3ˌ Ք Xx^IяrI:QISBA_cWפ |jOcok˼@*bʚ+~ 6gJ^N `Jײ6*!g L$L2qŭuuP!,ITƋ0Q c5E-sE܇8YoWXyRu|s0Hy\(]xI:$aV%DvucxBOݐ~n'f絻3sǑ}$.RvF/,i䫜x^W8|cN17$vH6̹1;)D{ҔȚ c͞$v3؅ؑGНF][>L"9ѭJu?L tNF_&f%4vaEE$ƌdqiRadOZ6d_NqudCHzc7sSm`lo{[(E*'x3St 9UXg&c0kGIUβ cњ@^aYAW̪ 18{j #ȟ I{)$ÒuTj9 >Ě! {H?5DE!-SV>}S3y鹒bM =vT&F󣙗( ^XXu3@{sWdIu)SMhrk3:wP z>gliѩ8LbGPĽ3{j!5|.Rcwh0"T:CyUQbNa8ٵũIUm <{b+y_ f ta2 aX esjX ~(GGV9T7G[!V?OSq[_254`yYHH}G792zN gH,Z"a6O5V} ZtZ=]XLϪwZ:+fOq_lv)q7)^[ɪ_:vAb|~I"̅&ؽTH8ʞL% i,N)CԈzR`@E" uUmߐ*qI>˫J:EA7 o^Ԣ9w e_F;#H`-GjnNJ>!ZI5gaMAotu)!~݄dB̴6o-c2uEBRPSJ!3 čz;bkȭLvm''7#}Ke5ŀB=݁Lwǣ_q0_dʘ{D_,j_Ygy}%rmr$mԕ/Œec%*G9iQK`:Ė^מa_dd\z\Ax2xKM)=cq{ҭsaX@D/Tv8dV 1~*D:"qO/>xhKיXwR ]V0K NR~ZMEhm6Ƨ#+Kf$5Zro%C&4ZE9+1\[sXyAI֢g, d]RKJ7bcw>m֮ rػZcnR=ɔWw$2w%hJeS, ή4g+z![nR;3B8 9AWsZ`>90iґ5LYkMc%bd`<[~xk <YnЋI{.{KAA+ËJy On_ؗ.ET>~9fzJa+X]Y:ZS-x E֊vu$2h{<|ƁF+TyyxL8kMH PP1XlL)H&Qo\]Lq܊Ar-c04HNh6>CQf@ Jk^u_|njܪ#2*\ts\xw@ybNfv+4JUZ}Qxw\婭N9URUs %8wI$;g cݼT 7tҵ%N%P  -;i!͠ΛnuZ-ݸN>[vwj(ާNŝ!䖄EJT4ދ%:PӼLK܌g( -F+dnDSRŵwַTu|+0o/T3:!Cp܌@ϺpHՂh {rG_V'mb [l/".Qxm9K]߁$SKuro p=AD[}9nxƊC;?da4lsl^m'^;wQx ito?% 9 ?hNn@7:a9~qHVQi&nW:kSe')_>״<у_S PePhP @5C@1&hJ% MyhKW]\|/{H_f^0zP1:"/Saz ŻDs%MlcgifWDG,@kKN<$͹h8Hi18҇0T+ *:QG9#H*3N+}zaNHnyY:4SJx.8m6xBvrH=KGp mp@V%ՓTwָ4 vpuG?-;Ҝ@1$~\X/5$w{u$l=|YTyt-Mj )`G6f<jqv`9@Km۶۶m۶mݶmm۶{ɝd U>Sh8hmDT\]m'P_dYMΘOd;"xzg4$":l58Ɖa?A| 6H0CFW17~:z>Ӡɨqb NDE{ Rib~qRVmw =7zhѷϴJ Q&\vlب*8癇Cb9}jOo5->*wРv*SrAJf_t[چ'֨Xb%PG GyDfT8pFS$Be l?+ i^ϐeݠLZ2\䓥O=&*؟hpm`S2J w0@*H|3VF>׫n&9Æ Uwz[1\2Bn VvV` y4+Ilde B7q@t*p)e%p,]0.>("]h.TYưGLe=FdUҩ<.%TkX26 C;Tag+P Vv8L6:oM ո}Y:^oH4=}Dd3mFF3`+"HϜ{ DL*#M8£dpc8IОf6v6PAAeN"h(:-1 cزw讫]-&j`j/UC K{|(Bs8zH膻≠NUs{5kx1Ͻnwq]}X\e`k>-еΨ ,=|D덚fB.Xw3{ N9|NH0GPԽ+m舭Cfñbq)4[S+@ikJ<`ګfuU.Xjäȝq;Mdzat=%!I,_{dʰ֘a1@-uWA/?aMydMRPXZyGV^dS[r xu;W)q2/y!|* 3fޡPk kV\z'.blMM=&|G-gA1ܛ"*0iytIT~ Ml,H[Cm?*$K`Wr*{C׌U'mQgY-kt$^-Ɖ2 |x)hD{XQ. ӯrˊ.b}DwMR=UwH?{QP3aYo'ypV-p^G2bjt֤0mYL^%AX[t,V&#λ3(6'U}Ұ*rۆ%$N/ mȦ8q0#"X߀nhb@GwoB,;,FX86ϔ ܞfJUa(Gu(y&SD8@u5#H/^QZ ՔW()8ZǐN*{ҏH/TCW8ѫ',L#-8:J絻G@D|?ne 8M05@fn>!{xs^$673搎f^8{'-b4+}ޤ "apSNx8}.Ž%~Nub8ɘ[3L|rRZ}4 1_=` 7 p}]yK3od]oR=%9fٟSZ)Z8)dWab zfsl C' E rJl#y*=-r6L!}A*6coj9' 齇>掤2'̼;"]v,aTc&= j 8,/@q4j KRHl𞑴.-RPs-+F®_hFy 17N,-5.m!/gg8/oucvXnT2xWfppx<#0pPΡ9^'j,8WYfoÕ2uD=pч(o:wg(urz;+QeL^ٖCQ< : tg3952Pn1}jWjTkHTu|4^?*?犔 '^@ţ)rqrn#P͸@}v*x\ 7\ca?S6Js9쀨cH|[zXϱ=׃DlʎGx]63tM+†̀/*@!vxlef XFXInBКbYg]g0[R= )ez =]X1R`'Ngn; TOx?+(7 chnW| 38%}46΀mKi36Z$D۱m FEx ܭÏ6 %Wo@Qpд*W:͚Ͷ50O/gؾ/Яw;:Jp"&V5?^z N<1`|jkwN(+G\7;pzh?Oi:']܏}J x8Щ y[5D~XꜵS!%α\yL(*lz焬|3x:p-a E:ZQ&hx|(?UwQmkUU$NIx 5#c# Cgkis-CJq{QqבtR,$3nKԴ%YZB t' p,WlqV\gXPY:rS'=5I E!+i\;vT G߾s)=@sRqE޼Kzr@xf, `Jv;!|l>c(w O+ 1b,%X&J^GB\>xI.2dMI"UƎOt s( sCmF"UL3Ū۳4ž|gϼ9ilr1tBmu{TiAm Urڰ\\dbt4aml2.L@g0=+]Ș*K'f|"Dɔb^8ڞyo۝+͈=I>trhz'qOF=$_A||ezir)Xh˽fD酉|VHDQZ8AZ2KT:qޙh_}|Q:unOghl.G? Jn U&A'YhAա%jHj=.riq}!nP ͉Bź=UŪOPjipVjMҚG(Ee#dEOůU;YJ`֍!e .W\|ȱv.K 3~!tI3^*Lm,qSn<6EU^6] ؤ"^/;SNA,~j\܁gO&%S1ŭ!%3v uF4]X~. jg@t}cWPǎ⾈NY41&NHz@חgag?TԃIeRW50rr@ދ2P˩R𘕐wLCi_)XPZm=K& fx3sX>g yuEpm Rj`jnk<ޖ3v~t b3J}d\:Pk*b3`wzD'pyCE*: I@? i&X_N3\"Wq22qS,Н[U ۖSO54Woܮߐ0 Ng*dJzm\qu'j Qp,ڸ59^Wa{.W0š(NA 8h8,.L:TbYG1H4"C̑GZ/,q &CX/tCu*lKdy|-dX4iMBC Q [ I!W9\" 5BK"C3e*$2@&iBjiK9 n[PۿjCoʈ/kWe;[*V󑯏1@qD[l M1KLh+z>T͓rR pd %?߾#,_dy౛O6dwvZ|;<܀߀6ZW! u7 c=>յ&da42/R3a7l}x]h>/XI_i4ػt.eB<eYH]T#hnFBQI5Z>ECκrh|$64Gu<x\N]_R, aCX۸ _ S*g2dc*3ɹ |Ylw}'7Y:I͟нDl5;bF ?fUV%[ DF/c \>x=O3BKuI?xb T"E 0~޶D8|A ^ն~f6 bkd jxD|7Ueq/Rz?ःà H`Yd~0h7#wXrM%^ui߼?^AEBcF[}w'\N/f<cE`"&x`I_"DfܸԩD cL7ؒl3mJV,%)5⛏bZނ|Iml`x۸=_J K=WRkֆ% &Xo/1ĊK}!Ej Qk lK59B&A_/] d?BKxWIᾯHM N~&yI!B+W"H'2Ofl"@ **Lz D%DBy 5ܒmaD%ruS)ؑ ozLe U Y0b\ds7")#ҔbC+,4G7H,kx!zQ1d y{(nTCʴr*:đ`,Dl_N1!%u}5q{j'HYc=*u֝ 0Iw*g*sꟉآC< y2{ۮ(bQrl|9Px`P1BGM)TʥV&G@ڟIVاj ѻ! +~"߭ 0R5;k< %F倫|UxN6aJ F P qSϤI{I4H` _=2un$_0@M;,y',^Y~?xLĨSS/{Jڰxo&ϖ`LF^e@j4qs37Oz4fF=wk^ YGM'{X˘^>x_R+qީGO4d㠬E-g*^=,\׉C*{ݑ2Agu՘"z'#*ԡ5?s~gL(HSVBwgsZ#)g==`Sxw@ESa~fD8_8q4@ ;N^|*Jdt̴9"  8J"Eq(牢WJsLh\ݶqձTqV4 ROI]j>S`m`ucQ4g9x]U}7#t /w'%vY}a @?Q8(9Z'('(`QjG\x"wv1_3NdO>Un-ئ3k2eMXVS"@> B3+|$2" =u[W3@(o xa>Oa*o޷| ?\֥1)eifj /"2߰<ڴ-.y07.,&)_Rܣ=gѝ#p=%,{Io*Ҋn>Ov +fZ4Embanͣ帅mu;cl(9h \ѽ_h6Y,ih-:˜lA/t}湇@Vj;QgscΟׯ{ FpޏIkO{h4͒riJ xmd Д&߄/~^Bdj5-dB0}YX>!yH47Qw,?Lh&kLyfVr(99%"d t&lF;v8  cj,K~TɠK+^ ]eٚm8B^TOQ7E0X5UFȇo ӀR#G(R4uֱI׹՟IYPk E k? DbA).M8I>[~?:=g$Wt9uW"!I3sh ͧ^ʎADgӦF'"9a&FVTNIzE e*W9=\֘R]+n-tbZbઊF?IC}+vɔ8=z@dQØe||"qg,kmz(gB^[^;W塌06t| PQ7|#CY>٣kuIbvSA@v.~^8`_!@0,4н.nT낔 ZA6c Չtx^-}A:FN%AFe_oZܝ, eaաcXfbq#łuOlq 18 my߂h> _KX`sstկQXjf #Eb,i6njXwǂ& \1Kc c679Z1a(&K{f[$e&$T:bR֕K9/ʘԊ>Gݾˌ7o#x)sJ[p`A(cmIkgBDs JkP:1FBO;$!\6 ޖ \ĸSi^5Yx.[tuR N5% d GTY@!7Ae L]` .?.k%R$0ҩ;k.I K^JFF[^.Pnvb܁ddnFbmhȻJM3` -ϕ*d$QfTUl gWjͶ:cqPrE%;DސBmH~5S]/r YҲNjWc8>R03yoY@^gBt/-~u\udF V8]?0L`,v Q}ŀ_v~S?tT ɥ1;J/ʴzTktC 䒘't_^7s>,+!(ĶGߧ1eGݾM 8%^HDԔV-&$cCZa,EvΫߞ?Z7lGN|2#\͙Uhq:q7k~s; r&<གr!<3g WlА'CN lDH[Nj4&蟃{Ԇ'yr5䣨+=n&~4;y+9~h`qz>[Ddλ_(`j|d~Ɋ; _9>xw%}ͼ?f8ogdΕ4 RA[0bMf]7tbXרe+b@}j':  iA𹹍 X4 KȎ{hD% zr@>_(D3|`i$p\I 6MA Bt=ȾwPW;KĎpj$}a 0Iv 迈lT?>|Zoz+(;d %EJj%/*F4s( {;R}H6*ɻըcWuGꫮsb: 9LfE_}0f?]\7B=l%,Ղb@qJc ]㓌U{▇ IC9P*x(uvEBHXU;B(;սPSI>S%rEɀ䤝W-3p_ +sTJ>pɥ/L;i~DN'ES lK8*S;rN2%ϽOIU$Bw.j=,0T,$ߤh?w c:F+,V+q1G5N#>F%9;vT"ِ?z̛H 8X]- x+dydtE11+dy(DN##)/tܹ0A /eךj/srN׾ Yc *(* ,-:uGbFb_ZOܵgTP|˛ժnْ):?c0:a3 aխxG9'^>胥@ט:{ 2o5ڬ1Ń9 R*/!@ GR)8S3\a@)\Jf|Vq۹4!u\aGfBQ/*bb,Շ8oX.4S]Pu/mG?g m>X4oP4Q4Miɒ|5;nS'>S\sA1jmrF7g^X[!l%ψc"Ϧ8Z}lk$THr.zr"QT~ o.^w$eӛ((9rO1a簸'#,&Yw)풊x/ 4jY;\<=jҺϤJm࿬>mhՆrY#'PbC~?4ūS!Bȭɠ[[4܄zZ …jvJq7_6YqS6#S_B.s F29ЃHGpS pZ O{R4dErTȕrC]nJ6dž#,-߯ Bh,(T`׹M6Ċ2 G#b \U[ֳnai []z FvTKۋ{ce lz9atZ_;K9H' i?_ES7`87$lYFdeFV ⋟Т<>~t@ᱢ@ 2^7$Y VɖU1||9iz ren]; w@Yt]]+׶;NaҠrx@<&7nSh#L5@i3%.`_X 9[r.}p׵#K|Oʔ!8D #ͮ8\Zs f f)F<ޘÖa<J}'i39LX,.Y",dJBm/rQjҏη@^F`85 '|аଝsz y//,} =W]hJ үmyc}':cZ/N׍8+5H_{eݒL0}M8U @L {Oq~ Fy MU.˟IDw{:TȲ&T$/ ng4bT1 zqpZ܏01k> gi9|q R{x$TKZM<Ͻa,~1/]RN:RϠOrd_n-/qJWYo\16'S](\ȊRZVf]7gm"#y/‡)Ro6hȢKu:锲LOYX:8E[URJ`5 sRJC~)g  !F.1GWcmaIMwݵX5/܊=\ [zy[@2r[ۧ>rƓ% 8;fmsLF?0E+E5֌1`+$klEl.XO|Ч:YD_( 0μ⧺ͮ]x*Ru8zcTtyY_8pXqGdk;sR=sOȯHg?'ei>lpU)z)\`.~#.ԕc )+"; X4"9<\vk~8k Dfq6~3H=cxc6Է K=Yh߹4{[G)@>^Tx?[Dwć/݆j($[(fU&;֎LYZ|B_C7>])cm!w0AG;O ۶4qA+)~H Fm|,oʍW7mo}]'VIIɔaGݾ+,}9^嶚P5+nՆfogJ/A ^|57LIeM},CKفNYZ޻]A+!B?Z+)j+9fn < ]΂~1IB*2ɪ;b_-Jp~I31^+VߌG =e1)ԜF@$NI.xwGwOYV5ǎE5ׁ߁= ɗb3S\99qiJmgGEX+Zĸ 7yJerqn3°c@%Nk/`Kס^-B 4s/{}qG+xG(" 8]ckQ烣f1fR=1=i1~zizF Wg}CWHPJ̠K2ʖ>[v00S˜]v麔ܘHrmru=/&h Vo*4  02s-I=gx˫4 AdWClypS,mUXTb|4"'* dL涐*4W@32l}_c;€oœ3l[= Pb']吆+܎?>-*0qS,:a7OAD0q@_Et=2QGب҆:n^h9ܫޑV .@TtS&}p]ZWLȏ1G`Os8fdiJPZ\m'{vq5&wE+j#_x P%xtC lwKZZ%SQEMaJNZA PA`[7H>BY96tdS)~<du*5Z[b/GʞX&_Лz~X\9h@kfn:׏AC-cK״]AșNdQp|%2uMy}M̪ RO\;p2aUCz sNXUE( y˿MAܪtF5K@<%whR %cxBNM ot" Z_?FT8~)vHmK:0u(cۂmʔ{!5SL{O+c~=3Q/E=`:ia tja;8Ld\|tjlоe-+ V %:KI\~xߥL0ѫiyH &EPF+_R< cSFX4:lPTb⥌o^`]).64vIYmjΟxd)ҙ^ǵcPMPKLZ>J ʂ$'R{A_} 6.pX.7A>"rb*}a_$\/7Qbé}P\θ[v#Bs'E.))z68F^9ĖMIɺ.k߱o]h*QU=;ed}Z"c'66{44Bz>1g03:dϖ @عiKv뎔 < c+ Bl?tE_O*8}G~(?_8h3UIƆUҥ}/Zn`5yi [kG;#&2O$ E|'qMGJĘp4Ck]bDtRWh!˔(4+1 o3E];fcm89z4,wkQO.9=m} nV5/E^OՋ7D&{ǚ-zjx-?-u؍A/cJђ5wPHrLZ6J Ư-Iϫ4L.<| <00V@,|%Yћ,snl xb?=ftm. M࣑;QY? ;h/"/ݍEd6?1'TN ?VMb WH9rr4I:A纇G!d$Gnv?WY 0h*v.qONfE'4b5)jb!$ %X9{ ;59u/K6p7}jEE}I>O !-atq"t&ya]^ ?djgeĴ %l`,}ObvD*A5,bc. +K!H$0|5.X6V>obTТꝿʙ]yoa&:{뀇]ƺx6Vlnt}g, :Ғk!*C?k񁝈1>2@8ZĬAVla8Lc9ߥW܂L[㸕M4E7ib将 f3hȨbQ=c>6WMvyEp[V[E!DZίK9|Q UE0M}D~;[b_H 厥k,QdD4'^?zu*fȵ-MRqPUZM+⫗Qd3&Tmֽ [A35,'nuIʌ2·.'b4& $M"h c=O55L髏i-Y=es{k{;[G*@Cќ.Jg/&mi8JER o8HM|HQbqCs<_4=BgG& \N;3ʟokXAT~ge_0M3CƞFdVO5=B<07*L-i6[B$ 9R?UT8 t+"HƮ!F9w}6Δ{N* #x}WHS7]ky IӼ"N~fcqJoi c֓фߕ!*^ۋLNji:4g j82HĒZLjd6Ai"9K28?/fK_FHgKJwr_jgIYr99}qM1s^Lv07JPn*5=Ob '3vNjkM]=t4 șQ?xoD x_* v<:C,Wla,~i!x[Qx߂П]v (lHH'3OHou;djNUm(wyHfD[]c0oP; ӡ,$dFOUڂdI|꼎n[CKNǘ9oLpcގld;| endstream endobj 4262 0 obj << /Length1 2148 /Length2 24038 /Length3 0 /Length 25316 /Filter /FlateDecode >> stream xڴeT˺5{pиo-w.C]\9{4Y)HDM Ff^1Ahjk`edffGsXكč].K{{33@ :;&@mPwva01v~wAV {˟l *eػ;XAfYFF @m-mu6@CMBU F^XkHE%@Mz@; zO? ":,L`/nS{O5wŁݝمɂ/~Vw{'0 w9],*gWV@3OvR']M]?5mp_;c+ d 2}t1vque{Q  ڿLwms٦ g+gṶl;3+_6EI 5u1(ؿbtp+O=qy^73'> 31{;wzɓ p[hortʈO o :L5/,Bz;;̍mVogc7 O".ˀ<23_ _Gكl=f@s&E{W/IW[[Ec; l=3BR+;Yhlbj/ieq1~-}[2i9R~X ,\{KS .1~W_$@fV +'}X98,mkXL {/ φrL#.߈o70i8L*ZFƱPx(vruȠ+^fc:7 ^NjS:|X$SD 5-?iuI .8ك2܋9[̘8;a&9GJ9OF)zLۏ(T3H*=?^Zg5 ֫ݚ|Xg!b. (u1-cj;R/|Wچl.[+iN 4bK{άv@o?;NfzB@Eu^p$؁,{AB!n5OU~j^J/`F!+4Vɘcn坋 z1޸e{ZM.e۳Z2veq∙g/>iz P7Ȕ]#!FġUp5JZ289:)FGlQNsVк3I 3i@{X–(.TU`eɧLjN)yK=Mu{jU21zB'x ɉ 6 sgZSfoBdv)c-h-x_}n}P$;7V>yr #^\?4yEҰ4O%/vvͼooT7P-pXSϭdT@[ΕS-xbaI4÷V>pPq>;<8c$*=ATHC7Nk8Pc؝e}oΣҞ0_owDr` Y?R_d`l֋B5~U,_kkȦ\v^h)u!ELPtĢ*U?rA *`GDS$EW){Qr~2q W(t]d‚;lЁ~WQ:R0-_96̑Mg 4BMKDq/^I$-t,BZsid "3=Kכ\fˠ%[<}m(̆ `QHg>ۨ~R in60I o'%⏹]%<<=^HA~ll.A9pB"ԸnCOˮ_۹o|Z U綞 ~?7fSePL: ˜T}5PmI|G6>ڀ跡6( h|8) \w4t;YDDqmu_`CeńZ94Nr#:@K^mPQ@ȅ&MW5s  &cj&Ȫ'ӦZ{&ܒ= r鄖 <pK\7qǙyU.g;Y Q:6yG@OX]0x0`y)ROE#'UgߠoXYS17TaTIgt}>n4@i`̬y)"p5&GI?10o$[T햣Ӊn+=kIm.ָ&ēCRqke};t\T*}' ҹỼm qLƌd%,ܢ(7d U'VހQh8 Gxr4p!~7KX l 4^_ ]tfOZQ_(:SӕGVU/_\htiܣ\“V %h %x̫%'v7$p$BơSpc "Ύ_M+Q 'ъ޺[}fB_T>{IGw:| cZRs$|qM޺v @@uOva El.U5I7<|8 "n&4MΥ.~[ lܲSj{Nd- .Z[͗9=K_Xb Yd3 Z(N~9H.(FShd,E= yh i+|q[Y{n+T'Qqi=z^6DW'6oaHϯ!+n zмtex@UX3o+ }^)ՌD,@QLfw")ͦJ%MQo={/9m@wGԉuuCnc b%BP)#4y+EeCfI@n5Ѯ7O_b]*xs'-Hŷ},8wyDbzL1j 7w/Qko5QXo'_PV<S$3!(4 1z"G+|gj>,g;i4$Ֆ2hBʺ$q)dm zF9R/HbHp9 ¿GSn7 >?rͶJ B+۶ F%gq}M)F\%a%iޛؗ蛨A_k؂3pA0`=3,g'4u:Mņ:mS7Q΋iBSvW"~=3tݕ&O% AEtקOI:QMB4sD-9<7ua֪vc8 hyv[zXݒps-~p[U|<4/$fM jGl,neb2ՋP"D 4@Z$E+رnfN—:1_!g%(7PPqE|ێT[x$>u^!r 5əO+z;duI[piBҲ7+РkpC9631bܡQ>e6:- dȋd&c߈978GӣC;grƖНOL-*q\?0f5H;$KF3QIe1_ޠ[s"s$4i{lĩ'(Ֆw/p:*9n̦C.漵hï=D8aaa38$b+qo>~vXnų3umU_Bɋ9]]$Xc_l.$^8{:ֈ+NpJΈޔ@QJKТZ.e&BgY.YH3LG,ã+gM_?DG&^Ȃr8QB `Yf#-hי+LmRC# &AoEa\\,퍚֪<ܠPƓ,m[Z'` Lx,-%:niox&#QDg:_MO\|K:yy(F#$lۈul?EA q2R`$HwqzQ{2>Gw:IqtRߺߪ4Jf F(U~*-mT,=>'-7.bàPjsEfg6Bl/Ϙ!Q|X8E'ps#gs'o^EPh?^eZ|B r>ڙHY 7%]ji=Xqkы%Y6r3 m-ǒA$[݊ч\ͳD"Ya“b]M .[C}mY'-I#p rw&/ nʉm?|<{9^ɏq~3j[j639ȵQWC ۽LS"Y*$`W~ =FV8,mk6artx:UL[܂nlca>Rp1Y ~VHQiі'R )#jLjv43y&I⯀zH"h.m'&Vc`C~DI͑ pړ;XRG6 60. H\ Ǩ.yp vsCǮWP 5fbGC C ȥcUuvRl`31T O4Y!d$޸Aj ^ P˰S8AWQ|AհHF_AFGy:P;mݥ8we:н(ĈWYtgH# Qb"zq-4bځƉ\>65#}&*[' \aA\TrwKioB 9^0䷞&dL -PwĎS`GL{aL'ƏO!Q>%8Mu'Muө.?>Te7 @κw3\+׌iu`V̐\ cX\FLf^OQU-a' K=PWrѬR`vv޿@/vYy_ ,1@69KCZɎ?hܖd|dBULpXskGf I^/>/PL7ur׶t~*:_Ⱦ u(#dۜMpgEj/'bKRvF^yAV}5* ,/vON"<'@L؃Ⱥj_@s{ȅ;كގF|dcei4vO$Jí{@oʕ S8rdnc ћD{aLz_bWcɢ(C*!KN[V<ٸ-!~z 'Qz.m l, i7"@͇mB^S$9r19#nV7؉\Ut@ ]q?½9kWe3a^+'ƃ(7'Lw3U[?a'˜d\m ^F|*aL76la9Q/o/xKÓrq܃")1ՅF[cXG1Ys3тKzb>!k?Uь 5n=9.GBTTD,DNB֗l?4УJi3\wG.HFj@ab~Ivʊ6!K'x%D=NdU"Bp4:}d36-f"*n|˝c6yHƓ4zJ3#?=nLnH̏3צ>W6%@uXxKpEm@Yz3~;P?H 9+Bě*$0FYz Cd 5:{#.kJ=Wܠ[=ɲ@2uKɣhᢝzyyh.rܗOnRj6zڇB +G&ۿ/Q>>𻚸0m-( Z8WNzQM87>BKqEx0칣*cjHNE6.#2PW9s5wg i 09?j5ud['ƆtKҫ}w]RCDlaa-~uCf%dYH+̝"㍃,8eV ԯ nbNm 3B{!13F#m==bIí(V!4C "s)ephdδ~w0M=HcQPu+FGmu{ ~1ѰoI't(!ZX?P4m1H\M9R\Y(Y.SQ`4M xC)!a_\[U$ H. 79xz!G)),T~PHl N džUh3]Thtx[Yod[˔ۤsM%DJ/gLLbˀ^Sn@(h{39G#UD<kLBQAw}nΦ8jur`?՝8-2S4pAfтOɍ/v/!Sgl`/y$lϊ| \Z"׽%.$@'R:e8ں[1[<[)Y}5&tҹ|9n{O!B y3wۨgn'Fi!gG~ד4 [QB30#,hkقhT[=O^4%U~eYnOrL6ѓeyjo nMک] ߓF.3ol]g+:"b.-w NeO+$6qMA# I#ȗVdR;6(IUlV$ Y(P/7 Ok!%?hoabAh}Rz~w| (,p icQu*6$⽱bY]֩+ Q+\(C]`7J0c䴣.BZqQ(c[,Pֵ@.L&`Ia3Hba2}>g > 7q Np!d6]"·p%ʾd-;wM9ɚE䒼/eY2#/0]Od8k_S%/$w*SDI{+ɸK?m6ByMZm ~FY cvLxq0$"'jkT !" ¦t37IcԴL sN"H֪Yh6LvisasPxY)ԝM }4xp5: I /o ^cޓXF-F'%o? gC}x&E䵢ejw4329y[ڄihHh'T6_$kɉ&8+34Z*PY o, 1" 2W4"t>!vEI~mm靿9ʫ[CED<Q '85觕u_NC]؎] CSXuJd'NRPҎi0;g.:_gG:TNIJǒ#Tsw p #"cZqI3&$Uvqa>/y߷yWpvx@Hk}RlNk(o@iHoD4MZ{t<ĔoI'd[BXX=T@b%zGfe]0_ FjtfC0, 2J'wy)%ߤlH&;^眜,E =+^&˂RULyvS&АO($N,eU ]F þ24[e .DZP~":l[u0v(%!S6%CkƷ߃~|_QY=iS4X@Ч=t e%T(sX3E7s|tC?*\tS<6Y<"߷;nR#70L蠆2mښ-:q ~ęf8]<k˧'H?#(56GHAgI[pն݉ȣ`$&wsN}o" O^78(^2^f0,q"> B0@\=>yum s׀2" po\`Xv*:>Rrɴ^FFp`ґ^<~bK~X`] v1L?s㇇M@%F`e |`랇)xNQ]$$&I<n)83A C(X5Cin_wumMm;j2=:u +W\kc^NXǪ&V$ r21mg~!x%ph)?Ry$TiM&+Q(|bzG7fA߄;[@(+CF1k\Tg̮ MRϢ-ҋ#Fl, 8}]UW!%/ZJZqTʲm /IzB,Z>)QoP=#042o 9"sb[v뛑 ̨/a wgr݌E-w`{JY65ev9!"ow^ÄG*A[ l) 3NB'LLLLk֋;߼p-񘑶< xF1D3u5 4{$0p`bsYRŕx JݟQ(4p=Q!ЇrVxp=h"JdSk)PྵGl:wrUĨ&}I%a}Xkg=KKB%;4~": ':ZGFHV4y=j,*kppMԗ):e1:iwx`2TX5?#9אƆdB؅ށZUXm"@Flwj,씑׷%sUF7]Hɉ<}SnVڎ !MwN_8qy8E]yܙ[$P~۞\_Ru%fKK0iiqV.a{ ͓~'~10ؑ&MF6sbˤ|dt]H/ :Oc__kwN6=Kt!G1QΆw2r|Cܕ<[#!*\SpC]ڄ/{'@]X1ТXAi?=\dj!E(A~99ŻG%y7Y 9h)ڙWDŠ؟oijCb}>UE<#5aKK[?k SIEtrR%"R-8|9\aD/CFJKUβzˌNBw,jn_Pz s}-l$0τ[r/X Gj1DWwLv-\CaPVs#/pzVP/X3{l̙CtVCxxژL_9r#lB% A!M~0Upj#p_MUԵU>r`dON 3/4r{lI4}59~iVɦ/߸_&[ЀF^[b #V>n`/cE~n@avڻ`Й!&~p?6)XIiDjyfΆ&/{nN>_p})D"]k=*ϑ1w W^{!2E0ҰWniM}+5I+*J]quajJ`{/z^z˫%nK $UeXQd,7#v33!ԋlW(~KW?|!TíSxċT IrЇ.yV\؎T16R$,qH.ё0RĨJR 3 hG]oaVfp6zpS@ɇ!MZ Faj%l$1nen>N ѐg.i;_hDO _gJ `˔d ?C^nx.۠2#'˭Q:u]4Ll3=pr?@0XuzMF0\ 2Pk`Z('fAdAG .RN$:uuᇆ~4Kdt`iNaӑ)1U!3" *&.q(u%aZ0EYZn5"^W0hp#f+O}k-b3~ĔB{iS 4NyLrUe`(Ade+ ʾĐŨ9̾ ҙfj~HVꂉ:zX*xTwdsY EKi#ģ*N'C.w! 6WhWFmgػR"T2*C!{߄!~<+ + +:T],iI|äIGoiuq0Ll۶}2m۶m۶m6O3^wU&߶'ڭߴ@fZwq #uA1ѧQ 9=B~)ԺNd:\GL#[l [ ¦q[w +2@poٌϲ"K Q1w^#\Uj]wslV~UdqlJ[ԫ`^D~><R6ͿR<':jl=QN]o++Q]T|Y S=+1jttޝr,dӗ# uc>r3F1 F"k^lKBѹ"k9 >r2vl< \]I)$O9>їPq'5cp7"a鈜plgdy)Ӻoo,+e<z'KʪdiBg}no!wVxFg݁a$OC!4Xk|a0Ne% O|̯ J8E'n5B(,YQL=ntޢ$Nttt0%JAQpuE^+R|uPFT/ Y/j͸NxNC5h87}BG8u2?(4'HojMć:ƺW1G8utg,s{Ԥq^l~Û|._ο㤕_un{_Ŭ,dfX[:BGGe6˲/_:+NDMuB {a.=A=$U.2⯯qV&؏Ԉ/~ڊW?VvMRA 6TTXs1_F.C(I("s$Ӄq`v}+gSO'k;Y:7cikU #Oʨle"tTm|,/[ #iV[n+ 0 |v!<:qK@+ +0ߊlj /pyClz' Q4wKzX$PSX?%hxˤ=k.Ȭk`_6A7(iKh $l(>H-!My1Q{,gIjjX~KVTHrv?(kK 6hw uU+m=Al(\!h2S!ư)/}#HѨJm͓]_>1,{4>ǎG3oRM,H܇Έ#[eq@^CCm<qwjW=yw`4Eɹ +RO&OZ A{f\-"ܗ.Mu^PGdi|0}9eF:aElQA'nnڀ2[pD$:AzćH׿ ӑ62U#󤺿%IXT@%6+O!H1zrQN=%[(]siq,Y`29H{GP汆P)V{,A/1p+5I[o__7Mj9"cΨrۉi"TW-YQʟUuQ0v._|-OSarFBIy;D!*LbIЖaH 1q7 f]82kNĤd*ٌ6GfWy.Tiy`[l.^/= +>% Z;D{+z l j'ݰGNG7=D\srF1fH } ;GquaEvLX3ٴ6h)Ub+0,${Ow4%Xr9,gLvU5wcJ׍̉%PyGn|QMvpD4;#_]uw¹M|xHt (XQ-mS͉+/HᆴZd( RsxhR"yj,*KN7E -7Q$(=Ԟ>NJ(tK][7d@SрRQd8~ȡey `YANtyoS< ğq(@89$V3^JS G2I@Ncf K~@!ǑX%a~)t@ *l*v*,h,y$%\oPB*`ZEk]e.5M/_%yFETn Q>Jy:T&UzlS Zs VJ|f^$u\{[񜼡/w%C}픆=i^;H[)_"EKT&QC zXj9/aq z ?s fy- #]:]vnm _kw A`ĵ*ro!t:λ8HC{#fB׋4xihoƸӧjq/5v'P"-&H\xPU19 i=gN5,ՑiuDc:& ]$Օ' %°Cp\pX:K/woM :@Udl@$A0{4(5/+huW\eX@7UD2ˮ3eZr0/աz'O(քm ?kcf?cr\qvt9~ZEC!ŴԲ"\ rb'A}=S["Gh裻9lsHH .Z'eO 8|Xռ=@) [f:6\DETT>NTg Qv-|&0vKn̸cTH!@Ks~hhۅkF$gMAw_ .\j{xg`~<19\^,XdmS@X=H@ v+QKi |(hۊ0.mد8o @㍣Libp5wSz[o=:ӏeD sŽρ(,B׽^?N|X :~zU=qΓaa7F|AVQzMLU˲>h^P^NA4D?hFGFv׼~z߹̙Y yE%!,_aUL*i3^ Qp;TM];p]puTUZQ>lLhTs/X/cxO0Cl; Gf=ȡ8'u|wA, vI >?BhsEw; *#hjZ2 B注n«7دv6rSloq~ie8zFpfw]l=R,KIGtGtk׵X49߹T<5:WnEx &ƛs^Y:3:Y3qxh%ASn-#F#P@_73FL副7k_Fێ Rty~#f}ˁ9H9zxUHKv袲zxE~luMH0}vǻp+*XG,#$рbeL)} e#] Ȱl˅ӜvF.TL;=U<]Qq]lNWRqQM=I5UA6O׵oNTtNdy SsFR7g|f(?EWv!T10*vKRMa lU׫!O;{a8HDIfIM:˿^ T`:ZBf/M$GC;Kwg?"ˉdRzqH@&؎d뱵eVKe/Ύ`Bq2[bï?b|ݍcC"J<+4Sir#/Í+ 1U[~ie9R|2&\m+tl"zAQ8) 9itԡW*ivILwh)L]jX]W%CFzs.qeih&s"WI*_5v"`$UؙN.%5=28gi'[ǖ ͬk`A>Ñӷ\)^UnΟ 뚬HdnyM(f»3ק> J"!fPo\`f};ơZ1T}Fh$T%1tl,Hn.ph'Vs4]ʿb l֌t;f`c-Ǒ]UA 9w #d}e=´Wl,=b'sxqsOtC C%מ%-(r!45BG°V#y9\,T^Ӿcj& Οz>ӀuU@m`#2z*똻6 ت@#Dvf`joClPȟq龰Գ)M5JޢPs u Ex\C'#IdQ4Ѵ RFכGXs)h1t2ʨ4$o'Cd!ㆫK26/:xpӃgiy(fۿWåD{:c`F\]qN`QeIDJIv4:%Y[`jR@A&K<ˣ%@Be-M^/I B36!' Dte? FS55tWMN:\0*'X.Uҽ+,$ :Z5 BP5ߖx؅zubp_,1Qu”.%;Xt[fq"Ao`A}OBޡ">i<0Uxj>XpOD 3eـ|r D_A^zInsP(=/<ƀn]U% m+Qcv3Z5ꬅg_D15Kq鋠#O!|?S=8\mlQ.ڍ>~n(i<=v~pJTŻ)clmR4>9֦0ЌEN/ E#$¶־Y1wXףJ:⸞=Ni5í7ĩF!ǼBN2l'}-U(Mj_5.$L P6;r@)l)ϗWtI8_xM(Gx* q,׉ u gZa0UJ{'PZ\?Tۣ*U^{{m;Kgh"x{!(YG TN5K(barX0cS͠ ,1!AZiFOdqOo<4cP]M_Fw_Ba2{ z.zdAUDq̚R1{W17ٵpx 跠 .Пi@wZH) K9OtFOAu􄦐5WL%CJ'S1 :9u@E?dg(־gBzuퟱ|G৾!Or֫# 'PrqNKDNjKgV|3=c‘ZEq: 3TL^?9L!єp0-$K^2K>$äL]uz5>R]U7F'~1H*>/CXr_3*C,YQ]]~E!H5b %QT# I_~bz4ŅV1B pg\./ L0O<  A~ >Q:]?P6waW\;_Cyx8.oA>/$RVU F> E[ Tyk dԶlՙ.Sul"7i7 %5db;I!c6Oaw &=CS&6J,Ӱ}/'AӤ>qte )7u.O3p<P1 W34""G*}Y3aC]iy2.nQ:X#Q+yS wXI{aZp*Jb&dC;Pv&=oAL^I/-a|Ј]6mis9F܄9 xjpE.NfP FZW #Dz/물i,4+9Bq*s*P+1rzk/"} [_PlT>݁~Nl7"365k(Jt~F#v:.N 3~9 v;> "qE{/(5c!OD*yMT Y> stream xڴeT\ݚ5w@n¡pwn݃ww \;w=_ww(Y=|U(HD@&@I  #3/@^AdglŠ p5v223SP9]@.@^%@## :}8&@mB`b[Xi>R@NV.k107[ kljrwۛd d0Zۚ@u@CMBU FQXX5"zWu~ zo ",Lp:9[mo(? GjK^&&wwwF WgF?- 'ǻ1ftXULI9>H?`Dip3?X;+,3wۛ~:}Lwq?/dl@-/z{feMADQFRBMACx v]<\[OD\`0TL dg/}V<+gI+忨]C"mǤwl?qX= =4xL Zt[6I؛̬-c''cOx-rpY>mG,&F{G `r&V,,&[~x-YOp18Y8lVf Q0vqe ˇGRyx333P `acr\"H\`4_^X6}(.a<ԒM1A+M * l Ȥ,K} /Ѣ}hM1S1S#@¨PEJs$[]>ٖF?~avBW޶^<ҌdI4 m'L;gT=. ۍ#Mt'弒\G]OčRL5~e!KhJZoBSW[lwIX"ۓ2v7,%S }2 W>#}Q2/w(+jZb';`mK0cg|_r|AJ&KѠ| 5m+ h[]|1/P2cfjm2Zf*{Uy.vAC4"Rbg+]Isؙw;yҗ:h{/ʆ@l+{Pf"Qd_E:WGQnn&~)(n=gA{k8oΠA%;%xY}$HVt(/3=4yjru` g?C"HeponmdY&NvVR(Y? |&-s(5%}0} YQܧX64/[HX^b,㾰s R keIQ4x:0 ;I5Hg;^G%hL۷1dQ)p(t!'=As!EZð$WPIzAT?j*]<AD%p-NJk77=_?4yh=:I@9%?L5AM+k96 ߦFcCE+x]wx _KBxO>9Snf5+bKN!Nty+A<[ qq:Q&GOQxz)ׁɕZLExpso(1ʈj|Hx&ˎiy(FL,7=ja[:a Rt)/1G&rϠljRdypU>Gpx+qbh+^^9DG!B]s1"4bzm%ֿpUc5]c٣!\_$ 5(l+dz7>܉}GM݀JܤEnUYAC0u?:{}; Bc!J|%`c`J9eفS.YQ"/Hcd-c1./K` Xr0t{"Hpo(aqHƐ62ASd%ɗ bEӐr &͔@I):|:P[=0IFw&Dql\ Q2ǕUs|u%UlVaFg4IͻYJT0HU%NE2v0KTiv̓}UTԑ?zgmCdXT:9u)\ɧHD}d©3ꑖJڦ?y3paH}i[jU yf.#"檝b 3npbQ2=W3~2]5F WrHNI Q/ t ?vǤ7?ɫCv6K5S-2( $wU?CqBGrv;sLRWy5rE 8] CU8t9ܙ(QҶn՞F = /qmP&HR2('Qy)j^Ԙ^M̛8,];yF(ҳb#]V~1 >'I4=XgWɢ>((Tp;9VmE* ["qw/1ep*x'މ@ YCޡ~5Dl'6Ea9_;-6cBO'ϫ(%io`Ԇfq1_v|R ;̗Y<nj*VU˾Iܒ,ϬpÏDiӎE{œ֤_b|J%79b¥si_lb GGXru$6~ng Rys'y<)ZVw:Ajb5K6|$uc*q\"v1hGm+ش*e$*±mkoבs0Pcnc#1i 2Ek+I*D\ԋ]f!Ȅ0ޢEC][g5E>[_Iwe-=u=ppMЇOkcEnvt]0*Mu4_?S9`K3wkyn11-QT+G/rc$}A5Lauk#)VQ=j{z:|DAAR|`Vf͑t l| [zL(@;_o Ȭ*d G۾ ^^~"hA)àj+-Bm߬Xjwk*7yb;鎓\ejtC* UXIQj]:Z~ZvV~6 o0 OObs'˸zt( YW7(4}gߘ%XeXHZE_5M'٫g&o%¦H|F.`z_WI0!w~G4R~fkYLZvs,jBA?r_!7ұ*&"Gk#$v j 0x}]Z\U4:34B*۳#Z[=n:рei2_nd}+#B-s47"xtkO$L,#uϼLhzpP@Ӄt)"G+|WkU| 0 &qnYnZ,칰~!Z`,an+er"+4DX<шY7Ǐw0-!C$l2²ϢMvp+8!SqYo%Db2|‰j3~5e7ļ\R8<)p(2_;mQ/HDc8YI0kt~9} 3Ey⯆p$/ϑ7P!QǬxm ٫=~o)ē`NƾKάU5D z/ g%-0"vC8Q~?h0a uy)+;ΕtYz0սm5#rYCp9P]lF9m>EopO}TDIe%{j618W! ҕEcT SI88k:o7so_Py $e b:>F!` q:Iv?V%+hT#(N+=1l[- B5o as ȁ A(?Ι83v?#u% FRm',!P2?^EEhi~F8}%]#6e5>^fҁSLEd۬gI1HAnOVtoӖMbyNf@3YPuup niDX$ɒ@> eW+6cyh4Re, 5O;vɡa>-[b 0%SpT%ʝUQ"m|`vK/eRhA#J^?Chˀ56=ekP6}T.Ӣ~5|x2>hƧ4a)7R pRc\ .מYD ?m͒M պB]bB.ȳKrP6Td2!>3/xTOf 7&XRIٗšmo&_ui "GvUSmۤh#le W+DiuvKqϪ2pGd@^TG}kdeШy`.[QyIV|}aÖ)doG Ĝ%~#Aqf ?ͅ=u!lu)`8FlEO<5//CAVMwgʇ7]F,Zv(Lt4 𫢐 xQz}qqkGr*[SY]äZ3Qsfyf?W>~Uχo̱znzђ {(:e{p1)ŗ&QMO>r$t㎣`)S)ISVXcD7v`A?h|k)A2'i}bAlOŃ/vRf2bek#KjθE^\1Q1͜txL> =9l-batJn+s,_샖E]ܓEaW0kCdFjmS0 8(@M຀;W#"Z|9>OcwumzFXl2|NyΛ-}E|,MȊ΁P}{7GGɋV;LOÇL=1x\;3-֫x'[hx MZ]&,?Q {jr`PX1Jz+B_;M,|28) ,z`Ɖ~eL9i=޹r nF,&{;&Cd{aTg{V6{  i;̴9kM5ߒy oݯslh;٭Lf~9#?2 hW_SBhowڐ`s:N9⺔5%{ R)?Zmm0xSWJ$R.SoZ&1,dzKǨB.7)ʼhQ @Vܦ?@ц~DŽ>=N@f̱ni 2ILq*u%q<ϒߘ'C6ir7{8ھ}]$s` ^s `- b)RsQjI٬lcכfJ+ !,"Ia$>U9 ƲJڡP+/$\w+$,:1DJl;*FTOz䰫{>inPbh޻T#a<_E䫻NN 8Wf.]ERzLG2lA' }{OsoxƄCN=nQJ0Q: pU!/.Wtq% f2A{ &&녈J̉ƢmxMn2E;oQ?SY &qÉ?1l˪0G_e ]7nFre8jg`h !i!*ܖOtVxƐ /bhotmxzehG'J D}@> ,Pc"!v"կ_ŴYEPߗȬ ^=P `J)[:bOmɾ `O eaGc–Aϑ҅q6oIjvRxٓSo!1mHrmirbuLdgy:)E'NB C h@exp!&F}^K/p\b(%i?8Lnƙiħ?rPI\-oo$`LzTI4)yvf?k wJ.xvSMHah 0N0g7tNЍi> `#iJ/@l"<,#4t׮lIlT^J\;q&=VM>Ӯ ! z)#wKX9(~/2NPpCdA>"5)mFNNb3Oe!pX$D12([V_|/KTz_i&GXy"&N ?ݢPK3N]EzV@*\|fٕL#vVk?r泵ҭ(@kMoYLImёH躿RВnyՙLD,E@#gI1]t-b~ Fe7Ǽ 9/ЎwK)eΒWK TSf0F8wAJIquSv¥n f*G!>H8xVK0ưp xOzI` Z5+)*Gh&D׸Kb!$]_f+)BܞqK#eI7:s7m\B݈4[:d_0`,9yS>SgNF򃾴0c`pvNB`2Do"+ d1gI.WJkBu<*0)UiDJNAX߅ZIC?vJN5CKN #PGKC*O+UE`ݶ ٞUQ H,@%\DTV`T2ObcM+Zw)\js5 }q+;8.GJxKZK0XKgk2ƛ﷑u@U$L\n`nw-ѝťz϶F+JA7n*H2%BN5RJ.n8(g4h&޲S&&X8 eA~K2 Y YL.,';͘ZŌwA7y X_ ZzR%lEWhEOAY2]Tv >Jo3ۺ_w^ec UdܖO( VtSIvͬ'nEX^ː,5.atM2ȄF3\AKq*k<+1:WT>l/tڻA DN(Aij/~Ab?}&/ă[Y4iіzaAfm)*T ͽU^[FTt#c +]S vg cds'v*XC3i{Q/n{Nod6=)v67H7/.0"K_h'bsr2U iJqa$sr »H?Z]շ%+ftf4[ ^_Րn*k(oMB D)Q,$tTgLx=="3Fz 7`sZX$ Hnu1tI(R[N 7M~1Dgщ?j +rNRO`^2 W1);r)d$i|."GjM'pQ @\O#jA yYv3B2;$A7=]v u'M|\d\՚@\bz4 }3qTLBs%iwhQϫ%GpT .?zuptBKcaYiYz8WZ H{O@}Ce42vعjSƲRi֧SIw_Ђ9Q  ,֊J̽C*"Ga0Rd+0lƙc6 ٶŚ3 rӔι1xZ,$I>X ! =w"%7,v ZE0l@9tf?~$/ݣRŜ/QCoa{#`yM{t +D/ ή޽P Y(fK"PDowWZ^,ܠ r[v[FO!Ƥ ne X<8CkS q<sC,E߿\y}wp?'J"\X~ha?m.LYC8ٹ+J" .6x&$^e(h$iK1][ EifgE ~>[|3Z=Xl-B/3U'wJ"Fcuax`@=m$YChi뗕 R0#2!*Ek=Nnwixly:Wgy<̽wG_E2֙z{2b:*7* 2V0I19}4.-:zV?s/@70,V`)-'\U1X)xq?X*te=xM|.]ws>>KH[-g떮Ě.cK$ =i /g~^o)?Zm3[ҫ1ULbdV_- Q"2wp=AoU jr - 7N+@P@uU˔qu[?IYYAEQݹ3}7{'ri^&sJ n cѪW. # \hzx%V4t/iͼu\<4Ҥ܀)VsR`P^;14)2.@ff`3h LnAbϊs[m[gGÎ(!eټDVH}c}&fC1]"%iiu_Sʬ)Bq 8CaΩzN-2egoJã/=e6y_!ΏŔʛ91Y`Rg\f$`~GA}W{v#yPW$5m|2utiaw}ք~x!Jn[VGPX5w|~k>@g2@GL'_ P'*3)?qgf-g yvXzKσF6IYc~Eݹ>ah]-TA)@ܐ1ί»Vgf "0j}Myr>qH'JgH(xT7[UIAN,o`4}ubr!G߈ֻ~\($STGןjLb&p,p2Lwiw=D&ҵy\*KB1msXC̙ ^yT犷T,V@* = jrٽI4oLuQY/>3hs |n8 цDOWZrWjLc $&RTP 3\h5f)0ш6)#It0kezzÔ@+/c%,_[&dʫ4xlnyF=u5m&) 1L4M@'+9OKؤzcpdnD73\"4;p&蛕~lO<\^xᠯM|v|.<¨591VCW搻 y OvPb_kJ9Zm6f0P:19tu(Z8`иHУU,vx! rTNj Ra/QCU듪5pHWp0/ ~ìV\ A9unP"8S&=ѕ٭sT遘Ii_QΜQ S qVoyzjƒ4ϛ)QQalPӻ\Kn`CȝQ *8 cވ0 Wm+@m] B9MeT[Y43NusJOK(w/tD u(h1hEzN׃S|-༌PTzwe_Z}N_x|~|@)g3J(t=ĂFNZϑǷuGS@fL?~nZA|@>S"Нts\-5n;S#c6j431ۅncYVzDVX³v " {Cg;xJh@6czf1z^x{M%ۨ 66:uԧk+uH3e']j(F B&]K#Aucxri2dA rM X,0?a49l)sM?͵m }!A&iuA7Vuql@A"JL6ZBn칀xƒ꫾.G}G쒭Ay]'"K4X<k^=њ/~r8Hx=1!1^Zmo9E.z {T;Q2#S ,tz[yCJٷ#-? +i5'ssYx1”]A+^{b=Sf~v>M;tm؍q5Xv Я @j(xjUV^pyb<sBia'47Un,(n_vԭP/Z i-bêϵIބL#'ڬƜn-W)^YEQ$Z$.,UEϒBaZc(ߐDͣImn }5w%$yƎUAJߢ|r" ApS} @ٺ GD SGCbvnq,bv?(0ENj^y}i0o@#F͙m%wKҠiXѦR%W o/>}6##>}CcrN{JF>Ԍ鉾Ǎh-+R|ou{jI6TbjVf .;\"Mfx1b 6#eq ;+D4 6vCq6 l6%iGIU_ g4`,9к8.;&,{*C@窿\?ďmD@Hɵ{ax)5QU!ͬm3|tmY!d ]5*$)ȑ ߱M"`ܓ׬=ig8}]wM]j6ݢί*Ҝf3'X~3 5|=S`y&pK٪p!׋<>>^'^^BSfkpYO[" ŒAMGBu }ۃh$>6V 04҃O&b0PqQr:=ʺ*Ur{ DimE57iE4|y{@́MhD#2!4Z:/p߅ )Y!ræLwdNf]WU sc5{NB:ضx-;& ztv18?9:~F ۚ]RVcZGLr Z VVE/8.l)8sK=Q $hsj(sj-pHd͎H#շFov6C#v; Oz}* 7% IRi/\0d<<4W>t%]l9D#nWA  04p'N%HWu~z`I&^V0!4;Vz i6b&l]EUY g7ѳ鐒m[UcF? )V& vD׬N=aU{#xWMjᐑ-a/"Kl:fq)'[l3 xTEy 8mO@@5g Al ֫3rdfIp|EΧqyvNj5wD4tTr^(s9gvI_' 2_#BҩSv!ٮe,AɁ7{g- ;+Amt$cȌ c^K|GC"*d HE}94~k#D5-CBqm3nR?{CPܨC0qg{E^koΣF繇QMxwk6:}S5uOK7vEZGӚᚫ*DlsP;}}"ᴾ=\=Mw1j+3`zVNg, Q^=Gv\^P-}Z«4yWEp*m`A`7P!%ܧtA3 *#ݗDx$N6†m\ᾁg!\> gS}{iOԳO^EStEKԲw էwEPgC9N|ğ<%䀎a ɦ\A)!1Hy-~D"i/F 6׺Ͻ..o'K5M7/8"Ra_ufA4LiZ?c3Q\=)\OW ȡ E]E0z*+=I`gvsgᶃXǩ&9uKWBWƙ)JM>ؕ u k)5Y˝'H#\r-ϏY-bׇ]E੶POE!a^Aƕ/<`^Ho"jI (~oSzK-?|@M@zamlۯS82עLx- 0Y(kބFIfygEY< QJZnbu> -fHň:W ȿG, C6Tso_\BUIӼH0LbB`}Ueڛ:) @BJUb2eA|XϷ`rKBL{9ÔwѺ$3E7'KJN|u}&'_vVMLK+sBOغE?@EPPVAPaq>W5/"_|D"CWcS76~y=p1PHgInx1=Gi?/= Lt0^tb5z8I3)p3;!#|0\@>=#> stream xڴzeTk6ݡqww'wwww 3w;իz}]UXQ^(aoBS5cW9X`EF.vbF.@@#à :}M_r@#/@f_ hgniwdin'+=LEF&֖#;S4@Ci -lfU&@ME\Y BXzUQU ˫tI5?@?u>ˉ j)3393 lF_}9U@e``d`Ww{'k h W;8],HgQ&@;g m?лoc@iw3oe,UTYڹL>]\\>@S4:9!Og"gkc+fd7lM-]0ϚY,!J/A<;z9t\<\OXL`f0}TTkg?Y~b,L ofg ,?*́.&0`S/Q3Q`03qX?^Fn@+`9&.D,elgfTmT]jjog` 4ew }$\mllT Z|7J?l@SEKg ۙ?/ڟdۏcgt9YHk;3/?Dher373s2}AiS_D02ٻ|\]|fNhG h/h337h7 h7#ďTv?2koJ&r]WdHn7%;_;_ϜKVqqjX~\c"gdAsvߢED=981sr|o&ym&S3o@碽 oUJsHxL997i%tܧ3xb;$@€V B{Y)=ߤbM Ī[S%]#_9_D$\"^@nY8sLB-z ![mdIJ +ue.m8b Ǚ՟k#\F0xb,u(YDY9& )dZAIJQGxu _ٶ, |\#9Xm/H),FtG5L 6(?Q'x]Oxxq(rCO AeFX% bX MӾ/~mNhҶmhSG>u0FjSR;}zlp֯ zKHrݕ4mVt!5lh+ >55PWHG*~bÚ}_HxpB:>Wt8=>I+ҕ)ܦ:Bm:>B报 !9Gpgp)gEK):oi1+s=).Y((~7ݷR%z5_|ϟ@ 5`x]'`cdB*Z; n ir`ui6j;n{I,Χ!~3% ?[/VfMZ ~jr9͔qsTczD 9'p50ʄ=O%pQ5-Po,; Ke_kFgXQ ҉a.bZ|œ>+UsqܩC+4ZK䏧x]aU!|7S>!y2U4uݽkPևq5jiPD} Qa)oyJ8,ž+ *eAU+H&VD;(Έ&X7VVڴ(R)%5R>c O~k o9Jc!j{ j(ARѲ"l; ,[#Sw`փ)ZO,umP}UUsRoDqʹu1Q6Dj'6!y'0SFzjWc5ضKaƈ UUl]rݸ!+pGC8SHW6:*| e!бi6 r9J:2s)Qd +p7)^Qa` Gk,TgktdGzA36vЋt(YV9#Ux$~C'ϵdjmЇPr"g8 #6!a <% fHXĴJw-wnc=]e6XկoX"a9I­.?:oQD]MBB3ߖYD4wӑ}"}M C ,a&/Sm| 6gFDHWs1-{8\)S`PLPރɗRh'D[Ww8A_Ɂ$%NV)n''emAnA zvd,etrا1dBhhe{{qovqK'%>tO0wE?zپoae<Jzf H6H@Н̥0l>x|d&"V3U?9.4\ze.Dݬ{/`NIJ`>°G}OdݾVZҌpb~缺kqݛ\w{X~d'#ICzvGH,(H Zf]]R- G]V6`mAmʓ%ِ㧥ȞPu`_۶!W*Â0! xxrЅ(C,5e(Ld E\PTu;@检ɟݫivbp JoZXM>Kχf2rz@#]|0Mi^|n$oC @>hGiph#ʴ o]5ʰ'mY|þ9G6cY)Acy=XOYAVHO Żplˏ_H:OK2 R A  \0S2ʐ(08{f ~Rb+U/8G_[(j+t%",8JLɚZ:L7Ԍihh}l沛M}8`Jl*G)F vڸDw"RRJ b ,l>}%\o /$<:xtS[i:.\w1mH#.ki$6"i@-|W}(4\nuvFBR9JU^n+d!pg}^ ZdX{ Ff!g2 R *"1djQ=Gv o2cs-I3E39冫KoAPTlMtIƀY~˚ֹj$,GN,wt|[*?6:6U+=D`OpGֻQN;Hl[*QXYVk!("bDJtF ыr_QQ];:d>_{:1;1# Ɣb=;F[k+]‰2PMlE}pѷ @ 9T*2"$&&/ۺ!BĿv7d*R=y9T3\|N\->nT!XAE`Tio5 e[tv{Vڬpat_R;v!m)TR Z0A \Zl2"Yr:<τR'U] [n=֭Nf@T3yG/H7yNU9Re.3f)*ʭK'QMV$}r*9/*_lʫRj*IǓ^[[P`ɉlj.4nn]qsAn-27-9Et4B"˖lgnAK 8ߜg(L^HB =Ʈ%hM@rgf aס}jM>)V|yu'B˅m%<]IOq&vAgV ձLTrOSdޟdpb\tӞf$Mztz$ry&BΕO(&-X/CF qIC=HU:NkYUjPX obL 4E&)xYwS2л(hO;.z;i]Md|>Mb> HcUZ-GX"nv*0T0 f"64є"Z^ w@y.t&3s^FFu:c{8MO >>?g5ND J],烻o*8? b0;'\/NRPa#eZQydX*goZ]Vr?2 J&wChKC~ s(bR6բee6ϤArG! oMԄwu`'lBBR#~^8UUNHW"PmI ^߷}] ,9L{iCb"jfn=d}v Up@M}fZu5㽴}Wh?h'Ķ+iSp!`цhGۜՓ7SZ3/g D@ߤM  zG66J #ɱ'CRF\,TW}Njp=?QzG:(s=}*mpŜl[A[TDO#WNRcXGKQ_'W.ӒÚ4U!Bl*ul| @n@ 3me ͑`i| Ռm̙djoݺ hWډB+WSw4'Pɣ m%ەxi{vm>edb8W_9Zdvn'b4&klM:J (_XNWZ0wA҅2t_[J7,G@CoplDw{S8q07nD&m->p@MYBޜ(l"$3wdEӮ7̛M,dc)0Qס"̉_/Z-:|- (]jGG0 Jo"#]jbCymS2 j`W+QB&ۗ7̉?*AE %vX_V)%JxR&Sv<^!ԐXcRpkOIA晅Ն ӱ+lqhR bZLVRHW HzQLD#͒ xK猰\T{3CI:FG9~zBPXi`ozUd}^Б!i7"L@e`D+5qos-Ue $ҚP2VWĄdah!6`e BX{NТ9bAl"w3)X#0ZXK` ~<6ki!0z:.Imϝ+SKUg&W6fx-?4kjj3㤤Cp Eo'E)L؛S@1^c%n`}H[A(ݫN<+%{?:}eK:ུX. (: g5ߐkACo^'^ȯ9\K |$3MSbT;u\OD%?'}9X5DbIe ׃B['Kyfj9,qLY}JM+X+fMVr>nBjenɶʿf:I&Mi֘#Jo% ).J94CP jUwv[5ָD᝚ɜk=m8a8#V#Inhznl` #w>bp% W([eʴAuA("2qw0DSS@pCK̒w7,1b^ѩ잝5Ã'`>%[ʱQ2XI[t'nNUf\@- IzGo gȄu`*՚/a"A}ր&'JRlwWN%9(ѪTzXM߇A3I6b96pI |,3s yu>Y״NR &I*/LӖm@c∨;Ќj}^x㖨zC(jݏ P<megǶoof Kot88?\Y|I?rhgE|%N݆U=AXU+Y+;A3oq}_@tK}mzBb!˴{~VMˈ挜)$SikKU:mA#y/Ȟ}wB)pT+ D0!l{]bߢ!`5$;|/ɲ VTÂx} L X6CIH]tNSV/HpVQnvіE{#jD5ULe<"^(G\j)xq(TE%BU7 Ix(RcS#F`Hx%mUSK4$ o0vr eK?0/ۚ+vGܑ›2)F6V̮a"ibqo  M^a Ҵ7s Q֧ ^nl#495 ~<5վ'1!S\2jΦIqm,u ?g6Gݟ`Pnθ삉:a~ZU_M[ X Ѵ m z F`)1$|c*0cwƓ R)I%3;Y?CaGۯ{)ʐi_젶,Y i'&}s-B]OW9 ܠpizO7$b;J>7Uo2u]C7ӜB7gn.$z:TZ f߭IpxJoΪ|{cax kB!߄"c+6R@iAv)k9Q iT*_!G]͸ϣǭ{\L}%>R'?qۮ`bݍ;c>@ boEޡ!816 ӂMҗUtkpd&qq?|55.oZtN}4}+=bNs T@&WQwToVV"3Mzr6amז)ה<*hN2ci`8Rlr9 U)D;V =F2/)i$!`PCuQ#*_nVe Dfy絼V܊Z{,Cߗ0%D%ާR!|- \ u8.e7h,":`CUL:ϧmҖїd& 8{ TzY;^z9@I O wup{Rd3{mdNofdkb/ѭ?&)ը$Y|60bK4*gY0ܺ6 Wh *x0E~=N EmʻLpoU.13͸!ޮT gYb%|;~u߿[+gʣ9ݐz }32 6c%2D7%V ]э(BKV05U䗲dŽ &(H*k7܂pYtCZ-a"!;[c tZt3&f$#Ф8>;ﯹyO4f竬2#L&h48t&A4ך٘*{d%/%fA #}SgUKe:ld=Z<䎬Ou 2qᘏư^챱"-jn#"r[q, sn؞% FNGeG19&A{!Fxe+d Kʱe}~΅FaRKVHDȁ}'9~,qj@ qHOK0kؔxDH~w3Ea¯Hă%/*H1ݒ;fc ,Z2'Z4#;L(j;Rvo ljBei%f7 Q N*!/ Ż[#$._Q$Է{S G m<ľDnoJL4OhQzl`|[QsGZsBװ#Fɔz"޸G_3 VJ:33evEXg 3@1NjnO£Ɩr*kc~Jݾ͌󌊅`$z+}O\laJgLE .kuQ evLvW|"z1ì\@>!o]ELndr2tbEhΖH'^L,k8-3j&XC JRƁP a9x/r 'P қRXb.qJūC|2r<08.J8U%_%=nv!eZ Mq[6(99^}56ҽΧ)"GIP(0Jn4aNod,Df;hc DJJ]eq?Ω:k FQ,FmU`R.`zv<^{{8f&}r%*M-Ϣ{S= Nd$ղBPt6i1H8sVRh]P+, ST' K2ƍl5Ck-0)#ZJvKsHV"+n=|?xR-6<+tj|H#Q,DSU#z4a0HĚJ-hl{f<>-trRhs0c |NU =oį,=-vfpFŘBQ }4a2;GbĎn8z?DC&N&;h>EypƮM3e2'g hgFV6VX%0VB,󜒀h-l+ 0*h芗J4^nEy`*! NnCS R*OketdeW+YKY.&W14hH_SdSqRY|&-"Ehx*BonVtCA+ƂF{i*hAhh!+9YӾ4)_;]M3'H9v ùVx,Y3yM~4u ,ϧᣮwH);^0Tm{IK](ĬtJ!l+̂d hm06/MpűS`M]OfF}{baG$4&DK[*LG2ꗫ;_]"6]=w5_V ;ƈojԑSz3-5(nj27$u|9VZAt7+fu̍9jMu`c'΢5ҩ01 X6ͅI9E♱>,Gz'VTjfZHW -ku,BSYĴnŽ ܷXXXr9BY(f܈|FDK{ l1II VVq&sjUfTlVqUv=ŽoQ?Hf3BƨNBw R!lI~gTJG)=XJA,_g&_[& E@yLx/Օ7f@ޠ #i v$N\ ^nU),[dXboRO-VwJ="ل~"p٘q8M4/K&+췥Emc6£ k[Fjs1{X+p8p'4R^ iB5Jg[k5h,z&@!]-ĔFqhD D01I*P]R)c+9 ނ4=7Cד⇿<~ 1Бȯ\@"/GRz^pOL:{"6x&&-f`-kF]M qʭ\7qbVP^_I]YTb0u ya~ZIĦe`h/<"<*ӕ`&^ugjo\[BW Eph7SS^ToAPX ´b[VZzdsE5be t$tgN˴J({&AS*9n(FDqq@X^]Fkנ d!MY=vxHE_sU3d S(uwq\ku5bҤ!"(o^`ugP#=[뉰%(YUϜ{w[t9o3{4,Ԗ4O^Z\&zoY܊NUz3z]^-MKpHhoVmbNWl"`[}}*<)zyYv[z,Iݏ2y2H i }$pm0-dIoAE.Gj,)XK{i:ϵj`ўYiFJHhzj:> X~>r"j&]%+fhP9=h0XLRKb7]6yROF˩XmGdrO *D#{GX$5+rzDz|F >W)LhШ6J䩠x>zKZ4|QI IF)H#,ȣBboXɆ}2{ O^bNj­f"m_8hg=oڣ;ܲ*; f[@+n9vF=CިG4@ܔq9q‘r:3$t?"AE,c|hsݬbFG-ANHaUmCLO]#z8ʬ{A5TY.EɅ2^ΔL ?dlwHt x-0pGd~BV{Չp3zXD L3ƚYF狔;yˤ1a"RQ8AO< 񉹷xSյkH\%v(T^@ɫy?D ,[%q?49j!NM-*VВ\ܑ 0 רÍwJ۝B6Oȏ`DVaijx}sGa"*^@>W5a~w~]A kBJvڤpWؠoazU65[rq@USvCJ5I=ssu}]:a0P-vKuz9c a7 r iXCApM 1oIbUׁ%Tj7!\QC]:}m'T2Ω{& Q`G^;p$8VJ9~-eH:WA[2o,2Tu1lK981/I„-.Y4]0@ =Du۳dJ7bs;Y~Q!)(Uֱ_n[낕U#ߎ'Fr\4𪩅-ċB 6TV:@gO %ۃphu`vԯ93UźRԐ,"H..GڢduD;n (ʟ糩቟8ǞnYQtP|7̸(٩SM6b35߻Hco0xX&/ 4Y6wڐz"okUd#E`ЎR+ Aso׷RE;j@C٣hgxҠ'MB%Q( !煵GB8jP{,A&-Eb7q1 R\7yq@k*RA,bl-EP=qZ[Gi丽־fI z`M4ota;Zs.ɻ q!ƛB6uB6פYkfB)[wkuDiY$׻ղ6joHdϤKU(.IOpڔ?mhn<4gN&El^ 3WN.^RfYp)kƺ͂k`L+4m8J~5M]"n Ƈl[1GzдT^ʜEz˥/Al |>$rIM\۔HO Q7ciq7p^.͓[Kφss$e͸RU-u%Ju^ endstream endobj 4268 0 obj << /Length1 1635 /Length2 12585 /Length3 0 /Length 13637 /Filter /FlateDecode >> stream xڵuT[ݺ=w+(w; Nw-J+E[qw/Ѿ=Gk>+cRiJXBA0C Ԁ8Y5@nf..6TZZ)6P%%C \^s/5rq. PVs37lm 1HA\lmjp'[ hfap-l@6 h ` 3+ hkhh4T4^ k99A\  @ZBEKaikj_[T^IhIhp'j`{Aoh/V.ǿ 6P;+ b+bx@q[ SϦm-@`WП$Y?N*_^蟚\Akcc7WYMMhf f`@`Yrsq/k/蒐;{g;fvsm[@P*V?]- ( +Ū"<0+ @)x R }Ҷ/N'+ rAq5s.n ?*'?"aA[]lc~A/I2L%Y@/`g#?)83G[] *G3ٺz,l6]j} eSËn_?G?|/\]<] إ4d $fɀ- `k/ E\M[<*@_RNnP?n%Pڟ+,_ߵ&bҵ|9G bi _ߌ dKJB<}Xy\\N^N.˵3d:;R^/3VH+vPBVO1a6uX:s$TF Q2O ף %pxZjH(T_7bH }aNR3*~Hړln5sDq! #ostf|)ڬSbi4;pHɩ o+qDm+ٮح:!ЇჀFP玮IM\D2(k$9BI[f`Mt][D0%aō.vL~놲F{QP[.5fsgG,ݢfheNX:d  1(f?syw`b@΢P( EF) Ї@;ȭNl➑T:AM'oh7|KQ\rTzTucq$eWb~D~ٹxv?uyo\.V`B0eB寿.Uf L%d(K]swUӸ'$-zIAMMD܄X#f,fb)oXl< <6qe@']u/쯮WPH{Z.ZVm,= NdE;XNePS؜ҷf _<Ag/j_}$O_xj\"9m0%9lbaMĭaOM]>SB %1[=F! WQ4Laa{zM{y8oX뉩 "y6?3lWq 0h]v#".{L,0׹% n [4|IELoՁ#=D-^  6)k-[]Gҭ;LN}ITK>j(V*!em#ꨁYg{v@GG\้MZeYSzisnk*},$l+5_ʶNODh*y\}KI2mGzw߇ܣI0jriJD7&Vei(HQV'nws^j:ZXe&gpv̼aM? :y;ad57cÀvJgp.-xYa:R:S RJi&WΫlS_2/^:4h p#b0sYY3r|tĂpM?՛`sYe?'p&<_tڣ xkl;K1ĹUP~BGK0|?W13>族:9\_/! $3=> FGH-a$'VQ3Sy 5 XO=f8Gn/B蹯C-mL`M 9O~ fPG~apM~c:ۏiSf%IL[3)H_^zaXѼK[c`$~Z;I @"~v\E 2Z0Տ""hؿt7.֘:؛z͖{[,'/IwQцG.gJ[ rQ [5N?_4đ7(CAT%2OF#8JgM7-xTL+U}| K+۟;e#&icbXȻZ(4%fb zU!cՐ&>'it|/\2VwT>p VF{|)"V}pM\ϸʱ*9Hd jv52 VS 1BEݩ34ܲ ySUۍ儸 6f5䵄e7;bOM+1TcaA;^^pZ6@.*FyjUY[gLȼ n]#_GmI[|}MyaN^]Etx\ 4KR+< {ه"<^NĔlMLG%Kħ4qENغUl?7i_N(LboqGG~O1X/l-(lQƅbM4KR4SUN䏇c˚]"jelXg#Nmڹ2|֩J(biG8?"KSJ3 1 ӁbvX8ДB=> x;ȇakө2%`gF]tģ08̸?^G;_I}ztͱؐڝCq"KkO q]>ջ@m?֢W8Bp%iM ÓZLT*6U@T$ǩs`nI<ˬC>s?{¯<7Ylu2Ʊg ATM\87 _7|=$\~oﻩ*Q` qYGj8|Jzޭ9)G & 9U1Z8VaŦ PGcG\-0` O`!N D}H&|G|~P>~6ujbI]Vns˂32]x+<)ƕ^Gn gv'MZ; ^(4Z0W3%<+xS,8yd goF\eL i8n ګȩWav߈?g ͬ/Bs=壋OLڅ8Z'$L$JѻKhw <#DfvV~`GgWVbL%~d So9RI:h#L]t;_jo\Szt2k] )Tg(R[bÔ6XJ ΰP3jr6D*RWkn$:FN]F33EK7[ga<ρЭVMMuz80X~^;`Ĩ˔̈́aR9}q M|Kf{<ϡ !;oCS}:B[O a[:s! TBqfxf+IA07 t%˽ȒOA-[7?Z]WܱؐɰЄAj;_͕ku:(`I-;ef9-i.L]k+F.2 ITNzf^ Pʞ˴PV5oݖ> wBl? ~&d9Xk3;S5G=9~UӃ{G5G siczNQdP57oBZq Qg9,)Жn+7Vb;'l \AvۘX+"OZ\j[ςvUV;uAʂlNR)Q_U'0eW cxl~8coޗo֤@18X,.!2Nh7qil,~FY&\zC< RTm]+ZYopr ,?YUf_&A?[(eҟ=$!OwLVMjc:׳V׍S$, u{"Z~& ̊Z6]&OD3772UcWcO}"lڃ.8642c84o)w7Rf (o=d בIal?;ӧ R|T*F$N֤~so`+|^GKgS;&ڑXndF@Y&w%|K/fS( -s\ȾV|%0&O*Z8Kw9tpAjzNN,hvY^UOM{ Cu%%eLP3jL(/2},vv>AԏtgڟG{y =SƤB]m__F.2Xm `3=cA*WpGD))O}LNDۦ-T3aZp <"I6wU$Ѭwv L>P4*1+dIY;plfv'vV *J OV#ͳʈ[/kdQz'8 K#̽Վá_sv\;a| a= ]R$\$mf=/'Ƽ4*#o]\L}xNžwĩ+)NۜdlkNslzvz2mw&~.,]jâFڡ_gze$uq;6I`\<ܫ9=ڵJI!v }T)_c .d ԏlЫk|û=pHD>Z2e|EǕIӡ2Lۆr{`٬X YT?⽔(G*([N_SƍJXT2SL6 !-$z\TQƖĢ=5A2"s2ϭ/xD=~8n+BaCjJYRPDĩ=\lG o3[Ke_ `WK,閰d jDsA2sH%`7K0Z' &_T,v6vq 3EyQ~ &u}zubvm6ɶUᛎwk3F=ëm*+GINj[$) p\:N'> Wn>׊n,`X*|SMq kU qS[=Q2[ͪ \=@oRE7TLY ,DDbKʺy$}hXX"5MڽF M]-AGi(b"Aԯu,6TXUx.(%ՊNi? *Df+< oB<6V:B7EGeC銦fF3xKfaJC]{gC,I:=֗rIl0I\!ۅ@0\* #|'+'ʞNv"4"/eGjAc!.K@Q``ftd5Kz߅ת~Ö?){TE> &?UJ 5ll{%S$O"L6>N۴F%fnN'[RB+89Knǭ},&`I<σ;c ~phx ۿ}Nmu7D욋^3![ΰM=Ճ1!OՍn4^"ZJHxdEO []EMR>d;-p$eSiqN>8QF#I[C軪r2De&v3eXTU7 @;Kv{H܄NU5rzX`%ӪeIW\ gNp`mx~/5E}m`D%"K0{W#U(Gvf' s_Oo KVBwUnɒ0/P NzJ!ex(wg5{gO])ÐEp5f黢G[?jliovttQ pJR7]'|īEE=qLSrI2^Fڜlpcp1][ij.RJ$eH|AU7jy'Ӹ=nn[=2yx,eǔūUJٲ(Z&E#sg)(t9!||7UV![[Wm ~KuDV>MOJݵ X ;ği3&=|NNeLN͘k3t{kΣqRxc.Yj^0gr* ߡWRv#r?_8D3_)x F"82F?"@>}t c!AG;9=ƛOBq>>45W{k zY)du ^QbW`ydr%_#B/Psz澪 7#VnPk;Q2ZGͳGh^L *}Ztgl?kj5ϬLߐ7̢Ma{ LE NiuxfW?N愕 !ޞyg7 b VӓyQ65=+$ŗkDl%{<H}3'KbAvP3zqphOX.":X($Ew=_#>m,ݹN-N"%[}aWJ)@X t uTcGwVW "-oL] O2f~* &JleI&)}5˘b4RX\3ۣ]}qiW!}'˶u}ʖzY]9tTwuoK(4}?6&f{I+ W.ei U1S2XB|⥍F;.Ǡ4W:;3\2Iz~g_l)% $9q9S&_z-(MOWA|+fҠYrU>87,(Dh^EvmQn1i!1 &^qG;,mg#28 [j*o[I](Svw`0F:GɎs0ŭN1,O;)<;aAafJW gv2zS4 w]D$o<-&Qn$@e8 :ґ(bUxCW\ .V;Z::̰&!/|vXi`u61!5ԖbZ9lM#D6~ [%Vw:Njn#܅#Z(a!+D8QBiXXn>Y 1cH co\=W*m`R|-yZ&$OA.?i@>>{][%u,u1;]8vvUlWeşӶ- g]{Е) endstream endobj 4270 0 obj << /Length1 2250 /Length2 26931 /Length3 0 /Length 28270 /Filter /FlateDecode >> stream xڴeT۲5;ww i\ ] -~d{7zͬU5WZДj"f&@I{ #+ @^A˨ p5v1p PR9]A.@>%@=‹@ NN3gX@cPwva41v~wAV {g'+ K?9d-56wwL LE{w0Zۚ@-@JUICY=hSSאb(KRjՁw Ew:? "`/mTK{5wŁݝمɂ/}Vw{'Wc\Aft+M[A?Arڽ=oap_t3e,WV[\ c;`hF/@ӟ rw.j2=[/c1c?z69[98+#`ne ϞY)(HJ3ʿQ; &xX!ٽvF>q>;}f?smwy_O\5@V@aY],#aj_/{3l8}O 02uyÂWv=_w%ҾR3{gY} h9gUKVH-o`CG+%l/6z5)f&{`ng7̢LBf/Y߈,7b0ޙJF1if(wkpeŵ4Əx;٦Я6݋Xl1tt=`F8vc*zB#SqkMV7¹ȏB @ޯ>W/3#Ft߄>[[X}=0Ed ņ/NS5#Ԣ]#;kFޱldÍK8.}Ӫ\d"1΋+e^ R&Pi0yE7tZ07r{WSQ#C~{_[#DeNqHˢM:#@%I uB$J1g$/UpħP )BoEG;_7BB02U`LVSG &F_r:%i2^$sۊB1ض>"PM`NoW0 nҚTxE9+h!zˠm;E bd{*(B()!!;/Tf/̎ac5!a> UO.{RmX%Q)jO9%DAc8 Kx͂Nʶ` "ڢjm@}7T0(0*~)9PK_~%#i}zJsfHf A'xj@J.w0#5^WdN̶󗹫GCh$7S$AjKL{E2kr(J_RGDԹ,e.Y&_PǷɓ3JoB&\ lTP2::9*z 5?`+("X"r}%cˣMWWq͓fC^"L/@EĊ)5-~:d5)aYt0|U|8$oC*:s%.E նn5YbtL?JwOC9&五 v0ty_WM5,s^~Đ1f?тB"kb0_ԁ 4TnZ ahXl.@YT9[M`ITliBnû;x{\XEddʷCtP/hFKue*gVQ>Y˯#|ڍt.o>8ǮdC3Ŝ¬՟UV8Ok}s XW6r.UK8˫EP^G//58nvJawA8r yvB2#h-ߜ@-\!`V9>RF\x*[ˎH{En0v_*n3Ԗmdg6X_am,IüϊgQF fvӯf'HګQGx4@?٣%L-(٬Qt=jG)6t!LxFZΗ Q'缍ᚈ/A8( k}C!`JwgHd|mhk.7YO.̹# 6*ץ{~0J(]\VOSF)FLгY5=9Uw0r\gP(@7.UD#r[ /n\csoU~[#зFvPXqngrKPEnqR/3(C;yA/.kIe\)ڑݡR2 0LzUM1z|CIS+4!S XK2tk `5?٦~*81Oӭy J벩(uΛ/02"-Grk0]a =;t-(4@l.VvҠdR,'`V!8vWy1`L^N "WAIjO1mu˻a̐А{B<}R69CMT7! qQרdY2299Q̎hn1,5+B78 RDqrFQJNGD8ƽrLgT1_X S f𘶸 't֔||yS;k4H?Fj!4JN9}t#E=ᣞ/O7sgl2s6Y@!K\4#TiqĴ$STdE ǂfѧn_6:cR-_99s[|BۈJ[Mu"#h" 8 v҄gWGjZ{v˥"Pe1>QHW-O&klw!g}O=m!&(thԺds{?+kߕRJ&{ ɢT(MQ9rH)Mt cُmbWA,=~c>{iBګb~BipߣMs#U^;ft7RiIR &V`}uRf+-.A&Sw7u[V@ #M("2 <& 5c`LWBaUzeA׉ߖ7_X %/h J~Y>xٚ;}ϪUX̧8!CՓG1@%'S~" CJXͯ>PeUaA>Ṱ;"kA7 ul[$`4PvЃ;'D7(yw.z] >ԭz*YKNCxAL_yP }^ |CrG\TAIqĺB.AWx ?I\XbB>j9 'exj K'-I#h WPO*&W9~"7|qLtήyݢ>\SkB,[vLVdOPHf Zndo1->q*Ê ž;jb/b6(e4BhaS8meܖ#Y>U4۴W9E~,!N!Υxl>SMJ{SvxW-lA2SoYBFKV"&*uCllH́s@|2ELfê/ujx2 GΎ"PAZ+Y_kfoY]o f~l2ir''n^kƜcPtM옶N$*Ѹo HcՂaiP(Vz(P)& :s؈Em*a:fdlf;vge?`#FZ[Rn8-u tq 3vøHx:<`<zICm0c)ׂ+,VWHT\b|E3Dy#QJFZ&~RZl,}^AMʇݕj^U 2t->?d\,rBխ'Rf1Hhج3>MxohdLR#a")=>+mNp_-C.spjb &ngB6\bkz7ċ;E;UBDHkJwN+ڤ3q_/Hamʖ2n 67k5mOk>Hӗ]͎IS$AbNlg9Nq4w~yC|6E= fWnkKjۏqٰuP`,AfD!~B+RΑaSHґ(d; 73]YydS| q@1!?\_ !޻rc'ÇeGQAa4IJ{DK]6h8g"^O}Fhv.H~WY|oP"N33%pUEBBWMcm0GYn tV{a}fWdϙVŔ׎6:B2I :ٞMts{7>바4R+bH,dy@SgݹAbq\<,~}2^c,j4kk=͐lf3^ /w_2lRi*eQ;t"Z 25S؎C<)qU-. O\(}faFM~&*u70lyؓ˳ֽ&֊޶a1nfFC9Z.h5j^K#Js;EWY2#T:z.ovzChK799?+~\ vO) vS'f[ z0]!t:7tA8Bҝ ~Y2n]դKz\hz,{혍Q߱$ܣ~xl, >pY/6f˒Ż-B΍9ӟFW][h,GJM8 ]"?-5@F6d$?p}h2]2gbpÉ_wFL̚&RD&qx"U9$v:=_ʻ{nr aS4\-y|Eq}pljݭN;aM>-wN53粮w&8LN!٣e,.-l,=dMZ=="_F->${V@Asi~T#dj^#u/r?b G:~g\+ qleIRHN:ւa;Rht\^2X g&1j2<6ʉ)'++vݭrm_`* }sF*s";B!ߐ[_}Ȝ #ẃmZ:g0e5i$ X?_ ?d P!M7'j=5aߌ̈́\D[m TˋҶK֟n'J*8|x%Q^ɑ~30~G?m['bˉ> n'0kY_uo9pfYٛ<3;[Zxk(ttc(/wٴh 6;߿+Iv~nRu!k^Uvi=_:AtmGrg:fhF1?$ }ckܡCZo(G5H9kua"*n&<}& zZ1wz)GB0Ur:7bn[8$/w>9^gŭ0 R5̼Dǫ?T[Թ/bVGK~͏$lL30~ϚTSr[~0VM4ĵLn?  +r.К/I!&3X;x%BS\m%f`Sɉr_QË4?YÇŇ!_u3xjƝ䔵`knlyUŷ&5aS~2Fٞ{4 쬥j󸳆AB~>Bu3Ú`jO(lt7Ń׿zm'o= ЄqKT삎(p_3g5I< H#d&Λbqـ5Ӟ0鈚ګ)ѻB։ w$Ըaa Yܕ14p|Ȁ2ހ_OG&Gu!$4tĐX.(Gm8Ì̐d`HvqOF뤜x3<+է~C[ҍٱgLA(n8mRmU5.t X#S3v셹htLOS:rmb~Ք ]AaSc6O5˵tՊvOOpG }$ b5= =c̚q "t12* :yҀg؛N_--e&θ.R:'wP5QWٲY_$:, 3 |زu킥c_աkGT H럷D3 DqƎζN91=, Z?MI~0_N ̕,^fnSG3Q  lNNfLPI>ڕroaQ%IeNj#dP{fГmнs0\`A6>6S?I\{QABoF4cD44zB0`S mc3Χ{V*W͈#s߁5C[pأDw.M&Ni2TnWg%z#aB1w_{EڣI. FP?6tKl 3>]rV<~a24$$U #^QIB.i=8\MZL&C(G&F:j­si_lb GO#"bзi`!/ rHKҭ6.L\*5y & JNjzD*d;@uSW0{*g#8/~^s9VX1M q ]E=0;hJTfY?M5J4iy?ȓ1ܸ٬2"M<? I\<؀$%\v Vh<ƻ!-8 >bJ+yKN=&i`<ӉF@Y;jyՂf*`ށN -ʦKUCBbf͜a,hΡ^X%ȣLPٷSÙE[T/RħtFCØ `~YϺr(+>؛˲bv ~v6qR _eu;!<lwaA; 3x /E *5ݽ^mTty,Myp6ke **A,1ϝ 'F2]UT_; p&+%7KOCãXDigG,01V%n\M ݸb\rk#ӹd@:IV lt1@(Y0NXHe GOվ2^T^^ۃo5 0 K.`"Rqe"oRqҠl>b@i0Ys|nl9Xh(,ɵuDGu[*͸/# gNj{~f$ڷH[oNt ;<j>x :~v+ǜhy`a;huPS؎Ȃ(kA)V¥[ wdswI=; U:iWe8I}~zG (3̩m!P*׸ 5e2J#Og0TI…Ž~NܴRVӉQF:G@_0u [-̓@c%tP!8!g)xB%M)b1 cX+?&͊TJhT䓚G#t:/@pg,+]Ph!f}9P V>*unev˞XP@h M@V~ٙ(P^z,aGzSve:cB_*Fx(>'3jz(dF"=%/YڳBG|Qu.=x|u#lJ _bM>NN7|6*RZ4nE5_DAsZfTz"TIlz(Wv؉֌K oT6>jiKp =۩^=.~ !g'ܤ%6Ň &4 U6 p[o$|h3cfQIs} U-I!: 5v9 K>E]I5C{z:xoh's])Go4$/~9_6&+גЕxHթ= e֘8ɬoHwuէ0Һ?g9]"C"G?Fs̷(udw{m$K@GqqH$2y]t%NJ=j1jC&LYjBC,ڕ~v[x'pzYjɈW +eZi.l|u1_ЙaCGl7%3WB{o (FTen3\_J}_tΗKY5kx*")t wuYW?MP Z4f7XfkZ~_NwvpȊ)wSp^E!on+ TmN9拰q`-#U_4Lby[l޼d(؇mac_dq8X25nS0#سb3 ОKb$d|\w,i&Q~PB?VPl)rcd6KY >PnU˳`=M,qP 8}AΉzv jЁp0549xUlf'Nz'g8N4 o[=2oqQ`1jtWV" zŠȳrðZ's}TZnX]/DmPS |LT*v֚Mv(I9rų,SV"}D?Ħu)ㄼof;8Oqi{pv60}ކdF#x'u#}tYY}:U8]lr !OsV(ke{l,ek9junwWO@`'ΛGm({@pJC!a}+U9a:ſ {b4nZƨv((\̂r`e"H@mz$K=#FlX NڻE?0 Bk J֮zfBe0\ud~ pUI_0&RBĔ?8(ff 2L"#{zyV ҘBIP7fI=XYa<"['zFحTYϑ"e%`'# ƹ!b,cԐje3OIj)_ 6w)ml3&RҌ6'qsbLn!فR8 [?+WqKcv5)bՏ0;m#th&n΢$>Jg)%@D?sU1PJ(s縠^ׯ"(.e0[%<:p1OƟ ΝHs ){i:O.{ eD<'1VFFF;UY_&˒?X֝ #Qs9SJ&pï5%l%^[K QR\Z/U9Sz-iXr0'T7L+Dp j _ݤ>7\4GqP=y8 yb![QLIɫ*OJ*! #v}DEhgi.$>qQ~-F!Ke.D@STmxj5C@0_YTpu JҞ7,S?nUB}X,^G9XS(lVM_>>?piVKodd/4$aqS/' iNC2@lk2n %lf:=}J_ftiK)Ɖ=6R:;I8e3T&5,]o@[N^qK6oq<s=4C2.#}ZOrr)޷/aج%-5\FAgGRuġWRE{`\b,%<†[7/r̿#}ա'Q>n-n#HF=D|PɵLZ"w UpC̆a!$ Eӑ-%|L Jy(µίT$Q:L#xh7#Q L9\|W´NlhYx/)P""nmd 'xQ)H "W+O5'{1{ IJ% uDY#> &%C_L{}8L~},Jv&/tݓz\H=Wf.ՠP+ kM ;] tcTVM`QOмiZҤ0>\6qACމ2ֻ/ ,je8!ǁxqڋ>|Ֆ #ᐩ#A>Cp{CR_seyWQ0I1V@,8BĻ&Mrj6s=T|D <vZD`d,lis쑭F ^aewȧ9i -PKE4KU Llk|޴VЗ7*YDV^l"U[=m/SMS2*•L m%}f͢uEyK "6*󰣇jE5:\iyuӮpWJ^\ ǁ!Bq_q Wt>db!5fyQi w[6 8N}̹=$ Aoo"EvASrԕ(8u{;i,*@1A1-襟p_@Y[q925^P"}8 Wr(^VU,Q|]&ږqy @=JQ\(0Ib/;SP RE{ k'Vǖ]{PC8(ER[ן VA6Gg$8JaSv x('Q,~U!yz{?UsyզHvn6} VF150eec=f~m;>ߢoȃ%B_?R T"}+8*ש<wiʨ>^#H3CMobug3wwR`&xUpYR^E5'?b|GldJq2*}1]Kjd;0clŽ!u'FPvi@̈Kwep]r.G3͑άttsD <5\ӏ. (,;*m}jMv,,'i6oن5!EDg%+n*nasQ`ȁ*[:Mv-cAP8j

fɈ:R땹~"R v%urѥSRmY&NS $rV_<o҂, lLZxOs5F@d73%VHpK#gJjV&\W>QfxV+?yŀ3m:7ɳb*y=_zb*Iz)+sjz϶LSVU (F)6ܫ2 \\%L)u\c?A|(oӦx kۏ4w "P:q3/!CN4A_ 2G<\}O-0Fjz<"WZ&$i?Lq^B5xz A1Ǖ>IGGw+Dt&d%2ߨ՚Fȝ/eDP1laHLAEx6I(kI9Wj1ma`!+2rX- ,pS-:[}/}$'}`ft*%ҒPh[hh6͇iȀdž)QaŜA2n_{u|Q,_!^h$j x0mVCUo+x #z.tdžz-A;?~ײź HsrceEf=$Oc{ % %(h ""E' ܘչp!Y@#3KTbj=2@O[6`qlm'2R\8Ƀ$׮f]\;֡1 . yBҖIEm[.U(Yt&)m']*Ѕ9eSU-Bv|Pƙ?gCgnB+Na4Αd?9Da}B,֒ߞ`#}M%I.Bu\ߚPr46(΂^?;Q8Wd&)Gm( L1*S #*b x$n;:T 8%T+VuEWQO`w9Sbm7QNiv[&O3y0A>P.wс F(3Ɂ5U^V~Є" ԊWEukFiл:Ψdl\A 13Λ#⋼wŢڰK\R!4Z/ƃڠCr^ga"ۂGVi|kó)>o/g=9E Φ#ZjrJ?˷ ‰8K ԣ?:͊qjAq~^e UFbkz1{XIV `O`K@TJ+t!vP LJ)=.7符jy7=D mrάC T@% b9` )i(@[R(F)f_1"v zQF>XB/wN2J< _uTtIK^p(Б#@$;߁Lm(_3[LL*5cxS: Ջtäs6StS(yDA M? /!y)mY ׊'&IM_M qݜnp_pD{R?yn 1;u/ʤpxُuWifheq I]0JN%&zVq_Q9/`/RpbʲB6m@nጘoeTҕ+w/{,tryM(.օ,v;!y7Lc@ >' L<{bS8gDU37+Ϟ.R0C)&ߺodo 'e3y¿U2AsX0wTqNOE$pI:4q{[zCuηk wiwK Xyu1ꏲ 9fi읒S= ˍ\$3!o)zP \YIƵ)? L´k~D0 vIOƟKQr\ζ~ua3Xb&ځ']5HIFtܘAAV׃Gϴhx~y`cz[(w }R,rۖuq %fF0.y'vㅙCAnJ-U*:r-U^Bف"r$ͥ>RD_<-Ńyf [/ M:X=E^9э'/VC|I  LPI'hk1ED@֕iEkr_mkbey{I鵎˓9eL\;U0lwimz]h`T \SdD0KQ%IMwcӳw?sJ:[5sm-zc%D5nq]7u^&EkD~ltm(pzz1dTs:2LRσB ^,kex VAyqV\  7@2z]JI }yQ}͢jtWS(HIV\PEytš+fVsO Q%hW9l4RJ/^K:X*d6Hs,tYtY<kdWM4%WԿ07t`ށ'>,zDY2Kt }ʫߋtmJu}Ecߨ¦nEl1$ʗn~,3µA8P%Zqri"+4u=')lJ#TΉӘ˪F|ZJ{ f`~B:kr4m1$@4UhQkTt^ږ ɭ5{^9TM#*躝{zӮ=hMoқd?*7Mꑲ)an:>2`]%.Dt\d F}ۼIlD{mB(24qf""u.dHG0,DZR^ƪL.0P\1RCy~ߑɠ)X_p@`'{eO3@z `zciwηZ=m)腉IȦrgܮ|~AWƴkFK 'EX T(H^c9FR!^cyJA+tFC& %͸H00]kҥTR#2T.Oa>-P. 3\i6%SLOQ0S(ow{lgC&=ԓkZ{BK}fWp: `IO{[>z0Z M8Ri7lT d .s-K#LyV3Aů5>"J:Eha9Ύ6 ӧT:WL\lڄԮxIH5#>(A<8߃<{LIbM/aIL-ꛇs؝Q/k+;|o&]E±nY }1V>,z{AJ<'U'~/*I Y_-y-cvpMЮM?t4*ssC2uޠȬE9GGx!{w峜@1nZt̐CzlN_΍ޜӀ:4aĝNV#}za) ݊1 |^gVU8Ά͛2V8aRCW9~S+"$Oyj۷5 T!j"f  `32+{nlݶ;bP鿾6^xDaܒXwB(qn]pf09XS1<#8j>[]s!&bi`b˥Ƥ}T p"F?c QH0)dLM؞vJgG VҺ?Us(H `)H%Z3ܣ,tAGWg+vh 8i=}pF O ^W%n欵P(j}H@L !Ye(/{652c2L+`F. dZ[h?9l|ujZf0^4~4%VF4{CCUMks"s;,&d8)֌mN_ \t>VPp(S.ScBrVҒ-oԺ9F~zʌ|k)e*3 ߈ ߅DcL4xZHrH}#]WB!HniT 1#w31Ezz{b%S@s/j*d05f 2c9J4}ǯGSIr]fr)nFQ!Ț65֍ʀ/SFX5z߻btknL9a3%{)8jwLDb P”tmW*PG(85)7/(\$[1B! =C =qoQulD؎)ityhg@K7HHč-y$$Jߛ{2ש͑/+pZ'i{sX s& %5nNCzTۆO:wt>EEgs5GvTWcp9~q?ӻͬMmd C D!3X9 VB@{"NH5Y &Wc-z 8CJKNodPBckL%mTU_Z@m\nh䆑# :k =X."!,0X3j- <(yH[Ȧ$"zǰ4+i=R\U! /|W0Ǻpza9dSaJ+QQ[a+pq D0}z'dPc;xc= >ٿځx؀'>QĨJ'0SmvOQDӗOɝ^#@g,dEunNCʊ4N xmEBp@6Q2?`MRU {=_4T>:I9~$I;;ZԨz2Oݫtۍ:ܢNߩQߎl8uz6Vɲ aIdI$'bJ}KE1iOP@QiJ7I 5̎< +ˑ Б8$cɥ9ݝ |}0'ITe<9;MemuIn} uP\OTgV>$d*ӨUw6l:Z@jE\J༂}@Q^ju`Tl{(- (vtJ'i5OSƑ\Gxu:+ e : V*[!+H;mL*]m5vNs# Y|iIĵI&Jls`-5~m앯&" S<, Y"H Kx SgFV DO^lmHJMMdCF|aÜ#RUxAT-` h.(Žiۯ'׻&xafź"iD.3WG8z/:ܕK2P~rSUE?]lE !ӮqÜ_lhigG "ׇ9%L57hI5r&tݘM>OI0K/u!d@5VVBR]d!Jԝ:K|<SAQwP"]*)|$hϸȆňpH5/ kN@e{HՉޓTYj)>nQ׉];bCje`"iG].jh'.Y<6Me^ky|/7`_ gIZ%?Y ᓂRvhKӦx7mR끃eFA3𫀯SEO~2_BV :O(K q uGF822;e XQo2aǬfJz9,t;WRBKuIvΚ\g+fJ۱e*5\XM&H"MQb)EGRZlJB=ڑ,dASCeO4s)k5֨.!* sXirE1p9)DW{laȘ†)^@F|:t^L&vwg8\aWyz~/>&Բ$QiAWY|mvjιF:Ww,"]DPLHh V 2-r/g)Q, b) BR#wSk)Q5r`vs{n*>?Ma,j;T>\E ;g.t:rk78ou'yYo1m]=Mi j2uꀑS]k[6^TTIo6DtcV4(.f3 N3"(mj8`8^K VAkC#JQ4w'5$@ȸ,'U|N4=G$ ӧ?>£sc7E|jak)Rq{1)菬˶C' X6j!yGYuY79S${ṒGi7&l5 j/ny<1Sut)餈2>wBhcVg Yn_0 ps#s>mDc.ZgwO C`" 6W9o獳s ҔBH 3.B6p\~YLW>bm(ydH&#+K5]k!5w؏ AQ4b0䜼>l4nj%עBa>{K névoE<m[7ǚHp4l ;f .X֊LFA*yWޠ: AEH=O3aDD"Vpt\M HzЈ8<+䎗"/,EF U5x39yx1)Y@YJhZ8So-'+hAJtyDh210+fszb2x>.?'iOVE(u>w7$PI~as줐ΕHAQ79[DΠ熡Oo1 ]4ٌy;+ f&H1"OF\%xW:Hq rT䃸 ؋naq!94"QԜv%KVNx,d ][]Gr8WQ±(bUk6^OJn~&/qZG~Wmr9#9BS=.#4Ggkh77M$KthmvMM7ܛLrm{*Ҭ$5f]A9J޿X \bM~t'_ 3GKݒ$`} LW3%`!%kwgb%)x/-QPBV9g׸,#Uwk~Z)hMIG\YfҡN^PkGthTu}=tQk z u:R8%׉o-mTBݨC;FQ7*OYQ8gxeE_xR'0tbD c0묫=.,": mH-Dga[V hxEsVcwskdUSc'xס ǹlzu`v,2enܸts4c +y#k*5r\1&[ވֹOY99W'Q%:"PfhӚ,6I5q>\W;gc%GgEVʂ55(Tj嬨VKju ,/>2Sr 6y+ƉrWagy1mN5nF*~'JF.u{jV \ILl_QN^ϘMϬZ M j}d2^ Mf݊CL[P+~=XEl/b05'֢W8U%0 uы&J?+X+v3FUڧs+5x`Z6G"1o7En]*m,f'u$uGG:= HژGv/5q^ͥ=y{$aRw^Nc❫#揫f&708& lu-1J0m)6F9׹p!ӬLC_je6|~Rfķ̌U],sf;NғK^ Yo5F¬T }/Q߉83kNRJL-SZ jH0l]∥83Rr /jZfVDB=-zA6io%<~ WLP|f3EV.B͋ES>HLBulG endstream endobj 4272 0 obj << /Length1 2848 /Length2 25548 /Length3 0 /Length 27161 /Filter /FlateDecode >> stream xڴeX>Ӎ ݍtww 04Cwt#JtHwww{yu{@I(bfo02T`VF)R t]@|nK $ ‹B ANr{:X4 - ZH쌌+eMmݝm@@I h1Zh%`oPi4$TRJjLjNELM]C ..i24T!-> ":̿`~nTf? Nv4X8133Y:0;Y09Ond|:lA 6b Wߛ2A$崃H I]C " 8@O<hv`SH ` 2A@wE!+ӷ^i6;[98"`ne Y)(HJ3C̨`QOz"|.+/2`31{;;kg[AtrwdlV`3ʛ:0k]A2 1Y\,#aj? `uZ (@7 +72ÂOu=_foh9SjfQ] As?$]mmv vV?!Zdi쀶r)[ZKKla 0r0sˣXB d4Mm gg?.D!كߴ RjJ2&67[8@''' d 89ެ6y31f& $ 0wB\fߦ!. `x/Y?, 6`8̲"A(A.AAAkAAL 3 6v5S ?6NH-dJmmSg *dQ aPٯ9@XI0Uon*oWNX!k2– __B///yVJUfOoH=? ?q鿴ff_{ Y#W??1ܿ;rwߏ /Y!::)AvV=mZyUON.N_ U3jfrAnܿ +t Bȸ5hq`t BJzQR /TϭT`5'{} Jc!_Pf䀜dF6^ȳ쀌7n<@(s!֩a%~Le2ƿ箿 6dRK%)C>/7%U]o^I h2ie*ݓ391/.my[%N ˫S/%\YEI?E΁ВY3S_M& a3|U^$N AC1~` /"ʞʑ2R8CG,&ij+zPSBw<z.Q>QT`t?g-|GHͧ*&SMO&∾wppJ7F|ōaNq^1dz>^$X~ oF~%*jGOV3m<>Ƨ.;&iw`I+9n!6Z ݩ_X3"󹦝Y-Zm¬se&z9CS(@7ƌO2 ugݓ Iy- q<}B !W [y[}47 ?2gP{ oYӜ3`**3v;CԞT90UD}"5&EWzG{UM4kw1Dj\XEm{Bd#E%?[\0 0,.Q}*ޣ**GyÔꖭUF 84Ɩ29?CFjGJ c2K6ob3ה]X 03N G֌%O!HwrR16#],߫|WZ_" 5VF7Ss\q3B]l޲< " 碏N Jޟ.\1d5mi.`b`E\&Z{FU\{{ƻf6B_b3_VV9_kgC[ȋ4򎔡h*M\y=M2^l$$]o=tNk}j,WYpsYqUm}4N (ZVUy<_>pNDj}!}E39I dnyYUq6;=LޡEz܅rqB'IY =tOHE_?mݬ-Yi~+rG%l~&(@X­ƒjB B( T|Owx 3p)QV7 fJ_~uiي%2:UT*/% bx˄Q'բ羭Andz/Ss3U[3=8K צ=ޫUDق0GR}y²J(_'wyK\ͪm°hn(&:cmtD++C !$ XF܊NշTM?b2RֶGnݵ.PJq4׌Ҥ rC.(2eVkTSe߯x {GK$$ -,$Fl9[]l̜~[*FJux迭wu$+v-ÄA-[AaqyBrQ1gA6?8V#YA2q4f 0ͪT ;w,BpU-d*Ed/6œS*xa:79EB&LxE`e)W3*znAcIGǀL* [? 0} pSHztE:3JSEeI]Hs&Y" ʳ@uGzU51d(Dɡs9 t뾚p 5^ȱs֋k;K3D U< LM뫫xx@{<#/B37 B?ن44.|}# a G5t%ro(L2*B@Dנ_̬ϔlle{X?h̫ ~@N}OX1M/-4+w@Uz50BOGCo֊E2ŒW5b 4i# wvU1 ='f,} _E] - X⍍*vE_~'lطt,@R s6QSM^'t}LCӮ?z8u'3ތv xkCn0ԕ6=z&~p~سq1; s JY2͉xRBh[h Y*wl 7ۯӋlPڇ^Hv*#Tٔ%JO42o*,۪=|28[JC5_0Oܙg+.`Hv#dnVo1{eYW*3$X-_tm !ED49mge}sKF| 'h{("ٞqǵ;GG!1֔ɨki_W+feϜ7Q6K}dGp6 -;Q2NGVUΎj4*7K=fݻ")D\$f_hg]_eLM(@|Hb5x^{oʸHy>'Tu-߮Nʁ9ӽiSV̾xb3}wCR:АN탔 S{.CT̄V;]iի ~z^z0D{MJ#1P&/ 'jQ~3v?)@_(IʒZu@C4M3Ȥ&SQes/uӁhBc`D6~QآY;YWFuOFWYqI=+EI*#aW24<9x QB (vk[K#J@; +6W¥ƝX;dnx\(51FᏩpnrc%q#[=Z*64Zjc16(-"wb$A͠iϠ[*ݗ&W.G"äX 舏+ejkFk>u"~a _;ECh땯6_3@Ej< VY92q>@"A-Iz6J/覄6b!g \˲vB=W\"·_G2-,9ӆ&Zf?I/`.H (JßTG:2Fe#@Y+E=c,( /Gc`;H V/Z ibV&쓢߻F8U*r &sM_R)h V{~c+a-b5dO)\оg".\’+z !2gR[,kh֓)M$-q&LJr~ʢ]U$ŬWz1ooѶ)]9X1m630$ XDs,w+T >߄*\_qq|3014 ON6O%Oxiz5k? }$MnWvH+;:_y%4vT!2{MLMchB'R o5?Λ؅,L))DB(|Yffh7+#?!f^?yZ!9A%~ԡҕ FXf>RvE=urHc ߒ&xrDQ,'_8>zTk=})_-U o66 \50"ƄqtՈ u4`Op>rPQ\@>lRiR z8aYCǡڧxX h#L qex @S17aXZ{ʮX;8[Yk$'kTnYkiW'[ݨ$CୈwXv? 57L-Σ(:݉dS[gD'T.`Xt}1hԚ͇>$mC!t =q-cOG @D\5ޠ8wQ_N95&?vHo]$hdL¸422W fH;mֈLp̐jB JưY/b |7āE_2N3ڥ}*FU=aB ͬߎg)ԂoѮj3HI\¯j^ /#UG<x^J  AiEbFg8 _?6ߑbQYj3G4rX(JzI0*~f&ƿkfC#5j8(`twBM1Aйﳬ] X]rw=n^jF;8R{JEFEOe2'MF C85T?,+-\l)hO4s[ݿh)muǕD6EBNw?`i՟Eބ}v$>$'E\S/7BY:]U9uK@O*#qר@x=з  OKn; ?sI^ruRWQ: ͙M2͋1ߡ۩\|ܲs);#YS"*o&NHc(>\ߋvȥD(isJwE bHx;/;7%p6T.J9u`W4(>A:+{,Yn>G6װTLρ0{4'}?:ؗYD/^ѥʊ^$v,)m#LB<"TʩrIl9/6q@vHEoQ[xygyd/} orE^&sPvxg ~ȤVn'~ca4UTV4;0i`6gk9C왠cOU LGc XT(-^ ̑J,B\KH&O/U;/o_%'V`M+=Qŕ*J]~r084}2OϬ q e\6,6|,{`F!!OmLQyeb9!sⱝ_tj54J7D.ňi*sޕLQ+UEC:х /B0: gdm-nHg#8 rcheq]Šgo,U}6FupwSy[cc`Q3YlQj.=L.j&0Spz'k$`絇UҊpw:p>SO|Qל“ UW"(YKg2<1>8lap}J"*twSsWn97OzZp?Xq-Z~%>so\2xBbJ;α9k*F2q1V[*A"#V`o֚/tfi:GLk__ THHcUxT]eti:ҧIHZVJ*词%ۆAmUBkE*6_dC#mƇo{<dU}NJ>/x\~8L/ D^r"}@UOD6t#_V%j#eagTjUf[ #CVʕ)wHziFb:נȅ :}%ymJrQ*MЕՋ $ՒS%mӤN5sgPei /Kh5sn93n|s7{i *y4\>8)SV&\܆g3LJncțq]C)dntߥ>{y;_aMB $\L>Z.Њ_8vov 3=kmc=l #\ׁ򬾟 =Oj88 :n?6BNd8}뻷M U}N!jgRAM[g %39u#:L+Ύƃ> Gx8.Fzfɥk۩BbMt]$1vIБ^ -7YZ*Ц*YCUiZz%+1JJfm֕(x>q KLۄ`r}kk UBxT9Ģ#r˄+c—%^o"a[ o]Sr.Oe3r D%>&xqNyNsF6cyÉHrH\~آ6AZ@[[V256~w/p\M/rg=';9HO2yK *7v9p9. mgĊ%W"Hvja{.7Fs񟉣 n qISSOr2ksGU?Vx(zPrGzӖaOzXa;V%rLO,M"gLjY`w^n儰~E<9)"V!S!ZCuh IXЮ~ڣu_N|hOoĢ]0x |>6RȈN|[)5gnF ֍9j*HDȈ܊˪a cVk JCv~N-i M}f֤ "Y_b篫jǽŊ_'2yۡрRB֨.8Alx.wUK:Ej/&9T eq-0<8G0뒴'1@A5m[$`х:dRa>S;_=yJU2Zi;4&"ݥ4%-mG-ϾXiTʝŝ1{"ip3*(,5{+Ufĸ)M M&XGa d}a X"-$"}2oP_|=(=ک7#A];"9zO@j T HjYp3n*F}bTj̣EZ'Wasf]>kZTO$ eY (R_OުK! +RG&_)sq@X ٷ@lXm\/Y55dS!u 9EnwLD]v+-|d8|׻ -~'jQU0>O?+X+gE;7R^bc} l1SGHb?B>dS@z;{O.įg<ҿ83!o5XaI(5UNw + JQXw)}wbizߩ3]BߕnۗRo]Ci6+ 6  [ovj̫y?_.I)GIsR`.VΓ cѼ1hFs]~UNS { *JI}gRXT P='}Pijl(/㛒 {2Y-Is 5ZݨuC`ݨw=o>͡;tznXkF"_jlDtN٢H)qc uQ} )c+R4)UM{L9D L4tVl0OW z*[F(qFO'7%>}`pUUFHwPIl4JH`R%sZng@XB'j Ξj2~?2Ж3w3De^ښ3!pYTUV@{[,rr W{_!pa'-18gy[و}ɻdWZ >Re->~]e[:1%Aλai] ޖITKF1<;yVk.MUX9xC'b]Uo_I*ӪK!1b`e>]V .~M٨xg95|1)L!Y'Mp SPSa(P{8.mve:-I{t[Eo',͆n}Λfg_ 8e]PK)Arc|r_.SN\C*΀ #դ+ |T2!d7!bXJyej7ΦYv}S['V!,S M}Z!\G( s k+vX9S.sת^j}e3'U-dɕ v2\Ml>c{"J[fǪ| ~ty9?KԖ2u$9;A?|Vctf'1:1Zy(Pq< ?Ɛ#Xښ3Iï=c$'zuI_de/=|$7P:["qs"d"fKx`ҺAgmD1n ?-KIZ]5U)fIv3CI9Ii7G(J6ɮ/|R(FƙÜ^Rx5x.-#l4o-\?ѝ]!ܼb}EyaBBL_ȕb:^l5Ð H<#a\b^ijqVjdН߂pz֑5C~TUU%Qvj}L_IS9 ]DsyO-Wf!, WHοFCӪQz5Zl_z&r[PT =;.mH:U(!}KkY:p/5vH\FTU 1`HM:I$w |0 [tA7*OeO옚rV(?믠0pg`6?9Z>){+'7K,I化~|c͛9&Wb=}(cA2!~o(-<"PdOGˆx?qW06;㒄$vYYeeC=X)/pAf sMQqEob0aR}O7ҿә,xEA_GtOU?0䆃X9zGHc&ǾyylvƑVh8c3ud> E\3YaLTOhz͐;GOp5"zqWJyHe+]C㛗4azKQC;!̹'Kȴ r(aS]4"0Kn-4hC,J ^"0YjS*Ь :=KBFaKtOx7f׺xsezq 0P4I3qGk^%.iKXc_2D<@Ỉ6ޤlxW #> zft#Oi r`c]AOU]t2C:+CgnWZlF u,[_!H}|I`'Ѕ wd/k4qCkJi#m353GWs6yX޸!>F+ >>g2`}PWE|K/8bQJ $(!֧i8j&g1MiVmv4zr 7ַEshrSWzwi MSC!_c!3qz2ng@F3/|Y0Mm1FTi-'dzD}^SIc&~*,t6\:gClyˊppW1@+y]<->Lyc_RP?ٺ\B6nH'ѳ ܩ8ʲiHj%F{W t%)gJb˻8GEy錭ؒڰf!u.RdHK?J9bGB5 ӛv2ZBk}TfU?H(kqFEn@UᦸHق[6\筆r{ej SZ>YtTW+qxNqi6Q\Ɨ;=cݲlUww֤"D&R($ky*a 5&v|Q@3z s9Y ɚ kB‹[o +Is^&PC> 5]sq =dJ;αUM9VZRE &*TUrM**I}l>˞}&;%a]NIDұʡ::u%L| |uXew 3x +q ڸw%2R3g"Ǯ!?4r*|![1/4Ka{FL, O[o È--CHwDbj@ˋIDŪIP6)y<Β| `M܅3f_tlIDb ą]}Y;&$;npސs =ᤔ+bʫ.ؑo>.oEmC"y#.2m s2W˝-30rAwK,OT &&y8^RGPTFDB3RzBaXG[y)`2smA^`"5nJ>78#} +- .EiiسXk* =v ֢S-*&t@fAnf-k!Id[뫙8#3է+5f L"*2bikŎ \Ai|I-7I;.LT`e}\y %v}⒮aBG>h(hȄ8HmGNz`, syiژK2 ƴϘѸ/ЪaZƀe2--Uz.ӡ,+"B~ڧ^x evc a$wm<Ӛ*QgrX a=c,UNeP?.n-d`2-so(9v ~0Ti' &ܪn;f1[!Tpwi|RFe*̱W؎Ihkc6O aHHM51.ykO L_Iұw {Yɓ muD6Jh:5Lq9uJo]ylJrmG\KuH/w* ѡhGk5L({T"ǽCmC"9- z[d({'tE͸m>ZF~*-&p_e>߫=ʯ)dk_Y#7z0hS"dqŐ=.ݺlT+D` X8vR||'blp_+>BY -MgAl [z&hŠo[T{j|#=٬=FzMJhrcE`#CE3Rū>?MM\C}&ٌ:|!O-+B{Ņ4fo.޾ sm Q4b Ot)Z`)wpth-l  $66Nq٪;ꁑ[l\"bJzfycoO& :xEA nk<}tk=' Ħ1TC ($>ڪT%-w{u91W6w8+$_t}KP` ZO&o& Ru28sjs$ZV T9CѠ@e+"2>BL `Vr6zu^*sH,c ;#چY[XNFKl).ם~Ku6 :ŊߣԖtATN5x|B<JHR$iΡFw@:aT5xÒ,&6BCl%hTZ?,k 0ZP%J3 C8Yײe4$$ G9pu2~q\@F?} c!zEEGӨ8>u S5i0E[ h@4MHԑXEfe1VRKmHǺ'O 3Y`Pu9\ػs(]i"]wGUb VR bi= @ۤ;$e.C<'Qv֝,C']5TA͊R%*-3ۛE6g[ӕtB;<Y0c-q=%uњx8B<zt꣝aՊR$МX=gKua}~ r9fMEv-%17E[QU&02!&` W|QM"+9КB}h2\!Vu"Xߢ3`S/򟳀 ~CvI+H.E2 Ff '-TY/M{yEFTz%PV&o͝t?ĝv7JJHԗ|o{L_cΚs[^8x=(Ɍmpa3k߾x  NF=6sq񼾿,L/ĕc|h-rQDGI;>~zWZhC< 幢Ohш!941m^cpC8?T9N16tzK=,߰?ScpbZF-z0o =ufAuo6]g;mo)۰>KL`p[p* t'P>=cu[.aknuh9`Sjsw_.9v] xI5r&tݘM5hEĮmdr_orɎs4Rw|3.y>4SKؿhH<=$K(Q#jjop olAN> (\=n 3r}V-Dž39cObK4 {kL@!Lnk'<+gounŒ٭iw{]WFPRA3=S+9]|F(iXV y,:MipR0VEbHXu㟩^UD3mU]ӶnJ` 5f>Udr޿36nNQ`ip4{On?YSynYBzUXuf3"!̮j6{>#V"y­q7?W>t~p9~` Dj%ݬ3 Jd[`5JC*) |#7G~#IO< ] >6;ls#2e˶nx',14)aAyy\֡0J[[3H5A]" ݄nM#&1/qAH1 9?O Q`-7,ZS)}e΂ kD;ksϣ.e$ TQeIH3@=s2]49n2ke\iq1>Up O3]_|/N4sŰߊ!EǩhGffBF) Hs'AZ:/| R,S70ঽMNv NUJ$5FzGO__oIjcg|7a uȁaFϊE-DFms*F}c=Ԑx'X>;x!O'.Em;hrc8D@={Nhn~/&R;;#lT'59=l"ح8X.D~ds S#j ٭/Z<9#ѐ+^S{0[4WVuo pe2kɲ[o0%}< 8!1;B']>ŊbyB䞛9@(gUiDB}ȼn` [~B̆+L"L5CqjRLXty ib b2l"-/rxR٠v°@_s o>TV)ۍ-Kf[;h:a%vaa6cIA^LͽTp{iPxtB;:|({^'K{ˮbzxdLYlG4pl\ſ1[M*bYlLi8.l$.NlY2Ӡ?^]e[E 釃{"͕][{# EYVʖgB^{\[/C2j*)v^_Hrݿ< b#Evb+t"|.sLMPکH"Kb l&eo;\2/RA4vXvSXx'!& pufDk9jVP{znySU2@ Ps*SP\~sly`b1˂,(XZ%+Tw׋L2̃a\h)/'g%-r˛aD0J~->2שkv,q/2ѢvFAz뷑:#C '=Xc(ُ%M#h (C@L)yY*bb",˙#]̭+BsBs@B=ܢ}C:{9ov5uE"fxIz%眐9_-τj\ZJTk}ގq;Db}a;bXb8Aoˤ0zmQӮH8֌H6ΧEF|lQ{S"͢;q}0N",QKfA{c&UA"C'u¦*߸| t-¡ Zҟ4kb c {ZD!l?n>(wulc" bC!w$G?fYK]plmNĄͮچpm.IhN ?򗃺ږ yРP7LNp`'zell@ZR˹^K\^!4;pJ=mת>Umhŵ-.7bx$ݻb 6}ꢈժ)6^UBBDGWlir7'ϙ%D$ac)Dnkc7𩽍Q@ncVLMihzxi$*vQiPI[6iN>owSǩm#1{C!qR \V7IpDOep+U#qpK,i: ,'>,>U0U3l鯉ae OͿF뽇J(0گ>Y0|Ĉmt${<垏1!`7#~*;2q`(zŠ &"-wЙ.̽yژ\]maEG9;=ka%<(U46p|Nm%TY+2"J얥#C@E4xJF !}ڝIKs֓p@/]i#"XO+:[9z G9^XX'ф,*^%Qo0R3GXQxrAg$KZҘx[ rz+#2$|$e1xz1i IҊLc5%r\ D"+hц XScisRO8b8/ߕa9pq r8x+x+e3Ը"³SwOMg^== !0U5[*oCz)28}QZ$ʩ"?~_ȡJNhs'nk-uЯq{40pnn{Z6_b] I1>x}ֿm"kBvUXZKX*<: Z"w=q"8!W'ZUh>\(̝U`a˧ 'o\&t٧d?,R#i@eQ( CrlFbhj{YH~Gv̑%NEӷ^ Ȋӈ>]{Gx|eV5VRSZP7[ǕX.*TyBCIf$T:b+@@UN#"RlrOFA8S2JMㅦv?I\!?p9*~a[vS endstream endobj 4274 0 obj << /Length1 1687 /Length2 7251 /Length3 0 /Length 8367 /Filter /FlateDecode >> stream xڵwuX6)!D:h":``l i$%CBAFRPZ p>s-CcUG=T zFHwB$r Q PG``H`\0Rʑ( tTc"{"aDዂ9`{H\wV!nHo A87 #{ @:LScM#c=SCcQlcc/$_XԍML&0@ , 00Ư`5MTM, 5Ů xEac _hR' !/&-ƈ"Q΢?L\`h7>QP81^G,_ s""-_Aw,"`X"0=PƸ@j E@D B}OUCO IXj"ՑXhk4`X0Hѵ~'yG/1S zW_X}P z>.b-~8Ahh }! [2G+t첐~"w_-uD"G=,-/8'̃G9,#Ck|0_k*K%AEL /]_aظ?bXi:!h4@ROgp  fhi,'Mt! )iIIűvQ @L`K^@Ez}r21ȵ/K K( Gjx/]elc 59bIч`P0k VIX?mԐ>"r@\BJ $Zn?*rozPԁtNkz} ͢Wnhϴ3TI3vc3b*ZԣFFI'UճYkOhR2bbij^N+~t]4]>"L`|̓zˬz6wp% g/ 9\IԮ@|& ÿ )qJgRR zGÏCaO{:]O^3<2aaiF#Pg%uZH,&s_Pz[懐),c#7#%uPw6cob@9zpO! $ҫFպ^s9wK))Ż~|$G񛧻k*-,7:b$5" ^'pKOT I 6zvJ\s*P^}6U-s3SϮF.'MKh [9AiymS3e 1>v6ߜj'W:VHͶ4r.rPFކ$H0PΑv˽?m䘌2~(| dzmVbߧ[KpSn‹E9v9ʗhlxnk=P8^S14Mץ;43\7_Hg;c}:E̤y]Ǎ17?Kcxr2$DŽwMd<.!};Zՠ1m8fdZhS,:^Y% `SX՚lvy=u;SU0  dQ@~5.Q"84БLU*18 ?&T{칭pٶ.f{8Gm4B%|]3lȤq>tjƗhW UMsX bXmߤF'--d,6|evi/wUT5,U!fJ!zK+Fp?NvŦVWejMN/e`%,6vWPA@:x"Ee?$/tpW\yV2}=7p:ĬSTEuq an_ sKj5a* ʮqhJ?w_ 9JoTѺ=yt'^6y }|5 =tŒ VsjѲQ:rqsil ˃FoŎteerSDqmw|Od$Ob6[4f3 DC]X cYHu0F8>d?GJ܊ <%G&f503WJ4>joRmR?Fͷs-suJ](MY :jt)ǠKuStչo"42!=fM / qieJMRuC̩p2_Fėvy-:~ÝgDIח'@dޭ;j{.T]9u \}}ܗ:a4Ǧ(g @WKզ<\U{f/oя9:,eS +Gisr` ھquD|q3x-ui};sՂLM B'|)g$MӢ2 BYt/+}&aB,H9`SWs7<7H+=@*J!2!w,D9YHĆ|`.pe/5?+0+ļw{@ ڣյ"d!['iip`wIhF̡\~odn%?L"-(rGK C ,=3( ̮$mT=Q3c>a2l@7d'<Q{F;)ĄαF}[iPQ =xj;Q]LqەNuu#hhKO9WRG\FgY8 533j`NHMf| |2B>dw|n@BL坡*jg՟`bB[j>b{zuk~۳& $~1 3.SHDr5 r ɳ(}Sϩ?Rş *v.ΦA(~y sZs^lB ~9W1hNd-,IHyDӣ}Zl2? jB 7?UK}=P"6z< Vj'ln޹a ,{.YYzZՕt2̙b 7rN 56"0ӵׅ=N' XK('nЫLw0=Jms2FݯIy s޲^gSjó_̞8u[9uKM|.0-O)PQE@(lJ9hp>OI)9tlGt|S *1 g~QoiJS[3/.6S7-1K8|H2jK/ òOcH\;%s2^z2]D9),jEG]vʃ.4NS-Ϯpu<&)BJm#g geԄ8 nCtUW_)Lr8ltAW>7gL쓮ox]>%gi|jEMԪ6p_rcﭕiX{Op}.3I!'fjJ)I)Ev^pb "oGzgwDg%MWe:} s,>SXMh˪; U8nt+2O<|-pLT~hR]5=%:B:-%O MTǗ/Z?sR4ד.Ǖȝ௑{A1L>Jl֗8fK)p恤b>fw\RKx۸U9~1|Q[-WDϣݮ6(@lp7MTvqUҏ20 *9KzJإqɤ׈[OrGzP$tYb{_/mSԢ9Ϭ%ֆou" w\ECzgbS%Vz:lV칎!P{0I.TeQnO"|c`Wrn*~LLE*Uݦ|22=d-u.y!LGp5#99|~uxGYb3lΐ),o1=K <9 "VZ?a6 gU cbR}w80_-xfBC2Yr@է9̱p3( WknqFw`>Xmgg|3Z&XtEU-Wt,x|BHFbpX˪Xt0&Baڊ$N|;}VO-@(}ea<*[ţMr{7VT a8rYD?e&ƀOFx 6q%LᩂCWx2ݴEm{8 ~MF ,JmR6JA 7sUaچƲ/Ԙ$Lwm&o rV5Dw]֓u)b'цNef?Bpݿ\d]r>G-?jE <]*ȯh,'tEOsl96E!> \E]:$X3&B{zCI`K ט̈EcЈI>fCGW 7pFjh=2N+ɡfz)iN~12g;$>19dj&)tF/ABJ~: W`ʜWUσ7 JGث]Vՠo>hSZ0K]'Zh[+zK'^gUEyAZJʎl渕H=3\Χ6]`MRr+1d_ܛLp)>m۷Ӎ#4O` mQ9Ɔt m˟/2eAexi3ߏnlZ{(z,ƶ{IA& 2OٷG޴>F\(bbZ B 6hť_(.:`7]%ُ>,?EJX8{rpj>/OuR ߆]trb Ogp{gŽS}7CQJrvS74jgOSv_(h}bgSn )=RJ繗P֚Õ3\]/DiGsѼ166M`[Pl1 }Un ݔ/ɀ8L-8R?)K%_a#_ޥN%4%:ݧ@nDfEtN`s K4 l1E%zz ڛX}̽?"+q+OlZ{c"XoV&O-o}J"9}̛P;{tdD跣͋lCoK=gG꺌aeuS1xM`ۡm3~)rf9G;9f!~dcF{3Uԗq8Q+{T\UADW_ m_mHB$0 ݺx² . ^EN˶BcS[l:+f_DBt՞Dz%™ZGspL4R_NoWn=Z^F]҄ ."v ?/}/2Vl"g#㕻wGaڒ9b7?In[|¥-ku~Xwajdf=./繇*AG?.r> x,NG6ŃW+!%w6DK94@ ?5{ endstream endobj 4276 0 obj << /Length1 1637 /Length2 5249 /Length3 0 /Length 6318 /Filter /FlateDecode >> stream xڵVy8m߶%KI;0-C]qc 3c߷}H%"EٲT$"dZ,,}ާ;昹u^:nƢp;-aPgsAa/jQ4 SŃ("UCA92&2񀄸8 l=BzP@u0( b0XPsc5$EE+f@m Ip( у8OⰀ-rp4LՍ &BRacwWW/,H @ T@S@y$">?C Ϳa "cC3`lzp}-1RT$<B"Eփ2&DSŹPhSÐx"b /=kgȻ jL2cs8QّVC3_W+`r&{%<@w}-2`AI2' Qu-=6KGc*DQ;iqD^wgg} (\0 # <*ûahg! P)oH9K0/$K$I#H"ܤ8D UQ:` iǣiIj|$Yہ^Gr X{He1 H]f:Z8' cG+DEcIҀՀUW WTZBIPP W.%q$Km'A/M;S^@yoSc!wcfAfTPG,@h}͢ chYn4u}OL5ibZpFR!&1J)3ʞA^38t)W0mrqU=+i<%JNk"˪㥽P]aZZ2_ F|Q>_/5ST(#hD,$|$k؈ޟޗιۅ|';dꎫ\j\ƂȓmUG@㯵Z KBV앃%݆aRcn7,X )mB~ǖ[)oH 6/ª 7~*MƩR;?iSpxmHWPSw?LJTS17(T$_O7"TR1<~i"nD~ o.bEM펿Uʳ S w7(3f̣qY2%s 5ɢl#DZ5vcTC^M+;վM5`s>0܉HtF3IK-6G:;ݹ.(;z ɮE{6o4S 9t<٘F'=mJm W?gdJ4!alf,}iއ2z܁MaBaLs^Z,sQ*o%9ZBϭu LOP)>`3AgiSx Ky#ZRJҽ&WzMjitHwZPwɒ+dc?ԥӧM×T.0|;5u*"ܾcO_STKX=M*J2?i*((4Gޱ*wR;" 1Wvr❠[69>%3: }I(jSd;Ec&eKъE-? Yft 6Pp##DB߸Esmt奢 yG3mt.Laq-N<_MGY~T@oVۛio~HF]փ}ĂMvr `=nK YM-Ɲqzu=Iw,:Tg ɯ+Ϸ'>E2xq{1}"C; גc<p=IA O8Qる9:7~.3GQ5Wl]>iS\F1gk.MϹsUqٲ G@oYBZ])Zcr=bX=X0LH aIM5D#E}*'?Sk4- #+{ؘ]CڮxUAƆ欉wEh OQH*:mk]J@sfNJ< ?}NlzDؘ;l }Og\Y{K}x"?)ޘOusJM*E.Ufuja[wSź]\׾osNF$MwH^|S?Mt}snǃq̨cH;*W EO[TrP݉0n_(q݂ NSiD䍯T8!W f f]:K ?[^ֿ桥qOnqFm|sQH;wc3,L x$/ YU~q^.ezεn7ۓ/h%u]gRo/kVzBE;}|MOyb"|wfmDi8 p^Jm>o-s###8ӠL]!機@'z3T&q " G>N ǥSԳ8սM#O'mga3mC%1sY?4b*/t4xy}zi2+؂.Po_1 HdF\U2-Ϳ{hVx鏚9dS`6ǑZU5q5YQf{(4ds[_#-q3WZ{]fG9#/ ߿xtÛӛO=ˊwY"DUVA3& unmujC4c]w%lPt#,-Qnn*Tig ">[&r7 7vU~1,y0Ƕ:v@+n1!=3Ɯԯ~)Uxk,oJ9?hDSmF*^t= ֪BqTZ2ޱjTj6g6Y^c#Owa*. N #.Wb-l zM$8ԚM,wGLESI.5f,[P(Ii+ {!,l6 (}V]%e3ndn+-Rwx#dR.J9ޭBwx^vz ^)coߩi)1wO2C2/D5 pPۄEUPTBv^Oxs}BhS!'iJoopgox$;+nRFNHq|UeAY^q:dEgc=p N w7ԝm019FPyqӷ.)TrNЩ(.8]jt#ʒu91qEZ iv,R|eq?^4~f_f駇EP4cLS>AMUABËn )ԆK"i]t<6Z gݯOd e,cKgZˊl3-qnLG^,(i݃z ibqpn1_˘Eמn|-r;d 9apmA'YM*;ڜ`h֙<)?(h endstream endobj 4278 0 obj << /Length1 1831 /Length2 11970 /Length3 0 /Length 13143 /Filter /FlateDecode >> stream xڵeT[Z܊wwkݵxŭh ww)^t󝳿};27BMEd9AX8XJ G3'yF 4؂ @Ajy8i@' i 0(!fZ^@_@ a17s}um ) g/ O .?dK,A3'K2+@jЃ@3+ hkJkhd5T4X_ k9;ERSK[ %% 0d5j^[3T^IWW`s;jѾ2T+0zYà [:;O^`/aܜ,_.gMJ@'W$NW)_^%*OM@1s+WIMM hf:9YB n^@K n`qK^+fm-@N׿+V?]_6eqyiM-sbQ  ! `Ri'KI+kW?Iپ=N 'nlN.n@y ~5!. ۟f3~> g+ zAq5s `7?91*Uw62mG-AN^K2 :qspP1sK9:xW"tҫfٺz-l!6VN@ 7+;/?[uv_?׫_ױwr_&+Jdid f^xkK_`cuA^Sn?gIlfL#"vf`9`966r_ O`?=l kB {?B `[OCx>߾GӇW) s?|~k1z]?g Z /̓,ޅe4KMVW)$.eMvHlSEZiAJriAN%z4mזb?ѤGuX+) Kۓڣ=q/F<>r<1' /8 f}K3 F`$C3} #~eCJ?/B=&Enwp|%ZMcOL'@GIo $Ufb=x 7D 9,hP(e:y_E6S^njt!Okm`fڨ/2>1]Ta/3:(dO\dot5c a&:8]W(%^@M D3ڌV-86F(EUA[bxfb~9.k7 HUp{!7E%ە.P"+iZɷA:+s ҼInk"tyOCao3UtxW?^Jɶi=,*[8ZUO@+ǒr5#XШ$Vca5-.5s# MeSQ6^%GʝLt9~!H{iK漁(zsy#&'{^R $ Y!9nU<ѶIlx[A䀗}]C~^QᔾOq| AEХ¼^Оݷ-f-;֡dm~ D45 ~Ǡ#yҢ~TԿnbqӴNBb\ګ, `9E>"j؈|-, ~=TBhQ2;@T>OHRCBϛ*E hD[ BQmԎ@_~ōL<n@pۍE;gC,#Ƅj׺{ETy|̡An@l /ٌTdrT~ڿ!Z.`>Dy.vLjoOG\_{jyq!Da\ӡ$bCoŝV:6foyY HuE ?gqB q5 oi%>,,g]Iu+C z(&%mPz%WnIro'R%9{yl vBIx4͜siVX<ԛnu4qfW ̜72Ns3]Z !yqD,x7"FLTX6. ςR )ҺxY3nW.Ӗʦ*H0rͻظ2 L]r}ڪvڨԚ'nxL/T;~-Ȏ4МEI~ C82܍lѧ)U#~rOSvܝeH]Nƾt}' R] R 7_{ X-Zkb&#_bUn*:N_Er,er# X4)Nkd"/cX]._[kOV&snQZ^RfLwuev\܇ҔIq2)fX6Pp%߆i,67莢[W;SfQdaGeg;9a( 5o5#7K-rurG}Y Ƌ,1o?ưx|{43+; L(__̸X["^ܨ-H65Sv9SB%`TQ*-sNDKY{d$kHS"e/Bi/~2;,Bğvzb(:yv(woaUfxl5),RݢB3J̅W1((|aߜbutl}\Y'$v$2m~"4nݲWhȴvP'̀Y0XN€]avS2(B 6Wf.,YL]JۢDP3θpo#~wtv.jcc? ;J0qcDZpV И(BԜPa?O;;kBǐΪi$q5lxx ig7_r\><@K~], ^k\SuBlVq~\l뛕CY^\.DΊ7TdL">^h}@>д4l4PĿ|XX~)MR9M!OV%T0QN#HOt>%폑 ,<P6V5vÎʲƲ n3nͷmhBi,k)$T,{pewK1Yd g>߯0(oL?WmgL{ l! rV`1G"!zڌ.u_FZl#l xO݉5&RMk4ii)Xu(6UAKU2Op9t_A}hxGzR-4)2A.'2x+%E52<1 !I+ :;@àUliedE58@ } ٵgYNE VSC |u"~=r(>ڱ )fudґ}ovM.9i_IvPm9߻l>RbOŎf9L0?o 1(m>Uv0^`ّI1$tY+aj˘>5>k08˺u\TdiuˎsmgU秠?χS^+|F'N?JR#'+FbpK+dsi1Cx+rcJ5)32G,G,TpzMWE)RcLjt&"0_kd Ŕ) U#BS3Ǥ2! #Z J19E' Qo^k.xl6'-/}@@ҫq76Ε5c˂`|?Sq0)xM~6U'NSz 1Ūdu C/X]RX3I zMqZ0G^ eەtk7/PT#A_t[,- syY /8:sাns+3̆Kon$at#Sk?֚Ôr^ "ZwzZУ b6Ux\ TP}1 QC([\F߱稓jS~ql~"Oh:rf8!ΰGZbY5H/`̀*3+JY\Vnr|:w 5d]| ={•5X]ILfa:gͯ*~nHPZD֌¦&¡rE S. -raGh+q}f#%_+rˏ)p?)glJ~NN8&s?xYR< >NY}IZv1}u%-vn)T#X7f]0,5[(q Ag| iZ'ȃ&QT:fl37.&Ԯc1{FBŃҤ:\}Cdєч$TrnM CTq:x Ǹt.x%D&yUuz'&9=0[qZ̼ E3PiY܄hʙͪhZ`#ΕGHހ7͛3 `^Dʊ䊔#@F*IB#SASQ34QT;I!1xXd3ޜӂZ0#ώ_qr> wwuh=̯T3Gš99Ό*Vqz=,z6g!8*{ Κ7K/ªRK )}!6q36˸oWHYuXޮ# h~'NH|%-`*R/NpN4h6M=CcUԞ*'^gcA"ʢXԳnp 4&m h<đW/ _@HYebBg,>Rd/H5,Z8yY貗0.Ʌ}n޵x).&-hС|!!hMݿ⧉gg'lxtysʐj#=2\4 O롿pn04*$˪Ĥ8*>kruЭ3.2Z_`*pZT u=qU4;kXi%gU5_# j8t&mkɠ!Jis/"T$*Y 3 > o~(2mU:ۦ*(BPp P%{lP]Ο8HOy^xa:u,'|fT'hKS{¿69|ac#ː_BCl̏TeVrj+;Y (!(N2g}^?R掠 _zwnAFU CEJۓ'Bhucdlwmeq & pGrwȖ~+4Elj>ӿmj`Je*P[@BmD GҨulr$FNF#(#σz<Ԅn9'!Á)} :z-~$K EABkirϭ7VsȣK6Imn+?}s;wT߲/C U^$RZ#\t$5+?ھ ".2=4D㧨[ c(!}{~f"Yjw.Nӎb3VU>[ߵb@P}DE޹ BZ4fPJ85S!`~x:7]rHؘ3qP,TJQ/W#Ny*<9a=Lr eO֍޶?Wb;$$?1Pq8tGI){$f&m|9ô2|Bq1zh}< ہ?\qO-[6߃P‹z}*F}&C4F ,exsF` z .~%¡+9)m{uTeM7PyYlsIxND8Zs'z7^x-yw?YtL!FՓS+9 _ $hY!ȚcZzϐs2baaKKx_r$\6}X+^ +R_Efm Y7H/qɴ>rJ{wSn%9FPբ>] /aW>ǃTKt}[h5 KW[89$ #9hKϋ#Iq ~ߚf-zmR ;nOa"6 ǫM𣏕# ֖mߛ $Ej!&X,ݿ;DwU0PsR:|5:^&;uK2On5-s]3>pD[VnnǴ}7{U$[ u4DwZMF`@+?{=/BWôd5g9]SBM&,wOn]LoKOr1 p؇}D ׄ@$5PZGσ-gqEVn&( χT9Og09_+$2)Ō:nʺlRnȉ?5l-2=ƅO4Fz%º>+ "#.7zԮD8x9-FO{~@mCșDl٥ug-d\hZt0hA<<&:i8_Ẅ́ad6zb12{\=`-D .jMTbP6bPRfvngjL{]Sîi04xxXr(G8\3k#օE蜘^=tJۊb<Å`F\]maqE>oEssaN_y&U9IoB(튔Dwb@EAZ8J3J$7G=Zg- ` Y_& [MiY~п\¥1FkaVe\=@ Mď I0)IC$ԐK$=CfA_ާµD5%lLKb-fM^c#]I@I_ٺQR~"Eɲ&>_#3&9A/Lg[byqz4HBݓ@Z`6>Hx~ +F``r1d`kH!ҧ_ʢ6/+0L@F9LѽE):-=!K3If5J󡩕]F*+8+s7`sK_\hﻒ%JOeӃ<KZ$[JFFߐtd]Gq--u$fv{o}gWP{, `,#SlV'J܊PT\#LķA€ OIE*Wᩌsa:[KErFo(gkhܷ\}"FtAyn(" { ;S7M:>^V 3 19,@} ڶXi姍z4ةZrgw?Ȳo !  o+eŷf k>N[߲"1't1G6J1Jb DJ+b*:Ta;FEGWL3^*Jb՛JpXPXM2)O I*F>)EY\LɾhOOpq[p'(f [?~ߟ~&.+Cn=j "_V<RG'|ĕw /˿$[mҜ\NH8='&Q Sˏ8xxsێ-:s"ѯТYY\]h7"L52abY鯡<2 k޶Dt[eL9J 7(dJZ(љ_ZLZ?fYLt5994RBU{:f·*iq1Z}Xw9uVv*%B1OX7>F;u_4Zę*+ZfvCB>WB:䱡+/ƒ\ꮺ` W* Snj=FL3Ln? It=gN4g& `%Azhu< AA"O`«{/wʅU)}|{kx'MH1*[$U ayq`S%$$gj&]ۛ$T߬Url&(w,<#`0&hԟ]y#ގR}fԪ*i}0ߨZ`~-9{;_'(R h3z>ОX3Fm7ZNc!GlSXT"' ɣ!F31/fQqViL_Ygm(S,9T]f %x{yL HPڳI |n{V"ƈh R^݅@Z'>maZ /0AT?:jm!Dp*5PMJĂ>Lv znՍ&s`a%A%AoZSw{)&E_J0a:@w:.Bh5T5j-xWdٰǠHl0()=X4.dLX귒({m@S;Nov?=Te$1DPy[O5 &ghU y6F7mYbQj?],Pp !J]F)dD a5l>PԼX̆l3߂RihŚ᫶knozˇ*Fł45RcG4h;!zGBֵl'^ۯHfr[Vm)fixGD]WI.,1uX!+ – 4> stream xڴyeTۖ-+CpwwBCpww >rNwso71U쳂2PƉ #lhH4s2t032’ ; ,lmD 'sӇ##,@htP@'Cw; /`DgdژY>\m,̝`鏷=@`hcٺ~-6#)**)ĕU?+;:W-*A9QP ~3ZʇO?** L `-?*WS[(͝\]]͜mOj` x:5䣝N @h$fNr)NbZmp-_2 2kC '񇡓#//Єag?9d[?it!ۏXyz m=ћ?S +/ ldm?cCx"2NFv+񃤢6&¶U;iGl-ml]m92|L3}$Hfǰ:Xؚ#?G2Adn>?_)mVvr[|RDMcY>?% מ[H͓F:&109}qton@cؕ#imUhz= ި[9p$H?*X'ؗfgjn0E8]>swŖl HZ.q5)=tKL:pBץ7]Jꀴb\*DB:UcCɵ! 3oNV~'8d,lƊ<@"*0<VC'!Mۜ3Y6ߞ%#1 , C6L2mh()Gt]+uƧCq֪~q0.h3CiŕU Iq{hn0WO"v rQv_OAcvSmՌKSш61ЁKq1C/Z^X]7o!YB/7B [c:{!ϚNχg8S Du\8Mvr 1XPL'Uq+UaB5V/Np`EZݹWz`,-/~3nZQ-5yr[lmq%fGE/1w&M ۰R:_s-8'ƍ[+Udz"N:Un+*i"R6TxT__&T;zaZ{p}aS.bSfӊl"گU;9MEQչ8n v ~i0"P_v o2Wm+GH1yӓhSe>7Kn|\ʬ ~+V3+\g8VoIEU~4~=9% JlypnAxC4ȸbkEgȚ4 D3 V)) Hi&Vbr֪fige<諎6$'#nl&Q^TzM~q:xcϗӪ#|Y5 g| [? t v_Epq>& S(O[՛K^+7wUG;x5{\WUA"W&>y¢$yBw47 86 2KAUVnh(#P)/zKCVwQ}bU'秋ٸ: }ēD,l2=P.GxVgG~lR):ưb<z%Mt)Q'vœ Ȅ8N}}=VU#`Qy"P1Im}0=rfҚlivYvi\yzjw.ݏde;XncWSҚDTk)= u9/Tnz/ƥz qb S{6cxG1.oѮ{YțTضft}3TM. AjLG4]Pt_2Cll%T~b٧̻٢߫h>~TT`eNJThĕo!P 7R䒪(]Zf a~9 vp^de3(^FY,qxgI ".}EXn0u>bߘ<&BJJe;ߏBn{5fez͋IϨ ,c;H91:=gEI 9p"^vķ*!:i3^^E⫿|(#d,/0=ro‡!vv 4^A:kk Wk#p#q'K=|۞X.\xF~BZz'ܾ4Od~/w$nC*s]mJ(0꣣OGa @{tJď)dlM(Oms CCZ9$|_ jn^Hi)\Nn ]&p0~uZH֌wO=Hq.=UsE'`]urKA;$$}g#?Wo,]*mU|CeU#:0 +uFC")$e'U|J=.UUҾR=<%MOjh~|EgK#7ѹ_")I9y+5GFQjo%`Eņb9BX3Q8h\/zy(&%9 GsVK 爾p@}w&bHj7kl5t/zϛJ2&uvWꢂ9Pi-ƾʽv);nwhm@5*t3~}O?~\`9~r8ú:Ot)0FE/".?*>G֕Gς*K{QuǬoT{ђf /M2-x2IBXr,x&\i %i:W,*'d>`NSk]& 5"A J9n$:s=; z'-1blZ5Qx 5is=ft |q&Z.]+p7e}'o"!ށ;yd*<\r$-ZId5ߖs=9AeM*ΟPlȶ^(GʻJs*T=.;%3D{.]‚# % dP,a}ou`4t:5j6OXtVԛ{q?ja?"| /ҘgI@l3tDW̐u=v۬U+i@xjr6L@~8JxKoe7gЙcm( I .z{<7x䖻"$ }/, bA.a#U0Z,V;LkĩIa<8>G6Rͧw#LGWKQ7Wʥw¥eOd{ (ʮט{3JsRi ~_@@lZ[G@)tMn,1i9R{q[6J6`|o%8љu[V'7HjgbȨtqc}VdG4ϨZO< &k| ;֕Qwu{a|l_1|*S$'p7᰷dpz+(2' BI3|o%~~ߝvJ)x)#h _0ӓOcm3JgKhȪ,Ťs֎ Vuk =Nox5#5,2e[UN.{X$EʎU Zop|ZphWljXb"h|ĽHSczvXˤ"lIezȫ6_AxBeou # )ncDbi?:axȑ0t\0vPѪҘ)![@i0e~M /!榙cG4lh#"ip"~]H_@P??:]!ʋUZ䂆&йdI{"/_h3g]om3.K.3HGp'}r^ =>>5H0ec&q$#ŋOD=9۪P( 3EӕwL!̹O4I]:Q,b:"5Z5OUmedAM~Mhb;N.@&?5/Rt5g6+8@yc I1%%ݲk NICZ,8)c˸=yxf=>2ޒLoZx-0RQ0^^karNeޔ;yKA' fV4 m#1dDky'gn<)lK 29SٴfP! m@4x ͢YSsI h~U2^v"2e*]Urlp=GU嫍rf<@Q"T$C!V5Ev ߬ȉN{arwGj`Oz ᗷl]i$c7Xh%V7,3Rj wl#M^&بu&a~ڟ:clš+bvH v,RႋbW0J865xߝwmoЃ|'"0j= !⽑JitcSr:˱/0:zrZV41A  5ō^F:&a )Qta_HlZ͢ 5UgɎ@7&@~5Pщ̗Ltu:y @O d8nb~,M `֚+aXupjAR(Փ HX4fv 3;ח߆PuBjOcp{rշ㺫E] kOYfj41 VFN^";5/Nn*AV'9 3]vM/zh.zP1B}@Ī=&99>"q^w<4(Df%dD9B,C5h` ARFD|m)6ЛgA5vgO(=F |mm~^2q4iRw$&ayg8 Kݯ6$jB 0"o"ϯyNhѽJBv 'FQВ-r=˥)ִ͓݅We/dFzR{ fD9@T.o3c(Br^٭yu54 q@42'f`@OTUm{hY>ӺĀ_4Bw{~fsj<]ÑASx,}bj4&nQGDe;AsK:K{*<0Ր'4*|J&.-J907MxNn|xNBG{|;I0~?Fs ӌczaN{J/!۠f7ic}S4^X*y>,]GCl,(<-X݁$ڑ]%!n6ĝ76P;0+q[pĞTl8ӦZME.X5/ze '!Vȗ%ރ/Re 2,e@r]|p#@-`Ev@#ݽF8 rޯ"jZLo-[GzXOz)<6^ \Bx8qf\ֆx dE['np"yj.OplYd,xu6lƵ+.ĦLA%u~j2A•<e!!@1C%nФy.˦;}%+j_N$;!)f*GvzxEtT Trti ȨU[Dn${εSfm%D@Ж DgLZC)xu7 &6@U1B=ᜎFAqʁ[0y-~9,~h)#I$xw k {g8^y`,q3(/#=.j 8ҺAA A51dhJCzOɊe|Lbyװ2xyQ n0v#@<"a~%;TEh4!q\,p.b%U}#{#$"' Zg|bi<`wVRLj"^?Ҕ.% 츃h~=$ެJ?攜OOh^Œ%pJC` Vb(+ʝ!4 y7mMli}cfw#rеJξw9}:B+{GLL\Aۋ'x{ *N҅T/Vv>2ܻ$kXu;8#Xls8J4 ':9LK_є$MnPWF[aM~mW~ ^^4gE2 m|w/w+ȗb/AiH|'C: fZ= ۘ/<}nvqڕ |l|{I)YםSd| CC5D.cT#Z4ȩXL7sKV'`jI(%ĵ.1pi_Œ sGzN(絼5, VL~PT-WP0e/S+؈-;9h4]ޘL?libt5I, ! Z@frORq.?}&֢S9 5Z2X\y 7\/sJ&|KbUuulKx^ 7ӕvz^S[ A 5-L]MՁOY0Neczk8`3>H5clsesMCA/arB.rCvaDVS{(hy7L>7{Xi3Jplsi>`ℱckSOᄬ~8c֤5f۾8xd|]Y!Zc*UwDdl\:ŶkHVya͛{(n K<Doe 4A ~m+ৰZ}x}Z*HW?6叵oiQkjxPd9_o\=B-+ g ܫY;Z l/BӮbV}PFe6MJNJB6;7|lq\S<\ ;d0ZfP5U« ܙ){fNPBlViN j6jF|vw5ȋމK%ߛwTX$ d]L L8(Ⱥo%q*yl!+jr_lil6?24I}mR,sWjH!;u!)#PՈ-u}()Ҏΐ$A%=du[-R6$:6 sjjcZ\0mH?_pfv ճΛdp A&^gblAt/vK!Z`5(U״V3z U@|%lOؓX8!<~o'bkLedF6^"q'囄I+S'$،jFqw_I`M/{Ef>)lv t|Z*J|1 pUq"z{(ϑcC6D9*&sk.in4cپZS aAr]xF}Dg+-% eIX &>u%5>LGz!A$ ҋ@*-dAķfKN rja ئEim9#ϏxuV xFs qQ[8vY h Qg4Gĺc;R;pr3̓[" u@*wme$zc-LNBl !(=];@7io[ U#XE1]Cj{-?C栀N_nEJxwha*vBmdSp*O5ΚȻPF:*_XDZZw hW귞&NCkw7<_ZʊT`s'|@~#D?>;ĕ HYdl gD?+G^kvmʝ{dI+^Y6(]ndB} ٓ 3|6VE@I3z_~wpg, NwʯD侺vMjGe LeG 29}Eҙ4`@"bHņ<Zz;ͺK >|^5$ -ޖ~; !9̤O#x?*ƭ*}ۗ@$T(m6C9#Kū>\ʇ$<%ȥ V{h!4 sZ[|I:[8 :!8'f%*Ye {GeYjX#tG R5 ־JR%P'5C.9c[Z%o`M"%j2 ux8Fe0|w> f0ɂ!`# 6Cbgۣ|u#c"z2aٖt2|)su[hCBgZcO`HZeAF-6ʷ+Iט+t g.U˧ ;L`y<F;'UpF-J8ܶ+@["<: OfeECS|vy&A*J7 _^PgFƎ3zف ًg:4H#%͐>lj?)2 ڷŁS?xΞA^ :bbZ4:J+q{V5>q[ʻIoirzU nDVfj$sw/ 0 +iJr*׫"׆8pN_w,S-b(L,&2uYR-zs%dAgb;F_y(EyOeM90L(4&*?I NTO@FmX}ej.?G֓eNT޽IZ%&\螜;EI٬eMcj;2#p e\C [>.sן njjd +YJGf[)o1QQK6-7ywAb Jpfxk|ϿHfzFlwЀ;MYb9eDXE5ƢLOV] eQ/.;ȫɉm:q:H;yUL>1&P[$ L:kqoVqݾMXP&i:(ʒ4ݗ!@["Fo˾o:O!Y5|N!|rim&!Z?~Pb0-K9>(<Ńnmmiԇe! m hXJ|q:K~b?z3#9!UBD,}W4MwEA&$seu@+l4(\at',Hcu)ъ93 ,1Q џL*bWL7Ix &Lg!k"%dj]ɝ0Y.+rd6sv9ɞ]H~ۀ{{-U+q#k`ې }#8 `h~«Z7q'(38B X4Jg*KK'z,.ܲ|sa| tr#Vf}$vXފgkH#VW{AM Lǂ wAFm: dN5jn_ @p%Z$>.hij/28D<޽=XdP<+e ʶ*pCeئc8`w?Qm+|8_C)5c 0"?6B+T&UG&:Z-՟']Y q:/Ze`z-{0=H[3:~gnqB7sZCr,|L/?vc=^bcSեXB5PR%2}yG L>w\f:suMMn\!6! /~&m!;}4D(u&~UlħÒ\7u DYIy;k*fHPf#Q*}9 VA#UA._]TbJf>b?s;~gIts q"da ڗ=4Ӷ b/J^9yz^/\%E7י63bua2t@V*_)s:>} okpaSӾkyH3PaD͖W sFK/45oE)%׫l8m g.H,έé/+fŠPSN$4-T uofk[7-rţnlo6> IsYv2fՉ(c##ėr.Mex\N|PiT)6.j olHmbE? 56QkC٭_/&Z]mW }+ -> stream xڵU{gZ0X+S+FDêYR:q V&<I@\&f,;Or @>)#H8;+DF0!&@&`$ 6q/pX\02W; !H%qేWGb1 o0} 4phx4 0 $K`!<?[G.k.LQ?͉t*-r(pXt"ʶ@C VoBVkl mx 8oO-)ـ"µC>xcgEm_hm ATD& N_v\N$@XNtu A `94|~徵$qS'g 8p%QY$H/u  Xʀ׍ A'OC,0@M#~RzpJ67 rء`(H[~Ap-n}?9,(_Lv|ox0~-9ď@ o5 #$};nA>HHqYGYi-AѣrۼӄrZo*[zvr5:8[KƱ >n F9E)2k߉q ש3ZEs>`W^[neZ2f\˂dOIei޹k,j~*[8 eSuf]5ۋ2o׬Ur( JmKUGťLˎ+\|'LO;ZK޼^-ZU+i9;|kCd"˹+Ć37엷ED}^108ͦN̄n.^dJr٭qw۴Xsy ς'U\ZW+T c5Ţ M3%77*Gj/i})pFф*Kp1:l~;д.ۻBS7)p,|: RȌ1gKl:H߄ZT~namfot~np%Sp"~F#ǜ;ܷq=<63ie.t]5s=V[ߵߦ D: /h7ٚ|M_(* pI:w'l:'SR:yUrrs%vT[ xy|oש++i7?p-d3S_4yVҧ>r8Q\Xjd𻄢nFHѶ侙1VhF+ur"dfOo2;~ VoarGqXa#6vh[۱+AXQDS9>u"oyP W~ٞƳK=PƱoHR2zr2 E;fCXx1y{=c24_L )vw-pK3ßyG˯~{^N9ֳ{3Zzj";'˯%c'U/azCj[An3ċ|?;_ߚ!GX|-r ߢeF\kC*pn7 nN~_j75G-ڀ2Q;>Yb>)]>' 蟴[P'9*M:/OhBLІj\F@n%'V]0ee6Cin*G{LE\k*;Ef-c{vs_Nj"+S'*952q!^W.ɯ)` O-!5c&eS;A/,9mZxQZ:#Aq1ޜ4ѕ|}߁j3@If6ԈTYu ڧ+'W wUMzfSGcJ)%3M soHؑM@i:uWTCFK .)צ&xt0L_ΟKLiD9X.>4n<'3a=V||?5ża~ƻJI3}fD8y4YХ^WRkǥ GVԨjb…I%֔ i &OuL`V|Ӄs#.IxpYXqӽGKܞfg歑3#۵B>{Ph9"CjP&_3') ^,1tɃ떊j.&=][r$Il8ohfZV3}L#vV!U ϕjUծ䍖tnqNO9Z{=ts4[* [3 ٚ3k\*)9O}дf_\l&#U/WIEJ"1ːKv ܐyˊ8鑱N& Dok /o~!~V!yJɐnuqw.םFp]qJ[0"QDkA\:cow[Oag ̪mLYKs"&9zS65c9npPL ar}^|U{#K2]Ca-:t#$]4d`*^i[ ;> j,9#ûU6Z|Uwv_ƻN3"DCg(UC0/!35ZbhR,1Џosx!΀ާ\ʵw .,x^Yu=_wzn 8Ox{r%.00Qֵ jzFZRߎ zϛn>N꽉;97"gbQ1icktxUwVzch 1/)+ydŃ'w5W6!y 'W0nTN(c"g`"^hMzrPQ6R>$Ñ7}xk-IHէSb g[J(l wWQ~3>.ï^ y JcIZw;O43y^4Ys2dt,0 [!`鋩}PD  NfǶP0>Fk\peLEuiY/1SU*kwyL*_Ɵ5'>V5D3Vd.ZNxB.BWC_$Q *2%']+Z:̴_ @ZWӶAGb*3vG7\δ;9+M%*RrN mWmon9b~ˇxdsc7}$|,\m۹gVq4aJp(B머&=O.;TMxCdOUJ;U*ydZwhEGkN뽽G/j+v^&(6bWv67-{nF endstream endobj 4284 0 obj << /Length1 1691 /Length2 1327 /Length3 0 /Length 2365 /Filter /FlateDecode >> stream xڵTy\VPZQAV U a$H@xnL ę !PEA ,EETjZ Xg] Z_K&|g\"0$/Hc2NAji?^ L6h1 Scp(B_F dP@Rs B (L@LnC!p)I3<F#8]Qԛ("Ȉ ƴILrbe!123?V*s2^OR/eذ 80J` +rH 3@lȆKBiЃ} )q nΈxM &Q\F/0dI*ך8 $IA-47@P;5HNDJHА %@j% BvOb S;h*hslT tN0%rd0@D }jAbkH^Aԟe^Q"ћ-Ҧg`Fo~m%I8!HµeO3 M""D!L*cfGL_ NCkö/G}bHkH M U;AK 0} &Ԅ]mo븿/Zu'(1,qHNyw-¯wx}ɓB$ƹ/yʓ1 9ΟW6z6ք_Llmk|">7-=?z/t\tEfYuߪ-*lʵw>IY gc矶oW~@Ձ̪jߧw ؊S有GI{Gv ={y~8r~ݘYWٽWsR>޳nfyY{DӋqwHM3uuVQ|jZlC1.t^nun\Y.%qZ{O^qO[v>oNRw?XuաMYgy;z+?Ĝ s{ȨGC귮^ho^4rw6NJUvk snvjІ>s]|l,c:+7"Uwk>E [-:rl.-YS>?qx}fح} 7\5, 8J'o:ljA~7/NoI!''{,k[3#?>nRgx?f+._ ͖r_`%by&#_|ffه3gE5&箸ka5@^IS3Ye}q_Nk-{Jo۟kXNM/i-XkJT_ go᢫K&X9~ꏳ,_BZ,K06o'[om>ܲƻweP1X_H+Nc/\j~8ju_Ztƴ SSz;we9N!K8зm]MZk+%wNL9z_?W~J^19"}ܨ;Nc6 -я-%/FM)Y/x-Sޗ0qHr\],9f~{F"M'q\rn".6J17i\V5#5^)ݟ|nWSw,uod+[GuIQ?'6z?B endstream endobj 4286 0 obj << /Length1 1722 /Length2 1383 /Length3 0 /Length 2438 /Filter /FlateDecode >> stream xڵTiTgq7TdQ_@l,B$HUM2&ę !A`]Al? ҂ PT- HXATHEh 7*d.%&%0( b1B )ɸbRAc{s!D(DŽo>qPKdHڅo  dC <!')V2B0Ĕ(!!@JaLLt0D 25'(@09` FxH*DH@'aҘ9l:qNʼnW\B$Ұy@(\:I$̯b4<%qȄEdYa@*$H); F*<\x(JzRGRlP3? %'Ԁ~P͍ar %`"QHC` J:SA195C2*4FD(!vJG$B!!~ yM=,AnD'`:zkpDI@= 6 *aX$ |;3==;HƆ "LQL  5VH—4:8a͌pLLS*(664c|n fqru͙qa<*/\w"д\ZYցAG2s& )c(pe}gy[͗>/!p$,eK?+dVwGDIjkgi~݉'[yi{kBeݣ{~#4Szlz:-O MWWRc'lV :/ܡ;hZfo;h5aafǪLIb1o$m(.bq%()akjeɍkcfĥv.0ԃ j[S._\;m2Ud5;)ag.x=:؀i3۷o=~{ŕĥNbG[q,.bUAErk'k"نŲOwyW̐ t[O.7b{G[ =e|'m=7S<%Ey=X]V{TI&$xGږUevvn?yu9ϫnݫLlFR+UdFi6zVlv\k,}Κ2ʨK99~[oZ"#OV׹=w ]k})v~ocß jbIsJ3o䰢ȞQ{ܺ7~26vL*wmp}y'Ĝ H8p5R{&M[tx'|)qݡSAڴnqgn aNgԄkak#V)-!ѕWpF1^zZрPRg+-x򂀰f+M0@wF [F&;K } e+S|#ReŇֵ2~,^U endstream endobj 4288 0 obj << /Length1 1762 /Length2 22049 /Length3 0 /Length 23125 /Filter /FlateDecode >> stream xڴUTݚ5 #-!n-xpwww`ݝ`A>wOQk^k(rb%UzaS{c '/oog/bf1001:@vbF  :~cw<ddPc(;荍>@;sK; GQo" #k{W'kK)@A`Z@ #3@ PWWQH(+R3|VuvpwYDU%b j@R]UhNPP7]^\MXM[I߶1d#* ȁՕ `h`|jNW{Gkhg;S#dW49&IiAG}[_' 0r'WNII`kdiٙ|@N7Д_Ύ{E?Vkm;fdoe9Y:U0Y +HK}HΎ^;x\lfӇhbmtrp~~0wZ* (q;{SK;s ;C,O9 ppyn%3/_&3o& LVF3c2T73>R֛P{ panlU5Pd!F GK7y2l{7Oz6v6=+WɿNn@E{ ԦR2(rn l-O+3b?vH-~rRvEZAX6oIwBF>>9 ~e]$29ylsmmQhwݲ\(Ÿ͘6n˨3'(>yüqhnԯyj_akuESn)B;wvD,Oy@7.~TLzL9V9X5D(=_;) +sZ"^asfzX+fGҨ_YlK?Q^CVd1"1B=!] ^nW@ q#S;}le$3 XW2j?i;G/X(Ԅ7t( “|um/q, ڹRLfq7q@7#4ޝG|2x:Fk6bXA"xAY֐QvG|8T,T/Yc#^ *rsxȖ+䒡x0hBGD;'/>*%G~{[W\EnJ M5ڪut>P/f6L VQlf~bVM%]=I$ Ա^7Tф)eh`*q#~Tcqtk͐[::lZLz*F2 ׊s-r᦯KRX u M?A>kJPsb77[Κ )%hb [Y%fˉUti&0hgjF \޸/́fvKf'O% iciJJ b Ny)\})h Fn WV@'DLuO;Zq5B??~Eٚ+wJ)HЌoIc84`FRiB/N;ǏNv|6l/7E #z.&)i[l%z]Щ*ǧGzT59{nK`iIyhR?w|?Yp ؉H:.Ñ S5q7^)Εm! c,i.u4E^ֹڹ1Z.Heأ*b/{By!I>ktl{77no6@ѸcdUrH(e0{*P`64`g,Z MMݙT szu7ե.M >L\pFR6'% y zI46>Yn~t|Y'5;έ`kqJ恔$zWR|7" !fK=ܑ_Q"F*Di@jfn/A f$ݯ3c1h 'Mx21ύZR\4Tג- 6i~f(u;)_Vww;/͋R=A=}wQqΪ̴JؘZ<,߂M+GEV۷ BvG~h&㚅h 4jf$N(]3u7s/IvqEJ˂ 8ℿ%fMv&Ef#Xˣ $ ݿSA>6%Kh&/7d0r+{my!M },) -K-eE^-P5l+PW]D;;Yu Ey/ t Cu!}62zWߨ0?)M73z %KkF5q[fFg=UWwU޼k@ݮ׾._ѣJ1̟ž  znlwDZ˓d;!VaKWS]C^k:ȧ Ijh[IC6|ܫ f!ʝhGb=q kF>T=nc|y'GQ 蜁hIvrKc" *[S1INl5Q4@#[',]<\uϧKc_{T,ɵ1Tή tLUA^*c6?ũh OMx.%%8Z^9a&g媙j׫R B(q" hcâ.UZ&m{吟 [>Ŵ=oSZ= $Q#{<>&n4 cu>;DTi@w<3AT_=LMrgkU>$}<:g&/}EcɣB2,ߓrKJ Kk%4ybsŏM*,#FW/^_'\c ETͤSґl͈;-҈SI2ev"r4 הa!UpwOaZgy2ϑkf=P.8㌇05ܮiWEV;g548pt`=b1_9+ MwV9 ս5 l vBl_ ^@ <.9n!j ̩g˒=k: } ,WU^菸Uo^@}8 mH ot2Nj)&)*2҃WacECFl rv LS rGܷ ں!M/AkKiy OG$}ߪf~m]-|jx8XLxs+7F-c"rOnjg4[D!T#pFnPT4.&*ܼPƋF=;SQZ`CX6SEA>ssd0ь}W}fe?3Cca,7ABtHis;bQnI,|4':Ҥ utؑPWJ玛^55SiB &+~^bE(mѺ 9~N&UߠH% ׄZ ;U@VF6|mRc+"xբ8.QQ *&5@U>/ޙ*w KFk|2e2+/07(}n26\$XTctAMbNE_*.;Mil" tN= tWpjhC_ ({Sjѧ(|\&HY˩O> )fbnUuU^D%QV*ILqgE0$E]&ɒ_/9Hv֚Pn: ?"wt [[FwfJ5FRކ^*‚ %T yu7XǃI᣶j>ٰRnJ];9EyJ5fB_Me:.5Bm/╳[{DJY{CIUA@U&'Ճ&Tg&jTbNNa~@mqI,3>Nuq8yW=R A-Z l$|[@BaA.qc_'a \":3"c6\GDBk}50`xW vj}^&wIjF8b8cãQ5(A O&;]uN+(=6)kbn  vBJa56y9Zv$=دeg׈+\&n r <0_;Ƅfِ srwR_p{嗠SE$uGm9݃pEr9IAyjoڵl%E R Z:i{ ?veQԣnOJ-=BB# 5$&F;Z`vnL*#ބLww9[f8gk1[[Wo¨Oqp+2yׇ;V6]>f#J^o)7-Ϝflcc}B8-AO0S9qtqp?ABk"4.<<(AAE1]鲩z*@b1-kau~MQqÃ!jӐ{`.79 sf^!Vthn'Y)6p+h+OdJgGٚ'5aK9w;M].A븆"W"}\<| -t",gMH(sfl6=j( ^6ɼ7h+&3WP*G/: ]CQviWʎuSDʩB,>0:F@8\5:~ӁnӬj7̮$bWsdtbxXhzP=Uۋgr' gI|D6E|nE' jGiCi'-j;tQoؒ ڬUd wsQ7y-jLdKjX5lj,bB3sebk;TX2Y*~۳pV:m-ut4!g{~cGu P~YefB'܍O ,pMȢ _ K-R8>)4V{]Cv]9B]^~7R2IW?/[ ].pL n6OCٺ7%*q(9e&J8sVA<2CT2\F|3"O7Zww(=nb 3#x8r~uѿiMII-WJѠid$sRgMݠV)?ݭ`pN:o 2&/Il CIxU!mf=X(WpV^B3%3{Sͮ/gqOr`DkuLѢ05(*] Jy!3yX2=3v+gKfPjMOE]|Ƞ=9^[ȸgH]D-!eh~'f~LQywM:qauSugJkkiҵʡqq+-;5nԕ1WKPfҧFP(՝1Sxk)MTpbD$M*ՓJ$R$Q=^:yJk ګi>Õ0ͭqN&4s'jp$~~!ݾXXvc|T4QUs627ރچ69WRI=imi [ MEr|{^WdȕThʮ9", `k+ߒ$Ĭ,Q9ZcÍJzdh&6CT2oJ]Xd5z} MvhmUΫ{tT>4bw"xi]yΨ'ىPfphC' {20 ~Qh;m}ˍeO}=8s,@ )wPpzK/Tm᫘[v5Do/qؠa~$2>6V(DaVzg4 ˛=7Gl²3?; HdNk;BMťeUnJiJJPvZ[DpZi6J϶|!l[4eKY!ڝt21^Mx4\-ȷo4_zG*r`cSɖ "|qf9N]ﴞ; l&ʧ!6W~ z4ae@j]lU̵={ZõC`s?Ph=ݟ"O4lr{| C^k9w$hk>0:WԦ픭0=(l--'ѥKқGqPǠDGF}JjVjd blk^xP6O]鍡?0q7믈 fғ !,1ISa-O ٰt4Hp23fx)ڇM{zTדPc9iI^}T)mtR`!;#Ժw;Le>L Wr&Gv[YgaZaSUy06n섭5 f8p'esh,2+u& (ac$aGh\/0k8!qŧ!3U8ۨ 5g]KĬx򞅓C="Z.OdGF֡&1? ޲@ uۈada ,hK`ES6I ] ^y?egJS2ȳ;4{?]gpϻ*ctM怊|珶0ߥ~TP@56Y-x~/iE2~ڏe6︾7'-eeHeNDLp9]7)>~ߠIK p<-zt2;mZm,Jo߁/"C9E]`QRE>klW+gFbe%.V;T+]z Ϟϱ,P'qeG٤ՎV\+!뛯u؈1=?kR #LȮpXh3dcP4A>s ƿK&Zfsu@˃K!Fa޽\Gu4> v< 5n3n16D uL]x>.YD@b\[f@~mJa ~iG '>EuF+G:ٺ[vD H%*?j:}m2t acb&e+[~V `ٽGklhM!6+~%Bhlܸ|G KKn#DŽCb ^qV_GIt+a9Z+w?sJq֋7Գ1% s F&B# p2T;Qңnq: rh!NpZ0LBJAftyى8+V,C#2 CY`XF1~jjm9c,MFĮҳvQ I7=aC.LNC (-ۉ|hL`l~S|-9MmlCprE:8k:LЈQAcS(B$XþY42ѵNH(?fJs]mժDG&ƖƵ9`SVճ$U C}L0gq5@siTreDF7r8Z%o'iz= 7ϵ.49]T_CR7uJ sFo[ͫ]ԤЪ&M!q.>^_^R7mԕ2@W`W)XXPK&cn6kʆOŰ}6jDW9NB-\ nZXj~n`]X鈲6nb ]C7 U}-c׷9ZO7Pjߣi6UT!}MVAKA5X1={><1߽ O+q5`핰G3i)8WdћT{Ia310E0;F{K$k JW.#ď%%%*zjZii{Hp'ru>l߃6o`a5.oJpx4'}93 I!j?4LU&Mr:RH]ȶ*cy "xΐ+:3f@c 4W֐@ɓQx`]pi4~G8 4fK;rj}6p{(Bݙ|"|z4W]_qF%Gh+VĽIhnO++Nd"ֱw?_rkft F>c٥/z#g"([V.m6I 6**'λ!dj'41j2 HGxW0{V!(!Ȼ(/ U#zfwm8pXzuK8 VqYH2XpW``_ѣ YWi\q X!6S 8Ή5t]ޯ2IR| ޏoIK}ofk#ghV8"Qn[AGu|qcDҷp%]O^OA (r :jPc!zҿ6!}.Y +ݲ*KDe'N7,G2E׉6bj-Sw cƖQ˙i3L2WI Xfp yK#k;ɝpK5EX=I*6ohzT_+hyF&Wc 4O'dۖcKB=x6Io!bYpGQ״jHעZ',S+Vuβ:LePi~ G*BjզbR+3 Ӗ3@2DoZ-~mRu{).I#mҔ4Y?@YL8A_=j2۠iu:{HlF>K3(W`8N8zoV幟[^c؟|Ϡ6ƊGObHoD䥒3rCQu1h?w_T c$m|ި$-C~,?/.{'ncn/ h>B T ϊ-J砂C$~z@˴̶ښu MePT!!`O } 犣;=WF="#t;⇍QǶM9G c3ZܵXpmմղAIA7{'<T:$s~+xju5/E7ac wJ+ÙF]=f$P4<>-'v?LU&R=_٪}_ NI87-ӂz,o`g6tL gku^68r0EfE >vZs4Gui$)9(d?~tLA=.v156]ruLzsiD0ܰȞDZ]-ʊ+URay}7ş] (qx:?Ki>h fY۲q^b1S{V‚׿h2XTgy:Gd-^?2>AD[F9$4r㻡)QH3ߑEZK /_CdVZu2~JYK||/$knI9*qS5@dK dͽO$IW XWi`&>O֫ttayβw+|N+yYסPj hZ&}dw(8RR ?ה~Z51ɤU*i~j,yn]i=O] H!D=p#QcIZs>p>K Jⷠǡ+?v *l݈xUvЄu8_޼*oeޞ}EP@ΘhٔNa i8h.#` Hkk:Ű"nĴ(!nfcB1A Io19dfxr A̋%!E®L;*2]*&Wߌ21UNވ!Z(8!;m~֜jE<[vdxP?{qyoVp'A%߷-lټ_W۠X/_?\y's/kcD)h@=*J~Mqi_Yg:/Gs cD^b|RvŪAtOܷ YuA+ke.㵧f"a+/Q!=9ޯ wIN/Yk[YO~ cAx[96("Nmܧz Pc;4ٷ4):"Fn<65ɒ_;ۅ,[_U4rU ,Za@!dV6$*#Wu OEI73? iGY85%wեRr@uJpDwDUt7{ Cv~{ 䴚/uuuH#|k>I(rbR'S@< $z>KXpex,"S+R0_d7M$kܳe߂Bž UH-b9s%ѹ4gr,>Bz&Ƣ\o|ݲA=+?%=}|6)MLv|HxuE~ԯlG]^lEEI=4}C'#m_bGe?]~L:Qd w׿ɳS &MR| ,e] Ę9kHL&CoF!_ =e`L1'DnV8 ~H,A ~eY2XLMv q`X ZȥAM?ƽRCr`_oRA)p"'ctU8|f5&h#4zg1^_~#(ړk)ˑM抠2ìN%,`2S~7zE/\AB +P]1@KPPґӌ|4?_\OОF> m1p:9 5jKN*(\"~3)t/ M}ꆅ )LfoQrtSd@"Lʷ owdD!$UlWB1UygN1CC^]8` Klj1QOzP,m_6_fsRgSq\~7 !qS0GqAN*D3i|{'!e/4}ґ`P|%PV򰱚's?~8f_c ; iS Y5P=^S]'n~J:= ⩀ T:/[=2,ڱϮYWܫjx rhͩMJecrN*p77+*^AqGФP{W '+*dF:(W)L3eAt7mw4J_ vvΪm)$ )C=Zf=_5+Id)aZyQyT[ [w*K$=se/eGe -;ql JTPbK~qU0 g4/4deZ'1QWNL@sLkGdVm[$Ål&۶mcl{m[m~}Os8, Y&Wb!V}B7= ŧ$˶" _^Qˡ/_Q]Y0Mr=j ȫe|p0( ɛ{Mna>44.ٖ7*F{x8|P*f.ބq|S,g268"odB`^YbV(!h'%.h+v.t 2]々C{lhQxDDDc] hWUbY7~|>lz?$͈(Z 7}RHx\@=f1q!aVK\M7AvX,.xH Q\+zC?=?vd'>Z ^6JJ%`XO]b2Tj#H1q@7&ӯe)/kJd4摮'zD(v/ GGw&H>]l7Vl1n7Ly0ۄо{c+ WzbS>-I:'|=O1Uf>yk^kߘH ?u:N5e[I_( Tm%U?*ȫ)ݸ*M9ebGW`N36s`= |ЯY1hpHDŶALg(ɳД_¯C1BԿXQ'Ѷ~F볊?w4uA1eBWOiBsm30+̨gA"Vt+T~M%$,a(ӆnW= )-PEi5$\Vm9W8h[@0"!Ԁ]QWJM1X ]Mw%ߜtktᣂ5'.|) <.1OHP3m%&҆W=Giq99b/'djˡMgD> 1yt;MaqH>ϔ%:eDPDڬh۬oV 7M0胭OhQ <4嘆ٵ5T=]?UJ̶SאTT)ERo5qȠh 6?E?a-1zb^4O(ZjbH,bA7]N BA OHڿ=X)G$6N_nt^Lq-œFa6rf?D:^T O(ڐhɶFA(rIXq~пzG)Uipb @2j(;8:Dvf^u'XZ%WJg!.Euʤ n /GݨDozhL Qߋ(UG0\)gI E$Žyk}lxD҃w! Jx x'f,Er+4"ɵ,VTC5=ìګ?Z&Xu]ᒆ#V ׸H-d|CP>F k0ۮKDzR(nTV$-;_Jz;^"f 'DwѤ銀ܥL.p U1W'f!!InW+-mЃcrJ%JM1ZX+s;\^10ANYne"[xu_;9" WlΞxc3!2;_Ae3-(2y({v_. (}:oΆ0i9v 1)6OQo^C4؏b$ ~N>&I {?$z%q^ {[u -j`[8Ph鵢|f'"U2Kz|(FV\s n eaw 6nً29zcZ֊DI5L%ـ(N b5SP+앒}KAd̷/̓dgڭus˛aU?. y7gutADyBCƋ؋ ->j"HLN]c[!>qeyppݜ=-Jk#.3K{ӒW 4d+] 2K=oHsz؀A&қp}@#; 㦷vmQ}M/`#ݨQ{mMgDfheA]tȨnJ__F' kk@5-+n@0]sOgGL|33)ZʭOޡƨ0e{ N-`# ሾɖvR-# E;ɴ+H+va=5Uj  JuVʐua" b{NWg/dHuB )nGCw'q(ӑܪƛ,# ] Oxߟ@(0J՝ ʑ~~/l<:f H# T=>6A7DU^6qUͷLeM<ɥ9٬Z-]Uu>2{O!]A yH;eu0r7LklljuR|nF #Kp]1D?EgITI6;Fd G>>vd-űHrtCS,֑;]kP,TAcQ$O=y{RJ* &Ng -B;`7z*<ϦCa:,TG/izP43kO4D2 : Z#ukhtP(l;"݂9>@P(v$Kx=BOTX J.J^^j}H4J.+W}yS{'ABV=nj}7WԬTBgM+AWFm8(b CӶ1Eͳs[y Ԧ?XI5icdwSQtrnI[[ZX΄L w6JFz[qLQ8xB1PȄU456icubQS"$9\mGvu="yVW${( soMr7D܂Oğob0oQ;%HXhdl|X[|0r=gVGͪ)D`=x>pۢn8碞C:RjvSpz`SƂHێR D:A5un(ue Ln%.u$/f4S,kl/LXrBDʱ%7o(-I$|TA,W۷KŞ;LSgb8>匡vNDaQD*GVuYl8[C%oT8jBGd*_. +Kԟ9n7^nDgorFt>`aW4j/gey)?Lf#N1{>/!|C6 G+Sv;h+ƭ O}'.CֆeWAqE"`Ԅwl/>&$wsKe#N2ur E X,pt8٨KV02jr!A$q"rd 6{iy}(0b|$ue:d`6K&c8X ah;%72pk4;T?'|K;ڶh C/|WD{y<']u\xI LZK3)ӏ(([#d`tRTC.F<Ճ-tNƗq&:Sr0vs-g}-7`LFn5=(_xIex{߆+R0B(s՚TkW.-~JkkHz!ƺ,r\8}2 ^>y̲NTayYܨ^GE OEm.M~Ǵ`e)gn`h]ѩskt(:0%u = S-襴MESn+Of'փkРǎgV/hnb]\ c4K撚I3܆Qel $/7tK kB`pAEV=LSub0W)nD_awl:E\m7 mk#QvR_`-\b =Ky1_}@u~|6U` =TZc *FlhJ'8rMQ]va$H- k;61QuE7V9 k?ڤZi^?*ַzY;r endstream endobj 4290 0 obj << /Length1 3032 /Length2 31226 /Length3 0 /Length 32886 /Filter /FlateDecode >> stream xڴeX\5J`Kqhq=x`]C p;{}x5V- SVc1%A`Ff^̠ p5v223#QP9V {qc0(!ff$ 4x`cu / r3;CV@H+ïLEƦ6 7g+@Qr { 2jj)U% e5FHb5kHE%@Mz@{ z:dWp uue _s\NV%75HjK0؁͍r`t3 d|:m bol ;E[흁$AAAAi;2++쌭@{c{S# 0QMsqrUCCN/uQdf^>n^1c{g?i읭g̭l;Z3+l "2j ƳgPAԱgOD\Ҋ\VVV3I%@vvH9y0?}mcrVf濔7sq`ҰrtʈbBm#nj_ 07uX!H^Ʈ@"$.)͂Wv{so3mT.5z̀HL 0!g%bkhl3yhqV9kYhl6Kſ2`cH[!kIn-urX85HS{3! DH-I^SUEKi$MAfVVN3X98^,6(&F{ppANH$70F\&߈$$A\&߈$#6o` \~#E7pQ \A.ʿoAFoAx 6doZYX!1v64;;/3dl[Z-c&$Mm-2S'cSo,ma ES-/oaX![6 f [?93CXL)kw?Hs,s+?Ybdם d:fh` bB[!=b{al!1#R\#.v&c?(@& #2QÐƐ?;AZ {=!":غ1 7XX 4 d2pB@?怸;[ Q_{RwN?:2UH߭ ׍^EsBtccA!U==sd:}_w̿ N "1d1C,;뿿O׈?EEA^  qڌ>jki_N݁HK S 딦p<Ǖ8ڲqKxoB-~ yi^IAm?%VM\WxO&!2ɨW@6'_}:51r(u:qFu5έh}pq;&ҸGdv(?gDޡ ].%_]Wjyl؆.;R&Qpw"tR/ílmR' aI)UUnHt|A4 ![їuYڰOp`Pרv%te[{d{. $ȩ#fdx2W;Bݥ0xW/%RFjL@伛`__hlj@ir؆Afc|s}8K3T.Dt`cu裂/3S%:96΅Ȗߧ5%t̏HPh{Բb27+}@3ow{YmxqxχOo=An[,y}xvUڊOm\x_4L*Eƺk^nݰ`9DŽjfx X䴢1Ta)X6MpCɺ#@8VЬNdKTJU#VFD>M]މrg q2j%-:a2Iy 6~HGY1w= ?,\-}-éhe %rx@P{AZL뮱@Ͽ*eS7VJ88h4joI}n3zÌMzDOc< :g>@s<WvũWM(BbzJky|؊Ȩf"pMǰBOXGNoA[E":ɺ+~bКP^&&><&*YsP]Goz"#Šc:2gqha.-V'3WXxgKXuyH؈zz[XaY i1Yд44[z.&Pꉰ@ Q~5OȟmJbϺQH$K{DLqVN #^!X'ZPtNlIXG?[\dx3Ux>2Ecb *;{ &4DŽING!iىm78Q^ Z'$M%C ӂ}r 1/K8D 7vxu,F#Qpo+^82ILAmo ~!ᳩ`s}j]idGvZގoL H5Yέ2[R-,ors[>O~?QFaR~jBUWg_`e w2@ uQSdN9%糁V[L|/q J|TFN4#V"zee2J|P^7"{A`[a,le燯g"nFʵn&B X~"j]nB7?#5۵QpPEǎ"> ]m-]{$ճnJP_ъcj؁c^ғBx$U5D~{ ¢ * IC0 ޶ׁX~؅)P_>Ec_#a<0`;R[҄|NUu+>T>> f`T""Z e簺#`}2c}Dssܑ3w 5&k12üw4z # ZܟF˓|<}n^f)AjuZU8y_崦%-6dT {ǡ+WBfDrKD(ɖc8&0q]j${k}~Pgg]Peq[1tZ mQ X]դ60t^Q0R(Z츒2vzRI.ޱk imӇE7U~ڳHonje_fpZM!3|sMG#%ÙUǻR)ٔrvj~~kSW27 R&7BO " ]S->94/s>e.Qd&Wީv6ifr}xMi#Iqy)\2g{+GPfL:;on-2 ń/H#P8%j8iR]挈\V `AP3 wy<!{Nᶂ̿A;QYVBY?j_DyO=N^p,hrv7w6 ;bIx'tKM""ؓiK _X9iE~JeoDxx49D g. MnU6Zl(72P=B\P!0R!zȷVyA蚭ha1ȷ6(Wi,OGSJ-ޫe#pUp워>r`@V̴M)cnvm%i{rVmE]U/))#BfE{|NB:a3 <&G^= 3_|֞o¤\ﻸ=|jn=l*$L+GX(v(j $0m OGTڔ)g`a'-$5"S8&i_, bZru&ug`,:x֓EдHK6&my]/QTuXO{DP{ߧ1 )w[g~g]Pѥmz{J#;ѥfvLX'7|NdU_m)Ӧ/yi.a @ 4&UJmo(0)輺aUacJ~1o@$8ЈRac@eE%T,_Ŵ Z{ wB^ n7:ZXd;0|G9MҔʍZz-rјqqsQ>%"xqYN-KS%)ES};^NE~4P.zhfrɒm8LE>kĥ5b:}O^^;3WocfןeS BE˛X݀`Ef2jHσ'"na`GףJEQƿAd[rcԖ1kք5T^G -O-*2yEx>%[@5P}ԧquO_$YEk<aePUU?%/ynXp$X'!3lʜ^7xSZeӽ\Zpº EAȻ-d+E afB2HxD^\Hneu#'i6nxC=%8ڴRQ+<¨~"kihgzꎌ (eqA=iB[tZk'q,:n%Kɴ7=߯ +DY`&bJk0:Hb9m// IrTM[HκWTyV!ԿkxV6ksܱrѱraջKj`|Fh~ QULTϙ•k#ղ79y&♆0'VVQJ&<饓#+` _TPчeo,lau Gn j54&e 9,>@Q=RƩ |@^:irbJ,h]euk1g,}k :1+D4mPvgB-q!s5[bÆhׁ?h>|GP@À`3s1WI`^s?T:P|b17=A{%izGQsC`b.|aHk$WW™&vYӚ u%cƱ!kS\x/Dw@IfDFjYWɛJ6ؑL=LQ=ûI'ƺ߼@'Rg(m@(IW1 n4@k_0Dw- |h0)z[aZ\u3G Tn]0zR>99z6S,cұ:Ss J]Ohht=|^k2\*<oį4P׶`Û W37$kMce6fVoE04*ƾgq7 .,.ί?xGX\PtQ驱󎑅$%f(# uPg4^ױJ{egW\zl$u֔6e`S0NS0Ex=x(v.c1G'&* 䳾:]84UĄEpaE=rokT8f8/a|w>:TGƽ`T@&fggѸ@-c|9h*J,c1 t#d1؏YOak}kOWd,Jt )|0E+%+S b$ &h.q)/MKo47Wtik 'w0~m`SChbjpeԱi6pn翤K/-aZ"Klb(SvUMY`|몘niR2$TnoHݢ# +暑4U3F8Pu9C.SoV~cFoǹ D D3t GlM~hHbmIa|'"+LpcLOOZ S[]R靝8O64t [RȃLir 'O-wyKKyn}<9RKy'p8%sڳVר[.*qYѦzVĄ%7JOXAfltFkw#/T({AܡpT.^mhך%nQwR[#8vj5ĥ!K d쁤ځlE{e+kЙW *p?PbEUlp `N<1Æ"Y[F[vSe&ӄɺή/mB']z*|1T66Y(JLa8YGr mqNX7T9eBɨ*MPY^2 1Bqxà6sVZ\;4^ :*-G7%}p$!.l _6Sefj6"fCBDja/$WwvA[^mu\5#X;m+V"!3{ Ipn Gl0hBϠծ>n)ܽ0n@; (3:[gRrB#ɻgvvpUpF]יяnr--8jKO%6!Zz i3^/ 5KVV2>#N;>aЧE~*2K_ TujͤjAdx-Z5 sMQ[17_͛ [5k^0 k@+o) Csis|~1Z~\X!5{Qx8ݩw\> RwSʜY\yl\a%=FJlR !_%E̡Z_PzѪ5ՕĠs&GF?y\q';pR' taf⌉51F&,X4?ϿqdϸJd- (V-+i&~:]-iI@ a(7[p*ö 588թn2[e\zl_' P1)3AM=>-mQn厞`L f~u%i&6?,HQWy)tǾfwȡpiӿ}95+WM*԰Fo+.BTb)a(O Nۋl7oܜ.q6?z:4JnO\g+P;?;q[ɼ *GC^6k,R/jMj2 k -KQ>:AѬ)!Ϩ+zjcj=\F!٠b3O1ԃ͌tarLhJ'K@}|5+dؼQ[fMJQA5fk|A')>$EQʫ#p!WXlmKwJ& @tD~a|m `||@,{ˡ/ȴ?dHq) _TLZC]̈U n LJ‡P|,RNq饼"C+8Ozv=_$[fbt糹\kuSŰM"f[C "hma+8_ܰE!EZQb%8d~H3R+Y'5%s ]pFp2拶l+.eIR]Cͪr~ IDDZiMNQy u?kh+R3{kj f?(v( J=ϯEvLtB"K5CMm_yW2xt=ڂȿ든FV"/KE7>wl}c|jeKcas~cp6VMV:θUv{%m$xS(԰*2s?\D.?sދpfיp|D,R!&Lƅ18}+3js-ŷ~8EU6~V}`9l:l Τw枙IwN?ҴϕmU7nwޏߝ:A_0T3ivDn@ѸH#s2|2O)%o=~]w|ʷ5$HN*Q#JMb18ټ,ݤE:*DXV!vVq?DQ}& RGbAkd!caL@ɯ<"v;n ˫]0X%h'Ic(TSn |c콅) |J>kW+^ m/bJM#A >^qdՏƺӶ{8wLhyĦ5K9,q |w;r&j|&?y|sH-AF7Rά㥚c%ɏV҉/ȝ+ nV~Ϙ*GLK]9~TU( ,Wg;HO<͡\y^?/4ljXC?R%hO_"6fMn'uj u~ M{N;NR]D2@{\Ǭd\f[&됝.Vۄ75F_xz`Qysֳ`ҴüTdaJY;+Txg-ŸH?nPOkB凜>0:y@v34ծ{w?J'p#T _wy_xkJ Y7#Q(,rnYMWnC_OJG= wG̙t괣u] ~BcXAtz ӷQg"_#S,"ۇݧU I!:}[q)IVʓey /Y?Х]ǝXO}r &n02eɱ|{海#4nǫ[{S<#"ގ4ixi1#?t3s2ưD#JljbʆWʜ~iFjO[l8V 4GXݯP֪LkLxh/\0l+/ N~t NZm2x?;&imOdckd>s '"کg4BLEACae'k^G/l{tJ6*9|%x\W9GYND7ԕί$=k1JX0>κjPɜAoaG|=Ũ^3-mvFpQsdRKdp1UOk$WybX?{c8jzx?)^%:WKjJM(u8PD]8Jƾ!(6_( aӆ\_: Ȗ{2ht`*ьKRb{ _\n.UZ?О6˕;W2C؀c3" $X!΍AN(#4;1|CVLW:tu%W=ta@f>dIVQ䢁ڬwP* [.W3tifϭ;.-Ow<95_KoS{1Nn e>t\% c]&G1rMYymb?~US~bx 50pqpUz菭dǹ;f:ڃy܆񰬃$֊Mޗyj/I;7YvVeN 6K?9Z5-GFT$Z35H$Xl<&,U8tGY s|qZړ9|aYU}I o ctu?{"cC+XU|PO%Mm ʹe7`޾ssXV`c!G`)YA9_.DĄ*f']؅CfUAqrя| ۚOni/:dEhM@~/ȹY/yݮ!cqh wU^ꄠq/?X )-FPm2Dݖx" '!L1 vqA'Շ2h ͢Iv ]hދͼ5gq@7}Vn6v~m] Y( +U!_IYzCi8" w4s`C10 7)ExRm<^l**|=ggZ^J|$ u韉 i@^"$bVn%\PG"BY0UVۂ,s paa -"9TeKBֿ.R t+9TOț \V?F;c]Ӂ)@D/)"I\P 44` 61h[{[TUQQEThE-^fJ>溛{nZhezFfP-kU"K~N%Rk>:aw"R[cFBE\7m:Ե:k. ^ K- x]3A5F n!&ȪPQzhīz!qT%?wE^30nf#*9|f'/nևZ+|E}@¿܍V[nfK21u:;&,ݬcJ%=ht7 {5! yr|8 ĕ%s nwۢd,o1 4QR<z^~=_>_`j ˔ik"? 8Fm 9b*$ H[oQt+F[+!jstI:SXXHHfTD,&f TB4AK8,xaH#cď@o 7IU,)bKK6N-RܒP5#7FH>%Znu{WPxt"l]*oT~ X5йdQA/Ю2zx;KZC'+ U$w'ӟփ+?j3s,佥zcY[m(,8^~k(k߷.].9hIJp=Kb\PR̞Zip._f(L2ONXՓT/YI>})βS.Zz6!mfz_k7?_yK:%WRH`gGp2F4ZX$FzEvWJHПr rX !Qq\SKں-]`򚫬UUh&<UD>oAb}M~Ikk.W3)/fkg)ň--V&p v؍DW2 3Vof Ǵo?8X*$¦P6\XqlrN>d0bGi yzzc܃j82*)38lEsI7J4a= ~wkD(g%: 0 rN'IrټIV_[ iwnK:l3a.AL!d.Y!vG/yɌ\#m˨*Y{EebPAYwK L{)^|Hc8leH$9b7UBzxo *@ ^=zlAs)h/G>AyZ8_m< 5S;pп:fODCO/ӗƘg-i6u{1.Qc[ hazSTJxPBφfV-J ƤtMdž1''72Z(*CSBx2l~e B7P@PdfhvdiA@}QQOnAi#;/9u$_E2i*"ґF=H}f盉5\͓'@ufR? NÇW0E yߑC زٕ^p* ]3ʜĶ "n ߮ĠJgG7ا*4I堆 e&B?oCh> M[1/tV*:x\gfyȠx(ߐ^w96-ټԒuыkΕTL3Z'SuGpRn/_ܘep:LNCL` 靿Ev8D/ A.FѨ;*==ş -Je\QyjGqJ)6; -*s:@Z۩ _ޱgWz!Y$IX{TxÐ,&Z9Tt2,Ӑ57ur#!Αsr $ևN5[B~m0 A},3*$=3ZUQƷvml@8x㮦ng l3KbM<+-̻ vtnWsHUXnޚ2^,,WTAؙȦVPyYnE 7E Xڣ&{zi|8CZvSTov]_6lP68$dJvnB@YY&ܙd~ 1Mܘw0׸dQ#_kn7YU2J [R /9l/ao_B-7 r1ٖt@mrz$b~틪y]CN* a{uC|Sd'}PntnWQ{O=9 _d9aFFY ߖdͻ8:{Db8=PX&%Weu-v'eH Ia qSYM(nM2e bT[wi@Ω]|w@6#sD哦n>ZF~*m/{Mⶲ9K00qR+{TQ.n!0uM*KyLSk1etjE_ cY-s>މd$U5;JU@ n4b=l,uz":EF`Mhi:j4s ,EW"r6v݇6Sb9ͻ!_8f\Q|ҕ_C{q6Xr+Bp U.'zKN^F&duAC )OJ( wAZHak{ >:d!☡=(ryt,nzG^(%wyϜcwJ8gX`Г x՚LqaJ:ԙV9H4) םu^s+?)2(J_-k r$lY]ZWdHcrZ{,0I#ꪍD)omE҅7+e ķ+*.R`*jN𫠁0}{SNI7r0D:-ˬ O_7ù&0֪Z2^%I&Ƌϵ2(o \hRRڣq(pHr9KL]ZN'ol3ZuҏgQuC6hO/Ffy L#i{?c<ڪLm4T mt['S8^4k]=mނ⩏o, hH~~yo4[T\ZXbl9Q<ֻeǩ6{2x)Rh(- u7d 8FAKX|E nIL߁} L# *jʻqEǑ@_lf|:M@-$|ICe1,?_*Dn+ So.PFAl3:}+uiTnͅ(۴D!R@xgJO\W4KlF5|T.Eԉ=ϙOCU#>3PlewOlkYtzud86d˫#sR5E>D}چ5 Ϸu|%z8ĸ[zik%uTifd^G)`UvLa` [3\R6eq$IeE`+{9+^ ^@^A,>H^Ŋב⑧Cږ~-IsrP(8A4'["hl_RY&qL~:~a6 )[m)PXڸ.WRm(Ah./Z\c4+?^A)3lAn q91G]?Jk9UXi?wC)0`ںļ$m XC h99X]@+tIՖj+f%u;SƲE\5d$v̥H.9/B4CZS{ٗ,e\VX+"4'iA15 c&WG=דE:1#w[dbdΡ]U 3[9 ƈkg?m|Ė b!xԈPy˛xq$A|GZ>-*^(cm&0Pγ ] ǯuѵ^J /3HuZqrp׭/Czj*' he]xAD?A=AXK,hsi78NJD} Yy޴QQ߷ճC'5۬ZTxy;Ojc.%9W_<1ձfr {}ϧÿE5Aͱ٩ۤٯ˞L>_`/SbpP`Hni:7kU_UNݽ )*3 l6#4M;n9D̝!EҗZ3l<oF+vlLF󤓮f?L5XJ\H<@1fusX9%Y=h߱;Z?޴6ݭST6bG*ڔuE(#d-]s\}OqńBoSJ?H60)(ZaiO?3ӜxJD&P'dSd)vbUv8ZgrBN$!#av;49>‚q@W`n$EtXvYP>>fH&07LaH z끁Gg(Ndj( qYp|k@H0/N63I-X] riG(IeY`($BNo\cMWCܑtUM`pkw]&WtV(/(4GcfJo˻Yxבi̓P_BEfe1-2xAj鯾_y(yzq$?2IH ƣJtґ>8GS RcmIx~,r >23g ~1mY5t)V% G,C*[Lx8 5 >.Y uaa`Tl!-S'*":(̲W1t(X(,CŧtM&oL@*;b ?SKO~=:zu_u>u]a񀝚=1I]:l-\NEȪZyD|`ҁ)W:I֯8b|7t)N YULZq+KfgnH1ACǛpiM,|׮+9 5)⌅o7`-4q&7rayʇ*?YrZq;35: + J6VtSՋ|M}aDŶw%VY\ mjimD/ZtSZ;1̿ZrO)a +k:ȼmt)1ZNl[N~՝Me51ݶPYM.$]9zxLjᐑ-a/"Kl;Pt{z: 1H*]x"$ B_h}y[mRGTik#KZi`O q`.[~3FnJ\*_DMosHF$_P6 z3-suS`~BSxn f=8m~_:0 9?x5&%_ЁX@wё-fEVQ;hq%Op*.Z?ek5b7o{Se9X9(KhyygXeV3Euf.S4 @T.Gj1Zy&S"J'Lt|C4x-_S@{‘zf"NBEiDCA4M5rw0Wp@綖]]hf: Vb9ZZF}d zF~VNGI **Ƃ1*q^ar J]Sgt/.ǶwS:,0~0*2 p?Ad` 3HC k u# :5Z Ȭ,ݓG iIE@.4 Á!aQX?8z5i+>yf@elk +^dz@y m_dȱXfs%F" ڔr"ɸ7Z|‰rrUg. e b K>.ob+t0j-hhJݲPD=%B·LJAv(;.ӼgGO{hL[F #Və4׵d (r4n4HcAˋ amiUyzzC+\n$%ul;T ͉p@E:̌b2qb5&e6la[nIږ!ʗ1(G_Q[ IK;S6Rҹ :C^1*VogC'lN/81 q=DI:S\Fw^\˕pv8=^d7DL \ON @T'ڹ. :Bur5D7 \GH1+^cz$6;wpn|C<llDzOˢ[x$ ??paTiݭnmڨ~b1,ཞ9a~ө e{5:1\9VR-)1 F{sH!)Bq6KUQhRq >ïӫNH}Yr9קspWoEzf.ةlu32TV+ wޫ7n ϋpaaD'Ͷd})(#ncuoTܓWi/@]֌O |)Yw8>SRJδ}Zp|*~<>c&g~Іa6 u1̐GC!,} "/T?5dY%?$$S$pqב&Dm ]*olwm]M?}ߤQ,hSuE޻v:[ȹ0D\ u_8I<yD 7#KZsKވ^C}uƘcK5JjJtH`kjʽDH>M[ƍ:I~,C!G Ftac gxXV+[jF1g9=5\n(IQ Z1! ~A]Y(" z W:RA䞈pz۵#b@HL[QKTHĵMEv-%17E\UQ#XMZ5o١jFKNW Ic(in$ B%-5Vn毵\`fįnZwnR@58rj :ϖ&^3RMgw4b?8Պ|RL=&vH:4Y^OlG\s^$aUiw-(8xaCL}AJe,JMΧx&$m6obs;VPrb=āC}a W[Oͻ(@"!s?5zùPz^Cԋˇ c i΃8QKW8ŦJiL%3hӁ8"9NDL j`jb,/%)S0D_fpC+֩q3 Yd:xw}HLt G2 HU ]O$yzD%ڧWRbw,5o1Tuz!uVA)ȅk00SkktM;YXJWY zaFA +o%>wP>i ~.x-j%AhX4b4X 1\/W=QR=`QU,M?amfpEz:+#i/vNVzmtR׌d:k oהeq C1]d(rAm}MlИlv3]>b'Z zdt5 @D؊fִk`G)$&v2pK<^|_Hv}=Pe^;%jsa}zhȴ1j)rG9̈r?|;}kJ֓;o|g*e]LLF r?/i&и Q֧ #\D4QnXjӵתxCG` K{W)U?B򌑆fJ1TTj/9uwwY%Ƚrp?~3\&9k+>'A#4o1ݰbxJՔ)${Đ%XP 0]Ѩ_$@r/F8_d d>BEwjU%(z^ʗF@G|[CJ"id ɼγ%]n*e7P \)qulfH`[ִhZ_)S\fjmV!Af<*["Fub2`̓V||]mӹ 3mL\ώN2p=Fe1{T%6`ET m*ne>[w (hFE?}N1'4IFWK7&k~Jex:΢;_M=HIuDl|οL adEu}'{Q <Zg*^lC.qA RDoLOCеqE:(=7 V\^~B+ e~x"Jq1 E[]X҂F:H/I_-+{:AxNrNaP5 6s+#;g ܹ>4Y1SΑ` 4:BRy.Dg#HkdbP%R{Gqq h"g8Bmhd5۴(uÌdlsM|P]lH\FןK>45&~=v"HϺnk!PJ ^Q?(Zݪ*d &8i/(Dԕ(RlHMsn|8\3Man9ךQa] |\)U1wu.e _{OAsD+>@ ѐ2յ$cMD9X[F %Aej|V,(ʟ1:!aEl]Zׁ7~vS\l\M\UyM{̟%{ޖ(&0]T~{to3dO.t12yEXfW";96((`z`Xb(TV#Z#lkb+qL=VMvf4Vdc #:1&btr110!t {zp=Wͱ֟M) [^.4&9s(.tz 0{j%vo GLVs2!Z]]Cj.D!;cdžk8mOP$  89%BW[c56%h5me˄}jҎФSӫzSt?Ek9Y Ns.44*_a$kL=new}Z|]peJyh}G' $r@T?*r*-ӌQ ֧GDG)SFճֺ+ִA )WX(_W.S0$-͍{߹#D>i k>JTiP ;uqdFqԿЋԭn=ZY24}x& UHO-^N^6)A|5!Z#Fڐ>z.EkyξW^T1DlV4g1T63V^kV/;JJIuqO]7?:ߌJq1AJnFX @^&ℏYoE' WaRyw$]NdBoG8>$~̒ j{/%tY'r4 쓤bڴgt"u]V$98'&>ґHB٭7?eOSIUht6V:8ll$,Po=bX*R#*/PXO>^9 z{ñSQS|dc[(%#G07ṉpswc\z[D\b'!b=+dn6cV,"^ݼtk$̠Tvr! &O0"s3pޞ XIRBgL198; уȄ^\t DSGr`X{6jAw(JȑїSDcH󖲢l \=ـS+Oo'ӭxQ33Ym r<)=)X1ˉZDAk3O/,!sgI5a9Ń._}f_/bR~XZw{\z !c3=.x]:>+ L3]%E)+eFWVU`SY): QPb+2f0CO!HtT~WSu8~s(m/|Xo@XG|,sa/k^䟋@-pE 2ѵ=(JbGU+錷.n]dXأ<.C>n*Lo 6A hEfAܗ{"X+-WU1fqlx[&iA#d*^7<\[?ycدf `ƒan=N'Έ[BsRv9{@&'#;}oT:zU6 ҩ> 2+I#'66H]X( $zڐ]*^թ~؃1"ڳ͗ລY}I Z.ܗVk9@⨪w'tȔMX K%dLyFyˉ-#g!&֑fJ%?A :8Zd$w9&6B^jM,JGR!e[ZN(aUڟ:iU"&"#+u{B^*rlg!1ʥ܁{$y)flE~x}^@;t3:-YI\EE±nY ;ڸx_9dUET{oF@,sY(x*:Υ|: Bl Zfj?*Rbi"SڼopGڿhZxo>v` _zGyѶZ/ ۢ k +L]MZiLdq=(,h i$=#_ wGC2 ɺd%Fz}UDL3~RoA< _,5c TKC- h#a=ЉH9:U4jx(;R!C}%L ;J]XϔZm['WA%U%ݔޭi%,"U` Y9BPE>P/%~%, ;b[~gT44r0"m׏RjnLz 9'V(¸MJV9:#,+R$CQ5$i nq) t+BJ;Ł9c(MpQA5gis*KeM[=Y[U(b)@E\#Ѱ ͖Pk4LkT6mO? 2?c'&pQN6eUAcfkg~CQ)ݘ؟?Po&<]7APgq)uLhK -ʾSŃ[jV8ei+bvɀF3Ҷ|_ԶX( ~k^gI[ߓ1+7]-Y;p endstream endobj 4292 0 obj << /Length1 1926 /Length2 19180 /Length3 0 /Length 20409 /Filter /FlateDecode >> stream xڴeT\۶5\ݝ.;C;wwwG}}_1Z+ EzaS{c +'gogB 4w1r001SP:@vbF dP0G01qS$v@w) z8TFE{ghgni~Owp4YJEF&n֖#;S4@h -lfU&@ME\Y B𾰊pUQU ˫tI5?Uv?uˉ j)33 trSQ3{_T #3ɜ/~7{'k h1.vY^ϡd-Mv?I;m[n/Fiw82F**l,@@;#;@`ho@ӟrr9oQߙ?z6st9"`fiϙYeWQ}{w@',&.EN. ]vיִOO {'kk;{7;k735ySF5;KGDm3L#nb_jcfc~oci|{9 '?9&w _Kٙ63$@נROh(oz?s_$\lllT3J%odkd_>Kg Kw%.mK_~&Lͻl߯?7ϾHk;3]E\.a `Ѧ?+L0rr2gz ;;]Ҧ@`d\@>3{'? `4cq&}&6d0-k23Q? !;:Yڛ#⽶ӿ#k99 {=},lyDng?W_Xdo ԰4}m#Dd>9(=wgccг7IpGߗ_C?7t/7 Jk/f8ДN\ΜE ,hϢ,̣`WIiі\3}c$m+狏$.<Π%_MJ}(WU6՞NP?2*T}ʭd}  i #.ڨOxfް0k\ڡ5YcٓI{寱u%۞(?t$L:ݕq8]=AqBl#O$) &"JK̤T5/2ܰ^C$Щ*B$\\{ԟj,l.`g5L?I޽ MM^ 'Hķ^-QZ1Kk}j֭ &8V'!&;Im-)MW(v42h{P*>>EupG-Ȳ+* ɺѽb&Sc+Ԅ}y(bӐRȁŧ/ s9֒ M7 9]@ rΆs Gnc&9ueֺco+dչu|+捝< ҮoMTPxmfɉgNLDU-s{Z\|u\`GIߢl3Q69 },5Mpx{+&zkB>?s!al$t 8jevO9$z`?â:+U*ak/ɼ._kJ.|n( L~ MPdoj/*jP~k)F(17eWCi/ni (_DGun~엞Wx`~YJ݌ <ԤȾv$ Jm=JY8bՑZ:jgW$M]_Q@&1 婙mRc z#@JfD"#Bږ3ySnen<Qg˙h2%V^b G>cfJ;! 0+e rREun|D-e:2c[Weo WNF"ܭ4Lt>WjX71} 团VԨucZ u Mm8YU{gq!6TT*Li2A`R-߰‹~!CBߵ#PmЧc/QUڰ|xZw %T TȨX:[a2ul "Ɋ<9B?} [Q*20oL;?fI2gߴds(x3 0@b7o@r1Y?Rc>tD'#0گSl]&i wYKրoՌ~ 6&a/oWN4t{4f: *KxT[^/]͢d | zl#sO ֩gV1/?xE.X2R`‚sQh~ NJX!:N@Ix8}В"b_fv"%D3/>UFҔPf$\6eUa ] B }jHr!~7_sHQGAQIpϑÜuߋeV@Tt/wHf.P.*(aJDb$-XblaM>ZIM~BEHˁ VDBxx;ZmO*`SpD"L݅ڹ;"?Ïq #Aj%'Lv v C?#eNV%9 4zCcqN`.|Xbf;%x3ysQJIXd>'8#$> t6?tW @M#y+{&-`Bt&yXG$ɏX}J 'Ș }(K#%HHq6CŬ]HEO>6bu,AFf54xX:x).TEt;=@\lY+nBY6;G0ard#ҏ|)$*nmܯz*6Cq]spiH?6߯1ԉhW͗je篘oX&+P0+cv-rh<!jEvɑEUD&~A⹿H( ?ͽ[~q?jaF4֥"N1,q` <1g?ۑ>C/mgc\ vO ˷f^ZKֵlIߘ|prk.f}9^U Ӎw,PHcv2~B:3԰n>Za5+3weN==QBZ:M6JvV^Ɩ9#"Pd<8Al=%_}F84.v 85SOD/1cZEa|' z;BK$' EJ`E +uٺRT*$"C`5M.pyYVNjc咗K7ݎ/I$ERbsan'M|Bէz ,dvs8-C. $gk]5rbjy̽CwY{S`bXtJP1-Lp}yc: J6eX":Ld+:&ticC$ U"XFq^Ġk CZ9b=r%LPK=YuS⢋GKsGfłlUnu gg:6%%6vN7`&l8fO5$‡ [)̅*N_@c?><}KP`TCP:$$P# S_E:*VrIiYۋH6{)j&0(pJSX ow:+N^Cl%S `Q+슁LZzH~'6"{ݖͻ7i~ӧӈlPa +=HZ{ԣS2=s/'qG/ϛʼn{Aؙtlddjy+tf]ڹak:^!@Ihח+JgY~R@xVJ'bUdҥB}( rpE!6E8k, m,кrӭ^;$ %'+ai6IA` sDY.? ,xEϝT#_>֗xYєo$f/cdʗz5.C A\tpg:r?]bTN>EO\]b~<{2{|[C̯:n`H%"N[͠c5D]PlX!OF<˗w[ٓx7aj"ٿ( Hc^D26n+h_ ՇL>J~P\'t@&њ8L>̵aK'C-ֻ@JI\k,ҷ:mM!J~X۶ۇ/@BtS$n(t} F,Ax:^L ounkV6AIqpuV0e?U4P)NMad =]&aFRT5~.lur)AMƧ" 'wLs'VU[>_JXBNΎ Z3ҸcJj@Np2p0Wr78 l ueFz>NT`7Wq;~Y=(*UCa dN F&㲮RRθCSz)Jխ^w&>~Eܑ(jK=.>Vz*:S ƞ}',(LռƧ]!թ#DdtÇncyLOZ A^0 ^dwGr AE.O؂Dc&;x_&_h=^"ly테Pζ4/wR?1 }yv cTk!/Y C>Փi4U= ׾]|'b!yBEV{όJ4 tV ށ"eo,EB~ oKrg,Au &/Z+s9G'ć**gd䴲J=h[̘A b #`WU{ļ2 ]?q]ю!΃2Zvky#{~>Ju0o}?.p~pu˳,U ) 5'#iNIE(~71Zwfg ޹RFԸ#4 /Wh5:MQ|Dv7Evf A9j`{$.?C> xߓ ( go)h% w^Ůj*aGҔ+:%n;/_⍼Ѝ8|'QL B'NP!1NmeF>!@gB yu- 7ş 8C7erXۃ] ؏ASoe;;(!ϣ;boq9LiFvrŘFzO:ԯC@Fa|Fn0,rweeQ[: )?K H롓.}:)c066/b5W[٤icW*)U]Q ^(qEuak"٨&@fA<cM[qh$=ॠܤADT39(KT㐀W4Dm#[]enr܍Έ<"߭zD+?}h::{+5|yn7HvW( 5pyc>a1֡I95jT0xhe^VH1 ;mRJ |XV9LZ[M[ z ?J DLɚKsn 6KU9~Q1?3X=10 u)Nxކ>cf.*yKGh$ҏK& a9Bfʧ zK ,mT酖KJD [t/tٱ3;Am38x\USP-ΪB/gl:se<:*U8crF W  2*?ge̷cH@>kjoi&_m_fDNMJ1+]}B!eTYI#¼If&&(!2ln% WF@QU%Ir!aSiL40HЧ,oZFFw$3jÐ~7Nq|1z # h}*]ו[h7 Ϲ7X0l<6M/BWx6U͏M2U Ot}dM?vI FH$Lw| Hay„ppg]y%^n^_S<ρ̭'#J5:pk'@1 '٧` &O6Yv!tQRPIf?Z'6}iiu؝o & k[$ ފ;Nz`d}z>c[#+Fh/62Sy#v4͵\`P&+k hlZT "zrQJ+Θ3/.ĖaF&iף؁{ -3MH;4|C;3`14\LJ1OCWH (}Zan|̝to\ߺp^q z)à&"t3T6sPtJ :oW^dJ G|dUfkop1jeU% N?l :JVynkZ*eeS4ϜoXo\k )[])47~ӚꘅUJzx#5/JoaE,ެID! /DTpF?^/G|xVbeFlʷ{3t?\IdVwn a3YLq(zM Dd\O=5:SsIh)D m5ljx͔Ao?.GPrW3񴬂'd)*1,9hO&̜buMϚ%|V;l.f~oQi<@oYCGuDW[S }3`0۰L\8V|2;,bbˢq^:$`Y,f`7U%E0>J%ߴP_ZG0T+OKwfqѦBXڦKwĤk*=+b) 5`,<%-&m#:ot8h ~ Dak_&#o BV=froBv3ÈDVQ67d[Qf^]?h}hղ 6/#}8VxXդDt&--g1шnʵޠ. -]4ԍW({rA~BG+_ a:ά {2rΰ yc؉ya^/*a~{/(۟LxI=iwI8ȦwpPw=8#@ qmr-܊q"빑Bu!|0M z y)M֟c>ON沧}oՔќ. xիzm.1xGgt^v<(3Dɯَ/zѣ B ŧ9lH[x%-$]"ez>,)op|S'/u_M"lZQOZQ_J`\gM`a&g:)3Yxrt\Q[6=ڽܟrˠhWȞFxvRt׃P3IEZؚMEQ$qmF}'j@A/̀q>>g8߼Ps.vʀY8IX@ fmSb91 vLMkR׸$r89|epu@ цVJJ )^-FgP AqT!VaN﹣I$d򄝀zxVj'_pDt)PUF5B|Mz0Xʞ*u4#s\ >mܜʵ^ *$Y.bdNWegÍ)8U1JL`uIDV#^%mMx-^S ^W:;^vDn%$UV%ul儰)N N6kQp:~w]S1>+dOvoZC]y#orCdl1bn[O<2GϦig0"kqmgf` H?NM%lZBmׯ蘥#w铧8Nw:*bU5tZ?R/c:bҍ="Im$X PVٳXON7UMQƛfRT.b-o^ql?錚D: hAҋs\{/u", RZOy8f :@&p5~?Oo;¨}9>p]-^K۝J"f/g+F=#c&ר2Hq<7E:!ށ,JY\A&vߨ5Feغ$qڋ8yE]-\{G^)h24ަ:P'\<2PfIhIoZΣOpD,pY謊8N׌';?tTI kAZ3?C)tWӄ{Vvߏ-}TC[Åi.UއLIN欴Wa*R Kpj (Lo[y&wt&W$IhrPy@rp57{e" Oc$"FACC0ia-[07q|}@vњ,!gQxOYPJibH ȶA[ɩ-י$A2$yz'9Ӷمd|l yl(t\J}Ѵ7P7z.%CӮi++[;&NUvH?HADE(m-ڸ_JLEXBx {K\ÚΠ1OVY̹秀T H<1w&f0)iYр&` b\*v=7} ic@ ؗXHR"FbFJJTڠ>BBr39T\݇EyBO1: <^oY$훊_Yog_*LaPջ~6L0xh<(IװXіu03koE!YQkx7$lOXLnIx2s2.G0cy:U #C zy X3]kU;I_%,A5#m}d Za]Sen@݊<ՔƹϋO[?g G$rP43?}9|k '?h|:?^UCy^* 0=OHr>;Ԩb+z_AX- t`D G%F]D`K6˄O\ j^쎚<[*R$šg!vҘL" p#ꨄv| I tSv5("!59#@@'%!qlhUEp"3H SN QQu̖Za2 \lIR"zN\!H~%5~_QUh#uQBsD`u%g6wSce2 %h Pu۳dJ7bss]q W]$Vj|͚%9>ºXI tG^[xN~t T}Ȣ'%tLi;˦E~جYUJIC9b8ĘL 6'+3Z@KۡW TQVO- 'N:_p mU.)^[a5zhTh`;+LU2٩a r ;P*d/s5GtTpJ@5*fٞ TEx\c?"YM&b;0vԆVh`mjR&2rdb۸XdV/üD84"p }@ qFbd=jԡ[`0`Э*hnU؎G%|W:eߩ|ѰKU=V aז2=!L6 as>!<͖<j]샣_|ۛ']5TA͊R%/UT4]Ds3+^jwU+wb^ݖr*/doh1ԓQQߕ*p>]$YPW!c&tDu?!uP!B:;8fJSWnVNաB_v"n>$(iB5SE4 f>["XƅkWlt-¡ (l$of.F+F]e#Ou8vm'Sŝ$>;ozAt=xzKvǥrqV-6شdjVU7SqB_ffl5N'R9Y R>n դ`7zLopmC64.Ѿt'开rWkyR0Ǽ4u > ٛJ?Bᚕٷ}ct  p?qh5|[bh §`{ݹZ1R ^Shv Xc!N9U-NkfΤ!nM 6Fn`E]ꉒ M_|X 3!VC`\-4Ƒhj_PcCh@ۤ7XjGNjsƢ = ZY_ JVG-7;-cMIv~r5 s3`}YQcc~K߃\w> =0,?"-uk;Pv%(C?7<\IvӅ2$AY/DE? LH`4' UlSG1FNa+ᜄ!>(+*,5'UuR_]c(*n^KU;W2#˹7B5}Fו|AcuS>Y5-KL _bFVG8A#>oZ,ʓQLItuMVd*zpXn})N1gu~D/<2z$ ou]DPjBQ=< -ohYҌg%~Q Д-y0eTmz\,`&m}$̉`p0\,ddՖ=Q/Y$u`}C<'^07=~/ʯw6|i5 21SW<5lݗ4٬x]]ԑ0o@2]LY5Pv@is-+e'?>ز=jgB%WO r]5d3X#AS]!R}O̩Nin k3m,JRۡPr9f=p3mmmD"-Rϕ9ŌԘQ(zXR, GEU!W̔N!K?`vubk ):pC\ DxvFJ섬"x0$׼gVS{v &1[$, 0s,)x&rͭTlr tjzugaɜ+1,Y]ħNȭYcJ#ccn Cʧ d#g#6s,:˟kOMfsHNU'P4$<7Aǩ~`J-OMWQLkLXNp`e1MJ$h]);h6κC(p]PF?̤HaWyTJK6h[f$V ιW3ĭrtFU.v疯 ٞ(1ӭu&.a&:Bvjh,z倓wdRǖ[>[Ellrg8gy-SrHaFRMLc5l$ KS%"zDUӽO/ZjW".Apk(@4䩏S%9\ژ2j;9GuX@!|~*h%,/3_7/-b[-|[E.PG+_HΣF8߳V8eR)YZ5GtPB*lzSa7i¨%{qn @ߙ~ endstream endobj 4294 0 obj << /Length1 3199 /Length2 30763 /Length3 0 /Length 32524 /Filter /FlateDecode >> stream xڴuT[Jw#]NބĦ[Cssls] U5,@f@i+3; @QI gVZٙ:8Xظ%6 ISWb G#Qd@g`Pjz9tU+ tq҃S$@^6V֮kp23;[ ojn p:XYX @rM, K&P!QWRՠgpst9 @RLYS fhih tb(k+IiiJ^tv?h/ ]]XY=<IN g/eq#PN`ҋ `@Oskff~> G @q1u\݀~>:y619XL҃Ϩ `DbUǁS^nvvʦ@(0S{;?)2?>iO_ms5#~$;Ȃ;6Zfvhntq5]Xt%;/EI9,l<SggS/$6pps|lkJ, Wp ` rF<VߦUX%^UXAlV`yAV `{A\V\_ sQ~A`.* >0\_ s|A`.Z/EyA`.:/Ey Np#b,L]mlmsjcg tq}ٜE\_j; pؙXQX3gSs 3m+BAv¸~[_cg'X ݟ,^V࿚;ڽT;?f+dRaiGn۟m!V/M~!弨Gfώ"x~"vpK+np-3Epk7{ߏs?(^sS_׈Byـ^ , c[^]zS~H[M2;;~a VhotcOE\l<_^;K[nZ? p Sր&z\7Txwi k:lol,?BLO}6loj@r#[\L^v=߿R>uaY@O97`۴RS,Ǖua3:%6)"EAh@)A%:ԡ8vOkmU_~Zn+I}f X@>@vRC _qϘ+ų-<0 ]zk'0cRYαC1@S'bt6j8z/:gwYd[JwAw*ZG8#5v~Rߍ6ۋ +v ly9I% NH~1k4$ ^{.Y!0Fȉ0ܝ7kGUvQcVYMVYqGEe>C%mIOc܍KlCGϤz*.lgӠ}n] .wMDK) SlDfRq}Mug7RC! j_ܧo2jݬk!O;wJcm c׿[ &L嗕(dXM2Q]%ui&ᕕ4gփʑ+|zZƷo#yP rϰYZ^doN+nmf|ܪgȡ+ӼJ&/)}u>zev!`|.64nHˑpg6y_q4e~6q&SK@BR {&hS7iI"AlRB)Éӝ),^_ċdn};;7H *&$f}Ra Kۃ^-!M\[3ćmS vT7L[zKwt($eie\!:%%&!xKO#?J1HQzYxW14Żx cy>(a++љAt5[g*Z JGtP, a?}j̳5$~Xĺ>8eƉG A{"u/gM@|.h&wry^wMJw]J7sKáNh.{MX+L!/6de>AT']ɩY9e2)^ c038WF@hKt4ͭ4 ZoB.P{Q}?_}MH 譛QnHb;V։7D/s$_:ߋ'00P㊬S(5zؘ ?^':x1L*G!&e(סQ=A]d"4NhԪ1"=M XwLϷ?%qSVjr?Lxcf`Y/}HOÎ FmkZX3B&b/ex% [(g.]L)$d\Qi~1Pp@iز&Ǜs:?onv3jeQwEncw3Q7Mr,]o5bM(~t#jQeq:(1y+Qb`}hVx'ոC+)1b_m q7rI/$p>Cֆ!ԠNsh+-蔫O#Y>SH Z+2E "]ps@zQ'O"o+YZqO=}{B*q,'zć~YFѴéU񙞲m<*ۇ"Ho]Q>Eiܚ-6l%fhVAcHSLsbFl֗rB Zyxq{'xj~GzyY'Mh;g)Sbw ,D DS%$8U3{ngyi6aI י IJ_9rNf "xĸIu4,>T-Y1dƲ?~u2Ih(($pl[K)+Q3Y"mXy(®-?Y]|䢇^o˨5'ltu<"pe.PM|?=afV?:}08+|=U-1k*- _Qd}o`t:KbXC7 ^R$ 5=Кֱ>rH}CEy"ˊh;єV̒R^q Tl ;~X8PAHo|' h↞E gw@*ʤ䣒4whhvm{K>ɉ/l.2H_ vFy'p?@732h(MH\^N3 Ro[wU0ow4NƗ*zn+Z'["8障]!E FQ@p jjX,X!ʎuEʔcIV~պڒlR} EN,9w:4L_}2Cg#}#lRz>|[& \Ml^D/n؉YrK+F?ԪgQ"ƩH 6~ 8:QspAׁ!šƿCpihi5>/L̘[0n%~E 6UY{´Q8KwM  !p9<~F]8纻ZhKʲ=n|BZ+ Sr,!Tza*$7PY2(  {UP(<+MY_ 4t 0u[l$yynnܳgr3#k'|A6+m+~W㏵-[DT""^7V|.P_ m6mh ,FO+*`p;P? ~F)t.gQӘa4%@5镸 aRQUt/vAGLNʆioN&?kdp!8_-_rh^jv4"zE(Cyw6zz)Ӧ:[\a3A_02W&&]ggw_Ά*Bc"d}"+41xU"8}bK, l5ָəN+2hr͛R+U{)$=)*pK.B#V9P%U{<1l3*i[EnܪyDX9w/k\oĠ599UE&WN, ׼M s:?~,-0[lsQ٘f3<_SKxft*l>4*."GA? k ; |b,گ[ubz,j.e?jӭ/a^kH|0<3.!Z#{R ~T0 . I{wUD:LPq5bmseLmzaJ7H޸adьk1ׅŹ?66n0В {KLC"^-襏1[=u$1V A$|'+6%o,(Vkm(ĘOUx " YF%B(Be_q.uq,flB1LGnU8-ʮ飾*  yM\onؚӐ\Z$^^U?GGj|nFk zލm:X(J)}$$zίlI8Kt%[\B; Rnҁw ,E|hM;8w-pyT?uQ)k\? 0$EEB.jĆ",d4~fwu^(#2jاNZܝ`iUO= y'nxbap뇪'~LJW#i0E?i\}9G55ʚ o#ާ֐WjNkw oRc[Ӵwi=f5t˲|3ɦe{K˥v W`U>z/˽ʹjU\' ʐ ]Ό[3EmٱPn0רƚ̔TTI[G2.|8%뿆^A" ;ɀR**SH>ř&U_{ vfgѸѥaObORЂ2|0 h1iZ[_޽Bz(N2^,3dCG\zr{6,_.9m9,C r9m.lw}ƝNPͨ:>if8ꁠ7քfe r%>i`*`󺞺qO8%s]{E7+}B`"M=_/z*Ë )mrl}dӻ> h mk½7syZpD1\0Huc!*/QSǰOטEg_;j/"Lci-K ֍n«]6ڹ!jkòx-^PF;^Q8\:|Ԁd;+ow>\m-+$L+>Rv:WAٺy1`@.m 8t^7jh=g]rH) L?j@Kt|"FA؝.c!] ,]kc&?`lLQvHITgDɤdaJPP #DإPiq]\b(^X^HO7&c5/`f٘ꅁƋI ^ r{3T7(s"%oV[9ezy&[QPjċ(vJ,;>nGeT6r,7rNVUh`k~wØäxS+ ѹF&&ӣ#! Uy*m6D_F6cc" cmٌE4+}HuB6terԂTf]~%q?DԖ>˧q?6ZW f|ėV^H2=}} t$H0.a(ohr-8(Idsr/X<r;g@ Q6R0Lwt%g =[¤>fN:;+m?} ](SfGyMC9Bl&d(S?~.r[YNakTNض fvD,l(3`&II#egƌg`V'S\7c;R`g^ ː΢= ۋ8SŸЫ`>k-vyw8U qY;,[+mo)aw#򦝫pIݡz51d7S9FP23J&佢J hyN炅bp5iH<)#lw|M3nTYp)4>T1+,R\O&~ t|k ᝗>8My8 z@= p}(P>Iue'y:dDT{Bb}rv5s"cMQ 9cѶ*zM.퉍@-KL"E,/dv[yf/WFE'J-FЍwnw au \xOV#f>viW< }uWi X)H Y`&n~}\ ҬGnݫAs tm$ g+$%xX%Z.!5" F+l ~6ȷw, e `QVwGltzխ[hKp#8pamaΛw\y{icQbtY n9W[v/$HRۡQ2|t; vUgWʊ1fC-FnA}V[=!t: <1@pK5?|Nh؃4ç P--aҎr#[1B/\H~0͝p`f*ݚ'*"{{5j55enS*2\C3\$վd Dm_la:Z*-fH8_t׌3M]P T 1l򡎲+fA)ID'£F0,ͮ;S-zUNoC5݅*Ha%{ >HO ]ܯpD. 4b5Ƚaz./'9C-/$˃Nf0Ndޏu ae(}%c, m^?esM!Q%i yoZZcP1ah?s!d@nH:8}{g覻j*6O}J8 1_MF3 ^S"u!)o->턮`%6[$WQځGL _ðvr*?BZ[.sc:Y(,e:.6trvHu\n5SX%n4ffh@"\'մA"6Eޭ\2O,zP}fG9 ^)vMm)@ھc:Bj#+5wA=ˆQUNt\Brc>h #z8d; t,Ea,$$NJ\uwGgY8UIOx0>9a&p Jw:-}{镫pViT@]r nމnAF&$SwM?ae})~0tf 렀٤®JZ:7bMM?C5~Ȅ!!<5FJqu S)"d bǪHٲV >JGy֏am^ņ?klLMf |pߡJ9Xal$5]$0'pEXT8o&E\NS֪zlI(GO^U9 ƚhz {ȂV|bdC? O_gDHh|H1{C4v/B, _^ݹfmbAoh3Y#R=rS/Fw]]k S'niqی?ڈ&$T;bt K\3S()uX\x uAAaw`]kȒ=^s%+ך"K vzr'aY@`JN~>\U߭k@l_2u aJGzD_SV|]G/\ b@Q>ܴi(dW_/10 @> 8%}DTC1 gNiݙ^3u4d2t >eG6\ ,̲f0н# !}kYhcិFX0ݧT]wQ]r RO5|˫^g鐧@}ζw5ֻ9|2v }جa-F7rG m%37o5>}0i)y H˻MM:k@O_Z[  vH O$' "46c.l L@!!r}3-qO*"\S q)ΣuY'Z vc9cۏj[nCG;"Ǣ`\6{DjB'ajuL Hs|F.& eO"gus)~glޓlg}([p(Hv C%-aJ'ljӎ=swppOpðEd |G|pDͩ\Κj4p \m:8r5u%Yj#5FwP5)n8Zsf 2̫>3s$|ț \>?NCQ#J -Z'T-HeT}%u2G*tnCi~"+ԄI;. okM$' Nx;3ȫ2F$MU=D :a # Eu*hJܤԊ~<xߑ&gsܑqԊ=n- u9o۾sMY&2*ɸ[j2!yX?[q >FfN#j ɬ=ZY`]t 㧜[D_$ w %yJY_o|!aa\n+i|J5Fq nvt`:.bP^;rwaDg竎6S}5(nof_UV<~v'QT.K#]%/?F\ֹ#㠞>')zZ,xGQEv N[gSΚU$Qws'e+Nmrj`aEO #>D NRyTJt!*8֋@!c+W0R{SaBeKTsgUdh!JRKkM~(FHJ< *h /eqQE!AZb}1$GXF;Lҕ/`Z3Y ,n>X~*ćY1A|ӆ!^ % \&?ހ9UZW vit GeVgtg*̉9ty\?L Ц]eq+~hdxa/e_<fˉ&PmJ=2׿7uT 7αYCM1+~ Llº&\z!jF|!Χ{)ޠ{D+~eOmN;+GrMƊ\fwf*ńmyrß}g>g,F(% <Nyҧ|I.#Cu9eUm]s%ZH©q\$ 9!=mjl6'ǻE65NGOFkzPSSp夿R2BWq;$+gUFHut ArV+qB@|BV́ >7*XxۚE{!;姯n{'amRCr?Cd'T{KM*5rv4~e2:т֡sf$7ܭ+XXB8wQpអMsMed&ʋ%'q[cwYHϿ"Nyd|{m9h(:rY]36L#PX{>H(D3ldגխc]N9Mip4ND0V#3w<:#USpOkoRUqms :6=|AJ`K z7y\GJҟfؾȯ?&0JAQ29o}cˡEy9lGkZHԞ# 9Xtvϗ.ic"qI-Zԉuqiκ I YDH;3E~7' /6Iw2A·G݉hxlVr=T2~?MŎÏgzQX2P}p$Ul7hN:_6{:)O]`ضѱm۶m;'tl۶m6;;2W*LT?cg q43,/k %rjoMڮd0_tȕX^~ r sNX>?gŸQxoX]O:Q;A) ^<9}BFU xKL]\wuj|fF < yA/F{._qO՛]LUCl$HDfV=#r(u[zT^So֭ͺ# 'Itz&{a;QbS >1-;u܆&#\!֣']:63P<_`!~SUl],*x( ik}axs #T q%grg0n=8OF:h<,!s29h%>]Uq-$]K q$ xebSՁ9+V]=|tۛs@I4~b{f7)X&[JtD[5$aL|Xy۱ܜVw$TiT{EKȁ"qpp-13Ir bY\TBTH&yd-6>)_$t,す\.?3㼚91brz f(tGHJ/ O@M<Ǯ^|_+ʆ 奦ɀW6R 1KfuJ?g[ U(*d mQ‚:{X`=c !|2ml? >h}v 0ddܯsynߣloR3Mo.rz5J-WœKISB7$3Zf| UH%KUPPN\J?Y[Hn #cNI# #_viMA(F`K7_B]i6~{8ap'N L#1l1:ac/k6 ͤ㳓G'QI 1Ʀc*v]~ #L}qf)٦81P&|pjk8#,SJH[WkB!I)jkHT"OA|M\xk&A_avcQY$xpɐFz# چ=P?"Dm$\9[EOWlP:}\Z_D\9wa8DۻܼSs/)՜=55U;B;bLs cRno\RH= 2>҉5g-7Dē1YO 9d%1dlNU:u%Pf^CE'͝9@.Rf!kq`GG7'ڑ2E"-3ݛòz|J j&K!ip! @H,{b493`lӝ`+-v #bNC|jv(no2X7OSg!9exEYu#6琾 C‘XW/jj$G<-× xtTVOkn`Ͻ0W^寒Vp"R 'J0J}2}/^7OvE`]lߴzT+&2//L ï0VGÇ|_ ϰdߴ(MfD&,1T=;^~}}e1a 1):(|@j'>z[~e m ~>|T"8̷dϠ4o`>Dn LE&8%qn/wy]8|6ey|$ s)遁%ψR8)]F[HcNm?6cG=PI4ǵ$[VğtP;e>RybtaU~-;`2C-_ΙsVp桮h.-z@^ A竔cݭ%'2v:({*UNu|J72mdt;o(\:Z˥iVK }>̯'=KuS t-oA pfTSP6ΌUnp-@3Koqkc]D+a#)`/0V;VܪS s/,X{=sȩ6Tũ)2&m]oTZ1H@5oEy">n&]/rFVb}#H쁼&K8$BbM]cayq^V\8? gzWUCiL G uxxk̛9Oc~q:: d;bDFN Mq2`>$QۢMYyWiэH]Cza8Py}[Dffݵ%SY->/ߵgeݴ:@1t( {J7f!^_ s w",$ݏ< %IB?i;ιEF Oo|mK I̍Q ),Z|7Q%HdH, 7mĚsv,@ d5͑;6kL)BQ!a(,f{z:MJ,Hm!Ux|Sm+ZzZԀ,ͅ"o$˨B)πUөkPRğ~M;0ϖ^9xE1OmJ0qw P[E\%D>kЗ,/;xcY=[;<>rl̸gv-/WH0Gۦdrٜ 7&I$Z\4~+9>ErdqCԸ!)4ȢmƔln(B`7TT/ǯӮ0ƈσ)q\GU`Y8Ҙ F6'pY4֓vQxHP36}r_cB#CHH}x3b2- J5~yzrSϪrS (ڕ69ʺ}bYZƱ[ǰ`*%QY%RC+.!i:FΔnAsP#kGɠuv_H[ }M7%eŬ3c\] UeҰt+UT]^`@SBK6s~Y~pg1լ:^ v,`l?DC*STa _z| ayQM&kD QBJ2zYStޥtA|+H y{erNC \HԵLҦ)i;#s{uY,'`aTD_h6NAvch阎|L@=Xt4z0.Hx/@SҀҲWF_^hu=ȿ~nmw'x@!ÀI)kVqax`BJ~ϸ7<&ܑirN62{,0of7L\sK~9.W!`:U7jNIݭ^|  $`3lY`ZiW3{jaF^Q(CP;Bi2O3<1}lflyǯd\u6=a~Ati 9m QS ArZ{skY"b痶ᔺxEVLB74{E:_P 4E\\#/$ݣep;M"8:.Z/ :m̀,FUу/myJ^ !;cZ"БۍIf"gLa3.tA^tg8'B"W#d1P3 ûGn췋{ k>tN0IICB2!y6tbTk?9qr:F$ C(vԱ00\u(|xmr(@6"'c{5"\xj&t$Q?v@_Ugl ^a̓}VčϹ`cMC>H[XOwDVPJ*a3E+Q΢,D>]xhVBI4el']@Ӕl%ȦFI=Tu]z)cuB9Qa&M<ʫ$φ˂Gٖ>}Ӽ՟<2>˛Fu@DNc+c4`:aymhz?%OOl.婄>MeJ $'zT8WְtNeC Ddw#U4[ 6 'X;jԒoWX2[UfiI>RJuKE N sVzשFTM5r;i*6 xqJ?x(QJvWu_Pw GU}InXsX5NL͡nv#zEVl3Oy<]' ^PurrSٕ^lʙ̥+е!Xt_"-=yj =q`{|HVm7ZGZ8 {@fϤP%>¥sq/W1QNGRF.aTIX$ aɬv'Ec &E 4]w*ʳt5ά& P\W:9*;P!6_Yw>Y0o8/~A_!l) ,*W.خ ?+B>~zG,OFA0:/7ũZrf;v 3eqBa>ѻsJO ֫T|*fd6;q w2/ReG$7\/\or3Kۆ!= FzV%O'nKYB$6)WBdsoZO8ccQOpIcjexJT]$Ko҃0#?^+ =xNLعN06 c&' r `=DBft3q$=2Ƌf"L^(;>oB/JH|H:ea **ÐIeh@,aq%pS)3U&a3\r)οy6s5߭ą乭Kޅ=y( YW9u&isSYW_09_s>qz*BWeÂ%] ?Q 20;<8OԮKU!שȱ*&.H[Ά7Ch`˩|p D^[>3GbԃkI&dk1& |/9йLy÷Mˇ /O$9@wP%XvuWர!zw=%WR\cAhgT`wGKtJWALMn b޿(6;2] uŗ;Rˇ8I"C +kbX.sCdcs{~c̤ !xJOVEV:uj[̄/*@!0+I|G& |88"kHKQ9LGWNFly6WF^ \6dSϸ|4mnfFpk8=F^.e18c6%_V pFY_FrP~lc>LʍM!ɧ-V*UK.kqq[ h6r$AyAeee\0[U4)bźt(_ɝ Hl3$L\32meU:U-+d㷪A eD2#X#MRk q- E}D ZdwIru1ģ)ݸÀ\`ԋK~3WܽV4Ai!>L[t/-S/QK;_UkbVxehj_ -6:(kEI93QA 8%zzz4zhYC>? F5 F|ꄒGE*raש9PiҒեKp @cQeȉzj!@,j .bĢt#6%dgR}Oks0,߉BcHE-kW} CRElGoQ|À˒Ғ2M`g'P֨lQ&'0%85$hMy eP_>ć$}pDD u0*T+[sC3; ?2$7ʥx8#½ 8]7ʹ0X( xU)&4TA"ٟV}UST%&ZIvd_\ؽ2sʸy7 Pq/='bXʯC҃|R((45ɑer[<`Ń兺zϯ\5'MDS paQpXBvQ$odtQ1 d>ěsI9zzy&j<&WHv .|FK9:Օ;+j_]m O\"omNp" (  [ Fs֨>ϑdA q6Erټ&W7-o1|` >I82#;۬ eqr"5ZR:Ms\e;=Qd?:S X>6q32? zL(s+-Ky?UxQ]΅tb󘗹dD[=W7V ,})F3݊+x&3G65.VƫOhŖ/?'c.6DL˓UsmJ[*Ua<0j%5$~XOmoݝ]]%q/aT_'?\> n5YtQ 7۸~BhU&rv:86<" f >I[S6_/e V_oAn2bCNƢwL,E~;hJ/aDۮFx<\`oP GEr1 J!J0[T=lOi炥P FXi^'`fjBW(#KI0# .RtU*dS!%syhLCΏR.#FBsmUA4<35[@d擡?FlŪg1xKd=@;Z*[]e7'LAk1%/0 uULET(wKE R|'79Դ_df^CxJbGi36)`C$}+a-DLK첿RU[p6ָ YCw #ݟ5Ě ~ԄX5M8l&u XRS;&ᐆJ=齕xږ02b s~6 \; 8$}*FxS !Utr5_0tT1DZw_3/O܋GO0On*\ػs~i[cBP7ȟu+nMBh&{r1AOm̭3?TK&<INkvK, V*vD1'ַP0(J\שq𧝳@~"Ϩ<@ ;E=ɼ$x=.h&EM<:t:cNp<&hiIT {vM80-j۱AK;ܜ,{albRΉԀ}V5c>T}6s'\z+Ybw|]Y瑌\xe7SAbTbFf*ZP%.d-[!Ok()KY>g[zjkG :%B4(k>MP f_۱; v_zg3QGBl@YrTZ)N\Uo#4/"YҢ>9N㧞!EGوxZM lQYjνg>+/ ɺahO @yKMHɥ`2˓)BMϧq>wN{*(`LbL} #VffGdgoO6JyK/-v^42N3TDXnlXi֦o*)x;DcߐvPH\K%\u W+d]Ub yQ+nM#@9s)+),Ċ/K˝CK(R*YA9z+S^VzCyh/ƥꆊ\u 6&@' g ( o}[ d|sFm+|ǙȌ'R1ڷ RvI~v0{щv~Y8gV$[AUߨ &$)ɟ8H ?xnW'K#Yc"E,;^ m{!TօlM3ӟlfC;?2VUq ҄?sU +8 Px&[+ڢϖ V瓕+bvx.LB! =Tn;)pq"S]jՍ3 W߄a<Щ}_^ۻ @?ZU13^@O;r aY>mkE`e?d[7B 7 O L*>eϊ!ŇXWB-H=.r6ǰ*iK9_ =k"vǒ$iM dd\#mGT9%em*PID};79pJ pdӅs])qV%dMS'bKc*chQ*8Q&81}s=~1-a_Ɔ^% eYuFoE_ɒ&.drq]!؍^}ُAem4S[O$BmJY'ېs;cxi O& NFp!::, f>hK+^`Ff-lˉHc3)NmdTh0 CjԽ$;N8(!pM5ɾ.5 i0c`ztm(T3Σ=IƀhTA1U|kV_^̏zUªCŗoa hJ?gM YI̯JHO yV:5R 8B=LInx+ST.0D{q>ۻd#pRgHw2Ǎs} okͣ< LIB_k+ jjht*:B<917E]o'gkwnp^vV<=Qgͨh*9-d\q5=mQbۄ sWRud㚰T^(HyJ^OAĪve8[?}'Kc )MݫEn$wG>Y UmkQepwAϘaɸ"rq`x+1]򪹚Zk`p xg4$@8 'کEq{+ 4{I6" Pxu,$Y^-}4#I^ AhpBjYBhvTEn/rP,9c * B IR!-`u8Qx=pg3U`): x KDVd>Ri@2+{DO!G incKThXȖA&:[fzt &k)q0c)o4 <׶>dE+0>fbtKtp@ZA"/?\yT M. -\mғw)M)y֪{"M†3@ľ43y pɾ+9YJ^ wxPnHܠRclfӳo8<+(ר2 K%hMll0*:Kv ;.EY ]3#^`]HMT3 ct젻2h Sƒyx<'*7А4.{@$\[{/&x3&}3){!N;CS'C>$Qxzĕ.L{/&~VZjPe4pʼnPM(5rڣ۝T߰piˎ%?OA1M,٢[G~A'hbv5ky;ȩQb hGȌ51i' -P,!">yq endstream endobj 4296 0 obj << /Length1 1696 /Length2 10526 /Length3 0 /Length 11630 /Filter /FlateDecode >> stream xڵyeX6% -1ttw CCwwKR%ݍ 􋮽߽޿1su:*5M6 KX 9JPɦ399y褜0[(Dl S3S  O2fjPS Jζ6=~w]-P4A]lK"2;@0B! j5e44rjLO5]"- PђuXrښZ?'֬9O˕e$d]l6'd@{*r:`98٭]]`PgkvG?ll]Pg;ӷ3W0_ ~ @B ::{rSv;q[B,~nȡ ur+H+Ʌ5` a ~"2wZм]+ЀK[IO ߡ Ϛ2=%b [q@aOr`e%jobfL3w[?2t2@u[@6H$ =a+{쟤t|=dO\ PWR֕cnd@@PK[5`l$.^^7IՖ`?jpC+`uF}@NNo߿L@>L~/erQu5aP;Ӎ_)0g[C'YO2lUKJB=x6'y|V ~'m^n-/@AB!o>N=`? SLDZΜj''ߢ6dAR!%zt!k-o+'/,ŷȱd$Ftص:d&RGڻc&qRZ?bW.;鍢bs!j}NGBI} )Sq^[X^%mRe9Y6,Ήr6l8>{vswnߋ>k6h㿐Egf/&'Z˓i=gR0ܛm!3jT5_fPm;=8j@nu]Q6ŝa7FjPNO/W[[_7'u*gǸ1ԯd3]IWwRD2gWRm-gr9' d75 ,gJ1ܨ W ͟l\CB/6ܸ ‚>| |0j, 'oNm-K7&ҰV~>.偖tTTQ&vrJQm2eebP2#CU}0? I,1M5Ǹ8&9 $9 |7NNc2RnH?P0rOveձҠ`fٓ0:|L~xŽ)&&W$&?Q]J'Rz3][a9Xf,$Cjy޺ ,-: e7ю p}?rf7ph i dV(6IaÃ9'hѸ*;{0ʟ7c/)`ZRS\egMĸ mG>v)RqռgbCj,t-嚵%&߂P{Y{G :0 ˠN7/lūO(w Rp,5LzW=@obE<$ dI1&䨚E #2S-А1gtQ⣙QS\}ۃPłͥE`V&^bQ99[S *ї2NWe*pg~(IսiHG 8*2Cؚ(#STwFw9r (ep%T "a1P%,p'^;kÉiӺw`'KGJfj9:5;uk3'Fv\R VJ"b_}݋}R*~#'%iY4Lo?jE$վjyclA#[{яIϼ{_1Qך}tf"Zv; KI =gX>0IsG#/t e{-0obA@ffd|W 8b@_Q*8w¹ xpX'y[S_/   *(F?P><&ޞYϨf(]~|g5l &6,=eM(xՒV{cFAM")& h-27OׁKŰDC,˛AeiRkJ}}*Yb9᪪NIS:dXjvA_GScrLMbbW98PMV7{UK3f q97󹖌H`'^Q‡Uָ4m'w:}51h؈!)>Eb." #>d㑱?GB 6d%#+zj4-'( E}lYHtC.ʕҞ3 &ܻHp-;X=Xa(}4(kͽ6H|l0.RǞOJjܚuZݙ2 묑hrbMMrhu*ŔoiwDBYoMm Tpfׯ@I҉TGS8AQ, TDITOR!'ML'!z*S% ]'[SAvy]R~t'w!TqUR)IoȊF_ؔYX[e],X*|ZlXY&P9BON,67jPDGϣc ;Pypy]'Լ?g_E˼nU!yq}@ŋ KPvsE#_{h7lZӓ]sQRF)PͩʌaQa;> LNv!*k.׵6ٓLh N\RC̨K&g;QPOn~;nbjXTKZY9gEQU Kvs{fMihn Ԇ4@ϰ-ixFUNΉ9YJ[8qUeayYu EE#!H 6Yո/`@<$2j*y<]I@;: ?FDkJ'&<@#`VЅI>C򺨏K5Ԟ`mP5w=l݌!iar_#iܕXrsN[ٻ#e #޸'ϼCf7, -N|Qrȉyh7쨎Z iơ(uvScy33]-mjc5?uÌ=^QI[-p\>%3F2`Q u?^+ڧtbrnm!12@lU.z4rihjEk~JtiprZF{ Q@qb/B8"d-GY'cEƯ:%b.[[? i1ر~IK/`Tbe@XeCI`ԱNBxzLz"#(x1'enyoqCHCo++nܪ3_08طy 4굡Oq1]Ńb b4)ޛsE't@|U nl66fa47VeKd& .!N:s"Z4L9~ʦyu7?pu5H=℧)K-w)>*u sh NwE}WTI^6Aib*0==:BvU$[4:qh4(P=[agɽܘ}!ϔswti]6f.;ԓ7#/?PL:n)Xq%ζyO OP%qOodT0q9Ϯ=YrH¾8@4#ٻwR`Cyά}?ι7ՕSgƽ жjRx} ]ѫ8"aFB`;@:H姦}X,~yiIeՄ7[)*sh/)LT &Bcv 58АҀ⡝ h!(2`pj9ssW`z5's;ۦ_iʾu峘(7/%kJ@rN3_$eC6%ι  l Xdfc7vyNԢ> m(ɱy+9D"*4yº܂UG0zfsKg%pWUJ)]ny.O/Ίw٩T?AO~¤]ŨzVU}QRtxQmpeil>l&մr<~A $z WoyLUǛfxuD=q>֡m1zr{  fD &r#iI u(Lv~KbidD7/zsՊG[+|zu!:u%+ BsŰ@j79MgraoU"3SF*S$Ԥ鞢…%bspS bߔ`Geu5/Nټ|f!wH/ΠESviަG&߲eMwgB[zo<ӎAbm1b) .tTDW;/> Q_Mͽ3ښḣ+qpȪb9#Hæu_v0#zp$J\ܨ:>͚50pWK.v?듭XVLkYcW"nLϓ)!|FWTNRDZs}] 3V% XdQZu MM So7BGX_h5 ^1M-褡ݶwևp6"^EfՔaM Ӱ>ʢ#}9WӶqr.Z%qtTcOr7rf_re39 w+XK1ѳ{y<-?$Z4~ 2S66gOluZ*7_Fǎl4%ҽ *d/ϙqzF9}Sé!᝱դz0E8ְZ,oytE&9G;uPzesMK+<9a_qwsC4Mr7YFb@7㗧*Q{SQZ Rkxa- D߸#p놮ǣ("V&\䁆o8fr0ÈU鸷E)TF\x""!uI? P<%ˬ/Ʋ(ŦFm䛜!FQKGJAhFC[]b"Y>A`Zuu؞aaTjQqB(5Fy8s[uT):4}Ut B+->[) ]KYYBA~BFƹ?}qX,W)G(E.JAIƊ B+f%MbLCԑo,Suj@{)•Ӱl꣛kC[GvtUM6ukGq*}7|/ovN6^wȪĔ/c.>J8 {p4mURN5'(F@ CWǬX4廟b}а=wfY'K *gJ|mor ίp)y aWR1޺~JcYhzt-ߚ8Pf4~I pbչm ĦPx #LB?ug#%Grb@I"UpkM̑|jW`IFLKr$ck We,nIe3_"Ú=}ޏSϠRϓȼq#ҞBƏ9(_H<ˎ䳨;SBԑW?1Y2M]2Vsּ$ 5 Hb>{Gߡ(!\wmZh8M%֫vpTOX5fWzT :7'B'_dPO/'hީcZs1Ut^7{gˌ8@BDjf.yMSPk'~^)ň`[KX>mKOG l~"6WjVlw[[OlW22ײ3Vi,s&^sqcb/XOіYtJ?.~7yaP寸/%z37AIa עhYZ<.ⱥQ]IN0Ř;Zor5|=;Td`ܿh,ҽ S){I2<>;ևխ43ivhYX)3͹Q;gf7Wl% aTs"q,r{].Yɖz5& 8.($XEN-! j5[\RMA*Ξs'sI-r[w`.v5ݸ =]ݝ.#")(9#^zPz ZDXKzwO}uֲ|?^SʅHiΒLT 2D=^ NKBC/dxU+]}}a&N?5]~5XcȖ TY B F{;1Sf=%/`za64GÎtSh5-t%9!1 5" %>N8ƈ , _&-5N#3cU r̅EρY8m$Ήx:ӊKrͣqXV`tt ,JTf}## 4@pgyI;S#'7V38jh/{$]RIZ3!!wdLoy@l{7—/ >!>Rp|ϓɡ+sH7[N~̨0٤)DشmHC-9UoKDWj/A8:@yL k\~ %1ېanp!RljX["nj66k◘A_/NlS7[P{v*T4^Kgz|-{)8gq?ު`w)E@!vsh>N\+S]tGwgEzz)lՖ6H`[d%t~ԡ2ybӏ=mZyvYk0}NZo$-1q1j? ,Lq:x,Iҷ;k'%0{'ˣyvQB"+Ese(1X$;ps%|4<$sfėj>;ܷoQ;Jh`[Ⱥw9FqIKLscp?MK|tj-DմR;*MxF;MQ 91:EP\hfx#SG[ *zZ\sysDb}:{Kw^:?/γ33DF)o1Q^-Bȼ0o䦩mG NdA)O Q_Ɯȟ,˩8.Dzm[3,P^LEzNg'[5~{a%Ayr/kf~O=ueanf\K#4q~MS6,tMr2,F`.{q?D%ƪ endstream endobj 4298 0 obj << /Length1 1608 /Length2 7877 /Length3 0 /Length 8690 /Filter /FlateDecode >> stream xڭVuTnC Fa$EJ nCK~sw_?fߎ~549 y(- P;X8õ!*2P{+S3YB Q> xDDDd0-/?"'`dutA a XAYuWJj f5]4-%0_ n %  K1%w9oC3@@`o~kB0CCL G-a`Gࡪ_<ߵ0jitҟCaw-  w7w Clŀ٘ìApOi蟬r# {kNlއ6`6EQXC<s ΰ<0BV kl.5($2N#Fߡ*o5wۻ'b@c׿_9v~hOe7K=FCV럎aKgA?rYbOO@-$&'!J>w˽nmA pV[mI ^7)qq]{ɺLjJdiI'gb[2S?cLeP[o}_S$fhKpmPAR$c'cS{OWgG!z[Z31s2X֕H45&ek7e1N3ں4q8b1M헼4QDz+zF]e(2s,>JVؘ;V<Phv. 0X7I|j,]"ZwiPc!I|TsP [3EUW`}Nk"U7a GA[;F}vטk57Sk\tEػ_Flfw@w9:;T➪^j(8%}έF6QqDj5htG(r'N{q+(cT{G(ց\z-s -~2%@0^Id&0!>~~n?@Ũ^ﺛ*\`w+tHQFblКϖ%t.з#>uA3|M08B8ˀ+GG|b\Yg .FDv6MIE3RQ)Ѭ>lrlI9q{+7+ <^6 5e;6I>.Opl>آi<X;^1PQOMLG:CWtI΋ osNmِ[X|')ZҞ=1ԴUSsS)ȸ`LoL*fѨA/K9s1B>bS!I\ He)-oj9tw&, }"d(7:`({A⽲l%@zF$:*.cMpҍ fljes <6wog4DL!?(mni >AD Y$:_kM&ڍ؝w֠zFM϶l0MvYжk\~ IA'ofaߝɹ+4z=^N.f-͒xvsAml-a>]pC_Si4=p$7]nVXW=rkgR^}R*^ ]d1 ԅMs\N+UqDئ SՅ,|_\2r\lz\t\uV3}&:%_%3|j,v3=gLJ`@ $G!G͜Ŏv-f::uf,L `Oe.+.JɢQVs%%}87Ԟ-|ҫ8JK0SgSJH\ XMLXEc'/a)x)I+W7yq+Yo^ T0HﯵF:g;qvw+$y]#e1Mrdqln|Z/0e."bzDz 6_t5DcARROhvt->DJ50>}Nk xҬQลUXLe{Idix,8Y@oS(S2~~Iv~t8̸Et/z_Trt;F2i`[2OC5ls\SGQ^M.r n|/Zp:>Оl7]ɧ.¸#s^dL"?slS_RMjfbNIO" "P(h*d[lNwPE Fj|<"OQf0\|}-N((h-D3Wϯ 4n, Ta+ZO ;ӬUt_F VfC*ȴMASAhlKKw4錾Px֕F`5^;~ cB(ɉ,pcI3OOJ˺k D >HE[VQ\~S3@Nt2KM$}oPR[߶Fc;{OoG>,:OpZ7\6AG󨶽:FE0ogY HT%{+` ^0˕rq`\cZXTM~{J(UMERMh0ƻx[s::Д:9cLJb]'N hžE/3Ef˶qts-ޜ?N")U./Z!˒rB;"ȏٝT@n} SSmԴӡW )xfL9]ᨾ"vk[gO Y5]eDuo΢ ,`H< M2 hR/bSML<6Ӌ5Fqs@g!|6*픙ZKs~m} H=dγ֨ݟ_?KKa;I;U̴H~ }vb +3Pc3:~FQEivn_VcVE3Y}0uv 1IHa2t~edA6rA]c8 AWNrfsEKNF!\@2k,PJi]>Jpv/%^qӳws䐯r2 bK%+CUOJ,gClTV4=䊠Us %q)9^6/Jի0屩@:M#7_ղj,'OzRNN1_b7*˶R. є RnnG|$}HNχL'Pͥ$yI0Ru?DYjb"Y>*:!2d"_ZyO=8 QKk '~d)Mg^I>u6 ϛ Cv wtF3 MV̓yS;uuRzdwYe+\FJu=7>7'~Fox]=] h4؉cIC-he~i]ȋ'+kGȵ%dUi?xacW"ff6:\=v&b[$L yu3BijJ?HގTf]:֨*Dl|S?c"PXÕGZI,{G4;1'@[J!t/ꘒʻ}[c.d2r^qXX䮿L/kOBsGB@礛ǽv#Xx:|_2 vDh;iHƊB&bIi$$>by2 ,:4DT>+ZoA-hD#| 7%rN-C@ȶ*Z}A {2.O{mjH@0ƄmGn)|Ymτt,`G[uΐwv'0'DV^ې-FpơpW4%8%ZDm]NJ“DI*-b㞴[,]Ŷa'y=7~iyւv$ίN_=[&gln%22i].ml"{|S "/;?MSúKCYtїrZKd n J"]w/>wTõmAX y[cUDOGݝĆHvnFY:/RZ̼LdJ0gϰv|/(@vwj;wcЮKl˥a$1iz?Dָ֞,r9z9S'19wk`b!)Z]P%r5zNԽBW~8Fd `WD񷍔O 9VTkxB$MVXg=e%.cr8 Z|7%~kKXD[A\9hcZjv>Jԙ:J`tggR+UvMT3zw<Ȓ:"p5Ŷ{$]@?Ia՜> opbZf/YW?m뻸eCΚ u,$:lCs}Lsv*.ynΗNc H EX[GJ|R%J܍/D񪼣/=8NLHMx|OVכa9fW?IW(C KZw%p5&,k$+[X8Э/rL-NUD2.t[Y­̅52zJs)oTm [Ze͎ՕCt) Ug,,>F3BQBP͓?t1$dDY"־S \|O@iScy}դves8Յ5shwkV`LNz_^J1 %7?492]RvGFv`Ʃ7pxͳ=N!gi5Ej{GD/u&] Faf{ LwJhXF_T|XKrw"u^,_,&~1ZKXiI+[3AX+n*jVP wa GYCI;h~u3IqPK7|lЍ ,Wa=!z1[f-/{K |jo endstream endobj 4299 0 obj << /Length1 1625 /Length2 6204 /Length3 0 /Length 7031 /Filter /FlateDecode >> stream xڭTg8#zd^F{tFH1Qf.^%zA!BD7D=czuu{4U`:($F(&0Fx8x[wD5PP} p Ȑja` c` k$%@yyy^&3pv̭Eep rpF?|a(OsMp4MLmuV].A@`Ho B: ($4ok.uo `oH C{ o3\ wov8 O4&3Eyc!h'pTK/0wno5 @=(`4(@z00\N0}MF@:K s0okkWQ==O4?5 00w P:'s$,H8  Ci( N"n\ߦ,`Gg?.>Zq=2Wp~h@;Z_H뉈%$2#u0)qcBBahwv=?Y nݗпk:ViizO࿥Y<@DrrQ) y(! 79u6c= 1 FFB쟆0]?6AH|FA#]3s05vɴMD7YhА9 M+BvCCx쮠ҶuK`=(1~ 5gHY 3JO>o]Չam\)ZԭV YJWaGdYX}bױ;>_o}d*e(ifa@ײʼ37 ׁ;GMgmloȓQ Ƭ\>_1D"RTQ|%]!@ 32]w|]GVH)}h'axiYT9cC^>GXݻ d}InwMWSOX.C+nr6p" B_i=f_ͥ }h}5&kG[%ƹVj&c\֢&Gacc)"wRXb iO#'g aWLVNUr_gGw` ,~.Mdj$$.nH)_I^z9-tљIRӄJ :PbYT56&ys.M۷hs~˒Dh٭0Ӗ9&_& ®%Ƈzzx}wSh߬\N֎2I(%77U1R(j-ҎK9UaH&$ a?or܎'(}dճ`gavabeOK9 zږ9$iBk22]6t Y)РG]#a S{4c\,bm{tõz+yi2+ G6*$9}VT疓ҪQ~ E4懪z*d?$蘙[NZI,vuhb>)zNJHBSNxk_6DUѻ _hzĮJ6y2Iwcj8x3xƎv]aɖ\ .k68%EX\5Ϧ]'wadJGD,ҝi'&3Q|zZO}_n+PC^|Z5xf7oYFT};fv=+4[OTo}Yg;aHŦ>T9Sam-2ɊTi'%Uc@"4  STaƦNpz %EcAb6*noE+6:9D֑{H8b=v2(OշHr鮲3>O|m eB\&Q>Q(8yɑ)Gk_Į[囝we$)Kpԧ6-UBA/説H;]p?70^)6?Hls 0UL4ECOn:7 !{ hJI9حC8qq%X-ӳ_YdwxIW_Om)T(󧶔|v\l]*|XH GTgEǭ_ՕdQ. , @pe>۪Y]Rd޶?T]g>=ś\$Lߛ&MXRwi3T$ 5DOŶEdR2!23bB$3N4&ބv:-wq*?(lCgi(JOz`g-6nl) 7X<> ?ϪG>;s;7Pϕ{*mg;!oQ|/2ZnA8eQtӋћQvsau>]oŐikr?ZMP۳$8GB2J ^x})3Byl)ƲBjm4L?t~ksӕ";wq3Vdh;f(\ n0C[Ajd+3~gt RvliÃID Ո`u2*)^HOYI}Y6vc.$?g =ly#t~b:^ԯI Xii1r]tj(&N,  rUx/x)=KR(2M c})+$%4_nUffGZ圶uoXб>=D_`@\}a=6H+ܴ\!P-iT txU 0*W_ۤ~~[ &%m\߻OZ%.#U&jܸCVylvdofJ5z.P'urE#(Ӣn>h$e/xel\{]оHB`RgH92HJwOxk 5{ NI8owZͩr<|^,qX?h֐+<IN?ܸV%hw1`!{~1Wį Sb4UϚi!ֈڵFSo/X%')j V;_bcp1 Ӎ{C+(H@#NN_eG,S#Y;fI w& #5̦I]گ/rL Q̄slJ]*yC$>vkS|VmX,);54] 񉇛fWZ w{C镋AJSH; !bQ2iMns8,S;J=3+{ X7&"'$=z3V+"YF|o|UXm$\}Ӫ-sPr*H^mL&UJ~,_5+clmS0>6_˓( M(+sV!W}`Aq =nH<*ܬJ{oUOAᙢڌM68_sNNM 8kMИ#{<8 wJO@38&7h_?E^M*:-g So%g!ޓەj=9˅J6YQqtގ i ƨU<\w/5Q7z?*5lgC]teN56.|;t;64%5 6D~ ]y:(b͔^iaLGFC]m%KK( Ly;lcC<{H9ڄb CVHuO۩s#G;A=O98`_\Ï !!Bn+s!c>n2b<=A8.~u'GK)?o\Ԟa=Ȍp7ޚ=(Y3GPtæ BΫ_{M;S6>c(kHro(ZYH'kLWjNh(7N6jطHն[Zѹa5E87M&>ThlDK<=Yp`qW[#ҕ/>3 6iہ^.|c5ʴv8O_*VW2KV$ ۢ4UÓD1Ui tlh/ZkށU~C&xthJK'2 gĝi:]'`xBTO1ė!V{v)4xN}$:} 6fVs+zh);gv/kd|K3~rz"0`q;.U,nųZ@`Zux UKÕ.Y=[ȮT855w ߧ(x?~QR0#"s endstream endobj 4300 0 obj << /Length1 1166 /Length2 7654 /Length3 0 /Length 8428 /Filter /FlateDecode >> stream xuwe\6 R 030 - H ]!)!!% {g}w׺k]D)m+NPqеq< 56/T9zԭ  @޿ap h` Hl=]P lym"*@ 88":/9F@߿0?..0?*=PCǦղ @ps[1.{.(Qy,h&mnP7`{ϑ<ݸwO?Bc`#%|?`k] `o؃_^` a@;-`vx`;-_vKe?!X &8Apz[g(,P P.ѕpжp<! >`[/0[0iJoέ >OZ>x .^ 2RJ 9QG*STuTDJxAoga.LgD(J?>i`N(d}/$dljt#`$&;4兕O4w& 9Try-1;)t LQj|âbYeܗ~<ElD݉ qHxϭcT'r7GQL>Y\ 7Ip&\El(w|f) :Y+g TT\[_n ?s0 "no2۴趗lo1Z3$m@X/qXKe]˞LńV>'abV U9X;?-9/)6*ajWX 5_+ ы24-.6cݛ!^l)g_ ѡLtF$َ~njKF4˅.:=Rzhݕ@sAqQX4W!]%(Rn”ՏD)~;$YEzETkrWb!1jR|U"ҍnn0T%V]&c$%ڨeioiI-ϭc_cXTGJS8GחLݿ.FޑŠ^81q󌣕/ĠfI!\LdoV2 ǖT_zo?d'c&XȆ5h3NJpCvʵRkF†X:M拊+*ƄfD ݆"Ѣ⽉Γ)ơaƵ8c '*4\SOKCvgEY^c2qExl9.T:SfF}tWKl{d% Ioi=YĜE#f1N \!6ϡWDVΦ#ʒ<<92.|_*d+@1!9e)Pν BEA." x]YlޅtPZhT}[.GGq/#Jy)QQ-V?t?}&$}.%N=82)B6`f.7OEDb umBڞq \=YZEf ;9 {;t-F7J#(F'x"%\AoE{ʇqܪGLjl3}8ěM0dʪY6>:ay?&~ȓ)VL|DV-#P|-4A\Av NpIҰM}7ZĽota5A֖>}Vu47jOJy6u8XttHWT}$,1d 7g;历]Jm#nSCs>6҈UTє^8n$)+-=ˋ"gaC^b{#v2FFH`P9Hv3oPVHFY]BxCLC@dg]|4i(V'^OWJR$ZSIQLsWm]Ht?YQƻ. Vw,vڽ:ja.Mq*w7BZWH0fQ,}-N'AB-88q~70ZC[YpX`Ҋ9EK%U†=+SR/0|{IR8=;>4vw, !<ٲiM* 2B*%$ hIL(83:Gxz|j6]׿ 0$Fш2ΘmXUV~{5}:6Hu˰Mܞl@W+r)E ^)f'Tb-xjx`q^w^x>THeZj[ay-[^*FI, NsҶ8shi&qlRSB5`9+k͓%VC`فjv\\}=tpbOYp N^$MN3$_7wc"|/O*IC;8+rɿm)ov*JV8_+SK{#tv.Ux`lo+'F SK虮/ww ^sc1 ug7}2@aU:<2ttpf_IHVoH MWJ'ZH\l EzФ~weu.0qK&5!РiLBG6Ljj&#cUU_G3s*4ei*Siڃ`n9a"=|frcT 3Yaɋ6nyyp}̚ 1wam\MS[@!z zL 1nڵbX٨+:U~ @=75wD(w2wEE*P'}@SW P@qCZ Rg/?.T%X G|f~嘆y)߽;+L]="U<ې0#pqsrB瘌/]5üʡ}HN4=;בZE&ND9e\4Կ^?+u4&ftƔV؆4z2҄l[0X<?H~]Y-m M@tIr ͌W.@sp):̾ ˵DsHwzRI>T 7JVgghq\Gⅲ%r u`3iw"%^#bN'+״Lzmq坙]{2Fa?6ߝվ򷟹6~72;) Dэpg5cĮM q{eв)8H]"X[9z%|+,n e Uҵ4JGOs-v]hT{٧dn#練c\PgoPC"hoe5TWEz`\ach(|/ē]P'bhܺ}RX.0- |]x_EHo6,if'8 )Nl4'<;L<=;p.W%@ 6z~\[-նQkRo>CCiKvqaE$Ep$J6dzz\ePd=#I]]b5L~F>م80QC5NfO޴Be|6jGdN.:)AN!.1eȺLp/P<ŕ x06~3G7zYK6w,m+~]U˳YX%8B!Q{rZ׎O oDt.ʼ;W7HUcLD(KL i~)'։߉f i?&n+-gxD'L_y.m݅]h /^)G>id*Mhyٴ@<3%ުm5j/a|ٗ?y D@?y7܌7 1ME8vy\x*fL)&:IgF]8.5580FlZDG=;OΡ(//hm7j:*%6زI;`|4?` bʈۓ,9. ǜҨJĈE2}GOuSXBH73fy녹 ~[iZIFl@T^9\u`=)]\Nhb74L@,R(:>vE!O0Q'W݈,ϢUͮ3@ ŕA%ߐWOᛰ\qO'Z%&UNr<BܢͶJVyg݇T}E7nt܎|JQɨ*PHV:-VK9/ gQ#ơDC):ҁgoP:ܾblTa؜*Z/Zn:KOǧ ;+]M m_9+mʽRt5n,LW&z}&-TOB;"<-r ~2epB㺍PAGyހ\k{ TF:i2`p>;nj Ol4K]ձT).y;'@#K$zE*C:TZ^3֔)_PL)b5o(EHc'"/"* 9MT ]kodl\ݻgY?z1XzR4$#q{:Uַ謁xbg_MVy]/[ zq\b('B_҈͂}ׅK }]ruG(EBsy(hyA,ʝTa8# $!Y"S[a7Jkixr VM BclL(i>;)LKB7WR> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 4302 0 obj << /Length1 1630 /Length2 14918 /Length3 0 /Length 15759 /Filter /FlateDecode >> stream xڭctf]&mbvvŶ*vRQm'۶zt}~1&XQ^(noB5vuV疥WEF.vF.@ 4"N.*5e jZZc0Ζv/n@{[_kG bY" ZR* y5ddPt54Z휁3{'Ϳ{;SJsf% 08;M,=L@'[KgKg,Ll\MI_ 98 hldUQTyX`o Wbdi pz0tv1/pu3 N@s#'S_t?/98x_V3Kg3ߘ&.c[13+RvffM] Q3302]P߱G-FB%cdg_5N&b-Bvab`Yhhbb03۳LN6vzf&S4vt+FQa9%͂ApQtT#go? {9,\߄Y|7!g9#'KߺUnnyU{=M)XZź nPYkE#&h;U?$eEmQlBK B$F41AD7I oS ?y9&`{MQWZmeڳOV$U1sr\}ƽKe6LR8b0fFXDԲӲ$qiL 9sQꦡG5Gh-Og[Kvs(}l89i|{wCy{Ja<-]sϵĴ7Iۙ kJ|Qҡ)ݛR5O.ճޝ'U\v' )J̙/ly<{ք35,| К8 7Dq+y>(Sw;בw˨F3>Ԙj[9O)Bn3h  $,jH7u bF}s1 BVC8O 6}:Tݚ*h9gX~FSCz':h8P.0OiKHG**7mDLD~,"%bq]ORZe'찓UާD^Nv&2"U)maTڳQ`&jmۮ"cN^8-3weMo)"=S#\Y·8+Mǚnb , \^FG, J=bv>R,?l@c q>~ҵ,qu徢zQxp;ݭ^r< ="Ct|q"d:uyz+?U6" Ghyʫ: [ﵩk,h{ePZzLpCp8<evO9T $ 6ޥ b.jLo].E\v䎛&9Y ]}Y^FV7;9iEQ!Ce6j hEƘU&q3Oam&ŽONKVǎAJU TRZW0.mP3Id_K$yx)!GzSq%I``)*7 :| WڇPOU"\Y^AB#s#^5 Cd5K{=x*P[ZTӨͺ8bibg|ҹC,K;^m|eҩ\Ax$D~kE3;{]r BQ/4Dewj#]8+CD΃ҭ#GzղgnҊvȸZpžZX$秳!CBI&oڠE#KNӑ[*qzo}6r4Yf[B *EÂG/Ep'$J$ȯUy;S6KkXm7 E <:ZWv;>NAC|sdall)޴v1Fas/&.+iIc7f8\[PS/s]$7oLCaCSSn+4cHWQxwQtV(D)63&,$˃¬%@w0&- ɰK.9Ɍ~'= ,{}6?D h̎ u!n@3ua'0 LpFɛٌ)4Jaka{T u[Sg}'t˂v 5\ i\Z`p'|Xi緋6w ­Bdb9۬Fa0Xp0cFvd+u$2vI/<)y}f8V_&UDJ^)LvZhLfE~eDpA6y۠V%1PC*˷݇|]@cxj$w$f&2DXA\Oh”f=g~00-2c%;\= nM͒/w۰[)[P.7i=\GV'TN8c9ZWWMj˔I~}py^:2Y̰F!aI[(t{>58[k59^43f$ܟek0-X"!R*%c4B]o{d:X6mʪ/PyYfxëZ'Z~B ޑh'YeP_PZcO,zqM9=縂9'=Չ7]0 W;\\xIkzZӰtM5ìA7|L-k1Sik ,o62Tx z CthƆa)9}!mI"|[V_Lm7W~J,7σ6T)9sۏ(lxBzl]\BuJb%5 Qxtć'#fyŐ"re8 -]CD'JNJъ.&|qҕSbbڣWiK*AJNy"> WPͳ;ZOj4 =/LP ped/d Y%f%fXCRMpKoA9Y rDb5NL[T{ Ѧ$)AQ0TE$¤LA2lUe|[TMh3}UOuI0W/' /G2/by`gݙJTS’f9KME|'~9 #uEasCB<ϔ^8| nDO럊xV֪NfSQ{-n R/-KЂ eFO`cvv* L~"ij]R}>H:k;4X6 ,r@a PF<)ِ*Um22\i fkCwFܲ Ľ#hek%<9d UIKpށf rgIwF_o2}AA"t4sz̉\6~dahZ l $~c),:Ĩؒמh Z#G,,Jo(*c"ICw=N4"QܻZ7sw#03N(`In%+Ωqhl75WX1 L"::Noyʽv fb&3͇B .f8^IZ|Is䘡V^khAI¶x O6vmILMJǭ+Sef(ڏݿn'6v q=͈3rGq?Յs7sZ]eg6MT"Ԃ{_`XWZC暃Psm-my#ٷ#zFna۝~GN`6J={c,Y8 dwƚZK2hz~%JK(GOM {1g"se%E$XNxf?b*eo{1rRbjwΉɞ:JeX^qDz4j<.V:l5Ԇ%-p&ϥ;tjoqx39§̢RYpa7]BS.UPMGܠt@8k霺v:fo`2%hO_I@f6X}p`+ёEu1hZ̤)e0RiEL(C)^ι`<zX+ۈ/cemy[֣1OeC_+2Io8c g#L@'G/DDvޛب8D?y7Q1ē6}rA,yKj7-k7Jɨ 2gb.>ݗ\! N1wcB"҆F9iA ¤\;\S:,X3u5@oɬD&dڭF؝v|g#=E1e]RPGgƨYêx /1/%PtE2W_ YV{73]T% l"]ᕯU[^4Q(e&\?dO ] V? `ݼ ǩ;xw46axӮn㽧StazKUk 1UO"!P4AP6,Kb3ni\\?"=9, j4KshPB5@WW]%O>6 +ד ׍m&ز#zm +LKȇ%kFJm;/ 4l AyRV6(?jz)6>)]>o\A~\Q&`/65RĚ/]p|+ϳDldŨzTLolj+[VNU6JiB׎z!\W'sij9!\?~ۮC*M0 AYyۚ_oap0h }T4l63>0]Ro1ȑ7~%ؕ[VɔGˍq!)Y(04_]55y&ĽjĻT oJRg?Y#Pu^Kdˈ{ߑwemMOJTJ XBzq !)d\9.PJE ~P@waS6R{mga{ Ff0/ht4BKmخ@(5 ooPx-5ف6}m YHtjDʡ6+p6O0+'N]Epq82]҄zBMe˵#C>r'R~i|ʰ  5K6Ljy#UL5N@w< p?U)tG[hW-N|mYYk_g4Z(0dj$aIKI"? \ x]OKZ2eGYxNR,\F_{%߻)SLCJ5#H#Te#bz6J|QQ1aCKǎ#\0H:d.6A|w5^G/j|@ͻO Vjِ3H8hĞ|2]QW:5o0a:W+݌< rr5G἖kuV淞nC)bNJoU*2[0&cDa:^J:du4hHҖ ==Xakc+e#Y#[ϻ7KDQA|k Dn1"+!KWT(~Ǫpc#jF䁴PpE"#&"w?FWJ[KSFgT4bkЅ Eϳ!l3Uno!=,}?ҽ),X AxEh _`nsBmN0܇L*M2 SEQ7el"CYYL [eH]9\StW ΗqwvC[dZ o 4hZ~zf GS ɱ5rT2\(&4N%zU4:ޫ?,,YJDʍ|b:Hfؒ?@lף+Z!4$m>N-8@soJ}HT>sшq՘;n !N/̟3]Z8 aH ~ZOIJ|Lccαt^[$edưB7NYKaaԹ&vHP!x@";h?԰f1EE563J2ovbI7+ӈ"hf1[aF:lAB. &dt7#ǢKC~)TZcD|{ox'no׵:Ůk|(mF7 5TOd6u8pc x16 wF`'5@ʀh=EUq#uLr$llO9kU4/eMŅ>B c_{i kK daehZُ/{E{N|ehƑUQB/qi"=^H̰hMIxTwn×NO$/CűhZ }Rta4JPv:B"_T> y/Q!K D>zwΉ"L7{>M%lΌ}CFUɢ[Wl>DÀeˍrVC.z椗?S}{X$*.VA1RQל.8ř-CD%{lEfҚGQlw #H ao$LYx E}~(&+W> je_z٨\Gю+ez7ԩAn'!S@:81 qL' >T?(&c{ڀ?a0VU|B-twY~vIQq\U5gfdzm C:DP(#FsQwV{}ȭ]B|qR{7ambvG~$a҅6`ZF]M,}0e$'k^<-Է9G(SPkY<1:4,:Ö 7b B d `[{ w~/ϕbML"(pDݗCu-a2< VX1ܤE~MYʣ! q7vYHBx۫룣N$ V+hyc,!Yjd-dżykY"2iה䖐q+lo[ZH "lLUZq)H[6:5;.yqm&a|*fny;m9)`*=z7n,OVHgyb'7JR~hJ)ОW\1:/-`\)GyUAUdj-#I yb} !+ZG~@OJPVXȹE'Yu8$0G'n]Z O:p O;44U )xw:Kz?C{E6ʖ}W|̂1uM8_;ϟkB\c.ҳ E=t{8i!R>MMvW*DLDpRqəS &1OaBgMovkg9Y8 @ߌe4%#a=Լ.u`v9ABu ք>')%UA~ |⛬W dsBU"*|N}7;&@e[֨wmFu0yX'S>Y([|!(ljjY%s7~zi{P9ոg}ͥqY9pl*m32)!aXs8o}LiI|H\oRZZR 6uʛק !{>-a~)D! sL>e9uL2::‚x4T 2d~ I&aܺ?EZ!Fd%?nS!JlQvHBm;]b-OC6/i7ThD!>,moGZg 7^XN b_oO-ɳM>aM3;AktȱuT!]v ]ާl$vgdp]v !ϱ}/d]ibqtJVG)0;a0LF sk|| Asm 򨿽}%!Z-_zO*J>5;%_H@n+yb^ƻLoh$ը!@w( ?@B[ 1|sV`a+mI]E["c+x5D)=4FҺ37 f1#e,n/*[lc~Ҫ^d~;egҌSj|6DDkNDk62zRջ|qYlm:h\ˏgU?3'q ݶslUP Ԣ}3P垣PG:*A cfX/ȗEmNepD% '|1PNH_sAOS>iif!}B7eoN!OMOdw)tZ?["a) X@_4x[?%d>mϋ'\BTL4 nfs6+G7׬rlۀBѵ?Чp0fMjPY2l7r-Gl")e~綮w[A!X`М`SŶoM債ff&ʂ`; =7ϷT0QCl?EIUȭgT1,>b} 웕c[Ħ͉ݝ/ iIx{%6̍w+O(_}:d%U]S::1G=N~K8mW߹BO:ꡥtJIUv/־,."/_Wai2| Ee t xjW=AYY BTgއ} 2h (/cEV bF~ x64/һ=V \"B 6VAU}0yGQM)yٰ\<ʵ`W D;PEwn_"m\0"=௶_{Q@2g-T 2aF6 Nl fQE}Qtm|AANnMN $KqU%~W嶻M][);FD/ (!QH"v>}6aCY4i^*eKEP\booS$ywεVơm+j@Cr\F&X:w3mY1~U?4gV[4d`34x=?BNBU V}*_O& Pkf*7khV[,Ӵ}{k8:s{B8Ie Ry L>~M4,yc䒿%3[j5fHLnEM=$J+{[( rsb)2{6#qF[j .+9Bkye}FY:grB,Wf),_jDQҨTX/\8"e{,!s:M{_ r0s"ЬKvA!t,T]+@v.N"蚡ۘ8k]ƕ`&d`"V{"ea2fmX/Vu{'hTuGƅ}n_dӫzSd"a^C&o$y__lxLʮϖJ͔ 4Ԯqnl iZ$ q.&Ydـ)͗M5R=7\BcFPIH|e~f|4y;3+hđ驞EDo6pu\h$WRփ낹w9#8IiYzrVV*uc}EU0 BHE,: yrS嘶U {~>G1"8\]ߋʵt)MOS4ðذG57dGMžI -p~vi57[W51Z!I(d)upHW*[*ay78-p'; 2D5Rm]pC(dMN &vVu0Fd^$GAN.{E,Xkl)XuP54x:0X1€5^XR$^[дkMԲKǞWO%}n_ _eU\x%kSrE'X k >}Qߖ?^$<-wۃ'=s6k#H0IJh`mO e6#42;ՅW(=K6LV7>YBԥ ״-8sAYC@R+jILbA>o"Y0bp+j1yx#*a:mS3&|B'* [LU)_<61/zOIRM/ZNXATAt9!I?ru X2SD\: $ h톶Z(i6@ɤ+Y,d텙?_&ePo )ٝ.\X(s͹[9,y:q5s⦸&,PгÂQ $56GL}c2r$/祝ql!Dyߢ 'H$jk4j/#Y~K)SgN=)$ =bM/KRk;a¡?1ã\|¹vuvel ܑw>>!$ՠI&r+-ќUaoG|= I,]NTU*׆Js/ p > stream xڭveX\ݒupww n 4H!wn%x';w}g89֮UU{ծnjrU f13;ęM 5qqRUWdVY9m725# HAm@d #S$=:-umzFFZlxyt[@4 ;{[-As  +,QȀ "T]LlE)9l^L f?9r9'{) n 1A`'o `8 1q1^wؾbdvNN`{gkTUIt:~v;L]J:'3O, doxJf+ '00A@G3++gV=/ovW`g'9 2;kLS`2~s9u@tz5 `2GfUs~ ߩ E7qUv_]ll  :k?3p+l?9nmY'X*$ vM-@ˮ19ڀ!W:W'64-֐?jp fZënUი0mڬΚ FV3*qq;w3;?2^G~.OؿV:;l,ll? F bjg4/UkXu @ w)¬`՗TjI.v:͂oh۞lҀ("'M05g|>z9Fr_Xo+$M.:w%VKyC*xD.acO+60g^R㗊eY$7)ë94 Q،A) 2\ xEyb `md;&|\5d]QYɧHyD&rʇBP&o72фaP"*K(S[^Yՙz.h?⧣1j{?fqaO*B8rv@ ~ElC zqLwOG]jPy^GmX!Ҝ_do zmA.mE}D;Y.U|g4?"KMA[0@)+ R) &̵jQ;*zTlW)cYbjDvZ%cIl'aJV4 ~U,òe_RˁuOr)G寁 ׌+91'e:C]33#Vq|i\Q4 rNG416T-^7 "йjpc~o)7 }v2)hf-Šel6qRl[`jCF"I@F*DYvL{F6y6PGųndc| ܙEy}/+ۿ Q!4 @F3#*)|ȟFd?]=]t j󌍸!>UeKeҹ{՟_DIķGJז;O\UG]QoK1¢vAJ}e*F-"񯷩j9ϟ06JSkrQ{2;MjN'˶ #U5]afW2JX㜡w‘#|i(BSLlw^KH<34[JB s'çD!"-ZYB'1!-v0e|L=1TG+- =mQ⢠!FTҼaTPbިMy ԴYz8հ)9.#H=]F9Id]!c PXXɉΪ暥fmU=Be] h&dZK#jŹj"gV] ߹x_mϓI#b`@͝'B6]:iJט6M%]]5܌j4D\;5a˾i;Yb$7(&Aq&.}H,mJhKǔ5~B l_D;|P' s'=4moG/1:3 ߨS|w.4npb#Lpu·2>M SuL\=˱+h0 v`OtsI E@a1}}gv+JVR|0Eh̜\h^1->FPjG>Y~EE\jyC+>Vx!F_X{>kQ&Tq7Պ8m}g_hx/-a9/pEq?\uz{)b]p"ގydsw>Tva-7V?VV6d 1LKJQUxQ~ ipo S Z]z7KwO. Y@71K|ە }wcg^׈У}gsZ n~G>u*ĂJcT<4K)7m *ν-*av1F+h뾺>҄~[v4=aO4 |%{:!t'P-WEm!VK Xѽ"殄-?:9@?~cɟsC#] )зXPzIXa tHF$|eބkΘF~gV.\)}DQ@x q>=%BGŌFɛ闯k,Wã*6|guCsjOט&3)r7+yؚ|?meWtqCrbT^H>c9,vg.hKcz湳w3plȺWM~vY/˴o >^6q&̦To4^cGd4Đ[, td#ru{VlqtP)K-ojh!*oMO m09AFtVSH0MB U0ӌ}3ş' )ChED^1ҷa(4:60ZF9K:oϩˠ Nn6UmS,_7T` Q?*+\ $EsőN܎p 7If<0"BpƳåYG`4 gg]S$gF3eKHzۧɱ=3yA(IQa::K8,uxY㋄Ϛikm:][)T2/fl#'.x4<1 9STZF5BI#0bK+ʅ(' u1{nh˒eoc/AzLjl~H/[T{ʺ->LL >t/Ȗc> Ɨ?"qYnDV0/QHRsjigYFS(I((Qg/aNq_et`55c-t\&)t1c}éf]pQk`lf6k! ny/A&Z^WB9Q5>rhXiIrNSU?;pM/Fؤb…d3ԗ ؔ}@@A~b#Ѻc;I6zΓ&*[ $8;)~8wtڛ!i*G3dI+ZXfX@%~Ft%Lg:kG| {+y+o0iR|(H N"$)5a_며wtN (]X4j3,o`\}s aLQ.+VƸH=DAԋx@[_GK)<(\ٙP+ّ-Z@ q4oM\!-+.[,x*T W`]U1Vbꁥ ="6O/* 60Fշ7;`qNb]1נ@iw=rx(]R| *B@tD='O!{Pf-mhnDcG; W\g-jw<_ULJh)VpH[34'f}PڦqRHGFMVo&3[F8dNsB98b{KT8K/]d@Fjr(/Bo_rsj>z4&6$GԐ`L6/?~1>yʉ:abc vݓ*P *cd^[J&8\7,t?jԗ`bfD+w]Q)Q0Ӭ:u%{`YuD2QLH}+F>IA 4۝DML^6[vR`b¶]S$,Ud4}}?)U!3O`4V ܰN3ViZ,Jb@7RI5P+ȇzyݜ̽U1t bmYj$<}0$D|䒖޳p>ɥ܅%G҇  0:ѠD70WrO#,kM&|lps(=&r{)SY0m>2Ný^lx?IHZB_$M;M[PBEx]Szr܀ma Ġ)tyTH -+El2u&)=q9ɝLRx`Ҷaw(4,+@^GWL0nc@qM;+F+ \кj;%h@>@9+g<0L ҅*^z _sna ],LqR)*#s73' 8xrGʇoHJ']Rel-o&j{T1:VD._CQpv\LkT$M_)ߺ Kb>_L4{*JO)֢\Uj wibaMxSY27ۻk8f{!- ^"Ul!$D bu1ӍSm9[I0}>vܙrs^Ow:EiU8XS)GޅX#KSb:*&?9C3S׻n߷2,6"958"|TB3>RK6օ2 &LiV.pMxP,߈*pr^ a)_M4`lGQc-z~  Hj>1G[:_{튫>Tw at񩲝bc3AE n6<2QVo$ﱳє'yRtS?ZGTr=ܪuoj`L aǮtGw^ =#'kJ2ZSn4h}_W=yے7[+/ƵW]g5.-WcǸ؂ѓA58`5"Iu$,@4]JZ\ '(tжZ<91 ~ b{z}{'7'ҩ[!=!$![w@N34lnJW9Qf^6LiRX9rLߵ^x@X},/:1ge=q8!@%p ")r҈Ġ9+UrY))$q ~tV5}tNY~Wµ3sdO`D&,fPMd{ěud}<ք*)yuiTfoTpϠU{[*er1T%XK8}[ߑ9ZsFf/FJQ- =- 1Y>Et2R8mhF lߤe!6;[wtԹr'!> H-SOQ ]|tmu`Њr+$ᎼpS`^ km^"E_*9Oᔄ8٤U؇:+^6Au㿡 ئUBBҶIy4~<}a kp(J;.$pM҂ N 2m?dgV$TmWLa&`㲶JB^L||tHD%w0l'*fzEP2 Y\O^z$^sFT0q56N86xofReGBO/"мtfZw=ω:+ih @s=UnNƘFS8Cm:g ,CKku+W$ڃUzn>ܠeW\h!'"=ƨlZ XOj*ڟ{eBQx^W{0iOnBħ,⒄w6}6OO:6"i&N+$ czC!z{prZ :b~=D3M-6;8QҺ= n ]-Ul*͈*fi0+2avNʻ^- dFkYmAQ T$jY7 ¤#F:D INtHR cH.MCcaTaLъ695*p>.$a"uJZmYF.wvi~(Dzhaa?Qd6Lɥ'G_%ܼW-'+qjxن 1Xt;aJPs'Ք'5 )LX HOkVnZQD1mJp4%o7՗k f279ަ@0?|=8 @(h zZ)^]ވOf}kE>83iYb'Y˶Я"2Kw\ 㩖h٘ڋ3 :iĺeevm%3HI s]9lphLF#nlA?F[:qތgO@`PIGޠl(KROUf沤T0ԩOo%_?w)Vr=f4bw 27s{"={!sgz(Yϕ)M5 5"B \C1=}8~[{ ;2 endstream endobj 4214 0 obj << /Type /ObjStm /N 100 /First 1031 /Length 6215 /Filter /FlateDecode >> stream x=[o7E|n$ȃLmmɑ6_ gXJ,@tᐜsqlQFWHm <6BaJ KbY8!P*l"j ]ElBRA’|7׊ l,0 W[PR+lB) )rZ廮PPyn(tIw*仱R60RiǁZpCedDNJ D``%4"P08gEA"2V3V9,*C8Nkh)3y\E—aY-_ BF2g<<SR2FR@MMp0C&AiOM 2 4-d@V(xbV04% ӌ UQ2)m)@.Ihi(tEmťyMY5Q¸ qQG?Xރ;BAf8-v3rAB"a@q({9"]rBCS/Q@\R=(m =80X 0""<`N];s?(9!,"by0s#(rdUa!wK*Ad 4%~R? L&DD 2G\ m/7* 1G(Z:/į@ 01ypr3^ *ip>c|8 ǎ=q< c p4Y[ 2CԤ+W6]c "Φ XO?:.ee^$[P}RUw[d̝ n[p= 80_'B  K8h m-tV (nb/&]v$7X*ytz l1`N?~HY\^!y˸+`BS!AY8ɛHsF# ˲R:4% VZ"oH amLűڗo)M;uʾY7r9ߊ6Q-O#c ᒵu#ԫ#E =>3 5IЅ1@mG& ^ LZ$W}w-Y`x{7t@#EpE#]*6ɲX"2>S1B Z 5Z98Ş@C-b0"ȩކg{ۖV0h-7 4K28;Gp&Bs73dz$0MGD648 < 偬< =rvZnaThJn%q5xOu:<$B )Y dB kniƬ SIE<(}i\Ukl2$kn>mE B1\9uhdfI! lrFV?8Ǵ,^\,<-"A`5=`&U[ HF:Z LQC (,h[# ~*slt̢+Y 2+v2$.13QCZ)bcdix To@Kq+P(ϫaM%#{ɻKNf6yZ a$>&`Aя4YRTK#rr;84"<d)uIX4#FL} F& lȭȲhEdE8tK$c.a ?lE,3V(bx%`s;d#{ioiEIݳx&Ac)H%Aqh8@J R|3 ?h +11EJ`h>XJ dȱyA {)DZ bB 5V*4=Kvcq;RVi(>t7^G6Ƒ)z ja(8* =JJ2P`SztU_T:wZzLgwԮdS9 )k=0 yIb"zdXy*#|GUJ+ Sx$)izq˶3s.|ʕUvӗ{Z'K*Sl=%yiM#t=9JKbmbH- [iK/E|f3?15n;OZZyU-]C,sa~2Ln>D{k2s~'g\!= B _K0PeC2Du`{l d)KZ\'WKʾnԓ !hU=ՋgM Pt VQ`a4e)' `Y>g.qűzuS(R?hLU͆vf*jّDayYSvjp kb9U:r@03yYal miY"r.aS5'3~0W|~e\zC 'GčuéeTUHl 2>29\r/jʕ,¿K>ÒDa%[1W vپ{KQ7Y7dU 4ĊFiK5RLE&>z<3Mskq|{RaeCR;[21IR"B{>

:|FE"*H|xt0G#x]TxA)KN.Z䉕)8I x(|2Gɔ,[ I?b`xRbm;WrU9}F:{Ê4mn |#O/dm$.{C :fW|27Npˣ_?oOnf|t0n׳ɗ#Gh58st{px].={de·7M=q1n_įifXpC\W7fMx||y>{ 4 KKlIt1vH$5i]C8H<^I<ũx!\\Kx)^_kF {q%&71ۡ *Aja8$>#{%>ވħ?>Uc1q+b<Wb"&]5M>}5`yMq\LItͩY;,=}`.柦U%LĽ]!?dAaAxM#H'HįYO LeB_/F߷#UR\>tBF?|q-#tixVdܷ3#VZqMUJF QIQKSEPTm:<:W7-6=TeK$-ɬ\CZeN l"->v g9h1CN]\$g?p\L[^01zSwXe ۉn6B17l&n䶺~+A#UAIRukUGzmX6?f~uvvaTMh&!Xtx[5'l%"ղafo&o[}ވ6n[dȇjLQ_OO/O2_ޯp Z(a' g{Ϗ\.)5։dGE8b6M]Wm[9am%S m6g3QvC 9ʜmO m哞AVcA#UBnN;H޹(b[7?SPFG D =wʋ7t25]no+RС< 8VDd۽2$ Z~+G3k ]fXNl7'^'z5snv uCQRZ[Y/2٫&{eWz,}@Vկ??h`yV z}|![_N_^XA) +7NضqfEkNOOOR4 ӚTܬ\hNPَ:pKU.}|vR! tIJg}MSK^<)j/ |?RT5Sl;5[n1e?ƣv4e *[j>L~[ã..raI .3t!nB/Ϗ_u } |=0 ._N oeG<8"dxSkC5Kz5(/g/7 @:bj&Nae[9_^tcF[6V7kWo5UB{smRAsíh+?{5@L<,)v>>I@Qʩk(7X/>-()<۵GN69nVW ;a, zO޵XVlӳX7{jnJBfn=xhvWdÕãNdOnO'q ]?{5O$}?%|DOZ(ߪemscl"8^_`Zٿ!`J\TLWV{?W5Uu9e ruԇW>rY|#mndB endstream endobj 4304 0 obj << /Type /ObjStm /N 100 /First 990 /Length 2570 /Filter /FlateDecode >> stream xڵZ]O}_WUUj%!B`a6A  VUc{c2X󐨰uNE3.?kA 2MNf#CO!Q'< Sb< Xd`-7` ;u B~dy!r-Xc.ws-o xBܱ9l0p}ByX0R6 6 [Qp%@| "GA"N,|.r!dHB%l#C4,cL1rYa *w|1(]_4 vC(941Ĭ$ Ŝ;R M& ,;,6{IAgHM*|-3X \fBU"١ɬ! bd94'N!WM8=GN\j`rfuي&S%Ê [ِl! `Jޖ\lIȚg˳Pf%q:DOTʶb[xd,9C<-dԄ|B)g,2"4CBle.U2xR ¸9[J?b৩T+Ag$eooٿ?Ͽ?E7ٛ?^;f`w?'ҫۯj㗇O |k+psioSvZ8\ͦ{yot|]lmv;|wg 0wzo;|a;|Nx{|p7lٕ CtW˗t]jO-罷M#K x?_Mߜ+[`pܢˋvzY7=oo Zv];htWfb[Z.xwהziR;xz2Tz􌴱]iK{) yYa[Y)ܓ'&fWqm݂O.".bGv-68{GW{~pX]m[*ݏWުC+ n[æֶZa|.KwK]lIYNO/ͯr(m=۱ʁjvxq!k+M`mK@^S?8}>Z{?v˃5Ogy2NN}:{%==r|6Kums=*ccD߮';̏ᚭ%UG' zS:1@ajc PYDԐ+z5(IzzC1Q͵j*O/J&+T+dՐōb*8AN^ hcPT Zx!EېE\^ ޢjx5u *"q+I"yLF5Q%*HF@%}'\\`G56UBIyJƠ$e .Bɪ[+Uv dPڏ2J}d0<*nYQIN~ rքbjq+̐fE`g`3s :JA^hӧҕ#H-H{ e7J %jLԈ/h>aĐyF(TԽ:u }&(IؤPI^ uHHtsVY5,i ҆/.](,J!ZIQzB(IzI֠d;&WYve# Y3#}τ8**B\e- Ez#=WP /<'2Mf9V" Rgjbgvztjw };sF&wX_l =HX㠰}1t{sWV/hY k{ґ7O׆]#V֣WQcg4E]ѡ =E˾WCR㥿_~t|>_+ښ9}ѱOب/bj&-Z] bUej"2_%Ф!,w }F`FOx㠯|#~_h'oAᡛn|' /Ab\JtǾpIڡI4@IC//h }i& nM$]#< hP! d-)/ۧmcN~"?@O endstream endobj 4316 0 obj << /Type /ObjStm /N 100 /First 884 /Length 1858 /Filter /FlateDecode >> stream x}Yˊ$7WI`'ca Ɔzd&[a(efdDJ]oi)mUulEhkmy?mukX+lִm)oܧgL:#-p10o97IvB2*,fVXw-cq%,XTqQ'і;޷vJFDE }mV<U#b ᢸu<,T.yP2mRd#,ՂŌ`G t@nҊHJU+FQ  R "( 2Gh*d%U4Ȫ*䆙P4CmE!"@Q4(ӣh@b 0 nYEJ~NxeQ4(uv:ctբG+ߐ~˕?}˸GK?|sIi*%[nknq\b2]LV\(DU\2 Vc[5_7@sA v}=vj$;R%"BLeD#I$ڣC$lgGR#K$,$<3Q$ lTDuqdQ hG5GTQM)εGHQ]tɂ ̎xrbėEBj6;Ω;y 8Z%;Hlj>wч;>eMw$9r+rk3:sr l'~щzN~$9n3G,jIzx|@Km͢e}h||rq=:FbI qCjwN`&P]i"5jWZV r:#$jTk^%SNuj }"|-Fx⯭o!Jw>Qwڌ!)²vH>W2⩮r#di`"UtqOcH눎,M>_L<rlgZF;ܣ\&l>Wr2̠lО`\ }ip:9ttTG/lBۏȝV+j#O@5ɟ9rY'G:s$bcN= 2ɟ')ڈywNsܛ?Y~ѼٸN6~KFf:l\FL\N~pkˉ"(f:n7H̢l;Ȣ,Z{tdjP:51t yW[+-NPs+i:yx+|DS9<^uΕ$Z'\%f:GZS99jW'[vPYCZgrT={"dE+^/B_on2FSr*\4/p]/hU.WXZ\:SMV"Rr 7]XT(uӤFVeF2TA*:B\j2(/s9Qj$(VDs-K]h q/Kq/b{vK=q=/'=GܓqOKqd h&c6?/m~ns2,JTDӡUtv:Hl:dslqKw ;BzMɿC5cɘh8_la endstream endobj 4317 0 obj << /Type /ObjStm /N 100 /First 884 /Length 1828 /Filter /FlateDecode >> stream x}X$ S Mef` >c_`sX06?#*[ʡg?Zŋdr0C{=(^?«rT:gV>C8V*:ZqTU>bF H``-^!D @U,vP=!N4%gS.'F%Hk !h̋`1M!;!O+ϊ`DQp19;p FNҩ tĐH/n`@E(Pc@  g }\`@=A c@=!c@+ E1c hp|x14Ec@3a hv)sX5ŢYĔrX/C IN,@Bjlu >ਃ-j @У*f"W1:>¶Ƣ!,lG+62 ֛*pp67W6J71X#Y1e[㏯~e.}~#K1׍gbi X5\׀ Vo9֝]lؗG'ئҟ_~m|x߿m)\R- A\wX5ȐU]9֝P],$z >CNu)bNmi/X.+` 2hai2ePbQ,E]B+[{8R7'kXk[%ܤ[ຖtQg8ٸ2pdo%]2|N8[.v) 2PbO"x'gV}{KX-X2sźBLOٶ! ;T6eNdZ(Iyw]>ٽn1x?_-gEdPoQsa$Zu?Pynd̳3ϲ ̧}3O@+l=g[O6m.a)zr˖`ӳˈ6-e}L[2f7m>m/ac͜y37so[, X  ~f]"μ\O=>{,5݃yOfnˋ.u9s]vuy']!o?mmNV܎پ*0jχr̋/\؝'^:;1/N`_r_՗EBvvro?^ܾ65][6}2/ $ev[ŖW Cf̋-/X9ev[Ŗ#5`e-3g_1~̈c;>|~s;;NglV2dt)3Uq1ACX=#gsnzϲ]y"=>·'"uk-¡ 5=i_T3_yd ecY'ږ_ %i/ d.meC9LRAkugs2(}^Y8{k%QxZ%U\*]rPJ . Ү຃ rH&;ghMpvBihvriG{ SF{qˎ`ҳi/;ڃG?Ǫ endstream endobj 4318 0 obj << /Type /ObjStm /N 100 /First 959 /Length 3709 /Filter /FlateDecode >> stream xڅ[]e9}_=3;UDQdڡǑZ9''k>ʪJN8MQ!!5RQCX#xzlO)ȧ͘+GG3c#&X'cLcɂ%8ϕ,^4)Ya cJB{G\y"i3a}d>Ghç~_>~y~oYoysAd6վ-& >]Fᣒ[#[r[i-8 lpLn#z˅l`.Se0~B-Pp2B@\a 2LW&kla:g Lq48qE#̓_Kf[Qmj@%6yJkJ*lܷF}D@۳6#Rj%7e"7D(Q*L胏v fr[L` X[eF,m=_#;Tuuh hPU Tՙ=Au͞"u`jNSuFT3yLe4Ӛ%n}hB;ͷMb2 `8"ca}+'yIg"xRj"B]cUX <\ *tFg:#99҄I.ߞ4)ڱJ40')yk|lL6TK`6,8ǐT#χ2S4:ӒB'VN0Q uKXk<5kWriIrp 0  z{6[+3Hd0 JL6,>ᕱaVIV0EYgSaVwYSP+"5Z W#SLQaVwBJ3$qMt60 |ZI ht6Hd:D2 YnǏm \x> nwMn*< x)llsqxہLȫ'[ƣ#݆|S\6 Dnqm|"Q ʉː0[fGPܭP]r+ī6}x6ܠFo"5" *5կ'El4V0fq!Uzscuwx.qضmPpR)͑vJq "MDڬGl 28[!+ !}'oqަ]qqf@pR.QGm΄M#x6tB!My^E E"]JvnPeD^Se|߸ۜxĥНT60fqe^+%gne\Ky1v;[yʗV*qY*ݥ d Cr]K4} WRMh1^jPYdJwR+]iiYEZ^ZpY3^ki|_OeD.j/{Kz좮¬CnIe'K^vB8^LfyH!wsC9qn!rH)h|)<$vR ,q+0;.NZebbb mTQG7\cnD*llNRf (Hv2wu x6hC)F, EP3bvuA)Fhb 'a7!((mRl rPP:̤bε`gLL<^ 5@$A)FmA9No*7z9ҋD&j19^dpSA!B1z@\qj(#y* &&33q 5,ڮE{ 8R԰SQGQuR?M^{ &/64_ 4=C\g+ %qd#a2ff/QH Hq"}A)n`n1mx@) RE)Vꈄd [wH Rls6(aQBJ+(!%YO)!%oԐ!%D )mwKDbiRtEI2(aw pcM^AJ $DWtuXi 4gT ѭWKZ $ϛҽ>HXyw?&^A">QA*罂4+HD^ mVEr^A5+H+H*ziq" Aى^nD&0E7^A'DWz]^NrxD,otF/ UmTRj;ъrS%E R[1*HvT馊 R%Ɇ Rk!Xv J_J_ "DCy}0kì)}*50U1M)0 5ymmy}y7?Q ~`>K M}_?}ua1/e>l`k!biWt]`ċkgnޥyCƹi +ޓqbb [FmwANhFct90!ņ1y\C0Dgs=`#s|h\06OKKO \p57-r[~2y~/j4*k0*z\lB^n,{/_PJaez.;&Cjz1 j ; ;>OkZ%t/ލtϭDh[ fCw/(_zHV" (7pǟ^^y ʻN U a&e>qgZލL :K,+f.8M8MW~"z{n`՚:o }=;qoW/8V endstream endobj 4450 0 obj << /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.13)/Keywords() /CreationDate (D:20121113204004Z) /ModDate (D:20121113204004Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 4396 0 obj << /Type /ObjStm /N 54 /First 533 /Length 2019 /Filter /FlateDecode >> stream xڕZMo- Wh/jK$%R@h6E?Ѧ" 7 }v%j- 994fהam lS%圤vT2K SڈRa6t;5V# IP+ۨ'tTr楔PFF Ve:Fc19a?ITa\Sjŀ*YMJ 5J浚k hu^8q#I\pQG#g4G&nsD-WDcS`d0(IʈIfAZl!*IwV"BMK"*P5IG\˨铽Zo{ӇK7/>Ή!C(B!!M†=ʽĐ5d[d HQ"!DD& ;Calٷ%sTK¢UL(ݼI>6Xu"Emch]]_Gm~[)8):EGH+`Xf#2)Z4mѡX5gLjP LL7iDHjgB˅G^4!J@p^ љj${ HACHzOjR^H-G|!dHjHDeVͱ&;%#n:1KDŪPHX,(U.Q8qda tfs$hh,$(-T@2 9>[EDhwn B!S sځ d6GFb>Y?_*{XA5,F'ml?{wT9ӁoZ٣.7.Kz~=rT~ݧvܛ_]oݒ5eZ[{ Yxv + Xl[[:I!?K #,m x$vWTϵ@[}h}9m!`v_e [򶽹y릿=},g\}}!LO'\¦`Q:kY£9;k0No+ cK$pY&6箽= `*fvJ<)my<*+< C;'ҷWzm[~qZ[eZY FrB-.cTxD+FBi.myjqj t&˝vhFK:-akA0ZG+R#KcKMc 4z+l__oFi.3Æ.2/vcS܉FsR%I!KkD+Ԧj-C6ӢSԧ;[URU-YURU-YUSi}"|)[Smo+ P;!^vLBГfcZsw}. 0PK JO?%`5|鿯vŘ6ynNn~N4:T- A#2:et#g6//zr'| Ap9W\=syTc^cpPꬫκzh9c@}欛nκyh-5F2nN9i`CеA)Sf̞:v^HPnv'NQ?'-NZKyIww= ÷=5k)mCm>zAэ6h>`WD*.₶=x| W>}pꢊ*.w%]iϿ~ӟzhȷ6w`oxOǷ6۠-g9':#>'oxofC519Hա//j0>R~}?<>闻ǿkNG8'~{Tώ/~ <937455059D4817FF32A6A7C2F3036459>] /Length 11152 /Filter /FlateDecode >> stream x%yx[iyxbN8v$vK6'N}q -%(0 mRW: `fZ 嫦i$u(PюS(=^4} `#0Z&mMn ؊vGm.n}hWє`'5.ЏviKw n[hwZmp؋FΗn}NMKqZ-ƒXI8En#hhc` :DCKch+Ѯ'V]!< к.֡]"g֣]$< f6] <Σӥq .2Z .*4^:N37vto &Tn c)yw!ϻbvG}|i.߀6=<>1<>1GJS& <>Ye SuiS7AbS4PKG)+&34<+Rh4FK/OWERh2SuhRymSh4K)f4%ShJ^B=߃FCD)6hC{;FvR~14&B_tهΠm#TCJ8u4B݈h'tiЦN*΢c)ywhS.us;`/D3PFkQE} `#&M`3t부hjA^ M#dl؉ @ wW[^!9=`/^M8 q q? Ch|nh. GиυY10}.\'hgQp ,\%<NSheS4ppAWA"Y0Ưs< O0y}pIҨQ35F(uY`kTrQ5Z;T}N:-p9P6=(=Z@%P̀ mePm*Po~@vj6^@vP3CJG5ʠ-.薌#ՎjvP)kn&~Q5\\&P5|Zç5Jj4 5ZHM.A ?h'?@@D@3@ hm`XJVmsovX紵 kZցF l[V z@/>@? {^0 8p#` p'8Wox>$8 p̀s<.K2k:7Mp m0,PUS TXXXXXXX,pbfTATATATATATATATATATATATATATATATATATATATATIh$W1C_GUx `*b*b*fb*fb*fb*fb*fb*fb*fb*fb*ft-7y>[avy<ɓzF.!> B3[zZ:xԣlDh]`ګnYg@:taWf}x)PW cr~ޠ'c crfMz>I_$G̖_#c(bI:-&'ֽZxzT'bYtUL09m_8/ 3{[0y觥yckl"MnVG 3IIB*àǵ#|K#zt3{:O%#:hlc8k_z.[]8O3ku7@;m.iM=:wnyl{⩮[ݩ. hujOz,<\kiڈ4H67J{PoYCx4`4FJXC9`^H%#Ǭ2M+S0v4Ick86/i aL@[QHckVÝh7ꫥFwQxk5n^[PH@FkԎ 5פyZg kG j cX VX"ߐ]wK[6M'zRV7l ڱl=@}@boui%1="uэG8޳5 j e5p79NطM=Xgik6 .k<~iNi5Nm֎K:Xh57q4DmzaTgHZhjZC ak|!i_Zg<XjYcaa-i+~YXi4=w$ ]`5~ f xha5~+( -A钆pk|4k =spnZ賦w:cB5=Xj,챦pkyHYPakEpnZISG)VY8fMc} tUdAt9Չy˳ځy՚^zVYP59)GĭwJSG]:ԣxǚe~ ~HahaPoM;Pz=ǿ@]m fMӡ-eǤ-ÚKV5`5}d|֚eM9gu?`k `#6͠lݠm`;v~ޣ}9A _` =`/8}?׼K-pLQ n;{q0 &-8;d>=soqwL= 8 )pY _0aotpEp W,8Cs;ÅzUp \UwO^aJm ^SͱU ޚq[@AIlBl?~뷆ϵ'1z2p{2H$MF-?v|>PIΓ?IyHM\-U< PIJ# ~wൠ X9[𓏸C8xu@$$bϼ68< ˰mׂ/+w(HFJIR8IJ-P8I6I-$A@U$^ QB p|Jq`>%(TE')$eH6ʠwÿ:[+qZ7b$OT@ H$)$@6;3W2 Y±/8lw2pD޻u,p=ȿ6hQИV MG+pξDmr:@'XVZoU#>,tew:Nt `[?T86`^vl[@/=`>v]z{;<Aw:~nrCQ9̟4rBnPC~Y^Yn1 |LL30z}q@nn/#ܹ)gOwx(IO̟9| r>s86wor hQ⚴[դ.,9,k?w!?#s- ߿]!mvgs{AiuWRm}9uWo|IZ,  "  b V~>{[':-w/!V.l9~g:d5XͭR?^4ToM` `̝1/"s,\}ޝݡJwÚB:(iPZ1w0.Ȝ>^ }8t.WL^CSEbkc` p,2r|,%&8 fEҎ3,Yk##{\ep \W pZySo?Rn`o"(' dL;@8wgy|K(NhWY!-7,ZݪY˸ת8˘E8X`m{^k՝D˫f-FXE˸" 'ڋ11˸mA{5T:Y/HÝeUeސA8"O4\Wf=NY+>˫^0\y2,c9xʗymwa?N ا|͚ש*c2N,,eV qk>~4_sۛ_ry| q\٠-Κ^&4hAQ͠x fͯ~{׻8?7Io XfͷZf`%X l N\`k#X| yk~fwMVk~/Y&@;vv v7`|A{ wj3zs5G gA{47(`T=; &#1<'ia6348cO]wb3YK:hz]]SoQ8t/: f pq?h}^ x [,+'+RcUi;V0fUd;VbwV<{·*,v U_U_U_U_U_UYeuRbї[VZtf4 8sLSakOhn`JE*Y+{,ς*آr9" T4E6j?>W*c}pB[tf JMTxt 6(}|ɝ3.Y+)>9W-W*&$~{Wp] f$FT%4$%Aմ9{< M ۲\;A0l^Ϸy{>/mIpļ2v yp¼w0Wwͻvh6\4ߔDi,M3 45`ּ?&MV4y|V]4\.E=?dUHKC/EHBsݡErŨy_z4h~yOxE _nH} 4_ ˼o {Ay4 '$oqy?vl*#5@~`A@jÀ|,7&.jaw"[C׌G-ֲS@-jV8 "X<p8Y8meX`,`9/XltN~\p `Y#oy.g; YMWkk44 haFր^툁vVNk.)=`^b/4ai@4a>׎a0Zci(M]8 498Д@NM?tph9 \Lph 5ā n8 2xY\8sA=&zV1c" UsZ=&ẑ1ocBL[)ss=&z1cbnja=f {LM1cgy=fR{L{1)c4n=f{LC1cֹtty=f{Ly 1IcǴz=f{L1c< XPc%<&Xc5%{bOIw\ݭ8Q`Ɋs cZL{1K3xౘ*?x `JKLx=(jXxKEXc 54<Xuc9u:<P6v@ 4 0f 2t`X ր 6` ^ l}` v~0vA0`p#0G`qpS8 p̀s<.K2fr>e}DijD[7Mp m0πXg~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~g~gk: r!r!r!r!Yr%Yr%Yr%YU_7,{_!b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,b,:  u4F  Ax Z@+h ~rVoZwjk%XV5`-z `#6-`+=lAv] ` =`/~p8 F0G1p'8Nip38. f pqṕ;3%ESd?ESd?ESd?ESd?ESd?ESd?ESd?ESd?ESd?R!ES37|<`g]EV|~,3lg@9>}f5LﳸϏ^?>c|fuLRy3g>(>}&j,$gQ_ﲖUcu[PE[Y@g=->w|YIg3|VYyO|%|3ogU5p|̾3g>}fu<1y3eg+՘|Ly3.g{>}aYxſ3癠29>3x|?gznufk.7OOOOOOOOOOOO(ֲ][.)  N ̐PgfH`fH`fHFBY1'OFc$pI3$0C3$0C3$0C3$0C3$0C3$7u}eꌶ[KXj렵h됵.jkzk밵X[Ԡز?֘-{kkܖ}ښikҖ~^[Ǭa[{׸NX:icmMYTS]m/ִut hu0P@ 4 0f 2t`X ր 6` ^ l}` v~0vA0Xݒ/*y endstream endobj startxref 1555532 %%EOF beamer/doc/beamerugouterthememiniframes.pdf0000644000175000017500000004317012050430604021064 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1273 /Filter /FlateDecode >> stream xX[o6~ L"7+ZlExOQbaC8s)iw.ai5FP+5\M*2|8Edr\uMsA>,pq"9"%5 uU:g -]8(`LcvNJY|M2CShɒt EDI5(f9n=#X0xu,zOr JX utXt%Cl"rqÖ8vHǍC$h$k_tծ,  'l#CQy|5䚉FH Zp50J3%^|3GRJIz},p߻i7$ø19$9."gBTF b:Q#jhJ7ExGhU"RQōP*Lzrx[Ӥ)ܟawhs_% D)گ _+ul|zG]Q~W)Y>q|ҧionKOdcI*9,Gn758X (YθPJDrRtd$r5q =ȲY箍s #8lr VwTBhu_N?04`LgI^٧ۧ{uDСx55 -FTQ#i?vH> stream xXIO[IWhN5$(%-O?Ul4A2^w-_-]$HGΈ4:rarJ._:RHY^6Ny#.$pq"y"rL;2@yUz1jeJg$q;'dw9I:݀ PJrd<"xMI5(} o6Eƨվ-! dOPo(`}Y@]$#2ER #!0eGL}$#YH%=k?3f>Lz@V#\2"3c4 5fici9 N+_,MrQ섵0nx\IrͼA 3&*, ☒Prϑ9y2)"Sp#kP4I"SŖ)rUTNfISx8 9L}?),PtA'׳μ2nO/zc / vNymLBY̼-Rz n-=Ueo q͎%oA =-f9obzBrcMmfR[pK 1Ԡ}焌7_hZ( ߿VqtǏtu'G#yZi=?.7<9Q(Aqmuz5 fN@@@ |=%i<[yܾ!^{_b DC,oมLh6yF }Y(V/٨[6uFI_Ω:x=+Ԣxc;@;ų#e83KHιn#1#Ά1j4븥R]5 >$Z.bL<{] <ڕ]E1ƸI <4u7f5-%`Q2R%p`e̖h <8z1ufVS߱evP 8pGAϋޠX*gN>UtCS}$Tx2AgHc7h^ɘHC•v۶.B<,5UgɃ%:F@;5y|l5;;lx|&?S@Hn{]"/lgXUU|_<_MQ/RziƵC h~g^} }59{&o%1PzdB|wqT] qw{kؼcq3+AFj)`c( endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203947Z) /ModDate (D:20121113203947Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1007 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoM7$E!AI-)(^HzAR_/$@*]2% "!)F}T>ɚT|s_J 8Su7:oj@Pu]Uke$zW X!R5 ⼆p8 W䕣 P\`q)'`M޾4'MhFCJ\X+*n`F>nSt&U4C\7e{x`*]losǫ90n#H.\J=BB͌ xl ](Ruz{o@pa(83֣y~sx͝FMPtY5VJD버=g~K%-=>#p1.0nc\Fc:_WpEG(  n1\cb妭Z?l֕|.g/Ur0TG?rh)L9~#> =2^BP]tDr: Qf+h1vŦۭ 1C Z=[n @U>Ew)[6뚯QFs*_v} 7W Cx4|i %C 쥂::&\EXŌԃ>zRgN'7'W 餬 endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<44B1C7D2103A20528777A152C226EC2A> <44B1C7D2103A20528777A152C226EC2A>] /Length 85 /Filter /FlateDecode >> stream x DQX^زWւ,CdBF$ Ay<*8EDI,mmqsp  endstream endobj startxref 17705 %%EOF beamer/doc/beamerugcolorthemeorchid.pdf0000644000175000017500000004305712050430564020173 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1162 /Filter /FlateDecode >> stream xXo6_G8~3(Zjz7QqM`E#c|:HK4 RX*zȥ[6]B cZA>eNEr &5'BŨYR;2;T { `\oY i Lis2q $E*H 2"xCF @ᓅi0Zu*]r('  Lz tJ1#ER18!" S0s԰&Bn\"qd&%#I# [Kضbm"=W G'Db6 c$OЉ$ Ot˴,_KI%=u$m+M!29$y."g\TF ☒:Sҝ#IHJ$,Ф#ͫlEd3T:;ߐ0L2HfB*S@aMO$+Iد*"/rCx $O2)ٓW'%)%o=Y^kuE0vo,d{Tߗ ;ޞZBT*#SЩrUWǚ0W &Q .Km鯣ԲcŶ@8tB}܎V_W]s#[ {N3Mlo] ລ A-,oKؼo󶄶- +Rp/p_:_柅ziOrBh a`KSaS^w=Ľ])o"S{4v;7о?0±ZI&|>Ԡz)lXWLω6h/FF$&婵HHOO}>xT;/V?- endstream endobj 18 0 obj << /Length 1625 /Filter /FlateDecode >> stream xYKs9+tBqݪĵl*}abS F0 :YWaVC#WkkIH#+(,+y{sTdyEӓ7$zk 9J uLu _Wj0X{2IEaVr0?WQZíA0sNtɽxMNy#OApRc듟V~5״ir CK*>-onFx]h12T Cd{,y'jwCz{!aWd<ݑ^-!:2B\8'gW9?&eP#sIN6NZ$I)Ej2^"aOlا~n;W1P29$y."g22ǀcJLI5GI8S $,aIG.%o3:ʘ\g9xg{Rͤ)s<ܿa&Dhl?8Y0=ag;J>KE9D>gtX="8A/?i ^jTo(]S*e8zA3a9?r XVN|ۖ͟ ,\9zR; z3Ys&Cz5GM6Z]8܋ɎNFQcgCt&/L<9|,[M r(/?vI(KA8 XKOYG 9pepBz8?A;vX endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203930Z) /ModDate (D:20121113203930Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 85 /Filter /FlateDecode >> stream x˱ A@q- ms]^ݡz 2DIhPO*8EDI,u3IvǃkK  endstream endobj startxref 17632 %%EOF beamer/doc/beamerug-guidelines.tex0000644000175000017500000012042712050430504017064 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-guidelines.tex,v 38dfbd395d7c 2012/03/25 13:15:29 joseph $ \section{Guidelines for Creating Presentations} \label{section-guidelines} In this section we sketch the guidelines that we try to stick to when we create presentations. These guidelines either arise out of experience, out of common sense, or out of recommendations by other people or books. These rules are certainly not intended as commandments that, if not followed, will result in catastrophe. The central rule of typography also applies to creating presentations: \emph{Every rule can be broken, but no rule may be ignored.} \subsection{Structuring a Presentation} \label{section-structure-guidelines} \subsubsection{Know the Time Constraints} When you start to create a presentation, the very first thing you should worry about is the amount of time you have for your presentation. Depending on the occasion, this can be anything between 2 minutes and two hours. \begin{itemize} \item A simple rule for the number of frames is that you should have at most one frame per minute. \item In most situations, you will have less time for your presentation that you would like. \item \emph{Do not try to squeeze more into a presentation than time allows for.} No matter how important some detail seems to you, it is better to leave it out, but get the main message across, than getting neither the main message nor the detail across. \end{itemize} In many situations, a quick appraisal of how much time you have will show that you won't be able to mention certain details. Knowing this can save you hours of work on preparing slides that you would have to remove later anyway. \subsubsection{Global Structure} To create the ``global structure'' of a presentation, with the time constraints in mind, proceed as follows: \begin{itemize} \item Make a mental inventory of the things you can reasonably talk about within the time available. \item Categorize the inventory into sections and subsections. \item For very long talks (like a 90 minute lecture), you might also divide your talk into independent parts (like a ``review of the previous lecture part'' and a ``main part'') using the |\part| command. Note that each part has its own table of contents. \item Do not feel afraid to change the structure later on as you work on the talk. \end{itemize} \paragraph{Parts, Section, and Subsections.} \begin{itemize} \item Do not use more than four sections and not less than two per part. \end{itemize} Even four sections are usually too much, unless they follow a very easy pattern. Five and more sections are simply too hard to remember for the audience. After all, when you present the table of contents, the audience will not yet really be able to grasp the importance and relevance of the different sections and will most likely have forgotten them by the time you reach them. \begin{itemize} \item Ideally, a table of contents should be understandable by itself. In particular, it should be comprehensible \emph{before} someone has heard your talk. \item Keep section and subsection titles self-explaining. \item Both the sections and the subsections should follow a logical pattern. \item Begin with an explanation of what your talk is all about. (Do not assume that everyone knows this. The \emph{Ignorant Audience Law} states: Someone important in the audience always knows less than you think everyone should know, even if you take the Ignorant Audience Law into account.) \item Then explain what you or someone else has found out concerning the subject matter. \item Always conclude your talk with a summary that repeats the main message of the talk in a short and simple way. People pay most attention at the beginning and at the end of talks. The summary is your ``second chance'' to get across a message. \item You can also add an appendix part using the |\appendix| command. Put everything into this part that you do not actually intend to talk about, but that might come in handy when questions are asked. \item Do not use subsubsections, they are evil. \end{itemize} \paragraph{Giving an Abstract} In papers, the abstract gives a short summary of the whole paper in about 100 words. This summary is intend to help readers appraise whether they should read the whole paper or not. \begin{itemize} \item Since your audience is unlikely to flee after the first slide, in a presentation you usually do not need to present an abstract. \item However, if you can give a nice, succinct statement of your talk, you might wish to include an abstract. \item If you include an abstract, be sure that it is \emph{not} some long text but just a very short message. \item \emph{Never, ever} reuse a paper abstract for a presentation, \emph{except} if the abstract is ``We show $\operatorname{P} = \operatorname{NP}$'' or ``We show $\operatorname{P} \neq \operatorname{NP}$'' \item If your abstract is one of the above two, double-check whether your proof is correct. \end{itemize} \paragraph{Numbered Theorems and Definitions.} A common way of globally structuring (math) articles and books is to use consecutively numbered definitions and theorems. Unfortunately, for presentations the situation is a bit more complicated and we would like to discourage using numbered theorems in presentations. The audience has no chance of remembering these numbers. \emph{Never} say things like ``now, by Theorem~2.5 that I showed you earlier, we have \dots'' It would be much better to refer to, say, Kummer's Theorem instead of Theorem~2.5. If Theorem~2.5 is some obscure theorem that does not have its own name (unlike Kummer's Theorem or Main Theorem or Second Main Theorem or Key Lemma), then the audience will have forgotten about it anyway by the time you refer to it again. In our opinion, the only situation in which numbered theorems make sense in a presentation is in a lecture, in which the students can read lecture notes in parallel to the lecture where the theorems are numbered in exactly the same way. If you do number theorems and definition, number everything consecutively. Thus if there are one theorem, one lemma, and one definition, you would have Theorem~1, Lemma~2, and Definition~3. Some people prefer all three to be numbered~1. We would \emph{strongly} like to discourage this. The problem is that this makes it virtually impossible to find anything since Theorem~2 might come after Definition~10 or the other way round. Papers and, worse, books that have a Theorem~1 and a Definition~1 are a pain. \begin{itemize} \item Do not inflict pain on other people. \end{itemize} \paragraph{Bibliographies.} You may also wish to present a bibliography at the end of your talk, so that people can see what kind of ``further reading'' is possible. When adding a bibliography to a presentation, keep the following in mind: \begin{itemize} \item It is a bad idea to present a long bibliography in a presentation. Present only very few references. (Naturally, this applies only to the talk itself, not to a possible handout.) \item If you present more references than fit on a single slide you can be almost sure that none of them will be remembered. \item Present references only if they are intended as ``further reading.'' Do not present a list of all things you used like in a paper. \item You should not present a long list of all your other great papers \emph{except} if you are giving an application talk. \item Using the |\cite| commands can be confusing since the audience has little chance of remembering the citations. If you cite the references, always cite them with full author name and year like ``[Tantau, 2003]'' instead of something like ``[2,4]'' or ``[Tan01,NT02]''. \item If you want to be modest, you can abbreviate your name when citing yourself as in ``[Nickelsen and T., 2003]'' or ``[Nickelsen and T, 2003]''. However, this can be confusing for the audience since it is often not immediately clear who exactly ``T.'' might be. We recommend using the full name. \end{itemize} \subsubsection{Frame Structure} \label{section-frame-guidelines} \label{section-guidelines-local} Just like your whole presentation, each frame should also be structured. A frame that is solely filled with some long text is very hard to follow. It is your job to structure the contents of each frame such that, ideally, the audience immediately seems which information is important, which information is just a detail, how the presented information is related, and so on. \paragraph{The Frame Title} \begin{itemize} \item Put a title on each frame. The title explains the contents of the frame to people who did not follow all details on the slide. \item The title should really \emph{explain} things, not just give a cryptic summary that cannot be understood unless one has understood the whole slide. For example, a title like ``The Poset'' will have everyone puzzled what this slide might be about. Titles like ``Review of the Definition of Partially Ordered Sets (Posets)'' or ``A Partial Ordering on the Columns of the Genotype Matrix'' are \emph{much} more informative. \item Ideally, titles on consecutive frames should ``tell a story'' all by themselves. \item In English, you should \emph{either} \emph{always} capitalize all words in a frame title except for words like ``a'' or ``the'' (as in a title), \emph{or} you \emph{always} use the normal lowercase letters. Do \emph{not} mix this; stick to one rule. The same is true for block titles. For example, do not use titles like ``A short Review of Turing machines.'' Either use ``A Short Review of Turing Machines.'' or ``A short review of Turing machines.'' (Turing is still spelled with a capital letter since it is a name). \item In English, the title of the whole document should be capitalized, regardless of whether you capitalize anything else. \item In German and other languages that have lots of capitalized words, always use the correct upper-/lowercase letters. Never capitalize anything in addition to what is usually capitalized. \end{itemize} \paragraph{How Much Can I Put On a Frame?} \begin{itemize} \item A frame with too little on it is better than a frame with too much on it. A usual frame should have between 20 and 40 words. The maximum should be at about 80 words. \item Do not assume that everyone in the audience is an expert on the subject matter. Even if the people listening to you should be experts, they may last have heard about things you consider obvious several years ago. You should always have the time for a quick reminder of what exactly a ``semantical complexity class'' or an ``$\omega$-complete partial ordering'' is. \item Never put anything on a slide that you are not going to explain during the talk, not even to impress anyone with how complicated your subject matter really is. However, you may explain things that are not on a slide. \item Keep it simple. Typically, your audience will see a slide for less than 50 seconds. They will not have the time to puzzle through long sentences or complicated formulas. \item Lance Fortnow, a professor of computer science, claims: PowerPoint users give better talks. His reason: Since PowerPoint is so bad at typesetting math, they use less math, making their talks easier to understand. There is some truth in this in our opinion. The great math-typesetting capabilities of \TeX\ can easily lure you into using many more formulas than is necessary and healthy. For example, instead of writing {\catcode `|=12``Since $\left|\{x \in \{0,1\}^* \mid x \sqsubseteq y\}\right| < \infty$}, we have\dots''\ use ``Since $y$ has only finitely many prefixes, we have\dots'' You will be surprised how much mathematical text can be reformulated in plain English or can just be omitted. Naturally, if some mathematical argument is what you are actually talking about, as in a math lecture, make use of \TeX's typesetting capabilities to your heart's content. \end{itemize} \paragraph{Structuring a Frame} \begin{itemize} \item Use block environments like |block|, |theorem|, |proof|, |example|, and so on. \item Prefer enumerations and itemize environments over plain text. \item Use |description| when you define several things. \item Do not use more than two levels of ``subitemizing.'' \beamer\ supports three levels, but you should not use that third level. Mostly, you should not even use the second one. Use good graphics instead. \item Do not create endless |itemize| or |enumerate| lists. \item Do not uncover lists piecewise. \item Emphasis is an important part of creating structure. Use |\alert| to highlight important things. This can be a single word or a whole sentence. However, do not overuse highlighting since this will negate the effect. \item Use columns. \item \emph{Never} use footnotes. They needlessly disrupt the flow of reading. Either what is said in the footnote is important and should be put in the normal text; or it is not important and should be omitted (\emph{especially} in a presentation). \item Use |quote| or |quotation| to typeset quoted text. \item Do not use the option |allowframebreaks| except for long bibliographies. \item Do not use long bibliographies. \end{itemize} \paragraph{Writing the Text} \begin{itemize} \item Use short sentences. \item Prefer phrases over complete sentences. For example, instead of ``The figure on the left shows a Turing machine, the figure on the right shows a finite automaton.''\ try ``Left: A Turing machine. Right: A finite automaton.'' Even better, turn this into an itemize or a description. \item Punctuate correctly: no punctuation after phrases, complete punctuation in and after complete sentences. \item \emph{Never} use a smaller font size to ``fit more on a frame.'' \emph{Never ever} use the \emph{evil} option |shrink|. \item Do not hyphenate words. If absolutely necessary, hyphenate words ``by hand,'' using the command~|\-|. \item Break lines ``by hand'' using the command~|\\|. Do not rely on automatic line breaking. Break where there is a logical pause. For example, good breaks in ``the tape alphabet is larger than the input alphabet'' are before ``is'' and before the second ``the.'' Bad breaks are before either ``alphabet'' and before ``larger.'' \item Text and numbers in figures should have the \emph{same} size as normal text. Illegible numbers on axes usually ruin a chart and its message. \end{itemize} \subsubsection{Interactive Elements} Ideally, during a presentation you would like to present your slides in a perfectly linear fashion, presumably by pressing the page-down-key once for each slide. However, there are different reasons why you might have to deviate from this linear order: \begin{itemize} \item Your presentation may contain ``different levels of detail'' that may or may not be skipped or expanded, depending on the audience's reaction. \item You are asked questions and wish to show supplementary slides. \item You present a complicated picture and you have to ``zoom out'' different parts to explain details. \item You are asked questions about an earlier slide, which forces you to find and then jump to that slide. \end{itemize} You cannot really prepare against the last kind of questions. In this case, you can use the navigation bars and symbols to find the slide you are interested in, see \ref{section-navigation-bars}. Concerning the first three kinds of deviations, there are several things you can do to prepare ``planned detours'' or ``planned short cuts''. \begin{itemize} \item You can add ``skip buttons.'' When such a button is pressed, you jump over a well-defined part of your talk. Skip button have two advantages over just pressing the forward key is rapid succession: first, you immediately end up at the correct position and, second, the button's label can give the audience a visual feedback of what exactly will be skipped. For example, when you press a skip button labeled ``Skip proof'' nobody will start puzzling over what he or she has missed. \item You can add an appendix to your talk. The appendix is kept ``perfectly separated'' from the main talk. Only once you ``enter'' the appendix part (presumably by hyperjumping into it), does the appendix structure become visible. You can put all frames that you do not intend to show during the normal course of your talk, but which you would like to have handy in case someone asks, into this appendix. \item You can add ``goto buttons'' and ``return buttons'' to create detours. Pressing a goto button will jump to a certain part of the presentation where extra details can be shown. In this part, there is a return button present on each slide that will jump back to the place where the goto button was pressed. \item In \beamer, you can use the |\againframe| command to ``continue'' frames that you previously started somewhere, but where certain details have been suppressed. You can use the |\againframe| command at a much later point, for example only in the appendix to show additional slides there. \item In \beamer, you can use the |\framezoom| command to create links to zoomed out parts of a complicated slide. \end{itemize} \subsection{Using Graphics} Graphics often convey concepts or ideas much more efficiently than text: A picture can say more than a thousand words. (Although, sometimes a word can say more than a thousand pictures.) \begin{itemize} \item Put (at least) one graphic on each slide, whenever possible. Visualizations help an audience enormously. \item Usually, place graphics to the left of the text. (Use the |columns| environment.) In a left-to-right reading culture, we look at the left first. \item Graphics should have the same typographic parameters as the text: Use the same fonts (at the same size) in graphics as in the main text. A small dot in a graphic should have exactly the same size as a small dot in a text. The line width should be the same as the stroke width used in creating the glyphs of the font. For example, an 11pt non-bold Computer Modern font has a stroke width of 0.4pt. \item While bitmap graphics, like photos, can be much more colorful than the rest of the text, vector graphics should follow the same ``color logic'' as the main text (like black~= normal lines, red~= highlighted parts, green~= examples, blue~= structure). \item Like text, you should explain everything that is shown on a graphic. Unexplained details make the audience puzzle whether this was something important that they have missed. Be careful when importing graphics from a paper or some other source. They usually have much more detail than you will be able to explain and should be radically simplified. \item Sometimes the complexity of a graphic is intentional and you are willing to spend much time explaining the graphic in great detail. In this case, you will often run into the problem that fine details of the graphic are hard to discern for the audience. In this case you should use a command like |\framezoom| to create anticipated zoomings of interesting parts of the graphic, see Section~\ref{section-zooming}. \end{itemize} \subsection{Using Animations and Transitions} \begin{itemize} \item Use animations to explain the dynamics of systems, algorithms, etc. \item Do \emph{not} use animations just to attract the attention of your audience. This often distracts attention away from the main topic of the slide. No matter how cute a rotating, flying theorem seems to look and no matter how badly you feel your audience needs some action to keep it happy, most people in the audience will typically feel you are making fun of them. \item Do \emph{not} use distracting special effects like ``dissolving'' slides unless you have a very good reason for using them. If you use them, use them sparsely. They \emph{can} be useful in some situations: For example, you might show a young boy on a slide and might wish to dissolve this slide into slide showing a grown man instead. In this case, the dissolving gives the audience visual feedback that the young boy ``slowly becomes'' the man. \end{itemize} \subsection{Choosing Appropriate Themes} \beamer\ comes with a number of different themes. When choosing a theme, keep the following in mind: \begin{itemize} \item Different themes are appropriate for different occasions. Do not become too attached to a favorite theme; choose a theme according to occasion. \item A longer talk is more likely to require navigational hints than a short one. When you give a 90 minute lecture to students, you should choose a theme that always shows a sidebar with the current topic highlighted so that everyone always knows exactly what's the current ``status'' of your talk is; when you give a ten-minute introductory speech, a table of contents is likely to just seem silly. \item A theme showing the author's name and affiliation is appropriate in situations where the audience is likely not to know you (like during a conference). If everyone knows you, having your name on each slide is just vanity. \item First choose a presentation theme that has a layout that is appropriate for your talk. \item Next you might wish to change the colors by installing a different color theme. This can drastically change the appearance of your presentation. A ``colorful'' theme like |Berkeley| will look much less flashy if you use the color themes |seahorse| and |lily|. \item You might also wish to change the fonts by installing a different font theme. \end{itemize} \subsection{Choosing Appropriate Colors} \begin{itemize} \item Use colors sparsely. The prepared themes are already quite colorful (blue~= structure, red~= alert, green~= example). If you add more colors for things like code, math text, etc., you should have a \emph{very} good reason. \item Be careful when using bright colors on white background, \emph{especially} when using green. What looks good on your monitor may look bad during a presentation due to the different ways monitors, beamers, and printers reproduce colors. Add lots of black to pure colors when you use them on bright backgrounds. \item Maximize contrast. Normal text should be black on white or at least something very dark on something very bright. \emph{Never} do things like ``light green text on not-so-light green background.'' \item Background shadings decrease the legibility without increasing the information content. Do not add a background shading just because it ``somehow looks nicer.'' \item Inverse video (bright text on dark background) can be a problem during presentations in bright environments since only a small percentage of the presentation area is light up by the beamer. Inverse video is harder to reproduce on printouts and on transparencies. \end{itemize} \subsection{Choosing Appropriate Fonts and Font Attributes} Text and fonts literally surround us constantly. Try to think of the last time when there was no text around you within ten meters. Likely, this has never happened in your life! (Whenever you wear clothing, even a swim suit, there is a lot of text right next to your body.) The history of fonts is nearly as long as the history of civilization itself. There are tens of thousands of fonts available these days, some of which are the product of hundreds of years of optimization. Choosing the right fonts for a presentation is by no means trivial and wrong choices will either just ``look bad'' or, worse, make the audience have trouble reading your slides. This user's guide cannot replace a good book on typography, but in the present section you'll find several hints that should help you setup fonts for a \beamer\ presentation that look good. A font has numerous attributes like weight, family, or size. All of these have an impact on the usability of the font in presentations. In the following, these attributes are described and advantages and disadvantages of the different choices are sketched. \subsubsection{Font Size} \label{section-sizes} Perhaps the most obvious attribute of a font is its size. Fonts are traditionally measured in ``points.'' How much a point is depends on whom you ask. \TeX\ thinks a point is the 72.27th part of an inch, which is 2.54 cm. On the other hand, PostScript and Adobe think a point is the 72th part of an inch (\TeX\ calls this a big point). There are differences between American and European points. Once it is settled how much a point is, claiming that a text is in ``11pt'' means that the ``height'' of the letters in the font are 11pt. However, this ``height'' stems from the time when letters where still cast in lead and refers to the vertical size of the lead letters. It thus does not need to have any correlation with the actual height of, say, the letter x or even the letter M. The letter x of an 11pt Times from Adobe will have a height that is different from the height of the letter x of an 11pt Times from UTC and the letter x of an 11pt Helvetica from Adobe will have yet another height. Summing up, the font size has little to do with the actual size of letters. Rather, these days it is a convention that 10pt or 11pt is the size a font should be printed for ``normal reading.'' Fonts are designed so that they can optimally be read at these sizes. In a presentation the classical font sizes obviously lose their meaning. Nobody could read a projected text if it were actually 11pt. Instead, the projected letters need to be several centimetres high. Thus, it does not really make sense to specify ``font sizes'' for presentations in the usual way. Instead, you should try to think of the number of lines that will fit on a slide if you were to fill the whole slide with line-by-line text (you are never going to do that in practice, though). Depending on how far your audience is removed from the projection and on how large the projection is, between 10 and 20 lines should fit on each slide. The less lines, the more readable your text will be. In \beamer, the default sizes of the fonts are chosen in a way that makes it difficult to fit ``too much'' onto a slide. Also, it will ensure that your slides are readable even under bad conditions like a large room and a small only a small projection area. However, you may wish to enlarge or shrink the fonts a bit if you know this to be more appropriate in your presentation environment. Once the size of the normal text is settled, all other sizes are usually defined relative to that size. For this reason, \LaTeX\ has commands like |\large| or |\small|. The actual size these commands select depends on the size of normal text. In a presentation, you will want to use a very small font for text in headlines, footlines, or sidebars since the text shown there is not vital and is read at the audience's leisure. Naturally, the text should still be large enough that it actually \emph{can} be read without binoculars. However, in a normal presentation environment the audience will still be able to read even |\tiny| text when necessary. However, using small fonts can be tricky. Many PostScript fonts are just scaled down when used at small sizes. When a font is used at less than its normal size, the characters should actually be stroked using a slightly thicker ``pen'' than the one resulting from just scaling things. For this reason, high quality multiple master fonts or the Computer Modern fonts use different fonts for small characters and for normal characters. However, when you use a normal Helvetica or Times font, the characters are just scaled down. A similar problem arises when you use a light font on a dark background. Even when printed on paper in high resolution, light-on-dark text tends to be ``overflooded'' by the dark background. When light-on-dark text is rendered in a presentation this effect can be much worse, making the text almost impossible to read. You can counter both negative effects by using a bold version for small text. In the other direction, you can use larger text for titles. However, using a larger font does not always have the desired effect. Just because a frame title is printed in large letters does not mean that it is read first. Indeed, have a look at the cover of your favorite magazine. Most likely, the magazine's name is the typeset in the largest font, but you your attention will nevertheless first go to the topics advertised on the cover. Likewise, in the table of contents you are likely to first focus on the entries, not on the words ``Table of Contents.'' Most likely, you would not spot a spelling mistake there (a friend of mine actually managed to misspell \emph{his own name} on the cover of his master's thesis and nobody noticed until a year later). In essence, large text at the top of a page signals ``unimportant since I know what to expect.'' So, instead of using a very large frame title, also consider using a normal size frame title that is typeset in bold or in italics. \subsubsection{Font Families} \label{section-guidelines-serif} The other central property of any font is its family. Examples of font families are Times or Helvetica or Futura. As the name suggests, a lot of different fonts can belong to the same family. For example, Times comes in different sizes, there is a bold version of Times, an italics version, and so on. To confuse matters, font families like Times are often just called the ``font Times.'' There are two large classes of font families: serif fonts and sans-serif fonts. A sans-serif font is a font in which the letters do not have serifs (from French \emph{sans}, which means ``without''). Serifs are the little hooks at the ending of the strokes that make up a letter. The font you are currently reading is a serif font. \textsf{By comparison, this text is in a sans-serif font.} Sans-serif fonts are (generally considered to be) easier to read when used in a presentation. In low resolution rendering, serifs decrease the legibility of a font. However, on projectors with very high resolution serif text is just as readable as sans-serif text. A presentation typeset in a serif font creates a more conservative impression, which might be exactly what you wish to create. Most likely, you'll have a lot of different font families preinstalled on your system. The default font used by \TeX\ (and \beamer) is the Computer Modern font. It is the original font family designed by Donald Knuth himself for the \TeX\ program. It is a mature font that comes with just about everything you could wish for: extensive mathematical alphabets, outline PostScript versions, real small caps, real oldstyle numbers, specially designed small and large letters, and so on. However, there are reasons for using font families other than Computer Modern: \begin{itemize} \item The Computer Modern fonts are a bit boring if you have seen them too often. Using another font (but not Times!) can give a fresh look. \item Other fonts, especially Times and Helvetica, are sometime rendered better since they seem to have better internal hinting. \item The sans-serif version of Computer Modern is not nearly as well-designed as the serif version. Indeed, the sans-serif version is, in essence, the serif version with different design parameters, not an independent design. \item Computer modern needs much more space than more economic fonts like Times (this explains why Times is so popular with people who need to squeeze their great paper into just twelve pages). To be fair, Times was specifically designed to be economic (the newspaper company publishing The Times needed robust, but space-economic font). \end{itemize} A small selection of alternatives to Computer Modern: \begin{itemize} \item Latin Modern is a Computer Modern derivate that provides more characters, so it's not considered a real alternative. It's recommended over Computer Modern, though. \item Helvetica is an often used alternative. However, Helvetica also tends to look boring (since we see it everywhere) and it has a very large x-height (the height of the letter~x in comparison to a letter like~M). A large x-height is usually considered good for languages (like English) that use uppercase letters seldom and not-so-good for languages (like German) that use uppercase letters a lot. (We have never been quite convinced by the argument for this, though.) Be warned: the x-height of Helvetica is so different from the x-height of Times that mixing the two in a single line looks strange. The packages for loading Times and Helvetica provide options for fixing this, though. \item Futura is, in our opinion, a beautiful font that is very well-suited for presentations. Its thick letters make it robust against scaling, inversion, and low contrast. Unfortunately, while it is most likely installed on your system somewhere in some form, getting \TeX\ to work with it is a complicated process. However, it has been made a lot simpler with modern typesetting engines such as |luatex| and |xetex|. \item Times is a possible alternative to Computer Modern. Its main disadvantage is that it is a serif font, which requires a high-resolution projector. Naturally, it also used very often, so we all know it very well. \item DejaVu, a derivate of Bitstream Vera is also a very good and free alternative. TrueType version that comes with OpenOffice.org is complicated to get to work with \TeX, but |arev| \LaTeX\ package provides an easy way to use Type 1 version named Bera. It has both sans-serif and serif versions; |arev| provides both. \end{itemize} Families that you should \emph{not} use for normal text include: \begin{itemize} \item All monospaced fonts (like Courier). \item Script fonts (which look like handwriting). Their stroke width is way too small for a presentation. \item More delicate serif fonts like Stempel and possibly even Garamond (though Garamond is really a beautiful font for books). \item Gothic fonts. Only a small fraction of your audience will be able to read them fluently. \end{itemize} There is one popular font that is a bit special: Microsoft's Comic Sans. On the one hand, there is a website lobbying for banning the use of this font. Indeed, the main trouble with the font is that it is not particularly well-readable and that math typeset partly using this font looks terrible. On the other hand, this font \emph{does} create the impression of a slide ``written by hand,'' which gives the presentation a natural look. Think twice before using this font, but do not let yourself be intimidated. One of the most important rules of typography is that you should use as little fonts as possible in a text. In particular, typographic wisdom dictates that you should not use more than two different families on one page. However, when typesetting mathematical text, it is often necessary and useful to use different font families. For example, it used to be common practice to use Gothic letters to denote vectors. Also, program texts are often typeset in monospace fonts. If your audience is used to a certain font family for a certain type of text, use that family, regardless of what typographic wisdom says. A common practice in typography is to use a sans-serif fonts for titles and serif fonts for normal text (check your favorite magazine). You can \emph{also} use two different sans-serif fonts or two different serif fonts, but you then have to make sure that the fonts look ``sufficiently different.'' If they look only slightly different, the page will look ``somehow strange,'' but the audience will not be able to tell why. For example, do not mix Arial and Helvetica (they are almost identical) or Computer Modern and Baskerville (they are quite similar). A combination of Gills Sans and Helvetica is dangerous but perhaps possible. A combination like Futura and Optima is certainly OK, at least with respect to the fonts being very different. \subsubsection{Font Shapes: Italics and Small Capitals} \label{section-italics} \label{section-smallcaps} \LaTeX\ introduces the concept of the \emph{shape} of a font. The only really important ones are italic and small caps. An \emph{italic} font is a font in which the text is slightly slanted to the right \emph{like this}. Things to know about italics: \begin{itemize} \item Italics are commonly used in novels to express emphasis. However, especially with sans-serif fonts, italics are typically not ``strong enough'' and the emphasis gets lost in a presentation. Using a different color or bold text seems better suited for presentations to create emphasis. \item If you look closely, you will notice that italic text is not only slanted but that different letters are actually used (compare a and \emph{a}, for example). However, this is only true for serif text, not for sans-serif text. Text that is only slanted without using different characters is called ``slanted'' instead of ``italic.'' Sometimes, the word ``oblique'' is also used for slanted, but it sometimes also used for italics, so it is perhaps best to avoid it. Using slanted serif text is very much frowned upon by typographers and is considered ``cheap computer typography.'' However, people who use slanted text in their books include Donald Knuth. In a presentation, if you go to the trouble of using a serif font for some part of it, you should also use italics, not slanted text. \item The different characters used for serif italics have changed much less from the original handwritten letters they are based on than normal serif text. For this reason, serif italics creates the impression of handwritten text, which may be desirable to give a presentation a more ``personal touch'' (although you can't get very personal using Times italics, which everyone has seen a thousand times). However, it is harder to read than normal text, so do not use it for text more than a line long. \end{itemize} The second font shape supported by \TeX\ are small capital letters. Using them can create a conservative, even formal impression, but some words of caution: \begin{itemize} \item Small capitals are different from all-uppercase text. A small caps text leaves normal uppercase letters unchanged and uses smaller versions of the uppercase letters for normal typesetting lowercase letters. Thus the word ``German'' is typeset as \textsc{German} using small caps, but as \uppercase{German} using all uppercase letters. \item Small caps either come as ``faked'' small caps or as ``real'' small caps. Faked small caps are created by just scaling down normal uppercase letters. This leads to letters the look too thin. Real small caps are specially designed smaller versions of the uppercase letters that have the same stroke width as normal text. \item Computer Modern fonts and expert version of PostScript fonts come with real small caps (though the small caps of Computer Modern are one point size too large for some unfathomable reason---but your audience is going to pardon this since it will not notice anyway). ``Simple'' PostScript fonts like out-of-the-box Helvetica or Times only come with faked small caps. \item Text typeset in small caps is harder to read than normal text. The reason is that we read by seeing the ``shape'' of words. For example, the word ``shape'' is mainly recognized by seing one normal letter, one ascending letter, a normal letter, one descending letter, and a normal letter. One has much more trouble spotting a misspelling like ``shepe'' than ``spape''. Small caps destroy the shape of words since \textsc{shape}, \textsc{shepe} and \textsc{spape} all have the same shape, thus making it much harder to tell them apart. Your audience will read small caps more slowly than normal text. This is, by the way, why legal disclaimers are often written in uppercase letters: not to make them appear more important to you, but to make them much harder to actually read. \end{itemize} \subsubsection{Font Weight} The ``weight'' of a font refers to the thickness of the letters. Usually, fonts come as regular or as bold fonts. There often also exist semibold, ultrabold (or black), thin, or ultrathin (or hair) versions. In typography, using a bold font to create emphasis, especially within normal text, is frowned upon (bold words in the middle of a normal text are referred to as ``dirt''). For presentations this rule of not using bold text does not really apply. On a presentation slide there is usually very little text and there are numerous elements that try to attract the viewer's attention. Using the traditional italics to create emphasis will often be overlooked. So, using bold text, seems a good alternative in a presentation. However, an even better alternative is using a bright color like red to attract attention. As pointed out earlier, you should use bold text for small text unless you use an especially robust font like Futura or DejaVu. beamer/doc/beamerugfontthemeserif.pdf0000644000175000017500000006615312050430544017663 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1036 /Filter /FlateDecode >> stream xWKs6W(͔(NL2m&!큥iS)i}viufhFZbo K[R>"y>#R j"ʅ&CC.Vo>\G EKd=s.- IKkHݭn9mYE>TThg)!b|FVoP˒"K ,]'K:2*8kf=n=\1Du_z/0.HW;µ*r-r$S"#X0,iefPA-{ܠN8 H~:3FXD&TI)hn`rLYOs+Xxy Yc"RX}>I'H 50ǴCȒpaN#VC.'i]"R%NsD qԉJ,}uf4q'쒝`]eRY_Fak_'d9|/i Oh+ZX:"/9O4 |ӕk/7>+ƓcxN͜4z,YyVI7eޏׄ[{!K(x﷫oSYjA8jTI,-ٞM![8jOհv}x=$ ߶/%4sc`x%Q»M >ж@f#CX\$Ի96n6Q%5P4T&U{lG]5UV”OPѡ) jowMWm}@~BXRq4[O7Ka.}$abQ^c3֢ u7=r&~B N϶ؾ*pwA eVBj^di[e&!y@ms8^⠑P!*^uǻ&C; u?4-w0ȀoX=%+;>?G endstream endobj 18 0 obj << /Length 1372 /Filter /FlateDecode >> stream xXKo9 WhcaU[E$e{+KI#i2?$H-hDQɏ"2rCc:?wtF E&9n}"Yߐ6kᏕιMĝ@pԆ*!ӪwOz]Hl gAFKv!q A82SǗwwYe$IG,P<ޒ#Q 嚀a(ؘVzoQo't'uPZ$ImKAymE)ۡYY*rW|ot$ѥBzUg|:c4\աm",Fڈ$B4I& K9InoJ"Ŵ_ ' '9w 7~c`׎TMRP#D^h_3'9 Uu؜H-|L )H<2~Id93|Hfcʔ|ry3RnIQf!_Fa:f Z(*)uY$}ۧ_Z+^*}!?tB8L'OaɻIx1 -zv.=[śVe.hb3w,ʼ|?]&28PHtQ?Gy𤐚5bp0G3r}!W&_Vq<^o曇H^T5m5FgG *X괖^FjiQz|:J+Vܸӟ϶ӇExV6ζUH>:'Xpd_RwH\FѤCX}UT? 7'vWґ1"7WR:t? lM<,|N@,5=H+T]?kDfWdn|P;Uzx7%Xl|夎w:5_'#uW)KRFjك<f|˺9YklƝ!P-T)],{=+4t7Ffv$ 9 wޒ (GOaJ3}[/G"M9l ,C%??6Z endstream endobj 23 0 obj << /Length1 1630 /Length2 13646 /Length3 0 /Length 14481 /Filter /FlateDecode >> stream xڭvctfml7m۶m۶mv*v*b'UNwv{,̅7)2 -#@YVΞSV%g!%v25t1t1DLLLFNNNR BUI柒LFt4};ؚڹ|AMM.3KS8B\N njgdhPp54X9R68L,*͙ K`pv05r306uKEp0utvzX:̝ \zb3q5+/ 98Y~],\_QD_-{/K{c׿J[u1sz`b`c 4\- Noo#KgS3:F._-`I;3{#?&s3uA W&v6S3z9{tw$PB ;rt_\ml m;d _{ k:>6׿Z#L-v_01Ch,faj`bl03rU;S'K;/nn+_t*vɿVEK hIQ oCApQtߪ7_0BBoZF6-J7?ϲ.NߞtFQv136vur"U{SSSce{cLi~FPf:;ot-?>:=~;HQcؐO3,%(B$f> +($M$825բygYqIE&RvJc]|Aժd 5)ЎZ2G90hZQ<@(Um`UX,Cg"׻K_2`#KlڶpHܦe o0{<"] <)wT! 'WǒuhT?B}S%=m/?płGƯZ6 e3nEj^ޜTN ݭmT%j o/6) RQMF施P_Nm=ĵ;SsTǡ9ac "g=-zܸ_= UeWU #CzA&GqTT=[ڇ{ qƈDSLH--m`X~G҃G} NIVD<D K?$oOQĤ@XGCi0EVb)g0ԉ!2,sӨ.z+G(N!CrRiHAYc]k:S\ˤ]g]%],ߙq}oL(D6j4\+5Mrߚ!;`zd /Ьqbib yR~pxqȿlTep(38Nz9|zc>Ҭ: D]G.˹c⹞*-a37^9n rmQ#Z(BAO؞#2Lrʹ)G1Ju%ԥaAILn75K}' <4]#5E_eüf -ly ]:'l?Bil~_Ir@㉉13ڋ7kxIavƃޱ%@ƶ [WwQ,%8Ny2?W@;:PU xH@~a3;R4#JQYp=թ錄 >ғ }yޜ.JZlN[;wJ2 Nq_@^!l* gF 唭oCrz@K+RI(-Z: |PF|KZ L5g3zFq_ Epl0Gác) |RH٘T HkM‹ вyf(-N# fwkBu@xw4N;/y (LaFKidQ#f"On-%0\`Vz&bҴ?SM$ Ky=.aZ0m-Cv9nҜKlUr$O6D3X+x$d}?ixwV,i:m2Ԫ`LTW`]S2KMN`Kn5<$΁Z NnQ~ؔx}΂})i-~4DΐSݬmsy.&öuf`%y^bx>{Oz di?kb(CW~f&GfHkɩ]5cR'3ȝiǝQ~҅OY.ezFJ{>mll䍚{Ug;E$>809LApÓ38w-kIGJ]]mG xy 1G+U%~3Ox='5qʃ_`Y#*l{ٖ6l㻶v<5 >W'&WpX֍pԵ J$4b9(֠KǨx n&x/>}Y TsL\3нQ92QJWU5RLηJPj}6Mc8 Q8o-3&x[4-gUU>,o'2#%4/zWoc79VX񩢥 Ȼ=X;~a{ēb_D0V>gKYٟg!?Gs)K6+Ozcr%czbv*&@eIޱK>9RX9y,0:ub֍F\ M(|{1yc>K*1"1v2~~% Su^/dE~gV%UA4OAk4Gs*:Vr;Hf$m戗{hsjO"^ gPa"G9ͨeē  5+N˙po#p&XzrTqYV'7 'tsG,< t@jB'SrMKN~JK$_~BBAˇ/46HsOFU,ғ6H͇4!sj[:caB 8 f !t+?+O\Xrڡʨx<#bb_R NmGjW[s# 7Q tjԍkdPOx-ۗ!u/G,Œ`id 0]$OjGtmq`r3N }8.>Q .'S5VN̫QAbJF݀Ǡf PU73jZsE53JkP!+~P~FHJwR2a rtO)fRrngYZh0u5 WEpi{JQ}֠o "Q8^{=A|rLH^56qEyV?<ۍ&҇pwt4w/?f{!xJg0楇 Mibe巼fKM~\-ӏ{sc ۈ}_>[a%ȎL\i7p eIeUkQ5 Y=,eڅh ttko٤tTZTzHhKh!_W|s-Z'4JĶ"y{+&%]K?IC b^lorڣ|(іgݸn3<_0$ZRk6Je:DOG 2q}2?E_77Q ,ߦF3(͘51pNvJ8Z`a tqq9Uu?7|~7bQsXnۤsi &4)+0}i,.4díq,'<ʡ~ڱc1GK&=k8ĕ>i/^ىz`bwZ]ec:}8u/wJs;BtO3$m=!(Ks8]}v ]o˃n \Q @G99L{]~rGҼb='bM1熙cyϻj*#Ա-/%yyiз*9~؍GSd81?ɏ)Earɚ4 뫄<5/% H\IIGxL ܞa{F3]Ơ8i+7=XGxmoaCH@!ZX^CO~ycgSl֒0?&ni3f&(fc2-s_qRa.$}bpX.1QS{/K;$aUnnI@(<[C>C\r o nsc/0Md#_W NԧE{7#= _t匄ZWe兗.zD}(Ey 'X Fy  \cz6f 1 a^'BuL oXT)?zƵזS`Сͫsi$w"z '5XռooTE :*V7Iv| N.ӧtx)q u<1[ \-;ySv09f%BrҠ& `"S5fs:T&l=ƌ_K|pZa !PM H"OI\2cF㎋M±TEo<ǐ[#8D-?M-$쨴u w$Bt>ɮ%¤&/gqˆDs(3óܹ"u羵Cw4g0J{ZJaVN\& %K7A2|}P㴪xT0:$Po{,6jc ɋٔKNrdKkC&N˒3hjj7MCDv3ס8Q;?nDk&{I41) j, g/8JBpZ>#o@R*b^8χ&GG2Xո;lJ_1U*ևnN$^)3?bO[Y 62|9V~=B{L7/ lXr 8epؙ>kf1{rtԾTtY?.lP?N|u;%|8؜CBp-Icϫ9ÀZ%gi\[^QbCˌ+}}kE}wUy0?~!=dodX&}uG͓DKѳVҺMK (v@/X\u"Jah 5n!;cw;֕3'w;R(OB5`&^/ۺ07nXy:s1KpVv(tn&T x>65eZ[UF:~OJHǪ;iE5k(om~,8a$7PCBqg {pX|?Zpe=L )S~K|nI8w)˸"b{D2m8դxPh8Vբh.=S DUc.YeʌИeSԵr@)cF'RJ we/lH޲?I^`-'#vw-ޔ0qM6o`Ip @a1܀]M P)RۋhUGԃ9jͳ"K%<* u(05rGTv "f@)XU"ơyJ3)NJsѕ֌,3)'^:U=K&RQQg^T.2bX[M)MX(2&A#]?XIIZ&i+F71YѼm YFt,8V=qؚdƒ>]$aZy7Nz{deC4,ѭ-1W Odr996(9; EBnur ֳEEڋ^+tK'׏Hʻ%<^a]vH?cGs'k'AH}6н'ⱟ x{xo`cd'y3'߰\5%׀mS0Ym/`PɮMk{`BïNz d;n/r٫;MPU{F G\>\OoU;sg)Z˯  ׬i: B,K)S/,`O?u|hjͻ|޳3*NHr%;=%D\[KX\)'>)߽`rze6XЕL(3ʸ[jRfbb)vV G者rY (ԩ#d2`λg5U^[hKtn+l GmOUpcQ/[ ~+ Nwy:8 /DIzF(6agN!hYʬ!q!a׋{ڠF&HZ.WcQT/˒ V$`k0= ~biPZ2mcyf\<nj<R3p/] ~%G|,'U5ՔN$DYʤg$ lfD.(}~M!2 AQ6G`aZ5J3SGf]5f3Λ{ϝfC_$$Zd=OBQFNضH %ω)^ K Фƨz=:ߌ7 KgE>*aLuFڪ!+o^,`n̉rF[Ե/3m ՁK%Ld%o>/'=Um $Q- nqN  N b"B>\XQVX6 z ,>=Lxr]TKO=_ SˮdैY)X|ꀠNmFkԉ(OWw c"lm.#!'O3x)TcQ{X4^6lA +`dbλEP .U%N-2T@6 e`b`]kܨzU?GT.5QmEBc .HBi ծpw5T@]GU bM%:D1G5a:ޫ@[YxAq-_rL&\NIWJt,Nx7& nʴXE6R-v;snHYSG%K1t84l+W~$+Pk|t(B䙩YECp%6lMw dà wSi4gT25E'Yg4fi(s+. eF$цL"I%DwS['._bw-dn 7t[8uCe:8pXuΞR_ՎC.xT,snR0#;`{Z(-%T=62e:격PtCŋy2xgBRlȦX&nh9>ل|ٿ2.Xm,h{:;4N9g9/OL9F݇j8 YE__^VAkUZfۼ:p$:UҰ[nܴ#z 9J&d<e.1GnA4g@Lt1j*+A 0  “KlSF5lM@P8%kH^RF_P,.xCy`I}ȦXJ8a [);ddOgٸi^)zP)_WcWds&Y/y#>ĞCdJ^4PS@_逶@# oY/+i%\,#ar'(J…ĝ q`zAyCtY~ nn̿2ٚ^t!yȱ:b􌏎.P¤GA~s;C|).7;XX(~wr|Ϭf8L!)4p51tt{5 L؆]RNJk} A#/sPPW D)']}8 1Ly|5!ˁj\Zp+c;tB辈WF'<8MKrWL8;c/s64 4k s ޭUd`M3a~}-=/oڣpD 0Z´g3 ]"eoBR*[;Ͼ4 9݄X&t3<ϬH"[OBcf#?~TqQlCMPV۴=&~%Hہo$Ozy N,a:tgr=!jg^ʳ?&0e{k0,*7;Ηu05[k[c@Ľ1b X NG"aoLSZmE)8E xU[} p]QC8V|^pV7Oyq`o+fOXÊG$~٠{._pZ(VcWdnMo,ǫ&6iMB u(=jHdK;1س;VE. : 0O2n 6Zb*C= =.I\|]\k[  U?F*>+e錝f#.92Fuff&S!ӈ}@pE ?UdƴgVatʽ"6 5g)EG kf0$C`?DK[oȤ56ma쁵BKj)9nO%Z+5qQEXiA7ţ >` 9Ft鎜F/87.q xO+˨},C\M~ƻ5א;_|+ؐ /IJV| $)V^h,qfUxy;.eDf~.v=RL$߱JOĊGG!|?vA"%pҷ&MVM!<Qf 5 j& $XZ2BRIDuAꤷa5[^4#-'Y "ztA8axIMi٪c^?rҟn &m56˷vY,7ThzKs-bWYQfQHynd?mz59T5&)A[r~*Ԥ܏+ƚyLJTN:ݪx7T$~(߭(|C.?iuF&YߛvGg@زNLhx52U{FɦQ,t ;}JQ$ iP~ ŝ%"%HV6wqNW$Yg wm;NկKTQi,xcty~*c;4*"o4T[S5-ҦlJDyM0o]S˸?mTd- 2;־nQnA+՝db~[Ns ~[@Q sqp<}87R8)K7,V#gCf)Ӟ=${Jj7||=߷fS }|]aKHus ]Xa79zT%F uM pbgV>>&\,@2WY_Jd=~nj[ 3ڛZOMQA2g~E.9od rYcY.xr#Ψ endstream endobj 25 0 obj << /Length1 1647 /Length2 7844 /Length3 0 /Length 8681 /Filter /FlateDecode >> stream xڭTuXm$A.nIAKz:%n$iewv?fssss?0kr %(+;YuNP15.  03@V0` A@aC=a`;{M_ǐ,]֞@"`; uvA@]l ss }s{hBlPۀ p; 8u@!@\p ? ӳ8@~!Ãn:3RWQ_gWt3:o*99OX /0(/?Cro4(;EXAO߰+ m?LBm$_% *ɳzL:P{CjsʡoJ,o+Bk5zN:߭ sdmO2w-4pnFz-l jb5 /r3t&I!m!E"c߾3s33YŠ.}vVc Mߛ$Ε5!*_5z\t4R. ^3c_u{f// MyTmzrD%q" V7D|%6}lC+#Az Y694\ݟrڟdL!{sFڣ*U;k 7qKdʅ>}z߰bw~tumywry K^DxVۋ( &ӝ56cvzVg 0OɈF4?v$f͡p*o#Rgm⎼~,&^C]| me=˨]7t*ȸDP|gmjdwv`c|fyޏp )D\OBMNu[꽏uvъXʗ+ĖKQwjd\B4Xc;c]( V>hH]2ÖsZMrDK_~.C꾑jusZ:;kf:`8HMĮ5vWAA2&I{wR3eVvcXkh&&[Gcem? q0}T]qˮw/bpd1̕*bTIZe"=XmP]BW4MPm[Qg{1tpϸegf7Տi\NՋ"aKYq+FXJ^.%'Ps$`8\=xTs693ݴ bП!Zy"g "gIΟ9O CL^goכxˁ9[rJJe>'LtILS?%KV5 iud-2,7Xػl_?y'Ātv덒tЇıE'r|u rD#1ޣ /k\gE}8=ۭPCُ+jZInD(bpEc0Goƾ#4|JowBJx«G|U }IMaT񵺡I5|")Ln&']dK?5FjXd MtoREˈ(EwPH7/'0,pVFͳSwmp=?l@Y);+Ssjk%OR hTP{Z~3PM$]\$Jm|^w޸FM%BK'mO/ًi'u(.U;'ƂSn pjlKRsFYZSY R$C/@KF}dTo QK1?Vtt:ggalo YBH2s"L{(t|u 9';`8I6l‡ ;͝؅PG $@4\ Ο{ ń?Y(HOn,-ZLבDgɫKLc!;XUAȚ噔 Xĸ&}X UQߎͷFKIX>,A,O>[ijĐ9 gd6s$A[X9_ *`3̶cdpꓨ.xUo#M^ey!'"ڲjb=ǃ9 .Z/ե_^N.,uk^'?{ΨVMP@a93DQXN O'ʳD_;eR vK3Ju3<(&A;תJ|+Sfezձq 3 VJiNiD = 5qxX|fgP)ęaw/<~&N $C6z'vNv=V#{j3"O| 6e2u]L$ _cq[lL*fme$z(eu59"_@3W VMT Y>bykٛ0_mO͔7(.Tq6\E1Z4*1?F;674qR%6 +'6&UŔ #HQ^-ԕұ?CpEվŸ5TS+e>ƷgnoI+F,հlj^*~g tJ~ՙ]f&8|,;(Up=W@(+c A1N .HgtwWqƇoѹOqִ e\?Sl (=gCv: Ezz-\+ *!|,yIz\S'B%yqfgMOLmׯk,nhZJY%BwK])VwJqɨ-Z+QjC}2Uk\Zuz<9;>@E,IĘ.l~;ylrDr-y81.E__-;Ϗ+Ը.:Ք^ˬTQ`QU[}j"IeWlxy+k 8I[N D}tR螧L);6Cy_:32ܻyslw>$`zj#dbW fBe;{cC}˖cdH= 7 'M@FY`:= E#[z!>m,<<@TΨ^0MDfWV17cYis,8}2J/Ytv8̵<: ?c* DRX..im5<[se,$U|TJRFΗ3mJOxؕhmپڅI-˟ ̮o"lc+Y_>pґNi 2'lj4G< ٝE}0 l$ d.>1 ]HsDx蚜+8~Y儿':-W{jTY*H{cS(zzah={zO@RS큉My՝{8O U`"U66v.kvcG%y#r<Ӡ U16h#pbiDdnh ,gwK'J᮪ 0^ -3anJe;ߊcr?Ҽ [{ ޾6hEϺ.z/%gjr¹_^ dP2Y$DR͋t‡% j>PנAz:O)c>U [N׾S HK~L*HUG(575T_a/1g .Kdp҅xLh(bCC'PB"l%CQtxGsҗT|$,`FL0]>a_*DsO,4} 8"mOL꟢YMv`W(#ND{oND%^,_5+ z*󊓥l UR. f?ڙұ+W=hlj|C!H:Qږ};?o2_+J"EܞvpGR/ KTfQ64(dH+mѡ:PB1q~| E =҃  mOx["y~_:؋wx7{PtB}rNᨛx$(7{m[pZyx\;'%=1*k苈j_'j2鑌WQR`O{3ՄLĞY y%\3q~ ,УFqwe!aix%iUN=+A:%6O1®˱oO[^9OS.(*ÓA 0a-jͷRŽqhߕ}Qh Y6j .2w(SlqܲVhbPdo.dx+{U&la"zxu >OPbi/#5"| Ͷ'i)+$+15> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1081 /Filter /FlateDecode >> stream xVmo8 _- /Y{E qǸNݯ?R'mۡU$Q!%KAп>:p}$FX'$@hSp<M[@b$iq=H&!xczNoC* /Vy]2pbW&b\ZrY|Q<Ô/?Y '!E8"%Yel$ٺ(8Q-0Ve^?ןu\+Z`i \4Hƪ)ٸNs /"8t-9L~J=e})UEgj޾Xgf1 ':^Lֺ2}7{8x%nI7leyLN&OL68pjճJ94|Tٶ.L ޟ|66]5*6";tGJ8m/s&d($tgo?27*KW4Τ-utp\_z~i/Wqw^-=G8 L&*Q勸Z. W߸ X`+VYzW?XbzR9XJV>wWdžAFӹPJz(bb)sL ɜ=ɮBt"[6ALi4{ds7DE\)I:~ +3» >٢^UҚX~FZ}?<矂s.:ЉwGNůa8Ty]Л/cUVռ`.up6 >B$fdB< endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<20703DFFB6FA1CC3E448E7C8D006D4B0> <20703DFFB6FA1CC3E448E7C8D006D4B0>] /Length 82 /Filter /FlateDecode >> stream xʹ0CQ |vHP $.΍6xg5 1:? QdP@4+Ze۽"Qn[uZ4Q endstream endobj startxref 27423 %%EOF beamer/doc/beamerugthemeWarsaw.pdf0000644000175000017500000005337212050430540017123 0ustar mohuramohura%PDF-1.5 % 18 0 obj << /Length 1689 /Filter /FlateDecode >> stream xn7:," ȡADZPKeieFcy 9|F>F6\trpFIM C6-9}J?K6I=VT9|Ѥ>!d\2N;M><0H q"tVJ"39!#ύ_dwc jG4nym'o JID-H.=ưZZkE\4Fb)[UNF*0o(I|BS0~YI~ih2e!ɏ 0k0 HqzF88no.ׇ޷O+$ yUuYjɽيa \rj,nW JK3 ~!MU4"$:'1L$3+m]ՠXje ,JH@ddXG1@8[X⪇n%`ݯ~/zUSFxZGd3Ic.7ܴBxN>QI$srD3%vMI&Șը]@:HX'=B*9.Q ? )z66nS*BiojkJU'USp%;I_gu?˛^7u7ތezM?wRU0cD/k :UFк4sf Ft OX}; 1>7 q!ZὫ̮}Fm?(ƙNlM venT=Y@+ԀKdqznFXw:qu^o`,n7$c#;A  Dnۋx~bݬnźl;C>ͧz}ޡꦽPD Ql?H.=x e- _OAWH A 4ljl{.gn6ZRۿ`UIA(n~53 FM1߹D0ҀfC&/,6EXPכvg7=.%Qy=b=S)ݷ[ԡJy-w}-gw+C5ൖ03<=^r endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 3.985] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 22 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 12 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 8 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 23 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 13 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 16 16] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 24 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 11 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 25 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 14 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 14.834 14.834] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 26 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 15 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 27 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 35 0 obj << /Length 2378 /Filter /FlateDecode >> stream x[IoWh#}>x ^<n;T"EIe2d7%X,U0rA9cÖzA?#& ʅ!%w4kK/Hy{wq*WI>v#T'B*'\Q'bwGjH7J4Dp 3XIRDi ;QĿVdN2SL^D#VB Oq܅^ LD(նڻY2X%{ Vz:KKAamGR.sօ[y{aPz:n>ZG4I~vfT{k  Y*[kXgJb< /mǁŇi4 O0Yo"a6s~Iy$øH$y\(ԜqFX2|8=H}d{8TLR h#/'X 3ny'w:4 1Ltl=УC%a;JѾȉ_dg]"G ]hGT0/a=,w%y$pb-[z2dC,1W%Ue*^.Ee+25kXb/rZ.R-8GT:UamvRI؀pUluS^'[- l!o)J1kxd6[OPu'K1ؾbP)czX=*GnQe>=`0]e>3`0Uep;^/2Y~f-eup\t!46;BS˺CHTp*FJe2Tx8VSu䗹3(ƈ0uHa!*CG1yKhBCP(bl/KwTKW#1a"0 g7gPߞ<a|AL~{m#"5C}ڃ'0'6پ=Bx}UE'mMcOύ- nyliiBL)lbogp1v1zPb} TЛKwu2&C̺]2&֛BBƴۃf Vhsg/pę94iI 0TaIXP$uZZ@1~fdo1j9i%\n.բI}a| wꥠa\^9xjj JZ2d9}O $8#q6EYf2bqa3dxD ;wgm˳{o؂xV|n5ͦrCñÇNRN4Z7Fٻ!$7RДJ3>Oc`VXMqthg*v^ЩE|(!*T'-Lp :} )8_CN2}i(.~<=ԝ>{ܱX |a2[ ) endstream endobj 32 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 272.126] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 37 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 28 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 3.985] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 38 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 29 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 39 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 30 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 40 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 31 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 41 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 45 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 50 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203911Z) /ModDate (D:20121113203911Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 20 0 obj << /Type /ObjStm /N 27 /First 207 /Length 1765 /Filter /FlateDecode >> stream xZmSF _t8y3 3! MڄPM ajھsФ4!b}$k )AHj('AjB ҂2h*%UR:R 553&FHQuHևA]Uo p?~ ~10K~l2,.)]h'ջY^},ym p®]̜mOu<׋WnmDmD/62XJ gIk2WeLk/Y}}E!)ɳօ7.6h?q %%zXΛkI;%h4ܹ$cYyuyqZߠb7Σm9q_;Vzɱv<)!wM.1s ONe(0l]7Mۘ+xA0Iœ`[ÇC1q+9ǐY5,i]ML9L<Տ{/fI:ysf4&UẾ#I=uj7s'$],],vPӛ|x2 ӻ?75FҬ'iɱ>Ƨ _K|xx/pbkj-TS[+8v: U5=W1݇2n]<:G7{{"$ΉS endstream endobj 51 0 obj << /Type /XRef /Index [0 52] /Size 52 /W [1 2 1] /Root 49 0 R /Info 50 0 R /ID [ ] /Length 141 /Filter /FlateDecode >> stream x-0dlg6 Lq \end{verbatim} which Euclid does not understand. Since he finds more stuff in the file that he does not understand, he decides to ignore all of that for time being, hoping that it all serves some good purpose. \subsection{Title Material} The next thing that seems logical is the place where the |\title| command is used. Naturally, he replaces it with \begin{verbatim} \title{There Is No Largest Prime Number} \end{verbatim} since this was the title of the paper. He sees that the command |\title| also takes an optional ``short'' argument in square brackets, which is shown in places where there is little space, but he decides that the title is short enough by itself. Euclid next adjusts the |\author| and |\date| fields as follows: \begin{verbatim} %\author{Euclid of Alexandria} %\date[ISPN '80]{27th International Symposium of Prime Numbers} \end{verbatim} For the date, he felt that the name was a little long, so a short version is given (|ISPN '80|). On second thought, Euclid decides to add his email address and replaces the |\author| field as follows: \begin{verbatim} %\author[Euclid]{Euclid of Alexandria \\ \texttt{euclid@alexandria.edu}} \end{verbatim} Somehow Euclid does not like the fact that there is no ``|\email|'' command in \beamer. He decides to write an email to \beamer's author, asking him to fix this, but postpones this for later when the presentation is finished. There are two fields that Euclid does not know, but whose meaning he can guess: |\subtitle| and |\institute|. He adjusts them. (Euclid does not need to use the |\and| command, which is used to separate several authors, nor the |\inst| command, which just makes its argument a superscript). \lyxnote In \LyX, Euclid just edits the first lines constisting of fields like Author or Title or Date. He deletes the optional short fields. \subsection{The Title Page Frame} The next thing in the file that seems interesting is where the first ``frame'' is created, right after the |\||begin{document}|: \begin{verbatim} \begin{frame} \titlepage \end{frame} \end{verbatim} In \beamer, a presentation consists of a series of frames. Each frame in turn may consist of several slides (if there is more than one, they are called overlays). Normally, everything between |\begin{frame}| and |\end{frame}| is put on a single slide. No page breaking is performed. So Euclid infers that the first frame is ``filled'' by the title page, which seems quite logical. \lyxnote The title page frame is created automatically by \LyX. All other frames start with the style BeginFrame and end either with the style EndFrame or, automatically, with the start of the next frame, subsection, or section. \subsection{Creating the Presentation PDF File} Eager to find out how the first page will look, he invokes |pdflatex| on his file |main.tex| (twice). He could also use |latex| (twice), followed by |dvips|, and then possibly |ps2pdf|, or |lualatex| (twice), or |xelatex| (twice). Then he uses the Acrobat Reader, |xpdf|, |evince| or |okular| to view the resulting |main.pdf|. Indeed, the first page contains all the information Euclid has provided until now. It even looks quite impressive with the colorful title and the rounded corners and the shadows, but he is doubtful whether he should leave it like that. He decides to address this problem later. Euclid is delighted to find out that clicking on a section or subsection in the navigation bar at the top hyperjumps there. Also, the small symbols at the bottom seem to be clickable. Toying around with them for a while, he finds that clicking on the arrows left or right of a symbol hyperjumps him backward or forward one slide~/ frame~/ subsection~/ section. He finds the symbols quite small, but decides not to write an email to \beamer's authors since he also thinks that bigger symbols would be distracting. \lyxnote Euclid chooses View $\to$ PDF to view the resulting presentation. On a slow machine, this may take a while. See Section~\ref{section-speedup} for ways of speeding up the compilation. \subsection{The Table of Contents} The next frame contains a table of contents: \begin{verbatim} \begin{frame} \frametitle{Outline} \tableofcontents \end{frame} \end{verbatim} Furthermore, this frame has an individual title (Outline). A comment in the frame says that Euclid might wish to try to add the |[pausesections]| option. He tries this, changing the frame to: \begin{verbatim} \begin{frame} \frametitle{Outline} \tableofcontents[pausesections] \end{frame} \end{verbatim} After re-pdf\LaTeX ing the presentation, he finds that instead of a single slide, there are now two ``table of contents'' slides in the presentation. On the first of these, only the first section is shown, on the second both sections are shown (scanning down in the file, Euclid finds that, indeed, there are |\section| commands introducing these sections). The effect of the |pausesections| seems to be that one can talk about the first section before the second one is shown. Then, Euclid can press the down- or right-key, to show the complete table of contents and can talk about the second section. \subsection{Sections and Subsections} The next commands Euclid finds are \begin{verbatim} \section{Motivation} \subsection{The Basic Problem That We Studied} \end{verbatim} These commands are given \emph{outside} of frames. So Euclid assumes that at the point of invocation they have no direct effect, they only create entries in the table of contents. Having a ``Motivation'' section seems reasonable to Euclid, but he changes the |\subsection| title. As he looks at the presentation, he notices that his assumption was not quite true: each |\subsection| command seems to insert a frame containing a table of contents into the presentation. Doubling back he finds the command that causes this: The |\AtBeginSubsection| inserts a frame with only the current subsection highlighted at the beginning of each section. If Euclid does not like this, he can just delete the whole |\AtBeginSubsection| stuff and the table of contents at the beginning of each subsection disappears. The |\section| and |\subsection| commands take optional short arguments. These short arguments are used whenever a short form of the section of subsection name is needed. While this is in keeping with the way \beamer\ treats the optional arguments of things like |\title|, it is \emph{different} from the usual way \LaTeX\ treats an optional argument for sections (where the optional argument dictates what is shown in the table of contents and the main argument dictates what is shown everywhere else; in \beamer\ things are exactly the other way round). \subsection{Creating a Simple Frame} Euclid then modifies the next frame, which is the first ``real'' frame of the presentation, as follows: \begin{verbatim} \begin{frame} \frametitle{What Are Prime Numbers?} A prime number is a number that has exactly two divisors. \end{frame} \end{verbatim} This yields the desired result. It might be a good idea to put some emphasis on the object being defined (prime numbers). Euclid tries |\emph| but finds that too mild an emphasis. \beamer\ offers the command |\alert|, which is used like |\emph| and, by default, typesets its argument in bright red. \lyxnote The |\alert| command needs to be entered in \TeX-mode, which is awkward. It's easier to just paint the text in red. Next, Euclid decides to make it even clearer that he is giving a definition by putting a |definition| environment around the definition. \begin{verbatim} \begin{frame} \frametitle{What Are Prime Numbers?} \begin{definition} A \alert{prime number} is a number that has exactly two divisors. \end{definition} \end{frame} \end{verbatim} Other useful environments like |theorem|, |lemma|, |proof|, |corollary|, or |example| are also predefined by \beamer. As in |amsmath|, they take optional arguments that they show in brackets. Indeed, |amsmath| is automatically loaded by \beamer. Since it is always a good idea to add examples, Euclid decides to add one: \begin{verbatim} \begin{frame} \frametitle{What Are Prime Numbers?} \begin{definition} A \alert{prime number} is a number that has exactly two divisors. \end{definition} \begin{example} \begin{itemize} \item 2 is prime (two divisors: 1 and 2). \item 3 is prime (two divisors: 1 and 3). \item 4 is not prime (\alert{three} divisors: 1, 2, and 4). \end{itemize} \end{example} \end{frame} \end{verbatim} \subsection{Creating Simple Overlays} The frame already looks quite nice, though, perhaps a bit colorful. However, Euclid would now like to show the three items one after another, not all three right away. To achieve this, he adds |\pause| commands after the first and second items: \begin{verbatim} \begin{itemize} \item 2 is prime (two divisors: 1 and 2). \pause \item 3 is prime (two divisors: 1 and 3). \pause \item 4 is not prime (\alert{three} divisors: 1, 2, and 4). \end{itemize} \end{verbatim} By showing them incrementally, he hopes to focus the audience's attention on the item he is currently talking about. On second thought, he deletes the |\pause| stuff once more since in simple cases like the above the pausing is rather silly. Indeed, Euclids has noticed that good presentations make use of this uncovering mechanism only in special circumstances. \lyxnote You add a pause using the Pause style. Euclid finds that he can also add a |\pause| between the definition and the example. So, |\pause|s seem to transcede environments, which Euclid finds quite useful. After some experimentation he finds that |\pause| only does not work in |align| environments. He immediately writes an email about this to \beamer's author, but receives a polite answer stating that the implementation of |align| does wicked things and there is no fix for this. Also, Euclid is pointed to the last part of the user's guide, where a workaround is described. \subsection{Using Overlay Specifications} The next frame is to show his main argument and is put in a ``Results'' section. Euclid desires a more complicated overlay behavior for this frame: In an enumeration of four points he wishes to uncover the points one-by-one, but he wishes the fourth point to be shown at the same time as the first. The idea is to illustrate his new proof method, namely proof by contradiction, where a wrong assumption is brought to a contradiction at the end after a number of intermediate steps that are not important at the beginning. For this, Euclid uses \emph{overlay specifications}: \begin{verbatim} \begin{frame} \frametitle{There Is No Largest Prime Number} \framesubtitle{The proof uses \textit{reductio ad absurdum}.} \begin{theorem} There is no largest prime number. \end{theorem} \begin{proof} \begin{enumerate} \item<1-> Suppose $p$ were the largest prime number. \item<2-> Let $q$ be the product of the first $p$ numbers. \item<3-> Then $q + 1$ is not divisible by any of them. \item<1-> But $q + 1$ is greater than $1$, thus divisible by some prime number not in the first $p$ numbers.\qedhere \end{enumerate} \end{proof} \uncover<4->{The proof used \textit{reductio ad absurdum}.} \end{frame} \end{verbatim} The overlay specifications are given in pointed brackets. The specification |<1->| means ``from slide 1 on.'' Thus, the first and fourth item are shown on the first slide of the frame, but the other two items are not shown. Rather, the second point is shown only from the second slide onward. \beamer\ automatically computes the number of slides needed for each frame. More generally, overlay specification are lists of numbers or number ranges where the start or ending of a range can be left open. For example |-3,5-6,8-| means ``on all slides, except for slides 4 and~7.'' \lyxnote You add overlay specifications to the items by entering \TeX-mode (press on the little \TeX\ icon) and writing |<1->|. This \TeX-text should be placed right at the beginning of the item. The |\qedhere| is used to put the \textsc{qed} symbol at the end of the line \emph{inside} the enumeration. Normally, the \textsc{qed} symbol is automatically inserted at the end of a proof environment, but that would be on an ugly empty line here. The |\item| command is not the only command that takes overlay specifications. Another useful command that takes one is the |\uncover| command. It only shows its argument on the slides specified in the overlay specification. On all other slides, the argument is hidden (though it still occupies space). The command |\only| is similar and Euclid could also have tried \begin{verbatim} \only<4->{The proof used \textit{reductio ad absurdum}.} \end{verbatim} On non-specified slides the |\only| command simply ``throws its argument away'' and the argument does not occupy any space. This leads to different heights of the text on the first three slides and on the fourth slide. If the text is centered vertically, this will cause the text to ``wobble'' and thus |\uncover| should be used. However, you sometimes wish things to ``really disappear'' on some slides and then |\only| is useful. Euclid could also have used the class option |t|, which causes the text in frames to be vertically flushed to the top. Then a differing text height does not cause wobbling. Vertical flushing can also be achieved for only a single frame be by giving the optional argument |[t]| like this to the |frame| environment as in \begin{verbatim} \begin{frame}[t] \frametitle{There Is No Largest Prime Number} ... \end{frame} \end{verbatim} Vice versa, if the |t| class option is given, a frame can be vertically centered using the |[c]| option for the frame. It turns out that certain environments, including the |theorem| and |proof| environments above, also take overlay specifications. If such a specification is given, the whole theorem or proof is only shown on the specified slides. \subsection{Structuring a Frame} On the next frame, Euclid wishes to contrast solved and open problems on prime numbers. Since there is no ``Solved problem'' environment similar to the |theorem| environment, Euclid decides to use the |block| environment, which allows him to give an arbitrary title: \begin{verbatim} \begin{frame} \frametitle{What's Still To Do?} \begin{block}{Answered Questions} How many primes are there? \end{block} \begin{block}{Open Questions} Is every even number the sum of two primes? \end{block} \end{frame} \end{verbatim} He could also have defined his own theorem-like environment by putting the following in the preamble: \begin{verbatim} %\newtheorem{answeredquestions}[theorem]{Answered Questions} %\newtheorem{openquestions}[theorem]{Open Questions} \end{verbatim} The optional argument |[theorem]| ensures that these environments are numbered the same way as everything else. Since these numbers are not shown anyway, it does not really matter whether they are given, but it's a good practice and, perhaps, Euclid might need these numbers some other time. An alternative would be nested |itemize|: \begin{verbatim} \begin{frame} \frametitle{What's Still To Do?} \begin{itemize} \item Answered Questions \begin{itemize} \item How many primes are there? \end{itemize} \item Open Questions \begin{itemize} \item Is every even number the sum of two primes? \end{itemize} \end{itemize} \end{frame} \end{verbatim} Pondering on the problem some more, Euclid decides that it would be even nicer to have the ``Answered Questions'' on the left and the ``Open Questions'' on the right, so as to create a stronger visual contrast. For this, he uses the |columns| environment. Inside this environment, |\column| commands create new columns. \begin{verbatim} \begin{frame} \frametitle{What's Still To Do?} \begin{columns} \column{.5\textwidth} \begin{block}{Answered Questions} How many primes are there? \end{block} \column{.5\textwidth} \begin{block}{Open Questions} Is every even number the sum of two primes? \end{block} \end{columns} \end{frame} \end{verbatim} Trying this, he is not quite satisfied with the result as the block on the left has a different height than the one on the right. He thinks it would be nicer if they were vertically top-aligned. So he adds the |[t]| option to the |columns| environment. Euclid is somewhat please to find out that a |\pause| at the end of the first column allows him to ``uncover'' the second column only on the second slide of the frame. \subsection{Adding References} Euclid decides that he would like to add a citation to his open questions list, since he would like to attribute the question to his good old friend Christian. Euclid is not really sure whether using a bibliography in his talk is a good idea, but he goes ahead anyway. To this end, he adds an entry to the bibliography, which he fortunately already finds in the solution file. Having the bibliography in the appendix does not quite suit Euclid, so he removes the |\appendix| command. He also notices || overlay specifications and finds them a bit strange, but they don't seem to hurt either. Hopefully they do something useful. His bibliography looks like this: \begin{verbatim} \begin{thebibliography}{10} \bibitem{Goldbach1742}[Goldbach, 1742] Christian Goldbach. \newblock A problem we should try to solve before the ISPN '43 deadline, \newblock \emph{Letter to Leonhard Euler}, 1742. \end{thebibliography} \end{verbatim} and he can then add a citation: \begin{verbatim} \begin{block}{Open Questions} Is every even number the sum of two primes? \cite{Goldbach1742} \end{block} \end{verbatim} \subsection{Verbatim Text} On another frame, Euclid would like to show a listing of an algorithm his friend Eratosthenes has sent him (saying he came up with it while reorganizing his sieve collection). Euclid normally uses the |verbatim| environment and sometimes also similar environments like |lstlisting| to typeset listings. He can also use them in \beamer, but he must add the |fragile| option to the frame: \begin{verbatim} \begin{frame}[fragile] \frametitle{An Algorithm For Finding Primes Numbers.} %\begin{verbatim} int main (void) { std::vector is_prime (100, true); for (int i = 2; i < 100; i++) if (is_prime[i]) { std::cout << i << " "; for (int j = i; j < 100; is_prime [j] = false, j+=i); } return 0; } \end{verbatim} \unskip{\MacroFont|\end{verbatim}|} %\begin{verbatim} \begin{verbatim} \begin{uncoverenv}<2> Note the use of \verb|std::|. \end{uncoverenv} \end{frame} \end{verbatim} On second thought, Euclid would prefer to uncover part of the algorithm stepwise and to add an emphasis on certain lines or parts of lines. He can use package like |alltt| for this, but in simple cases the environment |{semiverbatim}| defined by \beamer\ is more useful: It works like |{verbatim}|, except that |\|, |{|, and |}| retain their meaning (one can typeset them by using |\\|, |\{|, and |\}|). Euclid might now typeset his algorithm as follows: \begin{verbatim} \begin{frame}[fragile] \frametitle{An Algorithm For Finding Primes Numbers.} \begin{semiverbatim} \uncover<1->{\alert<0>{int main (void)}} \uncover<1->{\alert<0>{\{}} \uncover<1->{\alert<1>{ \alert<4>{std::}vector is_prime (100, true);}} \uncover<1->{\alert<1>{ for (int i = 2; i < 100; i++)}} \uncover<2->{\alert<2>{ if (is_prime[i])}} \uncover<2->{\alert<0>{ \{}} \uncover<3->{\alert<3>{ \alert<4>{std::}cout << i << " ";}} \uncover<3->{\alert<3>{ for (int j = i; j < 100;}} \uncover<3->{\alert<3>{ is_prime [j] = false, j+=i);}} \uncover<2->{\alert<0>{ \}}} \uncover<1->{\alert<0>{ return 0;}} \uncover<1->{\alert<0>{\}}} \end{semiverbatim} \visible<4->{Note the use of \alert{\texttt{std::}}.} \end{frame} \end{verbatim} The |\visible| command does nearly the same as |\uncover|. A difference occurs if the command |\setbeamercovered{transparent}| has been used to make covered text ``transparent'' instead, |\visible| still makes the text completely ``invisible'' on non-specified slides. Euclid has the feeling that the naming convention is a bit strange, but cannot quite pinpoint the problem. \subsection{Changing the Way Things Look I: Theming} With the contents of this talk fixed, Euclid decides to have a second look at the way things look. He goes back to the beginning and finds the line \begin{verbatim} \usetheme{Warsaw} \end{verbatim} By substituting other cities (he notices that these cities seem to have in common that there has been a workshop or conference on theoretical computer science there at which always the same person had a paper, attended, or gave a talk) Euclid can change the way his presentation is going to look. He decides to choose some theme that is reasonably simple but, since his talk is not too short, shows a bit of navigational information. He settles on the |Frankfurt| theme but decides that the light-dark contrast is too strong. He adds \begin{verbatim} \usecolortheme{seahorse} \usecolortheme{rose} \end{verbatim} The result seems some more subdued to him. Euclid decides that the font used for the titles is not quite classical enough (classical fonts are the latest chic in Alexandria). So, he adds \begin{verbatim} \usefonttheme[onlylarge]{structuresmallcapsserif} \end{verbatim} Euclid notices that the small fonts in the navigation bars are a bit hard to read as they are so thin. Adding the following helps: \begin{verbatim} \usefonttheme[onlysmall]{structurebold} \end{verbatim} \subsection{Changing the Way Things Look II: Colors and Fonts} Since Euclid wants to give a \emph{perfect} talk, he decides that the font used for the title simply has to be a serif italics. To change only the font used for the title, Euclid uses the following command: \begin{verbatim} \setbeamerfont{title}{shape=\itshape,family=\rmfamily} \end{verbatim} He notices that the font is still quite large (which he likes), but wonders why this is the case since he did not specify this. The reason is that calls of |\setbeamerfont| accumulate and the size was already set to |\large| by some font theme. Using the starred version of |\setbeamerfont| ``resets'' the font. Euclid decides that he would also like to change the color of the title to a dashing red, though, perhaps, with a bit of black added. He uses the following command: \begin{verbatim} \setbeamercolor{title}{fg=red!80!black} \end{verbatim} Trying the following command, Euclid is delighted to find that specifying a background color also has an effect: \begin{verbatim} \setbeamercolor{title}{fg=red!80!black,bg=red!20!white} \end{verbatim} Finally, Euclid is satisfied with the presentation and goes ahead and gives a great talk at the conference, making many new friends. He also writes that email to \beamer's author containing that long list of things that he missed in \beamer\ or that do not work. He is a bit disappointed to learn that it might take till ISPN~'79 for all these things to be taken care of, but he also understands that \beamer's authors also need some time to do research or otherwise he would have nothing to give presentations about. beamer/doc/beamerug-animations.tex0000644000175000017500000010334312050430504017074 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-animations.tex,v 38dfbd395d7c 2012/03/25 13:15:29 joseph $ \section{Animations, Sounds, and Slide Transitions} \subsection{Animations} \subsubsection{Including External Animation Files} \label{section-multimedia} If you have created an animation using some external program (like a renderer), you can use the capabilities of the presentation program (like the Acrobat Reader) to show the animation. Unfortunately, currently there is no portable way of doing this and even the Acrobat Reader does not support this feature on all platforms. To include an animation in a presentation, you can use, for example, the package |multimedia.sty| which is part of the \beamer\ package. You have to include this package explicitly. Despite being distributed as part of the \beamer\ distribution, this package is perfectly self-sufficient and can be used independently of \beamer. \begin{package}{{multimedia}} A stand-alone package that implements several commands for including external animation and sound files in a \pdf\ document. The package can be used together with both |dvips| plus |ps2pdf| and |pdflatex|, though the special sound support is available only in |pdflatex|. When including this package, you must also include the |hyperref| package. Since you will typically want to include |hyperref| only at the very end of the preamble, |multimedia| will not include |hyperref| itself. However, |multimedia| can be included both before and after |hyperref|. Since \beamer\ includes |hyperref| automatically, you need not worry about this when creating a presentation using \beamer. \end{package} For including an animation in a \pdf\ file, you can use the command |\movie|, which is explained below. Depending on the used options, this command will either setup the \pdf\ file such that the viewer application (like the Acrobat Reader) itself will try to play the movie or that an external program will be called. The latter approach, though much less flexible, must be taken if the viewer application is unable to display the movie itself. \begin{command}{\movie\oarg{options}\marg{poster text}\marg{movie filename}} This command will insert the movie with the filename \meta{movie filename} into the \pdf\ file. The movie file must reside at some place where the viewer application will be able to find it, which is typically only the directory in which the final \pdf\ file resides. The movie file will \emph{not} be embedded into the \pdf\ file in the sense that the actual movie data is part of the |main.pdf| file. The movie file must hence be copied and passed along with the \pdf\ file. (Nevertheless, one often says that the movie is ``embedded'' in the document, but that just means that one can click on the movie when viewing the document and the movie will start to play.) The movie will use a rectangular area whose size is determined either by the |width=| and |height=| options or by the size of the \meta{poster text}. The \meta{poster text} can be any \TeX\ text; for example, it might be a |\pgfuseimage| command or an |\includegraphics| command or a |pgfpicture| environment or just plain text. The \meta{poster text} is typeset in a box, the box is inserted into the normal text, and the movie rectangle is put exactly over this box. Thus, if the \meta{poster text} is an image from the movie, this image will be shown until the movie is started, when it will be exactly replaced by the movie itself. However, there is also a different, sometimes better, way of creating a poster image, namely by using the |poster| option as explained later on. The aspect ratio of the movie will \emph{not} be corrected automatically if the dimension of the \meta{poster text} box does not have the same aspect ratio. Most movies have an aspect ratio of 4:3 or 16:9. Despite the name, a movie may consist only of sound with no images. In this case, the \meta{poster text} might be a symbol representing the sound. There is also a different, dedicated command for including sounds in a \pdf\ file, see the |\sound| command in Section~\ref{section-sound}. Unless further options are given, the movie will start only when the user clicks on it. Whether the viewer application can actually display the movie depends on the application and the version. For example, the Acrobat Reader up to version~5 does not seem to be able to display any movies or sounds on Linux. On the other hand, the Acrobat Reader Version~6 on MacOS is able to display anything that QuickTime can display, which is just about everything. Embedding movies in a \pdf\ document is provided for by the \pdf\ standard and is not a peculiarity of the Acrobat Reader. In particular, one might expect other viewers like |xpdf| and |poppler|-based viewers (Okular, Evince) to support embedded movies in the future. \example |\movie{\pgfuseimage{myposterimage}}{mymovie.avi}| \example |\movie[width=3cm,height=2cm,poster]{}{mymovie.mpg}| If your viewer application is not able to render your movie, but some external application is, you must use the |externalviewer| option. This will ask the viewer application to launch an application for showing the movie instead of displaying it itself. Since this application is started in a new window, this is not nearly as nice as having the movie displayed directly by the viewer (unless you use evil trickery to suppress the frame of the viewer application). Which application is chosen is left to the discretion of the viewer application, which tries to make its choice according to the extension of the \meta{movie filename} and according to some mapping table for mapping extensions to viewer applications. How this mapping table can be modified depends on the viewer application, please see the release notes of your viewer. The following \meta{options} may be given: \begin{itemize} \item \declare{|autostart|}. Causes the movie to start playing immediately when the page is shown. At most one movie can be started in this way. The viewer application will typically be able to show at most one movie at the same time anyway. When the page is no longer shown, the movie immediately stops. This can be a problem if you use the |\movie| command to include a sound that should be played on after the page has been closed. In this case, the |\sound| command must be used. \item \declare{|borderwidth=|}\meta{\TeX\ dimension}. Causes a border of thickness \meta{\TeX\ dimension} to be drawn around the movie. Some versions of the Acrobat Reader seem to have a bug and do not display this border if is smaller than 0.5bp (about 0.51pt). \item \declare{|depth=|}\meta{\TeX\ dimension}. Overrides the depth of the \meta{poster text} box and sets it to the given dimension. \item \declare{|duration=|}\meta{time}|s|. Specifies in seconds how long the movie should be shown. The \meta{time} may be a fractional value and must be followed by the letter |s|. For example, |duration=1.5s| will show the movie for one and a half seconds. In conjunction with the |start| option, you can ``cut out'' a part of a movie for display. \item \declare{|externalviewer|}. As explained above, this causes an external application to be launched for displaying the movie in a separate window. Most options, like |duration| or |loop|, have no effect since they are not passed along to the viewer application. \item \declare{|height=|}\meta{\TeX\ dimension}. Overrides the height of the \meta{poster text} box and sets it to the given dimension. \item \declare{|label=|}\meta{movie label}. Assigns a label to the movie such that it can later be referenced by the command |\hyperlinkmovie|, which can be used to stop the movie or to show a different part of it. The \meta{movie label} is not a normal label. It should not be too fancy, since it is inserted literally into the \pdf\ code. In particular, it should not contain closing parentheses. \item \declare{|loop|}. Causes the movie to start again when the end has been reached. Normally, the movie just stops at the end. \item \declare{|once|}. Causes the movie to just stop at the end. This is the default. \item \declare{|open|}. Causes the player to stay open when the movie has finished. \item \declare{|palindrome|}. Causes the movie to start playing backwards when the end has been reached, and to start playing forward once more when the beginning is reached, and so on. \item \declare{|poster|}. Asks the viewer application to show the first image of the movie when the movie is not playing. Normally, nothing is shown when the movie is not playing (and thus the box containing the \meta{poster text} is shown). For a movie that does not have any images (but sound) or for movies with an uninformative first image this option is not so useful. \item \declare{|repeat|} is the same as |loop|. \item \declare{|showcontrols=|}\meta{true or false}. Causes a control bar to be displayed below the movie while it is playing. Instead of |showcontrols=true| you can also just say |showcontrols|. By default, no control bar is shown. \item \declare{|start=|}\meta{time}|s|. Causes the first \meta{time} seconds of the movie to be skipped. For example, |start=10s,duration=5s| will show seconds 10 to 15 of the movie, when you play the movie. \item \declare{|width=|}\meta{\TeX dimension} works like the |height| option, only for the width of the poster box. \end{itemize} \example The following example creates a ``background sound'' for the slide. \begin{verbatim} \movie[autostart]{}{test.wav} \end{verbatim} \example A movie with two extra buttons for showing different parts of the movie. \begin{verbatim} \movie[label=cells,width=4cm,height=3cm,poster,showcontrols,duration=5s]{}{cells.avi} \hyperlinkmovie[start=5s,duration=7s]{cells}{\beamerbutton{Show the middle stage}} \hyperlinkmovie[start=12s,duration=5s]{cells}{\beamerbutton{Show the late stage}} \end{verbatim} \end{command} A movie can serve as the destination of a special kind of hyperlink, namely a hyperlink introduced using the following command: \begin{command}{\hyperlinkmovie\oarg{options}\marg{movie label}\marg{text}} Causes the \meta{text} to become a movie hyperlink. When you click on the \meta{text}, the movie with the label \meta{movie label} will start to play (or stop or pause or resume, depending on the \meta{options}). The movie must be on the same page as the hyperlink. The following \meta{options} may be given, many of which are the same as for the |\movie| command; if a different option is given for the link than for the movie itself, the option for the link takes precedence: \begin{itemize} \item \declare{|duration=|}\meta{time}|s|. As for |\movie|, this causes the movie to be played only for the given number of seconds. \item \declare{|loop|} and \declare{|repeat|}. As for |\movie|, this causes the movie to loop. \item \declare{|once|}. As for |\movie|, this causes the movie to played only once. \item \declare{|palindrome|}. As for |\movie|, this causes the movie to be played forth and back. \item \declare{|pause|}. Causes the playback of the movie to be paused, if the movie was currently playing. If not, nothing happens. \item \declare{|play|}. Causes the movie to be played from whatever start position is specified. If the movie is already playing, it will be stopped and restarted at the starting position. This is the default. \item \declare{|resume|}. Resumes playback of the movie, if it has previously been paused. If has not been paused, but not started or is already playing, nothing happens. \item \declare{|showcontrols=|}\meta{true or false}. As for |\movie|, this causes a control bar to be shown or not shown during playback. \item \declare{|start=|}\meta{time}|s|. As for |\movie|, this causes the given number of seconds to be skipped at the beginning of the movie if |play| is used to start the movie. \item \declare{|stop|}. Causes the playback of the movie to be stopped. \end{itemize} \end{command} \subsubsection{Animations Created by Showing Slides in Rapid Succession} You can create an animation in a portable way by using the overlay commands of the \beamer\ package to create a series of slides that, when shown in rapid succession, present an animation. This is a flexible approach, but such animations will typically be rather static since it will take some time to advance from one slide to the next. This approach is mostly useful for animations where you want to explain each ``picture'' of the animation. When you advance slides ``by hand,'' that is, by pressing a forward button, it typically takes at least a second for the next slide to show. More ``lively'' animations can be created by relying on a capability of the viewer program. Some programs support showing slides only for a certain number of seconds during a presentation (for the Acrobat Reader this works only in full-screen mode). By setting the number of seconds to zero, you can create a rapid succession of slides. To facilitate the creation of animations using this feature, the following commands can be used: |\animate| and |\animatevalue|. \begin{command}{\animate\ssarg{overlay specification}} The slides specified by \meta{overlay specification} will be shown as quickly as possible. \example \begin{verbatim} \begin{frame} \frametitle{A Five Slide Animation} \animate<2-4> The first slide is shown normally. When the second slide is shown (presumably after pressing a forward key), the second, third, and fourth slides ``flash by.'' At the end, the content of the fifth slide is shown. ... code for creating an animation with five slides ... \end{frame} \end{verbatim} \articlenote This command is ignored in |article| mode. \end{command} \begin{command}{\animatevalue|<|\meta{start slide}|-|\meta{end slide}|>| \marg{name}\marg{start value}\marg{end value}} The \meta{name} must be the name of a counter or a dimension. It will be varied between two values. For the slides in the specified range, the counter or dimension is set to an interpolated value that depends on the current slide number. On slides before the \meta{start slide}, the counter or dimension is set to \meta{start value}; on the slides after the \meta{end slide} it is set to \meta{end value}. \example \begin{verbatim} \newcount\opaqueness \begin{frame} \animate<2-10> \animatevalue<1-10>{\opaqueness}{100}{0} \begin{colormixin}{\the\opaqueness!averagebackgroundcolor} \frametitle{Fadeout Frame} This text (and all other frame content) will fade out when the second slide is shown. This even works with {\color{green!90!black}colored} \alert{text}. \end{colormixin} \end{frame} \newcount\opaqueness \newdimen\offset \begin{frame} \frametitle{Flying Theorems (You Really Shouldn't!)} \animate<2-14> \animatevalue<1-15>{\opaqueness}{100}{0} \animatevalue<1-15>{\offset}{0cm}{-5cm} \begin{colormixin}{\the\opaqueness!averagebackgroundcolor} \hskip\offset \begin{minipage}{\textwidth} \begin{theorem} This theorem flies out. \end{theorem} \end{minipage} \end{colormixin} \animatevalue<1-15>{\opaqueness}{0}{100} \animatevalue<1-15>{\offset}{-5cm}{0cm} \begin{colormixin}{\the\opaqueness!averagebackgroundcolor} \hskip\offset \begin{minipage}{\textwidth} \begin{theorem} This theorem flies in. \end{theorem} \end{minipage} \end{colormixin} \end{frame} \end{verbatim} \articlenote This command is ignored in |article| mode. \end{command} If your animation ``graphics'' reside in individual external graphic files, you might also consider using the |\multiinclude| command, which is explained in Section~\ref{section-mpmulti}, together with |\animate|. For example, you might create an animation like this, assuming you have created graphic files named |animation.1| through to |animation.10|: \begin{verbatim} \begin{frame} \animate<2-9> \multiinclude[start=1]{animation} \end{frame} \end{verbatim} \subsubsection{Including External Animations Residing in Multiple Image Files} \label{section-xmpmulti} \label{section-mpmulti} Some animations reside in external files in the following way: For each stage of the animation there is an image file containing an image for this stage. You can include such a series of images conveniently by using the style |mpmulti.sty| from the ppower4 package. This style, written by Klaus Guntermann, introduces a command called |\multiinclude| that takes the base name of a graphic file like |mygraphic| and will then search for files called |mygraphic.0|, |mygraphic.1|, and so on, till no more files are found. It will then include these graphics files using the |\includegraphics| command, but will put these graphics ``on top of each other.'' Furthermore, and this is the important part, it inserts a |\pause| command after each graphic. This command is defined in the ppower4 package and has the same effect as the |\pause| command of \beamer. For this reason, both ppower4 and also \beamer\ will first display the basic graphic and will then additionally show the next graphic on each slide. If you try to use |mpmulti.sty| directly, you will run into the problem that it includes a file called |pause.sty|, which is part of the ppower4 package. You might also consider using the style |xmpmulti.sty| that comes with \beamer. This file is mainly identical to |mpmulti|, except for two differences: First, it does not include |pause.sty|, a style that conceptually clashes with \beamer, although \beamer\ contains a workaround that sidesteps the problem. Second, it extends the |\multiinclude| command by allowing a special default overlay specification to be given. The effect of this is explained below. \begin{package}{{xmpmulti}} Defines the command |\multiinclude|. The code of this package is due to Klaus Guntermann with some additions of mine. It can used together with \beamer\ and with ppower4, i.\,e., it can be used as a replacement for |mpmulti| if the |pause| package is also included in a ppower4-presentation. \end{package} \begin{command}{\multiinclude\opt{|[<|\meta{default overlay specification}|>]|}\oarg{options}\marg{base file name}} Except for the possibility of specifying a \meta{default overlay specification}, this command is identical to the |\multiinclude| command from the ppower4 package. If no overlay specification is given, the command will search for files called \meta{base file name}|.|\meta{number} for increasing numbers \meta{number}, starting with zero. As long as it finds these files, it issues an |\includegraphics| command on them. The files following the first one are put ``on top'' of the first one. Between any two invocations of |\includegraphics|, a |\pause| command is inserted. You can modify this behavior in different ways by given suitable \meta{options}, see below. \example Assume that MetaPost has created files called |gra.0|, |gra.1|, and |gra.2|. You can then create frame consisting of three slides that incrementally show the graphic as follows: \begin{verbatim} \begin{frame} \multiinclude{gra} \end{frame} \end{verbatim} The effect of providing a \meta{default overlay specification} is the following: First, no |\pause| command is inserted between graphics. Instead, each graphic is surrounded by an |actionenv| environment with the overlay specification set to \meta{default overlay specification}. \example You can create the same effect as in the previous example using |\multiinclude[<+->]{gra}|. \example For a more interesting usage of the \meta{default overlay specification}, consider the following usage: \begin{verbatim} \multiinclude[]{gra} \end{verbatim} This will always paint the most recently added part of the graphic in red (assuming you do not use special colors in the graphic itself). \example In order to have each graphic completely \emph{replace} the previous one, you could use |\multiinclude[<+>]{gra}|. The following \meta{options} may be given (these are the same as for the original command from the ppower4 package): \begin{itemize} \item \declare{|pause=|\meta{command}} replaces the default pausing command |\pause| by \meta{command}. If a \meta{default overlay specification} is given, the default pausing command is empty; otherwise it is |\pause|. Note that commands like |\pauselevel| are not available in |\beamer|. \item \declare{|graphics=|\meta{options}} passes the \meta{options} to the |\includegraphics| command. \example |\multiinclude[graphics={height=5cm}]{gra}| \item \declare{|format=|\meta{extension}} will cause the file names for which we search change from \meta{base file name}|.|\meta{number} to \meta{base file name}|-|\meta{number}|.|\meta{extension}. Note the change from the dot to a hyphen. This option allows you to include, say, |.jpg| files. \item \declare{|start=|\meta{number}} specifies the start \meta{number}. The default is zero. \item \declare{|end=|\meta{number}} specifies the end \meta{number}. The default is infinity. \end{itemize} \end{command} Note that, if you do not use the |format=| option, the |\includegraphics| command will be somewhat at a loss in which format your graphic file actually is. After all, it ends with the cryptic ``format suffix'' |.0| or |.1|. You can tell |\includegraphics| that any file having a suffix it knows nothing about is actually in format, say, |.mps|, using the following command: \begin{verbatim} \DeclareGraphicsRule{*}{mps}{*}{} \end{verbatim} \subsection{Sounds} \label{section-sound} You can include sounds in a presentation. Such sound can be played when you open a slide or when a certain button is clicked. The commands for including sounds are defined in the package |multimedia|, which is introduced in Section~\ref{section-multimedia}. As was already pointed out in Section~\ref{section-multimedia}, a sound can be included in a \pdf\ presentation by treating it as a movie and using the |\movie| command. While this is perfectly sufficient in most cases, there are two cases where this approach is not satisfactory: \begin{enumerate} \item When a page is closed, any playing movie is immediately stopped. Thus, you cannot use the |\movie| command to create sounds that persist for a longer time. \item You cannot play two movies at the same time. \end{enumerate} The \pdf\ specification introduces special sound objects, which are treated quite differently from movie objects. You can create a sound object using the command |\sound|, which is somewhat similar to |\movie|. There also exists a |\hyperlinksound| command, which is similar to |\hyperlinkmovie|. While it is conceptually better to use |\sound| for sounds, there are a number of things to consider before using it: \begin{itemize} \item Several sounds \emph{can} be played at the same time. In particular, it is possible to play a general sound in parallel to a (hopefully silent) movie. \item A sound playback \emph{can} persist after the current page is closed (though it need not). \item The data of a sound file \emph{can} be completely embedded in a \pdf\ file, obliterating the need to ``carry around'' other files. \item The sound objects do \emph{not} work together with |dvips| and |ps2pdf|. They only work with |pdflatex|. \item There is much less control over what part of a sound should be played. In particular, no control bar is shown and you can specify neither the start time nor the duration. \item A bug in some versions of the Acrobat Reader makes it necessary to provide very exact details on the encoding of the sound file. You have to provide the sampling rate, the number of channels (mono or stereo), the number of bits per sample, and the sample encoding method (raw, signed, Alaw or $\mu$law). If you do not know this data or provide it incorrectly, the sound will be played incorrectly. \item It seems that you can only include uncompressed sound data, which can easily become huge. This is not required by the specification, but some versions of Acrobat Reader are unable to play any compressed data. Data formats that \emph{do} work are |.aif| and |.au|. \end{itemize} \begin{command}{\sound\oarg{options}\marg{sound poster text}\marg{sound filename}} This command will insert the sound with the filename \meta{sound filename} into the \pdf\ file. As for |\movie|, the file must be accessible when the sound is to be played. Unlike |\movie|, you can however use the option |inlinesound| to actually embed the sound data in the \pdf\ file. Also as for a movie, the \meta{sound poster text} will be be put in a box that, when clicked on, will start playing the movie. However, you might also leave this box empty and only use the |autostart| option. Once playback of a sound has started, it can only be stopped by starting the playback of a different sound or by use of the |\hyperlinkmute| command. The supported sound formats depend on the viewer application. Some versions of Acrobat Reader support |.aif| and |.au|. Sometimes you also need to specify information like the sampling rate, even though this information could be extracted from the sound file and even though the \pdf\ standard specifies that the viewer application should do so. In this regard, some versions of Acrobat Reader seem to be non-standard-conforming. This command only works together with |pdflatex|. If you use |dvips|, the poster is still shown, but clicking it has no effect and no sound is embedded in any way. \example |\sound[autostart,samplingrate=22050]{}{applause.au}| The following \meta{options} may be given: \begin{itemize} \item \declare{|autostart|}. Causes the sound to start playing immediately when the page is shown. \item \declare{|automute|}. Causes all sounds to be muted when the current page is left. \item \declare{|bitspersample=|}\meta{8 or 16}. Specifies the number of bits per sample in the sound file. If this number is 16, this option need not be specified. \item \declare{|channels=|}\meta{1 or 2}. Specifies whether the sound is mono or stereo. If the sound is mono, this option need not be specified. \item \declare{|depth=|}\meta{\TeX\ dimension}. Overrides the depth of the \meta{sound poster text} box and sets it to the given dimension. \item \declare{|encoding=|}\meta{method}. Specifies the encoding method, which may be |Raw|, |Signed|, |muLaw|, or |ALaw|. If the method is |muLaw|, this option need not be specified. \item \declare{|height=|}\meta{\TeX\ dimension}. Overrides the height of the \meta{sound poster text} box and sets it to the given dimension. \item \declare{|inlinesound|} causes the sound data to be stored directly in the \pdf-file. \item \declare{|label=|}\meta{sound label}. Assigns a label to the sound such that it can later be referenced by the command |\hyperlinksound|, which can be used to start a sound. The \meta{sound label} is not a normal label. \item \declare{|loop|} or \declare{|repeat|}. Causes the sound to start again when the end has been reached. \item \declare{|mixsound=|}\meta{true or false}. If set to |true|, the sound is played in addition to any sound that is already playing. If set to |false| all other sounds (though not sound from movies) are stopped before the sound is played. The default is |false|. \item \declare{|samplingrate=|}\meta{number}. Specifies the number of samples per second in the sound file. If this number is 44100, this option need not be specified. \item \declare{|width=|}\meta{\TeX\ dimension} works like the |height| option, only for the width of the poster box. \end{itemize} \example The following example creates a ``background sound'' for the slide, assuming that |applause.au| is encoded correctly (44100 samples per second, mono, $\mu$law encoded, 16 bits per sample). \begin{verbatim} \sound[autostart]{}{applause.au} \end{verbatim} \end{command} Just like movies, sounds can also serve as destinations of special sound hyperlinks. \begin{command}{\hyperlinksound\oarg{options}\marg{sound label}\marg{text}} Causes the \meta{text} to become a sound hyperlink. When you click on the \meta{text}, the sound with the label \meta{sound label} will start to play. The following \meta{options} may be given: \begin{itemize} \item \declare{|loop|} or \declare{|repeat|}. Causes the sound to start again when the end has been reached. \item \declare{|mixsound=|}\meta{true or false}. If set to |true|, the sound is played in addition to any sound that is already playing. If set to |false| all other sounds (though not sound from movies) are stopped before the sound is played. The default is |false|. \end{itemize} \end{command} Since there is no direct way of stopping the playback of a sound, the following command is useful: \begin{command}{\hyperlinkmute\marg{text}} Causes the \meta{text} to become a hyperlink that, when clicked, stops the playback of all sounds. \end{command} \subsection{Slide Transitions} \pdf\ in general, and the Acrobat Reader in particular, offer a standardized way of defining \emph{slide transitions}. Such a transition is a visual effect that is used to show the slide. For example, instead of just showing the slide immediately, whatever was shown before might slowly ``dissolve'' and be replaced by the slide's content. There are a number of commands that can be used to specify what effect should be used when the current slide is presented. Consider the following example: \begin{verbatim} \frame{\pgfuseimage{youngboy}} \frame{ \transdissolve \pgfuseimage{man} } \end{verbatim} The command |\transdissolve| causes the slide of the second frame to be shown in a ``dissolved way.'' Note that the dissolving is a property of the second frame, not of the first one. We could have placed the command anywhere on the frame. The transition commands are overlay-specification-aware. We could collapse the two frames into one frame like this: \begin{verbatim} \begin{frame} \only<1>{\pgfuseimage{youngboy}} \only<2>{\pgfuseimage{man}} \transdissolve<2> \end{frame} \end{verbatim} This states that on the first slide the young boy should be shown, on the second slide the old man should be shown, and when the second slide is shown, it should be shown in a ``dissolved way.'' In the following, the different commands for creating transitional effects are listed. All of them take an optional argument that may contain a list of \meta{key}|=|\meta{value} pairs. The following options are possible: \begin{itemize} \item |duration=|\meta{seconds}. Specifies the number of \meta{seconds} the transition effect needs. Default is one second, but often a shorter one (like 0.2 seconds) is more appropriate. Viewer applications, especially Acrobat, may interpret this option in slightly strange ways. \item |direction=|\meta{degree}. For ``directed'' effects, this option specifies the effect's direction. Allowed values are |0|, |90|, |180|, |270|, and for the glitter effect also |315|. \end{itemize} \articlenote All of these commands are ignored in |article| mode. \lyxnote You must insert these commands using \TeX-mode. \begin{command}{\transblindshorizontal\sarg{overlay specification}\oarg{options}} Show the slide as if horizontal blinds were pulled away. \example|\transblindshorizontal| \end{command} \begin{command}{\transblindsvertical\sarg{overlay specification}\oarg{options}} Show the slide as if vertical blinds were pulled away. \example|\transblindsvertical<2,3>| \end{command} \begin{command}{\transboxin\sarg{overlay specification}\oarg{options}} Show the slide by moving to the center from all four sides. \example|\transboxin<1>| \end{command} \begin{command}{\transboxout\sarg{overlay specification}\oarg{options}} Show the slide by showing more and more of a rectangular area that is centered on the slide center. \example|\transboxout| \end{command} \begin{command}{\transdissolve\sarg{overlay specification}\oarg{options}} Show the slide by slowly dissolving what was shown before. \example|\transdissolve[duration=0.2]| \end{command} \begin{command}{\transglitter\sarg{overlay specification}\oarg{options}} Show the slide with a glitter effect that sweeps in the specified direction. \example|\transglitter<2-3>[direction=90]| \end{command} \begin{command}{\transreplace\sarg{overlay specification}\oarg{options}} Replace the previous slide directly (default behaviour). \end{command} \begin{command}{\transsplitverticalin\sarg{overlay specification}\oarg{options}} Show the slide by sweeping two vertical lines from the sides inward. \example|\transsplitverticalin| \end{command} \begin{command}{\transsplitverticalout\sarg{overlay specification}\oarg{options}} Show the slide by sweeping two vertical lines from the center outward. \example|\transsplitverticalout| \end{command} \begin{command}{\transsplithorizontalin\sarg{overlay specification}\oarg{options}} Show the slide by sweeping two horizontal lines from the sides inward. \example|\transsplithorizontalin| \end{command} \begin{command}{\transsplithorizontalout\sarg{overlay specification}\oarg{options}} Show the slide by sweeping two horizontal lines from the center outward. \example|\transsplithorizontalout| \end{command} \begin{command}{\transwipe\sarg{overlay specification}\oarg{options}} Show the slide by sweeping a single line in the specified direction, thereby ``wiping out'' the previous contents. \example|\transwipe[direction=90]| \end{command} You can also specify how \emph{long} a given slide should be shown, using the following overlay-specification-aware command: \begin{command}{\transduration\sarg{overlay specification}\marg{number of seconds}} In full screen mode, show the slide for \meta{number of seconds}. If zero is specified, the slide is shown as short as possible. This can be used to create interesting pseudo-animations. \example|\transduration<2>{1}| \end{command} beamer/doc/beamerugouterthemesmoothtree.pdf0000644000175000017500000004441312050430610021121 0ustar mohuramohura%PDF-1.5 % 15 0 obj << /Length 1109 /Filter /FlateDecode >> stream xXKoFWQIm*zHz`i"*R6E5Ϳ.wIB`1j ;73#W vLLs]ƐSQgcSY]$#ER19>rqÔ8gDHS$dd"=juZ3|c#Dz@NA1j`I&H';Iϵt$˳'{a R"Kb3NC{:OIZO% n`̉$)$p92<ǔԙIC'#Up8)2ųزG4L*nRM3w!Sa4e3̄M)U@d8mcw+i8*o"/6r\CĴ `OL2)I;QғuE 1*1*sy .q['dT>l?rb7. 5 whTfE9\o^º}k_!Neӎo_usᗤǸ܁zpT*hLsk!3+M-V 7 (U#0S ⻧#cx+hn֓AhfDc P n 2]l9NbdM\% ˦ʆs>z9&韶Jew>Rt"biQN_W%Pl9u7ܴ[9ljA;S({zYf/gi+<,20Se"lJn`+1i6ϾW}shG/~"F8vΆ:U} X)joXiы#FqU3Mg>b2m Iz.! T7ufDx zJZ endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 32.044] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 19 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 22 0 obj << /Length 1471 /Filter /FlateDecode >> stream xXKOIWhNnE( H6` `E[xLZ`gjW%aCW5>w tFIM CrЕ:E(__lI>oA'>NT3O$UΒѬwKz]HlJ4'QaP[AtVJ"3蜐HM'p6(T ^#UpC׺@ፍ1j_! duJQ\g: )X9ؖ)dE = a=˄[~㺋đ94+gEŲxᬘ},6^#.0X3,aiՓ%|Xw{OD/ǽOU:?&5&M2r9c?*,PtXk#n#Y{gYYB;G_V9Q;}!pzDG+z y|,-VJ)=EFVU7 qKLC'ےd/ d{~d{P&O_ !N/ b5SD ,Yj uVqr/GYbOGOL `d[fG"*Up:Opr2딺i,k|-6}׍k PRpj(\C᪗чܐQoBm,@/Λz5 1f!dMӡ㴞zo(vZ.vvu**tNh@/P<(hVAxJ6S_AR?h/q+$@Ҷ3|5<#ފiya7q֏QY FQpOз')} B^4j6}G%<>|d*ɦ]RS3E&ϣh#gO77դs*% Lpc4+ꀃpBRx ixS?$LwI38,AB-`+3*Z;ֿL U[?/8+ endstream endobj 11 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 6.253] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 24 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 12 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 3.126] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 25 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 29 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 34 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203951Z) /ModDate (D:20121113203951Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 17 0 obj << /Type /ObjStm /N 19 /First 144 /Length 1320 /Filter /FlateDecode >> stream xRF]_я=**X`X&!=ؒWY6_ac0\)LO_״ dRѤ!htT@KHL Tѱ]-}@Qt CpDs(Co, `7eiiҲ鑢={V\qd0оꄚnT!~ypxёCsҙAXntZaɂF Hy;5ޟ2[IJ;$_uz|\X:V*IZ!J;5h)ڭ`0P2noGvM=:?15EMkxo'+?a*l3z=-OUʡB OwT蓢Jt㺁Y:ƆX1dx@:$<˳Qߔ$0SQ&4|/Ktw%e\+S)L>bFтhy([%3Jm%u(>25 >f-JTO䮋cgH&tܻhzeUL^(ϛ_MT<?_IZZlT^ɼ=2Uu 3P)4 <92D892C1411EFC25ACBECE97FC17ECE2>] /Length 103 /Filter /FlateDecode >> stream xʻ@CQ&LBTC@H7=#JE^EjТCC?d-q/~\"W jwtg$d0`|m9c~?. endstream endobj startxref 18346 %%EOF beamer/doc/beamerouterthemeexample.tex0000644000175000017500000000111612050430504020051 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerouterthemeexample.tex,v 161eaf4bc28c 2010/05/08 12:41:37 rivanvx $ \documentclass[hyperref={draft}]{beamer} \ifx\themename\undefined \def\themename{default} \fi \useoutertheme{\themename} \usecolortheme{seahorse} \input{beamerthemeexamplebase} beamer/doc/beamerugfontthemestructuresmallcapsserif.pdf0000644000175000017500000010413412050430550023531 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1220 /Filter /FlateDecode >> stream xWYSG~ׯG*;x!.)?$yP0"}\Ƒv}20r8b+q9}:#& ʅ!%9}rMҏl>]!)oÏS(KIN0gH%n06Pw|!(0ƨqJI0q132:E)Gn6@RBMtQKy$հJnhx[ L}hվ[CNx>C^ u@Rr-S$!F y9jXHT2!CܠHcHJ~y`+vK/ͤKNdj5=͠=O}V_fi^Yb+&^{*% UO8 ܏|?`F^c7xyf<2gk  \(qFpQed/ ") %92Bg%Bpc8C_+2! 7&0M2HfBEgZuOv}Q~QՃg'}-z MUVHٞ" %nR)d\N$=_m& , endstream endobj 19 0 obj << /Length 1551 /Filter /FlateDecode >> stream xX[oS9~ϯc1_ X,KX$HM/I3}r)Ej|<=\ #Wë FP'5VP. Y-֟5RI&S'v\ ?Ny>vr p"y"r̖2m u@iFGAaZoY)&4b<&ˑްLn IQ(<ɑ%@I⟱M_ȢkH— ,xCiѴ$ ,.,,1>?E~aolGy&)Ww1,`̉$a gQF qLI)H<2SOD>Nר1b~[hi+͛^Wj}5:6]Yl9WEާޟAث=ߓ Z`4'TNNe1ʛ#`=^; ӵ# }π8Gza n_֐J[ӆHb:lZ#;_^f {z68.vqاGzmimwo˻[ 'זӋU=O/iB&MƍWn2Rjb "_,ĸ o%qd> .p $$4frS\W= d-*+?YOG endstream endobj 27 0 obj << /Length1 1166 /Length2 6580 /Length3 0 /Length 7347 /Filter /FlateDecode >> stream xuSu\ۺE@JP$v`hb RK{}=zwg1kh%P9`n. P j x:0Ww4 q!2;^ AA.$[x D $ЀB0%ts]ݜ`P+- i u:Ϫi uceg7%$$@d.08nu@8tB "a bt@0k8ԕQY4wߚP˻P{l [1 8 (wߘ  PgҖwI7 [z;!/zvCH7%}Y,6ww;j^⊄y@ BpjG(SAQА+JJ q% r 9.?3KtՀO)ПHP˝7,ؘ0K(o@wqWK_rn;=\*ߊ8@q9ˁAtG8K&js.l;j \`_2NfinpK nvs%i/7mDݝko k ZMO ,CCJ%<߇x:_ܺr@_hW/},!1`+VlK%J^HPR  50>./Pe\4EMiTF1AR0?͙gu*`ztS]O3, zR=zάd_s||SX IU?7fmel k2a?|=IzU/Pi\`y ?,TE̴JThQu_2ݸ6OB'F:~#?k0Y?^mj92YER_:^dEcd3$Pn;|{މ@%#^F|NZcto"E S,z٭QyN@D ny=OL'*fD_q懓BS؈FNnr24 $.y)IiQ?rZJ!9!v=(*e(z 2ԁZqA{ 򊺲LWx;=э(̗U!?nJQXku 61dEK3NܪH25I$`tYL*iL.8BYh{, yˈQ^ApAi23:^EԎ4 ⃣7J8YH_0u.q\ت2 /e'|tN 08@;ãȿ@{K߳Q7|Hͨkvė@2ƳX"1ت?eB([bW3?qMΉklƏј?#}p2GKg?2RG7nG9O44Ӑ_Tp.bQv]Zl *6.{D\E 2 (D`#.bH0=O--kBV<׊#Nca;>$sdL0(욖^a)1uƌMnHW/v;^8*ܷIM''B)⧜PoB>s>?&2$R-dqgTK{ dN 7e ~,DNvVD',';2r Ƅ|ߣNIKtNA;6[,eߔ9-I+b1 2-;)⎞ R;YOG`E1b8:'WG?U/@~qX&0߱+ufFgnB'{)T8PCH8AFobލͱvRw+iJ^PoòĄE|ӘO$jZ="jOit*2^+[F6ᄱbjas'4|ksY2O98r4ی?{[?ڑcZk*]@[k6-&.48G[O;Yktpc_ES/VbMV9SsG]׻L 6RuOD*$Dq4L~TTo[=4ߓh4yLˏxur0,ib gCua8۫7LO\DF2,k-Oe3εц=s7R1|i)uUy."[1% )ZѮCٲ~s 3>]ƈ&p.C:Wn~B-*tI6+XPhu7f%C)<^V/L1W _%w zo#j€('x4NK"َ͎1 Z lOI1 l~ZM%vݽrS:PO ~BPeuIJU> =@.";8%m39n!ϳ%er7r˽(E>ƗNzfi(4k^9Z,-RyŤ:+F`HFHNLrSҬʞvg8Ks$"B?N~1⮈? |Bz`w싍/?+19dاk#mݎd ^ ;}ӕy~C-/W&˷X]K;5e_bc_ u6?r\{BZ~.?˨!{dQhHzx F8[HꂇyHj&(JОǤ*Z&mhlX`P okm9ɡ"v_..=0SDʄ# 1t{F"&ľjycUf`z6%_yq4)Rޟ.k͘DU-^> $UbFUq0D|*/ 3ةtC,#f8]rc۷D8ĕd{3D;㒐27˭ή,ety{zc$pT4:;(%9j PؿY"sr( n:򲲸\'QPuanU! {]R˖."ÊEsOE>7EBg?qJ%O3m GW7:y6VhafSoJQyQR{1WEIیbOW<'5xI\dn3'ޣyꥼD"q.gI@˩)Ѫ$"0kS.^\]t>`c'>c6KԹr?.^F^٨_"zБqEeWa\ 5Fj\֎k%oW&aଷ+nť+ʭǜ!d0={R%į>ژƷ=5'mS02op3&=z'yUsѡ_c: (NxO7\z+1nFE.:].BgG饉5V~75a%5LrHBs[P,p7H#U-0UcXGb=+fa%:56MpS@(*DO%V=3o?L״ߤ_Pe3).;<RHD=s$8#?naQ^qŜg>.SK_B1GˬG36D߷8~ 7%NyeuQ]n4{~_T2,mKXv r'ܖ!~ !>A&/F,UEIDϦhC+b} uuOg3khAۚk5.C'ч GLht)$eY c&>yV]ڛL[^:BUVQ$z\8D(CW~2)Gv&d1)rDR1]nX7h2S T堮BKZR(~)pxw"(52w!ҁd#Ȉ.>&Fn|/=*|C>^pJ8}Ɂq%I@R[~ܸxz?'c/:q49_d+H/Iʧiغ=(p2?c`v@9("i8껮7Ƈeni"pu-8 JgZP)eĆFk_hbh|eNʓ,v<[7.0prG|wdK^?ute|z]t(X[?Z*PlK/MQ@BgxL?1>{lo.JulcIMGTSG4a7j DS_mΚD-#em9] x挑rx (>S'T&27t ){bZBͳ PaQHl[͇zqײƝVY S>+SE:%hQNá8j*{>?h2]}4Nnma2HbTm?p N)Kr`Ue>'wq*nWkLCjrUE-e/+'d,;'$sy{&''(z6^fkC]9PS XtG,h7}`:ɹ~3M:mfT=zň>%s_h Go9  sXSM Cw(<>TSoUuus3}UHOa^}n7Z  7ᰭ^UFy_wpz. EgӯEGf)_< Ԟ(QN{|j+yJEߪ!q ķ8zdB rn;*nEpz/6"#2pXwƧG9~=>z[2KjIÝE>(6DJ> stream xmSyD>;I@@* hxHAQxD A᡾ GD_7Z0G@W;Ia'nPtI@` ɉp  26ׁh=551$Z "PBZQT/zOg(nүHZՖ/'*Pho! a?c&vvCBTF$@&x*(P QPo$*7quEZ? b@@ /#G͐ǯKnEa+N @¼<(?!hD- ~0"GKb!I%"v9ڳ.AObiPSz;[6 E Īͫ [ 1Rp4YL @;IKIU:^d2&-P'{j"[FV@g}{+ZL10΃+|L\*Ϙ~Qb=d 5WzyFf?>2Jh se+X&\؛]ZBݦ+TAm]ȣP~^7TliSg؆"䌼/Oh٣E]½huj?Ҽ>6~ ێSbtυZɫ- ^Bͯ#զ &mzsŴBOkcHqc,ڭTmJ/8^+NvA.Sk-SdL%ǵr(}(V=ح#QУ3ʤ+ITS;2D-Whh,ȧ44 뺳T#Ӥ9i^IͩTLB&>3$Bǖ xpfadgFoBIuvȺ˓yh+׈;`jHtC:Atfr: a{Чz޿~ : ŅsWC$@'j3 6EKVNb9jŲTL}ҙ#}sA2 _ܦsPVU"NЗ#?J4sneM]dKHVkOh`."`P#iVf2~ ǜt o9L Zxd^ asI\h*cP׷L0l3K6~Nφf:ՖiVaxW<0  ;ܮ/&o`="ۤ7esN,um~Fp LoUV!Rn+נXX:ZZ-(l 8W UZRʣg.*5{1ظuatoyX QkEf_h}z%S5-E&%&8ĥ%cupqA`Y {fC2SϭAF{'Uo EԜ^O3m8#m|6}ӑ,4);u-z߹xH:x4ڜZ:.(:csu-d^W$GMVM22 dLzqPNOJ\E2+  e9r3[rid񹓦@uSRg[ ϳ;Wt7%@5kwV3,Y9q]j唩x=e0RWQ+Ȼ@k:_FV~^EXuE} T*J%խ=#ܟ2|6 68R0Hx'Rz gDfgO ԁ_8\R|Wu1M쐓wj݌;CiMu6u hս̟}[fyMIwMWEH?sDg6qՊx7[=nl]wlJ_/f.$Y/.Վ?攏"y0i;zUpAM[;!xC 638f^_xwun|L|nz7'Q~uWa.~W6ʃ *qB2 !\Z܏#]dd /;߼wjե6--Vw:!|H%wƄ&X9Fz4M }KV6|]c==<Լ~jd7L 攷vg_ \yhXU?=-HJ Ԙ=10_o9ǚYgE~Zc:tߴC$3 k*E%j>s{={\";hDv&< %N]GSؾKK]m1Gذor⊧=KxXٕ;$D Lo[]!7LnU4c+*w)l±}F_־L̞fzXqGV >`l2`Y=uxq*fwd̛>f1JYdM]K\f.3)ڷ)yp$딷A3/ׂBx|w;"Zv`&~|䴚ሖFlړ>ڔ[i-7`ܸĦ]]#v½`z5˭(*#0[L}g -&Hj1h+>GyrVma| `N]э2HۋJ#[r+2S[+Dk*i7t5թ$p*.p>Su)E-lq}Ǖq|-s]"qb…0KrhY\tPPi wa݆Ts8DɂG촶Mp.dgr[Zea._ۻZ(x>8vj\~VW ;JpFн'tsMno3,4;]VxS5K7K-P mX熲|`dY/頌 uz'ѕfJ++JqYw"Re¸U}'tPDchHd`OLctU36<:%~Ҥ9m]mm4%[.[w< ˮrR)XjY Wragk/ l5v.E%E:fE"U-Y1\"REfstѸQ"6Kfk(Q>I!sB:K{&D-ͪNW,vڪ8gJnY ?^d-+b eWP5|@Q5{RxN*P]#ZX_u{&'"9 {:O#?;x>yM7R]Ȕ<)[  .K (y?m1[}Q-Ѕ =ܗ^@Tߍx66'9w6vo)\MPsese5ٕ&~]Ho|}YPG[|mqB .bWU ?S:n߫`pMG՘t\>r#g"q4D~B:B©1)lQ̕4Bl 2D`t{%Z* .`Zh'kZU,'րζؖ6|MʈO|N[77- lvD4fBCU͂ݲŖϭ-I4}b8/(Ss6(8}5Um9ތwRp]].3:/x~5)eM7LCyXMX^7' ۖY12g2Dɤ{;Ѥe1KoH8KsvdbxUe;]җBʏ/MK^ A+FJ Z& ͢J Q> stream xڭveT\v6!h` {p `%@pwwܶ~ퟶ?Zlyϡ"W` 3+?@Y SdRZ^\(TTN@S $i tI9LJB;z8XYCZ:t 1y ~}qڃ +Q@K{ @BEUONY@+NU3{s9 X8 ?93b9LΎ@sW79trqv~}8LA@ş^ 9:_-^u``g#UURyBM!b;ۼ`WK ˟^a^S3teX8;ڛz~st 0VN@gWW?gT_o_ dFaciymeBa3+r K0r ׹6н&aj{,(,`kHe;(?!.ʦx]2 (,{SWk?o mYR;Bbn 4_dor&6ViZۘہd71e]MiIb5T}knV?`O&6n^;/{Mg%S;kݬl'-d:m!6wqrz%xt,̂&&C*3%?tu:Wk~+&<2׌4z8>oxkOӞ<&~Okaǟ(-P'tZq NU{gcXM»f'[:p)o}̿UE`@aWR wn3dD#S $C?κQ^G%sZb5Vp; Bbύf$Ӕ7l;^<OK狲Aݭ Iz˵M+*3BV3YMO;\hHJJ=\o(~C4/ҨM$U]~'dɶvQUTT60A3JdS&qxшmdp 7*LY' gc[΍1%+N[d#\SLӝR RxbeÌ}@K iF: $#y^ELn>岮*Լ\W3GB_S%OQB a TuRaF_L (L}yuBI>ˠ`Y(.Y(]Zn7k8][rӳCajh:g<*XP[qBp ..$SVE_n7I&v2՗`ݽDzao>]Ҍ49MA+!B| r4iȂ7XKж O|L}#?i6BO;qw!Ve-C'5Ԗ˜}-3(:c}cמI C͒:Jv_U(_ &֎g<|hpࢪȠFBhA.Ph b*5m@-ˢ@PP^xj;5|}j!O9ۡOC&c/v=wY\9uc ST+U8aluiܨlOH09K,Z5$ZLYGס- K_7_I^KYhe˵)ieÊuxC}HU _ѤYg ˣ? ~m02-㈢P0lvgs=Ɩ$侱G%1f颗eYٰPjz E2_NGR?a%0Wbw-`ޭiK p=;1Jї!}gbI)B/QXC| vЫl)V@-%["p" C;]oy0>[&)-sCQJhZfZihi)c&uw3V,3m$R/]DUdw1Y]CZp,̲կj(̣sOfVCғv<[ ,dBuV%QsIA$ ?<|/&eFqcΙ bjB'y0Ga'XchI)-=->hZ2'+yblX?Ed7+"AO ;d%[n@""sZ6 ` ygHM7m֋ 2y֕ha1dDɟn]b0QpM}4陹$l\+ DCvs\p Mg[QX3eGP$²fQAucrj&e+_Cs\`vXNg4phGt#_$enXe:xYO=W62\bm]w g.+R̽aCƧjB%y4ھB(2RX_DeϏoȾIE"RS)ƢVz+~g^AɅjo"%˳{iQ>4 [-8t>:wݲO7 6M6b^`ZpD-i;ŕȩg>?JCz=搃nklj>d :#R4%SA<%cGi]Dg n,?WmVI#z(B[t^\_$P,X.4VN!r3=4e|Pd-M:?%=8BJt^քNe, = bXnifzsxF[iju]dᆲAyWa=9$\f=EWg'>;1hv%T]"AiOq4 S`VCwB (D# n1drMYXL!}Ěn eh7b'q%c-:sOT=G6Lxwn9c4b:m!qnCh6ڗ{c|s ;<!OU)E= ե|soiW;Mnx;:p ʮD][t&k-N?ycA9)[+ɨV#{Nsk8dZ?VHU zEx7Tbȳ'U:<&rtω^+(UB]*NbFУQ@e@6'ZyMDyjrJ)#WqTzg-4ʉB~e:+cőO}  GgM1u i?jI }I޵ۼb*bPqϡ }r _xצf{dq RԋuS}IaqQR NX$e ?Ws~Hg=.[`'h5`ĵ%2ߖ) h!Sf-+eU`Dxf$̩x^A \nuAr6lrl>eoͭvМu I [`l5͸E'츕gsB"ybQ:(؉LKBMLLΑXAl[ongcόĐ'ؠ, (FxuOr:ƍ 8"I3i}lcWzV%ٽSݚcOIz ۾CooYp⵭~l&8"~p{ r(:_C\˲dTc)FxNqOC_/=o-l*)rlzPq8N"7u٦!% oJNڔ(Q66Gn@_ע ) o|*br\b)ALU;z? VrwujX8װUOns,Pz[/W=X548B jZ=Cdé'x p}\ ?ɇ ~ Cax'5' Ε*6.XqnďAeҼv1Bn"j?SR5&W%ZʌѼ։kv' 'Du[]RҞVESIcf~B[~,%ՎIeqZ2>©8eG_p0Nm/h&=|*.|j5tMv~hJa5lVg7\QC7S˖6Zm&ܰF2a'z!{ GڊtKdBڱqSDח'\@˴RSMNu愤X}I`*ϫ f}B ȞovҲ{鲢>w]CCw͕>($`0qBZ3ô53Ρ#@\B2QɁJwy3b*(eäôi?dӮ~A}hu56~|`f$Z] U^&F>iwS<5EElV"8$Vd48LsA*:ə=EQZL^XV<9Z=ԚJehJ};f_ FSc{ kFm;o8A6I&7kq[,/ήmJ^ɛW(ѕ}zK~*TZciP3UULŭ9e b`yfಲ{'oF|L} X],~wCjp:VƵ.QdH_'I千ߺu' "jfa0'm?< ;h䭐"LdK7Z;O}3<__e uU!Եj.a$60$M?$C35hfed/HRsgnndC8SSWT,Z+KN$7 ⼄2m ȄhRN2ggDgRSs4D4V(d(Ƿ #w%T!-Q4PWBgHHi4yp=lCWQSz ˈ-rמIQ7k4SosGll!͟"lY颙e瑟,$+)s`qV,R:mpyͿ6+KǰwTpw޸ 9wަ vdx*mLMyvzƳ v`&pfH"H0~ct:>Q,dO:!lk-8lU?ƔAwSq+Tό]FS?f=[=p͋()}? SF(k@R\*Na N"9Wk$-8J=}^7BTWuty5&)QE7Z?~1h]IBIv7**M@GUiRw<%] ZW|ZݪO"U(|34M݆ӼjjZ}WN>L!`yX96bJ,1S\q2qmx=mF]deU('7>$^rHX/g/,| M ˿R8YMvEg/},Z1H)c<1Drw thqY}x}N,";pG$MIzoeO&x\$jwp_ؐQ=_ ^t2kL -7̥u31g6;a-bsiSAr-lp҂9Gf'^eW<7t_Kq%.9o'Nћ 02Qk㶥Ҡ[SRst)sn/%Z/O%^k^;'T+,ClbӕLI[x*:jǥ=sƦ_PPzܓթI YXb~nʔ%I9&q=̐}{8D%݈OlKB.^?йw^Ąll/~eRn `6=|66)fBwSHj{)i֥vut=Je&w"oxE¬K̴'(7'd5 ͙PB?mxdps$nxGlKkMٹM?:;?ܽٞ"-8 `΍-%»QٻۗC yKշﵟp9BɌaoSM~WqK%p]80h.KH%IԃQve]| $q7Qa}:ǬlnT}|eXNU@?/!J3gko8{mylJ")[";8gwGPce+&}hɬ;D i=D3υsoM ?r0F4\Q-ej:f¨G Vd{.=|{noge4M3k<v6c QdzT~ ƪjO'ĄUúӿz:A9Fgݘx}N8^Uݯo*y\Q5fOJ hy]$#z'¥ DGiG[NQ#>&ûn䷣\nKSN烊JQ 3|F劫)Yh=C2p2ielظlo U,0][mOW2",tdfN E|<&>{(ș3PwB~ n;CZ.\$& Eʮ+Tװ,oV}CHshCPЯb1j) kI&2%MLY?=B2IjRi6"І oB2OOc+6P!Lsͫ.'}w3btDf$kk4ȖW(~g+T.W5/M|jޜa\M2Ψkk6yӤlCջ׵Vx/|ECbݚI vG\E|AkԃU}c rZ'PzBO;`/ ;EKKMp̽)Lp8=q#"<~8MlAPHr/bzc6eyyPc\p~:\gCD4ّQiF,a nЅj }tg߀_\̼X) & Y-cLXXz,XA^JeP- sM$/p|"fElL*}o~JF.%$*@) endstream endobj 33 0 obj << /Length1 1647 /Length2 5866 /Length3 0 /Length 6703 /Filter /FlateDecode >> stream xڭTgX{ HE% $4U(BRD@HGt"ҋtQls^=?}枹gNS 5 E$D0O'9`(buC<XLG BpMB!M( ) PPP h 0W4( $$/oS?l$ b?|'R-P py@&6z:~c+6a a`(8#`J˥($ ÆAPoHz{P(7xh]SbX2S {Ðh6_u]A߹Q0, @8c=!`X,( PHP67 S wWo E4X߷>{'5(($6'=3 ! sAgF[{ Pg1cSY'Ay]> OgE`l<@ހ o OGwo _).XD$dDe2P0(AcC08+ tՐ !۟,4M Յm;h$🙀F?@ Y81btĿF 7`+.*..Ӄh9@x{c @P0喕 ]Èi!q'YRgYXVh͊:Z~XWS6jU_p=%zENh-B̾0!pp}Yqfŗ-RD?¸| O!qhj^n>q~~U(7G t3}R+CGHʇ+~; QpL28rN=U7Z/pU[sp$pjwJqBV[}} zI6*if&8U1{B3ؓ?ڞx"_EAAߦnqQGT]ou* g1ůf^v 6kͧ ҫ =(@}Cc,wNv4RoISăebI]jVa3KQm*NF#,c F)CIu&n262K/%Oi^(0C(w^Nt9wnV˜in3Q<`&cPoQÉݺo;.4ٰz7β$~سW}UQ rZT-,p&ȏ\orܤkXeb^|U9EjŻoili+AfL)}ײo_{2 wVt$S* Fsʙ DF ;xjϮUwj=8w Qxp;fy (9=B+ȣ!/k, ;O]S 1Jꑳfov?CƠUWe =%}wÄ ӉI̧oɠYZYNn#c888&54Δ3+檅=~Nhm屰ZeVD3jw6=R]:uV\,yR\>v>h$UտR OdV 1?Ҭv!Ƴ G6m8RS}1䅠H= [6 p}7ήa:q +vⵟ& n1 (Moa~ba B ]NIIt}ce4su41i?"`FDT>*8^Kؓ4MV-q37mvz&X^8~crr^AWn#Uݛത G@gM?`[Ŝ wc-be3';=O-_L?l S̮N rb8]z v҇|Ўn&o'c, ^kz1L/Aa%*@ej|9{QjZ`oMcD},_2VH'XTJhA=r|3B<z>7L&$80@-,| W>6NjC{Ӑh'lE ##fȬ;՘Z dl#O-, >a8RhHIq4OjwE\6[s& u[ -u>޷&m /ѽ(+XQVyuB쎊^YQ׷^PP-g{%vTp=>C":FhIͳìj~.TĻ3 H;hD+]c_a4[XC EOx+Q;z)t#4GUE7E/{R)H+}60J}>$kPa zޙCNQfd5 DWS8%giߠ鍉qNy#jwI7/͜`zŊnWN;AGU-vJ?Nw$k/=Mjl']>fq`tm N,t iEm(s j+NR_jsjE>챩0`Q=Xj+CӸY݄!c vaxۢ|i8?sZcp'Vvׅ>bV^WeP*HX~!ؽ>82iOzTl8KT% uB/L2Gں8k񳱨gRHjLs5ҲF<6 62ijOhO:p|]܌ڃ;,|LEZ2Y"\G7fm5Ö͓yS'tscBu"O]F:i߻KfWNe t]tY 7^҆cJ3pGr^3zIg3i5=uv9Rfi=WOB*u Y뵸F"b^Ke4ǻuF daeF }Xh ]OS̅w'+ q^tH&p.]xk~JJmH>f8#=v}-iT~-:?j,j7 mSbFH|8!+([ Gѫ -D8~@F~;+ f8J5;M/mDtmeT#j"?e7J@J|JKײBb,/HbѠDYؖB>;$e3>_H!t%{G!GT2wI$aS,%~rx{G.YR?bvɗZ5ރA}ZL-<7=|lqlܻ:tWlӬ[sBƽOpշ~yˉn~֡]1\;.g¸F qur4-IzCx*}L7JCGdc Ԝ&H~ZDt#$%x$VQ{ДyMg5xyH@X``&r1a6fR㝫.+̥bv%j_OwwrȰCLYKzjľ]-Kɸw0*H"Yi(%]NXx{0Pw;6:zwxb|W&GoiDDͽ*_ ӏ[kd.\ mw>Pfx?Ufw?Z=kuU}Qc&}h7y/m+AYѓSĤ25槌f\3EeFĀ3LJԯj?T\;CEQ-[MW,9#jq  R˥"7 /OYui(-li ldXA6gXecuP.*}mdh+ޏǴo>neTcq A>]a`ʑw 2E'_,J=z?KskVLvaf("}s%8N7ã*z|Ϙ;[oq ;`53=Z{4WשfW{S ̈ ?;Uަ{)k[MZ9\ 47xG+ p|Ų>[uu;]EA<.qNb V3_O_-y勞kI, >1[&]mIG< ŹYiǒ׳ҡ T7Ѓ>qȤL|틦h{@+O}-N!D _2S(P9֮J-+~#p"^ڎT&\Y>F#!^]YWX1 ?dif[9LٳFz95%EgzwxΉHJ҇ endstream endobj 36 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203919Z) /ModDate (D:20121113203919Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 15 0 obj << /Type /ObjStm /N 22 /First 161 /Length 1265 /Filter /FlateDecode >> stream xWrF}Wn֌U1fm'2Ń כOە}C ͥ3H0AWRAZ>,&Hul$=l1 H:,, Re%{ 2CE>3ԖpriaVuh V7\xĹ%t2C\iv'qO>y$;6_ۀC<%vA=.b$É" hAJcE)a@{Oɀf=b^,M&CÈu{)qhgzh]Y,lp=j=!ח*/&/c-),?2aVH:[)x 78[C| N*)*SQ0[ gqK\a &5U%S\/7aU9#~'4X܋+Ry|٧>DtA%ABo5y$/Kpv U? bz~3~AN6ݹv3-^e-HZ_qPgt+)4SВ/RX&MZ,Z_o:/rDtr7ZOK 7kjDLNEאm&9Ů,B>'4 ]>7 ͦ*|])WˬVn*ϓRȬ95Vզ2~Q"o&wk0SxQPm/J9ڭWaY,ӻh/2~іΎ:z "}dۄ&-4'@;v>!G `Og Co@oH"m iK4]$ ճ̳p%sZUY*T >]T+n&ک endstream endobj 37 0 obj << /Type /XRef /Index [0 38] /Size 38 /W [1 2 1] /Root 35 0 R /Info 36 0 R /ID [<3233F3577AEA68E4FEA3DA5DDA72CC5A> <3233F3577AEA68E4FEA3DA5DDA72CC5A>] /Length 104 /Filter /FlateDecode >> stream xʻ`E{05Bg8|svgWʷL]BJTDC2g7\СDG7shw<3 endstream endobj startxref 34554 %%EOF beamer/doc/beamerugthemeJuanLesPins.pdf0000644000175000017500000005360212050430526020052 0ustar mohuramohura%PDF-1.5 % 20 0 obj << /Length 1587 /Filter /FlateDecode >> stream xn7]_G 貼ImE>:bInڿ >#4'B*'*gɲܑ P& :* 2-eJg$8 29C*G⯗lA6(?< Ory% GR 5ᆆaB Tju6䔁3[ 1Y@\ +DR+9>r1B Ö!9wH`7@I!Y=MQ5AV>?6VC%\Dba4 %fii9'q n _&j^^|e}MNz qT}8O$12%ø@rͼA -gTTFKcJ I3Gep,AtF/ L,TY̧w6IJ֡4eHfBefZZx%پ̍_dwc jG4ny8۠Oޔ2(ɓyQ[-\z2Z4V׊hS]NF*0Ky1پn#ir?n% wHkXF$WMmgnbWؾmwy5\OW]|e痥9*:ڗ#2vkR sI#Bp\s\d"\i몢 @MbP]8zxldհ.3@XÖ@A X]@X:F,H{46(rI+\D&oBT N|\H&LE ]| 2K|5*xԱl@:HX:d8/=1!? ֍ g7~ܷ0UCȅW;Ԁ׸`T-9IceqJA&Yo"bz\/M/ngMͻfsݣ˛@  X4]]EvL?Ub0w5(kibBJxZ4 A?k-b}׮s~Yon_-wX) M#3v)+4^P h b6pzYFſݻnuROn"w!plT4RCI/fQ&4UB78|uZRKb?:@Wpo藏kEnHh+ 9 Iz "?1%z%?i+QrG pzP7q0u`IrxvSxF / \tA.kV"AK˅M%a'Ͷ\D6iKciYv endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 32.044] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 24 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 14 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 8 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 25 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 15 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 16 16] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 26 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 13 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 27 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 16 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 14.834 14.834] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 28 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 17 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 29 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 36 0 obj << /Length 2271 /Filter /FlateDecode >> stream xZIo$Wh5Hbdi=^7ȿZg2mU("ŏ9'aKKlwnΈ4:razIv]RAϒ9io-Z>)h9彏C&DHE=DR,YvnT2-;M>0( f- T:+%ęFH% -eCH@RDi/ITC+rFi]cfj;Fk_l)YO5JMR: )h9-S$i"%S$02ӝGEU&dS$ѤyJ~~fT{k +FK/ͤՐu.M" _j`a55g63dIнUso}e}Mf(ý%8Vb~>:$'øȜIrͼA -g2/") %YBσ, Cu/ ey 1h)E,b4Pߑu&M!2b:~Q(0@ѡx.gmβa/JYM!faa[6̧ )Szg:%nR C,>g%Y.NEc+2OoKuR1,X_O+N~HG]?~Av|+V3E")sru?obul9Y/7w^*1vz\}n:7qn&v___Łr{!UݯUOcw<19 $[k> &AzMCe9+n8k@gmԋy;sp4/Ş7ՓeXX{셇XER47UjiO9%󲎧%!KbRt @<LhŪf׮w[x)Gi,&O g'컌] *z#)HVi뚂8{]ic!76waHP8\VzVA5W%(LVB40}|-;nE|pjk_k)R[)J1kx:5[ObV bĭW􀱡}Z)fUp|D1VX@rmXawXawvόX,[e|ᠸ|Bh<~@M-)MdFR0rn‹ıf&9EuXS(ƈ0Pa!,1ĔyBCb1mPhw06_?aČ9UZx֍P ?, iî s6#VePΟ;[So\XO=8|f)qt4=` r>Poo\|/xVfY*$Ŗ"Jl*fYR!sI?\6 /˻)Ao2"Nc!ZݬMЖ1&֛= }=.q]_oHĂEFHXb[@kC#qT{QN6"ZX(ՃXR8PI^bs~O' Q1Kaø2_=*.X򒡨/_.Њrg9Ds@]0眹je6FGo@7[L8Qvra\91߮'w׈d2QX7 l۵}Se Sx.~q9WxdJQ}Ⱦo7~NZaIU Pϒ ɳ.*)Uy*GP?D0 endstream endobj 11 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 6.253] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 38 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 12 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 3.126] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 39 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 30 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 3.985] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 40 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 31 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 41 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 32 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 42 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 33 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 43 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 47 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 52 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203901Z) /ModDate (D:20121113203901Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 22 0 obj << /Type /ObjStm /N 28 /First 217 /Length 1902 /Filter /FlateDecode >> stream xks6;~lc-"g$ns>wL˺DIh)IvbCRaQkAXt e$P9Td2TT Zt: 0aLc1( VC !Aqc6&XKvTHBpUZ % ,I bMD7^HϒIl^ZhEi749OQ9Zr$dt<pxxxGGω*sgat>f׍y$4Y~H$ߋtxLlLD(k巅kE[ ,r=sQ[5ӈc4]Ad϶b`o_SNOIȇ1U}l#%ؑ{7qc-(|DҮj$]d)f8T#8MW<|O"_l|^>{( `u 궻?䊃7lm)VJ~jH3YvPeH7@Fݸm1ew=ַ糺D7#i 1nb٧ td;KDkD5Now1c!f-b%ԕb.A:BM:-sDkp##BNG ]@my"9U7.]N,]3FJP INYscPJUlMn++:ϔp5O"EtЍR|]e(zhFఢp2nCOsN5}ZmD}r*_HmHAځƐ _s]Qn]OZPE#פ&;yGNcؑ uxxB~!K&tH߹F>4ԣxDeLnG#1Fl௖ZiXhk}l$pjF֍ڹ=m$V32ڏU=m$ͫ]Wg?% O5pa !>t#%D$UKcT *JE>V=z uŘhPi;*!-)/:,!G Cg$Gks y-^ݏni3J0 J<}8̿@0+O `l+oul^2)[~y\ī(cZ J<[ff}[4E)R`T$oE_LXꉅʋEU9Mf<ӛ\fY\$dI3Iz]p Q>+b y)NOfcR_tl>yH!Lgg(8FҬIα;|/%O /1,[Lѣ#夸;]q8pfHive ,wK,4 ;/ͳ+LIpmH/_-+b~b>=Zn/kM+e5jTiJ&a$.9?]IhU[ZMaW`ۑf >ȱGU lT;Y| Z8bt ]?0sySO"=GCd%JO|;--'FECR}%3a_2uEv% >y-jz*~\$PZ:IC<]Ί:g߉I])a endstream endobj 53 0 obj << /Type /XRef /Index [0 54] /Size 54 /W [1 2 1] /Root 51 0 R /Info 52 0 R /ID [ ] /Length 147 /Filter /FlateDecode >> stream x˹ P`;#yI@L EbJb$av~/>م $!B@'Rln`;.-X}3Q[y-B$DRq1?`mkYRH)Ld*3d% m[/K/w?e endstream endobj startxref 22005 %%EOF beamer/doc/beamerugouterthemetree.pdf0000644000175000017500000004307412050430612017673 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1201 /Filter /FlateDecode >> stream xXKs6W(͔(NL2m&AiS%i}wh%kgj{],@F#gl:R׳[3"V*"\h]чԖdq%^ ֊ ?tS"XDȒ:戤5jgdvL T" Z*4*c88(HI0q0:d, JM%KZЁky$U0J\>LcS<S^§3acjaH%|I1" S|YTn#!b 782HL~qfT9c4̜_+VOFs2;a'l9=JGf;Q4k`ef3 0bO}<$nG$Wk560ǴCH+4(9mbK-ӼD,+Jx<I5| <4a,T d)E W#|׏E#XeQ / y2 ~hƑ^_~W]n.UlJ?_?vj5uhhw, +~뺹&dVŀ"< oG|!JP߬@G}[wWnW}SP?*^>/]By5Gr jx l$!abt=Ľ Ofaݗf7ZXv<I@*aʠck1F%&OGzͧz@`8yuRCp ~>% Cou{.TwF>TIC#Gw endstream endobj 18 0 obj << /Length 1601 /Filter /FlateDecode >> stream xXYOI~G;}+mE(<c6`﷪x|{z&|HG>Έ4:ra|Lz֗:RH̯IrZeMҏS(M 8RQO6NZdI)U/j^2`V2[qX}^s5ice%øȜIrͼA -g2G`ǔԅ{,!ϳQpE,aYG.2l3X;ʈ9x`cRaҔ9/#!f 3Bc-qk=kV,+KhG~Qj!"j/ 8vhp2 )溺둸EJ)h"XTyśqK ,(8|J:ٗ@*0d|y !!-h=vkP>|!Ϯ 4SDE%쒜n@Xs/wq<_qu~4?&/x~P#VnybnRNaqF @`ޭe .u6h:%;'rN_SH{謠uEZChH/v8u@1*,D\b]DdX>.ڈLD]mPvSfH a{ ~ ;6HIEp$/&_wwW1px"d i C"_8ic^\Z*l?dC5 i 5ϝւ6G1 12ʨlQWWq5k #Ǘ$mjxƋr~+ tKkW:OjN"^ʠhZA>h0u :m|$탪`Ω:`)TBGX"`yZKadmc_&_f ۦܷevY?f-P: *=>EߟC}Zt`)]#o LJN(A9T<~E9~q=D~ʋ<|e|. 4BJt_rV  g`hxK5q߇(҆Oqb@Nj.Qp K{.yc7IA-)C7q#XR7Yíq4})G଴ݱ-bpt`B(joӄbrq$X6a&?S4C\Gz=AWKLAncspinFuשrщ~2OkxNYjV1 #$t3t"G7m1Cm[ͻrc-Ro(eZ[rED2!ʿ$@B"3I 4ļ㢸ʕ  [?kk endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203953Z) /ModDate (D:20121113203953Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1007 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoM7$E!AI-)(^HzAR_/$@*]2% "!)F}T>ɚT|s_J 8Su7:oj@Pu]Uke$zW X!R5 ⼆p8 W䕣 P\`q)'`M޾4'MhFCJ\X+*n`F>nSt&U4C\7e{x`*]losǫ90n#H.\J=BB͌ xl ](Ruz{o@pa(83֣y~sx͝FMPtY5VJD버=g~K%-=>#p1.0nc\Fc:_WpEG(  n1\cb妭Z?l֕|.g/Ur0TG?rh)L9~#> =2^BP]tDr: Qf+h1vŦۭ 1C Z=[n @U>Ew)[6뚯QFs*_v} 7W Cx4|i %C 쥂::&\EXŌԃ>zRgN'7'W 餬 endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 85 /Filter /FlateDecode >> stream x CA@,BիZfolf #:0J$Y`? V1v/R$Jbym7$^~K& endstream endobj startxref 17645 %%EOF beamer/doc/beamerug-introduction.tex0000644000175000017500000003373312050430504017460 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-introduction.tex,v bea5adcbd220 2012/06/01 20:16:48 joseph $ \section{Introduction} \beamer\ is a \LaTeX\ class for creating presentations that are held using a projector, but it can also be used to create transparency slides. Preparing presentations with \beamer\ is different from preparing them with \textsc{wysiwyg} programs like OpenOffice.org Impress, Apple Keynote, KOffice KPresenter or Microsoft PowerPoint. A \beamer\ presentation is created like any other \LaTeX\ document: It has a preamble and a body, the body contains |\section|s and |\subsection|s, the different slides (called \emph{frames} in \beamer) are put in environments, they are structured using |itemize| and |enumerate| environments, and so on. The obvious disadvantage of this approach is that you have to know \LaTeX\ in order to use \beamer. The advantage is that if you know \LaTeX, you can use your knowledge of \LaTeX\ also when creating a presentation, not only when writing papers. \subsection{Main Features} The list of features supported by \beamer\ is quite long (unfortunately, so is presumably the list of bugs supported by \beamer). The most important features, in our opinion, are: \begin{itemize} \item You can use \beamer\ with |pdflatex|, |latex|+|dvips|, |lualatex| and |xelatex|. |latex|+|dvipdfm| isn't supported (but we accept patches!). \item The standard commands of \LaTeX\ still work. A |\tableofcontents| will still create a table of contents, |\section| is still used to create structure, and |itemize| still creates a list. \item You can easily create overlays and dynamic effects. \item Themes allow you to change the appearance of your presentation to suit your purposes. \item The themes are designed to be usable in practice, they are not just for show. You will not find such nonsense as a green body text on a picture of a green meadow. \item The layout, the colors, and the fonts used in a presentation can easily be changed globally, but you still also have control over the most minute detail. \item A special style file allows you to use the \LaTeX-source of a presentation directly in other \LaTeX\ classes like |article| or |book|. This makes it easy to create presentations out of lecture notes or lecture notes out of presentations. \item The final output is typically a \textsc{pdf}-file. Viewer applications for this format exist for virtually every platform. When bringing your presentation to a conference on a memory stick, you do not have to worry about which version of the presentation program might be installed there. Also, your presentation is going to look exactly the way it looked on your computer. \end{itemize} \subsection{History} Till Tantau created \beamer\ mainly in his spare time. Many other people have helped by sending him emails containing suggestions for improvement or corrections or patches or whole new themes (by now, this amounts to over a thousand emails concerning \beamer). Indeed, most of the development was only initiated by feature requests and bug reports. Without this feedback, \beamer\ would still be what it was originally intended to be: a small private collection of macros that make using the |seminar| class easier. Till created the first version of \beamer\ for his PhD defense presentation in February 2003. A month later, he put the package on \textsc{ctan} at the request of some colleagues. After that, things somehow got out of hand. After being unmaintained since 2007, in April 2010 Till handed over the maintenance to Joseph Wright and Vedran Mileti\'c, who are still maintaining it: improving code, fixing bugs, adding new features and helping users. \subsection{Acknowledgments} Till Tantau: \emph{``Where to begin? \beamer's development depends not only on me, but on the feedback I get from other people. Many features have been implemented because someone requested them and I thought that these features would be nice to have and reasonably easy to implement. Other people have given valuable feedback on themes, on the user's guide, on features of the class, on the internals of the implementation, on special \LaTeX\ features, and on life in general. A small selection of these people includes (in no particular order and I have surely forgotten to name lots of people who really, really deserve being in this list): Carsten (for everything), Birgit (for being the first person to use \beamer\ besides me), Tux (for his silent criticism), Rolf Niepraschk (for showing me how to program \LaTeX\ correctly), Claudio Beccari (for writing part of the documentation on font encodings), Thomas Baumann (for the emacs stuff), Stefan M\"uller (for not loosing hope), Uwe Kern (for \textsc{xcolor}), Hendri Adriaens (for \textsc{ha-prosper}), Ohura Makoto (for spotting typos). People who have contributed to the themes include Paul Gomme, Manuel Carro, and Marlon R\'egis Schmitz.''} Joseph Wright: \emph{``Thanks to Till Tantau for the huge development effort in creating \beamer. Sincere thanks to Vedran Mileti\'c for taking the lead in continuing development.''} Vedran Mileti\'c: \emph{``First, I would like to thank Karl Berry and Sanda Buja\v ci\'c for encouragement, without which I wouldn't ever be anything but a \LaTeX\ user. I would also like to thank Ana Me\v strovi\'c, my colleague, who was excited by the prospect of using \beamer\ for preparing class material; Ivona Frankovi\'c and Marina Rajnovi\'c, my students at Department of Informatics, who were the first to hear about \LaTeX, \beamer\ and how it can help in preparing class material. I would like to thank Heiko Oberdiek (for \textsc{hyperref}), Johannes Braams (for \textsc{babel}) and Philipp Lehman (for \textsc{biblatex}). Above all, I owe a lot to Till Tantau for developing \beamer\ in the first place and to Joseph Wright for developing \textsc{siunitx} and for helping me develop \beamer\ further.''} \subsection{How to Read this User's Guide} You should start with the first part. If you have not yet installed the package, please read Section~\ref{section-installation} first. If you are new to \beamer, you should next read the tutorial in Section~\ref{section-tutorial}. When you sit down to create your first real presentation using \beamer, read Section~\ref{section-workflow} where the technical details of a possible workflow are discussed. If you are still new to creating presentations in general, you might find Section~\ref{section-guidelines} helpful, where many guidelines are given on what to do and what not to do. Finally, you should browse through Section~\ref{section-solutions}, where you will find ready-to-use solution templates for creating talks, possibly even in the language you intend to use. The second part of this user's guide goes into the details of all the commands defined in \beamer, but it also addresses other technical issues having to do with creating presentations (like how to include graphics or animations). The third part explains how you can change the appearance of your presentation easily either using themes or by specifying colors or fonts for specific elements of a presentation (like, say, the font used for the numbers in an enumeration). The fourth part talks about handouts and lecture notes, so called ``support material''. You will frequently have create some kind of support material to give to your audience during the talk or after it, and this part will explain how to do it using the same source that you created your presentation from. The last part contains ``howtos,'' which are explanations of how to get certain things done using \beamer. \medskip \noindent This user's guide contains descriptions of all ``public'' commands, environments, and concepts defined by the \beamer-class. The following examples show how things are documented. As a general rule, red text is \emph{defined}, green text is \emph{optional}, blue text indicates special mode considerations. \begingroup \noindexing \begin{command}{\somebeamercommand\oarg{optional arguments}\marg{first argument}\marg{second argument}} Here you will find the explanation of what the command |\somebeamercommand| does. The green argument(s) is optional. The command of this example takes two parameters. \example |\somebeamercommand[opt]{my arg}{xxx}| \end{command} \begin{environment}{{somebeamerenvironment}\oarg{optional arguments}\marg{first argument}} Here you will find the explanation of the effect of the environment |somebeamerenvironment|. As with commands, the green arguments are optional. \example \begin{verbatim} \begin{somebeamerenvironment}{Argument} Some text. \end{somebeamerenvironment} \end{verbatim} \end{environment} \begin{element}{some beamer element}\yes\yes\yes Here you will find an explanation of the template, color, and/or font |some beamer element|. A ``\beamer-element'' is a concept that is explained in more detail in Section~\ref{section-elements}. Roughly speaking, an \emph{element} is a part of a presentation that is potentially typeset in some special way. Examples of elements are frame titles, the author's name, or the footnote sign. For most elements there exists a \emph{template}, see Section~\ref{section-elements} once more, and also a \beamer-color and a \beamer-font. For each element, it is indicated whether a template, a \beamer-color, and/or a \beamer-font of the name |some beamer element| exist. Typically, all three exist and are employed together when the element needs to be typeset, that is, when the template is inserted the \beamer-color and -font are installed first. However, sometimes templates do not have a color or font associated with them (like parent templates). Also, there exist \beamer-colors and -fonts that do not have an underlying template. Using and changing templates is explained in Section~\ref{section-templates}. Here is the essence: To change a template, you can say \begin{verbatim} \setbeamertemplate{some beamer element}{your definition for this template} \end{verbatim} Unfortunately, it is not quite trivial to come up with a good definition for some templates. Fortunately, there are often \emph{predefined options} for a template. These are indicated like this: \begin{itemize} \itemoption{square}{} causes a small square to be used to render the template. \itemoption{circle}{\marg{radius}} causes circles of the given radius to be used to render the template. \end{itemize} You can install such a predefined option like this: \begin{verbatim} \setbeamertemplate{some beamer element}[square] %% Now squares are used \setbeamertemplate{some beamer element}[circle]{3pt} %% New a circle is used \end{verbatim} \beamer-colors are explained in Section~\ref{section-colors}. Here is the essence: To change the foreground of the color to, say, red, use \begin{verbatim} \setbeamercolor{some beamer element}{fg=red} \end{verbatim} To change the background to, say, black, use: \begin{verbatim} \setbeamercolor{some beamer element}{bg=black} \end{verbatim} You can also change them together using |fg=red,bg=black|. The background will not always be ``honoured,'' since it is difficult to show a colored background correctly and an extra effort must be made by the templates (while the foreground color is usually used automatically). \beamer-fonts are explained in Section~\ref{section-fonts}. Here is the essence: To change the size of the font to, say, large, use: \begin{verbatim} \setbeamerfont{some beamer element}{size=\large} \end{verbatim} In addition to the size, you can use things like |series=\bfseries| to set the series, |shape=\itshape| to change the shape, |family=\sffamily| to change the family, and you can use them in conjunction. Add a star to the command to first ``reset'' the font. \end{element} \beamernote As next to this paragraph, you will sometimes find the word \textsc{presentation} in blue next to some paragraph. This means that the paragraph applies only when you ``normally typeset your presentation using \LaTeX\ or pdf\LaTeX.'' \articlenote Opposed to this, a paragraph with \textsc{article} next to it describes some behavior that is special for the |article| mode. This special mode is used to create lecture notes out of a presentation (the two can coexist in one file). \lyxnote A paragraph with \textsc{lyx} next to it describes behavior that is special when you use \LyX\ to prepare your presentation. \endgroup \subsection{Getting Help} When you need help with \beamer, please do the following: \begin{enumerate} \item Read the user guide, at least the part that has to do with your problem. \item If that does not solve the problem, try searching \href{http://tex.stackexchange.com}{TeX-sx (\texttt{tex.stackexchange.com})}. Perhaps someone has already reported a similar problem and someone has found a solution. \item If you find no answers there, of if you are sure you have found a bug in \beamer{}, please report it \emph{via} \href{https://bitbucket.org/rivanvx/beamer/issues}{\texttt{bitbucket.org/rivanvx/beamer/issues}}. \item Before you file a bug report, especially a bug report concerning the installation, make sure that this is really a bug. In particular, have a look at the |.log| file that results when you \TeX\ your files. This |.log| file should show that all the right files are loaded from the right directories. Nearly all installation problems can be resolved by looking at the |.log| file. If you can, before reporting the bug, retest using latest version of \beamer\ with latest version of \TeX\ Live. This can help isolate bugs from other packages that might affect \beamer. \item \emph{As a last resort} you can try emailing authors. We do not mind getting emails, we simply get way too many of them. Because of this, we cannot guarantee that your emails will be answered timely or even at all. Reporting an issue is usually a better approach as they don't get lost. \end{enumerate} beamer/doc/beamerugthemedefault.pdf0000644000175000017500000004225012050430542017276 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1041 /Filter /FlateDecode >> stream xW[o6~ LoqúV={%ɉ,9H*ѥȊ$lG iF. #/WlRW#./W7@gDjA,0rАջR^%.ɒƷ*\[A!uI5V7duJ TlI>ThTƨqqP*`DJYy &E|ZHi"GV 5ogi./zOr JP4uF: tZpI!HTLp\"!°e(ΧD."q;A F2fYa缯}l?aIO;!L4*EDM >ׂ۬QgO,_/Kq|ҧionˍ'mD$pTCy3%c9@aTbU@l%Z0vvk/M vc*d{A0Z=']34B~u}X0aSrvcg3lؾ Tpt.Ƒ(uvUֶD'Fw}{slj a]<(F~j6 *[(@`)AOu:[]ӏZƶ>~Pr_\)o}Ff8x9KP50 a`HWy/h_az@?]T7 о BhaIߖm>,51‚O/{)%TWł6Y/oRLQcrzWd8T\۩wMvBx?4-w0Mk멠 endstream endobj 18 0 obj << /Length 1360 /Filter /FlateDecode >> stream x]O9=Nqzҵ:TUCHDؐo^f!pHxgaӀuW5~ippFIM C\NwIJ&?-4Hi>u@ !IdܑA P&?:* 2cz80JI qgdpT_#aقlIQxx D$I5 N w[ M:zm)-sg+@`}ԁ@ V%Qs-Cr5,8*b/  z@I%~~ +fkm@!Q"1_b4 %fiKrOm.-XWt8=!pý}\AILN̋J"nғytkxJXx8ĔyyM?kW~ww,jH"XR*#[3Eg dN·몮FcaM\yZ_UZ\vyQգ=(1Z|}w[חs6GȳB 2-EºogFY/6z]F;C-N ӎZk'N m}s,ux܂;8Bsu\b! +X2ڦ_7(<9: EF770j0f+[(*^Р˱! D(E_1Mio5^Ǐo {}cE~ pyJ(u\TGamooכ*׳&%SE5s?0Wrݧyt~C`]&Vidx# 0SAoP[>T ytHhxML}I jD]<aE7cSԍ?0 ՛ޛ2{x(܌ \;eB05zHlr]h>(e:F%? n?m<3_,.F o߄fZIzzD8Xfߝ*b<\L/`J߫ö^c̄oj|F endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203913Z) /ModDate (D:20121113203913Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1007 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoM7$E!AI-)(^HzAR_/$@*]2% "!)F}T>ɚT|s_J 8Su7:oj@Pu]Uke$zW X!R5 ⼆p8 W䕣 P\`q)'`M޾4'MhFCJ\X+*n`F>nSt&U4Czo2]U>.,Wsv5a|?xSGޡ\z !Q%v]y{,߁;#=Pq xg G *񼵛;3㍚誳`kssp :e {px^(#hr18|_e35mC`JA fpZE|׮aFIMQmoyO{̶}oӖ46qZgUtdsh}_>iB!0O:Kݐ\O ]o2O7\'௝/IzW|K[{|G'8ş c\`IƸDu5p኎PLqbK]eM[Xa~96ج+\`_ `pۻSnsF/}<~{<1ex1ZvTi 5~E<)YlOLR5SnS1js"ï) n ە| ;.趁#nu@ãV67Zb(M_K[E&>Ec,^ŵ6{諕"AfUptw}Sl5_U@od)2/8&4h|rJlIAK]%uBuLԱ |l̥xq!LORoN.Z endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 82 /Filter /FlateDecode >> stream x0 CQ)dڠ\h"h k м@@$Y~( :ԍ6Y?vJzVx*#׍j  endstream endobj startxref 17244 %%EOF beamer/doc/beamerugcolorthemewhale.pdf0000644000175000017500000004312012050430560020006 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1249 /Filter /FlateDecode >> stream xX_o6 ϧc̚K~ܰ]aw{\5V;m⬻o?R$'M]6@BHGR2aSZj|Dvv|FIM C 9} /txM+c-s? I4-5dyN uLu2_^6fQ6~\-~_'L*RX/ AzQp=oƋ;x#qѬqr.C2u AUs\ty՞n81Q/U[jI^ ; (g: X$i4(qZRatҧjuPtj{F :Djtcvt=>g}&h|8b% ݐ١5zJ\UT/-T:+(@35vJfq#;n2>LQ4@rDW$HJ@x yw' taձ^>aȡ%<>>,oY*`  ("GR1:5s !|9jT"#b 78 HzH8)-)^؈6^* 7:w gCΙiT:4ۉ`T &j'O_X`Ƀ? ג"K`+S{夣'?`M^WIOq7P2O@s6z!¿cP}n- bn5c{bTF`UBs

#0Bf5;WBU6Qv#PX.@PD3A͇];*zjhkߝ*E(ڷ-7M;|{.'+ A,6]?@ 0W*Ou׫M]efF8vpot%kj5.nT8:(nXwdR_<2IhSe$G!URk˻?8T?JQ;^Ǟ}N? endstream endobj 18 0 obj << /Length 1574 /Filter /FlateDecode >> stream xnI_яVn>^WE-&X;a/﷪x|m@ lkή0rKy9`]HG/ψ4:raH3'v ג斴YR Y+<{!$[kGbcS\Ӽº܏>\"cITdl`į'|61reoQ,o l)= B AUs꜏o[̶xg1qr /Y[jl|{\ޅg$ma.N ~;/zx9T񶹿?'U09#cALK -T:+! 3YuIp#7.1#@Q?( %9ޑL#(54 ژN5*rH_ O4& X,(@e")YD - KyZ9jXpT^fD-q݇HMTwOgxM|!>%fԏjȪKJdKL43miZdN/n^^`=&~O~b>p;m~1N5qzLf<g\3oBgQF,☒`rϑ9u2-i%fpf^Uq1Z{ny -Z;Tl3}\CMf ެ7l۷;C-y;:iolb9D8V JַK wh,qH-05ki5o 0.AXYXY%ܵc+g/%0)@+3 =$S#m3 퍑Z#QJ}Keô/(7j/\4AyKqaz rpR͇*衔 "P|\)iVm_=΀KU >H|h 7- 2})N8_ ǾZr|(#y %B=tWͺW2{4UqAvɮ%cZxFy_\G(QIlw/zq3lx|_SB~T+ > ߮9NncO- EJT=UYz '{krɓUjTo1 qġg?MzCE=aJ˷GY-y2 #3x*0#~- + '-K8R!e!r]f;j( Mb endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203928Z) /ModDate (D:20121113203928Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<5DD000C3F7FEE3C3D646ACA42C609FD5> <5DD000C3F7FEE3C3D646ACA42C609FD5>] /Length 82 /Filter /FlateDecode >> stream xʹ0CQ`BH8SRR3͟,C$aQd)P7d0ޥJVxU:=~[' , endstream endobj startxref 17668 %%EOF beamer/doc/beameruginnerthemerectangles.pdf0000644000175000017500000004305112050430600021030 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1197 /Filter /FlateDecode >> stream xXo6_G9~8Fܢɱlrk$BrV Bќ#(.:h2(z lIs&8,s8@9pU:X' ^' )&%9>e95@)9J+eXa# Ȉ|XMF%~q&XZ>㟰s2;az'eِs&zY j?^Y`ɝѿp/%ES{<$#f0W)Bk`(&GT2SF1. %O1Dp8%qTR&"4Ie%uqdfqJINv0sa/A~wh|/<incZZK;ʊƻLorO';=: ܐzT{ +KhOZ ³KTJO1E:Ы41K2' vp9i9 "|u" SJL7GN&i%ϋɏB$ \(WHY0 -.bYmٜi3} :ߊuf6rZ7wj3k6wNEsG\mnmum֗=Ռ0٬W\ڳQW' 8TF̨G2ȧf)tC/dVՌE{G\BPk9{ 4we$+@%~n GiTmE˭d ]'amiחc0$8y`%8y\pYh /MLb̶pXfwMn{W΀Cɘb<Pp̤p0ajlaq>GsԻU"uЇכs0@;=U2׾cLH endstream endobj 18 0 obj << /Length 1586 /Filter /FlateDecode >> stream xYKOIWkNו6Ѣ(J[6c Xl(~9ldg\F>X{^O>nΈ4:ra|L{E;RH/HrZuMҗSM8A8RQDSRJ9<ϋ C/dy k"S6eSw uh&M2bwPdX q{gue h/Z1ZK6N#S6LbSz$nRJ):ڹd|RAN!4SDh~pr9aߋ8~b41YNOò12@R,%or1^5oH8jrt7It-Q|eagŖ:ӕ=IM%AiQ/Oo)Ѵ&A>hl% +j-VrKuM0F:mZ A⋜z/&.X@=>r=OW-ĭ9bP 2`)` ckb* >gK-' P͠>&bFS+ZNRR\5>g15kV_Feq1mz^0vZK}ahw,R2/p_TŻ({$8 %\XL ݾ)Mkr=z1.IOwS\5gK=гssGveZgvnؒ2\׺ e)"hk8PӭG(,cJIKLQg^`yM5t_/W|c$v w+MTJN?6? \ puvGpXhZg'i_a3ga\V~0g@xkNI]uYMW` A5O]a{Gox:jq gxx]`9agDpnca0`+h&BM}<;B s HF [0o%14A Zn ~{V)U7;o\ ~L endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203943Z) /ModDate (D:20121113203943Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9l endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<54F2B8290543B0738B3BF3F6EBE565F4> <54F2B8290543B0738B3BF3F6EBE565F4>] /Length 83 /Filter /FlateDecode >> stream xʹ0CQ." ,RR* Y~:t/A"&%I" ]q M$ɬm{2x<A / endstream endobj startxref 17628 %%EOF beamer/doc/beamerug-emulation.tex0000644000175000017500000007766312050430504016746 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-emulation.tex,v ca2315a97e66 2010/07/12 17:10:04 rivanvx $ \section[How To Import Presentations Based on Other Packages and Classes]{How To Import Presentations Based on\\ Other Packages and Classes} The \beamer\ class comes with a number of emulation layers for classes or packages that do not support \beamer\ directly. For example, the package |beamerseminar| maps some (not all) commands of the \seminar\ class to appropriate \beamer\ commands. This way, individual slides or whole sets of slides that have been prepared for a presentation using \seminar\ can be used inside \beamer, provided they are reasonably simple. None of the emulation layers is a perfect substitute for the original (emulations seldom are) and it is not intended that they ever will be. If you want/need/prefer the features of another class, use that class for preparing your presentations. The intention of these layers is just to help speed up creating \beamer\ presentations that use parts of old presentations. You can simply copy these parts in verbatim, without having to worry about the subtle differences in syntax. A useful effect of using an emulation layer is that you get access to all the features of \beamer\ while using the syntax of another class. For example, you can use the |article| mode to create a nice article version of a \prosper\ talk. \subsection{Prosper, HA-Prosper and Powerdot} \label{section-prosper} The package |beamerprosper| maps the commands of the \prosper\ package, developed by Fr\'ed\'eric Goualard, to \beamer\ commands. Also, some commands of the \textsc{ha}-\prosper\ and \textsc{powerdot} packages, developed by Hendri Adriaens, are mapped to \beamer\ commands. \emph{These mappings cannot perfectly emulate all of Prosper!} Rather, these mappings are intended as an aid when porting parts of presentations created using \prosper\ to \beamer. \emph{No styles are implemented that mimick Prosper styles.} Rather, the normal \beamer\ themes must be used (although, one could implement \beamer\ themes that mimicks existing \prosper\ styles; we have not done that and do not intend to). The workflow for creating a \beamer\ presentation that uses \prosper\ code is the following: \begin{enumerate} \item Use the document class |beamer|, not |prosper|. Most options passed to |prosper| do not apply to |beamer| and should be omitted. \item Add a |\usepackage{beamerprosper}| to start the emulation. \item If you add slides relying on \textsc{ha}-\prosper, you may wish to add the option |framesassubsections| to |beamerprosper|, though we do not recommend it (use the normal |\subsection| command instead; it gives you more fine-grained control). \item If you also copy the title commands, it may be necessary to adjust the content of commands like |\title| or |\author|. Note that in \prosper\ the |\email| command is given outside the |\author| command, whereas in \beamer\ and also in \textsc{ha}-\prosper\ it is given inside. \item When copying slides containing the command |\includegraphics|, you will almost surely have to adjust its usage. If you use pdf\LaTeX\ to typeset the presentation, than you cannot include PostScript files. You should convert them to |.pdf| or to |.png| and adjust any usage of |\includegraphics| accordingly. \item When starting to change things, you can use all of \beamer's commands and even mix them with \prosper\ commands. \end{enumerate} An example can be found in the file |beamerexample-prosper.tex|. There are, unfortunately, quite a few places where you may run into problems: \begin{itemize} \item In \beamer, the command |\PDForPS| will do exactly what the name suggests: insert the first argument when run by |pdflatex|, insert the second argument when run by |latex|. However, in \prosper, the code inserted for the \pdf\ case is actually PostScript code, which is only later converted to \pdf\ by some external program. You will need to adjust this PostScript code such that it works with |pdflatex| (which is not always possible). \item If you used fine-grained spacing commands, like adding a little horizontal skip here and a big negative vertical skip there, the typesetting of the text may be poor. It may be a good idea to just remove these spacing commands. \item If you use |pstricks| commands, you will either have to stick to using |latex| and |dvips| or will have to work around them using, for example, |pgf|. Porting lots of |pstricks| code is bound to be difficult, if you wish to switch over to |pdflatex|, so be warned. You can read more about that in Section~\ref{section-graphics} that talks about graphics. \item If the file cannot be compiled because some \prosper\ command is not implemented, you will have to delete this command and try to mimick its behavior using some \beamer\ command. \end{itemize} \begin{package}{{beamerprosper}} Include this package in a |beamer| presentation to get access to \prosper\ commands. Use |beamer| as the document class, not |prosper|. Most of the options passed to the class |prosper| make no sense in |beamer|, so just delete them. This package takes the following options: \begin{itemize} \item \declare{|framesassubsections|} causes each frame to create its own subsection with the frame title as subsection name. This behavior mimicks \textsc{ha}-\textsc{prosper}'s behavior. In a long talk this will create way too many subsections. \end{itemize} \articlenote The |framesassubsections| option has no effect in |article| mode. \example \begin{verbatim} \documentclass[notes]{beamer} \usepackage[framesassubsections]{beamerprosper} \title{A Beamer Presentation Using (HA-)Prosper Commands} \subtitle{Subtitles Are Also Supported} \author{Till Tantau} \institution{The Institution is Mapped To Institute} \begin{document} \maketitle \tsectionandpart{Introduction} \overlays{2}{ \begin{slide}{About this file} \begin{itemstep} \item This is a beamer presentation. \item You can use the prosper and the HA-prosper syntax. \item This is done by mapping prosper and HA-prosper commands to beamer commands. \item The emulation is by no means perfect. \end{itemstep} \end{slide} } \section{Second Section} \subsection{A subsection} \begin{frame} \frametitle{A frame created using the \texttt{frame} environment.} \begin{itemize}[<+->] \item You can still use the original beamer syntax. \item The emulation is intended only to make recycling slides easier, not to install a whole new syntax for beamer. \end{itemize} \end{frame} \begin{notes}{Notes for these slides} My notes for these slides. \end{notes} \end{document} \end{verbatim} You can run, for example, pdf\LaTeX\ on the file to get a \beamer\ presentation with overlays. Adding the |notes| option will also show the notes. Certain commands, like |\LeftFoot|, are ignored. You can change the theme using the usual commands. You can also use all normal \beamer\ commands and concepts, like overlay-specifications, in the file. You can also create an |article| version by using the class |article| and including the package |beamerarticle|. \end{package} In the following, the effects of \prosper\ commands in \beamer\ are listed. \begin{command}{\email\marg{text}} Simply typesets its argument in typewriter text. Should hence be given \emph{inside} the |\author| command. \end{command} \begin{command}{\institution\marg{text}} This command is mapped to \beamer's |\institute| command if given \emph{outside} the |\author| command, otherwise it typesets its argument in a smaller font. \end{command} \begin{command}{\Logo\opt{|(|\meta{x}|,|\meta{y}|)|}\marg{logo text}} This is mapped to |\logo{|\meta{logo text}|}|. The coordinates are ignored. \end{command} \begin{environment}{{slides}\oarg{options}\marg{frame title}} Inserts a frame with the |fragile=singleslide| option set. The \meta{frame title} will be enclosed in a |\frametitle| command. The following \meta{options} may be given: \begin{itemize} \item \declare{|trans=|\meta{prosper transition}} installs the specified \meta{prosper transition} as the transition effect when showing the slide. \item \declare{\meta{prosper transition}} has the same effect as |trans=|\meta{prosper transition}. \item \declare{|toc=|\meta{entry}} overrides the subsection table of contents entry created by this slide by \meta{entry}. Note that a subsection entry is created for a slide only if the |framesassubsections| options is specified. \item \declare{|template|=\meta{text}} is ignored. \end{itemize} \example The following two texts have the same effect: \begin{verbatim} \begin{slide}[trans=Glitter,toc=short]{A Title} Hi! \end{slide} \end{verbatim} and \begin{verbatim} \subsection{short} % omitted, if framesassubsections is not specified \begin{frame}[fragile=singleslide] \transglitter \frametitle{A Title} Hi! \end{frame} \end{verbatim} \end{environment} \begin{command}{\overlays\marg{number}\marg{slide environment}} This will put the \meta{slide environment} into a frame that does not have the |fragile| option and which can hence contain overlayed text. The \meta{number} is ignored since the number of necessary overlays is computed automatically by \beamer. \example The following code fragments have the same effect: \begin{verbatim} \overlays{2}{ \begin{slide}{A Title} \begin{itemstep} \item Hi! \item Ho! \end{itemstep} \end{slide}} \end{verbatim} and \begin{verbatim} \subsection{A Title} % omitted, if framesassubsections is not specified \begin{frame} \frametitle{A Title} \begin{itemstep} \item Hi! \item Ho! \end{itemstep} \end{frame} \end{verbatim} \end{command} \begin{command}{\fromSlide\marg{slide number}\marg{text}} This is mapped to |\uncover<|\meta{slide number}|->{|\meta{text}|}|. \end{command} \begin{command}{\fromSlide|*|\marg{slide number}\marg{text}} This is mapped to |\only<|\meta{slide number}|->{|\meta{text}|}|. \end{command} \begin{command}{\onlySlide\marg{slide number}\marg{text}} This is mapped to |\uncover<|\meta{slide number}|>{|\meta{text}|}|. \end{command} \begin{command}{\onlySlide|*|\marg{slide number}\marg{text}} This is mapped to |\only<|\meta{slide number}|>{|\meta{text}|}|. \end{command} \begin{command}{\untilSlide\marg{slide number}\marg{text}} This is mapped to |\uncover<-|\meta{slide number}|>{|\meta{text}|}|. \end{command} \begin{command}{\untilsSlide|*|\marg{slide number}\marg{text}} This is mapped to |\only<-|\meta{slide number}|>{|\meta{text}|}|. \end{command} \begin{command}{\FromSlide\marg{slide number}} This is mapped to |\onslide<|\meta{slide number}|->|. \end{command} \begin{command}{\OnlySlide\marg{slide number}} This is mapped to |\onslide<|\meta{slide number}|>|. \end{command} \begin{command}{\UntilSlide\marg{slide number}} This is mapped to |\onslide<-|\meta{slide number}|>|. \end{command} \begin{command}{\slideCaption\marg{text}} This is mapped to |\date{|\meta{text}|}|. \end{command} \begin{command}{\fontTitle\marg{text}} Simply inserts \meta{text}. \end{command} \begin{command}{\fontText\marg{text}} Simply inserts \meta{text}. \end{command} \begin{command}{\PDFtransition\marg{prosper transition}} Maps the \meta{prosper transition} to an appropriate |\transxxxx| command. \end{command} \begin{environment}{{Itemize}} This is mapped to |itemize|. \end{environment} \begin{environment}{{itemstep}} This is mapped to |itemize| with the option |[<+->]|. \end{environment} \begin{environment}{{enumstep}} This is mapped to |enumerate| with the option |[<+->]|. \end{environment} \begin{command}{\hiddenitem} This is mapped to |\addtocounter{beamerpauses}{1}|. \end{command} \begin{command}{\prosperpart\oarg{options}\marg{text}} This command has the same effect as \prosper's |\part| command. \beamer's normal |\part| command retains its normal semantics. Thus, you might wish to replace all occurrences of |\part| by |\prosperpart|. \end{command} \begin{command}{\tsection\opt{|*|}\marg{section name}} Creates a section named \meta{section name}. The star, if present, is ignored. \end{command} \begin{command}{\tsectionandpart\opt{|*|}\marg{part text}} Mapped to a |\section| command followed by a |\prosperpart| command. \articlenote In |article| mode, no part page is added. \end{command} \begin{command}{\dualslide\oarg{x}\oarg{y}\oarg{z}\marg{options}\marg{left column}\marg{right column}} This command is mapped to a |columns| environment. The \meta{left column} text is shown in the left column, the \meta{right column} text is shown in the right column. The options \meta{x}, \meta{y}, and \meta{z} are ignored. Also, all \meta{options} are ignored, except for \declare{|lcolwidth=|} and \declare{|rcolwidth=|}. These set the width of the left or right column, respectively. \end{command} \begin{command}{\PDForPS\marg{PostScript text}\marg{PDF text}} Inserts either the \meta{PostScript text} or the \meta{PDF text}, depending on whether |latex| or |pdflatex| is used. When porting, the \meta{PDF text} will most likely be \emph{incorrect}, since in \prosper\ the \meta{PDF text} is actually PostScript text that is later transformed to \pdf\ by some external program. If the \meta{PDF text} contains an |\includegraphics| command (which is its usual use), you should change the name of the graphic file that is included to a name ending |.pdf|, |.png|, or |.jpg|. Typically, you will have to convert your graphic to this format. \end{command} \begin{command}{\onlyInPDF\meta{PDF text}} The \meta{PDF text} is only included if |pdflatex| is used. The same as for the command |\PDForPS| applies here. \end{command} \begin{command}{\onlyInPS\meta{PS text}} The \meta{PS text} is only included if |latex| is used. \end{command} \begin{environment}{{notes}\marg{title}} Mapped to |\note{\textbf{|\meta{title}|}|\meta{environment contents}|}| (more or less). \end{environment} The following commands are parsed by \beamer, but have no effect: \begin{itemize}\itemsep=0pt\parskip=0pt \item |\myitem|, \item |\FontTitle|, \item |\FontText|, \item |\ColorFoot|, \item |\DefaultTransition|, \item |\NoFrenchBabelItemize|, \item |\TitleSlideNav|, \item |\NormalSlideNav|, \item |\HAPsetup|, \item |\LeftFoot|, and \item |\RightFoot|. \end{itemize} \subsection{Seminar} \label{section-seminar} The package |beamerseminar| maps a subset of the commands of the \seminar\ package to \beamer. As for \prosper, the emulation cannot be perfect. For example, no portrait slides are supported, no automatic page breaking, the framing of slides is not emulated. Unfortunately, for all frames (|slide| environments) that contain overlays, you have to put the environment into a |frame| environment ``by hand'' and must remove all occurrences of |\newslide| inside the environment by closing the slide and opening a new one (and then putting these into |frame| environments). The workflow for the migration is the following: \begin{enumerate} \item Use the document class |beamer|, not |seminar|. Most options passed to |seminar| do not apply to |beamer| and should be omitted. \item If you copy parts of a presentation that is mixed with normal text, add the |ignorenonframetext| option and place \emph{every} |slide| environment inside a |frame| since \beamer\ will not recognize the |\begin{slide}| as the beginning of a frame. \item Add a |\usepackage{beamerseminar}| to start the emulation. Add the option |accumulate| if you wish to create a presentation to be held with a video projector. \item Possibly add commands to install themes and templates. \item There should not be commands in the preamble having to do with page and slide styles. They do not apply to |beamer|. \item If a |\newslide| command is used in a |slide| (or similarly |slide*|) environment that contains an overlay, you must replace it by a closing |\end{slide}| and an opening |\begin{slide}|. \item Next, for each |slide| or |slide*| environment that contains an overlay, you must place a |frame| environment around it. You can remove the |slide| environment (and hence effectively replace it by |frame|), unless you use the |accumulate| option. \item If you use |\section| or |\subsection| commands inside slides, you will have to move them \emph{outside} the frames. It may then be necessary to add a |\frametitle| command to the slide. \item If you use pdf\LaTeX\ to typeset the presentation, you cannot include PostScript files. You should convert them to |.pdf| or to |.png| and adjust any usage of |\includegraphics| accordingly. \item When starting to change things, you can use all of \beamer's commands and even mix them with \seminar\ commands. \end{enumerate} An example can be found in the file |beamerexample-seminar.tex|. There are, unfortunately, numerous places where you may run into problems: \begin{itemize} \item The whole |note| management of |seminar| is so different from |beamer|'s, that you will have to edit notes ``by hand.'' In particular, commands like |\ifslidesonly| and |\ifslide| may not do exactly what you expect. \item If you use |pstricks| commands, you will either have to stick to using |latex| and |dvips| or will have to work around them using, for example, |pgf|. Porting lots of |pstricks| code is bound to be difficult, if you wish to switch over to |pdflatex|, so be warned. \item If the file cannot be compiled because some \seminar\ command is not implemented, you will have to delete this command and try to mimick its behavior using some \beamer\ command. \end{itemize} \begin{package}{{beamerseminar}} Include this package in a |beamer| presentation to get access to \seminar\ commands. Use |beamer| as the document class, not |seminar|. Most of the options passed to the class |seminar| make no sense in |beamer|, so just delete them. This package takes the following options: \begin{itemize} \item \declare{|accumulate|} causes overlays to be accumulated. The original behavior of the \seminar\ package is that in each overlay only the really ``new'' part of the overlay is shown. This makes sense, if you really print out the overlays on transparencies and then really stack overlays on top of each other. For a presentation with a video projector, you rather want to present an ``accumulated'' version of the overlays. This is what this option does: When the new material of the $i$-th overlay is shown, the material of all previous overlays is also shown. \end{itemize} \example The following example is an extract of |beamerexample-seminar.tex|: \begin{verbatim} \documentclass[ignorenonframetext]{beamer} \usepackage[accumulated]{beamerseminar} \usepackage{beamerthemeclassic} \title{A beamer presentation using seminar commands} \author{Till Tantau} \let\heading=\frametitle \begin{document} \begin{frame} \maketitle \end{frame} This is some text outside any frame. It will only be shown in the article version. \begin{frame} \begin{slide} \heading{This is a frame title.} \begin{enumerate} {\overlay1 \item Overlays are a little tricky in seminar. {\overlay2 \item But it is possible to use them in beamer. } } \end{enumerate} \end{slide} \end{frame} \end{document} \end{verbatim} You can use all normal \beamer\ commands and concepts, like overlay-specifications, in the file. You can also create an |article| version by using the class |article| and including the package |beamerarticle|. \end{package} In the following, the effects of \seminar\ commands in \beamer\ are listed. \begin{command}{\overlay\marg{number}} Shows the material till the end of the current \TeX\ group only on overlay numbered $\hbox{\meta{number}}+1$ or, if the |accumulate| option is given, from that overlay on. Usages of this command may be nested (as in \seminar). If an |\overlay| command is given inside another, it temporarily ``overrules'' the outer one as demonstrated in the following example, where it is assumed that the |accumulate| option is given. \example \begin{verbatim} \begin{frame} \begin{slide} This is shown from the first slide on. {\overlay{2} This is shown from the third slide on. {\overlay{1} This is shown from the second slide on. } This is shown once more from the third slide on. } \end{slide} \end{frame} \end{verbatim} \end{command} \begin{environment}{{slide}\opt{|*|}} Mainly installs an |\overlay{0}| around the \meta{environment contents}. If the |accumulate| option is given, this has no effect, but otherwise it will cause the main text of the slide to be shown \emph{only} on the first slide. This is useful if you really wish to physically place slides on top of each other. The starred version does the same as the nonstarred one. If this command is not issued inside a |\frame|, it sets up a frame with the |fragile=singleframe| option set. Thus, this frame will contain only a single slide. \example \begin{verbatim} \begin{slide} Some text. \end{slide} \frame{ \begin{slide} Some text. And an {\overlay{1} overlay}. \end{slide} } \end{verbatim} \end{environment} \begin{command}{\red} Mapped to |\color{red}|. \end{command} \begin{command}{\blue} Mapped to |\color{blue}|. \end{command} \begin{command}{\green} Mapped to |\color{green}|. \end{command} \begin{command}{\ifslide} True in the |presentation| modes, false in the |article| mode. \end{command} \begin{command}{\ifslidesonly} Same as |\ifslide|. \end{command} \begin{command}{\ifarticle} False in the |presentation| modes, true in the |article| mode. \end{command} \begin{command}{\ifportrait} Always false. \end{command} The following commands are parsed by \beamer, but have no effect: \begin{itemize}\itemsep=0pt\parskip=0pt \item |\ptsize|. \end{itemize} \subsection{Foil\TeX} \label{section-foiltex} The package |beamerfoils| maps a subset of the commands of the \foils\ package to \beamer. Since this package defines only few non-standard \TeX\ commands and since \beamer\ implements all the standard commands, the emulation layer is pretty simple. A copyright notice: The Foil\TeX\ package has a restricted license. For this reason, no example from the \foils\ package is included in the \beamer\ class. The emulation itself does not use the code of the \foils\ package (rather, it just maps \foils\ commands to \beamer\ commands). For this reason, our understanding is that the \emph{emulation} offered by the \beamer\ class is ``free'' and legally so. IBM has a copyright on the \foils\ class, not on the effect the commands of this class have. (At least, that's our understanding of things.) The workflow for the migration is the following: \begin{enumerate} \item Use the document class |beamer|, not |foils|. \item Add a |\usepackage{beamerfoils}| to start the emulation. \item Possibly add commands to install themes and templates. \item If the command |\foilhead| is used inside a |\frame| command or |frame| environment, it behaves like |\frametitle|. If it used outside a frame, it will start a new frame (with the |allowframebreaks| option, thus no overlays are allowed). This frame will persist till the next occurrence of |\foilhead| or of the new command |\endfoil|. Note that a |\frame| command will \emph{not} end a frame started using |\foilhead|. \item If you rely on automatic frame creation based on |\foilhead|, you will need to insert an |\endfoil| before the end of the document to end the last frame. \item If you use pdf\LaTeX\ to typeset the presentation, than you cannot include PostScript files. You should convert them to |.pdf| or to |.png| and adjust any usage of |\includegraphics| accordingly. \item Sizes of objects are different in \beamer, since the scaling is done by the viewer, not by the class. Thus a framebox of size 6 inches will be way too big in a \beamer\ presentation. You will have to manually adjust explicit dimension occurring in a foil\TeX\ presentation. \end{enumerate} \begin{package}{{beamerfoils}} Include this package in a |beamer| presentation to get access to \foils\ commands. Use |beamer| as the document class, not |foils|. \example In the following example, frames are automatically created. The |\endfoil| at the end is needed to close the last frame. \begin{verbatim} \documentclass{beamer} \usepackage{beamerfoils} \begin{document} \maketitle \foilhead{First Frame} This is on the first frame. \pagebreak This is on the second frame, which is a continuation of the first. \foilhead{Third Frame} This is on the third frame. \endfoil \end{document} \end{verbatim} \example In this example, frames are manually inserted. No |\endfoil| is needed. \begin{verbatim} \documentclass{beamer} \usepackage{beamerfoils} \begin{document} \frame{\maketitle} \frame{ \foilhead{First Frame} This is on the first frame. } \frame{ \foilhead{Second Frame} This is on the second frame. } \end{document} \end{verbatim} \end{package} In the following, the effects of \foils\ commands in \beamer\ are listed. \begin{command}{\MyLogo\marg{logo text}} This is mapped to |\logo|, though the logo is internally stored, such that it can be switched on and off using |\LogoOn| and |\LogoOff|. \end{command} \begin{command}{\LogoOn} Makes the logo visible. \end{command} \begin{command}{\LogoOff} Makes the logo invisible. \end{command} \begin{command}{\foilhead\oarg{dimension}\marg{frame title}} If used inside a |\frame| command or |frame| environment, this is mapped to |\frametitle{|\meta{frame title}|}|. If used outside any frames, a new frame is started with the option |allowframebreaks|. If a frame was previously started using this command, it will be closed before the next frame is started. The \meta{dimension} is ignored. \end{command} \begin{command}{\rotatefoilhead\oarg{dimension}\marg{frame title}} This command has exactly the same effect as |\foilhead|. \end{command} \begin{command}{\endfoil} This is a command that is \emph{not} available in \foils. In \beamer, it can be used to end a frame that has automatically been opened using |\foildhead|. This command must be given before the end of the document if the last frame was opened using |\foildhead|. \end{command} \begin{environment}{{boldequation}\opt{|*|}} This is mapped to the |equation| or the |equation*| environment, with |\boldmath| switched on. \end{environment} \begin{command}{\FoilTeX} Typesets the foil\TeX\ name as in the \foils\ package. \end{command} \begin{command}{\bm\marg{text}} Implemented as in the \foils\ package. \end{command} \begin{command}{\bmstyle\marg{text}\marg{more text}} Implemented as in the \foils\ package. \end{command} The following additional theorem-like environments are predefined: \begin{itemize} \item |Theorem*|, \item |Lemma*|, \item |Corollary*|, \item |Proposition*|, and \item |Definition*|. \end{itemize} For example, the first is defined using |\newtheorem*{Theorem*}{Theorem}|. The following commands are parsed by \beamer, but have no effect: \begin{itemize} \item |\leftheader|, \item |\rightheader|, \item |\leftfooter|, \item |\rightfooter|, \item |\Restriction|, and \item |\marginpar|. \end{itemize} \subsection{\TeX Power} \label{section-texpower} The package |beamertexpower| maps a subset of the commands of the \texpower\ package, due to Stephan Lehmke, to \beamer. This subset is currently rather small, so a lot of adaptions may be necessary. Note that \texpower\ is not a full class by itself, but a package that needs another class, like |seminar| or |prosper| to do the actual typesetting. It may thus be necessary to additionally load an emulation layer for these also. Indeed, it \emph{might} be possible to directly use \texpower\ inside \beamer, but we have not tried that. Perhaps this will be possible in the future. Currently, the package |beamertexpower| mostly just maps the |\stepwise| and related commands to appropriate \beamer\ commands. The |\pause| command need not be mapped since it is directly implemented by \beamer\ anyway. The workflow for the migration is the following: \begin{enumerate} \item Replace the document class by |beamer|. If the document class is |seminar| or |prosper|, you can use the above emulation layers, that is, you can include the files |beamerseminar| or |beamerprosper| to emulate the class. All notes on what to do for the emulation of \seminar\ or \prosper\ also apply here. \item Additionally, add |\usepackage{beamertexpower}| to start the emulation. \end{enumerate} \begin{package}{{beamertexpower}} Include this package in a |beamer| presentation to get access to the \texpower\ commands having to do with the |\stepwise| command. \end{package} A note on the |\pause| command: Both \beamer\ and \texpower\ implement this command and they have the same semantics; so there is no need to map this command to anything different in |beamertexpower|. However, a difference is that |\pause| can be used almost anywhere in \beamer, whereas it may only be used in non-nested situations in \texpower. Since \beamer\ is only more flexible than \texpower\ here, this will not cause problems when porting. In the following, the effect of \texpower\ commands in \beamer\ are listed. \begin{command}{\stepwise\marg{text}} As in \texpower, this initiates text in which commands like |\step| or |\switch| may be given. Text contained in a |\step| command will be enclosed in an |\only| command with the overlay specification |<+(1)->|. This means that the text of the first |\step| is inserted from the second slide onward, the text of the second |\step| is inserted from the third slide onward, and so on. \end{command} \begin{command}{\parstepwise\marg{text}} Same as |\stepwise|, only |\uncover| is used instead of |\only| when mapping the |\step| command. \end{command} \begin{command}{\liststepwise\marg{text}} Same as |\stepwise|, only an invisible horizontal line is inserted before the \meta{text}. This is presumably useful for solving some problems related to vertical spacing in \texpower. \end{command} \begin{command}{\step\marg{text}} This is either mapped to |\only<+(1)->|\meta{text} or to |\uncover<+(1)->|\meta{text}, depending on whether this command is used inside a |\stepwise| environment or inside a |\parstepwise| environment. \end{command} \begin{command}{\steponce\marg{text}} This is either mapped to |\only<+(1)>|\meta{text} or to |\uncover<+(1)>|\meta{text}, depending on whether this command is used inside a |\stepwise| environment or inside a |\parstepwise| environment. \end{command} \begin{command}{\switch\marg{alternate text}\marg{text}} This is mapped to |\alt<+(1)->{|\meta{text}|}{|\meta{alternate text}|}|. Note that the arguments are swapped. \end{command} \begin{command}{\bstep\marg{text}} This is always mapped to |\uncover<+(1)->|\meta{text}. \end{command} \begin{command}{\dstep} This just advances the counter |beamerpauses| by one. It has no other effect. \end{command} \begin{command}{\vstep} Same as |\dstep|. \end{command} \begin{command}{\restep\marg{text}} Same as |\step|, but the \meta{text} is shown one the same slide as the previous |\step| command. This is implemented by first decreasing the counter |beamerpauses| by one before calling |\step|. \end{command} \begin{command}{\reswitch\marg{alternate text}\meta{text}} Like |\restep|, only for the |\switch| command. \end{command} \begin{command}{\rebstep\meta{text}} Like |\restep|, only for the |\bstep| command. \end{command} \begin{command}{\redstep} This command has no effect. \end{command} \begin{command}{\revstep} This command has no effect. \end{command} \begin{command}{\boxedsteps} Temporarily (for the current \TeX\ group) changes the effect of |\step| to issue an |\uncover|, even if used inside a |\stepwise| environment. \end{command} \begin{command}{\nonboxedsteps} Temporarily (for the current \TeX\ group) changes the effect of |\step| to issue an |\only|, even if used inside a |\parstepwise| environment. \end{command} \begin{command}{\code\marg{text}} Typesets the argument using a boldface typewriter font. \end{command} \begin{command}{\codeswitch} Switches to a boldface typewriter font. \end{command} beamer/doc/beamerugfontthemestructurebold.pdf0000644000175000017500000010004012050430546021436 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1055 /Filter /FlateDecode >> stream xW[o6~ L//-m<ۃ(0KNdy]}!ERQEV$ P<:\H1rMybqy:#R jdA E\} QIuLnrs"Hr p"dN-DhR[Z ˺*)' V3JRLYC)Co0m7ДSh -҂IUpE$Ǎ`` zEsCND VK[NS r-P$c #K$D 3T1(BnPt $`$iu} vF#TLA1j`R̈́HINS-M{yUkȣ$6Ɖ}(pߺiQxb\fH5*$p#r(! \J}"R#h`=,[FWы@nB.I]I:LSAe SCs})nM|@ֲt n/b»t 餏rgkO$c<5&J=Q|Ũ4ŧoǻ#~ƥ֞<{?W`*s%( ]CYr$]כLh~u뛃_) /כu}~YjT{p[O16ͥ7)+M/}yTI&mo YC[w];înˡTpp^{#u& a\fBސ!{j"]Y+~9S;zхr.-6__lf b 6D|M(>Vm: =ُ,r x8p<+0$srg{JZv  endstream endobj 19 0 obj << /Length 1380 /Filter /FlateDecode >> stream xXKo9 WhcaUumAQ4om$b;/)x&AlG#JH~I+ȧkkSH#+(T3r;fU#Ф"mY)}kt'B*'*gdѻ#.-;M2:* cz8JIlLIZ2@ Qx# Ha@$аZ `LQc 9e`%{ VzX,um" ?"aʐ3G @݋DHot$K!Hizk |o}H#6" _`4 %fIhrNM)8-X\L,,f>'{?qo%D~ \ǽvj~ø9$5$ps!Dey>8Δs$ id ~)%@Mg$k(Y$b˔ ryRn¤)s<_Fa&d X(: z֬IVо\E/B9DJA:8\n=yRˤON '$nqoԓesxJ4ʻxcWytl]ezvh5]ߡTf#uz>[<)dt ᭙"BC )]Ϫ`(U?l}_fY\̪-zcV6Venֳ5 Q1T;L܁M7yxZM6,G xI}Aj ѿF%:>ĝNK%@hQ&ɢa>l92,㇍s\0|qGRABnBeU7-G@CZlԼe ͸ʡx!r<-h14Kv/'1'D#_}Qx(?:ډFy.JEHM 6X괮o sMq) onoWY.ϧ}u:{$ %=->%'߼D+a o$A64q%搜P+j *6wWa}WAġI7uǙBa kq"WC#UOZfkPZgA m!zP5zЃryuyNM L75anXX8 :쭻Y}5c%+%qށp8o֫T?^=^j6ǝn 5Tڧ]=Z )% a~JhM;mIV6OJynCH _?ՊǝQArqm>PV|0/{5 endstream endobj 27 0 obj << /Length1 1608 /Length2 7723 /Length3 0 /Length 8546 /Filter /FlateDecode >> stream xڭVuTFRJ%!A@k``f:$U:KAAw9w}ucx] - FX@p7O Y8!@pn=pcauPP\ `dnPk]GS ''׿PV,mV G{(r1BBi@-࿇.,'N?yu8RSpGPEiƐA<"n>'7ePPW]|?_`=BwN?qXL",&~LB3~">: حjʑDoD\2RrϢ Kg*ְD,lToȥVHpEuiNH.tv&6jMD _->/wPɤ}xjC%cQn3 Nmƞ9֔q$jx)I O^>=_\E:8B = ]6E<-azt>g^Y, Ǫ/4j񜫼"dJ-}]f8k"$Oi7Rm!;g/ެ4wݰ:³8=uDJ342 T2)CRսYϤ^F]?g2h::&7w{Str%[!It8®a$zW|ʏo|9h60N&'0gF kp͢ 8i}*BiDbPwrӬ̻2_AG0Ge_P>ˇZ1>^)3-F9 #p:EImf}}yps?(+)HT=uNp8ilJuZITYl= ŀG6c싔~ |B%;"bU&[ñ)Jo-҉(J~_tvʤص:ۘb[y^`r>֙qK$2-#Vbsݬ%K8JZ#YԖa;c͠ dؙ &#%'-9#%` rNU^AIX`ɞx(zs >\.Ibð|̓-2Ӂ~)#O5W^!%_݋}['Qj^B($(vLS  Cd~i `_NAdN 6fpcmN'*銴d/ [ H&}P@~ ~,EbL#ǰ.%>)bB3'|[o`Z/e+CnZS$O`h>i4W alj<ۊO_Է NGFgcW Sd/HZ{M?l.?8WB.|.QKt :P}V7YjWQ |c1T\0ͨ9_A,kv/7DzοVSQK6G9'bڐ b.Fc2gc[G YXQ8EIJa:YI,#~M/SՑݏ[(0˷Dl{IodE[O|UT/9=7Jb߿Ө\֐x8SĿ/1 d/w*z={tN</v_%;pqY7MG:dP$gf-U_(1O0Ӿ=c·0϶[Bz]l8+f7b)IVgbQUy{3C'sd^əo,jHGFsmC~z2eF6*-yվ0  aL6[ray.zY_]Si #QOFNc}L{*U>8Āb=UEg]"͘+]o b˦آۍĻg5C"DhJ*gM=j"MVȚmm,l{>+/ӹf/b>eIA(G˓%4'M#=й7*hf.%A Xue97O46 &EYhT}_bmɝR[C7R{}'xsɓ_{4,@D%Ij졫?RS"?_]x4En"SS?TI\cG`eԺ3 K $"۞.ʛ6*BNpWIEWBL8:v˚[׉v!dc0z6&&v/Rhs\[r\pY/ ze0.k[1@ZB,3lzxu.G-[]s;࢛&OLqp݊ Y9JɗL z9|Em:T©1<4fop%.HW30\5 H~>VEk3,kz8ҺKT'}11RMQƀ1I|k&}eTˮ鼈 _>Z*5}sm!gnK܋Lj|6k yaI ZQŰ9=<y_ {P#"⚁RZG3,[jN,Mr_Cφأl>yuQ)zsbCV奤`9 D\V:Me~];c@$nJ[|I]Q&ʳvU['p\PYX G,vt3k\(w 5q"1;^;B#-X^rugդEx{v/>RЛY\z&g  LI;=ҘuUYR{\{H?VlΏ8$no9$B 4Fl^o0[aMu7Փ;ԣLضےb^=SrE6A@iH< K+SڭAc:ƳO CbŪ5/>Z9rue[ôy!}ph/nG3PmW;Uw)]!Ipl)Wy{e/D  pR& 䙢u:s-s|a RHmy_Ǿeί/!25b?hv:B ǖ|Km.&RH{vYUddqAc*TNxS|smN9h9BuZLk>NWvzܴM]>e(ޞ$^)EЪt놧^E&8.UM*`7!mv1!{f˥dUL+dvつ /ӒE߇SVД125&ciJq~^$P@+P.à߸܃F 5, A쫧 gtCSX`RU29{۫:njvX^Ȕ+$2%=d tȐn4rEUt_U]b)Ą8(Yg NMCz'Q䭊ƅUaOcYcprvŦ}oy,X땾 _CM'}=JE#xDCAQWӚ;tHQ@a9%nUףr*T3kL}Yg#_nxdˬb^ou#np6Y TƻTn! wnMҭCd _jCXea|z+ČUG5Ⲓ%9:dO}{ ߯}S uŀyF AS1xI '^Ur>!ѼokeZ5:]#RӫvkNe`1V~zyLeR6d,hcH=n=m.XIἵpiwfd} pQPK? ə]ҫS۰Y1P!~@=6Alabһk6w;Өt^vthED.1_fv $z-kDiq[M*%%0=:nn`ywmῚc- 8n"W LW  56xON?:f.zfq#kx8Φz>{j@WFa^"2sˣ "J':u|4ŧq_ddHu*r 8NY=ַپ .nV_gU$TaXlh,=PyoTбz9ێNwr-TxTn#[hJ-%Q} TPvx>0`۵ƫX BR;bNOt^oxާ=aGZ-ɯb?NDy\IC7u".ZȢxM]{f=;}zHqli?)qWx(3F4βcq#f#9^m),>?_?IXRћ<)Q"0/ 9zOX,#U۝LeUbcg?' E?G͚'Ig>1cO]-Afe/pSWn\fſ)qpmsR(^%E] -utaْ Dny{%Q"}=[;ުy}6$F+-*cAiUXPaX;N{ڡ_* dA\ʆ{3ǁ5r-ǧWsK/ B(hZWh |LX0ur{3Lp:r| K67PKjaVY.Utȑ?j㞴s:dzo0O?GVl>nD<aH?LX+v4B:B:fNVB#Jg\xhK*f!at-Uu 8Οrۧ3نnzl53NcB"3c*2433sT.~g"||9G(fܴ4:` @w3ZmJw["$kNh!'~DS$Mb2mVZe~_8^F^^#3&X_Ȫe{%!89񺄲9ƜTYX~o}\MK9; xDzZTJ6P#{4VA y5!Qwʄ{ne?H!9Oh(U{˕ɮ.׳f! R^ L~ϯ?:\8 5EW||¢ 1`@ endstream endobj 29 0 obj << /Length1 1625 /Length2 6204 /Length3 0 /Length 7031 /Filter /FlateDecode >> stream xڭTg8#zd^F{tFH1Qf.^%zA!BD7D=czuu{4U`:($F(&0Fx8x[wD5PP} p Ȑja` c` k$%@yyy^&3pv̭Eep rpF?|a(OsMp4MLmuV].A@`Ho B: ($4ok.uo `oH C{ o3\ wov8 O4&3Eyc!h'pTK/0wno5 @=(`4(@z00\N0}MF@:K s0okkWQ==O4?5 00w P:'s$,H8  Ci( N"n\ߦ,`Gg?.>Zq=2Wp~h@;Z_H뉈%$2#u0)qcBBahwv=?Y nݗпk:ViizO࿥Y<@DrrQ) y(! 79u6c= 1 FFB쟆0]?6AH|FA#]3s05vɴMD7YhА9 M+BvCCx쮠ҶuK`=(1~ 5gHY 3JO>o]Չam\)ZԭV YJWaGdYX}bױ;>_o}d*e(ifa@ײʼ37 ׁ;GMgmloȓQ Ƭ\>_1D"RTQ|%]!@ 32]w|]GVH)}h'axiYT9cC^>GXݻ d}InwMWSOX.C+nr6p" B_i=f_ͥ }h}5&kG[%ƹVj&c\֢&Gacc)"wRXb iO#'g aWLVNUr_gGw` ,~.Mdj$$.nH)_I^z9-tљIRӄJ :PbYT56&ys.M۷hs~˒Dh٭0Ӗ9&_& ®%Ƈzzx}wSh߬\N֎2I(%77U1R(j-ҎK9UaH&$ a?or܎'(}dճ`gavabeOK9 zږ9$iBk22]6t Y)РG]#a S{4c\,bm{tõz+yi2+ G6*$9}VT疓ҪQ~ E4懪z*d?$蘙[NZI,vuhb>)zNJHBSNxk_6DUѻ _hzĮJ6y2Iwcj8x3xƎv]aɖ\ .k68%EX\5Ϧ]'wadJGD,ҝi'&3Q|zZO}_n+PC^|Z5xf7oYFT};fv=+4[OTo}Yg;aHŦ>T9Sam-2ɊTi'%Uc@"4  STaƦNpz %EcAb6*noE+6:9D֑{H8b=v2(OշHr鮲3>O|m eB\&Q>Q(8yɑ)Gk_Į[囝we$)Kpԧ6-UBA/説H;]p?70^)6?Hls 0UL4ECOn:7 !{ hJI9حC8qq%X-ӳ_YdwxIW_Om)T(󧶔|v\l]*|XH GTgEǭ_ՕdQ. , @pe>۪Y]Rd޶?T]g>=ś\$Lߛ&MXRwi3T$ 5DOŶEdR2!23bB$3N4&ބv:-wq*?(lCgi(JOz`g-6nl) 7X<> ?ϪG>;s;7Pϕ{*mg;!oQ|/2ZnA8eQtӋћQvsau>]oŐikr?ZMP۳$8GB2J ^x})3Byl)ƲBjm4L?t~ksӕ";wq3Vdh;f(\ n0C[Ajd+3~gt RvliÃID Ո`u2*)^HOYI}Y6vc.$?g =ly#t~b:^ԯI Xii1r]tj(&N,  rUx/x)=KR(2M c})+$%4_nUffGZ圶uoXб>=D_`@\}a=6H+ܴ\!P-iT txU 0*W_ۤ~~[ &%m\߻OZ%.#U&jܸCVylvdofJ5z.P'urE#(Ӣn>h$e/xel\{]оHB`RgH92HJwOxk 5{ NI8owZͩr<|^,qX?h֐+<IN?ܸV%hw1`!{~1Wį Sb4UϚi!ֈڵFSo/X%')j V;_bcp1 Ӎ{C+(H@#NN_eG,S#Y;fI w& #5̦I]گ/rL Q̄slJ]*yC$>vkS|VmX,);54] 񉇛fWZ w{C镋AJSH; !bQ2iMns8,S;J=3+{ X7&"'$=z3V+"YF|o|UXm$\}Ӫ-sPr*H^mL&UJ~,_5+clmS0>6_˓( M(+sV!W}`Aq =nH<*ܬJ{oUOAᙢڌM68_sNNM 8kMИ#{<8 wJO@38&7h_?E^M*:-g So%g!ޓەj=9˅J6YQqtގ i ƨU<\w/5Q7z?*5lgC]teN56.|;t;64%5 6D~ ]y:(b͔^iaLGFC]m%KK( Ly;lcC<{H9ڄb CVHuO۩s#G;A=O98`_\Ï !!Bn+s!c>n2b<=A8.~u'GK)?o\Ԟa=Ȍp7ޚ=(Y3GPtæ BΫ_{M;S6>c(kHro(ZYH'kLWjNh(7N6jطHն[Zѹa5E87M&>ThlDK<=Yp`qW[#ҕ/>3 6iہ^.|c5ʴv8O_*VW2KV$ ۢ4UÓD1Ui tlh/ZkށU~C&xthJK'2 gĝi:]'`xBTO1ė!V{v)4xN}$:} 6fVs+zh);gv/kd|K3~rz"0`q;.U,nųZ@`Zux UKÕ.Y=[ȮT855w ߧ(x?~QR0#"s endstream endobj 31 0 obj << /Length1 1166 /Length2 6580 /Length3 0 /Length 7347 /Filter /FlateDecode >> stream xuSu\ۺE@JP$v`hb RK{}=zwg1kh%P9`n. P j x:0Ww4 q!2;^ AA.$[x D $ЀB0%ts]ݜ`P+- i u:Ϫi uceg7%$$@d.08nu@8tB "a bt@0k8ԕQY4wߚP˻P{l [1 8 (wߘ  PgҖwI7 [z;!/zvCH7%}Y,6ww;j^⊄y@ BpjG(SAQА+JJ q% r 9.?3KtՀO)ПHP˝7,ؘ0K(o@wqWK_rn;=\*ߊ8@q9ˁAtG8K&js.l;j \`_2NfinpK nvs%i/7mDݝko k ZMO ,CCJ%<߇x:_ܺr@_hW/},!1`+VlK%J^HPR  50>./Pe\4EMiTF1AR0?͙gu*`ztS]O3, zR=zάd_s||SX IU?7fmel k2a?|=IzU/Pi\`y ?,TE̴JThQu_2ݸ6OB'F:~#?k0Y?^mj92YER_:^dEcd3$Pn;|{މ@%#^F|NZcto"E S,z٭QyN@D ny=OL'*fD_q懓BS؈FNnr24 $.y)IiQ?rZJ!9!v=(*e(z 2ԁZqA{ 򊺲LWx;=э(̗U!?nJQXku 61dEK3NܪH25I$`tYL*iL.8BYh{, yˈQ^ApAi23:^EԎ4 ⃣7J8YH_0u.q\ت2 /e'|tN 08@;ãȿ@{K߳Q7|Hͨkvė@2ƳX"1ت?eB([bW3?qMΉklƏј?#}p2GKg?2RG7nG9O44Ӑ_Tp.bQv]Zl *6.{D\E 2 (D`#.bH0=O--kBV<׊#Nca;>$sdL0(욖^a)1uƌMnHW/v;^8*ܷIM''B)⧜PoB>s>?&2$R-dqgTK{ dN 7e ~,DNvVD',';2r Ƅ|ߣNIKtNA;6[,eߔ9-I+b1 2-;)⎞ R;YOG`E1b8:'WG?U/@~qX&0߱+ufFgnB'{)T8PCH8AFobލͱvRw+iJ^PoòĄE|ӘO$jZ="jOit*2^+[F6ᄱbjas'4|ksY2O98r4ی?{[?ڑcZk*]@[k6-&.48G[O;Yktpc_ES/VbMV9SsG]׻L 6RuOD*$Dq4L~TTo[=4ߓh4yLˏxur0,ib gCua8۫7LO\DF2,k-Oe3εц=s7R1|i)uUy."[1% )ZѮCٲ~s 3>]ƈ&p.C:Wn~B-*tI6+XPhu7f%C)<^V/L1W _%w zo#j€('x4NK"َ͎1 Z lOI1 l~ZM%vݽrS:PO ~BPeuIJU> =@.";8%m39n!ϳ%er7r˽(E>ƗNzfi(4k^9Z,-RyŤ:+F`HFHNLrSҬʞvg8Ks$"B?N~1⮈? |Bz`w싍/?+19dاk#mݎd ^ ;}ӕy~C-/W&˷X]K;5e_bc_ u6?r\{BZ~.?˨!{dQhHzx F8[HꂇyHj&(JОǤ*Z&mhlX`P okm9ɡ"v_..=0SDʄ# 1t{F"&ľjycUf`z6%_yq4)Rޟ.k͘DU-^> $UbFUq0D|*/ 3ةtC,#f8]rc۷D8ĕd{3D;㒐27˭ή,ety{zc$pT4:;(%9j PؿY"sr( n:򲲸\'QPuanU! {]R˖."ÊEsOE>7EBg?qJ%O3m GW7:y6VhafSoJQyQR{1WEIیbOW<'5xI\dn3'ޣyꥼD"q.gI@˩)Ѫ$"0kS.^\]t>`c'>c6KԹr?.^F^٨_"zБqEeWa\ 5Fj\֎k%oW&aଷ+nť+ʭǜ!d0={R%į>ژƷ=5'mS02op3&=z'yUsѡ_c: (NxO7\z+1nFE.:].BgG饉5V~75a%5LrHBs[P,p7H#U-0UcXGb=+fa%:56MpS@(*DO%V=3o?L״ߤ_Pe3).;<RHD=s$8#?naQ^qŜg>.SK_B1GˬG36D߷8~ 7%NyeuQ]n4{~_T2,mKXv r'ܖ!~ !>A&/F,UEIDϦhC+b} uuOg3khAۚk5.C'ч GLht)$eY c&>yV]ڛL[^:BUVQ$z\8D(CW~2)Gv&d1)rDR1]nX7h2S T堮BKZR(~)pxw"(52w!ҁd#Ȉ.>&Fn|/=*|C>^pJ8}Ɂq%I@R[~ܸxz?'c/:q49_d+H/Iʧiغ=(p2?c`v@9("i8껮7Ƈeni"pu-8 JgZP)eĆFk_hbh|eNʓ,v<[7.0prG|wdK^?ute|z]t(X[?Z*PlK/MQ@BgxL?1>{lo.JulcIMGTSG4a7j DS_mΚD-#em9] x挑rx (>S'T&27t ){bZBͳ PaQHl[͇zqײƝVY S>+SE:%hQNá8j*{>?h2]}4Nnma2HbTm?p N)Kr`Ue>'wq*nWkLCjrUE-e/+'d,;'$sy{&''(z6^fkC]9PS XtG,h7}`:ɹ~3M:mfT=zň>%s_h Go9  sXSM Cw(<>TSoUuus3}UHOa^}n7Z  7ᰭ^UFy_wpz. EgӯEGf)_< Ԟ(QN{|j+yJEߪ!q ķ8zdB rn;*nEpz/6"#2pXwƧG9~=>z[2KjIÝE>(6DJ> stream xmSyD>;I@@* hxHAQxD A᡾ GD_7Z0G@W;Ia'nPtI@` ɉp  26ׁh=551$Z "PBZQT/zOg(nүHZՖ/'*Pho! a?c&vvCBTF$@&x*(P QPo$*7quEZ? b@@ /#G͐ǯKnEa+N @¼<(?!hD- ~0"GKb!I%"v9ڳ.AObiPSz;[6 E Īͫ [ 1Rp4YL @;IKIU:^d2&-P'{j"[FV@g}{+ZL10΃+|L\*Ϙ~Qb=d 5WzyFf?>2Jh se+X&\؛]ZBݦ+TAm]ȣP~^7TliSg؆"䌼/Oh٣E]½huj?Ҽ>6~ ێSbtυZɫ- ^Bͯ#զ &mzsŴBOkcHqc,ڭTmJ/8^+NvA.Sk-SdL%ǵr(}(V=ح#QУ3ʤ+ITS;2D-Whh,ȧ44 뺳T#Ӥ9i^IͩTLB&>3$Bǖ xpfadgFoBIuvȺ˓yh+׈;`jHtC:Atfr: a{Чz޿~ : ŅsWC$@'j3 6EKVNb9jŲTL}ҙ#}sA2 _ܦsPVU"NЗ#?J4sneM]dKHVkOh`."`P#iVf2~ ǜt o9L Zxd^ asI\h*cP׷L0l3K6~Nφf:ՖiVaxW<0  ;ܮ/&o`="ۤ7esN,um~Fp LoUV!Rn+נXX:ZZ-(l 8W UZRʣg.*5{1ظuatoyX QkEf_h}z%S5-E&%&8ĥ%cupqA`Y {fC2SϭAF{'Uo EԜ^O3m8#m|6}ӑ,4);u-z߹xH:x4ڜZ:.(:csu-d^W$GMVM22 dLzqPNOJ\E2+  e9r3[rid񹓦@uSRg[ ϳ;Wt7%@5kwV3,Y9q]j唩x=e0RWQ+Ȼ@k:_FV~^EXuE} T*J%խ=#ܟ2|6 68R0Hx'Rz gDfgO ԁ_8\R|Wu1M쐓wj݌;CiMu6u hս̟}[fyMIwMWEH?sDg6qՊx7[=nl]wlJ_/f.$Y/.Վ?攏"y0i;zUpAM[;!xC 638f^_xwun|L|nz7'Q~uWa.~W6ʃ *qB2 !\Z܏#]dd /;߼wjե6--Vw:!|H%wƄ&X9Fz4M }KV6|]c==<Լ~jd7L 攷vg_ \yhXU?=-HJ Ԙ=10_o9ǚYgE~Zc:tߴC$3 k*E%j>s{={\";hDv&< %N]GSؾKK]m1Gذor⊧=KxXٕ;$D Lo[]!7LnU4c+*w)l±}F_־L̞fzXqGV >`l2`Y=uxq*fwd̛>f1JYdM]K\f.3)ڷ)yp$딷A3/ׂBx|w;"Zv`&~|䴚ሖFlړ>ڔ[i-7`ܸĦ]]#v½`z5˭(*#0[L}g -&Hj1h+>GyrVma| `N]э2HۋJ#[r+2S[+Dk*i7t5թ$p*.p>Su)E-lq}Ǖq|-s]"qb…0KrhY\tPPi wa݆Ts8DɂG촶Mp.dgr[Zea._ۻZ(x>8vj\~VW ;JpFн'tsMno3,4;]VxS5K7K-P mX熲|`dY/頌 uz'ѕfJ++JqYw"Re¸U}'tPDchHd`OLctU36<:%~Ҥ9m]mm4%[.[w< ˮrR)XjY Wragk/ l5v.E%E:fE"U-Y1\"REfstѸQ"6Kfk(Q>I!sB:K{&D-ͪNW,vڪ8gJnY ?^d-+b eWP5|@Q5{RxN*P]#ZX_u{&'"9 {:O#?;x>yM7R]Ȕ<)[  .K (y?m1[}Q-Ѕ =ܗ^@Tߍx66'9w6vo)\MPsese5ٕ&~]Ho|}YPG[|mqB .bWU ?S:n߫`pMG՘t\>r#g"q4D~B:B©1)lQ̕4Bl 2D`t{%Z* .`Zh'kZU,'րζؖ6|MʈO|N[77- lvD4fBCU͂ݲŖϭ-I4}b8/(Ss6(8}5Um9ތwRp]].3:/x~5)eM7LCyXMX^7' ۖY12g2Dɤ{;Ѥe1KoH8KsvdbxUe;]җBʏ/MK^ A+FJ Z& ͢J Q> endobj 15 0 obj << /Type /ObjStm /N 22 /First 161 /Length 1245 /Filter /FlateDecode >> stream xWo6 ~_; =Zm@Q6?%:4ȃ$l);^z[0Ċ%"?~$[A%ʀРBA ?!HQ1bz2'%I_P(]&A(PL4TȈ$PG@i{xuns6+,1!xرE0Ӥ=C* YZ~2{d/Ofv;ppyg$!@&Yޝ'KQ6ILJ gMzV[jY ;j^/hCSV8==Vx>9iTOj*KjaP[`H.|Bi4,77J4n"- $TKr7[ͫql| [0]%M>c`=^tg*j^뱔6&7cճeS&ncT1q_I gy+ {w׈TrWӇCEnmb] 9˦>]ݫtoo@X :nEBei**lg$ٴ,iA; 6!-y:/n/)=9lze:_dv&CҘ$J厅=)_s=<,|Pt$/6!;g{RhOdgni..<*1Nr?)%^a>Ʌ#c 3f8y /̱qn-O.cJ;%R7ΫRtrھ>ۦEfEWq~=!D;ZSYb#-9=kܱŮ`BnB  VlvԄiF*U3CpsBWM]~yro'>^.Eϧ@^L! endstream endobj 37 0 obj << /Type /XRef /Index [0 38] /Size 38 /W [1 2 1] /Root 35 0 R /Info 36 0 R /ID [ ] /Length 103 /Filter /FlateDecode >> stream x` E{ ueVbl`ơ5r'oN2LcBR*vD ? zuWPA.<'ܽ|p endstream endobj startxref 32447 %%EOF beamer/doc/beamerugthemeSzeged.pdf0000644000175000017500000004334412050430536017103 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1313 /Filter /FlateDecode >> stream xn6*o.v.v== Ėݿ ) l(͙P\FNxN+o'gDADraȦ&O7I_j\& 22V98RQ$U;&C0sJg5LRag8TRJ"3N>%OHeI*)(eCQ(ɒx DDI5 W3iHV?9SVǺPWJr]I-k``[H*zC8W.0eH mDDG($u_>C40s^WɷtFވȼh`>rDK#ӁYNC.8XX/'ZBE6V};i5%ø19$5ps!Dei^G,SR'H9"8B18E8Ԍ,nRe;'9p4e3 qUt>#pʽ\^z{$ KO G$^"nғxk8J JX|h XBܿaץƖ} <uJB*p0 e)4߽K u֥+5y-9yJ^:y8~Da+N!e:k r򡳕PTU "|Ri@7PD<& |PLyG&/<i1L1㨁 w ceg(6ai]| M#ص֛>5o#(3G%#6~meXYuٮuzaX3j^hu\5׻I]-p{~Zo]k-n3} aeuPe;)CZK eBnZU "O6 U8--8U sl_1>ːM+ ꘸Pc.(Icú8_ <(QHwwߋrqlJgpR__> endstream endobj 18 0 obj << /Length 1657 /Filter /FlateDecode >> stream xnZ9#hq+mUO>B@w>枍D|<>c3rNa͑z8|iuRau>H&?-4& j>5 *!i *ADGAjDR鬔D&4*t"#WXPR'92y$iF 3 5ĴU}?+SRPoWR:)9Ȗ J6j y5s԰`{I? qsTi:үZ3x!u@/UEW OX3ID&i9'Q: ,.&l^aV露"bX {_=j~ ø9$5pPs!@Dey>8ΐs$ ie))@Mg(s DbMtxGRͤ)s<_FB0"4}'ۏ2$ Rp=WD+QhF(~J!"J 8p.A<)eP'c'"@r4p-VѤ2Hp"v^-+!ðQ* Um\ٙy.0Vv2v1rPp 3 qRdx9L&}!cp5}? 038T@v NqpX^.zO떏rRƼ,ˣF+*e~uu iǏY\i4_jj Lw( HLZMF-5qMWl`ye?q|Oxq'_>ɴy9=ϫFQoBcO!]Y.!Y l&*"||N*VxXOӈr3JD;p~jTqgǂS`oNWmLh럣i5xg;CB<_;?^ I3Yc=:1Xhhy2$nѤYe˺]7h}Id*U^cDB\BO]nv*/U$R1ʧ>oI hr|v2¦'MO"UuCL֓2+\]d]jBT94Zȣ.Pgm6Y){aTİ]ެeN''IOee0Y5A3Tu+tWE@3Zܵ*ll.ȫRT}jT`E`U{VΪ`>B~v+] [Eu[PiqWIR@lU#vɏs ?K%՗nNXFL7R˧% rw{Kڼ 9N Ɔ} J u! L&-5Lw54\">B D2(.g=}r_*ʫd!]W'H]i?c' endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203910Z) /ModDate (D:20121113203910Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1007 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoM7$E!AI-)(^HzAR_/$@*]2% "!)F}T>ɚT|s_J 8Su7:oj@Pu]Uke$zW X!R5 ⼆p8 W䕣 P\`q)'`M޾4'MhFCJ\X+*n`F>nSt&U4C\7e{x`*]losǫ90n#H.\J=BB͌ xl ](Ruz{o@pa(83֣y~sx͝FMPtY5VJD버=g~K%-=>#p1.0nc\Fc:_WpEG(  n1\cb妭Z?l֕|.g/Ur0TG?rh)L9~#> =2^BP]tDr: Qf+h1vŦۭ 1C Z=[n @U>Ew)[6뚯QFs*_v} 7W Cx4|i %C 쥂::&\EXŌԃ>zRgN'7'W 餬 endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 85 /Filter /FlateDecode >> stream xʹ0CQ | RMmmjpcBu%~A$hP Ze{U$۶.;xJz L endstream endobj startxref 17813 %%EOF beamer/doc/beamerugcolorthemewolverine.pdf0000644000175000017500000004323712050430572020734 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1284 /Filter /FlateDecode >> stream xXo7 _GixܰhmnKb4wN%8,XÖDQ$#)f0zv[5vy=:#& ʅ!O>]#4lOr@8^7|Cq{TiT@_$zk CDhGd~FLºul?,gߒBR&) ,WruQq5+.:;ʸiW8yh/c3qDP9(DN1F¡xK8כn'I,g#2tj/&D!Wi^{A KѐGiR2/pTk`+f&sr؄77 ,D3iIh$ pdZ3s09{)!8V`>tcy%ø Of<2'\3oB3BQFq8ΔH8)2^!@܆,=yu28 ESѓeExW7"/2G>\MwnrA[@P+ '@ 5\!uc@ׇB"ZwKefr@«Crh龜#n1|׸aBxUXriϋ2+.n> stream xYKo7Wh7I4 ۷4[R!lKV~C.ɵ8A,o8`L9# /7 A[R9w۬Z? vo~ˏǑʍ%3L~:xBifycAhlHv:aN?MHp*oN_B6r`7itu]GӸ3|p}<_<fwL€\5w'lKuJ9TAUKhn1jPp'Cc^eLV=ցP"5>JiU<6u煢j7BنwD4flg;V3!ߤ#IZ\TwOgPܱ&J'ZfҏȺn" DDCLiiՓ%+UH/3/O~䓽~'5?q`\McFZt)\C3IsiE !Ϲ3N h[(Α%yV2.ourիY*bIJ+*.WCuTw!}8<8nuH6ZsAc܃) I,md&fP66qq-ȥ_8M;ͣj^5cwjy0nc]z-hU|hP\q:념t;?^n\:u* ցpMU^9~=Z)C!%p='Ya߆H> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203937Z) /ModDate (D:20121113203937Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<24A15172DBF9432C8E2249845B3956C6> <24A15172DBF9432C8E2249845B3956C6>] /Length 84 /Filter /FlateDecode >> stream xʹ0CQ `B( eR Y~Lh^D J,E`?jZ8nWY$Ifunu ?i endstream endobj startxref 17745 %%EOF beamer/doc/beamerug-macros.tex0000644000175000017500000003036612050430504016222 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-macros.tex,v 14743c450e2c 2010/06/17 09:25:56 rivanvx $ \def\beamer{\textsc{beamer}} \def\pdf{\textsc{pdf}} \def\pgfname{\textsc{pgf}} \def\translatorname{\textsc{translator}} \def\pstricks{\textsc{pstricks}} \def\prosper{\textsc{prosper}} \def\seminar{\textsc{seminar}} \def\texpower{\textsc{texpower}} \def\foils{\textsc{foils}} { \makeatletter \global\let\myempty=\@empty \global\let\mygobble=\@gobble \catcode`\@=12 \gdef\getridofats#1@#2\relax{% \def\getridtest{#2}% \ifx\getridtest\myempty% \expandafter\def\expandafter\strippedat\expandafter{\strippedat#1} \else% \expandafter\def\expandafter\strippedat\expandafter{\strippedat#1\protect\printanat} \getridofats#2\relax% \fi% } \gdef\removeats#1{% \let\strippedat\myempty% \edef\strippedtext{\stripcommand#1}% \expandafter\getridofats\strippedtext @\relax% } \gdef\stripcommand#1{\expandafter\@gobble\string#1} } \providecommand\href[2]{\texttt{#1}} \def\printanat{\char`\@} \def\declare#1{{\color{red!75!black}#1}} %\def\declare{\afterassignment\translatormanualdeclare\let\next=} %\def\translatormanualdeclare{\ifx\next\bgroup\bgroup\color{red!75!black}\else{\color{red!75!black}\next}\fi} \def\command#1{\list{}{\leftmargin=2em\itemindent-\leftmargin\def\makelabel##1{\hss##1}}% \item\extractcommand#1@\par\topsep=0pt} \def\endcommand{\endlist} \def\extractcommand#1#2@{\strut\declare{\texttt{\string#1}}#2% \index{\stripcommand#1@\protect\myprintocmmand{\stripcommand#1}}} %\let\textoken=\command %\let\endtextoken=\endcommand \def\myprintocmmand#1{\texttt{\char`\\#1}} \def\example{\par\smallskip\noindent\textit{Example: }} \def\themeauthor{\par\smallskip\noindent\textit{Theme author: }} \def\environment#1{\list{}{\leftmargin=2em\itemindent-\leftmargin\def\makelabel##1{\hss##1}}% \extractenvironement#1@\par\topsep=0pt} \def\endenvironment{\endlist} \def\extractenvironement#1#2@{% \item{{\ttfamily\char`\\begin\char`\{\declare{#1}\char`\}}#2}% {\itemsep=0pt\parskip=0pt\item{\meta{environment contents}}% \item{\ttfamily\char`\\end\char`\{\declare{#1}\char`\}}}% \index{#1@\protect\texttt{#1} environment}% \index{Environments!#1@\protect\texttt{#1}}} \def\classoption#1{\list{}{\leftmargin=2em\itemindent-\leftmargin\def\makelabel##1{\hss##1}}% \item{{\ttfamily\char`\\documentclass[\declare{#1}]\char`\{beamer\char`\}}} \index{#1@\protect\texttt{#1} class option}% \index{Class options for \textsc{beamer}!#1@\protect\texttt{#1}}% \par\topsep=0pt} \def\endclassoption{\endlist} \newcommand\beameroption[2]{\list{}{\leftmargin=2em\itemindent-\leftmargin\def\makelabel##1{\hss##1}}% \item{{\ttfamily\char`\\setbeameroption\char`\{\declare{#1}{\normalfont\opt{#2}}\char`\}}} \index{#1@\protect\texttt{#1} beamer option}% \index{Beamer options!#1@\protect\texttt{#1}}% \par\topsep=0pt} \def\endbeameroption{\endlist} \def\smallpackage{\vbox\bgroup\package} \def\endsmallpackage{\egroup\endpackage} \def\package#1{\list{}{\leftmargin=2em\itemindent-\leftmargin\def\makelabel##1{\hss##1}}% \extracttheme#1@usepackage@package@Packages@\par\topsep=0pt} \def\endpackage{\endlist} %\def\extracttheme#1#2@{% %\item{{{\ttfamily\char`\\usepackage}#2{\ttfamily\char`\{\declare{#1}\char`\}}}}} \def\theme#1#2#3#4{\list{}{\leftmargin=2em\itemindent-\leftmargin\def\makelabel##1{\hss##1}}% \extracttheme#2@#1@#3@#4@\par\topsep=0pt} \def\endtheme{\endlist} \def\extracttheme#1#2@#3@#4@#5@{% \item{{{\ttfamily\char`\\#3}#2{\ttfamily\char`\{\declare{#1}\char`\}}}}% \index{#1@\protect\texttt{#1} #4}% \index{#5!#1@\protect\texttt{#1}} } \def\class#1{\list{}{\leftmargin=2em\itemindent-\leftmargin\def\makelabel##1{\hss##1}}% \extractclass#1@\par\topsep=0pt} \def\endclass{\endlist} \def\extractclass#1#2@{% \item{{{\ttfamily\char`\\documentclass}#2{\ttfamily\char`\{\declare{#1}\char`\}}}}% \index{#1@\protect\texttt{#1} class}% \index{Classes!#1@\protect\texttt{#1}}} \def\typesetsol#1{\texttt{\def\_{\char`\_}#1}} \def\solution#1{\list{}{\leftmargin=2em\itemindent-\leftmargin\def\makelabel##1{\hss##1}}% \item \textbf{Solution Template }\declare{\typesetsol{#1}}\par\topsep=0pt% \index{#1@\protect\typesetsol{#1} solution}% \index{Solutions!#1@\protect\typesetsol{#1}}} \def\endsolution{\endlist} \def\template#1{\list{}{\leftmargin=2em\itemindent-\leftmargin\def\makelabel##1{\hss##1}}% \item {\ttfamily\char`\\setbeamertemplate\char`\{\declare{#1}\char`\}}\oarg{options}\opt{\meta{args}}\par\topsep=0pt} \def\endtemplate{\endlist} \newenvironment{template*}[1]{\list{}{\leftmargin=2em\itemindent-\leftmargin\def\makelabel##1{\hss##1}}% \item \leavevmode\llap{\color{blue}\vtop to0pt{\llap{\textsc{appear-\!}}\vskip-3pt\llap{\textsc{ance}}\vss}\ \ }{\ttfamily\char`\\setbeamertemplate\char`\{\declare{#1}\char`\}}\oarg{options}\opt{\meta{args}}\par\topsep=0pt} {\endlist} \newenvironment{element}[4]{\list{}{\leftmargin=2em\itemindent-\leftmargin\def\makelabel##1{\hss##1}}% \item \textbf{\ifx#2\semiyes Parent Beamer-Template\else% Beamer\applier#2{-Template}\applier#3{\applier#2{/}-Color}\applier#4{\ifx#2\yes/\else\ifx#3\yes/\fi\fi -Font}\fi} {\ttfamily{\declare{#1}}}\par\topsep=0pt% \edef\parameters{% \ifx#2\semiyes parent template\else% \applier#2{template}\applier#3{\applier#2{/}color}\applier#4{\ifx#2\yes/\else\ifx#3\yes/\fi\fi font}\fi} \index{#1@\protect\texttt{#1} \parameters}% \applier#2{\index{Beamer templates!#1@\protect\texttt{#1}}}% \applier#3{\index{Beamer colors!#1@\protect\texttt{#1}}}% \applier#4{\index{Beamer fonts!#1@\protect\texttt{#1}}}% } {\endlist} \def\applier#1#2{\ifx#1\yes#2\fi} \def\templateoptions{\par The following template options are predefined: \begin{itemize}} \def\endtemplateoptions{\end{itemize}} \def\itemoption#1#2{\item {\texttt{[\declare{#1}]}}#2} %\def\itemoption#1{\item \declare{\texttt{#1}}% % \indexoption{#1}% %} %\def\indexoption#1{% % \index{#1@\protect\texttt{#1} option}% % \index{Options!#1@\protect\texttt{#1}}% %} \def\yes{\hbox to .6cm{\ding{51}\hfil}} \def\semiyes{\hbox to .6cm{(\ding{51})\hfil}} \def\no{\hbox to .6cm{\ding{55}\hfil}} \def\choosecol#1{}%\ifx#1\yes\color{green!50!black}\else\color{red!50!black}\fi} \def\templatefontcolor#1#2#3#4{% \item\declare{\texttt{#1}}\hfill% {\choosecol#2Template #2} {\choosecol#3Color #3} {\choosecol#4Font #4}\par} \def\fontparents#1{Font parents: \texttt{#1}\par} \def\colorparents#1{Color parents: \texttt{#1}\par} \def\colorfontparents#1{Color/font parents: \texttt{#1}\par} \def\templateinserts{\begin{itemize}} \def\endtemplateinserts{\end{itemize}} \def\iteminsert#1{\item {\texttt{\declare{\string#1}}}% \index{Inserts!\stripcommand#1@\protect\myprintocmmand{\stripcommand#1}}} \newcommand\opt[1]{{\color{black!50!green}#1}} \renewcommand\oarg[1]{\opt{{\ttfamily[}\meta{#1}{\ttfamily]}}} \newcommand\ooarg[1]{{\ttfamily[}\meta{#1}{\ttfamily]}} \newcommand\sarg[1]{\opt{{\ttfamily\char`\<}\meta{#1}{\ttfamily\char`\>}}} \newcommand\ssarg[1]{{\ttfamily\char`\<}\meta{#1}{\ttfamily\char`\>}} %\def\opt{\afterassignment\translatormanualopt\let\next=} \def\translatormanualopt{\ifx\next\bgroup\bgroup\color{black!50!green}\else{\color{black!50!green}\next}\fi} \providecommand{\LyX}{L\kern-.1667em\lower.25em\hbox{Y}\kern-.125emX\@} \newcommand{\beamernote}{\par\smallskip\noindent\llap{\color{blue}\vtop to0pt{\llap{\textsc{presen-\!}}\vskip-3pt\llap{\textsc{tation}}\vss}\ \ }} \newcommand{\articlenote}{\par\smallskip\noindent\llap{\color{blue}\textsc{article}\ \ }} \newcommand{\lyxnote}{\par\smallskip\noindent\llap{\color{blue}\textsc{lyx}\ \ }} \newcommand{\appearancenote}{\par\smallskip\noindent\appearancenotetext} \def\appearancenotetext{\llap{\color{blue}\vtop to0pt{\llap{\textsc{appear-\!}}\vskip-3pt\llap{\textsc{ance}}\vss}\ \ }} \newcommand{\templatenote}{\par\smallskip\noindent\llap{\color{blue}\textsc{template}\ \ }} \newcommand{\colornote}{\par\smallskip\noindent\llap{\color{blue}\textsc{color}\ \ }} \newcommand{\fontnote}{\par\smallskip\noindent\llap{\color{blue}\textsc{font}\ \ }} \newcommand{\genericthemeexample}[2][]{% \smallskip\par\noindent \pgfimage[width=.45\textwidth,page=1]{beamerug#2}\qquad\pgfimage[width=.45\textwidth,page=2]{beamerug#2} \smallskip\par} \newenvironment{themeexample}[2][] {\begin{theme}{usetheme}{{#2}#1}{presentation theme}{Presentation themes} \example\genericthemeexample{theme#2} } {\end{theme}} \newenvironment{innerthemeexample}[2][] {\begin{theme}{useinnertheme}{{#2}#1}{inner theme}{Inner themes} \example\genericthemeexample{innertheme#2} } {\end{theme}} \newenvironment{outerthemeexample}[2][] {\begin{theme}{useoutertheme}{{#2}#1}{outer theme}{Outer themes} \example\genericthemeexample{outertheme#2} } {\end{theme}} \newenvironment{colorthemeexample}[2][] {\begin{theme}{usecolortheme}{{#2}#1}{color theme}{Color themes} \example\genericthemeexample{colortheme#2} } {\end{theme}} \newenvironment{fontthemeexample}[2][] {\begin{theme}{usefonttheme}{{#2}#1}{font theme}{Font themes} \example\genericthemeexample{fonttheme#2} } {\end{theme}} \newenvironment{fontthemeexample*}[2][] {\begin{theme}{usefonttheme}{{#2}#1}{font theme}{Font themes}} {\end{theme}} \def\partname{Part} \colorlet{examplefill}{yellow!80!black} \definecolor{graphicbackground}{rgb}{0.96,0.96,0.8} \definecolor{codebackground}{rgb}{0.8,0.8,1} \newenvironment{translatormanualentry}{\list{}{\leftmargin=2em\itemindent-\leftmargin\def\makelabel##1{\hss##1}}}{\endlist} \newcommand\translatormanualentryheadline[1]{\itemsep=0pt\parskip=0pt\item\strut#1\par\topsep=0pt} \newcommand\translatormanualbody{\parskip3pt} %\newenvironment{command}[1]{ % \begin{translatormanualentry} % \extractcommand#1\@@ % \translatormanualbody %} %{ % \end{translatormanualentry} %} %\def\extractcommand#1#2\@@{% % \translatormanualentryheadline{\declare{\texttt{\string#1}}#2}% % \removeats{#1}% % \index{\strippedat @\protect\myprintocmmand{\strippedat}}} \renewenvironment{environment}[1]{ \begin{translatormanualentry} \extractenvironement#1\@@ \translatormanualbody } { \end{translatormanualentry} } \def\extractenvironement#1#2\@@{% \translatormanualentryheadline{{\ttfamily\char`\\begin\char`\{\declare{#1}\char`\}}#2}% \translatormanualentryheadline{{\ttfamily\ \ }\meta{environment contents}}% \translatormanualentryheadline{{\ttfamily\char`\\end\char`\{\declare{#1}\char`\}}}% \index{#1@\protect\texttt{#1} environment}% \index{Environments!#1@\protect\texttt{#1}}} %\newenvironment{package}[1]{ % \begin{translatormanualentry} % \translatormanualentryheadline{{\ttfamily\char`\\usepackage\opt{[\meta{options}]}\char`\{\declare{#1}\char`\}}} % \index{#1@\protect\texttt{#1} package}% % \index{Packages and files!#1@\protect\texttt{#1}}% % \translatormanualbody %} %{ % \end{translatormanualentry} %} \newenvironment{filedescription}[1]{ \begin{translatormanualentry} \translatormanualentryheadline{File {\ttfamily\declare{#1}}}% \index{#1@\protect\texttt{#1} file}% \index{Packages and files!#1@\protect\texttt{#1}}% \translatormanualbody } { \end{translatormanualentry} } \newenvironment{packageoption}[1]{ \begin{translatormanualentry} \translatormanualentryheadline{{\ttfamily\char`\\usepackage[\declare{#1}]\char`\{translator\char`\}}} \index{#1@\protect\texttt{#1} package option}% \index{Package options for \textsc{translator}!#1@\protect\texttt{#1}}% \translatormanualbody } { \end{translatormanualentry} } \makeatletter \def\index@prologue{\section*{Index}\addcontentsline{toc}{section}{Index} This index only contains automatically generated entries, sorry. A good index should also contain carefully selected keywords. \bigskip } \c@IndexColumns=2 \def\theindex{\@restonecoltrue \columnseprule \z@ \columnsep 35\p@ \twocolumn[\index@prologue]% \parindent -30pt \columnsep 15pt \parskip 0pt plus 1pt \leftskip 30pt \rightskip 0pt plus 2cm \small \def\@idxitem{\par}% \let\item\@idxitem \ignorespaces} \def\endtheindex{\onecolumn} \def\noindexing{\let\index=\@gobble} \makeatother beamer/doc/beamerugouterthemesplit.pdf0000644000175000017500000004304612050430612020066 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1227 /Filter /FlateDecode >> stream xWIsEWQbޗ#![ ck ȖFGUVۺ B[龺qŰ10e t9pW+6+ Q^n%Q0ZE>ܢ!tX7P5}DN`2Մ"ќ#LHs4 ò@)gɠt8 5J<KX9P.UZ:LLcձ?cH1SSSjn]Cil]$+% ,RC$0lqg">PK-{ܨJΤ&;Im@I_X`ɽ? %E8yIjȒ 0Kủ1*GL8Q} "̔tH>3M5ȲM6Ҿ^$Jv3s-rs-*U$11_|+4}O3N)үe5Z2IWҰ_u,/V!L |ҹۣmK?Oc᤼j[(dd;*sALcJ7o0(?Ύ[qjZ/ԭP,G ѣ8EmpȮU|%sKHIx0 lS|̓W d&a<>yx#x x`._Hȑ' S,RArMY W!f*&Vaij6Cؼ_**mm?Ns=33m!?hvXEֶ֫m=HEXfcܬW˾6 C su _E0Lw8/"*Nx@4}"+ϣd:tM?y1,n1oJSS4ҷϘ6M;|:Q*˰ULCL{F :?u7M}y@1 ^h̺?„IȽ׺+jDxvӷѐ5e;nzUz@`0Q~y!N)b/3٤h#Pūu#izIZ[GtgQqҭSnP]%;k'^Ε<ٗ*b/'wOq l>Lp endstream endobj 18 0 obj << /Length 1555 /Filter /FlateDecode >> stream xXYo7~ׯࣄB @H֛Ym:l ;C.Jl ]wg998$#w-V#FP'5VP. YmcG)~";R\VF)}d_'N>NT3ONHZM H3oJ4Ip 3FIR8++eP#S Is$0JnhZ.PxeaT]:Y1䔁 :K뀤``[H* C8G.H02\΋7G 7H'GHtVOi?3|Ճ?cHWO1X2fiRN˫\ǴW̱GaVB?qzÎ})p󴛤ߠF^ sa89$y."gLTFcJLI=GޓAplY^IFzd-%Xl2 Oi`~AʬC7i/#!g c{'^C=y[c NA:|A.R ˤO^NKŹ%%̣^`GDժ*X&Є?5<U-NWXN~gw?/Fyh.-%'!R2v@\JOjqQ 2_q_܍mrO_ӛb QoBa,$ S. +J算>iVY .F`5.f^ Ӹ|C3..'_b 5Sk 0IWӲVF1Cn![Ω:x=)iV3u3`'?B㪷e\ˬpͤ/xu8kǘѬ@D)"PnuȞmLJFWOܩ]YR5"_ǣ<~4r݅s]j0_rA0+JC.Z) <'fKNa zUؤ;(҆c\|8čCcPX *P_EOW՗Ѫ)*9 4Ōz(.&/F\Hj=<˸\v ^kef5Ug*y_`5쓎Qioƶy}K-<33^o:'o˯ !Cޮ[~n&pԖU; tɩU͛Uvz00/uX7X0 txE(jۛdJ[krqV% E"?)[*+8lrV 50^vqxoܺ`)U[??T`xbu /#BP#fQV~\=k;ībOAې훧 *' 9`/k(޻ endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203952Z) /ModDate (D:20121113203952Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1007 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoM7$E!AI-)(^HzAR_/$@*]2% "!)F}T>ɚT|s_J 8Su7:oj@Pu]Uke$zW X!R5 ⼆p8 W䕣 P\`q)'`M޾4'MhFCJ\X+*n`F>nSt&U4C\7e{x`*]losǫ90n#H.\J=BB͌ xl ](Ruz{o@pa(83֣y~sx͝FMPtY5VJD버=g~K%-=>#p1.0nc\Fc:_WpEG(  n1\cb妭Z?l֕|.g/Ur0TG?rh)L9~#> =2^BP]tDr: Qf+h1vŦۭ 1C Z=[n @U>Ew)[6뚯QFs*_v} 7W Cx4|i %C 쥂::&\EXŌԃ>zRgN'7'W 餬 endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 83 /Filter /FlateDecode >> stream xʹ0CQ |>芔h7V/%IDMf7W%eZxF F endstream endobj startxref 17625 %%EOF beamer/doc/beamerug-compatibility.tex0000644000175000017500000003014612050430504017603 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-compatibility.tex,v 38dfbd395d7c 2012/03/25 13:15:29 joseph $ \subsection{Compatibility with Other Packages and Classes} When using certain packages or classes together with the |beamer| class, extra options or precautions may be necessary. \begin{package}{{AlDraTex}} Graphics created using AlDraTex must be treated like verbatim text. The reason is that DraTex fiddles with catcodes and spaces much like verbatim does. So, in order to insert a picture, either add the |fragile| option to the frame or use the |\defverbatim| command to create a box containing the picture. \end{package} \begin{package}{{alltt}} Text in an |alltt| environment must be treated like verbatim text. So add the |fragile| option to frames containing this environment or use |\defverbatim|. \end{package} \begin{package}{{amsthm}} This package is automatically loaded since \beamer\ uses it for typesetting theorems. If you do not wish it to be loaded, which can be necessary especially in |article| mode if the package is incompatible with the document class, you can use the class option |noamsthm| to suppress its loading. See Section~\ref{section-theorems} for more details. \end{package} \begin{package}{{babel}|[|\declare{|french|}|]|} When using the |french| style, certain features that clash with the functionality of the \beamer\ class will be turned off. For example, enumerations are still produced the way the theme dictates, not the way the |french| style does. \end{package} \begin{package}{{babel}|[|\declare{|spanish|}|]|} \beamernote When using the |spanish| style, certain features that clash with the functionality of the \beamer\ class will be turned off. In particular, the special behavior of the pointed brackets |<| and |>| is deactivated. \articlenote To make the characters |<| and |>| active in |article| mode, pass the option |activeospeccharacters| to the package |beamerbasearticle|. This will lead to problems with overlay specifications. \end{package} \begin{package}{{color}} \beamernote The |color| package is automatically loaded by |beamer.cls|. This makes it impossible to pass options to |color| in the preamble of your document in the normal manner. To pass a \meta{list of options} to |color|, you can use the following class option: \begin{classoption}{color={\normalfont\meta{list of options}}} Causes the \meta{list of options} to be passed on to the |color| package. If the \meta{list of options} contains more than one option you must enclose it in curly brackets. \end{classoption} \articlenote The |color| package is not loaded automatically if |beamerarticle| is loaded with the |noxcolor| option. \end{package} \begin{package}{{colortbl}} \beamernote With newer versions of |xcolor.sty|, you need to pass the option |table| to |xcolor.sty| if you wish to use |colortbl|. See the notes on |xcolor| below, on how to do this. \end{package} \begin{package}{{CJK}} \beamernote When using the |CJK| package for using Asian fonts, you must use the class option \declare{|CJK|}. \end{package} \begin{package}{{deluxetable}} \beamernote The caption generation facilities of |deluxetable| are deactivated. Instead, the caption template is used. \end{package} \begin{package}{{DraTex}} See |AlDraTex|. \end{package} \begin{package}{{enumerate}} \articlenote This package is loaded automatically in the |presentation| modes, but not in the |article| mode. If you use its features, you have to load the package ``by hand'' in the |article| mode. \end{package} \begin{class}{{foils}} If you wish to emulate the |foils| class using \beamer, please see Section~\ref{section-foiltex}. \end{class} \begin{package}{{fontenc}|[|\declare{|T1,EU1,EU2|}|]|} Use the |T1| option \emph{only} with fonts that have outline fonts available in the T1 encoding like |times| or the |lmodern| fonts. In a standard installation standard Computer Modern fonts (the fonts Donald Knuth originally designed and which are used by default) are \emph{not} available in the T1 encoding. Using this option with them will result in very poor rendering of your presentation when viewed with \pdf\ viewer applications like Acrobat, |xpdf|, |evince| or |okular|. To use the Computer Modern fonts with the T1 encoding, use the package |lmodern|. See also Section~\ref{section-font-encoding}. This applies both to |latex|+|dvips| and |pdflatex| Use the |EU1| option with |xelatex|, and |EU2| option with |lualatex|. Note that |xelatex| and |luatex| support OpenType fonts, and font encodings work very different compared to |pdflatex|. Again, see Section~\ref{section-font-encoding} for more information. \end{package} \begin{package}{{fourier}} The package switches to a T1~encoding, but it does not redefine all fonts such that outline fonts (non-bitmapped fonts) are used by default. For example, the sans-serif text and the typewriter text are not replaced. To use outline fonts for these, write |\usepackage{lmodern}| \emph{before} including the |fourier| package. \end{package} \begin{package}{{HA-prosper}} You cannot use this package with \beamer. However, you might try to use the package |beamerprosper| instead, see Section~\ref{section-prosper}. \end{package} \begin{package}{{hyperref}} \beamernote The |hyperref| package is automatically loaded by |beamer.cls| and certain options are set up. In order to pass additional options to |hyperref| or to override options, you can use the following class option: \begin{classoption}{hyperref={\normalfont\meta{list of options}}} Causes the \meta{list of options} to be passed on to the |hyperref| package. \example |\documentclass[hyperref={bookmarks=false}]{beamer}| \end{classoption} Alternatively, you can also use the |\hypersetup| command. \articlenote In the |article| version, you must include |hyperref| manually if you want to use it. You can do so by passing option |hyperref| to |beamerarticle|. It is not included automatically. \end{package} \begin{package}{{inputenc}|[|\declare{|utf8,utf8x|}|]|} \beamernote When using Unicode, you may wish to use \emph{some} of the following class options: \begin{classoption}{ucs} Loads the package |ucs| and passes the correct Unicode options to |hyperref|. Also, it preloads the Unicode code pages zero and one. \end{classoption} \begin{classoption}{utf8x} Same as the option |ucs|, but also sets the input encoding to |utf8x|. You could also use the option |ucs| and say |\usepackage[utf8x]{inputenc}| in the preamble. This also automatically loads |ucs| package in most \TeX\ systems. \end{classoption} If you use a Unicode character outside the first two code pages (which includes the Latin alphabet and the extended Latin alphabet) in a section or subsection heading, you have to use the command |\PreloadUnicodePage{|\meta{code page}|}| to give |ucs| a chance to preload these code pages. You will know that a character has not been preloaded, if you get a message like ``Please insert into preamble.'' The code page of a character is given by the unicode number of the character divided by 256. \begin{classoption}{utf8} This option sets the input encoding to |utf8|. It's designed to be used \emph{without} |ucs|. It's the same as saying |\usepackage[utf8]{inputenc}| in the preamble. \end{classoption} Note that \emph{none} of these options apply to |lualatex| and |xelatex|, since both support Unicode natively without any extra packages. Most of the time using these options actually harms output quality, so be careful about what you use. If you want to have a document that allows compiling with multiple drivers, take a look at |iftex|, |ifxetex| and |ifluatex| packages. \articlenote Passing option |utf8| to |beamerarticle| has the same effect as saying |\usepackage[utf8]{inputenc}| in the preamble. Again, take care if you use |lualatex| or |xelatex|. \end{package} \begin{package}{{listings}} \beamernote Note that you must treat |lstlisting| environments exactly the same way as you would treat |verbatim| environments. When using |\defverbatim| that contains a colored |lstlisting|, use the |colored| option of |\defverbatim|. \example \begin{verbatim} \usepackage{listings} \begin{document} \defverbatim[colored]\mycode{% \begin{lstlisting}[frame=single, emph={cout}, emphstyle={\color{blue}}] cout << "Hello world!"; \end{lstlisting} } \begin{frame} \mycode \end{frame} \end{document} \end{verbatim} \end{package} \begin{package}{{msc}} \beamernote Since this package uses |pstricks| internally, everything that applies to pstricks also applies to |msc|. \end{package} \begin{package}{{musixtex}} When using MusiX\TeX\ to typeset musical scores, you have to have $\varepsilon$-\TeX extensions enabled. Most modern distributions enable that by default both in |pdflatex| and |latex|. However, if you have an older distribution, the document must be compiled with |pdfelatex| or |elatex| instead of |pdflatex| or |latex|. Inside a |music| environment, the |\pause| is redefined to match MusiX\TeX's definition (a rest during one quarter of a whole). You can use the |\beamerpause| command to create overlays in this environment. \end{package} \begin{package}{{pdfpages}} Commands like |\includepdf| only work \emph{outside} frames as they produce pages ``by themselves.'' You may also wish to say \begin{verbatim} \setbeamercolor{background canvas}{bg=} \end{verbatim} when you use such a command since the background (even a white background) will otherwise be printed over the image you try to include. \example \begin{verbatim} \begin{document} \begin{frame} \titlepage \end{frame} { \setbeamercolor{background canvas}{bg=} \includepdf{somepdfimages.pdf} } \begin{frame} A normal frame. \end{frame} \end{document} \end{verbatim} \end{package} \begin{package}{{\normalfont\meta{professional font package}}} \beamernote If you use a professional font package, \beamer's internal redefinition of how variables are typeset may interfere with the font package's superior way of typesetting them. In this case, you should use the class option |professionalfont| to suppress any font substitution. See Section~\ref{section-substition} for details. \end{package} \begin{class}{{prosper}} If you wish to (partly) emulate the |prosper| class using \beamer, please see Section~\ref{section-prosper}. \end{class} \begin{package}{{pstricks}} You should add the option |xcolor=pst| to make |xcolor| aware of the fact that you are using |pstricks|. \end{package} \begin{class}{{seminar}} If you wish to emulate the |seminar| class using \beamer, please see Section~\ref{section-seminar}. \end{class} \begin{package}{{texpower}} You cannot use this package with \beamer. However, you might try to use the package |beamertexpower| instead, see Section~\ref{section-texpower}. \end{package} \begin{package}{{textpos}} \beamernote \beamer\ automatically installs a white background behind everything, unless you install a different background template. Because of this, you must use the |overlay| option when using |textpos|, so that it will place boxes \emph{in front of} everything. Alternatively, you can install an empty background template, but this may result in an incorrect display in certain situtations with older versions of the Acrobat Reader. \end{package} \begin{package}{{ucs}} See |\usepackage[utf8,utf8x]{inputenc}|. \end{package} \begin{package}{{xcolor}} \beamernote The |xcolor| package is automatically loaded by |beamer.cls|. The same applies as to |color|. \begin{classoption}{xcolor={\normalfont\meta{list of options}}} Causes the \meta{list of options} to be passed on to the |xcolor| package. \end{classoption} When using \beamer\ together with the |pstricks| package, be sure to pass the |xcolor=pst| option to \beamer\ (and hence to |xcolor|). \articlenote The |color| package is not loaded automatically if |beamerarticle| is loaded with the |noxcolor| option. \end{package} beamer/doc/beamerug-overlays.tex0000644000175000017500000011762612050430504016607 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % Copyright 2011 by Vedran Mileti\'c, Joseph Wright % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-overlays.tex,v e1339c0f83a7 2012/11/11 22:30:24 joseph $ \section{Creating Overlays} \label{section-overlay} \subsection{The Pause Commands} The |pause| command offers an easy, but not very flexible way of creating frames that are uncovered piecewise. If you say |\pause| somewhere in a frame, only the text on the frame up to the |\pause| command is shown on the first slide. On the second slide, everything is shown up to the second |\pause|, and so forth. You can also use |\pause| inside environments; its effect will last after the environment. However, taking this to extremes and using |\pause| deeply within a nested environment may not have the desired result. A much more fine-grained control over what is shown on each slide can be attained using overlay specifications, see the next sections. However, for many simple cases the |\pause| command is sufficient. The effect of |\pause| lasts till the next |\pause|, |\onslide|, or the end of the frame. \begin{verbatim} \begin{frame} \begin{itemize} \item Shown from first slide on. \pause \item Shown from second slide on. \begin{itemize} \item Shown from second slide on. \pause \item Shown from third slide on. \end{itemize} \item Shown from third slide on. \pause \item Shown from fourth slide on. \end{itemize} Shown from fourth slide on. \begin{itemize} \onslide \item Shown from first slide on. \pause \item Shown from fifth slide on. \end{itemize} \end{frame} \end{verbatim} \begin{command}{\pause\oarg{number}} This command causes the text following it to be shown only from the next slide on, or, if the optional \meta{number} is given, from the slide with the number \meta{number}. If the optional \meta{number} is given, the counter |beamerpauses| is set to this number. This command uses the |\onslide| command, internally. This command does \emph{not} work inside |amsmath| environments like |align|, since these do really wicked things. \example \begin{verbatim} \begin{frame} \begin{itemize} \item A \pause \item B \pause \item C \end{itemize} \end{frame} \end{verbatim} \articlenote This command is ignored. \lyxnote Use the ``Pause'' style with an empty line to insert a pause. \end{command} To ``unpause'' some text, that is, to temporarily suspend pausing, use the command |\onslide|, see below. \subsection{The General Concept of Overlay Specifications} \label{section-concept-overlays} The approach taken by most presentation classes to overlays is somewhat similar to the above |\pause| command. These commands get a certain slide number as input and affect the text on the slide following this command in a certain way. For example, \textsc{prosper}'s |\FromSlide{2}| command causes all text following this command to be shown only from the second slide on. The \beamer\ class uses a different approach (though the abovementioned command is also available: |\onslide<2->| will have the same effect as |\FromSlide{2}|, except that |\onslide| transcends environments; likewise, |\pause| is internally mapped to a command with an appropriate overlay specification). The idea is to add \emph{overlay specifications} to certain commands. These specifications are always given in pointed brackets and follow the command ``as soon as possible,'' though in certain cases \beamer\ also allows overlay specification to be given a little later. In the simplest case, the specification contains just a number. A command with an overlay specification following it will only have ``effect'' on the slide(s) mentioned in the specification. What exactly ``having an effect'' means, depends on the command. Consider the following example. \begin{verbatim} \begin{frame} \textbf{This line is bold on all three slides.} \textbf<2>{This line is bold only on the second slide.} \textbf<3>{This line is bold only on the third slide.} \end{frame} \end{verbatim} For the command |\textbf|, the overlay specification causes the text to be set in boldface only on the specified slides. On all other slides, the text is set in a normal font. For a second example, consider the following frame: \begin{verbatim} \begin{frame} \only<1>{This line is inserted only on slide 1.} \only<2>{This line is inserted only on slide 2.} \end{frame} \end{verbatim} The command |\only|, which is introduced by \beamer, normally simply inserts its parameter into the current frame. However, if an overlay specification is present, it ``throws away'' its parameter on slides that are not mentioned. Overlay specifications can only be written behind certain commands, not every command. Which commands you can use and which effects this will have is explained in the next section. However, it is quite easy to redefine an existing command such that it becomes ``overlay specification aware,'' see also Section~\ref{section-overlay-commands}. The syntax of (basic) overlay specifications is the following: They are comma-separated lists of slides and ranges. Ranges are specified like this: |2-5|, which means slide two through to five. The start or the end of a range can be omitted. For example, |3-| means ``slides three, four, five, and so on'' and |-5| means the same as |1-5|. A complicated example is |-3,6-8,10,12-15|, which selects the slides 1, 2, 3, 6, 7, 8, 10, 12, 13, 14, and 15. \lyxnote Overlay specifications can also be given in \LyX. You must give them in \TeX-mode (otherwise the pointed brackets may be ``escaped'' by \LyX, though this will not happen in all versions). For example, to add an overlay specification to an item, simply insert a \TeX-mode text like |<3>| as the first thing in that item. Likewise, you can add an overlay specification to environments like |theorem| by giving them in \TeX-mode right at the start of the environment. \subsection{Commands with Overlay Specifications} \label{section-overlay-commands} \textbf{Important:} Due to the way overlay specifications are implemented, the commands documented here are \emph{all} fragile even if the \LaTeXe{} kernel versions are not. For the following commands, adding an overlay specification causes the command to be simply ignored on slides that are not included in the specification: |\textbf|, |\textit|, |\textsl|, |\textrm|, |\textsf|, |\color|, |\alert|, |\structure|. If a command takes several arguments, like |\color|, the specification should directly follow the command as in the following example (but there are exceptions to this rule): \begin{verbatim} \begin{frame} \color<2-3>[rgb]{1,0,0} This text is red on slides 2 and 3, otherwise black. \end{frame} \end{verbatim} For the following commands, the effect of an overlay specification is special: \begin{command}{\onslide\opt{\meta{modifier}}\sarg{overlay specification}\opt{\marg{text}}} The behavior of this command depends on whether the optional argument \meta{text} is given or not (note that the optional argument is given in \emph{normal} braces, not in square brackets). If present, the \meta{modifier} can be either a~|+| or a~|*|. If no \meta{text} is given, the following happens: All text following this command will only be shown (uncovered) on the specified slides. On non-specified slides, the text still occupies space. If no slides are specified, the following text is always shown. You need not call this command in the same \TeX\ group, its effect transcends block groups. However, this command has a \emph{different} effect inside an |overprint| environment, see the description of |overprint|. If the \meta{modifier} is |+|, hidden text will not be treated as covered, but as invisible. The difference is the same as the difference between |\uncover| and |\visible|. The modifier |*| may not be given if no \meta{text} argument is present. \example \begin{verbatim} \begin{frame} Shown on first slide. \onslide<2-3> Shown on second and third slide. \begin{itemize} \item Still shown on the second and third slide. \onslide+<4-> \item Shown from slide 4 on. \end{itemize} Shown from slide 4 on. \onslide Shown on all slides. \end{frame} \end{verbatim} If a \meta{text} argument is present, |\onslide| (without a \meta{modifier}) is mapped to |\uncover|, |\onslide+| is mapped to |\visible|, and |\onslide*| is mapped to |\only|. \example \begin{verbatim} \begin{frame} \onslide<1>{Same effect as the following command.} \uncover<1>{Same effect as the previous command.} \onslide+<2>{Same effect as the following command.} \visible<2>{Same effect as the previous command.} \onslide*<3>{Same effect as the following command.} \only<3>{Same effect as the previous command.} \end{frame} \end{verbatim} \end{command} \begin{command}{\only\sarg{overlay specification}\marg{text}\sarg{overlay specification}} If either \meta{overlay specification} is present (though only one may be present), the \meta{text} is inserted only into the specified slides. For other slides, the text is simply thrown away. In particular, it occupies no space. \example |\only<3->{Text inserted from slide 3 on.}| Since the overlay specification may also be given after the text, you can often use |\only| to make other commands overlay specification-aware in a simple manner: \example \begin{verbatim} \newcommand{\myblue}{\only{\color{blue}}} \begin{frame} \myblue<2> This text is blue only on slide 2. \end{frame} \end{verbatim} \end{command} \begin{command}{\uncover\sarg{overlay specification}\marg{text}} If the \meta{overlay specification} is present, the \meta{text} is shown (``uncovered'') only on the specified slides. On other slides, the text still occupies space and it is still typeset, but it is not shown or only shown as if transparent. For details on how to specify whether the text is invisible or just transparent see Section~\ref{section-transparent}. \example |\uncover<3->{Text shown from slide 3 on.}| \articlenote This command has the same effect as |\only|. \end{command} \begin{command}{\visible\sarg{overlay specification}\marg{text}} This command does almost the same as |\uncover|. The only difference is that if the text is not shown, it is never shown in a transparent way, but rather it is not shown at all. Thus, for this command the transparency settings have no effect. \example |\visible<2->{Text shown from slide 2 on.}| \articlenote This command has the same effect as |\only|. \end{command} \begin{command}{\invisible\sarg{overlay specification}\marg{text}} This command is the opposite of |\visible|. \example |\invisible<-2>{Text shown from slide 3 on.}| \end{command} \begin{command}{\alt\sarg{overlay specification}\marg{default text}\marg{alternative text}\sarg{overlay specification}} Only one \meta{overlay specification} may be given. The default text is shown on the specified slides, otherwise the alternative text. The specification must always be present. \example |\alt<2>{On Slide 2}{Not on slide 2.}| Once more, giving the overlay specification at the end is useful when the command is used inside other commands. \example Here is the definition of |\uncover|: \begin{verbatim} \newcommand{\uncover}{\alt{\@firstofone}{\makeinvisible}} \end{verbatim} \end{command} \begin{command}{\temporal\ssarg{overlay specification}\marg{before slide text}\marg{default text}\marg{after slide text}} This command alternates between three different texts, depending on whether the current slide is temporally before the specified slides, is one of the specified slides, or comes after them. If the \meta{overlay specification} is not an interval (that is, if it has a ``hole''), the ``hole'' is considered to be part of the before slides. \example \begin{verbatim} \temporal<3-4>{Shown on 1, 2}{Shown on 3, 4}{Shown 5, 6, 7, ...} \temporal<3,5>{Shown on 1, 2, 4}{Shown on 3, 5}{Shown 6, 7, 8, ...} \end{verbatim} As a possible application of the |\temporal| command consider the following example: \example \begin{verbatim} \def\colorize<#1>{% \temporal<#1>{\color{red!50}}{\color{black}}{\color{black!50}}} \begin{frame} \begin{itemize} \colorize<1> \item First item. \colorize<2> \item Second item. \colorize<3> \item Third item. \colorize<4> \item Fourth item. \end{itemize} \end{frame} \end{verbatim} \end{command} \begin{command}{\item\sarg{alert specification}\oarg{item label}\sarg{alert specification}} \beamernote Only one \meta{alert specification} may be given. The effect of \meta{alert specification} is described in Section~\ref{section-action-specifications}. \example \begin{verbatim} \begin{frame} \begin{itemize} \item<1-> First point, shown on all slides. \item<2-> Second point, shown on slide 2 and later. \item<2-> Third point, also shown on slide 2 and later. \item<3-> Fourth point, shown on slide 3. \end{itemize} \end{frame} \begin{frame} \begin{enumerate} \item<3-| alert@3>[0.] A zeroth point, shown at the very end. \item<1-| alert@1> The first and main point. \item<2-| alert@2> The second point. \end{enumerate} \end{frame} \end{verbatim} \articlenote The \meta{action specification} is currently completely ignored. \lyxnote The \meta{action specification} must be given in \TeX-mode and it must be given at the very start of the item. \end{command} The related command |\bibitem| is also overlay specification-aware in the same way as |\item|. \begin{command}{\label\sarg{overlay specification}\marg{label name}} If the \meta{overlay specification} is present, the label is only inserted on the specified slide. Inserting a label on more than one slide will cause a `multiple labels' warning. \emph{However}, if no overlay specification is present, the specification is automatically set to just `1' and the label is thus inserted only on the first slide. This is typically the desired behavior since it does not really matter on which slide the label is inserted, \emph{except} if you use an |\only| command and \emph{except} if you wish to use that label as a hyperjump target. Then you need to specify a slide. Labels can be used as target of hyperjumps. A convenient way of labelling a frame is to use the |label=|\meta{name} option of the |frame| environment. However, this will cause the whole frame to be kept in memory till the end of the compilation, which may pose a problem. \example \begin{verbatim} \begin{frame} \begin{align} a &= b + c \label{first}\\ % no specification needed c &= d + e \label{second}\\% no specification needed \end{align} Blah blah, \uncover<2>{more blah blah.} \only<3>{Specification is needed now.\label<3>{mylabel}} \end{frame} \end{verbatim} \end{command} \subsection{Environments with Overlay Specifications} Environments can also be equipped with overlay specifications. For most of the predefined environments, see Section~\ref{predefined}, adding an overlay specification causes the whole environment to be uncovered only on the specified slides. This is useful for showing things incrementally as in the following example. \begin{verbatim} \begin{frame} \frametitle{A Theorem on Infinite Sets} \begin{theorem}<1-> There exists an infinite set. \end{theorem} \begin{proof}<3-> This follows from the axiom of infinity. \end{proof} \begin{example}<2-> The set of natural numbers is infinite. \end{example} \end{frame} \end{verbatim} In the example, the first slide only contains the theorem, on the second slide an example is added, and on the third slide the proof is also shown. For each of the basic commands |\only|, |\alt|, |\visible|, |\uncover|, and |\invisible| there exists ``environment versions'' |onlyenv|, |altenv|, |visibleenv|, |uncoverenv|, and |invisibleenv|. Except for |altenv| and |onlyenv|, these environments do the same as the commands. \begin{environment}{{onlyenv}\sarg{overlay specification}} If the \meta{overlay specification} is given, the contents of the environment is inserted into the text only on the specified slides. The difference to |\only| is, that the text is actually typeset inside a box that is then thrown away, whereas |\only| immediately throws away its contents. If the text is not ``typesettable,'' the |onlyenv| may produce an error where |\only| would not. \example \begin{verbatim} \begin{frame} This line is always shown. \begin{onlyenv}<2> This line is inserted on slide 2. \end{onlyenv} \end{frame} \end{verbatim} \end{environment} \begin{environment}{{altenv}\sarg{overlay specification}\marg{begin text}\marg{end text}\marg{alternate begin text}\marg{alternate end text}\sarg{overlay specification}} Only one \meta{overlay specification} may be given. On the specified slides, \meta{begin text} will be inserted at the beginning of the environment and \meta{end text} will be inserted at the end. On all other slides, \meta{alternate begin text} and \meta{alternate end text} will be used. \example \begin{verbatim} \begin{frame} This \begin{altenv}<2>{(}{)}{[}{]} word \end{altenv} is in round brackets on slide 2 and in square brackets on slide 1. \end{frame} \end{verbatim} \end{environment} \subsection{Dynamically Changing Text or Images} You may sometimes wish to have some part of a frame change dynamically from slide to slide. On each slide of the frame, something different should be shown inside this area. You could achieve the effect of dynamically changing text by giving a list of |\only| commands like this: \begin{verbatim} \only<1>{Initial text.} \only<2>{Replaced by this on second slide.} \only<3>{Replaced again by this on third slide.} \end{verbatim} The trouble with this approach is that it may lead to slight, but annoying differences in the heights of the lines, which may cause the whole frame to ``wobble'' from slide to slide. This problem becomes much more severe if the replacement text is several lines long. To solve this problem, you can use two environments: |overlayarea| and |overprint|. The first is more flexible, but less user-friendly. \begin{environment}{{overlayarea}\marg{area width}\marg{area height}} Everything within the environment will be placed in a rectangular area of the specified size. The area will have the same size on all slides of a frame, regardless of its actual contents. \example \begin{verbatim} \begin{overlayarea}{\textwidth}{3cm} \only<1>{Some text for the first slide.\\Possibly several lines long.} \only<2>{Replacement on the second slide.} \end{overlayarea} \end{verbatim} \lyxnote Use the style ``OverlayArea'' to insert an overlay area. \end{environment} \begin{environment}{{overprint}\oarg{area width}} The \meta{area width} defaults to the text width. Inside the environment, use |\onslide| commands to specify different things that should be shown for this environment on different slides. The |\onslide| commands are used like |\item| commands. Everything within the environment will be placed in a rectangular area of the specified width. The height and depth of the area are chosen large enough to accommodate the largest contents of the area. The overlay specifications of the |\onslide| commands must be disjoint. This may be a problem for handouts, since, there, all overlay specifications default to |1|. If you use the option |handout|, you can disable all but one |\onslide| by setting the others to |0|. \example \begin{verbatim} \begin{overprint} \onslide<1| handout:1> Some text for the first slide.\\ Possibly several lines long. \onslide<2| handout:0> Replacement on the second slide. Supressed for handout. \end{overprint} \end{verbatim} \lyxnote Use the style ``Overprint'' to insert an |overprint| environment. You have to use \TeX-mode to insert the |\onslide| commands. \end{environment} A similar need for dynamical changes arises when you have, say, a series of pictures named |first.pdf|, |second.pdf|, and |third.pdf| that show different stages of some process. To make a frame that shows these pictures on different slides, the following code might be used: \begin{verbatim} \begin{frame} \frametitle{The Three Process Stages} \includegraphics<1>{first.pdf} \includegraphics<2>{second.pdf} \includegraphics<3>{third.pdf} \end{frame} \end{verbatim} The above code uses the fact the \beamer\ makes the |\includegraphics| command overlay specification-aware. It works nicely, but only if each |.pdf| file contains the complete graphic to be shown. However, some programs, like |xfig|, sometimes also produce series of graphics in which each file just contains the \emph{additional} graphic elements to be shown on the next slide. In this case, the first graphic must be shown not on overlay~1, but from overlay~1 on, and so on. While this is easy to achieve by changing the overlay specification |<1>| to |<1->|, the graphics must also be shown \emph{on top of each other}. An easy way to achieve this is to use \TeX's |\llap| command like this: \begin{verbatim} \begin{frame} \frametitle{The Three Process Stages} \includegraphics<1->{first.pdf}% \llap{\includegraphics<2->{second.pdf}}% \llap{\includegraphics<3->{third.pdf}} \end{frame} \end{verbatim} or like this: \begin{verbatim} \begin{frame} \frametitle{The Three Process Stages} \includegraphics{first.pdf}% \pause% \llap{\includegraphics{second.pdf}}% \pause% \llap{\includegraphics{third.pdf}} \end{frame} \end{verbatim} A more convenient way is to use the |\multiinclude| command, see Section~\ref{section-xmpmulti} for details. \subsection{Advanced Overlay Specifications} \subsubsection{Making Commands and Environments Overlay Specification-Aware} This section explains how to define new commands that are overlay specification-aware. Also, it explains how to setup counters correctly that should be increased from frame to frame (like equation numbering), but not from slide to slide. You may wish to skip this section, unless you want to write your own extensions to the \beamer\ class. \beamer\ extends the syntax of \LaTeX's standard command |\newcommand|: \begin{command}{\newcommand\declare{|<>|}\marg{command name}\oarg{argument number}\oarg{default optional value}\marg{text}} Declares the new command named \meta{command name}. The \meta{text} should contain the body of this command and it may contain occurrences of parameters like |#|\meta{number}. Here \meta{number} may be between 1 and $\mbox{\meta{argument number}}+1$. The additionally allowed argument is the overlay specification. When \meta{command name} is used, it will scan as many as \meta{argument number} arguments. While scanning them, it will look for an overlay specification, which may be given between any two arguments, before the first argument, or after the last argument. If it finds an overlay specification like |<3>|, it will call \meta{text} with arguments 1 to \meta{argument number} set to the normal arguments and the argument number $\mbox{\meta{argument number}}+1$ set to |<3>| (including the pointed brackets). If no overlay specification is found, the extra argument is empty. If the \meta{default optional value} is provided, the first argument of \meta{command name} is optional. If no optional argument is specified in square brackets, the \meta{default optional value} is used. \example The following command will typeset its argument in red on the specified slides: \begin{verbatim} \newcommand<>{\makered}[1]{{\color#2{red}#1}} \end{verbatim} \example Here is \beamer's definition of |\emph|: \begin{verbatim} \newcommand<>{\emph}[1]{{\only#2{\itshape}#1}} \end{verbatim} \example Here is \beamer's definition of |\transdissolve| (the command |\beamer@dotrans| mainly passes its argument to |hyperref|): \begin{verbatim} \newcommand<>{\transdissolve}[1][]{\only#2{\beamer@dotrans[#1]{Dissolve}}} \end{verbatim} \end{command} \begin{command}{\renewcommand\declare{|<>|}\marg{existing command name}\oarg{argument number}\oarg{default optional value}\marg{text}} Redeclares a command that already exists in the same way as |\newcommand<>|. Inside \meta{text}, you can still access to original definitions using the command |\beameroriginal|, see the example. \example This command is used in \beamer\ to make |\hyperlink| overlay specification-aware: \begin{verbatim} \renewcommand<>{\hyperlink}[2]{\only#3{\beameroriginal{\hyperlink}{#1}{#2}}} \end{verbatim} \end{command} \begin{command}{\newenvironment\declare{|<>|}\marg{environment name}\oarg{argument number}\oarg{default optional value}\\ \marg{begin text}\marg{end text}} Declares a new environment that is overlay specification-aware. If this environment is encountered, the same algorithm as for |\newcommand<>| is used to parse the arguments and the overlay specification. Note that, as always, the \meta{end text} may not contain any arguments like |#1|. In particular, you do not have access to the overlay specification. In this case, it is usually a good idea to use |altenv| environment in the \meta{begin text}. \example Declare your own action block: \begin{verbatim} \newenvironment<>{myboldblock}[1]{% \begin{actionenv}#2% \textbf{#1} \par} {\par% \end{actionenv}} \begin{frame} \begin{myboldblock}<2> This theorem is shown only on the second slide. \end{myboldblock} \end{frame} \end{verbatim} \example Text in the following environment is normally bold and italic on non-specified slides: \begin{verbatim} \newenvironment<>{boldornormal} {\begin{altenv}#1 {\begin{bfseries}}{\end{bfseries}} {}{}} {\end{altenv}} \end{verbatim} Incidentally, since |altenv| also accepts its argument at the end, the same effect could have been achieved using just \begin{verbatim} \newenvironment{boldornormal} {\begin{altenv} {\begin{bfseries}}{\end{bfseries}} {}{}} {\end{altenv}} \end{verbatim} \end{command} \begin{command}{\renewenvironment\declare{|<>|}\marg{existing environment name}\oarg{argument number}\oarg{default optional value}\\ \marg{begin text}\marg{end text}} Redefines an existing environment. The original environment is still available under the name |original|\meta{existing environment name}. \example \begin{verbatim} \renewenvironment<>{verse} {\begin{actionenv}#1\begin{originalverse}} {\end{originalverse}\end{actionenv}} \end{verbatim} \end{command} The following two commands can be used to ensure that a certain counter is automatically reset on subsequent slides of a frame. This is necessary for example for the equation count. You might want this count to be increased from frame to frame, but certainly not from overlay slide to overlay slide. For equation counters and footnote counters (you should not use footnotes), these commands have already been invoked. \begin{command}{\resetcounteronoverlays\marg{counter name}} After you have invoked this command, the value of the specified counter will be the same on all slides of every frame. \example |\resetcounteronoverlays{equation}| \end{command} \begin{command}{\resetcountonoverlays\marg{count register name}} The same as |\resetcounteronoverlays|, except that this command should be used with counts that have been created using the \TeX\ primitive |\newcount| instead of \LaTeX's |\definecounter|. \example \begin{verbatim} \newcount\mycount \resetcountonoverlays{mycount} \end{verbatim} \end{command} \subsubsection{Mode Specifications} This section is only important if you use \beamer's mode mechanism to create different versions of your presentation. If you are not familiar with \beamer's modes, please skip this section or read Section~\ref{section-modes} first. In certain cases you may wish to have different overlay specifications to apply to a command in different modes. For example, you might wish a certain text to appear only from the third slide on during your presentation, but in a handout for the audience there should be no second slide and the text should appear already on the second slide. In this case you could write \begin{verbatim} \only<3| handout:2>{Some text} \end{verbatim} The vertical bar, which must be followed by a (white) space, separates the two different specifications |3| and |handout:2|. By writing a mode name before a colon, you specify that the following specification only applies to that mode. If no mode is given, as in |3|, the mode |beamer| is automatically added. For this reason, if you write |\only<3>{Text}| and you are in |handout| mode, the text will be shown on all slides since there is no restriction specified for handouts and since the |3| is the same as |beamer:3|. It is also possible to give an overlay specification that contains only a mode name (or several, separated by vertical bars): \begin{verbatim} \only

{This text is shown only in article mode.} \end{verbatim} An overlay specification that does not contain any slide numbers is called a (pure) \emph{mode specification}. If a mode specification is given, all modes that are not mentioned are automatically suppressed. Thus || means ``on all slides in |beamer| mode and also on all slides in all other modes, since nothing special is specified for them,'' whereas || means ``on all slides in |beamer| mode and not on any other slide.'' Mode specifications can also be used outside frames as in the following examples: \begin{verbatim} \section{This section exists only in the presentation modes} \section
{This section exists only in the article mode} \end{verbatim} Presentation modes include |beamer|, |trans| and |handout|. You can also mix pure mode specifications and overlay specifications, although this can get confusing: \begin{verbatim} \only{Riddle} \end{verbatim} This will cause the text |Riddle| to be inserted in |article| mode and on the first slide of a frame in |beamer| mode, but not at all in |handout| or |trans| mode. (Try to find out how \verb// differs from || and from ||.) As if all this were not already complicated enough, there is another mode that behaves in a special way: the mode |second|. For this mode a special rule applies: An overlay specification for mode |beamer| also applies to mode |second| (but not the other way round). Thus, if we are in mode |second|, the specification || means ``on slide 2'' and || also means ``on slide 2''. To get a slide that is typeset in |beamer| mode, but not in |second| mode, you can use, ||. \subsubsection{Action Specifications} \label{section-action-specifications} This section also introduces a rather advanced concept. You may also wish to skip it on first reading. Some overlay specification-aware commands cannot only handle normal overlay specifications, but also so called \emph{action specifications}. In an action specification, the list of slide numbers and ranges is prefixed by \meta{action}|@|, where \meta{action} is the name of a certain action to be taken on the specified slides: \begin{verbatim} \item<3-| alert@3> Shown from slide 3 on, alerted on slide 3. \end{verbatim} In the above example, the |\item| command, which allows actions to be specified, will uncover the item text from slide three on and it will, additionally, alert this item exactly on slide 3. Not all commands can take an action specification. Currently, only |\item| (though not in |article| mode currently), |\action|, the environment |actionenv|, and the block environments (like |block| or |theorem|) handle them. By default, the following actions are available: \begin{itemize} \item \declare{|alert|} alters the item or block. \item \declare{|uncover|} uncovers the item or block (this is the default, if no action is specified). \item \declare{|only|} causes the whole item or block to be inserted only on the specified slides. \item \declare{|visible|} causes the text to become visible only on the specified slides (the difference between |uncover| and |visible| is the same as between |\uncover| and |\visible|). \item \declare{|invisible|} causes the text to become invisible on the specified slides. \end{itemize} The rest of this section explains how you can add your own actions and make commands action-specification-aware. You may wish to skip it upon first reading. You can easily add your own actions: An action specification like \meta{action}|@|\meta{slide numbers} simply inserts an environment called \meta{action}|env| around the |\item| or parameter of |\action| with |<|\meta{slide numbers}|>| as overlay specification. Thus, by defining a new overlay specification-aware environment named \meta{my action name}|env|, you can add your own action: \begin{verbatim} \newenvironment{checkenv}{\only{\setbeamertemplate{itemize item}{X}}}{} \end{verbatim} You can then write \begin{verbatim} \item Text. \end{verbatim} This will change the itemization symbol before |Text.| to |X| on slide~2 in |beamer| mode. The definition of |checkenv| used the fact that |\only| also accepts an overlay specification given after its argument. The whole action mechanism is based on the following environment: \begin{environment}{{actionenv}\sarg{action specification}} This environment extracts all actions from the \meta{action specification} for the current mode. For each action of the form \meta{action}|@|\meta{slide numbers}, it inserts the following text: |\begin{|\meta{action}|env}<|\meta{slide number}|>| at the beginning of the environment and the text |\end{|\meta{action}|env}| at the end. If there are several action specifications, several environments are opened (and closed in the appropriate order). An \meta{overlay specification} without an action is promoted to |uncover@|\meta{overlay specification}. If the so called \emph{default overlay specification} is not empty, it will be used in case no \meta{action specification} is given. The default overlay specification is usually just empty, but it may be set either by providing an additional optional argument to the command |\frame| or to the environments |itemize|, |enumerate|, or |description| (see these for details). Also, the default action specification can be set using the command |\beamerdefaultoverlayspecification|, see below. \example \begin{verbatim} \begin{frame} \begin{actionenv}<2-| alert@3-4,6> This text is shown the same way as the text below. \end{actionenv} \begin{uncoverenv}<2-> \begin{alertenv}<3-4,6> This text is shown the same way as the text above. \end{alertenv} \end{uncoverenv} \end{frame} \end{verbatim} \end{environment} \begin{command}{\action\sarg{action specification}\marg{text}} This has the same effect as putting \meta{text} in an |actionenv|. \example |\action{Could also have used \alert<2>{}.}| \end{command} \begin{command}{\beamerdefaultoverlayspecification\marg{default overlay specification}} Locally sets the default overlay specification to the given value. This overlay specification will be used in every |actionenv| environment and every |\item| that does not have its own overlay specification. The main use of this command is to install an incremental overlay specification like |<+->| or \verb/<+-| alert@+>/, see Section~\ref{section-incremental}. Usually, the default overlay specification is installed automatically by the optional arguments to |\frame|, |frame|, |itemize|, |enumerate|, and |description|. You will only have to use this command if you wish to do funny things. If given outside any frame, this command sets the default overlay specification for all following frames for which you do not override the default overlay specification. \example |\beamerdefaultoverlayspecification{<+->}| \example |\beamerdefaultoverlayspecification{}| clears the default overlay specification. (Actually, it installs the default overlay specification |<*>|, which just means ``always,'' but the ``portable'' way of clearing the default overlay specification is this call.) \end{command} \subsubsection{Incremental Specifications} \label{section-incremental} This section is mostly important for people who have already used overlay specifications a lot and have grown tired of writing things like |<1->|, |<2->|, |<3->|, and so on again and again. You should skip this section on first reading. Often you want to have overlay specifications that follow a pattern similar to the following: \begin{verbatim} \begin{itemize} \item<1-> Apple \item<2-> Peach \item<3-> Plum \item<4-> Orange \end{itemize} \end{verbatim} The problem starts if you decide to insert a new fruit, say, at the beginning. In this case, you would have to adjust all of the overlay specifications. Also, if you add a |\pause| command before the |itemize|, you would also have to update the overlay specifications. \beamer\ offers a special syntax to make creating lists as the one above more ``robust.'' You can replace it by the following list of \emph{incremental overlay specifications}: \begin{verbatim} \begin{itemize} \item<+-> Apple \item<+-> Peach \item<+-> Plum \item<+-> Orange \end{itemize} \end{verbatim} The effect of the |+|-sign is the following: You can use it in any overlay specification at any point where you would usually use a number. If a |+|-sign is encountered, it is replaced by the current value of the \LaTeX\ counter |beamerpauses|, which is 1 at the beginning of the frame. Then the counter is increased by 1, though it is only increased once for every overlay specification, even if the specification contains multiple |+|-signs (they are replaced by the same number). In the above example, the first specification is replaced by |<1->|. Then the second is replaced by |<2->| and so forth. We can now easily insert new entries, without having to change anything. We might also write the following: \begin{verbatim} \begin{itemize} \item<+-| alert@+> Apple \item<+-| alert@+> Peach \item<+-| alert@+> Plum \item<+-| alert@+> Orange \end{itemize} \end{verbatim} This will alert the current item when it is uncovered. For example, the first specification \verb/<+-| alert@+>/ is replaced by \verb/<1-| alert@1>/, the second is replaced by \verb/<2-| alert@2>/, and so on. Since the |itemize| environment also allows you to specify a default overlay specification, see the documentation of that environment, the above example can be written even more economically as follows: \begin{verbatim} \begin{itemize}[<+-| alert@+>] \item Apple \item Peach \item Plum \item Orange \end{itemize} \end{verbatim} The |\pause| command also updates the counter |beamerpauses|. You can change this counter yourself using the normal \LaTeX\ commands |\setcounter| or |\addtocounter|. Any occurence of a |+|-sign may be followed by an \emph{offset} in round brackets. This offset will be added to the value of |beamerpauses|. Thus, if |beamerpauses| is 2, then |<+(1)->| expands to |<3->| and |<+(-1)-+>| expands to |<1-2>|. For example \begin{verbatim} \begin{frame} \frametitle{Method 1} \begin{itemize} \item<2-> Apple \item<3-> Peach \item<4-> Plum \item<5-> Orange \end{itemize} \end{verbatim} and \begin{verbatim} \begin{itemize}[<+(1)->] \item Apple \item Peach \item Plum \item Orange \end{itemize} \end{verbatim} are equivalent. There is another special sign you can use in an overlay specification that behaves similarly to the |+|-sign: a dot. When you write |<.->|, a similar thing as in |<+->| happens \emph{except} that the counter |beamerpauses| is \emph{not} incremented and \emph{except} that you get the value of |beamerpauses| decreased by one. Thus a dot, possibly followed by an offset, just expands to the current value of the counter |beamerpauses| minus one, possibly offset. This dot notation can be useful in case like the following: \begin{verbatim} \begin{itemize}[<+->] \item Apple \item<.-> Peach \item Plum \item Orange \end{itemize} \end{verbatim} In the example, the second item is shown at the same time as the first one since it does not update the counter. In the following example, each time an item is uncovered, the specified text is alerted. When the next item is uncovered, this altering ends. \begin{verbatim} \begin{itemize}[<+->] \item This is \alert<.>{important}. \item We want to \alert<.>{highlight} this and \alert<.>{this}. \item What is the \alert<.>{matrix}? \end{itemize} \end{verbatim} beamer/doc/beamerugthemeRochester.pdf0000644000175000017500000004300212050430536017607 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1158 /Filter /FlateDecode >> stream xX[o6~ L [&ASX%'~H*$M&cܾs!AodN#o7'+ i)SӱC)f(|4tyRV%e63ϜE lE Q.n:>#'h0SNDa59b2rA3zh3,ԂanQñʁsisD0n ^' )&%y,| [ͭ tpK[p@(u?);rÒ8q: V'*n##b =nTbQ9@dֳfU`iVW}d?aY/[W WCiT:4ۉ@|-Fi>;/^K|ĊWuO8O$aR*wYYSIr ʄCN(P<+@e;GH8nDФ,+h#E$7P*Izrx{ΥIbb? =C;Js d-QW0*,/>!,isG[RojOZdcIeӎ?ڿ~}r&#:sp Ͱ eh P n 2^1nw9nM[>|] Ӓ9 C7E0W,+қ+Ph_$@1 T_Cpί尩rh*~Jߺ˺7×Gx9IXa֐)(T 1S Jr_ݾ9]_1 9ۜY盀q$ M*\0 1anj%ٞ'vuS,^G2Q9[Ŕo* 940 ( $nZ^Y?l$ݩRq)):AEX{4_=- <\Աaq=QO'',m endstream endobj 18 0 obj << /Length 1585 /Filter /FlateDecode >> stream xY[o9~WhumQU om!)@2{l@ !mV 9>s2rIcz8|iuRajB.z_֗;RA%%iNO~T#j4Gm J@8RQglw\՗H§h ,XCt$qӲO˛RpZ$2foؽ0٪{-&K^b Ky&)w#^c7<3IR7HB!r!(#| 8ΔTs$ i6g )%@Hq>Ec&kW,\0?&PM2Ce$ 3Cs8SfXq{ZϚ;J>Ή_dw%c %hG> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203908Z) /ModDate (D:20121113203908Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1007 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~novpti$shQ2` knXfyJJׇ?a3IOYMU뜃~Mav[oW <;Bw/趁#; Qf+lx !]kv]4]a]4fBU\ky<}|+2aV Jq7>ef]5hX ݷP}NȼݦMK@(%5 JpcMwzSnK;Bٜ\_ endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<75FEC965563DC86BFF36B0CE632E6F9E> <75FEC965563DC86BFF36B0CE632E6F9E>] /Length 86 /Filter /FlateDecode >> stream x CA@ =XWhKu`fݡz 2DICѠOkAg"E$۶NҸ]h < endstream endobj startxref 17586 %%EOF beamer/doc/beamerugthemeboxes.pdf0000644000175000017500000004225012050430542016772 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1041 /Filter /FlateDecode >> stream xW[o6~ LoqúV={%ɉ,9H*ѥȊ$lG iF. #/WlRW#./W7@gDjA,0rАջR^%.ɒƷ*\[A!uI5V7duJ TlI>ThTƨqqP*`DJYy &E|ZHi"GV 5ogi./zOr JP4uF: tZpI!HTLp\"!°e(ΧD."q;A F2fYa缯}l?aIO;!L4*EDM >ׂ۬QgO,_/Kq|ҧionˍ'mD$pTCy3%c9@aTbU@l%Z0vvk/M vc*d{A0Z=']34B~u}X0aSrvcg3lؾ Tpt.Ƒ(uvUֶD'Fw}{slj a]<(F~j6 *[(@`)AOu:[]ӏZƶ>~Pr_\)o}Ff8x9KP50 a`HWy/h_az@?]T7 о BhaIߖm>,51‚O/{)%TWł6Y/oRLQcrzWd8T\۩wMvBx?4-w0Mk멠 endstream endobj 18 0 obj << /Length 1360 /Filter /FlateDecode >> stream x]O9=Nqzҵ:TUCHDؐo^f!pHxgaӀuW5~ippFIM C\NwIJ&?-4Hi>u@ !IdܑA P&?:* 2cz80JI qgdpT_#aقlIQxx D$I5 N w[ M:zm)-sg+@`}ԁ@ V%Qs-Cr5,8*b/  z@I%~~ +fkm@!Q"1_b4 %fiKrOm.-XWt8=!pý}\AILN̋J"nғytkxJXx8ĔyyM?kW~ww,jH"XR*#[3Eg dN·몮FcaM\yZ_UZ\vyQգ=(1Z|}w[חs6GȳB 2-EºogFY/6z]F;C-N ӎZk'N m}s,ux܂;8Bsu\b! +X2ڦ_7(<9: EF770j0f+[(*^Р˱! D(E_1Mio5^Ǐo {}cE~ pyJ(u\TGamooכ*׳&%SE5s?0Wrݧyt~C`]&Vidx# 0SAoP[>T ytHhxML}I jD]<aE7cSԍ?0 ՛ޛ2{x(܌ \;eB05zHlr]h>(e:F%? n?m<3_,.F o߄fZIzzD8Xfߝ*b<\L/`J߫ö^c̄oj|F endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203914Z) /ModDate (D:20121113203914Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1007 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoM7$E!AI-)(^HzAR_/$@*]2% "!)F}T>ɚT|s_J 8Su7:oj@Pu]Uke$zW X!R5 ⼆p8 W䕣 P\`q)'`M޾4'MhFCJ\X+*n`F>nSt&U4Czo2]U>.,Wsv5a|?xSGޡ\z !Q%v]y{,߁;#=Pq xg G *񼵛;3㍚誳`kssp :e {px^(#hr18|_e35mC`JA fpZE|׮aFIMQmoyO{̶}oӖ46qZgUtdsh}_>iB!0O:Kݐ\O ]o2O7\'௝/IzW|K[{|G'8ş c\`IƸDu5p኎PLqbK]eM[Xa~96ج+\`_ `pۻSnsF/}<~{<1ex1ZvTi 5~E<)YlOLR5SnS1js"ï) n ە| ;.趁#nu@ãV67Zb(M_K[E&>Ec,^ŵ6{諕"AfUptw}Sl5_U@od)2/8&4h|rJlIAK]%uBuLԱ |l̥xq!LORoN.Z endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 82 /Filter /FlateDecode >> stream x0 CQ)dڠ\h"h k м@@$Y~( :ԍ6Y?vJzVx*#׍j  endstream endobj startxref 17244 %%EOF beamer/doc/beamerugcolorthemestructure.pdf0000644000175000017500000004267412050430566020771 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1171 /Filter /FlateDecode >> stream xXKs6W(͔(ޏc;M=LRCK1'&eKTH=Q$gX]+FF.fl^'3"Nj"\5RQ #;ُ? I4!:&Ў:1_zQ7q|Z|A IT0]E_zGEi(~ն^DP̜S|~}w\rtQ^\{YP"*_Dm@>>~]D%NsDS),FGu׫MD-˲ dպnrbϖ3‰`rT $M =M@AZoY Li+2{tAGI3ZyHD2tޑ$"E$I5("C긏@ᓍi1x]HrJ|XZ+\<fai1Ic$FN ƙpE6#s2)I_1O2pc=FB6D!#HO%7!,dȘG$t'IS)8%vx8g4嫇W=>/nIN5q^ dHk PqFpOedWcJLI$!͓*Se*<C4L"\m3wx ca4eۘP'`ÑSܫLEq z6˓$a« 9~im {?!5@dTIɞ;.O)2+1*s#.~G p5L2+WPp{u9 i41v 9Ũ>ۈ<Ub?S3W_~J8Ji?Tߒ=V8 endstream endobj 18 0 obj << /Length 1502 /Filter /FlateDecode >> stream xYKo9 WhcaUuؤ[o{؉/)4c{؛4d$q(JH䄑=FP'5VP. Yuwsxx`Tdcz}yAH֐511Iv)NcruX}pF2Hr? 7rپ,z}27?˫b/wNU9uGxz ~A/"w&f[iXe.{J, ҷTϯ#Ri\VH9hEQ"]:)!D̃nY2*;dW9i 4 `28Wq$f<.*.#%HD$I5(`"Czw Ssa<10oFU@p^6-4cÉ!@eH**h#1ph75,+r0m$ʴIMzA{Jkå1 Yep"8k\R^!%І>I,oJi-ŗi5 //#= >p`Q^ܼꕚJOO%%#k &T ʰ&I5 \(D8#22GcJLIuHiQ@5*I$0i4S$J>fʈf9z# M)s|k5$Ȕp]=%4Oկ(v -ErQ}U?f7rه{/|57|#;+97*Ho2<0CNL1HH+FK1GeARL*TڼI jKrMFzG1rBe\Hj}ԑU⨝rgݺNvįJ&w!ղsyU Q> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203933Z) /ModDate (D:20121113203933Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<2B8715F584255A2FBA3F45D5C937B8EE> <2B8715F584255A2FBA3F45D5C937B8EE>] /Length 84 /Filter /FlateDecode >> stream xʹ0CQ`4MҀof? $KDj&8U$ɬmkL endstream endobj startxref 17518 %%EOF beamer/doc/beamerugthemeCopenhagen.pdf0000644000175000017500000005002112050430516017715 0ustar mohuramohura%PDF-1.5 % 14 0 obj << /Length 1474 /Filter /FlateDecode >> stream xXYo7~ׯtc$F6mlM3$JkYm q9Kf(.AG#=b+ݣF@'+ i)Sh٠ևhyɏJa\Dݏ{x88QĸXD6 6a@H3嘁V8Fs,DѱePv)&q$Z(,(XȁrmGbc\Tn Z꽹_|H1+cݧ X@\u lYg!0LN@m$Dz7*H-.B2Y#LZ+Y IHzFΈȼuӐL42-,r"'^rq́q7/O_X`䓽?qW:y&H;aR*W,Q-$$V9eyN(PټSG΅Ibb!gh|,\ZRV+r:~B0J:=:G)rIHQ;*gvk3%AOⱍE:XiUZEKCLpFc )[mJ ph>! C_PF?58\{$:P&ћgK8F @ 9>iVj]IwqY&!!Am v,yܝWs Қ9XyQ8bW PR Rb>i*/ k4Da*6ESMfw̋t\2caՎM֬ ^ *8=*R3}WT=_T3AoTCvQ0X%"C%qwN*2!si,VH(@6dUl&faO0:]^6u|^N**dz[i,{u- Ul}Oa^e݉aL bq-kv@HA ͻͿ׳.p2:?,z *֊x Q-ms3m3_6]_5t==+wʵ2l}>oYf믏вIeнTLAĂ cP> Χ. @?,VMi1w&V(1!m[M9I8Wcݢ"2Z$ lKZ]kp*WnpV@[>;`ms~jX[y  DpF)=Id3h\ yЭECE θ+J)p稤La0'@B22GF@ `n  !$Iqa ,U!a%bٴ=uvJj.=^c ns8Ovw2DHگ({[`rj4ЀV>A4m5&M/ endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 14.834 14.834] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 18 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 11 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 19 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 26 0 obj << /Length 2040 /Filter /FlateDecode >> stream xZYo9 ~cUbbn&ۇql'vEFh6iG#EIskk|H#+(liu-$,{rhyTI>nP!d4ܒA-;M0( v-DR鬔DgO >(G/@ T8#Q+y$Jnhxی.Px503㪶u/:.}g+``]r).j s԰pP{ Yu#sTi!=I?sfT{k |XLYl¥Md,i3Ok)m$2fOv;dob"?`3>*M|1;]L𥉝8.qs,8j*8oQ&haEʁVqq-t2 62̸;HCKV+<" J[W=@ĝ&1!DD)Si(ZZE=k;>-L"0 :Qis|<R .9Qc 9kTT F۳%omu)!,g<`!!z3)x&Y+ "0‡?CPL[D+[Y kvϰ~4\Y[Sl4!_6LWFg2!u!oZy^DI 1;i] &/O Z9$7ֆrC]I (Ӭ-~){/s?8[,rYXpIIaB'`֯Ww6*)U˼ =d'7[v{oN6 7$$zt9>5?۰՝]>->K endstream endobj 20 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 3.985] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 28 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 21 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 29 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 22 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 30 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 23 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 31 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 35 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 40 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203853Z) /ModDate (D:20121113203853Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 16 0 obj << /Type /ObjStm /N 22 /First 168 /Length 1568 /Filter /FlateDecode >> stream xYYoF~ׯ5܋q'iǕݦZ^l-Q%%%YR%J/4\;AJ(H@8 aDj,H TBԀL&@jҩS 5V)br!)PMHd@*Y*:# Ruog$>)'45MprV }+U{8ORwʐ2葾*԰x 8Gz"4ߠ(l&*&y67& #)}~C:bH36~z}CcAmp8&61g[qf<2]=x{͜KK7 uiv ʒt=̷Q/^͕N[Z&æH c aݸ5|N؉Gef7e掲(G6oEk3SMqΦrUJ]m`h֐a,6N*gw0VWT7/.~+-dV_o5H)>Rmu]T8]O%^,,|\Z\I*s~"OA Œ\3]- sL@g!T%zkrm?z\Upx玒e}h[:A4r󠍊 몕`isI"k{ǼLa Ɇ?b&ʘea6BmuM洅me0mLu$K. iPLx]੯U1m* G^o>'G{?m>AGփ'=Is2- 3ꢇ!rZ!6}d<'&-'[ I\On3|G xg/qr< =q4o wi +'Xb98ũ  k[?{lޕ8÷WÂWfb'׫@lj"qw>k#1B5SP;A:yBG"$.HXV endstream endobj 41 0 obj << /Type /XRef /Index [0 42] /Size 42 /W [1 2 1] /Root 39 0 R /Info 40 0 R /ID [<9CA7498C803D8C8E066F0F8118D672EA> <9CA7498C803D8C8E066F0F8118D672EA>] /Length 118 /Filter /FlateDecode >> stream x 0`G-SO:A.Vl .] l\ ^*PgFZA{}J'~M(8`Zlk߭OR/ef~7/ endstream endobj startxref 20129 %%EOF beamer/doc/beamerugcolorthemedolphin.pdf0000644000175000017500000004301712050430562020352 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1212 /Filter /FlateDecode >> stream xX_o6 ϧc̚[zܰ]a"y;>#j& C }~8 %Y_,.,2ʁ}DSW,/I"Vq ϗͺYw@?.ߓBR&) LWAj}l i(]-eHv5k|9qZ;LB8 *P9oߴ;۠a?g{Lԋ*E%5Y ;([z"C/`jQԁ`ҧjuPtj{F :Djtc>)]OzpiD~ ,|N7Rw;2;4V\ В{-pW2J-%q3β$|G#ep%K:Ё 2j8^C<[ᓉQh:1Xu,Or(f '‡-vRARC[H*FG8Bap:GȈ؂ǍC,ҸHf=k_uqC8o+VOFK2;aG'l9=J'u&>Ղìq6/_X`ɣ? ג"K`+=w$nH3Aƍq2P8$9 ."g\TF5 b:q#jH8pÕ QYNq8̌*R'w'0L2ˈf|:q3ўx0ױuE ^_w =D>>@uyIXbE{hpT]O9iI:"+1*I#6{c %sr,k,B*GؐRΖ+zؔz%[ h`T .eh4:h@~X.ЮF0U7 ap;na>@} ciijw B/, jn+С|~]CgW mdPr_2? z_NrҤ:v!z+ Ou_զvcyYC#,;h>4O;MJ„OT/eBCM.{ń_YoE^>[FrR{ǃHHO7?M$%iy7866 endstream endobj 18 0 obj << /Length 1541 /Filter /FlateDecode >> stream xYo9~#VW6[H.U]`! ̎c73`7L==O@L;ŃLyťrl9e׽OKObdz k?孍ԝ%Fޫ7J3+f#ń]/LPcU/ޱB6tXnjtX}\gid\jz~5]dKi[5c04FS@~Ivs4[DPŒws>AwsZ&B M^/KT@uaAՀ}e0UW^HkUVV!GH3\CQToYbԠf "[ 3S{a}c\DDj|&|к2`]y\)B Qe*)BQ9E"(hLO; Us3!c ]$I5y]-Sۙ]J_YJ'LQlI,|N 74>5B[6dIXޖBQO"N`= ? EÚذ{y&8FY ^t"L\ZQ9"He9RP8ty k,!?MƅV YRVeqмG~SdJ9fʘ})r΁;Drd̿Ř.Fhm?.h)6M"X[vβhį\QM/At: zq_>٬y|,Q lSSdlEXSVUmEB fR̳{J9|fo_Lzn<6NQcQ:jE'x8zq_Y3ʃGr./^kZ+Bd=~&iZ^qpK#N~Z,]pȪT嚅?q?"-#}!m?l_M3C{/ZK nwhhlsv-7Z ׮dE~D"b F^Ni^&KzgC?:  [>J[E#-(b'KH=ퟯVr7@`ʍt_ Q8R0+oNs(T&Hd`5y6PC!(CctN%Uʹ%z?}'&oy'J $`J{xRhY*ͽO[p׭ ejBzlQ69)vA\tc=ioar;&LfVd-@ ێǢ{?\!sTZ1G,t߇NTZU{F+yH r:zH\NNDsHf~((SQ,OςM0nѧ5jEO$ *(Oc].Pɓ,^HN@Zr~ĸP!М8S㿜B=Q endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203929Z) /ModDate (D:20121113203929Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<39BBE44890FC335D3B4B3498A81846CF> <39BBE44890FC335D3B4B3498A81846CF>] /Length 87 /Filter /FlateDecode >> stream x CA@ Ѓuxjvd =|w^@(QdP@43ZeǰڽH(-s47xI? endstream endobj startxref 17598 %%EOF beamer/doc/beamerugthemeMalmoe.pdf0000644000175000017500000004273512050430530017071 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1185 /Filter /FlateDecode >> stream xWKs6W(͔(4$f[T85)wE1{b{FX],@%"dF#6~dvtbXsX0e %}M΍2]5$`[pzG(M,0%v;g+@Í)Ҡ$5ү:K fjB drBN!L4xI}(Nn^X` ג"%=wn 3NUPe!X@Jb%P&,rJ+Eq^".#%90JHp;$F вC0/ "\):IP:&j(W;ľQS#5dؽ a\El,/Fn:}< \ۣNKsO$e쉻Axr7Qe"cWlUCGcK汯XtN 4pc%\gD' xy9WfS.C V,ѧi]u_wp9f9%$-4y= )K\mXo~|ov~]dTΫg~.[vx#}Rk<7rU{jX5]9])]oM`dOg+uS;X6)8v(emmov\U^xPUdߪ9QYyu#*xW:_de}խzU+ %).T.>A2pɘȼ"m:{J Ͼכm{+cy]O̘bL6MCۼF pb$d೨%%гI,6Hu$#<> stream xXKo9 WhcaUuؠ[Ini$N2_RIرm("?R$%F #{R{3"Nj"\RMUC[*HYR]fWqNFSȻM,orn`Zof؃0i{-.K ^a Ky&)wW\c7<3''\3oB3B(#s 8ΔTs$6g )9@M{8K(YbC1|zg )ͤ)s<_F™a&l?,PthK"ncXY3{'^Cs~i$r!d a@`} N,!j=X lFwI9ARVh8|O ŨKSnTKu{{5 }ƏGe:VE7Dǹ >ؠ'X]*#Paq( BZSСkϷ4R \gzrZQoB)XDl>+Wv>hX vaqa5ZѤn/Wj^6vZt3!qNAb8@Lh뛟EI}ؚ[!n?l up$\/XdH Edj?Zƙ7GgK%lԀҷP')pH"Fl>R.RaDďNSOűMt~"_|\jjzX:紎OF.p韭nWFrjLj?䃖S'PxFOVIkpŏ-iÝ&6>T1TNŠ Su)=-_T]%Dsۡieە cbR|Zu̅}jڊ(H hVSBDZv =e4J3CllSjmjv9?m:?:hܴ"/z3F8뙽܍U~,֊NV`Uok|uG˺fsPMGJ7N/FA"v;R> S ?;#;4GJkm1o%)x+Cbz0 x\ 1 ƖC JyJ8v*E)~ʬuP#1L~|6YI=A1۟aZi(1< endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203903Z) /ModDate (D:20121113203903Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1007 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoM7$E!AI-)(^HzAR_/$@*]2% "!)F}T>ɚT|s_J 8Su7:oj@Pu]Uke$zW X!R5 ⼆p8 W䕣 P\`q)'`M޾4'MhFCJ\X+*n`F>nSt&U4C\7e{x`*]losǫ90n#H.\J=BB͌ xl ](Ruz{o@pa(83֣y~sx͝FMPtY5VJD버=g~K%-=>#p1.0nc\Fc:_WpEG(  n1\cb妭Z?l֕|.g/Ur0TG?rh)L9~#> =2^BP]tDr: Qf+h1vŦۭ 1C Z=[n @U>Ew)[6뚯QFs*_v} 7W Cx4|i %C 쥂::&\EXŌԃ>zRgN'7'W 餬 endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 82 /Filter /FlateDecode >> stream xʻ 0a;I ك X,O:%H$RCѡ.vkI^JV}Y:_1; endstream endobj startxref 17553 %%EOF beamer/doc/beamerthemeexample.tex0000644000175000017500000000105312050430504016772 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerthemeexample.tex,v 161eaf4bc28c 2010/05/08 12:41:37 rivanvx $ \documentclass[hyperref={draft}]{beamer} \ifx\themename\undefined \def\themename{default} \fi \usetheme{\themename} \input{beamerthemeexamplebase} beamer/doc/beamerug-notes.tex0000644000175000017500000002405712050430504016066 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-notes.tex,v 97e5b36b376b 2012/08/12 16:59:13 joseph $ \section{Adding Notes for Yourself} A \emph{note} is text that is intended as a reminder to yourself of what you should say or should keep in mind when presenting a slide. Notes are usually printed out on paper, but with two-screen support they can also be shown on your laptop screen while the main presentation is shown on the projector. \subsection{Specifying Note Contents} To add a note to a slide or a frame, use the |\note| command. This command can be used both inside and outside frames, but it has quite different behaviors then: Inside frames, |\note| commands accumulate and append a single note page after the current slide; outside frames each |\note| directly inserts a single note page with the given parameter as contents. Using the |\note| command inside frames is usually preferably over using them outside, since only commands issued inside frames profit from the class option |onlyslideswithnotes|, see below. \lyxnote In \LyX, only the inside-frame |\note| command with the option |[item]| is available in the form of the NoteItem style. Inside a frame, the effect of |\note|\meta{text} is the following: When you use it somewhere inside the frame on a specific slide, a note page is created after the slide, containing the \meta{text}. Since you can add an overlay specification to the |\note| command, you can specify after which slide the note should be shown. If you use multiple |\note| commands on one slide, they ``accumulate'' and are all shown on the same note. To make the accumulation of notes more convenient, you can use the |\note| command with the option |[item]|. The notes added with this option are accumulated in an |enumerate| list that follows any text inserted using |\note|. The following example will produce one note page that follows the second slide and has two entries. \begin{verbatim} \begin{frame} \begin{itemize} \item<1-> Eggs \item<2-> Plants \note[item]<2>{Tell joke about plants.} \note[item]<2>{Make it short.} \item<3-> Animals \end{itemize} \end{frame} \end{verbatim} Outside frames, the command |\note| creates a single note page. It is ``independent'' of any usage of the |\note| commands inside the previous frame. If you say |\note| inside a frame and |\note| right after it, \emph{two} note pages are created. In the following, the syntax and effects of the |\note| command \emph{inside} frames are described: \begin{command}{\note\sarg{overlay specification}\oarg{options}\marg{note text}} Effects \emph{inside} frames: This command appends the \meta{note text} to the note that follows the current slide. Multiple uses of this command on a slide accumulate. If you do not specify an \meta{overlay specification}, the note will be added to \emph{all} slides of the current frame. This is often not what you want, so adding a specification like |<1>| is usually a good idea. The following \meta{options} may be given: \begin{itemize} \item \declare{|item|} causes the note to be put as an item in a list that is shown at the end of the note page. \end{itemize} \example|\note<2>{Do not talk longer than 2 minutes about this.}| \articlenote Notes are ignored in |article| mode. \lyxnote Use the NoteItem style to insert a note item. \end{command} Next, the syntax and effects of the |\note| command \emph{outside} frames are described: \begin{command}{\note\oarg{options}\marg{note text}} Outside frames, this command creates a note page. This command is \emph{not} affected by the option |notes=onlyframeswithnotes|, see below. The following \meta{options} may be given: \begin{itemize} \item \declare{|itemize|} will enclose the whole note page in an |itemize| environment. This is just a convenience. \item \declare{|enumerate|} will enclose the whole note page in an |enumerate| environment. \end{itemize} \example \begin{verbatim} \frame{some text} \note{Talk no more than 1 minute.} \note[enumerate] { \item Stress this first. \item Then this. } \end{verbatim} \articlenote Notes are ignored in |article| mode. \end{command} The following element dictates how the note pages are rendered: \begin{element}{note page}\yes\yes\yes This template is used to typeset a note page. The template should contain a mentioning of the insert |\insertnote|, which will contain the note text. To squeeze more onto note pages you might consider changing the size of the \beamer-font |note page| to something small. The default is |\small|. \begin{templateoptions} \itemoption{default}{} The default template shows the last slide in the upper right corner and some ``hints'' that should help you match a note page to the slide that is currently shown. \itemoption{compress}{} The option produces an output that is similar to the default, only more fits onto each note page at the price of legibility. \itemoption{plain}{} Just inserts the note text, no fancy hints. \end{templateoptions} The following two inserts are useful for note pages: \begin{itemize} \iteminsert{\insertnote} Inserts the text of the current note into the template. \iteminsert{\insertslideintonotes}\marg{magnification} Inserts a ``mini picture'' of the last slide into the current note. The slide will be scaled by the given magnification. \example |\insertslideintonotes{0.25}| This will give a mini slide whose width and height are one fourth of the usual size. \end{itemize} \end{element} \subsection{Specifying Contents for Multiple Notes} Sometimes you wish some text to be shown on every note or at least on every note in a long series of notes. To achieve this effect, you can use the following two commands: \begin{command}{\AtBeginNote\marg{text}} The \meta{text} will be inserted at the beginning of every note in the scope of the command. To stop the effect, either use |\AtBeginNote{}| or enclose the area in a \TeX\ group. It is advisable to add a |\par| command or an empty line at the end of the \meta{text} since otherwise any note text will directly follow the \meta{text} without a line break. \example \begin{verbatim} \section{My Section} \AtBeginNote{Finish this section by 14:35.\par} \begin{frame} ... \note{some note} \end{frame} \begin{frame} ... \note{some other note} \end{frame} \AtBeginNote{} \end{verbatim} \end{command} \begin{command}{\AtEndNote\marg{text}} This command behaves the same way as |\AtBeginNote|, except that the text is inserted at the end (bottom). You may wish to add a |\par| at the beginning of \meta{text}. \end{command} \subsection{Specifying Which Notes and Frames Are Shown} Since you normally do not wish the notes to be part of your presentation, you must explicitly say so in the preamble if notes should be included in your presentation. You can use the following \beamer\ options for this: \begin{beameroption}{hide notes}{} Notes are not shown. This is the default in a presentation. \end{beameroption} \begin{beameroption}{show notes}{} Include notes in the output file. Normal slides are also included and the note pages are interleaved with them. \end{beameroption} \begin{beameroption}{show notes on second screen}{|=|\meta{location}} \label{command-notesonsecondscreen} When this option is given, a two screen version of your talk is created, see Section~\ref{section-twoscreens} for further details. The second screen, which is displayed on the right by default, shows your notes. By specifying a different \meta{location}, you can also place the second screen on the |left|, |bottom|, or |top|. \example \begin{verbatim} \documentclass{beamer} \usepackage{pgfpages} \setbeameroption{show notes on second screen} \begin{document} \begin{frame} A frame. \note{This is shown on the right.} \end{frame} \end{document} \end{verbatim} In detail, the following happens: The presentation is typeset normally and shown on the main screen or, to be precise, on |pgfpages|'s logical page number zero. The second screen (logical screen number one) is initialized to be empty. Whenever a note page is to be typeset, either because a frame contained |\note| commands or because the frame was followed by a |\note| command, the note page is normally typeset. Then the note page is put on the second screen. Then the whole page is shipped out. (The exact details are bit more complex, but that is what happens, basically.) An important effect of this behavior is that a note page \emph{following} a frame is shown next to this frame. Normally, this is exactly what you want and expect. However, if there are multiple note pages for a single slide only the last one is shown, currently. This may change in the future, so do not rely on this effect. \example \begin{verbatim} \begin{frame} First frame. \end{frame} \note{This note is not shown at all (currently).} \note{This note is shown together with the first frame.} \begin{frame} Second frame. \note{This note is shown together with the second frame.} \end{frame} \begin{frame} No note text is shown for this frame. \end{frame} \end{verbatim} If you really need multiple note pages for a single slide, you will have to use something more complicated like this: \begin{verbatim} \begin{frame}<1-3> First frame. \note<1>{First page of notes for this frame.} \note<2>{Second page of notes for this frame.} \note<3>{Third page of notes for this frame.} \end{frame} \end{verbatim} \end{beameroption} \begin{beameroption}{show only notes}{} Include only the notes in the output file and suppresses all frames. This options is useful for printing them. If you specify this command, the |.aux| and |.toc| files are \emph{not} updated. So, if you add a section and re\TeX\ your presentation, this will not be reflected in the navigation bars (which you do not see anyway since only notes are output). \end{beameroption} beamer/doc/beamerug-interaction.tex0000644000175000017500000004044612050430504017255 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-interaction.tex,v ca2315a97e66 2010/07/12 17:10:04 rivanvx $ \section{Structuring a Presentation: The Interactive Global Structure} \label{section-nonlinear} \subsection{Adding Hyperlinks and Buttons} To create anticipated nonlinear jumps in your talk structure, you can add hyperlinks to your presentation. A hyperlink is a text (usually rendered as a button) that, when you click on it, jumps the presentation to some other slide. Creating such a button is a three-step process: \begin{enumerate} \item You specify a target using the command |\hypertarget| or (easier) the command |\label|. In some cases, see below, this step may be skipped. \item You render the button using |\beamerbutton| or a similar command. This will \emph{render} the button, but clicking it will not yet have any effect. \item You put the button inside a |\hyperlink| command. Now clicking it will jump to the target of the link. \end{enumerate} \begin{command}{\hypertarget\sarg{overlay specification}\marg{target name}\marg{text}} If the \meta{overlay specification} is present, the \meta{text} is the target for hyper jumps to \meta{target name} only on the specified slide. On all other slides, the text is shown normally. Note that you \emph{must} add an overlay specification to the |\hypertarget| command whenever you use it on frames that have multiple slides (otherwise |pdflatex| rightfully complains that you have defined the same target on different slides). \example \begin{verbatim} \begin{frame} \begin{itemize} \item<1-> First item. \item<2-> Second item. \item<3-> Third item. \end{itemize} \hyperlink{jumptosecond}{\beamergotobutton{Jump to second slide}} \hypertarget<2>{jumptosecond}{} \end{frame} \end{verbatim} \articlenote You must say |\usepackage[hyperref]{beamerarticle}| or |\usepackage{hyperref}| in your preamble to use this command in |article| mode. \end{command} The |\label| command creates a hypertarget as a side-effect and the |label=|\meta{name} option of the |\frame| command creates a label named \meta{name}|<|\meta{slide number}|>| for each slide of the frame as a side-effect. Thus the above example could be written more easily as: \begin{verbatim} \begin{frame}[label=threeitems] \begin{itemize} \item<1-> First item. \item<2-> Second item. \item<3-> Third item. \end{itemize} \hyperlink{threeitems<2>}{\beamergotobutton{Jump to second slide}} \end{frame} \end{verbatim} The following commands can be used to specify in an abstract way what a button will be used for. \begin{command}{\beamerbutton\marg{button text}} Draws a button with the given \meta{button text}. \example |\hyperlink{somewhere}{\beamerbutton{Go somewhere}}| \articlenote This command (and the following) just insert their argument in |article| mode. \begin{element}{button}\yes\yes\yes When the |\beamerbutton| command is called, this template is used to render the button. Inside the template you can use the command |\insertbuttontext| to insert the argument that was passed to |\beamerbutton|. \begin{templateoptions} \itemoption{default}{} Typesets the button with rounded corners. The fore- and background of the \beamer-color |button| are used and also the \beamer-font |button|. The border of the button gets the foreground of the \beamer-color |button border|. \end{templateoptions} The following inserts are useful for this element: \begin{itemize} \iteminsert{\insertbuttontext} inserts the text of the current button. Inside ``Goto-Buttons'' (see below) this text is prefixed by the insert |\insertgotosymbol| and similarly for skip and return buttons. \iteminsert{\insertgotosymbol} This text is inserted at the beginning of goto buttons. Redefine this command to change the symbol. \example |\renewcommand{\insertgotosymbol}{\somearrowcommand}| \iteminsert{\insertskipsymbol} This text is inserted at the beginning of skip buttons. \iteminsert{\insertreturnsymbol} This text is inserted at the beginning of return buttons. \end{itemize} \end{element} \begin{element}{button border}\no\yes\no The foreground of this color is used to render the border of buttons. \end{element} \end{command} \begin{command}{\beamergotobutton\marg{button text}} Draws a button with the given \meta{button text}. Before the text, a small symbol (usually a right-pointing arrow) is inserted that indicates that pressing this button will jump to another ``area'' of the presentation. \example |\hyperlink{detour}{\beamergotobutton{Go to detour}}| \end{command} \begin{command}{\beamerskipbutton\marg{button text}} The symbol drawn for this button is usually a double right arrow. Use this button if pressing it will skip over a well-defined part of your talk. \example \begin{verbatim} \frame{ \begin{theorem} ... \end{theorem} \begin{overprint} \onslide<1> \hfill\hyperlinkframestartnext{\beamerskipbutton{Skip proof}} \onslide<2> \begin{proof} ... \end{proof} \end{overprint} } \end{verbatim} \end{command} \begin{command}{\beamerreturnbutton\marg{button text}} The symbol drawn for this button is usually a left-pointing arrow. Use this button if pressing it will return from a detour. \example \begin{verbatim} \frame<1>[label=mytheorem] { \begin{theorem} ... \end{theorem} \begin{overprint} \onslide<1> \hfill\hyperlink{mytheorem<2>}{\beamergotobutton{Go to proof details}} \onslide<2> \begin{proof} ... \end{proof} \hfill\hyperlink{mytheorem<1>}{\beamerreturnbutton{Return}} \end{overprint} } \appendix \againframe<2>{mytheorem} \end{verbatim} \end{command} To make a button ``clickable'' you must place it in a command like |\hyperlink|. The command |\hyperlink| is a standard command of the |hyperref| package. The \beamer\ class defines a whole bunch of other hyperlink commands that you can also use. \begin{command}{\hyperlink\sarg{overlay specification}\marg{target name}\marg{link text}\sarg{overlay specification}} Only one \meta{overlay specification} may be given. The \meta{link text} is typeset in the usual way. If you click anywhere on this text, you will jump to the slide on which the |\hypertarget| command was used with the parameter \meta{target name}. If an \meta{overlay specification} is present, the hyperlink (including the \meta{link text}) is completely suppressed on the non-specified slides. \end{command} The following commands have a predefined target; otherwise they behave exactly like |\hyperlink|. In particular, they all also accept an overlay specification and they also accept it at the end, rather than at the beginning. \begin{command}{\hyperlinkslideprev\sarg{overlay specification}\marg{link text}} Clicking the text jumps one slide back. \end{command} \begin{command}{\hyperlinkslidenext\sarg{overlay specification}\marg{link text}} Clicking the text jumps one slide forward. \end{command} \begin{command}{\hyperlinkframestart\sarg{overlay specification}\marg{link text}} Clicking the text jumps to the first slide of the current frame. \end{command} \begin{command}{\hyperlinkframeend\sarg{overlay specification}\marg{link text}} Clicking the text jumps to the last slide of the current frame. \end{command} \begin{command}{\hyperlinkframestartnext\sarg{overlay specification}\marg{link text}} Clicking the text jumps to the first slide of the next frame. \end{command} \begin{command}{\hyperlinkframeendprev\sarg{overlay specification}\marg{link text}} Clicking the text jumps to the last slide of the previous frame. \end{command} The previous four command exist also with ``|frame|'' replaced by ``|subsection|'' everywhere, and also again with ``|frame|'' replaced by ``|section|''. \begin{command}{\hyperlinkpresentationstart\sarg{overlay specification}\marg{link text}} Clicking the text jumps to the first slide of the presentation. \end{command} \begin{command}{\hyperlinkpresentationend\sarg{overlay specification}\marg{link text}} Clicking the text jumps to the last slide of the presentation. This \emph{excludes} the appendix. \end{command} \begin{command}{\hyperlinkappendixstart\sarg{overlay specification}\marg{link text}} Clicking the text jumps to the first slide of the appendix. If there is no appendix, this will jump to the last slide of the document. \end{command} \begin{command}{\hyperlinkappendixend\sarg{overlay specification}\marg{link text}} Clicking the text jumps to the last slide of the appendix. \end{command} \begin{command}{\hyperlinkdocumentstart\sarg{overlay specification}\marg{link text}} Clicking the text jumps to the first slide of the presentation. \end{command} \begin{command}{\hyperlinkdocumentend\sarg{overlay specification}\marg{link text}} Clicking the text jumps to the last slide of the presentation or, if an appendix is present, to the last slide of the appendix. \end{command} \subsection{Repeating a Frame at a Later Point} Sometimes you may wish some slides of a frame to be shown in your main talk, but wish some ``supplementary'' slides of the frame to be shown only in the appendix. In this case, the |\againframe| command is useful. \begin{command}{\againframe\sarg{overlay specification}\opt{|[<|\meta{default overlay specification}|>]|}\oarg{options}\marg{name}} \beamernote Resumes a frame that was previously created using |\frame| with the option |label=|\meta{name}. You must have used this option, just placing a label inside a frame ``by hand'' is not enough. You can use this command to ``continue'' a frame that has been interrupted by another frame. The effect of this command is to call the |\frame| command with the given \meta{overlay specification}, \meta{default overlay specification} (if present), and \meta{options} (if present) and with the original frame's contents. \example \begin{verbatim} \frame<1-2>[label=myframe] { \begin{itemize} \item First subject. \item Second subject. \item Third subject. \end{itemize} } \frame { Some stuff explaining more on the second matter. } \againframe<3>{myframe} \end{verbatim} The effect of the above code is to create four slides. In the first two, the items 1 and~2 are highlighted. The third slide contains the text ``Some stuff explaining more on the second matter.'' The fourth slide is identical to the first two slides, except that the third point is now highlighted. \example \begin{verbatim} \frame<1>[label=Cantor] { \frametitle{Main Theorem} \begin{Theorem} $\alpha < 2^\alpha$ for all ordinals~$\alpha$. \end{Theorem} \begin{overprint} \onslide<1> \hyperlink{Cantor<2>}{\beamergotobutton{Proof details}} \onslide<2-> % this is only shown in the appendix, where this frame is resumed. \begin{proof} As shown by Cantor, ... \end{proof} \hfill\hyperlink{Cantor<1>}{\beamerreturnbutton{Return}} \end{overprint} } ... \appendix \againframe<2>{Cantor} \end{verbatim} In this example, the proof details are deferred to a slide in the appendix. Hyperlinks are setup, so that one can jump to the proof and go back. \articlenote This command is ignored in |article| mode. \lyxnote Use the style ``AgainFrame'' to insert an |\againframe| command. The \meta{label name} is the text on following the style name and is \emph{not} put in \TeX-mode. However, an overlay specification must be given in \TeX-mode and it must precede the label name. \end{command} \subsection{Adding Anticipated Zooming} \label{section-zooming} Anticipated zooming is necessary when you have a very complicated graphic that you are not willing to simplify since, indeed, all the complex details merit an explanation. In this case, use the command |\framezoom|. It allows you to specify that clicking on a certain area of a frame should zoom out this area. You can then explain the details. Clicking on the zoomed out picture will take you back to the original one. \begin{command}{\framezoom\ssarg{button overlay specification}\ssarg{zoomed overlay specification}\oarg{options}\\|(|\meta{upper left x}|,|\meta{upper left y}|)(|\meta{zoom area width}|,|\meta{zoom area depth}|)|} This command should be given somewhere at the beginning of a frame. When given, two different things will happen, depending on whether the \meta{button overlay specification} applies to the current slide of the frame or whether the \meta{zoomed overlay specification} applies. These overlay specifications should not overlap. If the \meta{button overlay specification} applies, a clickable area is created inside the frame. The size of this area is given by \meta{zoom area width} and \meta{zoom area depth}, which are two normal \TeX\ dimensions (like |1cm| or |20pt|). The upper left corner of this area is given by \meta{upper left x} and \meta{upper left y}, which are also \TeX\ dimensions. They are measures \emph{relative to the place where the first normal text of a frame would go}. Thus, the location |(0pt,0pt)| is at the beginning of the normal text (which excludes the headline and also the frame title). By default, the button is clickable, but it will not be indicated in any special way. You can draw a border around the button by using the following \meta{option}: \begin{itemize} \item \declare{|border|}\opt{|=|\meta{width in pixels}} will draw a border around the specified button area. The default width is 1 pixel. The color of this button is the |linkbordercolor| of |hyperref|. \beamer\ sets this color to a 50\% gray by default. To change this, you can use the command |\hypersetup{linkbordercolor={|\meta{red}| |\meta{green}| |\meta{blue}|}}|, where \meta{red}, \meta{green}, and \meta{blue} are values between 0 and 1. \end{itemize} When you press the button created in this way, the viewer application will hyperjump to the first of the frames specified by the \meta{zoomed overlay specification}. For the slides to which this overlay specification applies, the following happens: The exact same area as the one specified before is ``zoomed out'' to fill the whole normal text area of the frame. Everything else, including the sidebars, the headlines and footlines, and even the frame title retain their normal size. The zooming is performed in such a way that the whole specified area is completely shown. The aspect ratio is kept correct and the zoomed area will possibly show more than just the specified area if the aspect ratio of this area and the aspect ratio of the available text area do not agree. Behind the whole text area (which contains the zoomed area) a big invisible ``Back'' button is put. Thus clicking anywhere on the text area will jump back to the original (unzoomed) picture. You can specify several zoom areas for a single frame. In this case, you should specify different \meta{zoomed overlay specification}, but you can specify the same \meta{button overlay specification}. You cannot nest zoomings in the sense that you cannot have a zoom button on a slide that is in some \meta{zoomed overlay specification}. However, you can have overlapping and even nested \meta{button overlay specification}. When clicking on an area that belongs to several buttons, the one given last will ``win'' (it should hence be the smallest one). If you do not wish to have the frame title shown on a zoomed slide, you can add an overlay specification to the |\frametitle| command that simply suppresses the title for the slide. Also, by using the |plain| option, you can have the zoomed slide fill the whole page. \example A simple case \begin{verbatim} \begin{frame} \frametitle{A Complicated Picture} \framezoom<1><2>(0cm,0cm)(2cm,1.5cm) \framezoom<1><3>(1cm,3cm)(2cm,1.5cm) \framezoom<1><4>(3cm,2cm)(3cm,2cm) \pgfimage[height=8cm]{complicatedimagefilename} \end{frame} \end{verbatim} \example A more complicate case in which the zoomed parts completely fill the frames. \begin{verbatim} \begin{frame}<1>[label=zooms] \frametitle<1>{A Complicated Picture} \framezoom<1><2>[border](0cm,0cm)(2cm,1.5cm) \framezoom<1><3>[border](1cm,3cm)(2cm,1.5cm) \framezoom<1><4>[border](3cm,2cm)(3cm,2cm) \pgfimage[height=8cm]{complicatedimagefilename} \end{frame} \againframe<2->[plain]{zooms} \end{verbatim} \end{command} beamer/doc/beamerugthemeBergen.pdf0000644000175000017500000004321112050430514017051 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1189 /Filter /FlateDecode >> stream xXo6_G9~_OÆEh{h)J,̒Y^~wHɶ:K%8OwlF. #/&pN#./&@gDjATDAФ)MW)HsII QܩpXOB5l rD/s"dF8/if ɫ5 q@*򑠠B23RiDg #{F&oQʒ,췘2(?< OHi]#UpM^[O4 VrKvit0j\ VEss|b-Cq,'*pWc >nGxHOL??6j {'lDT^!GCiT:?'jXxy{|1'@?Il{7c7eČ$ Z392G9.2Zp1әiCD,ˤJ8sD qÜ24@r g}dfTqJNVIOoIQfᅩ;ô9>OS_F| ذ{G]QmS)]ȱӧjA#ܟˍ'm)ړQy7SRI:k8J J\| ؟X•9yڿ5^չ!E)y`.eB7|+2#8D11ׅ3Yoa19D)3-t\BEdqNO)fsa67ai\6l49WӲ_ߋfWL 606F\ce uX˺m6综-7 Z.fM?U\tlE]qUa~HA¸;ɀd%%{)呩:C0P|RKyLx㥟X!߯dӿyh@ð7> stream xNI_яX+w>^WD(޲yca﷪a<8vE2=]SU]wU#O]˧-FP'5VP. i&bmtߕrM?-4i.ItEZwʟ|V;qY|9彏t]`D9RQK% H?oJ4'H0 -T:+%ęF7r$u^!EQx#SQkq$հJ\nhx[ "Hm(ծ֛bCNhɞj>C^3uRr-C$I>Z y9jXpTĞf@-A8"GC*E= 5AV>_lAՐU ̧ ,DCifҴ9y n+_fj^2epo%DǪ7ا2.s&Sp5q"CŊ*cI:t 9L}?.,@tXk#cݽ3̡E_~W9Q;}!pzDCs M=<: WE )"hkUx[pb)}M?kWm{w$jx'ASTF A{k@>'?'d8y\?6]|m# rz6i?NpPFFleM3_b@>j֢۠A/wWI-r \fr[vI;(! (e2o?Z NN*npRSB%V9_>o&h&PǠ2dxr0W)`f 퀹lA Ͳ΂he]4TDN%zSF~䣽Pp>tmK2:=6iC%w>ꔍ oZ0"\BՅ!ؒ3>NUH^E|1)Ų_zoJAlTJA,})gS>S6q+Fz]( xh3xE_hmʝ5YͲ# 2[,wI*H 岙0r> stream xusu\6% CIHww)  13 CKw "!0t"4H/{w}u]Zbc5QpU!`8/$@ni` :y@[\66C _A-7th~I~qI5_$@rtp ~!^@0 u/=SW(A~03ao)߈/ 9O@7J)Ԁ` i?bumU@?p8PI>>-t| $C3e h0?usC|;3<ϔ7s"kGIC?(OR@n@#i a^d0_{-[8 0{epڶ@Q<bAq]bMtC]E֦r-;;,[aB(*΋EBIK[+-13MjU%^#&ąA<LZD~9ΏYN Cu =I2KXt󎆉k//IIlff{ Dp5vf%bȑv y$j'waSai|LW BE4ݥif>Op (m*}Kr?Pyib-]5 ͵CO,"ښzg)MZmy+u#5VׇQ-P!¼e /Xwg%H(Hِ)9i،cGV'VOq".zhoE% myueNEFxf7\/mvqКn\9'Rik'OgF薱e~Ge18&/}PWۙYkSli CB :GvmWTnl1=x!2\}rY$UB6hkW}Gz^FC?q9]`ta;=#6ILi$C7GWAH*qeˇغ񻗝UE رkgۂ# ^fNb-{'dCMrX/|x[Erk|%\ܚeys3#~kirQIl43n=x4LVRwp,R]ΠANO/'68.*XGk$ɝ&ƒR2)\q'YxY5U0u☩^+z%i ۨӕ|R$IBOzMVxoCG$P*+N_)nu ,J@Fsˑݢ).J㉗y n'Pj+K 3Ʌ岞)̇֟,_D,Gi: &K|˹nIS**]Τgim'm:+x9;~\T*F1Z%(pPT񕥡~6y- "cncGND9u8ȸMå[Jry* mE+ondacXJ;";6$e[hAC ^%w)tEf-phXU>j~dº'yfL{sI{Ӏߡcwb %B@CTA.?\~}k݊NPy!UFߓ]4ΐ*b%pW1S4'oQIsh5q۩9 _\PPKK`"k#H!% $MOb}Q,[U{%]M {8%MVh#h*'MĽ^7 &#"@ pU+EI]69*ՃPeU%tKV,h8.?ϊ f5LԑYrrgg⾗9; T 6ٙb4U/~inL枓`(abz? +/G+7GH )JўlNӖ'*ǝRZ7&p-43ܫ0nWh4Pk۾G4KqٛD{\,ps\5 Uܒuee0[H´tؼQA7uЈ*]Ƌ1lB:FZ_ħm*v\tM֥[!āB -eRgŜ^OsFjnl$}ј'LY;M: M',X/嘎hWG)Jo X#Hl~Lʷ51pc9tŊA[<„&L߈ckc~g5,Yuqb?yCD7RSĘBJf㚁BX4@xUІn]md`}Va?v"@4dS( }z$C;fƨ1|T( ΉHV~[<(R Ք|L=5R .uTU36a :ꭶ^Qyg_yP~oԌlt{󊢽t348L+>Rv$fUU [K$`+}I">b)Q~meWFA VxO\{WdH+ODiGLG!`4 71O_ ۸Ӂؠ ʙN7ߥƟӽb(k9j k"X6ĕ^̪.raUjNevh0?9v ɓ?U@Y6q'}LX}ӝ})Z[HNYB|̊F͓m*Qi[at}L?Ѩ/y4v1%] On4 yQ0n mnvcz[-;O pX!Q?( xhz,%۝c̨};ѽ3I sCw7m^&^њn`V%RWWbp#i Tܬ3d ;9u;\F}*L6\l g\ίI3_o/Ƶڱln%}WtˊX7ʱ{q|f^Ou^3k"l?ԭW: J VJ˴C$QX @PsoTf%@ml饴1+rٖOs>U^jꆇjs/KD\4,>ՎOi RijΘvQGπ@)֍_b̜Y ˘:n+z~%O?.=]̽ 5=wbj9I]\2(bs,刞3$ɟ4#r?fӉLȅ\ZTc׉ofGnPHSdVRVʦ|QwY.̺ӕ頊`pٴqgƖ* #ݬo8M@(Sd(`MgM1N! N/2g+V:ӫG|j -fBQGcD5]~`uIWR޾n"Q&8-%ŰNv5ų oiYi7U&2QJGH`Y2ʝ0Kޛo|YU?_Y*herȚQVQ;gOZQј9*p]O\k45Si HSz5E(+SW"bƑj R#ƬMД?6{ f aZ;QeMdck]K(k+7!W|ZD2>*qfJWBwxKxbd28&PW yJ4Q# qN5bP4~G9rC)ASY wE\h/^G}_,۔8Ѭ8aeqk"Z%um1HZ+8tJ 4lv{Ϸ1˳O1\ OY|$^J8+~5%& SR8 c}P\Z aI~tюapbL(_feH V(k>}A@:ʄ9ZX6]\/Mn>hpXNS5]>L' MKԻ-3!XxpB .QkbY*#[SR% *oTpi9_lG-Qi{4oG+9,/Ug\Ȩdi) T>ma#-EyL-.O@*p"ߎ /:M|G#YW[VUw=Ie;^5:/,9}"Gԣ 5 qXrm%óOٰF)ׁ:l˪¤Tp쓓_bQ}e HB"y#~G|z*ZOU&ޞ| íe)(n̙Ĉwpc ʪRԣ"^.R:(D(l@Y':#fj,9"%R,,!QlS: [0Ge(`H Hg.ѓQU#^χ̝#{.A(m]hZDمMʊm\cJ85}f<eՓ;+;B ]GQ׶3]aQ9b*V078s}~8\l-bRm7a^0iUâ=!\Bc@ڏlOYO۸FKp*ߓ?-*E{IE}\9N{XrVB{&ή}`b C9ԭ'Ec[9m҄Su5"v Gtp8=OyyM,_m1I53a<U )>\clFv\)_ʧ-1UČ1\-\fܾ1 g IJk?<Tt3b꺗V]0P}_b".]3Pt$1q煰q-$:TeE؍x sce!ECDe* &ꥼ;@%#P㨻(W3&"i=]B_PlW/1/2ayQ@^ң_cveLdaʛSОԯnwN9,攖IJNPFq _5yi9}{3jL,0g[6}ϝ𬐡M,,33owuP:5…Qkx~"KG:!pKwÎJl4e֧'q +j\>g:# &X[84P^j&`ZVl˱Q3|5եg(Z6hG*2J[d1:FwP9Fﲘ ?-Y#ޘl}%1nk> xDiUDEl2jS{{}i:m]*Y !S_THd%LG.N"SH}*v\M|1I #(ǝ h3^, D gۭ߲2E&cr[Qy: O9r[kX@-Kmǩ`BL׭SZoٮ 2I_$q:4*N,tl)KhdAFz[L~:3-3uabUqVlPX 읛 TԡLFH]t#l9UDԜ&9Sicw޵ӆUqj!T<صG*΀YDŽ_:nEa҈^T6HKdi%[/  %ڐy&i:_gʾ8%tpN<,Av[?|UOsVdkW.v^<ԭ{`!]\ UGx]f7;AO% v466mټaQ.~!Z1\BM1[ h vu\]/U(s*qU+ł;"ީBHvMȨUX~@ "F_Ld^QM-cAy)Z!ί]i|u2i3ӕ+|-xFK3XYNPߩUL[$)m Ay /47$Sj;h[F#rgȥ"onsSݏ_ R<Ǟv%ep55 L}܁AN=ӋX+5,;Q??z endstream endobj 25 0 obj << /Length1 1199 /Length2 4353 /Length3 0 /Length 5123 /Filter /FlateDecode >> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203851Z) /ModDate (D:20121113203851Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1022 /Filter /FlateDecode >> stream xVK6 W"KKWN$ rp1?fgח'iCȖ($ /  I8>BPnh _B?$!i A* \.ȺphKQ-γZguE‰uŸ^Us(O~Y!E(`8N"%Yel$6/Ek&D]2o_:5#pDTK29ٸK әWzqr>E.d /4֓W 65> 5z94 B<4 >-YhF΋Z]u^뇎f7" 0큒c}1X57֨ VJD버-g~5<+ΰzSj|_.-bhoGO~999GuT)P=,ٳR&emYדa$fqJP뵦OZM댃~M6D.--pO)KPWxז ]Cp  >>BŹn#bj8O=vW\&vem,^E6:9GiY՜G][M+oV[CZ <855E22B78B1359C446644BA527AB0415>] /Length 84 /Filter /FlateDecode >> stream xʹ0CQ`7@@ e2)mjáy 0(IP@t d^J̺V?Y:OE endstream endobj startxref 17723 %%EOF beamer/doc/beamerugthemeEastLansing.pdf0000644000175000017500000005120012050430522020053 0ustar mohuramohura%PDF-1.5 % 14 0 obj << /Length 1627 /Filter /FlateDecode >> stream xYYo7~ׯ[%>[@6Hd}h*X%Œ63ؕjaI H\3pʌ| HG^LΈ4:raȮ%K;Ra#0*}mrVy22;ƒ/һ4Ҕ"|JPmHNT3OFY\O rZ8PwMp 4FIRLitUh~:I2íp'G )"W$Ha@ .Px01 Vc " dPoGSY@]$#ER9>rqÔr5,8*r!a 7O82GH&Y=M]=h:3YpIO diZYZI`y-E/j^}e&zp"U߰c >穚Bxa`xdN$If gQFqLI)Hgp}D pþ{lII:)EBɩ'"X*Q[xm`;2T+%0[^Qxs6R4Ya8N *1O2vή}%p,Ք8 In$ c";׮^mc9̐+Vɋxnd=F&VL!@#)o'yI&R*PV XDU% r2,ldoQLѬ"^W7FO8Ȓ&t5q/_3n:|z/ Ad  ]wM|9h`OfiTg@>R ac'usDta%"RC$Bj8r]RSћϸp$#bnk#Av=kbC4BV=jJ[(UڍҲ̷-!WBCt3:Lz^T+-?^$U X#bv}OBxFK@gхZHVв^RhT\')V<#, T'HDIB4CnλX{S]NzmJ . owqx@*R<^x|MR6?Ugx!dߢE:P?\KCg0, ǦtuJ7O_nk| G/v޶RtRQgt ctTzk[?WA[윹ǽ,pC0~yuD; g' O @> 6ݍ endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 14.834 14.834] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 18 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 11 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 19 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 26 0 obj << /Length 2212 /Filter /FlateDecode >> stream xr_1o!+ǤbrTT?P (B;{wϵbi6UQwς/w3;Rw;3"Nj"\^٧҇ThH+=qDaa1;ƒd ?X aG!.QW;2ZATz/:* Rcz8T:+%ęF'\¿b;怒 V#+Q+q$0J\nhxۮ.@x0# #WSw9epJXU6$:K`p Tp\ P0eEEUd~C Qy~z850W$" =KWh ,XCk3huvL TpR`e^?b$QOk1?D+{n;$6J5q 39$y.J8#QedA") $BM¡d Fy>/\dHa3eN:NAIu&M!2|9~^ pal8;v}^(D1DD`tX> pþ܆IYe~p&[m!%xX&}'S0_ٸo[#D)uF"}? /kA>o"$ԪZߟ~DxAh~p endstream endobj 20 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 3.985] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 28 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 21 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 29 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 22 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 30 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 23 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 31 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 35 0 obj << /Length1 1166 /Length2 7454 /Length3 0 /Length 8226 /Filter /FlateDecode >> stream xuwUX\ٺ- xP4X\{E(!hpw %X-ء{}ws_9âQdZdg6Nv@`iQbٸ@^s zz-='B 2wC!O @8B@!^Χ5@(\;@=j g y. fYi.pK <`.3  / r@ O W=Gr Դj2V`?0:;Ä88`'ɚr`~jTb%u#I ˧<8; `k0ϑ\` HA 13r@-%<`?I?`s{6wyAO/N 3%s [:,@6Ow'd30ϿWOj{bp(+I)hsGIJBRqظxQ_:O) Py\Ap'o13?@ 1\?-i֐uSx C{s;= ?yvΖ_*[yAjP'7Nlrrz:?)%e P+0Jsտ?hK8I?ۿA w%R8Ȯ6Z܍ms 5F=:;R ɻr jöo* Cbe J#ɇQ:Fg8~!$Iڑ?)ԧ#5%6娊JNUW\>B3@dLΆFĔ+v|ٹ^Il^ߙ9 c r~N߶o;X "8F0V_`$Q.cᐐ*9[O2 b |gYTF,~E⢄&x45;82&Mg΁xyxxUB:/*!Uڰ률iڝ'c'(/rTgF͈Gͤ<295axƪVv] T)SΣ7\]8|KZGH QepҐK1TpF8vv(c0X7͞Q*<*y1[^ngvm揰z_e_vd2V. B~U C_>2D^@?rуj҈^Ws){[ 0p|&ƺի/zms^ۍFi[g/pI4lZ;<JLlg#m'*T.;xޫ q[b=|-6רK ՜k )!gcpA{ 7ssd:7Ox;#F왡ATy]smMG*e'L;R%1qAR|;1rd6~FAl}b؂-z57TvM~/4Sgl=K"cJڐ EVRrMKT)% ux6ƾ20jqb)=EDbjk%AaҫRy5ooNr}?p>9JvrIc fk=p7Kzx^64#6&ҜEk}A'YL\ ۺ s@W_J_eG&ުUFs5QxKҕOIa>M1A*[81nH>義% vZ5a@HRLg YZ:_3H2 6M\`4pԥx\vd_ hiLWcJ9hx޴ ]4 ܤl.-Њ.(!mł@;VQq 4x"MX\J'cx0IB5s3&, ڀp`1Giw*M 1GO͛и a$O&LHГ^R#WyHl4eM|5{1L-)j2+7Vr=~& yӅc Tb#r'( w ,`v*mgmG x-wSYE QJV1]lEE?;"˕*RHxT.eOk#*+5oWԝ?ްX~.cwd6C%AjM:`I56PK0mnGVڛEYϏৎ*rog՟ۆ/b%bήbnX%4pa5k<6eإx- ?h'`,KJ`pŧ~W Ŏ1Hu}sʢ ״e }rF[=Nuf>uRV9,Mzov#[h0oqԲ*%g86Sy]g -aζhJȁwqB5 kgwh/d 7Lo"E%ۤ8KjӂG+/ Zjy9&6Yg=WP! )׆A[ ׌Үy&igҷ!b*dk2y3E5vԸM-Dž4 yՅԮd Dcoh+0m=Ͱ&:NO?ߑk{E~;BJ@xXĢ,xH[3'_ArmrKi4]H]85Dr?p4iO5H2r' &&\`}2S>+Ź Su0{zT۠ ;$}ܖ5P8Gd} 'aOB%=ޝ8qgt?۬YTտ9 UD'AXD&|] ś$xgCE cYՕ7]?& \!r0 9ry, @毨C!y-HXqEoםB8l9#3wf0y:cGKTU]^aGO>icт3Sl,;Y﹥߼=bN_yLA=5/l,^:yHU!Z#W.MWtZ`NK[zGwjP1"3!%_d}v/2f|.Z#^WΗ[&$YCDLk`űc TgҞ>)Y>l!Մ@dW|E)Cu?+)$B;V u_0"?U J}7{P/+RiCRMRlأş'CFyx4 a?:7Pv/kd]\}{9Q)?)tF[y\fnA} nkߵ8Nc%[>RBӐ%Vb^mK/ݕ4reZ2J1̉8'y`G)ihi%$7_SD jl*Gyu^QD%̺reSj}h7i3K"nOا&l$|Q%y#YE*GBň.e_ޢWIՌF!2O1 ǣI'wT8&}n_%E}`ܷx\0\|Vs`9o⻣hỊ5udL m`ӝJ7\见!i)Dc%g1w3dlL&vDSD o֝)_I,u1Vʳq Nrl!ҴݧQ*&b)9ot_fn!%;=KlQldpK9OIHŒq۶/q ޙFRDy9N%y\B}ꂗ+DFDI^;mV̊AF&s9~f!ލ~txMwʚ-˰⮥Yvq_r@e /n/9:4w`_2\|HHRkMe8efl5W9mٗzI09C~~?KYEIŷfu[.*+"}9! NF__ b&=aU1MGGR:G7*ډ3%bѫyLZ-ed/P-}E;4*xbF54fKn+8e3ʯ2Vt3Ren :D-mY9AE&.;| q}`gTh2ھR'WŦy1X3cƌ#TC.鼣 CxLL9e?1%0Wm%b.Pp2F3@RϤfL ?J+ES HZ}i-]Wx .¡:E+T+6>?h|Wn4<)t4MV{/#4deB}AUye =dD_pT@'ܐC_g$Q Szp?HhS DlFjY-+J_7:;0C 2`PDX׸aյ2<i9t W],:!ZEVzX$z{bo(? ܕ8meX,`yf>ZuR=j:m*נ @N iljh5m"|M0ݶlyYcPwM\\'큏Vn$ Knofݑx*F<0o,MQ^ivZGJE1lGĺӽi+6ROs+<~^x p=p܎ x~x `'<"d'!(.LB@PiHPE}ITTn78ҸCJaxvJte@`,HV1sf`rhrWQadfu(_ٽlū5 l޺~P?,!ˏ~C6+i,RzI.7?F7MTncw_:mK%+ݰ_dGbY+:l)!?iu'ҜqNFG{p2'FY$SJw-}ж6ohΜ_:D5,<5ZKS!,_&_r M\v4 RaQYv6 wc%eb\:)$X%FmS)˽)]\<ڳk>FqItx`|D(^-3 '[Tpn[u^SPr$ )2p=K`K/B5=\GV]<ζ7lBܷBV{ |$Ě$kkTr}PeN s g`m 6rsْk"@_- Q䕸5LjmQl6ڥS(ϗLB|&tiJy|!JdpYNwLj7(^c>^ 0]4Y>Px e׽L6Z``u }Nr>BF%PO\q&v=5%q\b{(V295~@3]d6)nmzkh]|EκO?P<[/e5BTO^f3jVl2,ߕOYV:Uz9LyR:̙ ƫ""t$6! /QBeR HR#4@^873[^<\EC+eKuS^g=ज़%\tߋu(Dd.cؕ(CD0W}cO^J$:80Njvo|ؘ"5$y|>q97t\c'RUR%"'['iT6j}v5:m/ endstream endobj 37 0 obj << /Length1 1199 /Length2 4353 /Length3 0 /Length 5123 /Filter /FlateDecode >> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 40 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203856Z) /ModDate (D:20121113203856Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 16 0 obj << /Type /ObjStm /N 22 /First 168 /Length 1586 /Filter /FlateDecode >> stream xYmo6_q; (@Pi[N AqhGmܗݑ8{Ŋ/:w,$ ,I+%uAhiFցNJPd T' MIF8ELF;Ph%h؂6 I]!R4)#zZ-3PZ{^cç=\TC_I"LҤ@̮{$g5^ H*7 뽼o8r޵M 5CW ui^H?O53m Wi_g*Iߦ5͖f.fæ(gA}߮"]gɝ%L1XY*J '˾/%JwVY"MV",9i;@6YQcR[)IqAH(f|6,o=cVoͮ\ |P WM0'ݪ^ųSSѫN+.6w_ :X1o>fܕe!*B[9}(n7Do-gXKސE3_ۖбKސ!eȳo edq/@=@44$e7>h@O<.0a*ۛ JQĒm|?4-i{=Zm$lֵOؠ3۠~!tA{!%l>ND?]P'ܚqau%d-@~ ~~}Lu%hT?C|amkdJ|U.E0-N4lԪ8%,bϐ|_W@Ӯxʪ@.)HB)>Ru]U8fv/w%.Zg{%MW"; Ő\3] M01I'Y"/üo94]fzg4s0]J: ^qnYx<λ]iTkglsI"[ǼLa Ɏ?nk]XE4x[ٟö;lo9]Q6: BH5 |x،b(:XYIrxaƯY<ȫ__~y^Loe>;;8&4w#aR8VjN>i7|/w#+#)T_6>':t?ђGs|g x;|9t-z ӑi^Gx K,g8މ5Ws_-'EI) TXc`sWy"z괠)N{ˋ`w튂( Dbq;7{:s`:!t"ȓ+ƕr&HU Q=N G!8І0./2%,b l`e4߀3kE+t6iyM(zx>Ի=iQ  (gy'=|S6w58; [[V&F7,ٺi¬LS{j Chv2 ?ɮr܋S/\,*#"$I q endstream endobj 41 0 obj << /Type /XRef /Index [0 42] /Size 42 /W [1 2 1] /Root 39 0 R /Info 40 0 R /ID [ ] /Length 114 /Filter /FlateDecode >> stream xʻ0a)$#O3 AcPҲswҝ$Ѵ{+R@DBⳁg |?yԭGt}E Ώ}jjN8Yk endstream endobj startxref 20756 %%EOF beamer/doc/beamerug-solutions.tex0000644000175000017500000000565112050430504016774 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-solutions.tex,v 0eb40b9b455f 2010/05/31 13:25:47 rivanvx $ \section{Solution Templates} \label{section-solutions} In the subdirectories of the directory |beamer/solutions| you will find \emph{solution templates} in different languages. A solution template is a \TeX-text that ``solves'' a specific problem. Such a problem might be ``I need to create a 20 minute talk for a conference'' or ``I want to create a slide that introduces the next speaker'' or ``I want to create a table that is uncovered piecewise.'' For such a problem, a solution template consists of a mixture of a template and an example that can be used to solve this particular problem. Just copy the solution template file (or parts of it) and freely adjust them to your needs. The collecting of \beamer\ solution templates has only begun and currently there are only very few of them. We hope that in the future more solutions will become available and we would like to encourage users of the \beamer\ class to send us solutions they develop. We would also like to encourage users to help in translating solutions to languages other than English and German. If you have written a solution or a translation, please feel free to send it to us (make sure however, that it contains about the same amount of explanations and justifications as do the existing solutions). The following list of solution templates is sorted by the length of the talks for which they provide a template. As always, the solutions can be found in the directory |beamer/solutions|. \begin{solution}{short-talks/speaker\_introduction-ornate-2min} \begin{itemize} \item Introducing another speaker. \item Talk length is about 2min. \item Ornate style. \end{itemize} \beamernote \TeX-version available in languages |de|, |en|, and |fr|. \lyxnote \LyX-version available in languages |de| and |en|. \end{solution} \begin{solution}{generic-talks/generic-ornate-15min-45min} \begin{itemize} \item Generic solution template for talks on any subject. \item Talk length is between 15min and 45min. \item Ornate style. \end{itemize} \beamernote \TeX-version available in languages |de|, |en|, and |fr|. \lyxnote \LyX-version available in languages |de| and |en|. \end{solution} \begin{solution}{conference-talks/conference-ornate-20min} \begin{itemize} \item Talk at a conference/colloquium. \item Talk length is about 20 minutes. \item Ornate style. \end{itemize} \beamernote \TeX-version available in languages |de|, |en|, and |fr|. \lyxnote \LyX-version available in languages |de| and |en|. \end{solution} beamer/doc/beamerug-themes.tex0000644000175000017500000004401312050430504016215 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. \section{Themes} \subsection{Five Flavors of Themes} \emph{Themes} make it easy to change the appearance of a presentation. The \beamer\ class uses five different kinds of themes: \begin{description} \item[Presentation Themes] Conceptually, a presentation theme dictates for every single detail of a presentation what it looks like. Thus, choosing a particular presentation theme will setup for, say, the numbers in enumeration what color they have, what color their background has, what font is used to render them, whether a circle or ball or rectangle or whatever is drawn behind them, and so forth. Thus, when you choose a presentation theme, your presentation will look the way someone (the creator of the theme) thought that a presentation should look like. Presentation themes typically only choose a particular color theme, font theme, inner theme, and outer theme that go well together. \item[Color Themes] A color theme only dictates which colors are used in a presentation. If you have chosen a particular presentation theme and then choose a color theme, only the colors of your presentation will change. A color theme can specify colors in a very detailed way: For example, a color theme can specifically change the colors used to render, say, the border of a button, the background of a button, and the text on a button. \item[Font Themes] A font theme dictates which fonts or font attributes are used in a presentation. As for colors, the font of all text elements used in a presentation can be specified independently. \item[Inner Themes] An inner theme specifies how certain elements of a presentation are typeset. This includes all elements that are at the ``inside'' of the frame, that is, that are not part of the headline, footline, or sidebars. This includes all enumerations, itemize environments, block environments, theorem environments, or the table of contents. For example, an inner theme might specify that in an enumeration the number should be typeset without a dot and that a small circle should be shown behind it. The inner theme would \emph{not} specify what color should be used for the number or the circle (this is the job of the color theme) nor which font should be used (this is the job of the font theme). \item[Outer Themes] An outer theme specifies what the ``outside'' or ``border'' of the presentation slides should look like. It specifies whether there are head- and footlines, what is shown in them, whether there is a sidebar, where the logo goes, where the navigation symbols and bars go, and so on. It also specifies where the frametitle is put and how it is typeset. \end{description} The different themes reside in the five subdirectories |theme|, |color|, |font|, |inner|, and |outer| of the directory |beamer/themes|. Internally, a theme is stored as a normal style file. However, to use a theme, the following special commands should be used: \begin{command}{\usetheme\oarg{options}\marg{name list}} Installs the presentation theme named \meta{name}. Currently, the effect of this command is the same as saying |\usepackage| for the style file named |beamertheme|\meta{name}|.sty| for each \meta{name} in the \meta{name list}. \end{command} \begin{command}{\usecolortheme\oarg{options}\marg{name list}} Same as |\usetheme|, only for color themes. Color style files are named |beamercolortheme|\meta{name}|.sty|. \end{command} \begin{command}{\usefonttheme\oarg{options}\marg{name}} Same as |\usetheme|, only for font themes. Font style files are named |beamerfonttheme|\meta{name}|.sty|. \end{command} \begin{command}{\useinnertheme\oarg{options}\marg{name}} Same as |\usetheme|, only for inner themes. Inner style files are named |beamerinnertheme|\meta{name}|.sty|. \end{command} \begin{command}{\useoutertheme\oarg{options}\marg{name}} Same as |\usetheme|, only for outer themes. Outer style files are named |beameroutertheme|\meta{name}|.sty|. \end{command} If you do not use any of these commands, a sober \emph{default} theme is used for all of them. In the following, the presentation themes that come with the \beamer\ class are described. The element, layout, color, and font themes are presented in the following sections. \subsection{Presentation Themes without Navigation Bars} A presentation theme dictates for every single detail of a presentation what it looks like. Normally, having chosen a particular presentation theme, you do not need to specify anything else having to do with the appearance of your presentation---the creator of the theme should have taken care of that for you. However, you still \emph{can} change things afterward either by using a different color, font, element, or even layout theme; or by changing specific colors, fonts, or templates directly. When Till started naming the presentation themes, he soon ran out of ideas on how to call them. Instead of giving them more and more cumbersome names, he decided to switch to a different naming convention: Except for two special cases, all presentation themes are named after cities. These cities happen to be cities in which or near which there was a conference or workshop that he attended or that a co-author of his attended. All themes listed without author mentioned were developed by Till. If a theme has not been developped by us (that is, if someone else is to blame), this is indicated with the theme. We have sometimes slightly changed or ``corrected'' submitted themes, but we still list the original authors. \begin{themeexample}{default} As the name suggests, this theme is installed by default. It is a sober no-nonsense theme that makes minimal use of color or font variations. This theme is useful for all kinds of talks, except for very long talks. \end{themeexample} \begin{themeexample}[{\opt{|[headheight=|\meta{head height}|,footheight=|\meta{foot height}|]|}}]{boxes} For this theme, you can specify an arbitrary number of templates for the boxes in the headline and in the footline. You can add a template for another box by using the following commands. \begin{command}{\addheadbox\marg{beamer color}\marg{box template}} Each time this command is invoked, a new box is added to the head line, with the first added box being shown on the left. All boxes will have the same size. The \meta{beamer color} will be used to setup the foreground and background colors of the box. \example \begin{verbatim} \addheadbox{section in head/foot}{\tiny\quad 1. Box} \addheadbox{structure}{\tiny\quad 2. Box} \end{verbatim} A similar effect as the above commands can be achieved by directly installing a head template that contains two |beamercolorbox|es: \begin{verbatim} \setbeamertemplate{headline} {\leavevmode \begin{beamercolorbox}[width=.5\paperwidth]{section in head/foot} \tiny\quad 1. Box \end{beamercolorbox}% \begin{beamercolorbox}[width=.5\paperwidth]{structure} \tiny\quad 2. Box \end{beamercolorbox} } \end{verbatim} While being more complicated, the above commands offer more flexibility. \end{command} \begin{command}{\addfootbox\marg{beamer color}\marg{box template}} \example \begin{verbatim} \addfootbox{section in head/foot}{\tiny\quad 1. Box} \addfootbox{structure}{\tiny\quad 2. Box} \end{verbatim} \end{command} \end{themeexample} \begin{themeexample}[\oarg{options}]{Bergen} A theme based on the |inmargin| inner theme and the |rectangles| inner theme. Using this theme is not quite trivial since getting the spacing right can be trickier than with most other themes. Also, this theme goes badly with columns. You may wish to consult the remarks on the |inmargin| inner theme. Bergen is a town in Norway. It hosted \textsc{iwpec} 2004. \end{themeexample} \begin{themeexample}[\oarg{options}]{Boadilla} A theme giving much information in little space. The following \meta{options} may be given: \begin{itemize} \item \declare{|secheader|} causes a headline to be inserted showing the current section and subsection. By default, this headline is not shown. \end{itemize} \themeauthor Manuel Carro. Boadilla is a village in the vicinity of Madrid, hosting the University's Computer Science department. \end{themeexample} \begin{themeexample}[\oarg{options}]{Madrid} Like the |Boadilla| theme, except that stronger colors are used and that the itemize icons are not modified. The same \meta{options} as for the |Boadilla| theme may be given. \themeauthor Manuel Carro. Madrid is the capital of Spain. \end{themeexample} \begin{themeexample}{AnnArbor} Like |Boadilla|, but using the colors of the University of Michigan. \themeauthor Madhusudan Singh. The University of Michigan is located at Ann Arbor. \end{themeexample} \begin{themeexample}{CambridgeUS} Like |Boadilla|, but using the colors of MIT. \themeauthor Madhusudan Singh. \end{themeexample} \begin{themeexample}{EastLansing} Like |Boadilla|, but using the colors of Michigan State University. \themeauthor Alan Munn. Michigan State University is located in East Lansing. \end{themeexample} \begin{themeexample}{Pittsburgh} A sober theme. The right-flushed frame titles creates an interesting ``tension'' inside each frame. Pittsburgh is a town in the eastern USA. It hosted the second \textsc{recomb} workshop of \textsc{snp}s and haplotypes, 2004. \end{themeexample} \begin{themeexample}[\oarg{options}]{Rochester} A dominant theme without any navigational elements. It can be made less dominant by using a different color theme. The following \meta{options} may be given: \begin{itemize} \item \declare{|height=|\meta{dimension}} sets the height of the frame title bar. \end{itemize} Rochester is a town in upstate New York, USA. Till visited Rochester in 2001. \end{themeexample} \subsection{Presentation Themes with a Tree-Like Navigation Bar} \begin{themeexample}{Antibes} A dominant theme with a tree-like navigation at the top. The rectangular elements mirror the rectangular navigation at the top. The theme can be made less dominant by using a different color theme. Antibes is a town in the south of France. It hosted \textsc{stacs} 2002. \end{themeexample} \begin{themeexample}{JuanLesPins} A variation on the |Antibes| theme that has a much ``smoother'' appearance. It can be made less dominant by choosing a different color theme. Juan--Les--Pins is a cozy village near Antibes. It hosted \textsc{stacs} 2002. \end{themeexample} \begin{themeexample}{Montpellier} A sober theme giving basic navigational hints. The headline can be made more dominant by using a different color theme. Montpellier is in the south of France. It hosted \textsc{stacs} 2004. \end{themeexample} \subsection{Presentation Themes with a Table of Contents Sidebar} \begin{themeexample}[\oarg{options}]{Berkeley} A dominant theme. If the navigation bar is on the left, it dominates since it is seen first. The height of the frame title is fixed to two and a half lines, thus you should be careful with overly long titles. A logo will be put in the corner area. Rectangular areas dominate the layout. The theme can be made less dominant by using a different color theme. By default, the current entry of the table of contents in the sidebar will be highlighted by using a more vibrant color. A good alternative is to highlight the current entry by using a different color for the background of the current point. The color theme |sidebartab| installs the appropriate colors, so you just have to say \begin{verbatim} \usecolortheme{sidebartab} \end{verbatim} This color theme works with all themes that show a table of contents in the sidebar. This theme is useful for long talks like lectures that require a table of contents to be visible all the time. The following \meta{options} may be given: \begin{itemize} \item \declare{|hideallsubsections|} causes only sections to be shown in the sidebar. This is useful, if you need to save space. \item \declare{|hideothersubsections|} causes only the subsections of the current section to be shown. This is useful, if you need to save space. \item \declare{|left|} puts the sidebar on the left (default). \item \declare{|right|} puts the sidebar on the right. \item \declare{|width=|\meta{dimension}} sets the width of the sidebar. If set to zero, no sidebar is created. \end{itemize} Berkeley is on the western coast of the USA, near San Francisco. Till visited Berkeley for a year in 2004. \end{themeexample} \begin{themeexample}[\oarg{options}]{PaloAlto} A variation on the |Berkeley| theme with less dominance of rectangular areas. The same \meta{options} as for the |Berkeley| theme can be given. Palo Alto is also near San Francisco. It hosted the Bay Area Theory Workshop 2004. \end{themeexample} \begin{themeexample}[\oarg{options}]{Goettingen} A relatively sober theme useful for a longer talk that demands a sidebar with a full table of contents. The same \meta{options} as for the |Berkeley| theme can be given. G\"ottingen is a town in Germany. It hosted the 42nd Theorietag. \end{themeexample} \begin{themeexample}[\oarg{options}]{Marburg} A very dominant variation of the |Goettingen| theme. The same \meta{options} may be given. Marburg is a town in Germany. It hosted the 46th Theorietag. \end{themeexample} \begin{themeexample}[\oarg{options}]{Hannover} In this theme, the sidebar on the left is balanced by right-flushed frame titles. The following \meta{options} may be given: \begin{itemize} \item \declare{|hideallsubsections|} causes only sections to be shown in the sidebar. This is useful, if you need to save space. \item \declare{|hideothersubsections|} causes only the subsections of the current section to be shown. This is useful, if you need to save space. \item \declare{|width=|\meta{dimension}} sets the width of the sidebar. \end{itemize} Hannover is a town in Germany. It hosted the 48th Theorietag. \end{themeexample} \subsection{Presentation Themes with a Mini Frame Navigation} \begin{themeexample}[\oarg{options}]{Berlin} A dominant theme with strong colors and dominating rectangular areas. The head- and footlines give lots of information and leave little space for the actual slide contents. This theme is useful for conferences where the audience is not likely to know the title of the talk or who is presenting it. The theme can be made less dominant by using a different color theme. The following \meta{options} may be given: \begin{itemize} \item \declare{|compress|} causes the mini frames in the headline to use only a single line. This is useful for saving space. \end{itemize} Berlin is the capital of Germany. \end{themeexample} \begin{themeexample}[\oarg{options}]{Ilmenau} A variation on the |Berlin| theme. The same \meta{options} may be given. Ilmenau is a town in Germany. It hosted the 40th Theorietag. \end{themeexample} \begin{themeexample}{Dresden} A variation on the |Berlin| theme with a strong separation into navigational stuff at the top/bottom and a sober main text. The same \meta{options} may be given. Dresden is a town in Germany. It hosted STACS 2001. \end{themeexample} \begin{themeexample}{Darmstadt} A theme with a strong separation into a navigational upper part and an informational main part. By using a different color theme, this separation can be lessened. Darmstadt is a town in Germany. \end{themeexample} \begin{themeexample}{Frankfurt} A variation on the |Darmstadt| theme that is slightly less cluttered by leaving out the subsection information. Frankfurt is a town in Germany. \end{themeexample} \begin{themeexample}{Singapore} A not-too-sober theme with navigation that does not dominate. Singapore is located in south-eastern Asia. It hosted \textsc{cocoon} 2002. \end{themeexample} \begin{themeexample}{Szeged} A sober theme with a strong dominance of horizontal lines. Szeged is on the south border of Hungary. It hosted \textsc{dlt} 2003. \end{themeexample} \subsection{Presentation Themes with Section and Subsection Tables} \begin{themeexample}{Copenhagen} A not-quite-too-dominant theme. This theme gives compressed information about the current section and subsection at the top and about the title and the author at the bottom. No shadows are used, giving the presentation a ``flat'' look. The theme can be made less dominant by using a different color theme. Copenhagen is the capital of Denmark. It is connected to Malm\"o by the \O resund bridge. \end{themeexample} \begin{themeexample}{Luebeck} A variation on the |Copenhagen| theme. L\"ubeck is a town in nothern Germany. It hosted the 41st Theorietag. \end{themeexample} \begin{themeexample}{Malmoe} A more sober variation of the |Copenhagen| theme. Malm\"o is a town in southern Sweden. It hosted \textsc{fct} 2001. \end{themeexample} \begin{themeexample}{Warsaw} A dominant variation of the |Copenhagen| theme. Warsaw is the capital of Poland. It hosted \textsc{mfcs} 2002. \end{themeexample} \subsection{Presentation Themes Included For Compatibility} Earlier versions of \beamer\ included some further themes. These themes are still available for compatibility, though they are now implemented differently (they also mainly install appropriate color, font, inner, and outer themes). However, they may or may not honor color themes and they will not be supported in the future. The following list shows which of the new themes should be used instead of the old themes. (When switching, you may want to use the font theme |structurebold| with the option |onlysmall|.) \medskip \begin{tabular}{lp{13cm}} Old theme & Replacement options \\\hline none & Use |compatibility|. \\ |bars| & Try |Dresden| instead. \\ |classic| & Try |Singapore| instead. \\ |lined| & Try |Szeged| instead. \\ |plain| & Try none or |Pittsburgh| instead. \\ |sidebar| & Try |Goettingen| for the light version and |Marburg| for the dark version. \\ |shadow| & Try |Warsaw| instead. \\ |split| & Try |Malmoe| instead. \\ |tree| & Try |Montpellier| and, for the bars version, |Antibes| or |JuansLesPins|. \end{tabular} beamer/doc/beamerugouterthemeinfolines.pdf0000644000175000017500000004377212050430604020730 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1284 /Filter /FlateDecode >> stream xXKo6WV|?-]dE\EFvb!)l$6h8o E}ርtn0z:A\1lDL3LB ݌>.=vF Ek$~C"hG[bX fFVʭ r fI#X[M(9bDtBOnAۙ`Hǩr j@4ޡñQۼO0Xu(| ϟ@T[dt0IHHuP)GrÔ崛Tn"!b 7*cF%~q&XZ̬Ղ?aI霈 gCΙi4뉒`y_f $y{&F J/o8yI4Uɟӏɚk*uF-WAu;g0֋vޔm(m~E5ad%LWMVEl8%2p,~* 'g^#< 6QbP_0'd6բ묝Wͬ˵! WdXۢgZ VVXTn1wh!(]\fw~_MYx,o}(S̐a)HslO;AIȽcыbYcN{է$lwhE> stream xYKo7WV <@$HvOn8B-ٖ!j"Ij&9Kΐ9b^Gj2\xW3Fq"ĶNvkhf+sh{$~YՉb3}|$ hQ.x2ROY7GGskJ =G;@SY>kY*ptM6e>Eil6p,ms7`=c扇t}!ijŮV9"ݗ՘(37+)`PdFpZ,t7e_%b82b~7Sfa~Q*p|˳T׉4 lORb;~R{kIRv7GxSa _d"> stream xuwUX\ٺ- xP4X\{E(!hpw %X-ء{}ws_9âQdZdg6Nv@`iQbٸ@^s zz-='B 2wC!O @8B@!^Χ5@(\;@=j g y. fYi.pK <`.3  / r@ O W=Gr Դj2V`?0:;Ä88`'ɚr`~jTb%u#I ˧<8; `k0ϑ\` HA 13r@-%<`?I?`s{6wyAO/N 3%s [:,@6Ow'd30ϿWOj{bp(+I)hsGIJBRqظxQ_:O) Py\Ap'o13?@ 1\?-i֐uSx C{s;= ?yvΖ_*[yAjP'7Nlrrz:?)%e P+0Jsտ?hK8I?ۿA w%R8Ȯ6Z܍ms 5F=:;R ɻr jöo* Cbe J#ɇQ:Fg8~!$Iڑ?)ԧ#5%6娊JNUW\>B3@dLΆFĔ+v|ٹ^Il^ߙ9 c r~N߶o;X "8F0V_`$Q.cᐐ*9[O2 b |gYTF,~E⢄&x45;82&Mg΁xyxxUB:/*!Uڰ률iڝ'c'(/rTgF͈Gͤ<295axƪVv] T)SΣ7\]8|KZGH QepҐK1TpF8vv(c0X7͞Q*<*y1[^ngvm揰z_e_vd2V. B~U C_>2D^@?rуj҈^Ws){[ 0p|&ƺի/zms^ۍFi[g/pI4lZ;<JLlg#m'*T.;xޫ q[b=|-6רK ՜k )!gcpA{ 7ssd:7Ox;#F왡ATy]smMG*e'L;R%1qAR|;1rd6~FAl}b؂-z57TvM~/4Sgl=K"cJڐ EVRrMKT)% ux6ƾ20jqb)=EDbjk%AaҫRy5ooNr}?p>9JvrIc fk=p7Kzx^64#6&ҜEk}A'YL\ ۺ s@W_J_eG&ުUFs5QxKҕOIa>M1A*[81nH>義% vZ5a@HRLg YZ:_3H2 6M\`4pԥx\vd_ hiLWcJ9hx޴ ]4 ܤl.-Њ.(!mł@;VQq 4x"MX\J'cx0IB5s3&, ڀp`1Giw*M 1GO͛и a$O&LHГ^R#WyHl4eM|5{1L-)j2+7Vr=~& yӅc Tb#r'( w ,`v*mgmG x-wSYE QJV1]lEE?;"˕*RHxT.eOk#*+5oWԝ?ްX~.cwd6C%AjM:`I56PK0mnGVڛEYϏৎ*rog՟ۆ/b%bήbnX%4pa5k<6eإx- ?h'`,KJ`pŧ~W Ŏ1Hu}sʢ ״e }rF[=Nuf>uRV9,Mzov#[h0oqԲ*%g86Sy]g -aζhJȁwqB5 kgwh/d 7Lo"E%ۤ8KjӂG+/ Zjy9&6Yg=WP! )׆A[ ׌Үy&igҷ!b*dk2y3E5vԸM-Dž4 yՅԮd Dcoh+0m=Ͱ&:NO?ߑk{E~;BJ@xXĢ,xH[3'_ArmrKi4]H]85Dr?p4iO5H2r' &&\`}2S>+Ź Su0{zT۠ ;$}ܖ5P8Gd} 'aOB%=ޝ8qgt?۬YTտ9 UD'AXD&|] ś$xgCE cYՕ7]?& \!r0 9ry, @毨C!y-HXqEoםB8l9#3wf0y:cGKTU]^aGO>icт3Sl,;Y﹥߼=bN_yLA=5/l,^:yHU!Z#W.MWtZ`NK[zGwjP1"3!%_d}v/2f|.Z#^WΗ[&$YCDLk`űc TgҞ>)Y>l!Մ@dW|E)Cu?+)$B;V u_0"?U J}7{P/+RiCRMRlأş'CFyx4 a?:7Pv/kd]\}{9Q)?)tF[y\fnA} nkߵ8Nc%[>RBӐ%Vb^mK/ݕ4reZ2J1̉8'y`G)ihi%$7_SD jl*Gyu^QD%̺reSj}h7i3K"nOا&l$|Q%y#YE*GBň.e_ޢWIՌF!2O1 ǣI'wT8&}n_%E}`ܷx\0\|Vs`9o⻣hỊ5udL m`ӝJ7\见!i)Dc%g1w3dlL&vDSD o֝)_I,u1Vʳq Nrl!ҴݧQ*&b)9ot_fn!%;=KlQldpK9OIHŒq۶/q ޙFRDy9N%y\B}ꂗ+DFDI^;mV̊AF&s9~f!ލ~txMwʚ-˰⮥Yvq_r@e /n/9:4w`_2\|HHRkMe8efl5W9mٗzI09C~~?KYEIŷfu[.*+"}9! NF__ b&=aU1MGGR:G7*ډ3%bѫyLZ-ed/P-}E;4*xbF54fKn+8e3ʯ2Vt3Ren :D-mY9AE&.;| q}`gTh2ھR'WŦy1X3cƌ#TC.鼣 CxLL9e?1%0Wm%b.Pp2F3@RϤfL ?J+ES HZ}i-]Wx .¡:E+T+6>?h|Wn4<)t4MV{/#4deB}AUye =dD_pT@'ܐC_g$Q Szp?HhS DlFjY-+J_7:;0C 2`PDX׸aյ2<i9t W],:!ZEVzX$z{bo(? ܕ8meX,`yf>ZuR=j:m*נ @N iljh5m"|M0ݶlyYcPwM\\'큏Vn$ Knofݑx*F<0o,MQ^ivZGJE1lGĺӽi+6ROs+<~^x p=p܎ x~x `'<"d'!(.LB@PiHPE}ITTn78ҸCJaxvJte@`,HV1sf`rhrWQadfu(_ٽlū5 l޺~P?,!ˏ~C6+i,RzI.7?F7MTncw_:mK%+ݰ_dGbY+:l)!?iu'ҜqNFG{p2'FY$SJw-}ж6ohΜ_:D5,<5ZKS!,_&_r M\v4 RaQYv6 wc%eb\:)$X%FmS)˽)]\<ڳk>FqItx`|D(^-3 '[Tpn[u^SPr$ )2p=K`K/B5=\GV]<ζ7lBܷBV{ |$Ě$kkTr}PeN s g`m 6rsْk"@_- Q䕸5LjmQl6ڥS(ϗLB|&tiJy|!JdpYNwLj7(^c>^ 0]4Y>Px e׽L6Z``u }Nr>BF%PO\q&v=5%q\b{(V295~@3]d6)nmzkh]|EκO?P<[/e5BTO^f3jVl2,ߕOYV:Uz9LyR:̙ ƫ""t$6! /QBeR HR#4@^873[^<\EC+eKuS^g=ज़%\tߋu(Dd.cؕ(CD0W}cO^J$:80Njvo|ؘ"5$y|>q97t\c'RUR%"'['iT6j}v5:m/ endstream endobj 25 0 obj << /Length1 1199 /Length2 4353 /Length3 0 /Length 5123 /Filter /FlateDecode >> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203946Z) /ModDate (D:20121113203946Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1036 /Filter /FlateDecode >> stream xVKFWqW[nHb3 CLvVA 4`l궁eHAz|U_i!A_I#)(H/_HҁU =:lz>麴P%AOC$t^kuV:J@PuBH2@Ck(?Wi p 9/+Gg$@Y1ㅦhAT.RvyR}TqA}g\)qaL"[LtSq|/̚Hg2^eG3ľ2oz9LqF?' =x5cWSF7~ɅKAhFHy9EJY]Foo̻~# 0ǀszOb[35h 9JAǺ,a!{Q5P$F?mi3iRT>-]iJ#{Ao,ỶW 7\I^e}v׿ '? ݼ.'q:&m.WYZ@W3/4t:Yo%低*&t:8D_&.,yxx!p|cn5s2.7U+:BqLOS0K5ɸի c"ɖop2XgbeVBkdX3~"{o+O(=dۻS\XnoXvCt\i[Ҷy['S o.mȖI&TjG7qGxRdwoa L^B^%w lGɶ Q+[Cږ^>,Y(KmjϿ߰堟edq99Ew1YVdF=_ƾ۝?B=A"ch"<@o/J5$M2^PZJ_DŽ+[;ִ mޕS&wŅ03Iߣ endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<2E509E55F990938FD60824F60B377BFD> <2E509E55F990938FD60824F60B377BFD>] /Length 86 /Filter /FlateDecode >> stream xʱ D]ESS l,p/xvݡz 2DICѠ^ {Y$նNx?r endstream endobj startxref 18090 %%EOF beamer/doc/beamerugthemeBerkeley.pdf0000644000175000017500000004362312050430512017416 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1365 /Filter /FlateDecode >> stream xXKs6W(͔(iI$:==2mijID5Ϳxzؕc=c-.v z ) =y=_0mw0U).e]>>rWz.K̬RWuyT~?|*uUY6d;%f p@GIIQ1&aZ]mg1j&`E *unS~Tp)"τWcO5 76] n ;\ h'F2^WBBvFQ`j >c?ٽR}4:2fiTZvry A}`թ.D1k<>>*oHpq )-(XP Gs7uEUo[F/#a7i$ I:W3´i|bOD3\pщ|A |6t9BVޟMYɞ, N;<>'/=YZR}(w0vO,d~4hKY!rJ: ɱgMImC׺?F :ɖhî)i}zڤCmZ1ibh{#Z耱" DZ@%*pkť)n0=uu ɘ07hPK;_,OΗzuUqI fSx:ΖmsǍCY`bwױw݌=Y^D<&-z(*[] QW" ffnΚŤOTh F f~~HJ[iFCU)do-"^`5ϋf]D+ef7RV9qԶ}ڻ0t1`YG6#!5 zb/> stream xZKoI+hu$(%طl6&Z﷪0`D2tWWWW&\FX{^WiuRaŘ|}\zH,HqV vDKWa0~{F(֐P$\Q<9$Oξ@Xw2_ޑL*20\Wmqp}2tGk?flZ{GAݯ@DP9%_N.xcTcpro/Y[j,jz !~$Q v;.zx9+oNOA Œ׋,d99)}4l&gnzNsJ%Y;u!*ABZEf S$4>*G_>""Ian;92Heq:i/Y M~n~6ejlPܿCJe6*p pԀ]{uqRm"M(L"uᦶ8˯hX !dqb|NpiXY\3rsl+I- :ȂЮ:E T,~݀pT+slmRcrkTQ({LJ,<%ȽIi'tiROW77q+[xSj{X0\.e֊p+="?P0gLuv׋@ ہ8q=^ 0V=d+]^wjttx1>s(ÝwbMPo*|jyeIj0r ]9?K%oJNMPC}nPƳ @[0fU!G >/^~MÁРQ/{" G endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203848Z) /ModDate (D:20121113203848Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1007 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~novpti$shQ2` knXfyJJׇ?a3IOYMU뜃~Mav[oW <;Bw/趁#; Qf+lx !]kv]4]a]4fBU\ky<}|+2aV Jq7>ef]5hX ݷP}NȼݦMK@(%5 JpcMwzSnK;Bٜ\_' endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 85 /Filter /FlateDecode >> stream x DEh"41vdgի7=d #:0J$Y`? jX n%Jbl\/$ ~ endstream endobj startxref 17988 %%EOF beamer/doc/beamerugthemePaloAlto.pdf0000644000175000017500000005255212050430534017374 0ustar mohuramohura%PDF-1.5 % 17 0 obj << /Length 1767 /Filter /FlateDecode >> stream xnFأ }" XEmLB-)ȱ&gf20r2aCH[N&׀gDADXA0dӑ.C!$[H4R0 BX*Zu t쥐DZCP$\QZ2='M/Mw^v}5i$eR Ŀ6m {9n>Z,;O(mn/+u @zgA:~q'; Ѝ"}D(R8m<~^mo,J?1n={Qztұ$i4(qڂbntPf^Op{fX0(!r\כnMJa4e_3 M) KB=D>wt{DG}ޞ<(eT's'bxɭ'"i*Q[xm XBOAޣ`k ߌRM~A{]oz%ތx3ZN72V9`ƈ^Hr,lx:E4>$-9 Cqeحd쮕]0лT5w׌]z|kfI Ivp=TiC1w}́''mt թ҆\.l?[Xm7vm~;. >m7\-o;;`9[r%;w:zc-ז`k.Zyi2;.ն?ϛ[ζQ Ɵ o?Bu#B@ X Q8iaSP^&]0 ?Y.}9qs !plT!.c:k<,DnЩ(z]s7۰<uZb)g|nq`yW&uY,?%,%Û6_u1 j+S D^<~~+ Ѹi(#t.Xj*ҙݯL#iYc5Lp:j !!D#39K5y:ixzߋ-Nӕ$g4 endstream endobj 11 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 8 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 21 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 12 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 16 16] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 22 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 23 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 13 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 14.834 14.834] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 24 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 14 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 25 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 32 0 obj << /Length 2374 /Filter /FlateDecode >> stream x[IoϯQB4X䐗<B4Zfg߿*=ɲc)1a7X,kf0r0cÖzniuRaՂ|n}lKI{{V fDKW̡d歐DSo!'I"yrrF~;X-;aޏr;Iʤ"*t:_"ٯ뽋";ʸQr|Xf?R[  *`9u.g=y~Y -5GG:.<} sMIS;e?D=cڧO/e'We.r~n氤8pFDHXXY2_nll gTK>@ q`*@ęF:&CHKB[H2Ca ™Y$FR ^C:ÛUW萃JLCK>1Y)9tQh9-H*BB -<9jXبHY@XGO2/=i%Sp5"E)bfKO]1^ۤ)s<_F0<4_罟XYѡxagmμ2Ke1K4Fa܆:YY̼. Sx c*ѮPv!.*X~Tjq>)L7FPer<F7D_/BH&WE,eޛjxAڦxԘ'; ,\2o/˚I*',r=IGYXG3i0KvXp>{դ`K$g 3"4Z~(g 'wqZ#fXчӎA#{j m/Na[ͮ'0CXkq1@Ґ!4p&ڀ9h6P7c.Gn(ؐdEqn: f۴$`S6OKneY(a,p:8%<P=]4)XPn 3Sauv|pJ@(C@62d$Rxe*1E@?D<Ŀ~q`Iۄoon׋r<ِ+C*0ޔ#Ȇ|9{G#yʕ5@=@ңOr">{p&Y#q؃^CQdz^)\|/xf.+G \%Z)M}K]QgX3?RHZF.fu/b&>./YHHx2E}}t)#w?>hH0$[$IIaMGb^ՃP|XI.wx/e% C_Qg\QaTAōy>Lۇcx—-ʈ@l'8+S~\<Ͷ"/_XzÄ{v;\_W#sLTɱNG}u[SW۵ U ?cs~@<{?F%Ri~rP ;.6jHh #*&% &ZnN`g,y endstream endobj 26 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 3.985] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 34 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 27 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 35 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 28 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 36 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 29 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 37 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 41 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 46 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203906Z) /ModDate (D:20121113203906Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 19 0 obj << /Type /ObjStm /N 25 /First 191 /Length 1706 /Filter /FlateDecode >> stream xYms6 _bE\ٺYdn|P[$~JbwNҮۭqHP$@ d( PbZP)H6IAKPc5Dq- c`lA1Q0Nh)X>H& 9cB'v`UjA5Ti  Qyl#|ZLk?+uᩯy9z^<;,PPNi^H\D$̦ADKY޳*Λ`(fو{#!5IOY``fͧ:/vWAAPk8MGyTh ۊ:myú{n+#p]XiOӍ WsMQEy;mCjJj)CGϧʇHB^ypi{gS m2Y;L/r}~w.n_1/x*h+wh^HVtj!!Ft sS"WlF %\ @b솰:v^MvsI҄oZ긹5L>{g.,xrJc'zSJU>\rOJ#C*RB9}mvYҖg93NnڗSZc$_Y탦Sʎ)a^Q;4ö@mbS]ѵ9+xm1 תkfj:#7{lތ6q*+N[a2\mб*/L/#4ߒu[ Cu3W<7ㄙ5a[`MGS'z4i9GFa$-qq#m*2qkSG((sTNzI+f?XڋGF )0 ]aKIiv:TSjp6K.| P4TP1&٩,],/rIbCJiֺp& yKa^˷׶8^.q6P! ^DYxw 4*v]: x\˕hc8.|hx[ٟݶmm9]њLڸ%bńEG:>\M,LxQlNl#߼ۯ:˦/NxNٸa= Ϫ{ư('R/"|RJEOoKVc{J_m>z2zt'pNvQ&+,3|/%c <1ABA0BE7A04BE1172660960A8B485B33>] /Length 134 /Filter /FlateDecode >> stream xʽ@]TP~α[Mcg(z&gvSn%ki"8`uR@4^޶Q(,$8qoRQ^Z0~8v^G endstream endobj startxref 21482 %%EOF beamer/doc/beamerugthemeHannover.pdf0000644000175000017500000004363712050430524017444 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1359 /Filter /FlateDecode >> stream x]o6ݿ60qxܰhMazrpFIM C\>vN+!#ǤR _$~mdoɷ? E42&:&d~E~Ηնº]\ofߒBR&) b{Sڈa;+*;ʸ~_QmDPȜS|~uzu}䐐>LQ1, (lKIEg@a2$QB"vɷ1G$}H8C +f}@Ց3"14p3,MLr' rmρŗ,帗rDا:kMR?F\c7ɌGk P9`2ȼ/#)3$9OB ;dpNey &i_f-$XReӛw >K0i3̄ M)ee7Zgx%l/s9~]ȱjA.eP'S'$ KO1E@*1*c!.:cSOȅTpqiJeN5fV ({uj ? i03T1*p\`m4Q_V2r]4q]5vsu_Mi;qi`Ӈg*io΄1vLߋL4>`yN1E?T شݗn#fhWe~}uJnV̈́Vݪ-*XM! n6MB ,075^ʄS6x,x193ߠq\$!RB ZhYW TNi mڔdR`#X R%4q5#) kANz1K mW>6B Wհ;|8 EkQ ESoDgPgԊB*E/-7Bà>HM 8P~ϱqA 1  gwu|ڳr9qyl t endstream endobj 18 0 obj << /Length 1798 /Filter /FlateDecode >> stream xYKo7WhXǵ@4H-Ad[d5ȿ һd;& 3##FP'5VP. YSw#uyEVE9I P SA⟍›WxPDSo!sbc`grWº?qpseT2He`'>}\W\-(lA0sN!yF]{oApRckO:jִz9zS,FGW77[idqH@Y͗^{J/ _>kA]N _(gt9#9_$<>}>Yn@9ؖ(-Mp:5,*r/!߸#qd.MJwg_kjg&KudcH— ,dC3$ѓ$R 6Xf F/()V}w$~2L5q*Hf<2'\3oBgQF)x1%u#IHI4Sb $,aIGzU$J^f1eJ.ƼS;: p2 3aieq s=+O$+Ihi>E_!93<6ؓ_e֓g'IP󒒡'hch(\4EgLY=7f? Xt޲4B3&+=!r hql@*Ugc\x} `9cEQG)!5 D5pV}ĩ,ԉ`頊)ۛC^C]?8k6A뀽kdY5 fwJ fK[EP׃/ _ // _lŗ%d|6|i|麡/h8vL %clu5,֋cj /+ko4Z"B x+U*gn> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203859Z) /ModDate (D:20121113203859Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1008 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @=4lhI:mIc5xV?=A}OF>:&t-9 P5&K.tup/qg;;|qS0&mKhQ˸^ Wט-X`k,UV,ܴ5Xgcͺ*[@Gn<喉8o*,ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I90O endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<17C70E04D7633CB1DAB0AD81BAC9D0AD> <17C70E04D7633CB1DAB0AD81BAC9D0AD>] /Length 84 /Filter /FlateDecode >> stream xʹ0CQl7BS Q)of? $KDxM&q UIYmmsx7 % endstream endobj startxref 18001 %%EOF beamer/doc/beamerugthemeAnnArbor.pdf0000644000175000017500000005210312050430510017345 0ustar mohuramohura%PDF-1.5 % 15 0 obj << /Length 1621 /Filter /FlateDecode >> stream xY[sS7~[2u!+]}Z(DjwӮ.FF]RxprFIM C3r985Ē(Fh oI}z~CT=F6E {1Q?Nyގ4NT3OFY2] nȠς;N 1jeH*PLゞ Z9[ P8# kt$PJ\nh-v RmQK2g9e0KX Vz :Ku RPr[H*ډpU.D04aa" xOQ9R)/:C2{k |!k&Jdk'/0X3ii52Nl,v&k:Ͼ$NQ}+!,}8OI{`dK5qgƣrI5\(d8#LQednOǔYCjAYr1R{Q$I\LeJ23)Yˤ)s!D`q ɍ2X%<:N˔E"[OYzVYq%]+Oor6RNiJ5jq*[UF8ߑHS\q J펞сj̪Zdϳ]7)7ExCPi%Kz^⼉;~^DҕS$b}JR`V !EuIXЂ,0d%5ޢ^D44ǖᦣu}7A8Ğ 3vuLB:J&J").nKj/"̼&|RYYzc:HXzj0p{ֳI~d/B*C[OajQ55O.9NRog|o:IYyӗn7LItHDTYv6 ~PI Ya/T}]vˁ5Pv-`Ok돗=jcX-q`}gㅵ"ƷQix,| l,l?CԋpU b@Lir~A~_ֳQ#>U,n7j=ph_-Gcq!z^'XΗnZɦ5r6l!6ޯWVm6ZofG w@ F&ڹݻE:Az6ldyr6`b, [H@ ܪd|(6,fMw_'bOo?Rp5iym9k$po>>e|J8 DHشϗ]Np&Q~q~u;[(vF8֋m|v3M-6_ҰCBzkFNJxC1\@n :0Z4 :pρ{Yxx [ ,dcC:KK[AxyCY> QC]8ܾ5E`=U; 83GPW.mEլ=?{2lZCGXDу_09 endstream endobj 11 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 8 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 19 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 12 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 16 16] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 20 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 21 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 28 0 obj << /Length 2487 /Filter /FlateDecode >> stream x[Ys~篘T,eG%L\I,sy쒖Ӎ{]R+ER, h4f ڼkhs|@%q X6Bsbjqݬۃî,gO%UO>(XU~U'q@JO.$q5L-MX5c=q@ΪC-QbDX#DÁQ z^ Q@$P8mV )MN3!Ե@P2[D*c$04)vge~*mۍ1C`4H!}ҕ弮4ٶLI$+ gLje$ RY$0deOV~ QˤON˔ABɡ'"pVUbDl0Fy!K '좭`Jk'RXF$YFSd=kr73J.`sj17gχ'׳;L(RgߝU6Jʁ&ZV,2M77oZna*/Cסv~y^A-%A__bi:t=ckpf+C0LJWoi2? !5G[ \aoB&?-7j}2ux/Vojx,q2@U ჼ۲ 6KϞC)=r ˋeT"o6닇Ujb4үadϤm[&Cre\]] 8i+z;޻#iCIRG T!@rq|cw/!T 5yj;,-?R(mA9jm=1.F^4},Gau_qD5ՐB1|B:?i1,Ċ|~V=sBo]: ygW Ğ FY܋BwvD@'ژSkUlnJB^cz^m 5L @j(&{ZF ՄMwXzIn[Ԑy \#|j:b7\*B q݀v"b[v4&cAFŶQ|8 5c">ڱهNx-(**~@i8ݪ|x,c1kW NX1v^:u;#X{8uFOH/P3HY@#>m]1z Mg2Œ^E'ߞꏅNoIoeG-ȏF-x;b΋[7)yE-8Ki[2HS[~V< <tRNPhh v\+@LC{ Wfv7+u;[f/o^vhLClyWMQS`U:a ޸9:EExER՘qy5p 6K}ͯh jwO89>0%&52C^샢[NJ%$omoDOnoo6^b`-N+L"q|B>j>c6}y(w հ2Abp+aH(3L;Ľz{3 g`*z6LDD(bǮf w 48 N XPsN' dE7pp/4_~7#P5QbbNl8bO&+bar{ROD2ZLxb3Qe=8"Xz=U[]1CMU`ŋ/7o8=ODv_ :'lXFtCtlz|.ll>sӒyG ~ ?BvDc 3~ 㥵Ma3>ʭ#js3mϯw#89O306INac.,t) g,󯴹g/¥Bȹ—~DdjNa?v%Hs4Q”Q$@1^&aB+|KY Upa@1ệ߮.!(P+ߏ,a? z΁=!5ѻ7 6M Q8\#iL@vҪ6>m5/gr&߭LA\mO_ vPg`{ /]6 endstream endobj 22 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 3.985] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 30 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 23 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 31 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 24 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 32 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 25 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 33 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 37 0 obj << /Length1 1166 /Length2 7454 /Length3 0 /Length 8226 /Filter /FlateDecode >> stream xuwUX\ٺ- xP4X\{E(!hpw %X-ء{}ws_9âQdZdg6Nv@`iQbٸ@^s zz-='B 2wC!O @8B@!^Χ5@(\;@=j g y. fYi.pK <`.3  / r@ O W=Gr Դj2V`?0:;Ä88`'ɚr`~jTb%u#I ˧<8; `k0ϑ\` HA 13r@-%<`?I?`s{6wyAO/N 3%s [:,@6Ow'd30ϿWOj{bp(+I)hsGIJBRqظxQ_:O) Py\Ap'o13?@ 1\?-i֐uSx C{s;= ?yvΖ_*[yAjP'7Nlrrz:?)%e P+0Jsտ?hK8I?ۿA w%R8Ȯ6Z܍ms 5F=:;R ɻr jöo* Cbe J#ɇQ:Fg8~!$Iڑ?)ԧ#5%6娊JNUW\>B3@dLΆFĔ+v|ٹ^Il^ߙ9 c r~N߶o;X "8F0V_`$Q.cᐐ*9[O2 b |gYTF,~E⢄&x45;82&Mg΁xyxxUB:/*!Uڰ률iڝ'c'(/rTgF͈Gͤ<295axƪVv] T)SΣ7\]8|KZGH QepҐK1TpF8vv(c0X7͞Q*<*y1[^ngvm揰z_e_vd2V. B~U C_>2D^@?rуj҈^Ws){[ 0p|&ƺի/zms^ۍFi[g/pI4lZ;<JLlg#m'*T.;xޫ q[b=|-6רK ՜k )!gcpA{ 7ssd:7Ox;#F왡ATy]smMG*e'L;R%1qAR|;1rd6~FAl}b؂-z57TvM~/4Sgl=K"cJڐ EVRrMKT)% ux6ƾ20jqb)=EDbjk%AaҫRy5ooNr}?p>9JvrIc fk=p7Kzx^64#6&ҜEk}A'YL\ ۺ s@W_J_eG&ުUFs5QxKҕOIa>M1A*[81nH>義% vZ5a@HRLg YZ:_3H2 6M\`4pԥx\vd_ hiLWcJ9hx޴ ]4 ܤl.-Њ.(!mł@;VQq 4x"MX\J'cx0IB5s3&, ڀp`1Giw*M 1GO͛и a$O&LHГ^R#WyHl4eM|5{1L-)j2+7Vr=~& yӅc Tb#r'( w ,`v*mgmG x-wSYE QJV1]lEE?;"˕*RHxT.eOk#*+5oWԝ?ްX~.cwd6C%AjM:`I56PK0mnGVڛEYϏৎ*rog՟ۆ/b%bήbnX%4pa5k<6eإx- ?h'`,KJ`pŧ~W Ŏ1Hu}sʢ ״e }rF[=Nuf>uRV9,Mzov#[h0oqԲ*%g86Sy]g -aζhJȁwqB5 kgwh/d 7Lo"E%ۤ8KjӂG+/ Zjy9&6Yg=WP! )׆A[ ׌Үy&igҷ!b*dk2y3E5vԸM-Dž4 yՅԮd Dcoh+0m=Ͱ&:NO?ߑk{E~;BJ@xXĢ,xH[3'_ArmrKi4]H]85Dr?p4iO5H2r' &&\`}2S>+Ź Su0{zT۠ ;$}ܖ5P8Gd} 'aOB%=ޝ8qgt?۬YTտ9 UD'AXD&|] ś$xgCE cYՕ7]?& \!r0 9ry, @毨C!y-HXqEoםB8l9#3wf0y:cGKTU]^aGO>icт3Sl,;Y﹥߼=bN_yLA=5/l,^:yHU!Z#W.MWtZ`NK[zGwjP1"3!%_d}v/2f|.Z#^WΗ[&$YCDLk`űc TgҞ>)Y>l!Մ@dW|E)Cu?+)$B;V u_0"?U J}7{P/+RiCRMRlأş'CFyx4 a?:7Pv/kd]\}{9Q)?)tF[y\fnA} nkߵ8Nc%[>RBӐ%Vb^mK/ݕ4reZ2J1̉8'y`G)ihi%$7_SD jl*Gyu^QD%̺reSj}h7i3K"nOا&l$|Q%y#YE*GBň.e_ޢWIՌF!2O1 ǣI'wT8&}n_%E}`ܷx\0\|Vs`9o⻣hỊ5udL m`ӝJ7\见!i)Dc%g1w3dlL&vDSD o֝)_I,u1Vʳq Nrl!ҴݧQ*&b)9ot_fn!%;=KlQldpK9OIHŒq۶/q ޙFRDy9N%y\B}ꂗ+DFDI^;mV̊AF&s9~f!ލ~txMwʚ-˰⮥Yvq_r@e /n/9:4w`_2\|HHRkMe8efl5W9mٗzI09C~~?KYEIŷfu[.*+"}9! NF__ b&=aU1MGGR:G7*ډ3%bѫyLZ-ed/P-}E;4*xbF54fKn+8e3ʯ2Vt3Ren :D-mY9AE&.;| q}`gTh2ھR'WŦy1X3cƌ#TC.鼣 CxLL9e?1%0Wm%b.Pp2F3@RϤfL ?J+ES HZ}i-]Wx .¡:E+T+6>?h|Wn4<)t4MV{/#4deB}AUye =dD_pT@'ܐC_g$Q Szp?HhS DlFjY-+J_7:;0C 2`PDX׸aյ2<i9t W],:!ZEVzX$z{bo(? ܕ8meX,`yf>ZuR=j:m*נ @N iljh5m"|M0ݶlyYcPwM\\'큏Vn$ Knofݑx*F<0o,MQ^ivZGJE1lGĺӽi+6ROs+<~^x p=p܎ x~x `'<"d'!(.LB@PiHPE}ITTn78ҸCJaxvJte@`,HV1sf`rhrWQadfu(_ٽlū5 l޺~P?,!ˏ~C6+i,RzI.7?F7MTncw_:mK%+ݰ_dGbY+:l)!?iu'ҜqNFG{p2'FY$SJw-}ж6ohΜ_:D5,<5ZKS!,_&_r M\v4 RaQYv6 wc%eb\:)$X%FmS)˽)]\<ڳk>FqItx`|D(^-3 '[Tpn[u^SPr$ )2p=K`K/B5=\GV]<ζ7lBܷBV{ |$Ě$kkTr}PeN s g`m 6rsْk"@_- Q䕸5LjmQl6ڥS(ϗLB|&tiJy|!JdpYNwLj7(^c>^ 0]4Y>Px e׽L6Z``u }Nr>BF%PO\q&v=5%q\b{(V295~@3]d6)nmzkh]|EκO?P<[/e5BTO^f3jVl2,ߕOYV:Uz9LyR:̙ ƫ""t$6! /QBeR HR#4@^873[^<\EC+eKuS^g=ज़%\tߋu(Dd.cؕ(CD0W}cO^J$:80Njvo|ؘ"5$y|>q97t\c'RUR%"'['iT6j}v5:m/ endstream endobj 39 0 obj << /Length1 1199 /Length2 4353 /Length3 0 /Length 5123 /Filter /FlateDecode >> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 42 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203846Z) /ModDate (D:20121113203846Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 17 0 obj << /Type /ObjStm /N 23 /First 175 /Length 1578 /Filter /FlateDecode >> stream xYnF}Wcšpy nǰܦZZIl%Q!wfID&(b9ᒒH%>FB$HM 4MzVbV4J 'CR(n"Hd5 4)("`А00 o$%Ew&NBu6,ڜw׶' !EՔ4^Or8<lQgd 0%A9'rihFi֚]̾O uqLؿRrh{MAKՊuYҬ٤[$9V3шV_$&ڎAf(pdie hgy>\h[iO%G`Ik]gQE> jx{kFy'lP..XWd]8ŷcv oA=YG~Ԯ0(WۢلNV|TK*RǛlP9t{Qu_)ka}(yp+nF[}>wo'wrM/lF2ϚsMrH0MSKBi2RfGjC>-hC)P"NW,(J>w_>Ҹ"WV{jkﬤ!&A5M-IZ_?HW7%VMt`Ovc#:Hm(hڑrAT/~Sw٬OU#7zV澿}/^Pbh.5~vGL}گO~k^|tПf{hϗF[!c~-K! ~̇;54D!'Z$w*y6 t灒}}e<^4Κ7bA9ZY>GǺ,a b?h~UG[M2t+?hM՜К˶%b)w',È2W\)l͒ife帎4O~HcrJ{ ThصN.?RCq<&auy@I"%`dA!4T9F0θcyoۤW si[SQ}2GW#zd =Bm9pQ _/"]ikW:hSi*g-sB<:!S] endstream endobj 43 0 obj << /Type /XRef /Index [0 44] /Size 44 /W [1 2 1] /Root 41 0 R /Info 42 0 R /ID [<9D8FEAC82C8BEF42D48DE090642A4CF6> <9D8FEAC82C8BEF42D48DE090642A4CF6>] /Length 120 /Filter /FlateDecode >> stream x@a* .PGg8% e؃gǂo(s"W*N0 LP 91y0Tދ/Aܥ>7>?_ endstream endobj startxref 21201 %%EOF beamer/doc/beamerugthemeLuebeck.pdf0000644000175000017500000004342112050430526017227 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1268 /Filter /FlateDecode >> stream xW[o6~ L [&SXX$'~HʲIy.߹KDɄWl間 a%baZWbqCWPh}ŕJrUa SAF[b0T649t TnD_h0SXa5cn4!J|t y ' s$(,W(XʁrkGxhx1hu_Z>aH1+cSjn ؀HV E Ǭ7RC$0lNxGM$DlǍC$HLzVOj?, vjAC㟰 d6FD捋!L42XDNp}m3><{a}&z^.ر!C,(Lz~A? 8<{$:P!_}a0F @ b~>MOۗt֯o\"LBBށʽKc ,y3Absu@(q0k*C) H`.F BxWHBdլ`Ln~jӅ͇rZ7jYAqMF[ZpK kvUOz񋰴Ռ闰^V\ͶX@ :seؠ?WytU8h{<^BcH$ s`gKuLj]9/e, < ߁?jr2US|Ytt۶ ]8w-ksۦע-b63(S̐W(-u)>@DŽIϲR13OsJeXT.Vdb[luY(1C|P~rS^yX P S7AWKBC"} Յes#jj]5;&KrT1òӿ)=|١ wãzZz\!wzTXi x|4#?D endstream endobj 18 0 obj << /Length 1743 /Filter /FlateDecode >> stream xYKS9+tڲUIjSTܒko*~4311 aH-~j$=bzؼ=:#& ʅ! vi}-$[$ʡ\&ՏSȻMDHAP:.A)eRO6ű]OE0ǣT.U낸F3c&ت.@*i(I}SXp藶t?Ϗ^5 yɰp ct\]/O/#+R6}}^ +4lUqyQ-\|;S{5t~5YLf\0#v>.N\Ogd87Fb,(7S./gޖC\-'A_Ѽ6dp,N\Lƫp\b鍅86YQ_)W -wDG55B𣅎kjm3.WY|,:RЎb[-fIʠKVC(a@pI=ce30t5M*@dzPh]r- 8iޅį봲yeu{mhUF3rfPp9<.Ol`vͮ-6r [lZY4ƉGuA9/.I|_V ~ڄWL)u^B ~])%]4\,Hz* {VNlIYf9Gm"Ƨq9J4;:s:3pBj_S-mGOEzq )q*z׌5(`70Ej'ŠZ_MUOgF?2nAwmF\,Gz/Ų{eȽ1oXXhН}aRS ųF\]YKj[+?]-a@D4B~,kYקC1CnΫ׫fz9Qw &>7ST2| endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203902Z) /ModDate (D:20121113203902Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9l endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<480700C9451A75EF8F5DF57233CE013C> <480700C9451A75EF8F5DF57233CE013C>] /Length 87 /Filter /FlateDecode >> stream x CA@ =X xjvd =|w^@(QdP@4e2c8^d(-s4n7xT endstream endobj startxref 17856 %%EOF beamer/doc/beamerug-installation.tex0000644000175000017500000001724612050430504017441 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-installation.tex,v ca2315a97e66 2010/07/12 17:10:04 rivanvx $ \section{Installation} \label{section-installation} There are different ways of installing the \beamer\ class, depending on your installation and needs. When installing the class, you may have to install some other packages as well as described below. Before installing, you may wish to review the licenses under which the class is distributed, see Section~\ref{section-license}. Fortunately, most likely your system will already have \beamer\ preinstalled, so you can skip this section. \subsection{Versions and Dependencies} This documentation is part of version \beamerugversion\ of the \beamer\ class. \beamer\ needs a reasonably recent version of several standard packages to run and also the following versions of two special packages (later versions should work, but not necessarily): \begin{itemize} \item |pgf.sty| version \beamerugpgfversion, \item |xcolor.sty| version \beamerugxcolorversion. \end{itemize} If you use |pdflatex| or |lyx|, which are optional, you need \begin{itemize} \item |lyx| version 1.3.3. Other versions might work. \item |pdflatex| version 0.14 or higher. Earlier versions do not work. \end{itemize} \subsection{Installation of Pre-bundled Packages} We do not create or manage pre-bundled packages of \beamer, but, fortunately, other nice people do. We cannot give detailed instructions on how to install these packages, since we do not manage them, but we \emph{can} tell you were to find them and we can tell you what these nice people told us on how to install them. If you have a problem with installing, you might wish to have a look at the following first. \subsubsection{\TeX\ Live and Mac\TeX} In \TeX\ Live, use the |tlmgr| tool to install the packages called |beamer|, |pgf|, and |xcolor|. If you have a fairly recent version of \TeX\ Live, and you have done full installation, \beamer\ is included. \subsubsection{MiK\TeX\ and pro\TeX t} For MiK\TeX\ and pro\TeX t, use the update wizard or package manager to install the (latest versions of the) packages called |beamer|, |pgf|, and |xcolor|. \subsubsection{Debian and Ubuntu} The command ``|aptitude install latex-beamer|'' should do the trick. If necessary, the packages |pgf| and |latex-xcolor| will be automatically installed. Sit back and relax. In detail, the following packages are installed: \begin{verbatim} http://packages.debian.org/latex-beamer http://packages.debian.org/pgf http://packages.debian.org/latex-xcolor \end{verbatim} Debian 5.0 ``lenny'' includes \TeX\ Live 2007, and version 6.0 ``squeeze'' will include \TeX\ Live 2009. This also allows you to manually install newer versions of \beamer\ (into your local directory, see below) without having to update any other \LaTeX\ packages. Ubuntu 8.04, 9.04 and 9.10 include \TeX\ Live 2007, and version 10.04 includes \TeX\ Live 2009. \subsubsection{Fedora} Fedora 9, 10, 11, 12 and 13 include \TeX\ Live 2007, which includes \beamer. It can be installed by running the command ``|yum install texlive-texmf-latex|''. As with Debian, this allows you to manually install newer versions of \beamer\ into your local directory (explained below). Jindrich Novy provides \TeX\ Live 2010 |rpm| packages for Fedora 12 and 13, at \begin{verbatim} http://fedoraproject.org/wiki/Features/TeXLive \end{verbatim} Fedora 14 will contain \TeX\ Live 2010 once it's released. \subsection{Installation in a texmf Tree} If, for whatever reason, you do not wish to use a prebundled package, the ``right'' way to install \beamer\ is to put it in a so-called |texmf| tree. In the following, we explain how to do this. Obtain the latest source version (ending |.tar.gz| or |.zip|) of the \beamer\ package from \begin{verbatim} http://bitbucket.org/rivanvx/beamer \end{verbatim} (most likely, you have already done this). Next, you also need the \textsc{pgf} package and the \textsc{xcolor} packages, which you need to install separately (see their installation instructions). The package contains a bunch of files; |beamer.cls| is one of these files and happens to be the most important one. You now need to put these files in an appropriate |texmf| tree. When you ask \TeX\ to use a certain class or package, it usually looks for the necessary files in so-called |texmf| trees. These trees are simply huge directories that contain these files. By default, \TeX\ looks for files in three different |texmf| trees: \begin{itemize} \item The root |texmf| tree, which is usually located at |/usr/share/texmf/|, |/usr/local/texlive/texmf/|, |c:\texmf\|, or\\ |c:\texlive\texmf\|. \item The local |texmf| tree, which is usually located at |/usr/local/share/texmf/|, |/usr/local/texlive/texmf-local/| |c:\localtexmf\|, or\\ |c:\texlive\texmf-local\|. \item Your personal |texmf| tree, which is usually located in your home directory at |~/texmf/| or |~/Library/texmf/|. \end{itemize} You should install the packages either in the local tree or in your personal tree, depending on whether you have write access to the local tree. Installation in the root tree can cause problems, since an update of the whole \TeX\ installation will replace this whole tree. Inside whatever |texmf| directory you have chosen, create the sub-sub-sub-directory \begin{verbatim} texmf/tex/latex/beamer \end{verbatim} and place all files of the package in this directory. Finally, you need to rebuild \TeX's filename database. This is done by running the command |texhash| or |mktexlsr| (they are the same). In MiK\TeX\ package manager and \TeX\ Live |tlmgr|, there is a menu option to do this. \lyxnote For usage of the \beamer\ class with \LyX, you have to do all of the above. You also have to make \LyX\ aware of the file |beamer.layout|. This file is \emph{not part of the \beamer\ package} since it is updated and managed by the \LyX\ development team. This means that in reasonably up-to-date \LyX\ versions this file will already be installed and nothing needs to be done. \vskip1em For a more detailed explanation of the standard installation process of packages, you might wish to consult \href{http://www.ctan.org/installationadvice/}{|http://www.ctan.org/installationadvice/|}. However, note that the \beamer\ package does not come with a |.ins| file (simply skip that part). \subsection{Updating the Installation} To update your installation from a previous version, simply replace everything in the directory \begin{verbatim} texmf/tex/latex/beamer \end{verbatim} with the files of the new version. The easiest way to do this is to first delete the old version and then to proceed as described above. Note that if you have two versions installed, one in |texmf| and other in |texmf-local| directory, \TeX\ distribution will prefer one in |texmf-local| directory. This generally allows you to update packages manually without administrator privileges. \subsection{Testing the Installation} To test your installation, copy the file |generic-ornate-15min-45min.en.tex| from the directory \begin{verbatim} beamer/solutions/generic-talks \end{verbatim} to some place where you usually create presentations. Then run the command |pdflatex| several times on the file and check whether the resulting \pdf\ file looks correct. If so, you are all set. \lyxnote To test the \LyX\ installation, create a new file from the template |generic-ornate-15min-45min.en.lyx|, which is located in the directory |beamer/solutions/generic-talks|. \input{beamerug-compatibility} beamer/doc/beameruginnerthemedefault.pdf0000644000175000017500000004226212050430576020344 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1050 /Filter /FlateDecode >> stream xWKo6q|?- ڠ!AePKkkM;C,o?Q?̓ 9#2rNy`z8^\Έ4:raHWwSdtd\mM }gH%e"c m@w|"0hQ-`T:+% ę윐{r$+6(?ti""$Hanhx;q>QLBSŸ۲! dPo]Qg:bKbs| Ô:f$nA>1p49'3[k`Zm+cn"op7="MF'~%PZhŗI',wٿq/e'U/8%y&YFYc7<3$)PȜqFQedcJꌤod!͓2#,aGy L&nRm3w%4ipf '4=ܗ86Xgl% ^/rһc c l:zD"pʃ_nCk e Ȉq+?\)0:ߜq;=)VCM|Y|9#S]{(_)lZu78;}ҭ\/f~why1K Gwm=Y>&zPۨ_q۾۝ʾ H?/V+ܶա{])6 .55,|N7PS0JR_O#e.dtjqB< V pYn z(*e)웪sor-uhEQ{%ueB7#o_p(]NѐdPT.޴=T5X*|n.w _V`Dw!pagjEA0GЀNf\\Od?Vک-$ endstream endobj 18 0 obj << /Length 1499 /Filter /FlateDecode >> stream xXKOIWʝ~?+mEQ7 XblE[5ӏx066"5aSG5>wtFIM C)}wN+R^6Nykm" ljz扤Y2.z%@uUz#AAGAeZoY)&4Z#/0OaoIQH:"xK"F + f9* oF`]ћW CN J^v)p." S<52T]DB+ܸ"qd!dҫZ]ۙQ50^1X?aIo| 3Qiy ěZp5ef˳7fؽ0j{/.K ޱaʐRAί 4SDh„\ot0^E=~C=Z\gE`*.IK12DR6-TKޕUZNG, e,a65r*'_[jq<'mj7ු m}q\?lЇ-3D^AwrE*cAnɮmٚ+Oae@%"^wP,EYbb;n٪(V=ȽA>ݗ1,4xyMLu}r 1,s ?&bFS+FBC6g:5kȋ6 #9Ĵq{8oyKKkW,P:Mq(_/ W?4F9رb.s~-^ʻF.p=ퟭij  알. ,qz}4˶wC{r=vznSse.$`gw*P;wzkVU P-C?&?A'82T)CCcT-gp-+>/ )­O#^^ m<~yp}?MF]-;̡F.Up4kr:zzX,y34n5mM Jۺow)?K&y8 Y*FУkV8MĴByigaGJ7nEdPlW̞u endstream endobj 23 0 obj << /Length1 1166 /Length2 7033 /Length3 0 /Length 7803 /Filter /FlateDecode >> stream xuWe\۾顔fC`.ahnC@SZAB$.}s<zևᙆ65,"ع8@@5T] l|, :#?B@@`PY cTA@.0HPa +j!N0o;B, Eh9;;BZ`W * y?e`^pRK/( vB w#w `(дX  9k@f;Yqp@NF20 \5VCyqS7( jHnΜ/7 ~c` q.@:^?H߰ ptAl/;|/;bZm0Ͻ8@ . ÁZà^Y8:l_QҰ\@vnAЃk^\RWc0)AW "p8zO G_2A\!`k Os@v.>p:v+(,PZ!P[6pi+78A?ۿ6`O`~f%b_vY-E Gn4׎țzHJ(xs dj ىW SȽpn %xI~Q'&sޫ &C2=H5H w1X mt~V^{!|DLlQ'h5{}f7U TVsfՠ3*ȅ.ivhjGl7L=%bRQ+Fk6Li16P~#5u|E˛H핈e[`@NL {&5$RޝJ~2d^ ﬑}5? y̕μ-߈ 2$ޮv]8;?_JڞcvcPٕ;J0 O/%<5Ë'Ë24 |\.EnY_{|n4/-iM 1U̒?;/uM;vnc^C!Y̢U@V|F:!q$q}&y >MJ=zkӳ2rjCc\? P=dP=su=(4A/ӯ)~KM~+-Bq%0EQ.uЦuGm֒uì0V.wq;k20RD$]Z0YgK07,ϝ.ZHt88S_d-8NL^ YD8_qY*g|<%C!FFmcT؍yס*#Gז4XN#qf;j58M Zюn*H@2t2( hTpp?f2<Иu凰{ OЬտR-hKV)lFYݓMt:/u>sߡ/A_\(a<$GO=|,•6n@;! 9Iq!yPqEՖFR1|\hs2/]Y(S4,|@S{ae6@Yb: -Ey~&*ٞjdx6`^]ϤS]P;yg}3@rgj՝RٿU5~m jܚlȿ ]2y~%%|ܿ^-ue2~+S콲nsV@o6]d#Ra(QLJPk,vx2.p7!ȠiEx:t1Wkr^)~'n jO*g8(2ʳPCJ1;pzDjD J88E:\&mI]l v&3NM\w?EruNTJؒwRN"[e@M沣 wWlWAo",.=f͝E 5 }$v%h;5Wzϓe'x.øsjGHR7^Q1.!*7q=4h0qHQ;J1kn1྘SeUzHFOcîQ(mMHP'KP(4#Q&>-tTsB[5yvV5Z892ClxȩDܽKT`%ryy-VڇYyժڝ \Ρm@rS^c;RؚB"\#&#mPv-υ}h{t݉?e^ulǑ7&5]aãc.Oɲ ܖ%-ٕ#ZS۴D,Ё_06 iVwg}>!KDbHH47ȷlQN,'$Û_qj .s_%$|q*nC5$gzjR_WhZLdœV! ?p4?Fm]žz{Phhv=59qWͱd0kc֨cx:?J@Xcun<ͣBYzMFv<aG6NI#?V/^&Zf ܃#Sⲡ2ʃC%D'|(ڨћt܈74cئ*ؾ>1$4e9inڴ zZhYX%keg&ExW~I4kg-9$4ܴZ5OU#G:GJzQ?>ᑐۤOȝ!OҶ+6"z#>|\3[3nUH(lDc,_ ^ݘf& W~gy1Ra{{ &'#1Ӵ>bMfKt)::WቄdOJ YTê^C})D| O򛯑='ܘ2gQ1|;̀tz$nѷD`4w`" , e*ӟC<_^|ƣAg|lH+>5Hrk}[IMWM.X'!$%#: Joʢ&ސ)=@kD$# HtҤ@[ҀDңD%=!#jNbp|(ZX"// "8]9i{V.(a]2]g"UK#gdY.t|qq{,flس l9%_x'%M#`8=wmq;g#]^m{KQޣwJb90,6qpx"3)ğ~ &t ߮&beAs@TvU/ .mlryQmw 07dWEl8C )hfJ3o*_U)9w3o7ruYߟV2 /6ezY{tZT9j~q'9T9#87qEU0s/c}ae I-6&vً3ɑI#iv4qmr9n+XO8&#FGd?79PE|":)@<MA2^܌/_SgTwf5.%:زi->rh7X?Wy /Rԣv+b!$oOrDݍjyB Ym(і_yŤy%XDuCx9ɅYYtX us@f: ̏hD {!lk2]MYu\۬Zwyf"P^ 4QzjT ƞXZ'ziwAx6j#zX,/b8P(wD]nbe/6{ڷ% x$Kd;ԇ2Z>ɾEU?d}W2yP&M$f2e_:.?HoJdD΁TӧG9lrosK4P%| [Gq0~)Irq0&~טA5iz}ZII~Ԥ >WmOہoWl!O}Uj5;3rbF'|a9ɥтV7FB#7P2o{Ri%_?EWȹC%{S2ʬT;G8 AR^4kzK)&4MdPu ԥo_GE-]VNwqf䟯'f-}īw[O+NUyIccn2~f4YbkV2* 5l;wi>1N\x'bѿoos- !R%*j~h1{櫏1nʝ9}e!ъj5e0@ mEA#C¹~g6z1̑XpّiΟqo`pyrG:UAe`iMZ䪄B/}<]-S'LcKle ;g!2 gC8aF"-5Iyac۩OJ,RnE5DJ(zR:+yVa@kA Yz7 EC"`R#8; ,z|J4UۀX>_Yd!Bv Q*J,_ˇ'ux2OPNlo $_VիJ+9 q U9**ӈr10.=oו:tU,۪ğwݪYo}qC_ r،xm%0k)2E>u߹x1VZK @T5F~Q~˓ b/˝o,\J[WFra?*) *A|nQ2Bkf0^x/ګ/rĥݎ 1vR~(*^6a{tCr7cu G ȵmWumE[4ma7B#u=~`vd1H> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203941Z) /ModDate (D:20121113203941Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1006 /Filter /FlateDecode >> stream xVK6W1AH  颛c;ݶLBmIͦ3N襇¦D7$E!AI-)(^HzƠ /t rHc-Bv4)4iʋ]\wpҀ$^E!eH7Nuø^U S@ȱ ;!Ch!5y$(غUjʉ&Diq88 |t[D?0"0za^%|MVٲ9LqF? #^?¥ԃ 4-$Xɀu".ɍ]}|t@)1}1&XnL7j΂͵R"5X%=y2QGE8"G0vlv6ط-vLI#{A Nhڵr8lx&-k i2uCoqRF:ے:9~zuľ9x٤|҄BaT?<[uCs=)wm"[kpz3Dt6$URY/o>8 1Ŵl\FcX$ qI(f5nBcrzXc~خjR >WS[ 'RpYKNFOwFgtL2U{,C-n!ImU\jl*)Km9xib>^BzP]t!?6 (͌kxCbRӗe}5C FOͺi@5O>Ew1_PFs)_v} Cx44|J|AKA ]#uBuḆK'sn}|nKBތ\/h endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<906BB5E5AB5E6A7629F979358DE4DA91> <906BB5E5AB5E6A7629F979358DE4DA91>] /Length 84 /Filter /FlateDecode >> stream x[0CѤ |`A>K̝,C$aQd)PdGؽ,I2g[Ztx@ endstream endobj startxref 17252 %%EOF beamer/doc/beamerugthemeMadrid.pdf0000644000175000017500000005321012050430530017045 0ustar mohuramohura%PDF-1.5 % 17 0 obj << /Length 1729 /Filter /FlateDecode >> stream xn7aylTHRX%Œ42, 9|z# #i|e:8#j& C6 >tOM6I=V\9|Ѥgs.O!u.Q5/G7d4DAT:G W3N$@LcH, Vż倓 PJd <"zM"V K f:n=$ Z뾕ON䔁3)@`Cu-lIEk= [YjT^F@-{q=\dWgFk;uu!k|A߫#5"2_b60 9giai9y _Fj< QQRV}v$5%ø19$9.zX#22˔ g!ypYNQFϓԌ,L'w>Era4e_3 1:*gxZOE@*QZxi N,d|mxKQn @u)l,Y2 y.QEUdd7OR=󜌤*l]4.BڈI FWw^ *k\lf2ۻOtu5`|/=MAߖ<_ű#:$.joM80L*4%"Ϩ^05'eU}WuS=$aypKg~08b}xVoܩBYߥk9!UUpE2;[{E_VuʫNWeW^ Uz_UJD0cDK :U5UNxz~ۼoyT\f3U&p'Q' .vW~ b۬/nźZ񳰬`aa^_hjm::"jkE`rL$?[]ϼ>ColM[5JY  x(6-ծ+Yv+B#M7b Z!5u:j1@j]٧vqlXʉ`?;!lP> stream xP( endstream endobj 12 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 16 16] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 22 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 23 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 13 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 14.834 14.834] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 24 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 14 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 25 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 32 0 obj << /Length 2389 /Filter /FlateDecode >> stream x[Ks7WRm 㘭Uq\ckI2E)%ͿO70xp8(ٱJ h_ "MX^%G3"Nj"\SK*HdyEۓ?*Z59彏'hCƉz (KɂL4Ȱqi򉠢 5膷IRBiS29F-G_b aSؒ#s5"7$HPsIi.J1 Պѫ]ws9eK P,uஃ*%IE񒋡*02T흣Tb !n\Uq!M:үzZw>C?6U},pm'9fC3hN-X|Yxx b2:;L?e`+sM5A &0όGT%)Ba3B@QF)D1%uI#YHi@,Ff/RMv3XʔBߑp4eHX3̄Os ,PD/Ydڧ9<~YI!da!}@-roJc*x([j2d},u;b0%.go6Qq?tr# $^t w@Fc5є&oފ0nRA.a1i0*.OgΖFXw*bjz7 VlyٻLhQo8I Ee|\Vh[*MŢrv8}n:hˏ5O rNƆLXI~5d3=cļ zz^Kr`m(,R$Nzlݦ>!nrGC2$֩KFe$4?0r^%R tPafudlиlƺq* ,?ƫO-{V8>`4t< G]uU= G]uUw^m,q]'uUn=Y`;~2WNQs#^(c5BvۖԄGn9;L8_/[=+,jo7@U5&ktr O*4TBG)WM`Q7{uD:R1V~"V o$bVDo&u1\`og;ˢ]&X=X쪻0b]eOH/ƺlyN:#|iPx0i4̴i" Uo4>q YvmQG{q7rjL,.\<,|,Si:5҅(d_*+]{ٻqn@[vXt4Nalh9lbOV|Y+C= /J|BXɛٍD*,.'{jX glϙ @BxUw:{Xx3CN>/.LQ'82aMMR T_`23TI.rqH$\Z #c>f/NI/ӟpBBδ[AS%CsQ;Dk8G(f%~6 )j38؂|y;alL X`CG.^]<Ep{5̙&*'ˋѪݾK^g eIԗr/L ,:&Gq+fڰ-`llnr<6,0nxwq~~qYv9;8CIK|ps)PiyCp-.E)DƟ~a߹F9B~U3kAq> stream xP( endstream endobj 27 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 35 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 28 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 36 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 29 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 37 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 41 0 obj << /Length1 1166 /Length2 7454 /Length3 0 /Length 8226 /Filter /FlateDecode >> stream xuwUX\ٺ- xP4X\{E(!hpw %X-ء{}ws_9âQdZdg6Nv@`iQbٸ@^s zz-='B 2wC!O @8B@!^Χ5@(\;@=j g y. fYi.pK <`.3  / r@ O W=Gr Դj2V`?0:;Ä88`'ɚr`~jTb%u#I ˧<8; `k0ϑ\` HA 13r@-%<`?I?`s{6wyAO/N 3%s [:,@6Ow'd30ϿWOj{bp(+I)hsGIJBRqظxQ_:O) Py\Ap'o13?@ 1\?-i֐uSx C{s;= ?yvΖ_*[yAjP'7Nlrrz:?)%e P+0Jsտ?hK8I?ۿA w%R8Ȯ6Z܍ms 5F=:;R ɻr jöo* Cbe J#ɇQ:Fg8~!$Iڑ?)ԧ#5%6娊JNUW\>B3@dLΆFĔ+v|ٹ^Il^ߙ9 c r~N߶o;X "8F0V_`$Q.cᐐ*9[O2 b |gYTF,~E⢄&x45;82&Mg΁xyxxUB:/*!Uڰ률iڝ'c'(/rTgF͈Gͤ<295axƪVv] T)SΣ7\]8|KZGH QepҐK1TpF8vv(c0X7͞Q*<*y1[^ngvm揰z_e_vd2V. B~U C_>2D^@?rуj҈^Ws){[ 0p|&ƺի/zms^ۍFi[g/pI4lZ;<JLlg#m'*T.;xޫ q[b=|-6רK ՜k )!gcpA{ 7ssd:7Ox;#F왡ATy]smMG*e'L;R%1qAR|;1rd6~FAl}b؂-z57TvM~/4Sgl=K"cJڐ EVRrMKT)% ux6ƾ20jqb)=EDbjk%AaҫRy5ooNr}?p>9JvrIc fk=p7Kzx^64#6&ҜEk}A'YL\ ۺ s@W_J_eG&ުUFs5QxKҕOIa>M1A*[81nH>義% vZ5a@HRLg YZ:_3H2 6M\`4pԥx\vd_ hiLWcJ9hx޴ ]4 ܤl.-Њ.(!mł@;VQq 4x"MX\J'cx0IB5s3&, ڀp`1Giw*M 1GO͛и a$O&LHГ^R#WyHl4eM|5{1L-)j2+7Vr=~& yӅc Tb#r'( w ,`v*mgmG x-wSYE QJV1]lEE?;"˕*RHxT.eOk#*+5oWԝ?ްX~.cwd6C%AjM:`I56PK0mnGVڛEYϏৎ*rog՟ۆ/b%bήbnX%4pa5k<6eإx- ?h'`,KJ`pŧ~W Ŏ1Hu}sʢ ״e }rF[=Nuf>uRV9,Mzov#[h0oqԲ*%g86Sy]g -aζhJȁwqB5 kgwh/d 7Lo"E%ۤ8KjӂG+/ Zjy9&6Yg=WP! )׆A[ ׌Үy&igҷ!b*dk2y3E5vԸM-Dž4 yՅԮd Dcoh+0m=Ͱ&:NO?ߑk{E~;BJ@xXĢ,xH[3'_ArmrKi4]H]85Dr?p4iO5H2r' &&\`}2S>+Ź Su0{zT۠ ;$}ܖ5P8Gd} 'aOB%=ޝ8qgt?۬YTտ9 UD'AXD&|] ś$xgCE cYՕ7]?& \!r0 9ry, @毨C!y-HXqEoםB8l9#3wf0y:cGKTU]^aGO>icт3Sl,;Y﹥߼=bN_yLA=5/l,^:yHU!Z#W.MWtZ`NK[zGwjP1"3!%_d}v/2f|.Z#^WΗ[&$YCDLk`űc TgҞ>)Y>l!Մ@dW|E)Cu?+)$B;V u_0"?U J}7{P/+RiCRMRlأş'CFyx4 a?:7Pv/kd]\}{9Q)?)tF[y\fnA} nkߵ8Nc%[>RBӐ%Vb^mK/ݕ4reZ2J1̉8'y`G)ihi%$7_SD jl*Gyu^QD%̺reSj}h7i3K"nOا&l$|Q%y#YE*GBň.e_ޢWIՌF!2O1 ǣI'wT8&}n_%E}`ܷx\0\|Vs`9o⻣hỊ5udL m`ӝJ7\见!i)Dc%g1w3dlL&vDSD o֝)_I,u1Vʳq Nrl!ҴݧQ*&b)9ot_fn!%;=KlQldpK9OIHŒq۶/q ޙFRDy9N%y\B}ꂗ+DFDI^;mV̊AF&s9~f!ލ~txMwʚ-˰⮥Yvq_r@e /n/9:4w`_2\|HHRkMe8efl5W9mٗzI09C~~?KYEIŷfu[.*+"}9! NF__ b&=aU1MGGR:G7*ډ3%bѫyLZ-ed/P-}E;4*xbF54fKn+8e3ʯ2Vt3Ren :D-mY9AE&.;| q}`gTh2ھR'WŦy1X3cƌ#TC.鼣 CxLL9e?1%0Wm%b.Pp2F3@RϤfL ?J+ES HZ}i-]Wx .¡:E+T+6>?h|Wn4<)t4MV{/#4deB}AUye =dD_pT@'ܐC_g$Q Szp?HhS DlFjY-+J_7:;0C 2`PDX׸aյ2<i9t W],:!ZEVzX$z{bo(? ܕ8meX,`yf>ZuR=j:m*נ @N iljh5m"|M0ݶlyYcPwM\\'큏Vn$ Knofݑx*F<0o,MQ^ivZGJE1lGĺӽi+6ROs+<~^x p=p܎ x~x `'<"d'!(.LB@PiHPE}ITTn78ҸCJaxvJte@`,HV1sf`rhrWQadfu(_ٽlū5 l޺~P?,!ˏ~C6+i,RzI.7?F7MTncw_:mK%+ݰ_dGbY+:l)!?iu'ҜqNFG{p2'FY$SJw-}ж6ohΜ_:D5,<5ZKS!,_&_r M\v4 RaQYv6 wc%eb\:)$X%FmS)˽)]\<ڳk>FqItx`|D(^-3 '[Tpn[u^SPr$ )2p=K`K/B5=\GV]<ζ7lBܷBV{ |$Ě$kkTr}PeN s g`m 6rsْk"@_- Q䕸5LjmQl6ڥS(ϗLB|&tiJy|!JdpYNwLj7(^c>^ 0]4Y>Px e׽L6Z``u }Nr>BF%PO\q&v=5%q\b{(V295~@3]d6)nmzkh]|EκO?P<[/e5BTO^f3jVl2,ߕOYV:Uz9LyR:̙ ƫ""t$6! /QBeR HR#4@^873[^<\EC+eKuS^g=ज़%\tߋu(Dd.cؕ(CD0W}cO^J$:80Njvo|ؘ"5$y|>q97t\c'RUR%"'['iT6j}v5:m/ endstream endobj 43 0 obj << /Length1 1199 /Length2 4353 /Length3 0 /Length 5123 /Filter /FlateDecode >> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 46 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203903Z) /ModDate (D:20121113203903Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 19 0 obj << /Type /ObjStm /N 25 /First 191 /Length 1737 /Filter /FlateDecode >> stream xYmoF _;Amni$:őmJr׏k~@NC t2x62{fVK}MST~wshwyor9+Ց࿍W-Ez6s]gR;} "mTi?դ^KGi:oZjSߍI>{g>,B9TS~am%wRf vm(Y9~]vYҎ,+q^K.b *kNGa2su( ӋH[rcVmCɢãeffn0ş%'6-ip l.RpAQ2kYj2_fُ ;R`AԦÎҶA"1xxU|<k,:|l@9BhͪPE őukڳ| y<úfr]ӎYV .&khRQ!6^Yǟ5x7ܨH:z=?v<{qv]j}v.CnB5kڢ50i Z $bMeG.(bE+'SrXd*/qLi.9˦׋2\͘$L=8<Hg@QO%V_I9R'=&l|\@;PRELx{tNo)B5kYOocWs|/_O!4L1,G Iy#e8m-f;Np3189?FOQUvY~ɢ7fSp Xo^au[)Vr\[|3-kKd=#ן_8k Q0 ßÛ(+ Ӥinے?2)xoiAhfh]5閪xZo?d!NZO+pu\r qHZ$ endstream endobj 47 0 obj << /Type /XRef /Index [0 48] /Size 48 /W [1 2 1] /Root 45 0 R /Info 46 0 R /ID [<6F0923066C1717B9F5EBB4CEB19D7D1B> <6F0923066C1717B9F5EBB4CEB19D7D1B>] /Length 128 /Filter /FlateDecode >> stream xʻ@CQɿݵ6tC 22TgE0l(P/A蟠; >A}% :o(Lr)/`̭ۈcx RK#c|[n;ȁ/D endstream endobj startxref 21774 %%EOF beamer/doc/beamerfontthemeexample.tex0000644000175000017500000000106312050430504017662 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerfontthemeexample.tex,v 161eaf4bc28c 2010/05/08 12:41:37 rivanvx $ \documentclass[hyperref={draft}]{beamer} \ifx\themename\undefined \def\themename{default} \fi \usefonttheme{\themename} \input{beamerthemeexamplebase} beamer/doc/beamerugcolorthemedove.pdf0000644000175000017500000006056012050430566017660 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1133 /Filter /FlateDecode >> stream xWKs6W(͔(ޏc;M54V'cNEʖTծݎ >]<τka9:#& ʅ!ۚ\>>v.XrِR`GS;߮f_/$[k$B;'Ki_ne2Ha@\EzGEi(}k#׈ 9jۺ<ͨ(& ;cۯiz6z9bé *ƚzmt!lF :DFs^IeZ8DHyN9KvvKȒLW QQ- .P0ę (aX >ЂbGZA$I5(au.PD01M ta%%>,_hd·sX0r7Q$sX&N00e(·#w /Xp}đ9”g֋vG| 3>RvIyd!cSdI$NS-85YX8fA`4Q<t, 0n«̉$)$p#2< vǔԙnۤ!͓*S$<ؒ8G4L*Bu3w!h#gqOY2" :+lz%]I^u)rx*1P^BB pʃ]nC8Ód E0qs< y6g!@k5+45$TFCgd8<:גtoDs O9.M鯣|űr_f2]l~'7cub`w R{k6Y iyRqd A&`SIWߔCy]ښ*OJSa~BP^{ u endstream endobj 18 0 obj << /Length 1457 /Filter /FlateDecode >> stream xX[o6~࣍,m+%o][MNb+JYN&+.@@:\i.`'#_yHixЖ)Tm*i~+IS(z~=x4Ҏ0f.c}}KA"x5WGb|"Pb8o\575E^ƫ vټD^卌mI"aJڭg+짒Ť]4|֏F{: _E`lYڱՓ%+^[ Ex(;Q`ncy*b9p9!]WD4VDGR18]=m6KYɼ`>ZB-uy9E)"LENk)}ڜ!X.L]K@\eֶ}9x,+K꼴KUjc^4!*^=UVy w>pޚTvwJ(2OrgGE[ݤ~4IDǍ{b/HGDz˿De}z k랗VǢ,߯ |ts./_d.WólxΛjv;cT#`y\> stream xڭUeXFBPRB)```(A@BiP)i.Ii3uZ׽ֽ3\lFB*$DĄEz0W+C1;!@4T`ԡ`8@LNN D^C3>Y~@`nzṅDBh  @;A08XB[OgЄ"@8@008 0.C@C[hMU;}H& &)h,vh%GըEpĕ24VAw$%o4n$hȾWçe%7:=?uuddz;ަɴ4wH>iXQ}T=ݏGTलfB>Ѽ*"8sTu7+[FMS!reA:7QO^ >ۤ~sQ`=pT|ԓN-S}ʡ,{(l3`{[Mn߱AHHջ[imfƷJ65[49.j{J-6@Ft~FnMԻ0P4Ao(u{_pG6ï`qdW6@u6Y({b;qoF?_ɫXBGu׃w% yW׃ؒeIzFZenϔd7!y M{S,B5dG&-guيKjн2eH#Sɝ(T\ߺ]-88v׏-lkG%A%T>E;'Nt4(/螷-3bAB;qqR;_ Wh`ɰT#aް. ~;ܓK b/]%Q.i׵&)ÿw@a֞1V1IS"c3m%|^Ә B\X{bUЮ[;ja ( ul?BعţxUaw[r1WT;](ϧmu?zy[Q{ -tO BA՝ݦre{V.b vK3'=&k+[%>!V{V@'fzFwI'V ed5.(*Ŋ~Uq'G,Cs҈yV:=乐:MPq@p%m;,[f_̽dcUFCobfti[ӡ)Yd|]7 %p$z7 aaʔ-MveKaF qcWNB&f4}E d/*#M::@׻E45S8ا`I=rK]EwX2̜[/zNLu ;ctR`˓ŭ’%xNWbщ5Df2X#1.SpHڠPgZ-D->Dq4 0;ԖSq($LUB:POW YmN :JHp_ 5mŽ/3!KUpqQ? :i~}fAQZy18:r,ai9 g$4LB7&eRyj[cQtu'`jH[g_Ǧ sA+?&$Ws)T^|xT ,(5 x7kŋ+xQTіM_?At2b4\ryR_yį֭O. 1\L7W Ϟ$j(wU=9IȆ_:Sw{ "vG^SDx+v=SpxI*pZm)H0utY).u,'R\"yid/P-%mHaKA cX_L:vhr=zS&$N[GLw6QK♤>6!?2p;ǘW^Z[*uE +gŊΗZRVM5z#e:uJ>$ﱕzR !uGčӓ/#{$|kxXC>mqGķo*X#C~pnպW4Y5ZWe߰~EŽhF3=vJm"-6kl[m|LZWrOdד&3}#q^kƆzvwis d;r_\Kⲷ۩Uzxn ԋe=j*8` ,rg_}]#S<77`飛3Uεtykw-b%Mb˖ "pbiC>I:"rw+ %C1frq[u,) gφ;CӎƔT.hE*7!hp]aZ㯞L 18ac „-%L̋*楆nyy48Epբ˝p.̨WH|~SdyU4ܡz*\Tn||g׳cVTyjwzֲQOdئW0Ҟ_G*^RxԖH:y# xG/c̷,(dqƻaW`RW8Y-C(H=ŋtq*v>?X2I>@Dݤ}LsdnwcFGJOZ$'>*:9lh>jK" 0׹9E|2U1P; `aS-GnarH!;oE f=Yu硚g)hxCBFxDڣ;OJyL#>ݒ]- ,.RRfHiGHxX-9ɗpq ^vGeaLlc6N)ieb &: 4"yMT{׵bl/)^iݟO8V =~Km5)s7Z ˜BI!Y?4.Doph<- ]}(}7i$c([5~-&;ۡ*S)Y⑾f~J bAmK9yDȈ٣s|, Fk'D^k2RIʗe)!.w[[&C;clF='O,sݞ~- !omBUe̤?y't,⅕ms.6 B%oHPX|CLv>ē!)zK=G9]#,^9NF7{֏{ޔ^/2h!Ѭ$u 4bwLҧ`Kl87i%{$i\q[l2~"LyMc((@=|LOpdƝt4>=> Nyuzi,ۗr?\f:UawY'À2\6XVQ|vI`%@*))SZ^.jtGa,e {ʒ́]΀p5Xw<ۖR- KiTɍ}i{pY 2cق "}H=cgoY=Юwhu}+:Po꺓ͭz^´l`F+%0\dFWQ3F хےao ṽUtA5Vi7gw֝ԕÏ a^ >qiDX2Y3!}(dOBxJc 86=Ɯ,WUBdm cKu7Qv[M9ʳo{.*d{d@TL 4_iw{3[% ~ϭ^—1/T+!*X[NP87N1/is endstream endobj 27 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 32 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203934Z) /ModDate (D:20121113203934Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 19 /First 138 /Length 1148 /Filter /FlateDecode >> stream xVKsFWqRޞ^TQqS80* =xzrHafzf5j)AGQ @)ڥn(A?x!!ڱ'dG^Zh.Ay<'$H #m-h%tDy:86w8x&Iľ}lbrk%7fG3X}!YSˢ$np؇cg ] c4!_iAP8(€{Ϫ!t9h[n= 4iʑiM|v9DKՔ ڑWE''|i@88(HW:[uӬce|FS\dq: s,pOKg⛾.o~oCHt{]z-וn~xWx7xw'2+[J&8IWD=&Fg8qF݊?l[/79~$DcȌ)%B it{>L!~C0~xb8)CB% $ɜPųzhKm蚩SjapխR=<?䌀@~ ٬r6h%zZlDE&>7^(7:|d]te ؋0^GDʎX\ۭ5\{5^uރRmTآrTȴa~4.s7)Rʲ:ދYDҹS+p;2vvGwciGFcRE_aL endstream endobj 33 0 obj << /Type /XRef /Index [0 34] /Size 34 /W [1 2 1] /Root 31 0 R /Info 32 0 R /ID [ ] /Length 95 /Filter /FlateDecode >> stream x;@@zG"T$ ૿z9$/@R \d{IJ(%׶fFF+xM% endstream endobj startxref 24599 %%EOF beamer/doc/beamerugthemeDarmstadt.pdf0000644000175000017500000005404412050430520017575 0ustar mohuramohura%PDF-1.5 % 20 0 obj << /Length 1681 /Filter /FlateDecode >> stream xnF]_2Pn>[$5A|yht,ԒbIn. Ev yùgX20r i3tey &if-$XҒ̧w>IJa4eHfB6Ca-x@Yݽamn"/+k(>WppzDG{ˠON '$n@r<ƵhLʈkLɃG Nja+qOpzP7`Irzf1q.KdpoSTtqt1D4` -EAK˅K%a'Ͷ[ ԙHj|-qy5#p endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 30.481] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 24 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 14 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 8 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 25 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 15 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 16 16] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 26 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 13 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 27 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 16 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 14.834 14.834] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 28 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 17 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 29 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 36 0 obj << /Length 2359 /Filter /FlateDecode >> stream xZYo7~ׯࣄE3 F6`yG蘑ȿ*}LXZdbǏa0Æ%߹vFIM CKrs0ܒ [>'mʡZ&S{xegH%ٙ@uCNO;:* *Yx8(JIqqEr$O*e‘Yl"YFR 3 ok?B o:fc޻Ň2%\ ؔ,u`&%IETz Ts԰PQzoA>&ѥyEWM3[k惭},67}piY h1g63dMнՂժŗ7 /}OfWI{+!,z qw f k 70όG$)lB3BQF<☒dΑ5zdQZ8Cx[`h#ŊR*FSYN|ԬeҔ9_FB024?_Yhѡ\@_;پ((Ս1DԝA:d0.a>R+Mٞ;)q@O1"qVUD\tFĔy.+IIΰ} &&8N#[Bvao "$6p &YZDjʞd.BK]ie̽’A,]" :cT0XsyI'46#df0M9>%.7W??4OUP `뛛NXe|u|:Xެ0SfhM AAA g0zhC=n8"R,Vp:yXv_O}޽\%VJ( |( Y`&/q<}X_&NNSq>}XܝNG۳\9^R)" "Fѕ}Lk[Q&bU)C״w[dʼ vT-ty fe" aDŃr|8 bVi8{]$6D-M p֢ƴCT;:y(j| @8 WP9*!)qzpKHԽk=f`%ϸ &KQcT63Q gܴZ/Ilb&0HtB+x]fdWufe }`2{դ嶩mj`UKN: 3, ^m=Zȃȴ}!A@ [bk {RYr/נ^ Abb70vcd8BFZFE,-}|ԃzд 󨎗a,Bݚ M&f$U}gbYKY&fYG>Ѿ=PѾ3P~w;>ƊX~fec}V>OaV=LlFK-zgXx1S/.hDBJ-RB;S_!G<uy?Zx%MƤi2fC]ৠ-ØXoG2f@||@q\q+;h"(i%I$%U$%p`zo6ZX`Q()nc,%i’^n.? {$TJߚ]4._Y=GS—봞,*y߯dN"!Ԗdjs3wVmL?M2-?9xl2ffqr~qzyr\Z'[7I1;Y=^OFN݇3Jo\)F "]`VȈi0@Hݳg1 *)Uy*w@O+; endstream endobj 11 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 6.253] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 38 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 12 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 3.126] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 39 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 30 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 3.985] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 40 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 31 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 41 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 32 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 42 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 33 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 43 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 47 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 52 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203854Z) /ModDate (D:20121113203854Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 22 0 obj << /Type /ObjStm /N 28 /First 216 /Length 1884 /Filter /FlateDecode >> stream xZms6_۹x#g$ns^nL˺DҴ(ZJui쳋%bAj26 #܂0Zt CAILUԍJ [ƂAri% UB$ bb`!L" 3B dhձ#p`Bp:5("8ai bb0b0_)Y2I|t^4yi-qZx|͛vgኻH <2/O^Q@92w{qN瓪}*/!/ɘ{͒8Nhuͽbh|\NgҼx.j+\ӍR\h\)'Fr)vG=<)4&El9gӁb'"'QH-HF|ݦL.8koo.y(Roޗg㋴$x<{qP}{wz?ujy%?ʊ7NzZqr[ŔB#w~qG?uM^|)dȌ7@ZΆݸm1ew?-֧guVoVfٍKc>ŲOѐH =<i [hZ^|?&bx"VBݡzecTȒB&5=7a{{Ou}./@rd(uE Dާz;R$KbG*oJ(]FUlO1(vl%Vq$6mz ?RAKy9i9ރ6.KMʒfYc#va?cyxUi>1WLs:OUDJ>q-7KuLb[! ƫ2Eʦ))U5e:FMFn[؞x/WSnPE#_0I# !H0xB?2WǮNQmǧ -gH1icIi~e4>ԭx2zh}o롑̬m݂Y+4M WibLיs6{FQOuvnFjFF*sR9`_yD|; lDC2S dS&uQ/-a*5茷J(^LZ (1?DӫSRYXR"?a=az&r4&ߗ=]ݯ˱-67B𣣸me~9PqWtGGwUS05ul^r #[]ī(cZ H<%ol˶iɣ*$aG" _V +_Y]"-tQfy&3n͏tv,.tɤ]u=.j8kQ>+|b y>NWfmR_tl>yH!Lggh!i^גo _<3< ğ-&xcgY'GZnw2 89fS\"ͧ-.9X9Xi/.W-ͳo+LIpmH_:;[V6:/"tk 5:ըUSkJ+oTӻ4O|qw%Uno1j58h j #R |cب p!wb]56Yqjhi k/~la\) <81C97BC511386C8FB3B9BC2AE5142E6B>] /Length 145 /Filter /FlateDecode >> stream x˻ @P;$I%%Sб)!Xh(hAOva!d. #Vx@|AtgtV@ԩw)Bd$b`{mXR⥔J2'mN)lxx+Lt endstream endobj startxref 22169 %%EOF beamer/doc/beamerugcolorthemedefault.pdf0000644000175000017500000004213212050430554020337 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1035 /Filter /FlateDecode >> stream xWo6 ~_5aaföuc&,MsEuRYIHI& p#i8Y\#AYɜ2 KɄk|52 WӟO߮_/,s\49-`}-כf׬ Y}oWAW : P.~ڭ amqǸwt6;zyqL9uٞ~:-i}$Dެ(qsiWB-aqLGTygH1if—\QJԣHANNSt-i񏖢thKH2" , o'="fIhz,} ,ϤHyu%1玊G%D19BarR1Ct-ބ9 E&E3̙ G-+>>MЗJH;ai2:tZ'YBNx|yxy%Idp9t">둈2ē'bJdp2>$J|dgxJΣRbdb[zg6i#J#ᥡnenOmrxƄF:6>a\f]̓.F'85ؒẓч_aV}~mnݎ0:UšoV/ojݞbM,oIdbqcxZf?Y6l!#/mF5W|9tM?]j4]5>%pD_4forˤ*BL)z+JOuӏvtCu_!UD~JUCz‚ϗ^ƥAtXwӵW32+O=q>+ endstream endobj 18 0 obj << /Length 1425 /Filter /FlateDecode >> stream xn7QB!ǵ@b8A֎PKwΐKz%nc7p8C\FNRFP'5VP. ) r58۾R+$YR^'!ZC&WP$Q8p(XX7䔌%eR*"EuѾ1Ų2a,/'*@:#_7y/j19彏AE'NpgH% ~i@ 1Qg #f{@IQ)|ɑ%@ I8jX%@746 ޺#W*p9gHzOuܘ1N+DRQ \Pðex;G H7@J# U-̨+Fu@"!\-D"Do`I&-Iw%ަۆ6 翘a^"a6s~IJ=l䛀k &tAxDN If 3"*h1%u#QH,C DJhz#gl&[ȏLt~JC3i3̄M D)uw=kWD+QF,~ΚB9D4>gt="pûyy,?vb8oDqHN=F7RTqQ;2̲4X*P8zv@RӎQi ;a5D,<0rb#rOn$)> stream xuWe\۾顔fC`.ahnC@SZAB$.}s<zևᙆ65,"ع8@@5T] l|, :#?B@@`PY cTA@.0HPa +j!N0o;B, Eh9;;BZ`W * y?e`^pRK/( vB w#w `(дX  9k@f;Yqp@NF20 \5VCyqS7( jHnΜ/7 ~c` q.@:^?H߰ ptAl/;|/;bZm0Ͻ8@ . ÁZà^Y8:l_QҰ\@vnAЃk^\RWc0)AW "p8zO G_2A\!`k Os@v.>p:v+(,PZ!P[6pi+78A?ۿ6`O`~f%b_vY-E Gn4׎țzHJ(xs dj ىW SȽpn %xI~Q'&sޫ &C2=H5H w1X mt~V^{!|DLlQ'h5{}f7U TVsfՠ3*ȅ.ivhjGl7L=%bRQ+Fk6Li16P~#5u|E˛H핈e[`@NL {&5$RޝJ~2d^ ﬑}5? y̕μ-߈ 2$ޮv]8;?_JڞcvcPٕ;J0 O/%<5Ë'Ë24 |\.EnY_{|n4/-iM 1U̒?;/uM;vnc^C!Y̢U@V|F:!q$q}&y >MJ=zkӳ2rjCc\? P=dP=su=(4A/ӯ)~KM~+-Bq%0EQ.uЦuGm֒uì0V.wq;k20RD$]Z0YgK07,ϝ.ZHt88S_d-8NL^ YD8_qY*g|<%C!FFmcT؍yס*#Gז4XN#qf;j58M Zюn*H@2t2( hTpp?f2<Иu凰{ OЬտR-hKV)lFYݓMt:/u>sߡ/A_\(a<$GO=|,•6n@;! 9Iq!yPqEՖFR1|\hs2/]Y(S4,|@S{ae6@Yb: -Ey~&*ٞjdx6`^]ϤS]P;yg}3@rgj՝RٿU5~m jܚlȿ ]2y~%%|ܿ^-ue2~+S콲nsV@o6]d#Ra(QLJPk,vx2.p7!ȠiEx:t1Wkr^)~'n jO*g8(2ʳPCJ1;pzDjD J88E:\&mI]l v&3NM\w?EruNTJؒwRN"[e@M沣 wWlWAo",.=f͝E 5 }$v%h;5Wzϓe'x.øsjGHR7^Q1.!*7q=4h0qHQ;J1kn1྘SeUzHFOcîQ(mMHP'KP(4#Q&>-tTsB[5yvV5Z892ClxȩDܽKT`%ryy-VڇYyժڝ \Ρm@rS^c;RؚB"\#&#mPv-υ}h{t݉?e^ulǑ7&5]aãc.Oɲ ܖ%-ٕ#ZS۴D,Ё_06 iVwg}>!KDbHH47ȷlQN,'$Û_qj .s_%$|q*nC5$gzjR_WhZLdœV! ?p4?Fm]žz{Phhv=59qWͱd0kc֨cx:?J@Xcun<ͣBYzMFv<aG6NI#?V/^&Zf ܃#Sⲡ2ʃC%D'|(ڨћt܈74cئ*ؾ>1$4e9inڴ zZhYX%keg&ExW~I4kg-9$4ܴZ5OU#G:GJzQ?>ᑐۤOȝ!OҶ+6"z#>|\3[3nUH(lDc,_ ^ݘf& W~gy1Ra{{ &'#1Ӵ>bMfKt)::WቄdOJ YTê^C})D| O򛯑='ܘ2gQ1|;̀tz$nѷD`4w`" , e*ӟC<_^|ƣAg|lH+>5Hrk}[IMWM.X'!$%#: Joʢ&ސ)=@kD$# HtҤ@[ҀDңD%=!#jNbp|(ZX"// "8]9i{V.(a]2]g"UK#gdY.t|qq{,flس l9%_x'%M#`8=wmq;g#]^m{KQޣwJb90,6qpx"3)ğ~ &t ߮&beAs@TvU/ .mlryQmw 07dWEl8C )hfJ3o*_U)9w3o7ruYߟV2 /6ezY{tZT9j~q'9T9#87qEU0s/c}ae I-6&vً3ɑI#iv4qmr9n+XO8&#FGd?79PE|":)@<MA2^܌/_SgTwf5.%:زi->rh7X?Wy /Rԣv+b!$oOrDݍjyB Ym(і_yŤy%XDuCx9ɅYYtX us@f: ̏hD {!lk2]MYu\۬Zwyf"P^ 4QzjT ƞXZ'ziwAx6j#zX,/b8P(wD]nbe/6{ڷ% x$Kd;ԇ2Z>ɾEU?d}W2yP&M$f2e_:.?HoJdD΁TӧG9lrosK4P%| [Gq0~)Irq0&~טA5iz}ZII~Ԥ >WmOہoWl!O}Uj5;3rbF'|a9ɥтV7FB#7P2o{Ri%_?EWȹC%{S2ʬT;G8 AR^4kzK)&4MdPu ԥo_GE-]VNwqf䟯'f-}īw[O+NUyIccn2~f4YbkV2* 5l;wi>1N\x'bѿoos- !R%*j~h1{櫏1nʝ9}e!ъj5e0@ mEA#C¹~g6z1̑XpّiΟqo`pyrG:UAe`iMZ䪄B/}<]-S'LcKle ;g!2 gC8aF"-5Iyac۩OJ,RnE5DJ(zR:+yVa@kA Yz7 EC"`R#8; ,z|J4UۀX>_Yd!Bv Q*J,_ˇ'ux2OPNlo $_VիJ+9 q U9**ӈr10.=oו:tU,۪ğwݪYo}qC_ r،xm%0k)2E>u߹x1VZK @T5F~Q~˓ b/˝o,\J[WFra?*) *A|nQ2Bkf0^x/ګ/rĥݎ 1vR~(*^6a{tCr7cu G ȵmWumE[4ma7B#u=~`vd1H> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203922Z) /ModDate (D:20121113203922Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1008 /Filter /FlateDecode >> stream xVK6W1AHeX`_Nl5|eZjKM}gHo.KMrffHQpA_R ADʣx}P Ik rHklЀDR)$:ӯũv75A (cǺ.*52zW3X."2 ٫⼆p8 Wd _ gq)&`M>7'MhFC88ULt3q3杧3F/" D{x`*]loS90nGޡ\zTXIFu"Zn^=oo;xG`v|y~x͝FMwi6VJDe [px^(#؇"{0k;|L?tvM)"0o.GKf4ߵr8lx:)*-i:uC]${cb5xv9~zu}5wN ,.YzR(x%y:8ig|t|Iqg;#?#Ƹbq2|k\*37 ,r%ʊ%?kslYWZc >WSW[0#RhYKNFOwFgvL2U{,C ߐ$6Oe*[4}{6 d6ZgkôpxXD\*0UAw QZȨ^ãR(RM_J1C ZOM]|̇YU7];-uW(r)_꾋{w,8EDx&^55_lZBA-P5^'_DŽH}Лz0v[\ވ$dVc endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 83 /Filter /FlateDecode >> stream xʻ ]y(PE`bh'gjy|CdV$ Cy&8*DI,mǰxUZA  endstream endobj startxref 17165 %%EOF beamer/doc/Makefile0000644000175000017500000000611112050430506014060 0ustar mohuramohuraAUXFILES = *.aux *.bbl *-blx.bib *.bcf *.blg *.fdb_latexmk *.idx *.ilg *.ind *.log *mpgraph.mp *.nav *.out *.snm *.synctex.gz *.tmp *.toc *.tui *.tuc *.tuo *.vrb *~ rerun = "(There were undefined references|Rerun to get (cross-references|the bars) right)" doc = beameruserguide themes = AnnArbor Antibes Berkeley Berlin Bergen Boadilla Copenhagen \ Darmstadt Dresden EastLansing Frankfurt Goettingen Hannover Ilmenau JuanLesPins \ Luebeck Malmoe Madrid Marburg Montpellier PaloAlto Pittsburgh \ Rochester Singapore Szeged Warsaw \ CambridgeUS \ default boxes fontthemes = default serif structurebold structureitalicserif structuresmallcapsserif colorthemes = default crane albatross seahorse whale dolphin \ rose orchid sidebartab lily structure dove seagull beetle fly wolverine spruce \ beaver outerthemes = default infolines miniframes shadow sidebar smoothbars smoothtree split tree innerthemes = default circles rectangles rounded inmargin all: $(doc).pdf beameruserguide.idx: touch beameruserguide.idx beameruserguide.ind: beameruserguide.idx makeindex $(doc).idx beameruserguide.pdf: $(doc).tex $(doc).ind \ $(themes:%=beamerugtheme%.pdf) \ $(fontthemes:%=beamerugfonttheme%.pdf) \ $(colorthemes:%=beamerugcolortheme%.pdf) \ beamerugcolorthemealbatrossstylish.pdf \ $(innerthemes:%=beameruginnertheme%.pdf) \ $(outerthemes:%=beamerugoutertheme%.pdf) pdflatex $(doc) ; \ if [ $$? = 0 ] ; then \ makeindex $(doc) ; \ pdflatex $(doc) ; \ makeindex $(doc) ; \ pdflatex $(doc) ; \ else \ echo " Compilation failed" ; \ fi ; \ rm -f $(AUXFILES) beamerugtheme%.pdf: beamerthemeexample.tex beamerthemeexamplebase.tex ../base/themes/theme/beamertheme%.sty pdflatex \\def\\themename{$(@:beamerugtheme%.pdf=%)}\\input beamerthemeexample.tex; mv beamerthemeexample.pdf $@ beamerugfonttheme%.pdf: beamerfontthemeexample.tex beamerthemeexamplebase.tex ../base/themes/font/beamerfonttheme%.sty pdflatex \\def\\themename{$(@:beamerugfonttheme%.pdf=%)}\\input beamerfontthemeexample.tex; mv beamerfontthemeexample.pdf $@ beamerugcolorthemealbatrossstylish.pdf: beamercolorthemeexample.tex beamerthemeexamplebase.tex ../base/themes/color/beamercolorthemealbatross.sty pdflatex \\def\\themename{albatrossstylish}\\input beamercolorthemeexample.tex; mv beamercolorthemeexample.pdf $@ beamerugcolortheme%.pdf: beamercolorthemeexample.tex beamerthemeexamplebase.tex ../base/themes/color/beamercolortheme%.sty pdflatex \\def\\themename{$(@:beamerugcolortheme%.pdf=%)}\\input beamercolorthemeexample.tex; mv beamercolorthemeexample.pdf $@ beameruginnertheme%.pdf: beamerinnerthemeexample.tex beamerthemeexamplebase.tex ../base/themes/inner/beamerinnertheme%.sty pdflatex \\def\\themename{$(@:beameruginnertheme%.pdf=%)}\\input beamerinnerthemeexample.tex; mv beamerinnerthemeexample.pdf $@ beamerugoutertheme%.pdf: beamerouterthemeexample.tex beamerthemeexamplebase.tex ../base/themes/outer/beameroutertheme%.sty pdflatex \\def\\themename{$(@:beamerugoutertheme%.pdf=%)}\\input beamerouterthemeexample.tex; mv beamerouterthemeexample.pdf $@ clean: rm -f $(AUXFILES) beamerug*.pdf beamer/doc/beamerugthemePittsburgh.pdf0000644000175000017500000004312412050430534020007 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1200 /Filter /FlateDecode >> stream xn6_G8/-iM@ :!Ild1G@yTzG 2LRHi9Y!#k8A7(BI4!"$Ha$p;q |DƄQz ه2=}z+6:K``[H*zC8-s 0a!PI[~G7] ogH_obٷ \9z#_ ax3td 'q1<XL,\?~ORȓV>qnpa`xDN c \(qF0Qed>ǔf!2C8{LZנhe"ASJ|oɐu&M2rib_fX :C#%z6މW027~F5D >WpzDG{aAILNEKO1E@*1*c!.:tb)ts?6ָ8 V&? 6O2/@2 rժ-n_6zY7=cw_~ TpTXIq&{m#M׺cջJmV+f]hUmcͦ&[3q8u{u纾̓d6EM7aL4 pSE?U7زk;VͦV 늎俵+Pw(@B9,* aS޴ĽóOP^wsXS#mZ&@Wd/eB+mfh{^LpoĠ$d]jc;F-~! ;u3p KX딖1j@6J(`T R%4q5#) kANzJ?#cֳmabC 5@q Ky`5So '(i;BTKA> x8>L ڞ(:la {je*՛Z }՜{R9q6 endstream endobj 18 0 obj << /Length 1627 /Filter /FlateDecode >> stream xYYo9 ~cUbhu89x%ugf#uѴF}&\FތXw^#oF@gDADXA0d1#磏}5RI& % I|8彏r]"HrNDHE=DR,Gd4$@uUz 2JRLi1}D)Goa@ ~p)\ɑ9@(5C^r뀤``[H*!#C$0L4s԰=τ[~ qd.͋TwOg8Z3%fKud5%#9f Ps&[6u&oj`ef N>Y yImI5q39$5$ps!Dee>8.sd y ~)^4@6iEmf=Sߒz0L2Ce$f 9BE8Yue >-_w#Z S6S&uB)yYy5[䭔=EG@ƣUpcGf< mĮ:=6߱Tf!wNF^I sQ%t0-fca8㻓l'cj~:[~ݰŰ G1 `9Ґ1F\nq{{Wzy#W3El5}J=9Kr8[ͣ՝(NX5qZ)/ (q:`@hZX.f虎u!p自ϤI7)2m&u2搳MA%[_1Pvuϝ.3ګAK #Ώ9^.g5 +]e tLf/rEy)Cʸ_qk} Wc|x"m@N8zD圗[ٰyz` o>l1Aa+)RkB Z]z=+a7>}1{3 >!0͉㴋vp ADyb96B `ɪEG@ҀII,!/`.2P>ȴQ/d 3 mgfP߫` gkqH`-h[2_y?*STӹɀcW*p|-d$j`}xl]>}ߘo\O{Ho='Mxbvx_ b7ֶJK} 0ZDgF8r9_ Y[cGBp Y@0Oi=(,3v6SR*AvϓdPG7p endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203907Z) /ModDate (D:20121113203907Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9l endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<8454CAB22B892EBE751DA535F5FAC687> <8454CAB22B892EBE751DA535F5FAC687>] /Length 82 /Filter /FlateDecode >> stream xʻ 0CQ;K (aWZZ ~GW м@@$Y>61*Ud׶my<T!  endstream endobj startxref 17672 %%EOF beamer/doc/beamerugcolorthemebeetle.pdf0000644000175000017500000004272612050430570020162 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1196 /Filter /FlateDecode >> stream xWKs6W(͔(ޏc;M54$V'cNEʖe=;XrƎGj k2"Nj"\mǎTh\ZiE맗>&C=0_$zk Y]CDhGduN>W^º]mސBR&) [R~(7mep۷[\̮S|~{ݜprʹ|sB#n9!<¡KX~R J1/b^ (%;kNTMn64o˦ 02R(!rv6ۺ=nn*Faډ_٫~DHyA9KvvMȒLST P ֽuI*0q&gdKe!  5Iǽ$3J ]wIyd!cS|I$NS-85YX<R8x~EۛTN Yxa܄w3I$p#2< vǔԙn!͓*S&,Wxz6V|6^x̵`O2)I<$QiTOqÛ?ǝOgs,B*jlij=w^+d8> stream xXIo7W(r-5 ^nI4IZ-Y hȉSn-VO ?*#& ʅ!|2>vB3@*wL5j:GR N$=wx%$[kGbcS\ɻvNaML>\FR&i Hzn#zXQ7Ur<W% 9_n^PWf>97oApRc}~=I{AKQLjF?'4.VF2Df.QyZ:M1!NF// =!Y2[Ha9!nJ|!H%d}oa_R"go!qY} p!\'2^L#Q а[ +Ø,PNACPH h6da@0d_IE:1쉡%F~2dpL /Xp=đ8”ԥ`_b0ﳄdA)/Zԣt,|d~Yh~UO])Y%YؼL{Q`&R (O9+9p118/Ilr.bd.2|)JYBJfe:1ɠ) { :"cf;WEN{Jj̠A4e:Hxf`<[yVVfaE8^ϺU0:+TZZ1K, OrS>Sz%hlyw$"IDVw/"+ w x F*j|3?j\C[%74^cb PLhٲ&l5Mh:- ݷQ&K,x6CcE2*!{5mܫ ghr3'I Jtt*' 4?4HFrT[ţR*,cS.L51/7d2(תےy:$PY1S­80г 굚^;  b×s7!Zpw>cD)vW}ojoogXo5s!e2Eu\R!Cᯍ9jW~PVC (2߄`Dcޯ fq5l|,>d}ݱx,wc݁;d/`2zOv3h|eכD:]FO8$l頻`5p(G|<#&wi|[)g8yx@~@O}0bx :}eY9ϸp)-[|0 endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203935Z) /ModDate (D:20121113203935Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<1AEA4B3CEA8C26733CC2DAD8FE211A1E> <1AEA4B3CEA8C26733CC2DAD8FE211A1E>] /Length 82 /Filter /FlateDecode >> stream xʻ 0a;I #--LFL|ŧ_gC$aQd)P7dPޥJzV8>*>/~/7 endstream endobj startxref 17546 %%EOF beamer/doc/beamerugcolorthemealbatrossstylish.pdf0000644000175000017500000004360012050430574022330 0ustar mohuramohura%PDF-1.5 % 13 0 obj << /Length 1218 /Filter /FlateDecode >> stream xr6Q)QDZ$M&!Ac%n>RH۞@,.0h}##ᷨGQsl>z4KgO>pRaBEIR; S`S0$MgDS$Vq2=%rQN2a2oH&)dl\b|\եGqvU[.p{jP$Zh>_]\VΪ$_5`x"{C\.tvvA_Jlѿ:'Hfyb>? c{ͬj)"拲:XXIk,f=v z>MIOH+s!e k2Z&p$7-x 3!i# HmN=(A!)!9gI t"xI"9 V~#pcl!P)5&,mf2R`CH*:Úbv,;%`m>- tIw> 8/$:1zElH$^~#QHtm'RC*8)w3x@N@O)~sm tq@L[X5evA9.ZK[-2 eJ BG&EY2G Pj\Fq^$)"$I|JA^+ҟ(tMNn2ww ~ X^džU7Ҋ6Or Hk} / N4ա!p=_n>i3K(O{CHJ+f=C*b1o<][x1HV)) Yb"9A9W8uF= ڗ!0 1:jYƪiUVvBД7armY7ŋΗ YMHl%5ǿ]Ϛj7ie`DH& YI?+fCq[M.Ǜ *fۮ|\.U@ahPablZ jfe|jUwR6r9/ZXC 9+rb4TW2] gR&r8Ϣ/m:Y>rmuAjP/vy.ֶj^~w}LT[9  endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 272.126] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 17 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 20 0 obj << /Length 1541 /Filter /FlateDecode >> stream xYYsG~ׯGR;}87YZ@[ߧ{]+ٲ$TZ3~[zǞ~aGދW3N~[=ǡKiP) ʅ!˚||Q+k'?[H֐P$Q89zY*a]U|Y >JR& ,Wp^]GAu2 7EɻDP"9(t2;f% GV8Rc׫zAiv{A*K`ohp2&bR C/,a.v$7ڹ*nb⪗g% ze,0wEzd[ Kq$ęƨrJzpǓ&`T"=EC;29H9%GR O aY]^OOYS!ȘUL.5Yq9 pLTgÜ"1pp9O#G FܳL:0B#sT]ޤ!}s> ÅuC|8zK.z̤YiE\H>C`#Yh>Y,oKa#ɼdăRsьorغ^c7fe#s&I! \(ԖqF22SRJ <Λ jdɠ x {"S1[WENsS i< M)sj= _6?΀rMwQjNQ81TXHBQ\Tn伂\O@AJD,1+7kMw7(~JGܝ-_e6!f@L>hv;AfH2}9z .KA-8OBU7ƍ(e6.Bc7쿡]:wBR2G*A!}V@Ŀph(f fe ʓy2w«v53YM. aa5Us[X+cq}Pt+l5_B !U'>ţ1u8O' zx=32"@ai_ձ%?02iTB6%w88H> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 30 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203940Z) /ModDate (D:20121113203940Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 15 0 obj << /Type /ObjStm /N 17 /First 122 /Length 1168 /Filter /FlateDecode >> stream xWYsG~_яvDUUHB,lxYίO̲ dWǔ4;3}~s $ :B:\$D4.rAzI C"@JbydD̢ (8n/[8L\=K .RELqW t}%P*V*Dfam&uSՂzJE?PIމŶX`BΪ5 <:5oD:`9 )\+ڶR8FZkq亭m@ps#(8܎{@i7zSkQi4XlC 9e~%B:y>-?mӦAkM= ) IgQ76?x_2)mf szOt3qݞԲ&u,5d: gtk=gjy!I\}媙CIXxS49ϖk6]'Ir|sk[qccaI8GZ隈.pNW\ S ׸ s3[ܪ"]%~K,գʰjU(k|_oUoM )bp8S 9Lv==cvdHr Mvjd"Ta, ۛ^C*],]L|M$e\DŽ[gZcPW'nmb+o M]Ѓ]u@DfmTA1lK%g7U4}ag=‹T <4A51EA3708CE2FDCF8B6779BC5DB305A>] /Length 86 /Filter /FlateDecode >> stream xɹ @A8bH@HMEplTB3Ƞ=uQ w6GayϦ endstream endobj startxref 17968 %%EOF beamer/doc/beameruginnerthemeinmargin.pdf0000644000175000017500000004311112050430602020504 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1184 /Filter /FlateDecode >> stream xXo6_G9~_OÆEh{)J,,Y^wHɲ9p&8OwlF#&lRW[3"V*"\hr~_+4WdD98F sGO ۳Ӭ9#"?9`l82#if ɫ- uU: *g)&Lޣ%Yo1odQxdI:"zM" V K5o{9n=#P0Xuljϟb)/٩1P `R+"ER99>rq-Cq,'*pWc >n\"qd!Ϛ'gF3Fy[.)X;a;' <zDOҁ9Q(G{ '}nn3$j͸vIrŜFFN[-L˴!"eR%J9aeOe93>OVDJ23s%'wbӤ(_Fas' x)ʯ}#9:6QW0yj"/9wT nɝs:vPN?,&߾@eY\KHt,.oŪh\;} uXZ6WŦ wlմ:Ϣx&~h#s ?ײ]:e6mޖv-R3Y/;"_8ªq_,R,c0n@2YнW賒rxUXߡvY <\@ /]/7_3ɦ,˃c 1E0<@q3>yg,Sf] 8*AE8%d>cӶ*v?/UQ-2 xeD˿gBMfS WQt\=•;yN T+.M0[s@IĦzSn6]v37ZXv,~p hպg0P7hL3CFv<+6vs0o;׏?i Zr`[7EvBe72]?r endstream endobj 18 0 obj << /Length 1421 /Filter /FlateDecode >> stream x]O9=Nq=IPUׇؐC7^˲@Zx=L;g}ʃGZ> .{etO]׬ U9L;ůDp?i)kXu!T4;6]٠F ް[FKKP QRL!l˳m$,[h.CgKA (npU9c`y!BLڈQ]g|E3Ҹ Fz" V:4;ϭO/ v:MЫzMYp }m,JFD|I h(14MD[>жPeˣ̱OVd"ı ;v_ýv$12&V ,p)FK,gUV[SZ I=G4CP!S++4Hi"A=UGS;Bu&Åa M Ajrw)ѾD|\TCds5G2m 'o Jd$p"^TGg $L['VU>mE|4ݎ%̞+L3M<)\Y'Jyz tyz)wG4?Wi+ @t[@Ȍ ̫h,˸~TM|Fc0Ų9en5ш&2`Gj>LoPY7lw{_1̞<3Ҹ~.Y+8 |9=3?p7ەcٴtZgo\Vemjo`qr ;D0ɞY4j|sNF 1hxǢpcYQyjĈKU]` _)QH;LJ^W64_ؕmA)%ĝޡ>DwNƈG> stream xusu\6% CIHww)  13 CKw "!0t"4H/{w}u]Zbc5QpU!`8/$@ni` :y@[\66C _A-7th~I~qI5_$@rtp ~!^@0 u/=SW(A~03ao)߈/ 9O@7J)Ԁ` i?bumU@?p8PI>>-t| $C3e h0?usC|;3<ϔ7s"kGIC?(OR@n@#i a^d0_{-[8 0{epڶ@Q<bAq]bMtC]E֦r-;;,[aB(*΋EBIK[+-13MjU%^#&ąA<LZD~9ΏYN Cu =I2KXt󎆉k//IIlff{ Dp5vf%bȑv y$j'waSai|LW BE4ݥif>Op (m*}Kr?Pyib-]5 ͵CO,"ښzg)MZmy+u#5VׇQ-P!¼e /Xwg%H(Hِ)9i،cGV'VOq".zhoE% myueNEFxf7\/mvqКn\9'Rik'OgF薱e~Ge18&/}PWۙYkSli CB :GvmWTnl1=x!2\}rY$UB6hkW}Gz^FC?q9]`ta;=#6ILi$C7GWAH*qeˇغ񻗝UE رkgۂ# ^fNb-{'dCMrX/|x[Erk|%\ܚeys3#~kirQIl43n=x4LVRwp,R]ΠANO/'68.*XGk$ɝ&ƒR2)\q'YxY5U0u☩^+z%i ۨӕ|R$IBOzMVxoCG$P*+N_)nu ,J@Fsˑݢ).J㉗y n'Pj+K 3Ʌ岞)̇֟,_D,Gi: &K|˹nIS**]Τgim'm:+x9;~\T*F1Z%(pPT񕥡~6y- "cncGND9u8ȸMå[Jry* mE+ondacXJ;";6$e[hAC ^%w)tEf-phXU>j~dº'yfL{sI{Ӏߡcwb %B@CTA.?\~}k݊NPy!UFߓ]4ΐ*b%pW1S4'oQIsh5q۩9 _\PPKK`"k#H!% $MOb}Q,[U{%]M {8%MVh#h*'MĽ^7 &#"@ pU+EI]69*ՃPeU%tKV,h8.?ϊ f5LԑYrrgg⾗9; T 6ٙb4U/~inL枓`(abz? +/G+7GH )JўlNӖ'*ǝRZ7&p-43ܫ0nWh4Pk۾G4KqٛD{\,ps\5 Uܒuee0[H´tؼQA7uЈ*]Ƌ1lB:FZ_ħm*v\tM֥[!āB -eRgŜ^OsFjnl$}ј'LY;M: M',X/嘎hWG)Jo X#Hl~Lʷ51pc9tŊA[<„&L߈ckc~g5,Yuqb?yCD7RSĘBJf㚁BX4@xUІn]md`}Va?v"@4dS( }z$C;fƨ1|T( ΉHV~[<(R Ք|L=5R .uTU36a :ꭶ^Qyg_yP~oԌlt{󊢽t348L+>Rv$fUU [K$`+}I">b)Q~meWFA VxO\{WdH+ODiGLG!`4 71O_ ۸Ӂؠ ʙN7ߥƟӽb(k9j k"X6ĕ^̪.raUjNevh0?9v ɓ?U@Y6q'}LX}ӝ})Z[HNYB|̊F͓m*Qi[at}L?Ѩ/y4v1%] On4 yQ0n mnvcz[-;O pX!Q?( xhz,%۝c̨};ѽ3I sCw7m^&^њn`V%RWWbp#i Tܬ3d ;9u;\F}*L6\l g\ίI3_o/Ƶڱln%}WtˊX7ʱ{q|f^Ou^3k"l?ԭW: J VJ˴C$QX @PsoTf%@ml饴1+rٖOs>U^jꆇjs/KD\4,>ՎOi RijΘvQGπ@)֍_b̜Y ˘:n+z~%O?.=]̽ 5=wbj9I]\2(bs,刞3$ɟ4#r?fӉLȅ\ZTc׉ofGnPHSdVRVʦ|QwY.̺ӕ頊`pٴqgƖ* #ݬo8M@(Sd(`MgM1N! N/2g+V:ӫG|j -fBQGcD5]~`uIWR޾n"Q&8-%ŰNv5ų oiYi7U&2QJGH`Y2ʝ0Kޛo|YU?_Y*herȚQVQ;gOZQј9*p]O\k45Si HSz5E(+SW"bƑj R#ƬMД?6{ f aZ;QeMdck]K(k+7!W|ZD2>*qfJWBwxKxbd28&PW yJ4Q# qN5bP4~G9rC)ASY wE\h/^G}_,۔8Ѭ8aeqk"Z%um1HZ+8tJ 4lv{Ϸ1˳O1\ OY|$^J8+~5%& SR8 c}P\Z aI~tюapbL(_feH V(k>}A@:ʄ9ZX6]\/Mn>hpXNS5]>L' MKԻ-3!XxpB .QkbY*#[SR% *oTpi9_lG-Qi{4oG+9,/Ug\Ȩdi) T>ma#-EyL-.O@*p"ߎ /:M|G#YW[VUw=Ie;^5:/,9}"Gԣ 5 qXrm%óOٰF)ׁ:l˪¤Tp쓓_bQ}e HB"y#~G|z*ZOU&ޞ| íe)(n̙Ĉwpc ʪRԣ"^.R:(D(l@Y':#fj,9"%R,,!QlS: [0Ge(`H Hg.ѓQU#^χ̝#{.A(m]hZDمMʊm\cJ85}f<eՓ;+;B ]GQ׶3]aQ9b*V078s}~8\l-bRm7a^0iUâ=!\Bc@ڏlOYO۸FKp*ߓ?-*E{IE}\9N{XrVB{&ή}`b C9ԭ'Ec[9m҄Su5"v Gtp8=OyyM,_m1I53a<U )>\clFv\)_ʧ-1UČ1\-\fܾ1 g IJk?<Tt3b꺗V]0P}_b".]3Pt$1q煰q-$:TeE؍x sce!ECDe* &ꥼ;@%#P㨻(W3&"i=]B_PlW/1/2ayQ@^ң_cveLdaʛSОԯnwN9,攖IJNPFq _5yi9}{3jL,0g[6}ϝ𬐡M,,33owuP:5…Qkx~"KG:!pKwÎJl4e֧'q +j\>g:# &X[84P^j&`ZVl˱Q3|5եg(Z6hG*2J[d1:FwP9Fﲘ ?-Y#ޘl}%1nk> xDiUDEl2jS{{}i:m]*Y !S_THd%LG.N"SH}*v\M|1I #(ǝ h3^, D gۭ߲2E&cr[Qy: O9r[kX@-Kmǩ`BL׭SZoٮ 2I_$q:4*N,tl)KhdAFz[L~:3-3uabUqVlPX 읛 TԡLFH]t#l9UDԜ&9Sicw޵ӆUqj!T<صG*΀YDŽ_:nEa҈^T6HKdi%[/  %ڐy&i:_gʾ8%tpN<,Av[?|UOsVdkW.v^<ԭ{`!]\ UGx]f7;AO% v466mټaQ.~!Z1\BM1[ h vu\]/U(s*qU+ł;"ީBHvMȨUX~@ "F_Ld^QM-cAy)Z!ί]i|u2i3ӕ+|-xFK3XYNPߩUL[$)m Ay /47$Sj;h[F#rgȥ"onsSݏ_ R<Ǟv%ep55 L}܁AN=ӋX+5,;Q??z endstream endobj 25 0 obj << /Length1 1199 /Length2 4353 /Length3 0 /Length 5123 /Filter /FlateDecode >> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203945Z) /ModDate (D:20121113203945Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1022 /Filter /FlateDecode >> stream xVK6 W"KKWN$ rp1?fgח'iCȖ($ /  I8>BPnh _B?$!i A* \.ȺphKQ-γZguE‰uŸ^Us(O~Y!E(`8N"%Yel$6/Ek&D]2o_:5#pDTK29ٸK әWzqr>E.d /4֓W 65> 5z94 B<4 >-YhF΋Z]u^뇎f7" 0큒c}1X57֨ VJD버-g~5<+ΰzSj|_.-bhoGO~999GuT)P=,ٳR&emYדa$fqJP뵦OZM댃~M6D.--pO)KPWxז ]Cp  >>BŹn#bj8O=vW\&vem,^E6:9GiY՜G][M+oV[CZ <616B2931E48E34E9BAC12579E15318FD>] /Length 84 /Filter /FlateDecode >> stream xʹ0CQ " >R Y~84/A"%I" uy[Lݫ̒$Jׇ{ endstream endobj startxref 17659 %%EOF beamer/doc/beamerugthemeAntibes.pdf0000644000175000017500000004343412050430510017237 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1253 /Filter /FlateDecode >> stream xXKo7W(]آi YEmzm-li43\ɲb[6bF弾p%aS~Evt|FJE M5}-PJ /p9VZ9P~PVs.gNQBƉ%uIKkHՎn9YE>ThTQ88(HIlLaFJY{|M%eВ%-@H=*8kf9n=㦡`-! d§3ҕP Z`@99>+X0,~ef>Qaw[qi4YϚWgF3Fy_X6^*9x? HANC-Xxx Lf^#M[Ğ s8Mb?FZ3q9n,IbN#V !2+@IJRĉw!*q8YɓYNF\WɋInFB"I:Lr?5ô=Jsy dN+jد* ~A=DI?tx{D pɽ]n|oXjԎjFqB'+h1cVAG lRk7"ϗ6n:V]9]o~Ȳ6VWesw|xܯDӠ[[|}9Ƣd0H-I!`NJT_AG][/];λEλڠ~PUv=FߖͿzt_Nr jX #!ab-;xFsL*Ͼ׫Mm{/NfO!xO)۽!fK?wtsïUŀ_y.8@#\,hh[ȑ"vi'p`Qjj|'8 8tuZoWpo2f>}eܛLUx>~¢5'zj];!>OXF>yzIZ:5 endstream endobj 18 0 obj << /Length 1771 /Filter /FlateDecode >> stream xZKo9 W`aUumEhܺ=8Ď_RIį,J$Ie05[5~#FP'5VP. YL6-$Y!GINF)}$Q!Id<;y$'] [6Pw|!0( N- T:+%039''ˑWtao IQp)\ɑ@Is$J\nh-| 1IuƸm79epJv VzX,u]$-%:.j ys԰`8{I0?.QiB̨WDuH?"!\u$|7I'MBk'-$I^"Of؝tk1 {⾵l~62'5q 3qr"I5 \(ԜqF82FSRgJ9O3Cu ey Mk8"Q6Q6);%uh&M!20L@hl?8YЖDlY={'YIBE_+c(>GtX="ú܆NY,~2wp^--zf,SY~^D|kh@Y-`_c T rɫpzMH/5SDE%|:,&gaؾf|קY5jv9Y}xsaFie C}i-?0@Yu63#W06?}8sBBW}Ipxq >m5D뢥inTYBGupYMJ=gl0bbE 9 Vd1P`z `>Vg4odְ.ٵͯoM{3p}ݲTb>% 6rT` -p]+jzc.yPZN_ּ g9,2.&WӴj/jvZGv,U l+HZPG R9׿gƜcZp`d`㠈R2%!5^">><Nn?o 9Qi@uhVГ]zRj#ZxVxWиgUYsaPr<)bµe.6Nr\K@+8E(yqCIgprjO)1+Cj< >~V*DU, H|cEU*Q6隰iRMpzx_NrQӼ\]fŊ4 sqs(nT/3h[_"{rHFV5_^-p =fe v8FxPG1e| pU>Oz솶V5 jMd}_bٽ2ݘ*%B, r4}ap[RS 0Ў*2\+ .`@:4}S!jt9<V|.s6 X@igcmUǼo_zGNkVPUFrެqr 'uPͫǦNj JomN4p*zOV(gJ}EzE JA<}5ɏm ^$r)/T(GQr^p{MʕHWE[ϴY endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203847Z) /ModDate (D:20121113203847Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9l endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 85 /Filter /FlateDecode >> stream x DE(&4rzB;2Nݡz 2DICѠ {Y$ǶNҸW endstream endobj startxref 17869 %%EOF beamer/doc/beamerug-localstructure.tex0000644000175000017500000017175112050430504020015 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-localstructure.tex,v 24853e6b98cf 2012/10/15 19:48:15 joseph $ \section{Structuring a Presentation: The Local Structure} \LaTeX\ provides different commands for structuring text ``locally,'' for example, via the |itemize| environment. These environments are also available in the \beamer\ class, although their appearance has been slightly changed. Furthermore, the \beamer\ class also defines some new commands and environments, see below, that may help you to structure your text. \subsection{Itemizations, Enumerations, and Descriptions} \label{section-enumerate} There are three predefined environments for creating lists, namely |enumerate|, |itemize|, and |description|. The first two can be nested to depth three, but nesting them to this depth creates totally unreadable slides. The |\item| command is overlay specification-aware. If an overlay specification is provided, the item will only be shown on the specified slides, see the following example. If the |\item| command is to take an optional argument and an overlay specification, the overlay specification can either come first as in |\item<1>[Cat]| or come last as in |\item[Cat]<1>|. \begin{verbatim} \begin{frame} There are three important points: \begin{enumerate} \item<1-> A first one, \item<2-> a second one with a bunch of subpoints, \begin{itemize} \item first subpoint. (Only shown from second slide on!). \item<3-> second subpoint added on third slide. \item<4-> third subpoint added on fourth slide. \end{itemize} \item<5-> and a third one. \end{enumerate} \end{frame} \end{verbatim} \begin{environment}{{itemize}\opt{|[<|\meta{default overlay specification}|>]|}} Used to display a list of items that do not have a special ordering. Inside the environment, use an |\item| command for each topic. If the optional parameter \meta{default overlay specification} is given, in every occurrence of an |\item| command that does not have an overlay specification attached to it, the \meta{default overlay specification} is used. By setting this specification to be an incremental overlay specification, see Section~\ref{section-incremental}, you can implement, for example, a step-wise uncovering of the items. The \meta{default overlay specification} is inherited by subenvironments. Naturally, in a subenvironment you can reset it locally by setting it to |<1->|. \example \begin{verbatim} \begin{itemize} \item This is important. \item This is also important. \end{itemize} \end{verbatim} \example \begin{verbatim} \begin{itemize}[<+->] \item This is shown from the first slide on. \item This is shown from the second slide on. \item This is shown from the third slide on. \item<1-> This is shown from the first slide on. \item This is shown from the fourth slide on. \end{itemize} \end{verbatim} \example \begin{verbatim} \begin{itemize}[<+-| alert@+>] \item This is shown from the first slide on and alerted on the first slide. \item This is shown from the second slide on and alerted on the second slide. \item This is shown from the third slide on and alerted on the third slide. \end{itemize} \end{verbatim} \example \begin{verbatim} \newenvironment{mystepwiseitemize}{\begin{itemize}[<+-| alert@+>]}{\end{itemize}} \end{verbatim} \lyxnote Unfortunately, currently you cannot specify optional arguments with the |itemize| environment. You can, however, use the command |\beamerdefaultoverlayspecification| before the environment to get the desired effect. The appearance of an |itemize| list is governed by several templates. The first template concerns the way the little marker introducing each item is typeset: \begin{element}{itemize items}\semiyes\no\no This template is a parent template, whose children are |itemize item|, |itemize subitem|, and |itemize subsubitem|. This means that if you use the |\setbeamertemplate| command on this template, the command is instead called for all of these children (with the same arguments). \begin{templateoptions} \itemoption{default}{} The default item marker is a small triangle colored with the foreground of the \beamer-color |itemize item| (or, for subitems, |itemize subitem| etc.). Note that these colors will automatically change under certain circumstances such as inside an example block or inside an |alertenv| environment. \itemoption{triangle}{} Alias for the default. \itemoption{circle}{} Uses little circles (or dots) as item markers. \itemoption{square}{} Uses little squares as item markers. \itemoption{ball}{} Uses little balls as item markers. \end{templateoptions} \end{element} \begin{element}{itemize item}\yes\yes\yes \colorfontparents{item} This template (with |item| instead of |items|) governs how the marker in front of a first-level item is typeset. ``First-level'' refers to the level of nesting. See the |itemize items| template for the \meta{options} that may be given. When the template is inserted, the \beamer-font and -color |itemize item| is installed. Typically, the font is ignored by the template as some special symbol is drawn anyway, by the font may be important if an optional argument is given to the |\item| command as in |\item[First]|. The font and color inherit from the |item| font and color, which are explained at the end of this section. \end{element} \begin{element}{itemize subitem}\yes\yes\yes \colorfontparents{subitem} Like |itemize item|, only for second-level items. An item of an itemize inside an enumerate counts as a second-level item. \end{element} \begin{element}{itemize subsubitem}\yes\yes\yes \colorfontparents{subsubitem} Like |itemize item|, only for third-level items. \end{element} \end{environment} \begin{environment}{{enumerate}\opt{|[<|\meta{default overlay specification}|>]|}\oarg{mini template}} Used to display a list of items that are ordered. Inside the environment, use an |\item| command for each topic. By default, before each item increasing Arabic numbers followed by a dot are printed (as in ``1.'' and ``2.''). This can be changed by specifying a different template, see below. The first optional argument \meta{default overlay specification} has exactly the same effect as for the |itemize| environment. It is ``detected'' by the opening |<|-sign in the \meta{default overlay specification}. Thus, if there is only one optional argument and if this argument does not start with |<|, then it is considered to be a \meta{mini template}. The syntax of the \meta{mini template} is the same as the syntax of mini templates in the |enumerate| package (you do not need to include the |enumerate| package, this is done automatically). Roughly spoken, the text of the \meta{mini template} is printed before each item, but any occurrence of a |1| in the mini template is replaced by the current item number, an occurrence of the letter |A| is replaced by the $i$-th letter of the alphabet (in uppercase) for the $i$-th item, and the letters |a|, |i|, and |I| are replaced by the corresponding lowercase letters, lowercase Roman letters, and uppercase Roman letters, respectively. So the mini template |(i)| would yield the items (i), (ii), (iii), (iv), and so on. The mini template |A.)| would yield the items A.), B.), C.), D.) and so on. For more details on the possible mini templates, see the documentation of the |enumerate| package. Note that there is also a template that governs the appearance of the mini template. \example \begin{verbatim} \begin{enumerate} \item This is important. \item This is also important. \end{enumerate} \begin{enumerate}[(i)] \item First Roman point. \item Second Roman point. \end{enumerate} \begin{enumerate}[<+->][(i)] \item First Roman point. \item Second Roman point, uncovered on second slide. \end{enumerate} \end{verbatim} \articlenote To use the \meta{mini template}, you have to include the package |enumerate|. \lyxnote The same constraints as for |itemize| apply. \begin{element}{enumerate items}\semiyes\no\no Similar to |itemize items|, this template is a parent template, whose children are |enumerate item|, |enumerate subitem|, |enumerate subsubitem|, and |enumerate mini template|. These templates govern how the text (the number) of an enumeration is typeset. \begin{templateoptions} \itemoption{default}{} The default enumeration marker uses the scheme 1., 2., 3.\ for the first level, 1.1, 1.2, 1.3 for the second level and 1.1.1, 1.1.2, 1.1.3 for the third level. \itemoption{circle}{} Places the numbers inside little circles. The colors are taken from |item projected| or |subitem projected| or |subsubitem projected|. \itemoption{square}{} Places the numbers on little squares. \itemoption{ball}{} ``Projects'' the numbers onto little balls. \end{templateoptions} \end{element} \begin{element}{enumerate item}\yes\yes\yes This template governs how the number in front of a first-level item is typeset. The level here refers to the level of enumeration nesting only. Thus an enumerate inside an itemize is a first-level enumerate (but it uses the second-level |itemize/enumerate body|). When the template is inserted, the \beamer-font and -color |enumerate item| are installed. The following command is useful for this template: \begin{templateinserts} \iteminsert{\insertenumlabel} inserts the current number of the top-level enumeration (as an Arabic number). This insert is also available in the next two templates. \end{templateinserts} \end{element} \begin{element}{enumerate subitem}\yes\yes\yes Like |enumerate item|, only for second-level items. \begin{templateinserts} \iteminsert{\insertsubenumlabel} inserts the current number of the second-level enumeration (as an Arabic number). \end{templateinserts} \example \begin{verbatim} \setbeamertemplate{enumerate subitem}{\insertenumlabel-\insertsubenumlabel} \end{verbatim} \end{element} \begin{element}{enumerate subsubitem}\yes\yes\yes Like |enumerate item|, only for third-level items. \begin{templateinserts} \iteminsert{\insertsubsubenumlabel} inserts the current number of the second-level enumeration (as an Arabic number). \end{templateinserts} \end{element} \begin{element}{enumerate mini template}\yes\yes\yes This template is used to typeset the number that arises from a mini template. \begin{templateinserts} \iteminsert{\insertenumlabel} inserts the current number rendered by this mini template. For example, if the \meta{mini template} is |(i)| and this command is used in the fourth item, |\insertenumlabel| would yield |(iv)|. \end{templateinserts} \end{element} \end{environment} The following templates govern how the \emph{body} of an |itemize| or an |enumerate| is typeset. \begin{element}{itemize/enumerate body begin}\yes\no\no This template is inserted at the beginning of a first-level |itemize| or |enumerate| environment. Furthermore, before this template is inserted, the \beamer-font and -color |itemize/enumerate body| is used. \end{element} \begin{element}{itemize/enumerate body end}\yes\no\no This template is inserted at the end of a first-level |itemize| or |enumerate| environment. \end{element} There exist corresponding templates like |itemize/enumerate subbody begin| for second- and third-level itemize or enumerates. \begin{element}{items}\semiyes\no\no This template is a parent template of |itemize items| and |enumerate items|. \example |\setbeamertemplate{items}[circle]| will cause all items in |itemize| or |enumerate| environments to become circles (of the appropriate size, color, and font). \end{element} \label{section-descriptions} \begin{environment}{{description}\opt{|[<|\meta{default overlay specification}|>]|}\oarg{long text}} Like |itemize|, but used to display a list that explains or defines labels. The width of \meta{long text} is used to set the indentation. Normally, you choose the widest label in the description and copy it here. If you do not give this argument, the default width is used, which can be changed using |\setbeamersize| with the argument |description width=|\meta{width}. As for |enumerate|, the \meta{default overlay specification} is detected by an opening~|<|. The effect is the same as for |enumerate| and |itemize|. \example \begin{verbatim} \begin{description} \item[Lion] King of the savanna. \item[Tiger] King of the jungle. \end{description} \begin{description}[longest label] \item<1->[short] Some text. \item<2->[longest label] Some text. \item<3->[long label] Some text. \end{description} \end{verbatim} \example The following has the same effect as the previous example: \begin{verbatim} \begin{description}[<+->][longest label] \item[short] Some text. \item[longest label] Some text. \item[long label] Some text. \end{description} \end{verbatim} \lyxnote Since you cannot specify the optional argument in \LyX, if you wish to specify the width, you may wish to use the following command shortly before the environment: |\setbeamersize{description width of={|\marg{text}|}}| \example \begin{verbatim} \setbeamersize{description width of={longest label}} \begin{description} \item<1->[short] Some text. \item<2->[longest label] Some text. \item<3->[long label] Some text. \end{description} \end{verbatim} \begin{element}{description item}\yes\yes\yes This template is used to typeset the description items. When this template is called, the \beamer-font and -color |description item| are installed. \begin{templateoptions} \itemoption{default}{} By default, the description item text is just inserted without any modification. \end{templateoptions} The main insert that is useful inside this template is: \begin{templateinserts} \iteminsert{\insertdescriptionitem} inserts the text of the current description item. \end{templateinserts} \end{element} \end{environment} In order to simplify changing the color or font of items, the different kinds of items inherit from or just use the following ``general'' \beamer-color and fonts: \begin{element}{item}\no\yes\yes \colorparents{local structure} \fontparents{structure} This color/font serves as a parent for the individual items of |itemize| and |enumerate| environments, but also for items in the table of contents. Since its color parent is the |local structure|, a change of that color causes the color of items to change accordingly. \end{element} \begin{element}{item projected}\no\yes\yes \colorfontparents{item} This is a special ``version'' of the |item| color and font that should be used by templates that render items with text (as in an enumeration) and which ``project'' this text onto something like a ball or a square or whatever. While the normal |item| color typically has a transparent background, the |item projected| typically has a colored background and, say, a white foreground. \end{element} \begin{element}{subitem}\no\yes\yes \colorfontparents{item} Same as |item| for subitems, that is, for items on the second level of indentation. \end{element} \begin{element}{subitem projected}\no\yes\yes \colorfontparents{item projected} Same as |item projected| for subitems, that is, for items on the second level of indentation. \end{element} \begin{element}{subsubitem}\no\yes\yes \colorfontparents{subitem} Same as |subitem| for subsubitems, that is, for items on the third level of indentation. \end{element} \begin{element}{subsubitem projected}\no\yes\yes \colorfontparents{subitem projected} Same as |subitem projected| for subsubitems, that is, for items on the third level of indentation. \end{element} \subsection{Highlighting} The \beamer\ class predefines commands and environments for highlighting text. Using these commands makes is easy to change the appearance of a document by changing the theme. \begin{command}{\structure\sarg{overlay specification}\marg{text}} The given text is marked as part of the structure, that is, it is supposed to help the audience see the structure of your presentation. If the \meta{overlay specification} is present, the command only has an effect on the specified slides. \example |\structure{Paragraph Heading.}| Internally, this command just puts the \emph{text} inside a |structureenv| environment. \articlenote Structure text is typeset as bold text. This can be changed by modifying the templates. \lyxnote You need to use \TeX-mode to insert this command. \begin{element}{structure}\no\yes\yes This color/font is used when structured text is typeset, but it is also widely used as a base for many other colors including the headings of blocks, item buttons, and titles. In most color themes, the colors for navigational elements in the headline or the footline are derived from the foreground color of |structure|. By changing the structure color you can easily change the ``basic color'' of your presentation, other than the color of normal text. See also the related color |local structure| and the related font |tiny structure|. Inside the |\structure| command, the background of the color is ignored, but this is not necessarily true for elements that inherit their color from |structure|. There is no template |structure|, use |structure begin| and |structure end| instead. \end{element} \begin{element}{local structure}\no\yes\no This color should be used to typeset structural elements that change their color according to the ``local environment.'' For example, an item ``button'' in an |itemize| environment changes its color according to circumstances. If it is used inside an example block, it should have the |example text| color; if it is currently ``alerted'' it should have the |alerted text| color. This color is setup by certain environments to have the color that should be used to typset things like item buttons. Since the color used for items, |item|, inherits from this color by default, items automatically change their color according to the current situation. If you write your own environment in which the item buttons and similar structural elements should have a different color, you should change the color |local structure| inside these environments. \end{element} \begin{element}{tiny structure}\no\no\yes This special font is used for ``tiny'' structural text. Basically, this font should be used whenever a structural element uses a tiny font. The idea is that the tiny versions of the |structure| font often are not suitable. For example, it is often necessary to use a boldface version for them. Also, one might wish to have serif smallcaps structural text, but still retain normal sans-serif tiny structural text. \end{element} \end{command} \begin{environment}{{structureenv}\sarg{overlay specification}} Environment version of the |\structure| command. \begin{element}{structure begin}\yes\no\no This text is inserted at the beginning of a |structureenv| environment. \begin{templateoptions} \itemoption{default}{} \articlenote The text is typeset in boldface. \end{templateoptions} \end{element} \begin{element}{structure end}\yes\no\no This text is inserted at the end of a |structureenv| environment. \end{element} \end{environment} \begin{command}{\alert\sarg{overlay specification}\marg{highlighted text}} The given text is highlighted, typically by coloring the text red. If the \meta{overlay specification} is present, the command only has an effect on the specified slides. \example |This is \alert{important}.| Internally, this command just puts the \emph{highlighted text} inside an |alertenv|. \articlenote Alerted text is typeset as emphasized text. This can be changed by modifying the templates, see below. \lyxnote You need to use \TeX-mode to insert this command (which is not very convenient). \begin{element}{alerted text}\no\yes\yes This color/font is used when alerted text is typeset. The background is currently ignored. There is no template |alerted text|, rather there are templates |alerted text begin| and |alerted text end| that are inserted before and after alerted text. \end{element} \end{command} \begin{environment}{{alertenv}\sarg{overlay specification}} Environment version of the |\alert| command. \begin{element}{alerted text begin}\yes\no\no This text is inserted at the beginning of a an |alertenv| environment. \begin{templateoptions} \itemoption{default}{} \beamernote This changes the color |local structure| to |alerted text|. This causes things like buttons or items to be colored in the same color as the alerted text, which is often visually pleasing. See also the |\structure| command. \articlenote The text is emphasized. \end{templateoptions} \end{element} \begin{element}{alerted text end}\yes\no\no This text is inserted at the end of an |alertenv| environment. \end{element} \end{environment} \subsection{Block Environments} \label{predefined} The \beamer\ class predefines an environment for typesetting a ``block'' of text that has a heading. The appearance of blocks can easily be changed using the following template: \begin{element}{blocks}\semiyes\no\no Changing this parent template changes the templates of normal blocks, alerted blocks, and example blocks. \example |\setbeamertemplate{blocks}[default]| \example |\setbeamertemplate{blocks}[rounded][shadow=true]| \begin{templateoptions} \itemoption{default}{} The default setting typesets the block title on its own line. If a background is specified either for the |block title| or for the |block body|, this background color is used as background of the title or body, respectively. For alerted and example blocks, the corresponding \beamer-colors and -fonts are used, instead. \itemoption{rounded}{\oarg{shadow=true}} Makes the blocks ``rounded.'' This means that the corners of the backgrounds of the blocks are ``rounded off.'' If the |shadow=true| option is given, a ``shadow'' is drawn behind the block. \end{templateoptions} \end{element} \begin{environment}{{block}\sarg{action specification}\marg{block title}\sarg{action specification}} Only one \meta{action specification} may be given. Inserts a block, like a definition or a theorem, with the title \meta{block title}. If the \meta{action specification} is present, the given actions are taken on the specified slides, see Section~\ref{section-action-specifications}. In the example, the definition is shown only from slide 3 onward. \example \begin{verbatim} \begin{block}<3->{Definition} A \alert{set} consists of elements. \end{block} \end{verbatim} \articlenote The block name is typeset in bold. \lyxnote The argument of the block must (currently) be given in \TeX-mode. More precisely, there must be an opening brace in \TeX-mode and a closing brace in \TeX-mode around it. The text in between can also be typeset using \LyX. We hope to get rid of this some day. \begin{element}{block begin}\yes\no\no This template is inserted at the beginning of a block before the \meta{environment contents}. Inside this template, the block title can be accessed via the following insert: \begin{itemize} \iteminsert{\insertblocktitle} Inserts the \meta{block title} into the template. \end{itemize} When the template starts, no special color or font is installed (for somewhat complicated reasons). Thus, this template should install the correct colors and fonts for the title and the body itself. \end{element} \begin{element}{block end}\yes\no\no This template is inserted at the end of a block. \end{element} \begin{element}{block title}\no\yes\yes This \beamer-color/-font should be used to typeset the title of the block. Since neither the color nor the font are setup automatically, the template |block begin| must do so itself. The default block template and also the |rounded| version honor the background of this color. \end{element} \begin{element}{block body}\no\yes\yes This \beamer-color/-font should be used to typeset the body of the block, that is, the \meta{environment contents}. As for |block title|, the color and font must be setup by the template |block begin|. \end{element} \end{environment} \begin{environment}{{alertblock}\sarg{action specification}\marg{block title}\sarg{action specification}} Inserts a block whose title is highlighting. Behaves like the |block| environment otherwise. \example \begin{verbatim} \begin{alertblock}{Wrong Theorem} $1=2$. \end{alertblock} \end{verbatim} \articlenote The block name is typeset in bold and is emphasized. \lyxnote Same applies as for |block|. \begin{element}{block alerted begin}\yes\no\no Same applies as for normal blocks. \end{element} \begin{element}{block alerted end}\yes\no\no Same applies as for normal blocks. \end{element} \begin{element}{block title alerted}\no\yes\yes Same applies as for normal blocks. \end{element} \begin{element}{block body alerted}\no\yes\yes Same applies as for normal blocks. \end{element} \end{environment} \begin{environment}{{exampleblock}\sarg{action specification}\marg{block title}\sarg{overlay specification}} Inserts a block that is supposed to be an example. Behaves like the |block| environment otherwise. \example In the following example, the block is completely suppressed on the first slide (it does not even occupy any space). \begin{verbatim} \begin{exampleblock}{Example} The set $\{1,2,3,5\}$ has four elements. \end{exampleblock} \end{verbatim} \articlenote The block name is typeset in italics. \lyxnote Same applies as for |block|. \begin{element}{block example begin}\yes\no\no Same applies as for normal blocks. \end{element} \begin{element}{block example end}\yes\no\no Same applies as for normal blocks. \end{element} \begin{element}{block title example}\no\yes\yes Same applies as for normal blocks. \end{element} \begin{element}{block body example}\no\yes\yes Same applies as for normal blocks. \end{element} \end{environment} \lyxnote Overlay specifications must be given right at the beginning of the environments and in \TeX-mode. \subsection{Theorem Environments} \label{section-theorems} The \beamer\ class predefines several environments, like |theorem| or |definition| or |proof|, that you can use to typeset things like, well, theorems, definitions, or proofs. The complete list is the following: |theorem|, |corollary|, |definition|, |definitions|, |fact|, |example|, and |examples|. The following German block environments are also predefined: |Problem|, |Loesung|, |Definition|, |Satz|, |Beweis|, |Folgerung|, |Lemma|, |Fakt|, |Beispiel|, and |Beispiele|. Here is a typical example on how to use them: \begin{verbatim} \begin{frame} \frametitle{A Theorem on Infinite Sets} \begin{theorem}<1-> There exists an infinite set. \end{theorem} \begin{proof}<2-> This follows from the axiom of infinity. \end{proof} \begin{example}<3->[Natural Numbers] The set of natural numbers is infinite. \end{example} \end{frame} \end{verbatim} In the following, only the English versions are discussed. The German ones behave analogously. \begin{environment}{{theorem}\sarg{action specification}\oarg{additional text}\sarg{action specification}} Inserts a theorem. Only one \meta{action specification} may be given. If present, the \meta{additional text} is shown behind the word ``Theorem'' in rounded brackets (although this can be changed by the template). The appearance of the theorem is governed by the templates |theorem begin| and |theorem end|, see their description later on for details on how to change these. Every theorem is put into a |block| environment, thus the templates for blocks also apply. The theorem style (a concept from |amsthm|) used for this environment is |plain|. In this style, the body of a theorem should be typeset in italics. The head of the theorem should be typeset in a bold font, but this is usually overruled by the templates. If the option |envcountsect| is given either as class option in one of the |presentation| modes or as an option to the package |beamerarticle| in |article| mode, then the numbering of the theorems is local to each section with the section number prefixing the theorem number; otherwise they are numbered consecutively throughout the presentation or article. We recommend using this option in |article| mode. By default, no theorem numbers are shown in the |presentation| modes. \example \begin{verbatim} \begin{theorem}[Kummer, 1992] If $\#^_A^n$ is $n$-enumerable, then $A$ is recursive. \end{theorem} \begin{theorem}<2->[Tantau, 2002] If $\#_A^2$ is $2$-fa-enumerable, then $A$ is regular. \end{theorem} \end{verbatim} \lyxnote If present, the optional argument and the action specification must be given in \TeX-mode at the beginning of the environment. \end{environment} The environments \declare{|corollary|}, \declare{|fact|}, and \declare{|lemma|} behave exactly the same way. \begin{classoption}{envcountsect} Causes theorems, definitions, and so on to be numbered locally to each section. Thus, the first theorem of the second section would be Theorem~2.1 (assuming that there are no definitions, lemmas, or corollaries earlier in the section). \end{classoption} \begin{environment}{{definition}\sarg{action specification}\oarg{additional text}\sarg{action specification}} Behaves like the |theorem| environment, except that the theorem style |definition| is used. In this style, the body of a theorem is typeset in an upright font. \end{environment} The environment \declare{|definitions|} behaves exactly the same way. \begin{environment}{{example}\sarg{action specification}\oarg{additional text}\sarg{action specification}} Behaves like the |theorem| environment, except that the theorem style |example| is used. A side-effect of using this theorem style is that the \meta{environment contents} is put in an |exampleblock| instead of a |block|. \end{environment} The environment \declare{|examples|} behaves exactly the same way. \beamernote The default template for typesetting theorems suppresses the theorem number, even if this number is ``available'' for typesetting (which it is by default in all predefined environments; but if you define your own environment using |\newtheorem*| no number will be available). \articlenote In |article| mode, theorems are automatically numbered. By specifying the class option |envcountsect|, theorems will be numbered locally to each section, which is usually a good idea, except for very short articles. \begin{environment}{{proof}\sarg{action specification}\oarg{proof name}\sarg{action specification}} Typesets a proof. If the optional \meta{proof name} is given, it completely replaces the word ``Proof.'' This is different from normal theorems, where the optional argument is shown in brackets. At the end of the theorem, a |\qed| symbol is shown, except if you say |\qedhere| earlier in the proof (this is exactly as in |amsthm|). The default |\qed| symbol is an open rectangle. To completely suppress the symbol, write |\def\qedsymbol{}| in your preamble. To get an closed rectangle, say \begin{verbatim} \setbeamertemplate{qed symbol}{\vrule width1.5ex height1.5ex depth0pt} \end{verbatim} If you use |babel| and a different language, the text ``Proof'' is replaced by whatever is appropriate in the selected language. \example \begin{verbatim} \begin{proof}<2->[Sketch of proof] Suppose ... \end{proof} \end{verbatim} \begin{element}{qed symbol}\yes\yes\yes The symbol is shown at the end of every proof. \end{element} \end{environment} You can define new environments using the following command: \begin{command}{\newtheorem\opt{|*|}\marg{environment name}\oarg{numbered same as}\marg{head text}\oarg{number within}} This command is used exactly the same way as in the |amsthm| package (as a matter of fact, it is the command from that package), see its documentation. The only difference is that environments declared using this command are overlay specification-aware in \beamer\ and that, when typeset, are typeset according to \beamer's templates. \articlenote Environments declared using this command are also overlay specification-aware in |article| mode. \example |\newtheorem{observation}[theorem]{Observation}| \end{command} You can also use |amsthm|'s command |\newtheoremstyle| to define new theorem styles. Note that the default template for theorems will ignore any head font setting, but will honor the body font setting. If you wish to define the environments like |theorem| differently (for example, have it numbered within each subsection), you can use the following class option to disable the definition of the predefined environments: \begin{classoption}{notheorems} Switches off the definition of default blocks like |theorem|, but still loads |amsthm| and makes theorems overlay specification-aware. \end{classoption} The option is also available as a package option for |beamerarticle| and has the same effect. \articlenote In the |article| version, the package |amsthm| sometimes clashes with the document class. In this case you can use the following option, which is once more available as a class option for \beamer\ and as a package option for |beamerarticle|, to switch off the loading of |amsthm| altogether. \begin{classoption}{noamsthm} Does not load |amsthm| and also not |amsmath|. Environments like |theorem| or |proof| will not be available. \end{classoption} \begin{classoption}{noamssymb} Does not load |amssymb|. This option is mainly intended for users who are loading specialist font packages. Note that |\blacktriangleright| needs to be defined if |itemize| environments are in use. \end{classoption} \begin{element}{theorems}\semiyes\no\no This template is a parent of |theorem begin| and |theorem end|, see the first for a detailed discussion of how the theorem templates are set. \example |\setbeamertemplate{theorems}[numbered]| \begin{templateoptions} \itemoption{default}{} By default, theorems are typeset as follows: The font specification for the body is honored, the font specification for the head is ignored. No theorem number is printed. \itemoption{normal font}{} Like the default, except all font specifications for the body are ignored. Thus, the fonts are used that are normally used for blocks. \itemoption{numbered}{} This option is like the default, except that the theorem number is printed for environments that are numbered. \itemoption{ams style}{} This causes theorems to be put in a |block| or |exampleblock|, but to be otherwise typeset as is normally done in |amsthm|. Thus the head font and body font depend on the setting for the theorem to be typeset and theorems are numbered. \end{templateoptions} \end{element} \begin{element}{theorem begin}\yes\no\no Whenever an environment declared using the command |\newtheorem| is to be typeset, this template is inserted at the beginning and the template |theorem end| at the end. If there is an overlay specification when an environment like |theorem| is used, this overlay specification will directly follow the \meta{block beginning template} upon invocation. This is even true if there was an optional argument to the |theorem| environment. This optional argument is available via the insert |\inserttheoremaddition|. Numerous inserts are available in this template, see below. Before the template starts, the font is set to the body font prescribed by the environment to be typeset. \example The following typesets theorems like |amsthm|: \begin{verbatim} \setbeamertemplate{theorem begin} {% \begin{\inserttheoremblockenv} {% \inserttheoremheadfont \inserttheoremname \inserttheoremnumber \ifx\inserttheoremaddition\@empty\else\ (\inserttheoremaddition)\fi% \inserttheorempunctuation }% } \setbeamertemplate{theorem end}{\end{\inserttheoremblockenv}} \end{verbatim} \example In the following example, all font ``suggestions'' for the environment are suppressed or ignored; and the theorem number is suppressed. \begin{verbatim} \setbeamertemplate{theorem begin} {% \normalfont% ignore body font \begin{\inserttheoremblockenv} {% \inserttheoremname \ifx\inserttheoremaddition\@empty\else\ (\inserttheoremaddition)\fi% }% } \setbeamertemplate{theorem end}{\end{\inserttheoremblockenv}} \end{verbatim} The following inserts are available inside this template: \begin{itemize} \iteminsert{\inserttheoremblockenv} This will normally expand to |block|, but if a theorem that has theorem style |example| is typeset, it will expand to |exampleblock|. Thus you can use this insert to decide which environment should be used when typesetting the theorem. \iteminsert{\inserttheoremheadfont} This will expand to a font changing command that switches to the font to be used in the head of the theorem. By not inserting it, you can ignore the head font. \iteminsert{\inserttheoremname} This will expand to the name of the environment to be typeset (like ``Theorem'' or ``Corollary''). \iteminsert{\inserttheoremnumber} This will expand to the number of the current theorem preceeded by a space or to nothing, if the current theorem does not have a number. \iteminsert{\inserttheoremaddition} This will expand to the optional argument given to the environment or will be empty, if there was no optional argument. \iteminsert{\inserttheorempunctuation} This will expand to the punctuation character for the current environment. This is usually a period. \end{itemize} \end{element} \begin{element}{theorem end}\yes\no\no Inserted at the end of a theorem. \end{element} \subsection{Framed and Boxed Text} In order to draw a frame (a rectangle) around some text, you can use \LaTeX s standard command |\fbox| and also |\frame| (inside a \beamer\ frame, the |\frame| command changes its meaning to the normal \LaTeX\ |\frame| command). More frame types are offered by the package |fancybox|, which defines the following commands: |\shadowbox|, |\doublebox|, |\ovalbox|, and |\Ovalbox|. Please consult the \LaTeX\ Companion for details on how to use these commands. The \beamer\ class also defines two environments for creating colored boxes. \begin{environment}{{beamercolorbox}\oarg{options}\marg{beamer color}} This environment can be used to conveniently typeset some text using some \beamer-color. Basically, the following two command blocks do the same: \begin{verbatim} \begin{beamercolorbox}{beamer color} Text \end{beamercolorbox} { \usebeamercolor{beamer color} \colorbox{bg}{ \color{fg} Text } } \end{verbatim} In other words, the environment installs the \meta{beamer color} and uses the background for the background of the box and the foreground for the text inside the box. However, in reality, numerous \meta{options} can be given to specify in much greater detail how the box is rendered. If the background color of \meta{beamer color} is empty, no background is drawn behind the text, that is, the background is ``transparent.'' This command is used extensively by the default inner and outer themes for typesetting the headlines and footlines. It is not really intended to be used in normal frames (for example, it is not available inside |article| mode). You should prefer using structuring elements like blocks or theorems that automatically insert colored boxes as needed. \example The following example could be used to typeset a headline with two lines, the first showing the document title, the second showing the author's name: \begin{verbatim} \begin{beamercolorbox}[ht=2.5ex,dp=1ex,center]{title in head/foot} \usebeamerfont{title in head/foot} \insertshorttitle \end{beamercolorbox}% \begin{beamercolorbox}[ht=2.5ex,dp=1ex,center]{author in head/foot} \usebeamerfont{author in head/foot} \insertshortauthor \end{beamercolorbox} \end{verbatim} \example Typesetting a postit: \begin{verbatim} \setbeamercolor{postit}{fg=black,bg=yellow} \begin{beamercolorbox}[sep=1em,wd=5cm]{postit} Place me somewhere! \end{beamercolorbox} \end{verbatim} The following \meta{options} can be given: \begin{itemize} \item \declare{|wd=|\marg{width}} sets the width of the box. This command has two effects: First, \TeX's |\hsize| is set to \meta{width}. Second, after the box has been typeset, its width is set to \meta{width} (no matter what it actually turned out to be). Since setting the |\hsize| does not automatically change some of \LaTeX's linewidth dimensions, you should consider using a minipage inside this environment if you fool around with the width. If the width is larger than the normal text width, as specified by the value of |\textwidth|, the width of the resulting box is reset to the width |\textwidth|, but intelligent negative skips are inserted at the left and right end of the box. The net effect of this is that you can use a width larger than the text width for a box and can insert the resulting box directly into normal text without getting annoying warnings and having the box positioned sensibly. \item \declare{|dp=|\marg{depth}} sets the depth of the box, overriding the real depth of the box. The box is first typeset normally, then the depth is changed afterwards. This option is useful for creating boxes that have guaranteed size. If the option is not given, the box has its ``natural'' depth, which results from the typesetting. For example, a box containing only the letter ``a'' will have a different depth from a box containing only the letter ``g.'' \item \declare{|ht=|\meta{height}} sets the height of the box, overriding the real height. Note that the ``height'' does not include the depth (see, for example, the \TeX-book for details). If you want a one-line box that always has the same size, setting the height to 2.25ex and the depth to 1ex is usually a good option. \item \declare{|left|} causes the text inside the box to be typeset left-aligned and with a (radically) ragged right border. This is the default. To get a better ragged right border, use the |rightskip| option. Note that this will override any |leftskip| or |rightskip| setting. \item \declare{|right|} causes the text to be right-aligned with a (radically) ragged left border. Note that this will override any |leftskip| or |rightskip| setting. \item \declare{|center|} centers the text inside the box. Note that this will override any |leftskip| or |rightskip| setting. \item \declare{|leftskip=|\meta{left skip}} installs the \meta{left skip} inside the box as the left skip. \TeX's left skip is a glue that is inserted at the left end of every line. See the \TeX-book for details. Note that this will override any |left|, |center| or |right| setting. \item \declare{|rightskip=|\meta{right skip}} install the \meta{right skip}. To get a good ragged right border, try, say, |\rightskip=0pt plus 4em|. Note that this will override any |left|, |center| or |right| setting. \item \declare{|sep=|\meta{dimension}} sets the size of extra space around the text. This space is added ``inside the box,'' which means that if you specify a |sep| of 1cm and insert the box normally into the vertical list, then the left border of the box will be aligned with the left border of the slide text, while the left border of the text inside the box will be 1cm to the right of this left border. Likewise, the text inside the box will stop 1cm before the right border of the normal text. \item \declare{|colsep=|\meta{dimension}} sets the extra ``color separation space'' around the text. This space behaves the same way as the space added by |sep|, only this space is only inserted if the box has a colored background, that is, if the background of the \meta{beamer color} is not empty. This command can be used together with |sep|, the effects accumulate. \item \declare{|colsep*=|\meta{dimension}} sets an extra color separation space around the text that is \emph{horizontally outside the box}. This means that if the box has a background, this background will protrude by \meta{dimension} to the left and right of the text, but this protruding background will not be taken intro consideration by \TeX\ for typesetting purposes. A typical example usage of this option arises when you insert a box with a colored background in the middle of normal text. In this case, if the background color is set, you would like a background to be drawn behind the text \emph{and} you would like a certain extra space around this text (the background should not stop immediately at the borders of the text, this looks silly) \emph{and} you would like the normal text always to be at the same horizontal position, independently of whether a background is present or not. In this case, using |colsep*=4pt| is a good option. \item \declare{|shadow|}\opt{|=|\meta{true or false}} draws a shadow behind the box. Currently, this option only has an effect if used together with the |rounded| option, but that may change. \item \declare{|rounded|}\opt{|=|\meta{true or false}} causes the borders of the box to be rounded off if there is a background installed. This command internally calls |beamerboxesrounded|. \item \declare{|ignorebg|} causes the background color of the \meta{beamer color} to be ignored, that is, to be treated as if it were set to ``transparent'' or ``empty.'' \item \declare{|vmode|} causes \TeX\ to be in vertical mode when the box starts. Normally, \TeX\ will be in horizontal mode at the start of the box (a |\leavevmode| is inserted automatically at the beginning of the box unless this option is given). Only \TeX perts need this option, so, if you use it, you will probably know what you are doing anyway. \end{itemize} \end{environment} \begin{environment}{{beamerboxesrounded}\oarg{options}\marg{head}} The text inside the environment is framed by a rectangular area with rounded corners. For the large rectangular area, the \beamer-color specified with the |lower| option is used. Its background is used for the background, its foreground for the foreground. If the \meta{head} is not empty, \meta{head} is drawn in the upper part of the box using the \beamer-color specified with the |upper| option for the fore- and background. The following options can be given: \begin{itemize} \item \declare{|lower=|\meta{beamer color}} sets the \beamer-color to be used for the lower (main) part of the box. Its background is used for the background, its foreground for the foreground of the main part of the box. If either is empty, the current background or foreground is used. The box will never be transparent. \item \declare{|upper=|\meta{beamer color}} sets the \beamer-color used for the upper (head) part of the box. It is only used if the \meta{head} is not empty. \item \declare{|width=|\meta{dimension}} causes the width of the text inside the box to be the specified \meta{dimension}. By default, the |\textwidth| is used. Note that the box will protrude 4pt to the left and right. \item \declare{|shadow=|\meta{true or false}}. If set to |true|, a shadow will be drawn. \end{itemize} If no \meta{head} is given, the head part is completely suppressed. \example \begin{verbatim} \begin{beamerboxesrounded}[upper=block head,lower=block body,shadow=true]{Theorem} $A = B$. \end{beamerboxesrounded} \end{verbatim} \articlenote This environment is not available in |article| mode. \end{environment} \subsection{Figures and Tables} You can use the standard \LaTeX\ environments |figure| and |table| much the same way you would normally use them. However, any placement specification will be ignored. Figures and tables are immediately inserted where the environments start. If there are too many of them to fit on the frame, you must manually split them among additional frames or use the |allowframebreaks| option. \example \begin{verbatim} \begin{frame} \begin{figure} \pgfuseimage{myfigure} \caption{This caption is placed below the figure.} \end{figure} \begin{figure} \caption{This caption is placed above the figure.} \pgfuseimage{myotherfigure} \end{figure} \end{frame} \end{verbatim} \begin{element}{caption}\yes\yes\yes This template is used to render the caption. \begin{templateoptions} \itemoption{default}{} typesets the caption name (a word like ``Figure'' or ``Abbildung'' or ``Table,'' depending on whether a table or figure is typeset and depending on the currently installed language) before the caption text. No number is printed, since these make little sense in a normal presentation. \itemoption{numbered}{} adds the figure or table number to the caption. Use this option only if your audience has a printed handout or printed lecture notes that follow the same numbering. \itemoption{caption name own line}{} As the name suggests, this options puts the caption name (like ``Figure'') on its own line. \end{templateoptions} Inside the template, you can use the following inserts: \begin{itemize} \iteminsert{\insertcaption} Inserts the text of the current caption. \iteminsert{\insertcaptionname} Inserts the name of the current caption. This word is either ``Table'' or ``Figure'' or, if the |babel| package is used, some translation thereof. \iteminsert{\insertcaptionnumber} Inserts the number of the current figure or table. \end{itemize} \end{element} \begin{element}{caption name}\no\yes\yes These \beamer-color and -font are used to typeset the caption name (a word like ``Figure''). The |caption| template must directly ``use'' them, they are not installed automatically by the |\insertcaptionname| command. \end{element} \subsection{Splitting a Frame into Multiple Columns} The \beamer\ class offers several commands and environments for splitting (perhaps only part of) a frame into multiple columns. These commands have nothing to do with \LaTeX's commands for creating columns. Columns are especially useful for placing a graphic next to a description/explanation. The main environment for creating columns is called |columns|. Inside this environment, you can either place several |column| environments, each of which creates a new column, or use the |\column| command to create new columns. \begin{environment}{{columns}\oarg{options}} A multi-column area. Inside the environment you should place only |column| environments or |\column| commands (see below). The following \meta{options} may be given: \begin{itemize} \item \declare{|b|} will cause the bottom lines of the columns to be vertically aligned. \item \declare{|c|} will cause the columns to be centered vertically relative to each other. Default, unless the global option |t| is used. \item \declare{|onlytextwidth|} is the same as |totalwidth=\textwidth|. \item \declare{|t|} will cause the first lines of the columns to be aligned. Default if global option |t| is used. \item \declare{|T|} is similar to the |t| option, but |T| aligns the tops of the first lines while |t| aligns the so-called baselines of the first lines. If strange things seem to happen in conjunction with the |t| option (for example if a graphic suddenly ``drops down'' with the |t| option instead of ``going up,''), try using this option instead. \item \declare{|totalwidth=|\meta{width}} will cause the columns to occupy not the whole page width, but only \meta{width}, all told. \end{itemize} \example \begin{verbatim} \begin{columns}[t] \begin{column}{5cm} Two\\lines. \end{column} \begin{column}{5cm} One line (but aligned). \end{column} \end{columns} \end{verbatim} \example \begin{verbatim} \begin{columns}[t] \column{5cm} Two\\lines. \column[T]{5cm} \includegraphis[height=3cm]{mygraphic.jpg} \end{columns} \end{verbatim} \articlenote This environment is ignored in |article| mode. \lyxnote Use ``Columns'' or ``ColumnsTopAligned'' to create a |columns| environment. To pass options, insert them in \TeX-mode right at the beginning of the environment in square brackets. \end{environment} To create a column, you can either use the |column| environment or the |\column| command. \begin{environment}{{column}\oarg{placement}\marg{column width}} Creates a single column of width \meta{column width}. The vertical placement of the enclosing |columns| environment can be overruled by specifying a specific \meta{placement} (|t| and |T| for the two top modes, |c| for centered, and |b| for bottom). \example The following code has the same effect as the above examples: \begin{verbatim} \begin{columns} \begin{column}[t]{5cm} Two\\lines. \end{column} \begin{column}[t]{5cm} One line (but aligned). \end{column} \end{columns} \end{verbatim} \articlenote This command is ignored in |article| mode. \lyxnote The ``Column'' styles insert the command version, see below. \end{environment} \begin{command}{{\column}\oarg{placement}\marg{column width}} Starts a single column. The parameters and options are the same as for the |column| environment. The column automatically ends with the next occurrence of |\column| or of a |column| environment or of the end of the current |columns| environment. \example \begin{verbatim} \begin{columns} \column[t]{5cm} Two\\lines. \column[t]{5cm} One line (but aligned). \end{columns} \end{verbatim} \articlenote This command is ignored in |article| mode. \lyxnote In a ``Column'' style, the width of the column must be given as normal text, not in \TeX-mode. \end{command} \subsection{Positioning Text and Graphics Absolutely} Normally, \beamer\ uses \TeX's normal typesetting mechanism to position text and graphics on the page. In certain situation you may instead wish a certain text or graphic to appear at a page position that is specified \emph{absolutely}. This means that the position is specified relative to the upper left corner of the slide. The package |textpos| provides several commands for positioning text absolutely and it works together with \beamer. When using this package, you will typically have to specify the options |overlay| and perhaps |absolute|. For details on how to use the package, please see its documentation. \subsection{Verbatim and Fragile Text} If you wish to use a |{verbatim}| environment in a frame, you have to add the option |[fragile]| to the |{frame}| environment. In this case, you really have to use the |{frame}| environment (not the |\frame| command) and the |\end{frame}| must be alone on a single line. Using this option will cause the frame contents to be written to an external file and the read back. See the description of the |{frame}| environment for more details. You must also use the |[fragile]| option for frames that include any ``fragile'' text, which is any text that is not ``interpreted the way text is usually interpreted by \TeX.'' For example, if you use a package that (locally) redefined the meaning of, say, the character |&|, you must use this option. Inside |{verbatim}| environments you obviously cannot use commands like |\alert<2>| to highlight part of code since the text is written in, well, verbatim. There are several good packages like |alltt| or |listings| that allow you to circumvent this problem. For simple cases, the following environment can be used, which is defined by \beamer: \begin{environment}{{semiverbatim}} The text inside this environment is typeset like verbatim text. However, the characters |\|, |{|, and |}| retain their meaning. Thus, you can say things like \begin{verbatim} \alert<1->{std::cout << "AT&T likes 100% performance";} \end{verbatim} To typeset the three characters |\|, |{|, and |}| you can use the commands |\\| (which is redefined inside this environment---you do not need it anyway), |\{|, and |\}|. Thus in order to get typeset ``|\alert<1>{X}|'' you can write |\\alert<1>\{X\}|. \end{environment} \subsection{Abstract} The |{abstract}| environment is overlay specificiation-aware in \beamer: \begin{environment}{{abstract}\sarg{action specification}} You can use this environment to typeset an abstract. \begin{element}{abstract}\no\yes\yes These \beamer-color and -font are used to typeset the abstract. If a background color is set, this background color is used as background for the whole abstract by default. \end{element} \begin{element}{abstract title}\yes\yes\yes \colorparents{titlelike} This template is used for the title. By default, this inserts the word |\abstractname|, centered. The background color is ignored. \end{element} \begin{element}{abstract begin}\yes\no\no This template is inserted at the very beginning of the abstract, before the abstract title and the \meta{environment contents} is inserted. \end{element} \begin{element}{abstract end}\yes\no\no This template is inserted at the end of the abstract, after the \meta{environment contents}. \end{element} \end{environment} \subsection{Verse, Quotations, Quotes} \LaTeX\ defines three environments for typesetting quotations and verses: |verse|, |quotation|, and |quote|. These environments are also available in the \beamer\ class, where they are overlay specification-aware. If an overlay specification is given, the verse or quotation is shown only on the specified slides and is covered otherwise. The difference between a |quotation| and a |quote| is that the first has paragraph indentation, whereas the second hasn't. You can change the font and color used for these by changing the \beamer-colors and -fonts listed below. Unlike the standard \LaTeX\ environments, the default font theme typesets a verse in an italic serif font, quotations and quotes are typeset using an italic font (whether serif or sans-serif depends on the standard document font). \begin{environment}{{verse}\sarg{action specification}} You can use this environment to typeset a verse. \begin{element}{verse}\no\yes\yes These \beamer-color and -font are used to typeset the verse. If a background color is set, this background color is used as background for the whole abstract. The default font is italic serif. \end{element} \begin{element}{verse begin}\yes\no\no This template is inserted at the beginning of the verse. \end{element} \begin{element}{verse end}\yes\no\no This template is inserted at the end of the verse. \end{element} \end{environment} \begin{environment}{{quotation}\sarg{action specification}} Use this environment to typeset multi-paragraph quotations. Think again, before presenting multi-paragraph quotations. \begin{element}{quotation}\no\yes\yes These \beamer-color and -font are used to typeset the quotation. \end{element} \begin{element}{quotation begin}\yes\no\no This template is inserted at the beginning of the quotation. \end{element} \begin{element}{quotation end}\yes\no\no This template is inserted at the end of the quotation. \end{element} \end{environment} \begin{environment}{{quote}\sarg{action specification}} Use this environment to typeset a single-paragraph quotation. \begin{element}{quote}\no\yes\yes These \beamer-color and -font are used to typeset the quote. \end{element} \begin{element}{quote begin}\yes\no\no This template is inserted at the beginning of the quote. \end{element} \begin{element}{quote end}\yes\no\no This template is inserted at the end of the quote. \end{element} \end{environment} \subsection{Footnotes} First a word of warning: Using footnotes is usually not a good idea. They disrupt the flow of reading. You can use the usual |\footnote| command. It has been augmented to take an additional option, for placing footnotes at the frame bottom instead of at the bottom of the current minipage. \begin{command}{\footnote\sarg{overlay specification}\oarg{options}\marg{text}} Inserts a footnote into the current frame. Footnotes will always be shown at the bottom of the current frame; they will never be ``moved'' to other frames. As usual, one can give a number as \meta{options}, which will cause the footnote to use that number. The \beamer\ class adds one additional option: \begin{itemize} \item \declare{|frame|} causes the footnote to be shown at the bottom of the frame. This is normally the default behavior anyway, but in minipages and certain blocks it makes a difference. In a minipage, the footnote is usually shown as part of the minipage rather than as part of the frame. \end{itemize} If an \meta{overlay specification} is given, this causes the footnote \meta{text} to be shown only on the specified slides. The footnote symbol in the text is shown on all slides. \example |\footnote{On a fast machine.}| \example |\footnote[frame,2]{Not proved.}| \example |\footnote<.->{Der Spiegel, 4/04, S.~90.}| \begin{element}{footnote}\yes\yes\yes This template will be used to render the footnote. Inside this template, the following two inserts can be used: \begin{itemize} \iteminsert{\insertfootnotetext} Inserts the current footnote text. \iteminsert{\insertfootnotemark} Inserts the current footnote mark (like a raised number). This mark is computed automatically. \end{itemize} \end{element} \begin{element}{footnote mark}\no\yes\yes This \beamer-color/-font is used when rendering the footnote mark, both in the text and at the beginning of the footnote itself. \end{element} \end{command} beamer/doc/beamerugcolorthemebeaver.pdf0000644000175000017500000004311412050430574020162 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1243 /Filter /FlateDecode >> stream xXKs6W(͔(ޏc;M34$VcNMʖ]?MqgƑVkHaC8b`#(ZeWff뷨p E`~w}`]T.j?[\A0UİbcljUs~D"ifBA0itS_;/o9o)Ɉ.G4;|D8FReИ)l.i/cޕM& nuqYNLa^?#oJ֋wψ XۃpuVC8Fs(`D*;C(8lv&N<$0&q&Z(,W(p,a@+W}x mLLS<ƐBr|$|.pH1 Yt9CiTn!a 7*H1H~q_z[]6+&:.φ!gIAORt@bM3 09{))V>tcƌx"T&Q1'T2SF1. % 1Dp)͑$yRRe l9xW`hґU"QIW*t oPu.L^߿!WhN2<"d|{'YI´ګ|6\ aMOtpSRɓAY&%{dp> SѓeL"cWlUcGLJ'S؄;\3PdX3w ЀAk*s{(Y_-]ۄBP5WZi*;cnӿ5A9qCI k tvsf)}4 CWYކuu57X{=IDC9H!#'AUdwٝGlʠ|" 1Rndۺ+m˾|gt;bkbrYowMVU@hT㱱f:MC Pڕ.XU}k7fF+cٳ[@˜b6GݱtWDZ"\ L}V-@/&> stream xYKsI WѮ-7~\ X HnY=k3NMW0{pzZ-Ojik|FP'5VP. Y7sGE%0@8YuwM||WѓgBM\':&Ў:\/?6f2֍ 2IEleד)eۄ2Xj^7k|1:DP 9Gl 4E`#ؤf~uIY̎҃%Ns; 2TE^޾v?gU0)#SA,jYљt,H9[Y ߵS9`1Sc &syAvӔT%*(XYW|S;;J5ᗌNn aEP5/VmypLT{^6C02\> ʈr=_;^{>5z3( =eWT\n&^Vڵw!~:Px0TK( ܥ!(h`9b *_f>-lP/ _ endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203939Z) /ModDate (D:20121113203939Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<4A51EA3708CE2FDCF8B6779BC5DB305A> <4A51EA3708CE2FDCF8B6779BC5DB305A>] /Length 83 /Filter /FlateDecode >> stream xʻ 0a;I h`OZZ& ӯáy 0(IP@t dpؽJ$pۭt/xY endstream endobj startxref 17663 %%EOF beamer/doc/beamerug-workflow.tex0000644000175000017500000003171112050430504016603 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % Copyright 2011 by Vedran Mileti\'c, Joseph Wright % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-workflow.tex,v 69886c9088ce 2012/09/19 17:53:32 joseph $ \section{Workflow For Creating a Beamer Presentation} \label{section-workflow} This section presents a possible workflow for creating a \beamer\ presentation and possibly a handout to go along with it. Technical questions are addressed, like which programs to call with which parameters. \subsection{Step One: Setup the Files} \beamernote It is advisable that you create a folder for each presentation. Even though your presentation will usually reside in a single file, \TeX\ produces so many extra files that things can easily get very confusing otherwise. The folder's name should ideally start with the date of your talk in ISO format (like 2003-12-25 for a Christmas talk), followed by some reminder text of what the talk is all about. Putting the date at the front in this format causes your presentation folders to be listed nicely when you have several of them residing in one directory. If you use an extra directory for each presentation, you can call your main file |main.tex|. To create an initial |main.tex| file for your talk, copy an existing file from the |beamer/solutions| directory and adapt it to your needs. A list of possible \beamer\ solutions that contain templates for presentation \TeX-files can be found below. If you wish your talk to reside in the same file as some different, non-presentation article version of your text, it is advisable to setup a more elaborate file scheme. See Section~\ref{section-article-version-workflow} for details. \lyxnote You can either open a new file and then select |beamer| as the document class or you say ``New from template'' and then use a template from the directory |beamer/solutions|. \subsection{Step Two: Structure Your Presentation} The next step is to fill the presentation file with |\section| and |\subsection| to create a preliminary outline. You'll find some hints on how to create a good outline in Section~\ref{section-structure-guidelines}. Put |\section| and |\subsection| commands into the (more or less empty) main file. Do not create any frames until you have a first working version of a possible table of contents. The file might look like this: \begin{verbatim} \documentclass{beamer} %% This is the file main.tex \usetheme{Berlin} \title{Example Presentation Created with the Beamer Package} \author{Till Tantau} \date{\today} \begin{document} \begin{frame} \titlepage \end{frame} \section*{Outline} \begin{frame} \tableofcontents \end{frame} \section{Introduction} \subsection{Overview of the Beamer Class} \subsection{Overview of Similar Classes} \section{Usage} \subsection{...} \subsection{...} \section{Examples} \subsection{...} \subsection{...} \begin{frame} \end{frame} % to enforce entries in the table of contents \end{document} \end{verbatim} The empty frame at the end (which should be deleted later) ensures that the sections and subsections are actually part of the table of contents. This frame is necessary since a |\section| or |\subsection| command following the last page of a document has no effect. \subsection{Step Three: Creating a PDF or PostScript File} \beamernote Once a first version of the structure is finished, you should try to create a first PDF or PostScript file of your (still empty) talk to ensure that everything is working properly. This file will only contain the title page and the table of contents. \lyxnote Use ``View'' to check whether the presentation compiles fine. Note that you must put the table of contents inside a frame, but that the title page is created automatically. \subsubsection{Creating PDF} \beamernote To create a |PDF| version of this file, run the program |pdflatex| on |main.tex| at least twice. You need to run it twice, so that \TeX\ can create the table of contents. (It may even be necessary to run it more often since all sorts of auxiliary files are created.) In the following example, the greater-than-sign is the prompt. \begin{verbatim} > pdflatex main.tex ... lots of output ... > pdflatex main.tex ... lots of output ... \end{verbatim} Alternatively, you can use |lualatex| or |xelatex| instead of |pdflatex| in above commands. You can next use a program like the Acrobat Reader, |xpdf|, |evince| or |okular| to view the resulting presentation. \begin{verbatim} > acroread main.pdf \end{verbatim} \lyxnote Choose ``View pdf'' to view your presentation. \subsubsection{Creating PostScript} \label{section-postscript} \beamernote To create a PostScript version, you should first ascertain that the \textsc{hyperref} package (which is automatically loaded by the \beamer\ class) uses the option |dvips| or some compatible option, see the documentation of the \textsc{hyperref} package for details. Whether this is the case depends on the contents of your local |hyperref.cfg| file. You can enforce the usage of this option by passing |dvips| or a compatible option to the \beamer\ class (write |\documentclass[dvips]{beamer}|), which will pass this option on to the \textsc{hyperref} package. You can then run |latex| twice, followed by |dvips|. \begin{verbatim} > latex main.tex ... lots of output ... > latex main.tex ... lots of output ... > dvips -P pdf main.dvi \end{verbatim} The option (|-P pdf|) tells |dvips| to use Type~1 outline fonts instead of the usual Type~3 bitmap fonts. You may wish to omit this option if there is a problem with it. You can convert a PostScript file to a pdf file using \begin{verbatim} > ps2pdf main.ps main.pdf \end{verbatim} \lyxnote Use ``View Postscript'' to view the PostScript version. \subsubsection{Ways of Improving Compilation Speed} \label{section-speedup} While working on your presentation, it may sometimes be useful to \TeX\ your |.tex| file quickly and have the presentation contain only the most important information. This is especially true if you have a slow machine. In this case, you can do several things to speed up the compilation. First, you can use the |draft| class option. \begin{classoption}{draft} Causes the headlines, footlines, and sidebars to be replaced by gray rectangles (their sizes are still computed, though). Many other packages, including |pgf| and |hyperref|, also ``speed up'' when this option is given. \end{classoption} Second, you can use the following command: \begin{command}{{\includeonlyframes}\marg{frame label list}} This command behaves a little bit like the |\includeonly| command: Only the frames mentioned in the list are included. All other frames are suppressed. Nevertheless, the section and subsection commands are still executed, so that you still have the correct navigation bars. By labeling the current frame as, say, |current| and then saying |\includeonlyframes{current}|, you can work on a single frame quickly. The \meta{frame label list} is a comma-separated list (without spaces) of the names of frames that have been labeled. To label a frame, you must pass the option |label=|\meta{name} to the |\frame| command or |frame| environment. \example \begin{verbatim} \includeonlyframes{example1,example3} \frame[label=example1] {This frame will be included. } \frame[label=example2] {This frame will not be included. } \frame{This frame will not be included.} \againframe{example1} % Will be included \end{verbatim} \end{command} \subsection{Step Four: Create Frames} Once the table of contents looks satisfactory, start creating frames for your presentation by adding |frame| environments. You'll find guidelines on what to put on a frame in Section~\ref{section-frame-guidelines}. \lyxnote To create a frame, use the style ``BeginFrame''. The frame title is given on the line of this style. The frame ends automatically with the start of the next frame, with a section or subsection command, and with an empty line in the style ``EndFrame''. Note that the last frame of your presentation must be ended using ``EndFrame'' and that the last frame before the appendix must be ended this way. \subsection{Step Five: Test Your Presentation} \emph{Always} test your presentation. For this, you should vocalize or subvocalize your talk in a quiet environment. Typically, this will show that your talk is too long. You should then remove parts of the presentation, such that it fits into the allotted time slot. Do \emph{not} attempt to talk faster in order to squeeze the talk into the given amount of time. You are almost sure to lose your audience this way. Do not try to create the ``perfect'' presentation immediately. Rather, test and retest the talk and modify it as needed. \subsection{Step Six: Create a Handout} \subsubsection{Creating the Handout} Once your talk is fixed, you can create a handout, if this seems appropriate. For this, you can use the class option |handout| as explained in Section~\ref{handout}. Typically, you might wish to put several handout slides on one page, see below on how to do this easily. You may also wish to create an article version of your talk. An ``article version'' of your presentation is a normal \TeX\ text typeset using, for example, the document class |article| or perhaps |llncs| or a similar document class. The \beamer\ class offers facilities to have this version coexist with your presentation version in one file and to share code. Also, you can include slides of your presentation as figures in your article version. Details on how to setup the article version can be found in Section~\ref{section-article}. \lyxnote Creating an article version is not really possible in \LyX. You can \emph{try}, but we would not advise it. \subsubsection{Printing the Handout} \label{section-printing-version} The easiest way to print a presentation is to user the Acrobat Reader with the option ``expand small pages to paper size'' form the printer dialog enabled. This is necessary, because slides are by default only 128mm by 96mm large. For the PostScript version and for printing multiple slides on a single page this simple approach does not work. In such cases you can use the |pgfpages| package, which works directly with |pdflatex|, |lualatex|, |xelatex| and |latex| plus |dvips|. Note however \emph{that this package destroys hyperlinks}. This is due to fundamental flaws in the \pdf-specification and it is not likely to change. The |pgfpages| can do all sorts of tricks with pages. The most important one for printing \beamer\ slides is the following command: \begin{verbatim} \usepackage{pgfpages} \pgfpagesuselayout{resize to}[a4paper,border shrink=5mm,landscape] \end{verbatim} This says ``Resize all pages to landscape A4 pages, no matter what their original size was, but shrink the pages by 5mm, so that there is a bit of a border around everything.'' Naturally, instead of |a4paper| you can also use |letterpaper| or any of the other standard paper sizes. For further options and details see the documentation of |pgfpages|. The second thing you might wish to do is to put several slides on a single page. This can be done as follows: \begin{verbatim} \usepackage{pgfpages} \pgfpagesuselayout{2 on 1}[a4paper,border shrink=5mm] \end{verbatim} This says ``Put two pages on one page and then resize everything so that it fits on A4 paper.'' Note that this time we do not need landscape as the resulting page is, after all, not in landscape mode. Instead of |2 on 1| you can also use |4 on 1|, but then with |landscape| once more, and also |8 on 1| and even |16 on 1| to get a grand (though unreadable) overview. If you put several slides on one page and if these slides normally have a white background, it may be useful to write the following in your preamble: \begin{verbatim} \mode{\setbeamercolor{background canvas}{bg=black!5}} \end{verbatim} This will cause the slides of the handout version to have a very light gray background. This makes it easy to discern the slides' border if several slides are put on one page. %% If you wish each slide to completely fill a letter-sized page, use the %% following commands instead: %% \begin{verbatim} %% > dvips -P pdf -tletter main.dvi -o main.temp.ps %% > psnup -1 -W128mm -H96mm -pletter main.temp.ps main.ps %% \end{verbatim} %% For A4-sized paper, use: %% \begin{verbatim} %% > dvips -P pdf -ta4 main.dvi -o main.temp.ps %% > psnup -1 -W128mm -H96mm -pa4 main.temp.ps main.ps %% \end{verbatim} %% In order to create a white margin around the whole page (which is sometimes %% useful for printing), add the option |-m 1cm| to the options of %% |psnup|. %% To put two or four slides on one page, use |-2|, respectively %% |-4| instead of |-1| as the first parameter for %% |psnup|. In this case, you may wish to add the option %% |-b 1cm| to add a bit of space around the individual slides. The same %% trick as for the \pdf-version can be used to make the borders of %% slides more pronounced in the handout version. beamer/doc/beamerugcolorthemealbatross.pdf0000644000175000017500000004315512050430560020710 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1216 /Filter /FlateDecode >> stream xXKs6W(͔(^NL&ṯIU7Rv؞@|X,0h;O ~|rq2'ʅ&ˊMyDžK3R;Im@k`ZSXp u>w!IN1ψI"rKd~J>LղeUh,f_LR&4LWbZur|Z7'qAfS-qkjQ%Zx>[_\֧ʨ$_ (j[}Z_vB ]ٍ ٜ9uNP bqn)"˪ :-,|}wV ;g=O'DH+s!e )5lRmfw< `ƁF"r6'dgq lE&2CD9,i""$HC+ԏMDACj=Mcw1& ]f2RCD$aLe8=K5N M HL)l8tez[';F1mPD zy1LGDN0}lO~oAOe͉9z8@L;N3VkƵ28B9 RZi%X2%{Aq2!pw .5.A_&)"Č,P$Ϡ %v&rn2ww#ot-acS7wrldžOx1i@[ܯˍ'uI|xlP+1*Q"6cc qj1%eRA*!)Ris Wc Ɨp6 RhC[rq.z#]/T 6 >򼭯=^ $hj [b-a8岚I6hO{ =7he`DH& YI*` Ŧ]Sݦ (ӛK*f۾|Z-Wu@ahpxvW2'Ū^7\) ²;~[|Txȉp*ܐ92.}pFxEsd>WφS><)Gq;ަn?\rGc3/v}L\q?Fkz endstream endobj 18 0 obj << /Length 1634 /Filter /FlateDecode >> stream xrZ7#LEkgN4ļ9yp36SOґ 6$gjw#03FP'5VP. W[~8l+\'YჇ)`ΛwBM CDhGd0&'Y5z}a]E?\H_R&خ"{h>ɴ 2W?,ccDP$9Hb2ޅ=#bWZZf4GIȩ-FNj}_^~zIY׿YP#}4D弚F^f~ObFw%6bqAtN2RΒѴsM:dA M"Xq $઀ęƨrL:pǛ/U0* LBD/H‘T(fehXmq ؘʍfۄ5 8Y^B =DT`Wd!10tȁTFφ5bv^5,(%bO |@ - QtZ)t R-NIucf5D|gA$nтD TpP`q1fa[5~&sx6%LSq)\w1P29$!\(qF`Ked@ )3$BCF5dP' j3|o VF,i;9ƣP52Cd$3Iߣ DIzVfD+QXQN"/5 3h2t`hXա pù~9,}tDa Z ^BrX4 ȕ(XdEaVM^CG4l)ch?}Keg S ֮[0nj#Ү]twfMR||wtEZ7(v^N˴>{\eD b8*+' ʄ:6)_k85E"U`BB9ciVޑjwZ4B6ِ9ZGCX9lUAwF) `\`Th*MneAX $H~y), Bg+]^g%'zvqBrq_ʁ\;:ۺ{l._h{CӚ< Ruy:d=~<^ /ē( C{hEzF#늅Gr9C=^^]].\S@SrUpZ 1n1ؙ߲-"P\ks 4έUm-?'KY.Z-_ m)Ëe{WzǡH62l5_n5v{\3P}^&VjN|&N22Ln-F%N9UǣM r_D 6\l/ƈ:Pgi )DP|IS endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203926Z) /ModDate (D:20121113203926Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<3764E71217DC92C75EB0A868B03CD34B> <3764E71217DC92C75EB0A868B03CD34B>] /Length 84 /Filter /FlateDecode >> stream xʹ0CQ |bKp )-Rof7&T'^$J, uX2w7)%|eua? endstream endobj startxref 17695 %%EOF beamer/doc/beamerugouterthemesidebar.pdf0000644000175000017500000004312312050430606020343 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1268 /Filter /FlateDecode >> stream xXKs6WQ)Q iI$:==4mq*RDͿIbT9'Ap ^x$vx9E:91B9a\îcчH5(R}[3{5}3HW8|v"㹙v5dP!!(.=/u<ۻ"cj^7c7CW/N$23F 8/s\%19!nyaӖ`W:ZQ/Ha3R2VމwnfUZ D>xm$ZS7&Յe$AƥEN9.QjERDQCG#e7% xd 6L^DJr38ZJ 뤧_baR_ fvcD9rce :`1w!æZ:w^TVN8@rZb#Ch>]f:$wMvYuYuu.EPĦ/sYp5v/a0MrOI8x0mW6h_|ln/Sy_ ;Os =dpW?4&|]P0eوSgTo=I` =q5?<F6c1}u{:?P}KZvk endstream endobj 18 0 obj << /Length 1557 /Filter /FlateDecode >> stream xYKo9 WhcaUuآ[Mni=IԎ7_Rx؛tF>"9a0v#qx;tFIM CV |^zH"WduI:yJ~AT g:ɿ^h5$+ʘ'3r6q{u ]NGI%!*DrOpP- T:+m3qBp#6YWdnBM,@RDIT(44 Z p M p00apLT`;GBap9O3G ܋L>GiVRIjmgµ~O|+FKl3g¥Cd L>i:iՓ%V ,̫Yxy(LZ ^'U/ذO-Z+G@ Wl3Mfi<_oV".jޖLjHGȒy (tQsӸEwxEBR?n/_hȴI)= f`g@``pn;m #Ά4 ܃߹'X LA!s!At}rPa!Sr h#gch'ۛuSOUnrXbcY wt|"Y$ň9[H"mCmϋ^Xv*ILp:`{ɧ7w}$eoOFtx$ȧ w|jݫC1d}ԕUnv.m$ՄQ]CcP-]v$GA+̣)1lwil|=? 6N 艹Y"߷8aj~`!sпGBncwd}OOTZu}&+yL%܍8\N^FQcG{wսkgտW6 }edo>p.g:Ehr?pjODY]`2Ky~)͐Tx_81vA;[?g endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203949Z) /ModDate (D:20121113203949Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<797251044907FBAC512DA1A26BE0C081> <797251044907FBAC512DA1A26BE0C081>] /Length 83 /Filter /FlateDecode >> stream xʹ0CQ`BL #))mjáy 0(IP@t dp۽J$pۭt/xE_u I endstream endobj startxref 17670 %%EOF beamer/doc/beamerlogo.pdf0000644000175000017500000000405112050430504015226 0ustar mohuramohura%PDF-1.4 % 3 0 obj << /Length 4 0 R /Filter /FlateDecode >> stream xuVKn,7 )ԏw<(KiOK=x܀1R#9 ֋f4Iu?Bp'i|73\nLYwlul+os@e2PR~A.{Fr%)+JB$ i{InLdc3cs]e%x *[Δ,|a@Zjy MբΒZ-\6 ڂѫ`5,>zfO-P2qK͢h S 7RiaJ5'EL8;Fvh}\zb%i!8z>-#ܒu$Q@zsaBF6Vڢ3`Bcř%B'W*`mX{ S@  ɤ#>̽f}:-( >":0Zd(V(1#.Bh!DECg#uOTUՁF }Q%wC HvLUb$2}CLº䡺:qkw8fNlbHE,5RmddS'6X[.҄ݟ.3W/ ?}+݇(~.ޒl?}+NrN>?sa endstream endobj 4 0 obj 1203 endobj 2 0 obj << /ExtGState << /a0 << /CA 1 /ca 1 >> >> >> endobj 5 0 obj << /Type /Page /Parent 1 0 R /MediaBox [ 0 0 170.078751 170.079422 ] /Contents 3 0 R /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources 2 0 R >> endobj 1 0 obj << /Type /Pages /Kids [ 5 0 R ] /Count 1 >> endobj 6 0 obj << /Creator (cairo 1.8.10 (http://cairographics.org)) /Producer (cairo 1.8.10 (http://cairographics.org)) >> endobj 7 0 obj << /Type /Catalog /Pages 1 0 R >> endobj xref 0 8 0000000000 65535 f 0000001603 00000 n 0000001317 00000 n 0000000015 00000 n 0000001294 00000 n 0000001389 00000 n 0000001668 00000 n 0000001795 00000 n trailer << /Size 8 /Root 7 0 R /Info 6 0 R >> startxref 1847 %%EOF beamer/doc/beameruginnerthemerounded.pdf0000644000175000017500000004753212050430600020351 0ustar mohuramohura%PDF-1.5 % 14 0 obj << /Length 1435 /Filter /FlateDecode >> stream xYIo7W(rlHRGPdkiGr4v:A$oȷ|#9& t2"-tqŰ10e 4N}h@ݗh}$gOU2Z E>8Fݢ4>!7`2ՄRn4 J[s4:u @)gɠt8 K5c8rU?ZLʉc[ C DI VsX@؀DZ E Ǭ R!CM]`EBmDlaǍ!uH}Օ~LZ+Y>៰ dtADclȜFENK-50&[ars/c{nM;.c-B0 fYl?1 a'S̿Ƀ}TJ܇sS(Bak4p%u'w-l*rN% ?ެ6]zyh3wAcr9߳@/zzLB?hdy7(|tH-KqZz .]㢀'ݧ|ykWo[^Fe2mIi$0rI "|u$g}YhOۍx{}!D]p|"0Rޙ @+WN.gfwU?$fSnXXCp62Z .g4N&n6.Z7mϝ/OIC_%ñ endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 14.834 14.834] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 18 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 11 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 19 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 26 0 obj << /Length 1898 /Filter /FlateDecode >> stream xYYOG~_яh}Qb˲AʃXrB,T5=!AZzf9!X^WvfW@gDADXA0d dz)yEV'G6Ny>vljz扤Y2_ήll T&.tTƨq*`LulW9?e[N,ARDHT(rLi@T/! n>CRu@R0r[H*E8ǯ\P0eCEe&dc$QyC-̨pV>_tI?"Kt,|7>oV7mɒ`y-,< {/LZN{).V`>Vq?s6ɰ?rxa`xd$If 3WTFYsЈcJB5GyypE,yenVHp^[m)z> /2K GwsU oڒSFRaKccQS_goފ`H ])"4|X-a8~b}'W [fyXmWvsp3Ft*eFq8~Y/([v%(G@.cqjqt3>M:8Jfut;;C-q9)[v[pjܖ2Η-7*Xى_Atalbj o^2_n9If(Wں*5/[DHB@jD)@Sᝂ"ӪUn%!:@5Ti_bXvdSWl%>^ږ2|g RKXrR.5",X'Ȇ"as1cQQׯc5g5ՌV3t]+ZOǷjq? G[\Dq,3(0iTg5|^|0jzZy}R% S,YL!a[ SBLouZa/0 Qʽj+zeLDZ*r;j T.]:zj5;6~M-3rTِ/ Cp4+O&]*tR9mohih,uk^@'"ୂX4WN;f:fFK h %Ou5YjZn.//֋:T *qkT* pI׹Gw?HCܪי6*ie*3"S>=bM4:˪G#^m:2]7 x>z{ʊG~CTNM q&6M+hof\=Ab4y`w1\rhkl]6s!ruQ$)ObL; )S[|\on^</oj. R8 qvAfpKAoZ1#puh”cA/,\K 7(*$ߧm2IcX9POWK ^%^ys/ -X ݊T[f[8f!Є xrp~09Z\C hs0&S~c+u5) -~<{F%|P=Ȯo%۲`VX8m` {KPqw[JJEqP^oo 2 endstream endobj 20 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 3.985] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 28 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 21 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 29 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 22 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 30 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 23 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 31 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 35 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 40 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203944Z) /ModDate (D:20121113203944Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 16 0 obj << /Type /ObjStm /N 22 /First 168 /Length 1567 /Filter /FlateDecode >> stream xYms6 _b$Rw%MvK|ش-/ddI~݀*m"R Bƽ+i ׀8:jzq:Ȧ#9Gr) kzɾS>4v -3Šn؎0mpm4|>WY>uꛇF.pj^MNI" ]њi iٲץxR hjK ,Ev I=<&kITW+ {ϧzHhٴ,cVoͦXЭazWZGw-H8^C﫢W*Yh'1' X273v2J@uDvCc0rRhkݒ=tl3diHih! v |ݼ߰KNj\XՇ?=~m?>8pqo>{}y[v6oBfpa7'هYnp Y Sѕ wmZ8#aCl{\ lF;Hʆ~mYriMt jF9#E OҺuZCgEYqt}w٠l?| ] /Length 117 /Filter /FlateDecode >> stream xʻ0a)vN0--004wt'Iܨ,Z Сf_Ⳁ\ӵq>e[u:=j! "À },x/T endstream endobj startxref 19947 %%EOF beamer/doc/beamerugcolorthemecrane.pdf0000644000175000017500000004351112050430556020007 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1315 /Filter /FlateDecode >> stream xr6Q)Qvfi2NI*MG-QuRh-M]V.vDy9aziuRaME.'d},s`/ǥT%7ʒM~tTR 4ֈ2-HcBj Pxtp8|DSo!KbcS/ȇ|YmY!Fv=}200_OնmfU]{? f#5Rh8 !*9uG/v^.@6@^3^FQ ꃪ*YjlɳjjQt9!ؠ-2Ԗy1Fz9f&۬ח1 .[,VM<#"zS՝_9z?bn=J0 R@<ٜ `|%e=!;=IBX-A"b2⥳2,Њ{FrdpӢ!cng7t%6f 1 {FRhb ^Orp>CP:!a}%c(&=d7xzK|7bPq3. 1XȨ>Ё}$`J^$to<ș=ro" Nuw:ݖ.2'565}ό %)DpЇSe8ΘZJwڤ'$F(I kP4푾ˬEd5/L)2;&ĀiF‰ Sx=%$"rVE\+B > stream xYKo7WhZ Aj`KJ"Cjr]k'TvԒ<Ђ}e͑GK?ix;¼`)e+.c)26CGg3-KE$c zD\HM(m5F{ǎ0ǃLx>.Ñe?\ ?c#9ty}\ GӴ=@j~:]bG ub4^[_"LqRbzlނӒV8:<$ $7<.Wg,vmh:4JBtyfJ_xA'xF'Dwi9Ȼ\ biAv)?e'y ՘n+P@{ҥ^H˔ҊhB*C6tȍ3N1lѶΔjp(qA?hQU2S,,n2f*V#Xkcf2UJF uƶ,Ǡ[K^f.2DUEuG ~T!SsOԏ:UE¼U -Tylf*DJudW^?`=".MNޒޥj\XOK lPDCƖ">N[U#GӪ@P!44:7uCm =7"T>mWizxƪS`#2b:Yg'f<]<Rr}[mH8VE+\ݟ9R;?Dm$ذWt^[dGpEqrIvm, RIMF9ˍx> E+J.wkjח3rS}(P ]{77ty̦:!S,h_Q۰}b -6Z)*6vM1)3.~4id88Z]^^,o-hHEqCfwd+"¼dۆa%:iN q.T!?E^g듻>毷f>|kŽ Wv6FsD-b{T? -Sva"|6V}[t?a yK~_?enrv:TS4﷐7'2naf]=ZGNq+ [5cjgz'gˋ y3J!\%.^Ig5-gw"Ƭ0ςM.?ʳskg \?uD;9 Kj 䃵X&O-G+{iP̺`'M7 endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203925Z) /ModDate (D:20121113203925Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<4A4134FD521868767D511742D311199C> <4A4134FD521868767D511742D311199C>] /Length 86 /Filter /FlateDecode >> stream xʱ D]Eh"4105B# |w^@(QdP@4m2c^d(-s[4x~d ; endstream endobj startxref 17913 %%EOF beamer/doc/beamerugthemeIlmenau.pdf0000644000175000017500000005050312050430524017244 0ustar mohuramohura%PDF-1.5 % 14 0 obj << /Length 1623 /Filter /FlateDecode >> stream xXYo7~ׯtcHmTy Xg\+T'Āp820bG5>bttFIM C6-=\#$[yGגaR&ݏS({xegCdݐ 2,;M>\0( q"tVJ"3!9'ʑߩXHRn;9Hy&GR ᆆew«^V?;SVPoW\gulKIEg = Sy7s԰ȽL[~zđ94mRH:ΌjozАuϾMoՑ/4pʙI&e$ RpZ$2f7q*Uq`>穚$P#^c7X<3IBA =gLTF3cJLI=GiYphY,AѴGϲL"LyS;"%0L2Ce$ 3!Cs,S@a,xZd% >˅_w#R3C#:VڪkC\tFc)sk;e_}骛TB䅧sLnu2_LǽKHP"kUI"H oQs ITc+ɩ +BÕUp2ESǙRiIxӪpH.cjP=9x ?h<դE O'bO+@O9FQhK^ﶓ?/^spUי;̲Ph:JJ$R&RV t?kc7pn(?Bؔ~E*NhP7e)(pB W G]2CU}Q5]h3BɮfaKR(*gE1ExU*1ZH=Ԧ]|h 9Gwȁ?$=īc;' A9SW)L\M;iu8^]ɛͤzXv̯o~⸝zԉrHҰo,H lZ8h [ )ql&DXty޴˞:rߒ_ռ9,R<ةXstnuH&¯jx86}xix* qk>{I5CKt:^V?r^t endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 14.834 14.834] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 18 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 11 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 19 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 26 0 obj << /Length 2202 /Filter /FlateDecode >> stream xZYs7~ׯT[>7+l*C62EI:H1tcIIV,U2=  ;`zؼ;:#& ʅ!99?0oK.H=rhTIS(OC^S뀤尷DT#p8o{ t Ao\82GI ZEۙQ5aVZg&תȲ n" _7 gNje$ R[$2fǯ̰{d;)bX X}i?O$2H5q 39$$pPs!`(#sqLI)HR?M2!S~Gwi-p"!ljAXH V2EKp,Te:d3$f| ";Gy {o nѐ4BoJ[J3ئQrx<_oGH~m?-t%I宠Y)RVn=ܪK@بW77G0u|:߬ˠ=u@&|4T*wa@qT,4U1(ojul>v~\5\.-a6G1 'c\(-Fݬ!P޼l^F,\6Eӳެ6833" 㑸*vZ͡V!q:Xfo ]Q&4PٲyMEo Oۄ quqy7'oRnnbZP?S2CU1q$d@UZ SaVQKzt_T~-fT ~Ldހj#y+F hqT ۳@{sH0wۣY)_BxTڰ!٥H { sw2YqV5j`:N#j| \<^?p8kd{{1f|EO{_ 3 `~fl/'e % K3 ,[MRO|ڷ}0;ʽIt7ZFWr?j=>Rvw,ط>LmUH#BՓHҲ_[Avi/ IcmG Vz,v(X({--~_;j$tl/V?4 ++ %w|c5 j^'>$g%EhU`s,OfZm1=ܤ۬Ęp1vz?_^-.0ٮp҈quy:@}ed&jv?uI 8X4ZWFpo\( ٕ-PCzhX^V n]JZ+> *\Ez((N?cAnx-bESi>kko7]-:Kdb"O׋ߏ^4RC!Z; gmN)3> stream xP( endstream endobj 21 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 29 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 22 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 30 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 23 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 31 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 35 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 40 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203900Z) /ModDate (D:20121113203900Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 16 0 obj << /Type /ObjStm /N 22 /First 168 /Length 1568 /Filter /FlateDecode >> stream xYYoF~ׯ5܋q'iǕݦZ^l-Q%%%YR%J/4\;AJ(H@8 aDj,H TBԀL&@jҩS 5V)br!)PMHd@*Y*:# Ruog$>)'45MprV }+U{8ORwʐ2葾*԰x 8Gz"4ߠ(l&*&y67& #)}~C:bH36~z}CcAmp8&61g[qf<2]=x{͜KK7 uiv ʒt=̷Q/^͕N[Z&æH c aݸ5|N؉Gef7e掲(G6oEk3SMqΦrUJ]m`h֐a,6N*gw0VWT7/.~+-dV_o5H)>Rmu]T8]O%^,,|\Z\I*s~"OA Œ\3]- sL@g!T%zkrm?z\Upx玒e}h[:A4r󠍊 몕`isI"k{ǼLa Ɇ?b&ʘea6BmuM洅me0mLu$K. iPLx]੯U1m* G^o>'G{?m>AGփ'=Is2- 3ꢇ!rZ!6}d<'&-'[ I\On3|G xg/qr< =q4o wi +'Xb98ũ  k[?{lޕ8÷WÂWfb'׫@lj"qw>k#1B5SP;A:yBG"$.HXV endstream endobj 41 0 obj << /Type /XRef /Index [0 42] /Size 42 /W [1 2 1] /Root 39 0 R /Info 40 0 R /ID [<8703E616AD189FB0DD5DAB3A89E06E00> <8703E616AD189FB0DD5DAB3A89E06E00>] /Length 113 /Filter /FlateDecode >> stream x 0aIʫO&!($L ؠۄ?OdKuqQjB+Ǐ +}aTn(i-[Q N8{~OVQ~ endstream endobj startxref 20440 %%EOF beamer/doc/beamerugcolorthemespruce.pdf0000644000175000017500000004336512050430574020227 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1305 /Filter /FlateDecode >> stream xn6_G8/-֢M *`9uGί^7_<Ic@fe {P97~dnG-a8cy-McPTU . B$Ns RX*J}XV1i쯆+.BcZm-Xi%9(^-!LXi 3TΒݒ!r=@%$t}d)-T:+3|Nfʑ PJry& GR au.@0!M V: ه6ǺCrM1e#DR1 k= S|9jXTn ߠ8"G&!#I# ;⃮X}lm=WGFļl`!ƜI&KG9OtbfaA>9RR z}:ijdJ5qxDN 7< P9`2<#)3$94OB {dpOM2ҼZ$HV3gJE2Ѽs[2VISx8 5Lb_eX :A?V@Nj/rx"Ɠ>!)r (,>:)&Ad{xJLX|jؽĒyG0w| 4ۼ F`)ZnmT=CSunO?qcH6%H}8z:/( 6.8W:։K}wDmhTaw:Lri&4U]vql~V} Z^6Ekn=(?rb`c^H6.o , ]NA$]dC}S}[ww%m7UxEV ԡkZ=כ-'!- ,N@7]RЮĀ~Ymm;h˷`DoBAI8J>aLhgՒIb'>y:Az1u:zr@RZ? ?|VF%_I8H?}G endstream endobj 18 0 obj << /Length 1680 /Filter /FlateDecode >> stream xnI_яVn>^WE@`m$vU}'-vTW}"JƯiuRaUC>><>zJê >f&aFG "œS|r|v2E`$d-ށk,56c\߯=^IXy;Ih'Ndl0:~us9=_̗Ų7fQ]2= Nex/8_ 3TΒbpG}gH?yJ0y xЁ8Q鬄$4|SObn1@Qxh DdI5 w[3R`X.~!x0HOuRcVe" 1 D5 [y9jX0T^d@-qU/j<xcIE* o>%D[{2%8ަJŇ4 ~0Þ?Jq?'U?a繚F9 0nBwʌG k P9 2ȲFSRH92ϗL aɠdy ;~ZȐf&H)RT@oH:4P 1L=~Z YB]pֳvδ2nOK~Y-CD%[6S6әLoCJ)4xJ*X-XbȜv dy!߂G-Qw%T(ЋT.Aӓ-C᫏žTEV"` ֒w#0[R9.Vq( p'NV"t5<ެRXRnKh@ &;ѓFOr(ůjÉ}03zmy8~}m7+o6}>#e#Jrhx/hWޛ2{]UƨKn罎D Ctyޡ:/W0)*sPE nO#Ia55KTGVZ )Y|]1+үB#mZ6^KdKM7)uL]:܏8lIp=J;^o5 8yoA7y XQ h6BR@`PEX6 :OSfJk;fJÁk QPC]Zğ endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203938Z) /ModDate (D:20121113203938Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 85 /Filter /FlateDecode >> stream x CA@ =իXYfolf #:0J$Y`? j~Z %Jbm\?$/~O endstream endobj startxref 17830 %%EOF beamer/doc/beamerugthemeSingapore.pdf0000644000175000017500000004347712050430536017620 0ustar mohuramohura%PDF-1.5 % 13 0 obj << /Length 1207 /Filter /FlateDecode >> stream xX_o6 O;`vEh89c/)YY,kR G")Ga͂M)u?Y\iRQ ʅ!/>VZrM-4_)dN9LADHEsDReKRkS +AEKAcdJ[JIqSZ< R%-@HDI5P s Y[#(4V ^' 9e%{,|R:lZpK[H*@8O.X0 ada>QA-{ܠfXqzLmPH VT~m =jRJRABG\!oLRiXXrQ˗_DL~VA6omnA4Us΢B_C= 'ϡ#jPE5LgI}8^wst_q, +'y{4Iei8+Z>zU.} >aa*^6 Q4 cH} XnS@z%S\wA]s}LGl/P^l΂wJߛl@eD^pj6[m7iov7w0Q]<5^C~NRSWLDS!oӳ 9M&6hP} 85)lYYDE^>vq!o'g״䗐قKySoX̀2ݾnopԚd塝gZ` endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 35.433] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 17 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 20 0 obj << /Length 1526 /Filter /FlateDecode >> stream x]O9_ǠS\VwUU y!6fِ@)\%xf<3#焑{R{gDADXA0I_j\?-4iIt8De4>@ !In P& :* 2cz80JI qGd+R9Z dN2WM!"W$Ha9#pZ !LH](նֻن2В=|z+6d:K`[H*ZE8O.@ha2$QÂ"vɶA7M.)g3Y1Xkl] YpyB4I&M=wp`0Qpx9v'< ZBE^ckMR#S1l` $aa 3** ,☒:C̑8}S57 7F ccT64Y\.fI>h!7o$lfwzڮ'es#Pe"[筿&eqhw Na|(Ŕ m} 3=*)?`ZHBZzxch~02~0]t:L7`lJ&΢oˮ1 @H#_[D`Ik.VduE~pW#&SxyT}ފ|1srIEC71Wrݥҹs~ 5X:[/"mxŇRa`0-wŠ^m Opp/p8[I?cSԍ?0162}$\C}K<eVSwj٦/̣ɬFǨ#ogN/\\ 6j}6?M+Ժ' >)p[.?:lzu;c4't08eu&2₟^ ul|S8;rk1kTX}EͿ[IlDpP;?"Yc endstream endobj 25 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 30 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203909Z) /ModDate (D:20121113203909Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 15 0 obj << /Type /ObjStm /N 17 /First 122 /Length 1129 /Filter /FlateDecode >> stream xV[o6~ׯ8-䈤.4`mlfAi[-;ei`S$wx|1ISՁW 4D*# X/h ="F|r!%c " IL)uH5^KË"M^W Az84U-SS10+5,9/`@ETS!G$yI^9: -Y/沩"@hVE9$)4YjΩY,bJE9,S(< i:+rw#/>N;! ƑdISiЀr6K^^ p#bi^'8CH%qNW\3W ,rܘ2+fYm+%VXGc4On?~LYu3w/n~8斉x_G~OxaX}$sQq% WyZۂPe󹡋ol@6ch˯M ۤB <75FEC965563DC86BFF36B0CE632E6F9E>] /Length 87 /Filter /FlateDecode >> stream xɹ @A8/"%E ((=TLS@J Q*QFEEdϿM0 Oj#zhof| endstream endobj startxref 17902 %%EOF beamer/doc/beamerugthemeFrankfurt.pdf0000644000175000017500000005375312050430522017624 0ustar mohuramohura%PDF-1.5 % 20 0 obj << /Length 1677 /Filter /FlateDecode >> stream xXYo7~tYcB6"mTy Xw\ڨv ٙspfe-advƆ#qiuRa]KnΏE;RAϒ[RO/*MNy#x2NT3O$UΒ쎜 qlJ4yOPQa qJI0q1"N2IQ0"xKF  ow+T FM>䔁3[01Y@]$#ER9>r1FBÔ8f׉| o\82GE F3[k`惮}m"},FΈn({&Y@+K: k_&i^^~e}ONFAV T}}I*#jdI5q 39$y.z8#22ǔԙ !"Lp:dghY^i4_d-% LYe)]_u&M2r9~)`Y0F< YݽVBf"7~ޕF5DNAtxzDGu IY,>Y:)I"oғ1dk Ac_O#l=a?1^*;55B)QuTعJ`K5P!}BOZv&/q|v׻id_ݯlwVcyrJQ'ʥYQ~jsmնqشS&nroG6N  _`mMo;a!`0lʵ#=l}7 &u9e~XaRp'nVOBxA-cݱJe2bsjO@.R~FuQT)Lz52a_UXK*z39}.k)&G~iVizQD˘%p /\$ 4"ң\SX1'}ߏ}-,wOP@Eҩ.% Uxw7}Y"\* !YHÍ­}[u)`-TV]bAQuOO*.=&^]Y endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 21.884] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 24 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 14 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 8 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 25 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 15 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 16 16] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 26 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 13 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 27 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 16 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 14.834 14.834] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 28 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 17 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 29 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 36 0 obj << /Length 2342 /Filter /FlateDecode >> stream xZYo7~ׯࣄE3`a ,yAd3[ŻiIcٱج*Uŏa0rdž-9ܻ:#& ʅ!%9;>/H}wiIF)}=$G 2NT3O$UΒjM i@i򉠠 2R鬔DgW#v6Ф(8 t EdI5(V97V={ׁSd>C^ru@Rr[H*D8G.Ha2aa"*o?)GGj2i/#!g / f(:u# ݽa틲~]ȱӗj#:{XEEQNƳ\9!#cDAD+m*=lyu2!ƚŪn]C$w[Q/-~h$}rI% ㇽ_2Yk0q$@s C¡`b^ִz^dEwb.۶Ә8y,^t7e2pU $|ߧrgg  =ȻfFT3.?RP HLFFP欿m#ɦ;+ a?%( 'vˌl^aLM*PnۦV*Fĝ03mQLҀֳzh<*D/֤p8W A)ƾ&c'3Τ{[-JÉEyuEi8b)5p ]'tB>l?8N'^=-X$Q҆X>IP?M9d(s S ŌJP-A1kx?6 Ō/ŪP̊`!vc^+ UayXa+Xa+0Xaہ4+l}aG/ l}¸e#x Z%rdj45FހLSEnBű)9Mg&9euTXPNa u i9wÉ)Vh0€)X\+M-L_?m:;f@IXd! ~rnf, X mm8 ~9$g&TRa<ԟ_Y1'rctOx8kdz1Q7r"E;8_ zKT{uT0f$RbKmj&KKƋ_O}P. 9_> stream xP( endstream endobj 12 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 3.126] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 39 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 30 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 3.985] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 40 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 31 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 41 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 32 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 42 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 33 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 43 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 47 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 52 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203857Z) /ModDate (D:20121113203857Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 22 0 obj << /Type /ObjStm /N 28 /First 215 /Length 1847 /Filter /FlateDecode >> stream xZsb?&>h4cVVTI;DA[`qw H6h%3{n_۽%Aj FKs?"_Zk΋25bz]'ZNq-I|&w[sSb˸QhT?%2mz/+˂W&KSvC2| )hkSt78dK9BΟ]B%ص WTUViᓄpQU4C'tC!7:Ϳq5NfnANW4e:ub7L}r[Nn^Nv$[ ] cȄ^s[mcB:tS6xzx}Mǰ_o4,{£"983rBM[s"Wx"Nu='M>u^Q;6XY="+tQE3/fY^dI]4H:jQ>+ℌy1NOV}R_Utl>y f759")|q>3Bz#F1zX u6qE׏=Lx.oɍ"F{EiIx<en봩No{ E ek}ȪFߺe&޴L۾i­L3Lwܒrߦ dW>j6|NoO*w#jj$~n< endstream endobj 53 0 obj << /Type /XRef /Index [0 54] /Size 54 /W [1 2 1] /Root 51 0 R /Info 52 0 R /ID [ ] /Length 146 /Filter /FlateDecode >> stream x˽@ 0L,BSSc{|;o粐%L䂑6||f0\" zr#'I$x `l[K`yK̥R2JZYɚ۶ e-/tL endstream endobj startxref 22111 %%EOF beamer/doc/beamerug-globalstructure.tex0000644000175000017500000010775512050430504020166 0ustar mohuramohurap% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-globalstructure.tex,v 67c48b3b652d 2012/05/01 07:25:30 joseph $ \section{Structuring a Presentation: The Static Global Structure} This section lists the commands that are used for structuring a presentation ``globally'' using commands like |\section| or |\part|. These commands are used to create a \emph{static} structure, meaning that the resulting presentation is normally presented one slide after the other in the order the slides occur. Section~\ref{section-nonlinear} explains which commands can be used to create the \emph{interactive} structure. For the interactive structure, you must interact with the presentation program, typically by clicking on hyperlinks, to advance the presentation. \subsection{Adding a Title Page} You can use the |\titlepage| command to insert a title page into a frame. By default, it will arrange the following elements on the title page: the document title, the author(s)'s names, their affiliation, a title graphic, and a date. \begin{command}{\titlepage} Inserts the text of a title page into the current frame. \example |\frame{\titlepage}| \example |\frame[plain]{\titlepage}| for a titlepage that fills the whole frame. \lyxnote If you use the ``Title'' style in your presentation, a title page is automatically inserted. \begin{element}{title page}\yes\yes\yes This template is invoked when the |\titlepage| command is used. \begin{templateoptions} \itemoption{default}{\oarg{alignment}} The title page is typeset showing the title, followed by the author, his or her affiliation, the date, and a titlegraphic. If any of these are missing, they are not shown. Except for the titlegraphic, if the \beamer-color |title|, |author|, |institute|, or |date| is defined, respectively, it is used to as textcolor for these entries. If a background color is defined for them, a colored bar in the corresponding color is drawn behind them, spanning the text width. The corresponding \beamer-fonts are used for these entries. The \meta{alignment} option is passed on the |beamercolorbox| and can be used, for example, to flush the title page to the left by specifying |left| here. \end{templateoptions} The following commands are useful for this template: \begin{templateinserts} \iteminsert{\insertauthor} inserts a version of the author's name that is useful for the title page. \iteminsert{\insertdate} inserts the date. \iteminsert{\insertinstitute} inserts the institute. \iteminsert{\inserttitle} inserts a version of the document title that is useful for the title page. \iteminsert{\insertsubtitle} inserts a version of the document title that is useful for the title page. \iteminsert{\inserttitlegraphic} inserts the title graphic into a template. \end{templateinserts} \end{element} \end{command} For compatibility with other classes, in |article| mode the following command is also provided: \begin{command}{\maketitle} \beamernote If used inside a frame, it has the same effect as |\titlepage|. If used outside a frame, it has the same effect as |\frame{\titlepage}|; in other words, a frame is added if necessary. \end{command} Before you invoke the title page command, you must specify all elements you wish to be shown. This is done using the following commands: \begin{command}{\title\oarg{short title}\marg{title}} The \meta{short title} is used in headlines and footlines. Inside the \meta{title} line breaks can be inserted using the double-backslash command. \example \begin{verbatim} \title{The Beamer Class} \title[Short Version]{A Very Long Title\\Over Several Lines} \end{verbatim} \articlenote The short form is ignored in |article| mode. \end{command} \begin{command}{\subtitle\oarg{short subtitle}\marg{subtitle}} The \meta{short subtitle} is not used by default, but is available via the insert |\insertshortsubtitle|. The subtitle is shown below the title in a smaller font. \example \begin{verbatim} \title{The Beamer Class} \subtitle{An easily paced introduction with many examples.} \end{verbatim} \articlenote This command causes the subtitle to be appended to the title with a linebreak and a |\normalsize| command issued before it. This may or may not be what you would like to happen. \end{command} \begin{command}{\author\oarg{short author names}\marg{author names}} The names should be separated using the command |\and|. In case authors have different affiliations, they should be suffixed by the command |\inst| with different parameters. \example |\author[Hemaspaandra et al.]{L. Hemaspaandra\inst{1} \and T. Tantau\inst{2}}| \articlenote The short form is ignored in |article| mode. \end{command} \begin{command}{\institute\oarg{short institute}\marg{institute}} If more than one institute is given, they should be separated using the command |\and| and they should be prefixed by the command |\inst| with different parameters. \example \begin{verbatim} \institute[Universities of Rijeka and Berlin]{ \inst{1}Department of Informatics\\ University of Rijeka \and \inst{2}Fakult\"at f\"ur Elektrotechnik und Informatik\\ Technical University of Berlin} \end{verbatim} \articlenote The short form is ignored in |article| mode. The long form is also ignored, except if the document class (like |llncs|) defines it. \end{command} \begin{command}{\date\oarg{short date}\marg{date}} \example|\date{\today}| or |\date[STACS 2003]{STACS Conference, 2003}|. \articlenote The short form is ignored in |article| mode. \end{command} \begin{command}{\titlegraphic\marg{text}} The \meta{text} is shown as title graphic. Typically, a picture environment is used as \meta{text}. \example |\titlegraphic{\pgfuseimage{titlegraphic}}| \articlenote The command is ignored in |article| mode. \end{command} \begin{command}{\subject\marg{text}} Enters the \meta{text} as the subject text in the \pdf\ document info. It currently has no other effect. \end{command} \begin{command}{\keywords\marg{text}} Enters the \meta{text} as keywords in the \pdf\ document info. It currently has no other effect. \end{command} By default, the |\title| and |\author| commands will also insert their arguments into a resulting \pdf-file in the document information fields. This may cause problems if you use complicated things like boxes as arguments to these commands. In this case, you might wish to switch off the automatic generation of these entries using the following class option: \begin{classoption}{usepdftitle=false} Suppresses the automatic generation of title and author entries in the \pdf\ document information. \end{classoption} \subsection{Adding Sections and Subsections} You can structure your text using the commands |\section| and |\subsection|. Unlike standard \LaTeX, these commands will not create a heading at the position where you use them. Rather, they will add an entry to the table of contents and also to the navigation bars. In order to create a line break in the table of contents (usually not a good idea), you can use the command |\breakhere|. Note that the standard command |\\| does not work (actually, we do not really know why; comments would be appreciated). \begin{command}{\section\sarg{mode specification}\oarg{short section name}\marg{section name}} Starts a section. No heading is created. The \meta{section name} is shown in the table of contents and in the navigation bars, except if \meta{short section name} is specified. In this case, \meta{short section name} is used in the navigation bars instead. If a \meta{mode specification} is given, the command only has an effect for the specified modes. \example |\section[Summary]{Summary of Main Results}| \articlenote The \meta{mode specification} allows you to provide an alternate section command in |article| mode. This is necessary for example if the \meta{short section name} is unsuitable for the table of contents: \example \begin{verbatim} \section[Results]{Results on the Main Problem} \section
{Results on the Main Problem} \end{verbatim} \begin{element}{section in toc}\yes\yes\yes This template is used when a section entry is to be typeset. For the permissible \meta{options} see the parent template |table of contents|. The following commands are useful for this template: \begin{templateinserts} \iteminsert{\inserttocsection} inserts the table of contents version of the current section name. \iteminsert{\inserttocsectionnumber} inserts the number of the current section (in the table of contents). \end{templateinserts} \end{element} \begin{element}{section in toc shaded}\yes\yes\yes This template is used instead of the previous one if the section should be shown in a shaded way, because it is not the current section. For the permissible \meta{options} see the parent template |table of contents|. \end{element} \end{command} \begin{command}{\section\sarg{mode specification}\declare{|*|}\marg{section name}} Starts a section without an entry in the table of contents. No heading is created, but the \meta{section name} is shown in the navigation bar. \example |\section*{Outline}| \example |\section*{Outline}| \end{command} \begin{command}{\subsection\sarg{mode specification}\oarg{short subsection name}\marg{subsection name}} This command works the same way as the |\section| command. \example |\subsection[Applications]{Applications to the Reduction of Pollution}| \begin{element}{subsection in toc}\yes\yes\yes Like |section in toc|, only for subsection. In addition to the inserts for the |section in toc| template, the following commands are available for this template: \begin{templateinserts} \iteminsert{\inserttocsubsection} inserts the table of contents version of the current subsection name. \iteminsert{\inserttocsubsectionnumber} inserts the number of the current subsection (in the table of contents). \end{templateinserts} \end{element} \begin{element}{subsection in toc shaded}\yes\yes\yes Like |section in toc shaded|, only for subsections. \end{element} \end{command} \begin{command}{\subsection\sarg{mode specification}\declare{|*|}\marg{subsection name}} Starts a subsection without an entry in the table of contents. No heading is created, but the \meta{subsection name} is shown in the navigation bar, \emph{except} if \meta{subsection name} is empty. In this case, neither a table of contents entry nor a navigation bar entry is created, \emph{but} any frames in this ``empty'' subsection are shown in the navigation bar. \example \begin{verbatim} \section{Summary} \frame{This frame is not shown in the navigation bar} \subsection*{} \frame{This frame is shown in the navigation bar, but no subsection entry is shown.} \subsection*{A subsection} \frame{Normal frame, shown in navigation bar. The subsection name is also shown in the navigation bar, but not in the table of contents.} \end{verbatim} \end{command} \begin{command}{\subsubsection\sarg{mode specification}\oarg{short subsubsection name}\marg{subsubsection name}} This command works the like |\subsection|. However, subsubsections are supported less well than subsections. For example, in the table of contents subsubsections are always shown with the same shading/hiding parameters as the subsection. We \emph{strongly} discourage the use of subsubsections in presentations. If you do not use them, you will give a better presentation. \example |\subsubsection[Applications]{Applications to the Reduction of Pollution}| \begin{element}{subsubsection in toc}\yes\yes\yes Like |subsection in toc|, only for subsection. In addition to the inserts for the |subsection in toc| template, the following commands are available for this template: \begin{templateinserts} \iteminsert{\inserttocsubsubsection} inserts the table of contents version of the current subsubsection name. \iteminsert{\inserttocsubsubsectionnumber} inserts the number of the current subsubsection (in the table of contents). \end{templateinserts} \end{element} \begin{element}{subsubsection in toc shaded}\yes\yes\yes Like |subsection in toc shaded|, only for subsubsections. \end{element} \end{command} \begin{command}{\subsubsection\sarg{mode specification}\declare{|*|}\marg{subsubsection name}} Starts a subsubsection without an entry in the table of contents. No heading is created, but the \meta{subsubsection name} is shown in a possible sidebar. \end{command} Often, you may want a certain type of frame to be shown directly after a section or subsection starts. For example, you may wish every subsection to start with a frame showing the table of contents with the current subsection highlighted. To facilitate this, you can use the following commands. \begin{command}{\AtBeginSection\oarg{special star text}\marg{text}} The given text will be inserted at the beginning of every section. If the \meta{special star text} parameter is specified, this text will be used for starred sections instead. Different calls of this command will not ``add up'' the given texts (like the |\AtBeginDocument| command does), but will overwrite any previous text. \example \begin{verbatim} \AtBeginSection[] % Do nothing for \section* { \begin{frame} \frametitle{Outline} \tableofcontents[currentsection] \end{frame} } \end{verbatim} \articlenote This command has no effect in |article| mode. \lyxnote You have to insert this command using a \TeX-mode text. \end{command} \begin{command}{\AtBeginSubsection\oarg{special star text}\marg{text}} The given text will be inserted at the beginning of every subsection. If the \meta{special star text} parameter is specified, this text will be used for starred subsections instead. Different calls of this command will not ``add up'' the given texts. \example \begin{verbatim} \AtBeginSubsection[] % Do nothing for \subsection* { \begin{frame} \frametitle{Outline} \tableofcontents[currentsection,currentsubsection] \end{frame} } \end{verbatim} \end{command} \begin{command}{\AtBeginSubsubsection\oarg{special star text}\marg{text}} Like |\AtBeginSubsection|, only for subsubsections. \end{command} \beamer\ also provides |\sectionpage| and |\subsectionpage| commands, which are used to fill a frame with section or subsection number and title in a stylish way. They are very similar to |\partpage| command described below. \example \begin{verbatim} \section{A section} \frame{\sectionpage} \frame{Some text.} \end{verbatim} If you enable \translatorname\ as described in Section \ref{section-translator-basic-usage}, you will also get translated strings for ``Section'', ``Subsection'' and others. \subsection{Adding Parts} If you give a long talk (like a lecture), you may wish to break up your talk into several parts. Each such part acts like a little ``talk of its own'' with its own table of contents, its own navigation bars, and so on. Inside one part, the sections and subsections of the other parts are not shown at all. To create a new part, use the |\part| command. All sections and subsections following this command will be ``local'' to that part. Like the |\section| and |\subsection| command, the |\part| command does not cause any frame or special text to be produced. However, it is often advisable for the start of a new part to use the command |\partpage| to insert some text into a frame that ``advertises'' the beginning of a new part. \begin{command}{\part\sarg{mode specification}\oarg{short part name}\marg{part name}} Starts a part. The \meta{part name} will be shown when the |\partpage| command is used. The \meta{short part name} is not shown anywhere by default, but it is accessible via the command |\insertshortpart|. \example \begin{verbatim} \begin{document} \frame{\titlepage} \section*{Outlines} \subsection{Part I: Review of Previous Lecture} \frame{ \frametitle{Outline of Part I} \tableofcontents[part=1]} \subsection{Part II: Today's Lecture} \frame{ \frametitle{Outline of Part II} \tableofcontents[part=2]} \part{Review of Previous Lecture} \frame{\partpage} \section[Previous Lecture]{Summary of the Previous Lecture} \subsection{Topics} \frame{...} \subsection{Learning Objectives} \frame{...} \part{Today's Lecture} \frame{\partpage} \section{Topic A} \frame{\tableofcontents[currentsection]} \subsection{Foo} \frame{...} \section{Topic B} \frame{\tableofcontents[currentsection]} \subsection{bar} \frame{...} \end{document} \end{verbatim} \end{command} \begin{command}{\partpage} Works like |\titlepage|, only that the current part, not the current presentation is ``advertised.'' \example |\frame{\partpage}| \begin{element}{part page}\yes\yes\yes This template is invoked when the |\partpage| command is used. \begin{templateoptions} \itemoption{default}{\oarg{alignment}} The part page is typeset showing the current part number and, below, the current part title. The \beamer-color and -font |part page| are used, including the background color of |part page|. As for the |title page| template, the \meta{alignment} option is passed on the |beamercolorbox|. \end{templateoptions} The following commands are useful for this template: \begin{templateinserts} \iteminsert{\insertpart} inserts the current part name. \iteminsert{\insertpartnumber} inserts the current part number as an Arabic number into a template. \iteminsert{\insertpartromannumber} inserts the current part number as a Roman number into a template. \end{templateinserts} \end{element} \end{command} \begin{command}{\AtBeginPart\marg{text}} The given text will be inserted at the beginning of every part. \example \begin{verbatim} \AtBeginPart{\frame{\partpage}} \end{verbatim} \end{command} \subsection{Splitting a Course Into Lectures} When using \beamer\ with the |article| mode, you may wish to have the lecture notes of a whole course reside in one file. In this case, only a few frames are actually part of any particular lecture. The |\lecture| command makes it easy to select only a certain set of frames from a file to be presented. This command takes (among other things) a label name. If you say |\includeonlylecture| with this label name, then only the frames following the corresponding |\lecture| command are shown. The frames following other |\lecture| commands are suppressed. By default, the |\lecture| command has no other effect. It does not create any frames or introduce entries in the table of contents. However, you can use |\AtBeginLecture| to have \beamer\ insert, say, a title page at the beginning of (each) lecture. \begin{command}{\lecture\oarg{short lecture name}\marg{lecture name}\marg{lecture label}} Starts a lecture. The \meta{lecture name} will be available via the |\insertlecture| command. The \meta{short lecture name} is available via the |\insertshortlecture| command. \example \begin{verbatim} \begin{document} \lecture{Vector Spaces}{week 1} \section{Introduction} ... \section{Summary} \lecture{Scalar Products}{week 2} \section{Introduction} ... \section{Summary} \end{document} \end{verbatim} \articlenote This command has no effect in |article| mode. \end{command} \begin{command}{\includeonlylecture\meta{lecture label}} Causes all |\frame|, |frame|, |\section|, |\subsection|, and |\part| commands following a |\lecture| command to be suppressed, except if the lecture's label matches the \meta{lecture label}. Frames before any |\lecture| commands are always included. This command should be given in the preamble. \example |\includeonlylecture{week 1}| \articlenote This command has no effect in |article| mode. \end{command} \begin{command}{\AtBeginLecture\marg{text}} The given text will be inserted at the beginning of every lecture. \example \begin{verbatim} \AtBeginLecture{\frame{\Large Today's Lecture: \insertlecture}} \end{verbatim} \articlenote This command has no effect in |article| mode. \end{command} \subsection{Adding a Table of Contents} You can create a table of contents using the command |\tableofcontents|. Unlike the normal \LaTeX\ table of contents command, this command takes an optional parameter in square brackets that can be used to create certain special effects. \begin{command}{\tableofcontents\oarg{comma-separated option list}} Inserts a table of contents into the current frame. \example \begin{verbatim} \section*{Outline} \frame{\tableofcontents} \section{Introduction} \frame{\tableofcontents[currentsection]} \subsection{Why?} \frame{...} \frame{...} \subsection{Where?} \frame{...} \section{Results} \frame{\tableofcontents[currentsection]} \subsection{Because} \frame{...} \subsection{Here} \frame{...} \end{verbatim} The following options can be given: \begin{itemize} \item \declare{|currentsection|} causes all sections but the current to be shown in a semi-transparent way. Also, all subsections but those in the current section are shown in the semi-transparent way. This command is a shorthand for specifying the following options: \begin{verbatim} sectionstyle=show/shaded,subsectionstyle=show/show/shaded \end{verbatim} \item \declare{|currentsubsection|} causes all subsections but the current subsection in the current section to be shown in a semi-transparent way. This command is a shorthand for specifying the option |subsectionstyle=show/shaded|. \item \declare{|firstsection=|\meta{section number}} specifies which section should be numbered as section~``1.'' This is useful if you have a first section (like an overview section) that should not receive a number. Section numbers are not shown by default. To show them, you must install a different table of contents templates. \item \declare{|hideallsubsections|} causes all subsections to be hidden. This command is a shorthand for specifying the option |subsectionstyle=hide|. \item \declare{|hideothersubsections|} causes the subsections of sections other than the current one to be hidden. This command is a shorthand for specifying the option |subsectionstyle=show/show/hide|. \item \declare{|part=|\meta{part number}} causes the table of contents of part \meta{part number} to be shown, instead of the table of contents of the current part (which is the default). This option can be combined with the other options, although combining it with the |current| option obviously makes no sense. \item \declare{|pausesections|} causes a |\pause| command to be issued before each section. This is useful if you wish to show the table of contents in an incremental way. \item \declare{|pausesubsections|} causes a |\pause| command to be issued before each subsection. \item \declare{|sections=|\marg{overlay specification}} causes only the sections mentioned in the \meta{overlay specification} to be shown. For example, \verb/sections={<2-4| handout:0>}/ causes only the second, third, and fourth section to be shown in the normal version, nothing to be shown in the handout version, and everything to be shown in all other versions. For convenience, if you omit the pointed brackets, the specification is assumed to apply to all versions. Thus |sections={2-4}| causes sections two, three, and four to be shown in all versions. \item \declare{|sectionstyle=|\meta{style for current section}|/|\meta{style for other sections}} specifies how sections should be displayed. Allowed \meta{styles} are |show|, |shaded|, and |hide|. The first will show the section title normally, the second will show it in a semi-transparent way, and the third will completely suppress it. You can also omit the second style, in which case the first is used for all sections (this is not really useful). \item \declare{|subsectionstyle=|\meta{style for current subsection}|/|\meta{style for other subsections in current section}|/|\\\meta{style for subsections in other sections}} specifies how subsections should be displayed. The same styles as for the |sectionstyle| option may be given. You can omit the last style, in which case the second also applies to the last, and you can omit the last two, in which case the first applies to all. \example |subsectionstyle=shaded| causes all subsections to be shaded. \example |subsectionstyle=hide| causes all subsections to be hidden. \example |subsectionstyle=show/shaded| causes all subsections but the current subsection in the current section to be shown in a semi-transparent way. \example |subsectionstyle=show/show/hide| causes all subsections outside the current section to be suppressed. \example |subsectionstyle=show/shaded/hide| causes all subsections outside the current section to be suppressed and only the current subsection in the current section to be highlighted. \item \declare{|subsubsectionstyle=|\meta{style for current subsubsection}|/|\meta{style for other subsubsections in current subsection}|/|\\\meta{style for subsubsections in other subsections}} specifies how subsubsections should be displayed. The same styles as for the |sectionstyle| option may be given. You can omit the last style, in which case the second also applies to the last, and you can omit the last two, in which case the first applies to all. This option operates in an analogous manner to |subsectionstyle|. \end{itemize} The last examples are useful if you do not wish to show too many details when presenting the talk outline. \articlenote The options are ignored in |article| mode. \lyxnote You can give options to the |\tableofcontents| command by inserting a \TeX-mode text with the options in square brackets directly after the table of contents. \begin{element}{section/subsection in toc}\semiyes\no\no This is a parent template, whose children are |section in toc| and |subsection in toc|. This means that if you use the |\setbeamertemplate| command on this template, the command is instead called for both of these children (with the same arguments). \begin{templateoptions} \itemoption{default}{} In the default setting, the sections and subsections are typeset using the fonts and colors |section in toc| and |subsection in toc|, though the background colors are ignored. The subsections are indented. \itemoption{sections numbered}{} Similar to the default setting, but the section numbers are also shown. The subsections are not numbered. \itemoption{subsections numbered}{} This time, the subsections are numbered, but not the sections. Nevertheless, since the subsections are ``fully numbered'' as in ``1.2'' or ``3.2,'' if every section has at least one subsection, the section numbered will not really be missed. \itemoption{circle}{} Draws little circles before the sections. Inside the circles the section number is shown. The \beamer-font and color |section number projected| is used for typesetting the circles, that is, the circle gets the background color and the text inside the circle the foreground color. \itemoption{square}{} Similar to the |circle| option, except that small squares are used instead of circles. Small, unnumbered squares are shown in front of the subsections. \itemoption{ball}{} Like |square|, the only difference being the balls are used instead of squares. \itemoption{ball unnumbered}{} Similar to |ball|, except that no numbering is used. This option makes the table of contents look more like an |itemize|. \end{templateoptions} If none of the above options suits you, you have to change the templates |section in toc| and |subsection in toc| directly. \end{element} \begin{element}{section/subsection in toc shaded}\semiyes\no\no A parent template with children |section in toc shaded| and |subsection in toc shaded|. They are used to render section and subsection entries when they are currently shaded; like all non-current subsections in |\tableofcontents[currentsubsection]|. \begin{templateoptions} \itemoption{default}{\oarg{opaqueness}} In the default setting, the templates |section in toc shaded| and |subsection in toc shaded| just show whatever the nonshaded versions of these templates show, but only \meta{opaqueness}\% opaque. The default is 20\%. \example |\setbeamertemplate{section in toc shaded}[default][50]| makes dimmed entries 50\% transparent. \end{templateoptions} \end{element} \end{command} \subsection{Adding a Bibliography} You can use the bibliography environment and the |\cite| commands of \LaTeX\ in a \beamer\ presentation. You will typically have to typeset your bibliography items partly ``by hand.'' Nevertheless, you \emph{can} use |bibtex| to create a ``first approximation'' of the bibliography. Copy the content of the file |main.bbl| into your presentation. If you are not familiar with |bibtex|, you may wish to consult its documentation. It is a powerful tool for creating high-quality citations. Using |bibtex| or your editor, place your bibliographic references in the environment |thebibliography|. This (standard \LaTeX) environment takes one parameter, which should be the longest |\bibitem| label in the following list of bibliographic entries. \begin{environment}{{thebibliography}\marg{longest label text}} Inserts a bibliography into the current frame. The \meta{longest label text} is used to determine the indentation of the list. However, several predefined options for the typesetting of the bibliography ignore this parameter since they replace the references by a symbol. Inside the environment, use a (standard \LaTeX) |\bibitem| command for each reference item. Inside each item, use a (standard \LaTeX) |\newblock| command to separate the authors' names, the title, the book/journal reference, and any notes. Each of these commands may introduce a new line or color or other formatting, as specified by the template for bibliographies. The environment must be placed inside a frame. If the bibliography does not fit on one frame, you should split it (create a new frame and a second |thebibliography| environment) or use the |allowframebreaks| option. Even better, you should reconsider whether it is a good idea to present so many references. \example \begin{verbatim} \begin{frame} \frametitle{For Further Reading} \begin{thebibliography}{Dijkstra, 1982} \bibitem[Salomaa, 1973]{Salomaa1973} A.~Salomaa. \newblock {\em Formal Languages}. \newblock Academic Press, 1973. \bibitem[Dijkstra, 1982]{Dijkstra1982} E.~Dijkstra. \newblock Smoothsort, an alternative for sorting in situ. \newblock {\em Science of Computer Programming}, 1(3):223--233, 1982. \end{thebibliography} \end{frame} \end{verbatim} Four templates govern the appearance of the author, title, journal, and note text. These author templates are inserted before the first block of the entry (the first block is all text before the first occurrence of a |\newblock| command). The title template is inserted before the second block (the text between the first and second occurrence of |\newblock|). Likewise for the journal and note templates. The templates are inserted \emph{before} the blocks and you do not have access to the blocks themselves via insert commands. The corresponding \beamer-color and -font are also installed before the blocks. \begin{element}{bibliography entry author}\yes\yes\yes This template is inserted before the author of a bibliography entry. The color and font are also installed. Note that the effect of this template will persist until the end of the bibliography item or until one of the following templates undo the effect. By default, this template does nothing. The default color is the structure color. \end{element} \begin{element}{bibliography entry title}\yes\yes\yes This template is inserted before the title of a bibliography entry (more precisely, it is inserted after the first occurrence of the |\newblock| command). By default, this template starts a new paragraph, causing a line break. The default color is the normal text color. \end{element} \begin{element}{bibliography entry location}\yes\yes\yes This template is inserted before the journal of a bibliography entry (the second |\newblock|). By default, this template starts a new paragraph. The default color is a slightly transparent version of the structure color. \end{element} \begin{element}{bibliography entry note}\yes\yes\yes This template is inserted before any note text at the end of a bibliography entry (it is inserted before the third |\newblock|). By default, this template starts a new paragraph. The default color is the same as for the journal. \end{element} \end{environment} \begin{command}{\bibitem\sarg{overlay specification}\oarg{citation text}\marg{label name}} The \meta{citation text} is inserted into the text when the item is cited using |\cite{|\meta{label name}|}| in the main presentation text. For a \beamer\ presentation, this should usually be as long as possible. Use |\newblock| commands to separate the authors's names, the title, the book/journal reference, and any notes. If the \meta{overlay specification} is present, the entry will only be shown on the specified slides. \example \begin{verbatim} \bibitem[Dijkstra, 1982]{Dijkstra1982} E.~Dijkstra. \newblock Smoothsort, an alternative for sorting in situ. \newblock {\em Science of Computer Programming}, 1(3):223--233, 1982. \end{verbatim} \begin{element}{bibliography item}\yes\yes\yes \colorfontparents{item} This template is used to render the bibliography item. Unlike normal \LaTeX, the default template for the bibliography does not repeat the citation text (like ``[Dijkstra, 1982]'') before each item in the bibliography. Instead, a cute, small article symbol is drawn. The rationale is that the audience will not be able to remember any abbreviated citation texts till the end of the talk. \begin{templateoptions} \itemoption{default}{} Draws a cute little article icon as the reference. Use this for journal articles, parts of books (like conference proceedings), or technical reports. \itemoption{article}{} Alias for the default. \itemoption{book}{} Draws a cute little book icon as the reference. Use this for, well, books. \itemoption{online}{} Draws a cute little globe icon as the reference. Use this for websites and the like. \itemoption{triangle}{} Draws a triangle as the reference. This is more in keeping with the standard itemize items. \itemoption{text}{} Uses the reference text (like ``[Dijkstra, 1982]'') as the reference text. Be sure you know what you are doing if you use this. \end{templateoptions} The following insert is useful for the template: \begin{itemize} \iteminsert{\insertbiblabel} inserts the current citation label. \end{itemize} \end{element} \end{command} \subsection{Adding an Appendix} You can add an appendix to your talk by using the |\appendix| command. You should put frames and perhaps whole subsections into the appendix that you do not intend to show during your presentation, but which might be useful to answer a question. The |\appendix| command essentially just starts a new part named |\appendixname|. However, it also sets up certain hyperlinks. Like other parts, the appendix is kept separate from your actual talk. \begin{command}{\appendix\sarg{mode specification}} Starts the appendix in the specified modes. All frames, all |\subsection| commands, and all |\section| commands used after this command will not be shown as part of the normal navigation bars. \example \begin{verbatim} \begin{document} \frame{\titlepage} \section*{Outline} \frame{\tableofcontents} \section{Main Text} \frame{Some text} \section*{Summary} \frame{Summary text} \appendix \section{\appendixname} \frame{\tableofcontents} \subsection{Additional material} \frame{Details} \frame{Text omitted in main talk.} \subsection{Even more additional material} \frame{More details} \end{document} \end{verbatim} \end{command} beamer/doc/beamerugthemeDresden.pdf0000644000175000017500000004342412050430520017236 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1337 /Filter /FlateDecode >> stream x]o6ݿ60qa]b+>xĖINI#7 H#RP. Yza ~%Yސ{I^FUι {yecCjdX& 2Z* J3\8TRJ"3!$eIu*%(e[N4 1"[i$%` 7Կ|z 1F>cT=}r" dPWJs]I-kr-b$!#PaX2dR|uѷ@>GҸIF=i_tծ, ՁmD=WGf#lgD`60 9gQhҼO})Xxy I{))]^p`uSy&Q#q1`%A =gLTFx2%u3Gq*a8I,AѸG\WIIjF;Tdd.oI: r?5Ìc_% X1Am Ⱥ۫? LnKsXMXެF!`> ae{uۆPDl1I 3'|J/L@АeǪɇ颇/hLv/z4x잆0%D|`xs;1 UX͆]_I-WIMn>)FN9&=t~8HXc[eC::=ڟ 1Ї| GOs;d"42 endstream endobj 18 0 obj << /Length 1680 /Filter /FlateDecode >> stream xrZ9j ErT%IeR9yrmj`O<0x6zjZwK\Fz898#& ʅ!8Б /Iszry+UI>^#T'B*'PLnQN;M0H q"tVJ"3&9!Gq#XS`()“ 2NHƑT(rAa.@xccFjn\Y/J䔁3[ 6Y] #2DR?hap;O3G Ⱥ7@J!̨YmB$D&>Eo`dI3цL 7R`q1fa3A:iw1 X=j~ e'øA P9 22FSRH92<χ C{/dy 3|PȐf&!ʀ\:U[Rͤ)s<_FB0"4g $ ZY3La=bV 9Q+}}DEs I=2?ewf8"qRRO`GDSśՎ% cQּվt]%{R Oͻr5zk1"!O /ƩtFJACS*0W`IW0tҖT:d3d:  uozFy2IeM[4&=7A<=zZ`zzJ3( Zr:$gb9[t?ݠH!ZHet/֫ӆfvM9{[uua~}} :yŏ?Y:]GӠu<;WԐY2fb*DaI?q|whq'ם4!_NGwGz7U(ך5v3h7Y8 qb?Lb9.q΀ga2ɥrm;p[e* eB[LkKk{k8z|}#u̢ʘmi 6'=4E^4N^4K4f͋f]:ѓ4FٮP 5<4Q9GFw8Ё2WS$mr%ǭ>6$O M+ERS+9\B{iwz1* qBɜnJj%/-%Je:8Z"ȪUa/^Bc DpՍzҲTU; 8_rw6Z*mC86aTa,[Z/ZOSXfꗋ.ZFijf5Ug)Ƀup֦%BuaT _/2b|3I JnZw*z3G8Qk^FxU6GiUڋU1rj0|15XnOYX/1$h'UՋ8u;PiirW.`R@j#CX{vSY*RV'|ALQ0p ~ Xm_Ф 5{ʕp̈́\>ǛQJwsZW&ʻ +Ysa[ٓJu~b$Y_Hn)W?>l OBMpO*> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203855Z) /ModDate (D:20121113203855Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1007 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoM7$E!AI-)(^HzAR_/$@*]2% "!)F}T>ɚT|s_J 8Su7:oj@Pu]Uke$zW X!R5 ⼆p8 W䕣 P\`q)'`M޾4'MhFCJ\X+*n`F>nSt&U4C\7e{x`*]losǫ90n#H.\J=BB͌ xl ](Ruz{o@pa(83֣y~sx͝FMPtY5VJD버=g~K%-=>#p1.0nc\Fc:_WpEG(  n1\cb妭Z?l֕|.g/Ur0TG?rh)L9~#> =2^BP]tDr: Qf+h1vŦۭ 1C Z=[n @U>Ew)[6뚯QFs*_v} 7W Cx4|i %C 쥂::&\EXŌԃ>zRgN'7'W 餬 endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 86 /Filter /FlateDecode >> stream xʱ D]E(&4SSK [2ƽ͟9w%%IDZ*8EfXn2:IvNjc O endstream endobj startxref 17860 %%EOF beamer/doc/beamerugthemeBoadilla.pdf0000644000175000017500000005243612050430514017367 0ustar mohuramohura%PDF-1.5 % 14 0 obj << /Length 1374 /Filter /FlateDecode >> stream xXYo6~[mbxc=E$N>t*Jl4R lh8-aGqtFJE M%]/=v![ҞNT#/6w}% dSܐ= 2,YE\h( pq"FJ"3.$ \eI*6SP$,@RDHT(rCi[Oᭅ0hu(|Kϟ@䔁it90! R#"ERQ9r1DBap9gjHǍ!Giܤ!ߴU 3uu!OFk1FDFL4 mY%6XxW39(LA!߰c Ky&V֌kl`ȋ$)Wi$p#rj!\ZyXK(%yܤHC$ZSh#΋E$5=S 2Or.O:tr9ôx}_$ X)ʏM#uݽ(Ej"/>k9tT |)rIfDQ(1m($ZkZ%V%.60'2~mxșpH|TkAnvTC`5k|5/$ƎO7a<[l|=ɸ/lWS'_}zBŠ÷ :8(uvΖa\,.V5e[+5 ò6&f+r+Ь5ѐ.~:rWN$?[^רv=tCX6'6W@F۪\n>j]r8gXWTXrDq,_eA@9̄Z0E-=M3t./VbWZ,h?g!lP*|ИXlJ=55^ʄ(kU=oZ%q-ܦfݓI)z@+n߾G`CZB>Pqn5h -ɼn)(,;dK]Dr lbeɃfH׶;kõq{ga;U4iQ$:NnSЭ07pS>IB:C!gXufA^˪~~\M{kHķ16ezC+hYAa{'iD5;=J)=]1 jŻ|pǤW8=@VC{R.sjj=F|EMӭK9X$lK}@%3m> stream xP( endstream endobj 11 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 19 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 29 0 obj << /Length 2384 /Filter /FlateDecode >> stream x[Yo~_h4xL° }G#ic.I𰻺X,*[\F'R=FP'5VP. Yh(oK-Y^ʡZ&)}'t'B*'\R,-&d2&AƕUz `2N$JI0qqJN-ežY^#VpCV@`fU&'r`3[01Y\$-e" sb[<9jXȽȄ[~zđ94wҒLyfT{k ` Ym&Y¥Ad \ ,vfH~&mŇY''g'ǽ%Lz\}uI3$øȜIrͼA =g2#) %YCϝ Cy/ ey >X)̬b0iw>@ڨiҔ9/#!f  F(:m"3YWЏYI_~&rfaa[6ܴRHgvH"oK)Stdi ":QMmJe?@C 롨Een]l:Ԙٌf36.n`z;Y48Dxu| g _Ǔpq8W]qkl8뮸2Hc{8!t}&<vTu]G2tͨ׻髜Եy *yBvX]&UEuw+n"N\sF&^y{ZXo8Q!Y>8tvm)`\\?na뚕0;6S}RmfVI6xV~ڬU6-{q +c:YўWY&i{mVX LU`{ g+zZa {}l-Ԗi1WiJtq4kwO;Nn~Ooo(~`%cX9Gy m* <ԼoyO%SBXBSkU3ZH؛fӎ 2ʻ+AYE.o&WkL85 ;^ݎTn )N7{C|Au_)*8.7 #C7r."TwG$+5b IZaѴFX 7[VCxk xa*=ox؏rkcU\ǦC9ލ~n"Ex p"_{/i63Dnf(8fC\6ux~@  @ x/n4'8^Xv+y{$JNԗfqI~?Υkn< Vu/R'>F1+ b#zNߎ%˰ endstream endobj 20 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 3.985] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 31 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 22 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 8 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 32 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 23 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 16 16] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 33 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 21 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 34 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 24 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 35 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 25 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 36 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 26 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 37 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 41 0 obj << /Length1 1166 /Length2 7454 /Length3 0 /Length 8226 /Filter /FlateDecode >> stream xuwUX\ٺ- xP4X\{E(!hpw %X-ء{}ws_9âQdZdg6Nv@`iQbٸ@^s zz-='B 2wC!O @8B@!^Χ5@(\;@=j g y. fYi.pK <`.3  / r@ O W=Gr Դj2V`?0:;Ä88`'ɚr`~jTb%u#I ˧<8; `k0ϑ\` HA 13r@-%<`?I?`s{6wyAO/N 3%s [:,@6Ow'd30ϿWOj{bp(+I)hsGIJBRqظxQ_:O) Py\Ap'o13?@ 1\?-i֐uSx C{s;= ?yvΖ_*[yAjP'7Nlrrz:?)%e P+0Jsտ?hK8I?ۿA w%R8Ȯ6Z܍ms 5F=:;R ɻr jöo* Cbe J#ɇQ:Fg8~!$Iڑ?)ԧ#5%6娊JNUW\>B3@dLΆFĔ+v|ٹ^Il^ߙ9 c r~N߶o;X "8F0V_`$Q.cᐐ*9[O2 b |gYTF,~E⢄&x45;82&Mg΁xyxxUB:/*!Uڰ률iڝ'c'(/rTgF͈Gͤ<295axƪVv] T)SΣ7\]8|KZGH QepҐK1TpF8vv(c0X7͞Q*<*y1[^ngvm揰z_e_vd2V. B~U C_>2D^@?rуj҈^Ws){[ 0p|&ƺի/zms^ۍFi[g/pI4lZ;<JLlg#m'*T.;xޫ q[b=|-6רK ՜k )!gcpA{ 7ssd:7Ox;#F왡ATy]smMG*e'L;R%1qAR|;1rd6~FAl}b؂-z57TvM~/4Sgl=K"cJڐ EVRrMKT)% ux6ƾ20jqb)=EDbjk%AaҫRy5ooNr}?p>9JvrIc fk=p7Kzx^64#6&ҜEk}A'YL\ ۺ s@W_J_eG&ުUFs5QxKҕOIa>M1A*[81nH>義% vZ5a@HRLg YZ:_3H2 6M\`4pԥx\vd_ hiLWcJ9hx޴ ]4 ܤl.-Њ.(!mł@;VQq 4x"MX\J'cx0IB5s3&, ڀp`1Giw*M 1GO͛и a$O&LHГ^R#WyHl4eM|5{1L-)j2+7Vr=~& yӅc Tb#r'( w ,`v*mgmG x-wSYE QJV1]lEE?;"˕*RHxT.eOk#*+5oWԝ?ްX~.cwd6C%AjM:`I56PK0mnGVڛEYϏৎ*rog՟ۆ/b%bήbnX%4pa5k<6eإx- ?h'`,KJ`pŧ~W Ŏ1Hu}sʢ ״e }rF[=Nuf>uRV9,Mzov#[h0oqԲ*%g86Sy]g -aζhJȁwqB5 kgwh/d 7Lo"E%ۤ8KjӂG+/ Zjy9&6Yg=WP! )׆A[ ׌Үy&igҷ!b*dk2y3E5vԸM-Dž4 yՅԮd Dcoh+0m=Ͱ&:NO?ߑk{E~;BJ@xXĢ,xH[3'_ArmrKi4]H]85Dr?p4iO5H2r' &&\`}2S>+Ź Su0{zT۠ ;$}ܖ5P8Gd} 'aOB%=ޝ8qgt?۬YTտ9 UD'AXD&|] ś$xgCE cYՕ7]?& \!r0 9ry, @毨C!y-HXqEoםB8l9#3wf0y:cGKTU]^aGO>icт3Sl,;Y﹥߼=bN_yLA=5/l,^:yHU!Z#W.MWtZ`NK[zGwjP1"3!%_d}v/2f|.Z#^WΗ[&$YCDLk`űc TgҞ>)Y>l!Մ@dW|E)Cu?+)$B;V u_0"?U J}7{P/+RiCRMRlأş'CFyx4 a?:7Pv/kd]\}{9Q)?)tF[y\fnA} nkߵ8Nc%[>RBӐ%Vb^mK/ݕ4reZ2J1̉8'y`G)ihi%$7_SD jl*Gyu^QD%̺reSj}h7i3K"nOا&l$|Q%y#YE*GBň.e_ޢWIՌF!2O1 ǣI'wT8&}n_%E}`ܷx\0\|Vs`9o⻣hỊ5udL m`ӝJ7\见!i)Dc%g1w3dlL&vDSD o֝)_I,u1Vʳq Nrl!ҴݧQ*&b)9ot_fn!%;=KlQldpK9OIHŒq۶/q ޙFRDy9N%y\B}ꂗ+DFDI^;mV̊AF&s9~f!ލ~txMwʚ-˰⮥Yvq_r@e /n/9:4w`_2\|HHRkMe8efl5W9mٗzI09C~~?KYEIŷfu[.*+"}9! NF__ b&=aU1MGGR:G7*ډ3%bѫyLZ-ed/P-}E;4*xbF54fKn+8e3ʯ2Vt3Ren :D-mY9AE&.;| q}`gTh2ھR'WŦy1X3cƌ#TC.鼣 CxLL9e?1%0Wm%b.Pp2F3@RϤfL ?J+ES HZ}i-]Wx .¡:E+T+6>?h|Wn4<)t4MV{/#4deB}AUye =dD_pT@'ܐC_g$Q Szp?HhS DlFjY-+J_7:;0C 2`PDX׸aյ2<i9t W],:!ZEVzX$z{bo(? ܕ8meX,`yf>ZuR=j:m*נ @N iljh5m"|M0ݶlyYcPwM\\'큏Vn$ Knofݑx*F<0o,MQ^ivZGJE1lGĺӽi+6ROs+<~^x p=p܎ x~x `'<"d'!(.LB@PiHPE}ITTn78ҸCJaxvJte@`,HV1sf`rhrWQadfu(_ٽlū5 l޺~P?,!ˏ~C6+i,RzI.7?F7MTncw_:mK%+ݰ_dGbY+:l)!?iu'ҜqNFG{p2'FY$SJw-}ж6ohΜ_:D5,<5ZKS!,_&_r M\v4 RaQYv6 wc%eb\:)$X%FmS)˽)]\<ڳk>FqItx`|D(^-3 '[Tpn[u^SPr$ )2p=K`K/B5=\GV]<ζ7lBܷBV{ |$Ě$kkTr}PeN s g`m 6rsْk"@_- Q䕸5LjmQl6ڥS(ϗLB|&tiJy|!JdpYNwLj7(^c>^ 0]4Y>Px e׽L6Z``u }Nr>BF%PO\q&v=5%q\b{(V295~@3]d6)nmzkh]|EκO?P<[/e5BTO^f3jVl2,ߕOYV:Uz9LyR:̙ ƫ""t$6! /QBeR HR#4@^873[^<\EC+eKuS^g=ज़%\tߋu(Dd.cؕ(CD0W}cO^J$:80Njvo|ؘ"5$y|>q97t\c'RUR%"'['iT6j}v5:m/ endstream endobj 43 0 obj << /Length1 1199 /Length2 4353 /Length3 0 /Length 5123 /Filter /FlateDecode >> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 46 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203852Z) /ModDate (D:20121113203852Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 16 0 obj << /Type /ObjStm /N 25 /First 192 /Length 1735 /Filter /FlateDecode >> stream xYmo6_q7 $@I[N AqdGmu#%[vԉv/:w$ a@H*,) "L55(Bk*$)S $T((jl AiLbAj$6$ (*e!6BBº# IIB:Ld h%YIh"%! DJs^,bZgӺ2,~* x\*=\DPԲ'dr2Vpxx ؇$˻6<]S8HY3.Y: gA$ͧGEB䚙򶂫G^#g0zINAS}hoVrVBhrό*JvIkSȏѲWxR hX%C&Y^0fGv-dy-IMQ@b>Ѓ"ǽP4[Aby1cVO6] |P Wu9`tbp$/GE";Wlb,,V ^]Eh25ћ`˫"tkRhkS:ԤhI3: H޶uVNAGe֙ԇOi?.-vTˏ7eiB;\%NM,Lz96n-(uJrzɟlrn/Ӛ܇}KE:r+JLƍ55:\c.s: mENj|bUEv͛#~څs˅;6ǴU>|"~k{a~am؟741 +E[Pq"hQXq8 (ϭn/r^uhwz^N I:.Gw#+)T/tMG Bڦl3VO,.-y- s|/ _9^`/5o0࠘LR ]w7pża'8i3{q6}t}gY8+|o-N ]6jk,'S9 /ݗ/^^\k[ G!!BO׍ޥCg:?8_qkIʇÌϯ$ :~SH =V G8Є/$ZKЉ/i`4;zuXZHn6vLUvq?ؽJ?˪`,m=7m}We|Ȫ1fYnYtMza;_*0'Ch?<+uXsIJvwm?&Wx>TW!U._ WT&Q7Gf" endstream endobj 47 0 obj << /Type /XRef /Index [0 48] /Size 48 /W [1 2 1] /Root 45 0 R /Info 46 0 R /ID [ ] /Length 128 /Filter /FlateDecode >> stream xʻQᙵтX*A MDo)QMR%49{C43Ȫ|H\n/7]>S#2(P"`zh<^bzaM>p\ endstream endobj startxref 21412 %%EOF beamer/doc/beamerug-nonpresentation.tex0000644000175000017500000005035112050430504020160 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-nonpresentation.tex,v eb80bc2d0e53 2012/04/15 11:03:09 spitzmueller $ \section{Creating Handouts and Lecture Notes} \label{section-modes} During a presentation it is very much desirable that the audience has a \emph{handout} or even \emph{lecture notes} available to it. A handout allows everyone in the audience to individually go back to things he or she has not understood. Always provide handouts \emph{as early as possible}, preferably weeks before the talk. Do \emph{not} retain the handout till the end of the talk. The \beamer\ package offers two different ways of creating special versions of your talk; they are discussed in the following. The first, easy, way is to create a handout version by adding the |handout| option, which will cause the document to be typeset in |handout| mode. It will ``look like'' a presentation, but it can be printed more easily (the overlays are ``flattened''). The second, more complicated and more powerful way is to create an independent ``article'' version of your presentation. This version coexists in your main file. \subsection{Creating Handouts Using the Handout Mode} \label{handout} The easiest way of creating a handout for your audience (though not the most desirable one) is to use the |handout| option. This option works exactly like the |trans| option. \begin{classoption}{handout} Create a version that uses the |handout| overlay specifications. You might wish to choose a different color and/or presentation theme for the handout. \end{classoption} When printing a handout created this way, you will typically wish to print at least two and possibly four slides on each page. The easiest way of doing so is presumably to use |pgfpages| as follows: \begin{verbatim} \usepackage{pgfpages} \pgfpagesuselayout{2 on 1}[a4paper,border shrink=5mm] \end{verbatim} Instead of |2 on 1| you can use |4 on 1| (but then you have to add |landscape| to the list of options) and you can use, say, |letterpaper| instead of |a4paper|. \subsection{Creating Handouts Using the Article Mode} \label{section-article} In the following, the ``article version'' of your presentation refers to a normal \TeX\ text typeset using, for example, the document class |article| or perhaps |llncs| or a similar document class. This version of the presentation will typically follow different typesetting rules and may even have a different structure. Nevertheless, you may wish to have this version coexist with your presentation in one file and you may wish to share some part of it (like a figure or a formula) with your presentation. In general, the article version of a talk is better suited as a handout than a handout created using the simple |handout| mode since it is more economic and can include more in-depth information. \subsubsection{Starting the Article Mode} The article mode of a presentation is created by specifying |article| or |book| or some other class as the document class instead of |beamer| and by then loading the package |beamerarticle|. The package |beamerarticle| defines virtually all of \beamer's commands in a way that is sensible for the |article| mode. Also, overlay specifications can be given to commands like |\textbf| or |\item| once |beamerarticle| has been loaded. Note that, except for |\item|, these overlay specifications also work: by writing |\section{Name}| you will suppress this section command in the article version. For the exact effects overlay specifications have in |article| mode, please see the descriptions of the commands to which you wish to apply them. \begin{package}{{beamerarticle}\opt{|[|\meta{options}|]|}} Makes most \beamer\ commands available for another document class. The following \meta{options} may be given: \begin{itemize} \item \declare{|activeospeccharacters|} will leave the character code of the pointed brackets as specified by other packages. Normally, \beamer\ will turn off the special behavior of the two characters |<| and |>|. Using this option, you can reinstall the original behavior at the price of possible problems when using overlay specifications in the |article| mode. \item \declare{|noamssymb|} will suppress the automatic loading of the |amssymb| package. Normally, \beamer\ will load this package since many themes use AMS symbols. This option allows you to opt-out from this behavior in article mode, thus preventing clashes with some classes and font packages that conflict with |amssymb|. Note that, if you use this option, you will have to care for yourself that |amssymb| or an alternative package is loaded if you use respective symbols. \item \declare{|noamsthm|} will suppress the loading of the |amsthm| package. No theorems will be defined. \item \declare{|notheorem|} will suppress the definition of standard environments like |theorem|, but |amsthm| is still loaded and the |\newtheorem| command still makes the defined environments overlay-specification-aware. Using this option allows you to define the standard environments in whatever way you like while retaining the power of the extensions to |amsthm|. \item \declare{|envcountsect|} causes theorem, definitions and the like to be numbered with each section. Thus instead of Theorem~1 you get Theorem~1.1. We recommend using this option. \item \declare{|noxcolor|} will suppress the loading of the |xcolor| package. No colors will be defined. \end{itemize} \example \begin{verbatim} \documentclass{article} \usepackage{beamerarticle} \begin{document} \begin{frame} \frametitle{A frame title} \begin{itemize} \item<1-> You can use overlay specifications. \item<2-> This is useful. \end{itemize} \end{frame} \end{document} \end{verbatim} \end{package} There is one remaining problem: While the |article| version can easily \TeX\ the whole file, even in the presence of commands like |\frame<2>|, we do not want the special article text to be inserted into our original \beamer\ presentation. That means, we would like all text \emph{between} frames to be suppressed. More precisely, we want all text except for commands like |\section| and so on to be suppressed. This behavior can be enforced by specifying the option |ignorenonframetext| in the presentation version. The option will insert a |\mode*| at the beginning of your presentation. The following example shows a simple usage of the |article| mode: \begin{verbatim} \documentclass[a4paper]{article} \usepackage{beamerarticle} %%\documentclass[ignorenonframetext,red]{beamer} \mode
{\usepackage{fullpage}} \mode{\usetheme{Berlin}} %% everyone: \usepackage[english]{babel} \usepackage{pgf} \pgfdeclareimage[height=1cm]{myimage}{filename} \begin{document} \section{Introduction} This is the introduction text. This text is not shown in the presentation, but will be part of the article. \begin{frame} \begin{figure} % In the article, this is a floating figure, % In the presentation, this figure is shown in the first frame \pgfuseimage{myimage} \end{figure} \end{frame} This text is once more not shown in the presentation. \section{Main Part} While this text is not shown in the presentation, the section command also applies to the presentation. We can add a subsection that is only part of the article like this: \subsection
{Article-Only Section} With some more text. \begin{frame} This text is part both of the article and of the presentation. \begin{itemize} \item This stuff is also shown in both version. \item This too. \only
{\item This particular item is only part of the article version.} \item This text is also only part of the article. \end{itemize} \end{frame} \end{document} \end{verbatim} There is one command whose behavior is a bit special in |article| mode: The line break command |\\|. Inside frames, this command has no effect in |article| mode, except if an overlay specification is present. Then it has the normal effect dictated by the specification. The reason for this behavior is that you will typically inserts lots of |\\| commands in a presentation in order to get control over all line breaks. These line breaks are mostly superfluous in |article| mode. If you really want a line break to apply in all versions, say |\\|. Note that the command |\\| is often redefined by certain environments, so it may not always be overlay-specification-aware. In such a case you have to write something like |\only{\\}|. \subsubsection{Workflow} \label{section-article-version-workflow} The following workflow steps are optional, but they can simplify the creation of the article version. \begin{itemize} \item In the main file |main.tex|, delete the first line, which sets the document class. \item Create a file named, say, |main.beamer.tex| with the following content: \begin{verbatim} \documentclass[ignorenonframetext]{beamer} \input{main.tex} \end{verbatim} \item Create an extra file named, say, |main.article.tex| with the following content: \begin{verbatim} \documentclass{article} \usepackage{beamerarticle} \setjobnamebeamerversion{main.beamer} \input{main.tex} \end{verbatim} \item You can now run |pdflatex| or |latex| on the two files |main.beamer.tex| and |main.article.tex|. \end{itemize} The command |\setjobnamebeamerversion| tells the article version where to find the presentation version. This is necessary if you wish to include slides from the presentation version in an article as figures. \begin{command}{\setjobnamebeamerversion\marg{filename without extension}} Tells the \beamer\ class where to find the presentation version of the current file. \end{command} \subsubsection{Including Slides from the Presentation Version in the Article Version} If you use the package |beamerarticle|, the |\frame| command becomes available in |article| mode. By adjusting the frame template, you can ``mimic'' the appearance of frames typeset by \beamer\ in your articles. However, sometimes you may wish to insert ``the real thing'' into the |article| version, that is, a precise ``screenshot'' of a slide from the presentation. The commands introduced in the following help you do exactly this. In order to include a slide from your presentation in your article version, you must do two things: First, you must place a normal \LaTeX\ label on the slide using the |\label| command. Since this command is overlay-specification-aware, you can also select specific slides of a frame. Also, by adding the option |label=|\meta{name} to a frame, a label \meta{name}|<|\meta{slide number}|>| is automatically added to each slide of the frame. Once you have labeled a slide, you can use the following command in your article version to insert the slide into it: \begin{command}{\includeslide\oarg{options}\marg{label name}} This command calls |\pgfimage| with the given \meta{options} for the file specified by \begin{quote} |\setjobnamebeamerversion|\meta{filename} \end{quote} Furthermore, the option |page=|\meta{page of label name} is passed to |\pgfimage|, where the \meta{page of label name} is read internally from the file \meta{filename}|.snm|. \example \begin{verbatim} \article \begin{figure} \begin{center} \includeslide[height=5cm]{slide1} \end{center} \caption{The first slide (height 5cm). Note the partly covered second item.} \end{figure} \begin{figure} \begin{center} \includeslide{slide2} \end{center} \caption{The second slide (original size). Now the second item is also shown.} \end{figure} \end{verbatim} \end{command} The exact effect of passing the option |page=|\meta{page of label name} to the command |\pgfimage| is explained in the documentation of |pgf|. In essence, the following happens: \begin{itemize} \item For old versions of |pdflatex| and for any version of |latex| together with |dvips|, the |pgf| package will look for a file named \begin{quote} \meta{filename}|.page|\meta{page of label name}|.|\meta{extension} \end{quote} For each page of your |.pdf| or |.ps| file that is to be included in this way, you must create such a file by hand. For example, if the PostScript file of your presentation version is named |main.beamer.ps| and you wish to include the slides with page numbers 2 and~3, you must create (single page) files |main.beamer.page2.ps| and |main.beamer.page3.ps| ``by hand'' (or using some script). If these files cannot be found, |pgf| will complain. \item For new versions of |pdflatex|, |pdflatex| also looks for the files according to the above naming scheme. However, if it fails to find them (because you have not produced them), it uses a special mechanism to directly extract the desired page from the presentation file |main.beamer.pdf|. \end{itemize} \subsection{Details on Modes} \label{section-mode-details} This subsection describes how modes work exactly and how you can use the |\mode| command to control what part of your text belongs to which mode. When \beamer\ typesets your text, it is always in one of the following five modes: \begin{itemize} \item \declare{|beamer|} is the default mode. \item \declare{|second|} is the mode used when a slide for an optional second screen is being typeset. \item \declare{|handout|} is the mode for creating handouts. \item \declare{|trans|} is the mode for creating transparencies. \item \declare{|article|} is the mode when control has been transferred to another class, like |article.cls|. Note that the mode is also |article| if control is transferred to, say, |book.cls|. \end{itemize} In addition to these modes, \beamer\ recognizes the following names for modes sets: \begin{itemize} \item \declare{|all|} refers to all modes. \item \declare{|presentation|} refers to the first four modes, that is, to all modes except for the |article| mode. \end{itemize} Depending on the current mode, you may wish to have certain text inserted only in that mode. For example, you might wish a certain frame or a certain table to be left out of your article version. In some situations, you can use the |\only| command for this purpose. However, the command |\mode|, which is described in the following, is much more powerful than |\only|. The command actually comes in three ``flavors,'' which only slightly differ in syntax. The first, and simplest, is the version that takes one argument. It behaves essentially the same way as |\only|. \begin{command}{\mode\sarg{mode specification}\marg{text}} Causes the \meta{text} to be inserted only for the specified modes. Recall that a \meta{mode specification} is just an overlay specification in which no slides are mentioned. The \meta{text} should not do anything fancy that involves mode switches or including other files. In particular, you should not put an |\include| command inside \meta{text}. Use the argument-free form below, instead. \example \begin{verbatim} \mode
{Extra detail mentioned only in the article version.} \mode {\frame{\tableofcontents[currentsection]}} \end{verbatim} \end{command} The second flavor of the |\mode| command takes no argument. ``No argument'' means that it is not followed by an opening brace, but any other symbol. \begin{command}{\mode\sarg{mode specification}} In the specified mode, this command actually has no effect. The interesting part is the effect in the non-specified modes: In these modes, the command causes \TeX\ to enter a kind of ``gobbling'' state. It will now ignore all following lines until the next line that has a sole occurrence of one of the following commands: |\mode|, |\mode*|, |\begin{document}|, |\end{document}|. Even a comment on this line will make \TeX\ skip it. Note that the line with the special commands that make \TeX\ stop gobbling may not directly follow the line where the gobbling is started. Rather, there must either be one non-empty line before the special command or at least two empty lines. When \TeX\ encounters a single |\mode| command, it will execute this command. If the command is |\mode| command of the first flavor, \TeX\ will resume its ``gobbling'' state after having inserted (or not inserted) the argument of the |\mode| command. If the |\mode| command is of the second flavor, it takes over. Using this second flavor of |\mode| is less convenient than the first, but there are different reasons why you might need to use it: \begin{itemize} \item The line-wise gobbling is much faster than the gobble of the third flavor, explained below. \item The first flavor reads its argument completely. This means, it cannot contain any verbatim text that contains unbalanced braces. \item The first flavor cannot cope with arguments that contain |\include|. \item If the text mainly belongs to one mode with only small amounts of text from another mode inserted, this second flavor is nice to use. \end{itemize} \emph{Note:} When searching line-wise for a |\mode| command to shake it out of its gobbling state, \TeX\ will not recognize a |\mode| command if a mode specification follows on the same line. Thus, such a specification must be given on the next line. \emph{Note:} When a \TeX\ file ends, \TeX\ must not be in the gobbling state. Switch this state off using |\mode| on one line and || on the next. \example \begin{verbatim} \mode
This text is typeset only in |article| mode. \verb!verbatim text is ok {! \mode { % this text is inserted only in presentation mode \frame{\tableofcontents[currentsection]}} Here we are back to article mode stuff. This text is not inserted in presentation mode \mode This text is only inserted in presentation mode. \end{verbatim} \end{command} The last flavor of the mode command behaves quite differently. \begin{command}{\mode\declare{|*|}} The effect of this mode is to ignore all text outside frames in the |presentation| modes. In |article| mode it has no effect. This mode should only be entered outside of frames. Once entered, if the current mode is a |presentation| mode, \TeX\ will enter a gobbling state similar to the gobbling state of the second ``flavor'' of the |\mode| command. The difference is that the text is now read token-wise, not line-wise. The text is gobbled token by token until one of the following tokens is found: |\mode|, |\frame|, |\againframe|, |\part|, |\section|, |\subsection|, |\appendix|, |\note|, |\begin{frame}|, and |\end{document}| (the last two are really tokens, but they are recognized anyway). Once one of these commands is encountered, the gobbling stops and the command is executed. However, all of these commands restore the mode that was in effect when they started. Thus, once the command is finished, \TeX\ returns to its gobbling. Normally, |\mode*| is exactly what you want \TeX\ to do outside of frames: ignore everything except for the above-mentioned commands outside frames in |presentation| mode. However, there are cases in which you have to use the second flavor of the |\mode| command instead: If you have verbatim text that contains one of the commands, if you have very long text outside frames, or if you wish some text outside a frame (like a definition) to be executed also in |presentation| mode. The class option |ignorenonframetext| will switch on |\mode*| at the beginning of the document. \example \begin{verbatim} \begin{document} \mode* This text is not shown in the presentation. \begin{frame} This text is shown both in article and presentation mode. \end{frame} this text is not shown in the presentation again. \section{This command also has effect in presentation mode} Back to article stuff again. \frame { this frame is shown only in the presentation. } \end{document} \end{verbatim} \example The following example shows how you can include other files in a main file. The contents of a |main.tex|: \begin{verbatim} \documentclass[ignorenonframetext]{beamer} \begin{document} This is star mode stuff. Let's include files: \mode \include{a} \include{b} \mode* Back to star mode \end{document} \end{verbatim} And |a.tex| (and likewise |b.tex|): \begin{verbatim} \mode* \section{First section} Extra text in article version. \begin{frame} Some text. \end{frame} \mode \end{verbatim} \end{command} beamer/doc/beamerugouterthemeshadow.pdf0000644000175000017500000004430112050430606020216 0ustar mohuramohura%PDF-1.5 % 13 0 obj << /Length 1248 /Filter /FlateDecode >> stream xXKs6W(͔(ޏc;I3ɴV-NMʖ]@ɪ"EJ+{\.}"jDGl{uë# a%baZVvcGlVڢ\]l%Q0ZoAE>=Ѯhlrk$BrV8Fs0Q"w[eP-S $ Lϩr j@4ޣñQ׼Oi0Xu(zORL`T[dt0IHao17B{l! S~f"Q-{ܨE9@d73j`f,$= HT &L(q@|4䘉;B;z$X>Y j?^_cdX{*p:c7ei%*Er es$qL%(9ecEi^".%98JDpR$& вC8/̌"lD$'o0r97IL 3D e[M~9cT 3 KȟJwl,3Հ^,q>3`f0PP5*t^N]bM)X=XA 2С8WjR0mƯWa|ϳ]rRP9ZnpPGm:ups $[Yƺ햋uՋgah #Oa\,n{ڝF_RKl_oʨjY{ӣ2iDcKQ_ %E0jM=̺y̺D ʰ׶kZ VVX5 au+b::uہ PΜf~yXu[hG3d5GO[ '}f {ײɧb@/xv5y:"O6H$I2W P[]*Gݣ YXV͆اXq {>.I|,ϐn4G9\3N:QݹRa9S/A orBg_ endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 3.985] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 17 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 21 0 obj << /Length 1624 /Filter /FlateDecode >> stream xZKo7W(Z4 Ab!A[d5ȿGKVۨ;K y#ׄ=1 {w3"Nj"\ϽKOS񊬮Ir\yM68 q"yu;Z@y* &0cz8T:+%ęֹ a#_a IQAT<EqFI5F g _uE /IJc[CNv JuAg$co"7yx䢋+ yaPy"$l1?uIHCzRKvfT{k |CCV㟱M d Wo"1o`I;ML6r',/׆>,~xf= ? EêذyuR81omPr<ڹk|ؕ(wgr#ccBL%mrT""nǩ]bq9N=9G_/{/^1/fk+@-u9&fv>t{9tĜ 4:r%XW糁Ip.o&dduou&u6EY!f1: GRHH<ϥVZTJr ͒=R 24_)j@zU-pu=YW/Wgy=f~5Ym(s4Ýςl֓6/^iVhPjj2ތRq=^7f^- W-[:B4!rȲH*b R&cb.}КhH1'TܼZḿ6NJZC5wvb'U~={,jKJm⌳~"ڠ AgAq9ID8 Bvgܭ@ӔMY G)hԄyczW%S)_B8?+*з> tTbYjz;r()Vu;6͸jjn({p X;%s!+}PvxRhVSbBZPlE< 4J3~AZ[f6 endstream endobj 18 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 272.126] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 23 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 27 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 32 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203948Z) /ModDate (D:20121113203948Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 15 0 obj << /Type /ObjStm /N 18 /First 133 /Length 1164 /Filter /FlateDecode >> stream xVKs6W1x9ь[[q%T%A[TIq P,ljБ@}|-B* #: :R@@4*@IP1(hYDB:dBvZRd|RdC}hJĠ)zxycoӅ]&+JLUl˩\Y0$СĚ0G#U8_tCz9/+Gg$e:\6YD ͪ(tJC65g4,is|9fUM"$q m>"z7>r"hIh,,#?IਧLD FtU1b:45>ܟfԵ)sPnJ^6`yTe)3mּ]ڥxgė 'y;{< J{$~[zz%Gl7wQr4&U[a6\L`ۗF*Zj>6K!QJΚ xn r6$v^k׌o}|&@)!vXOs5xٍFMRtX5 ' gѱ.K؃x2gElj0&Gr8jlvMk"0t+vlIV6*W'1禚٦.Jߤk^pݏ?dɶ,JN̞'2D|A@=<| GRIn>llN^*拕A'umֿB)-Ӓϒ7xxxx8!/x)NpbNq9ҩVK<9}_pKO\s, npcʬf/,<k1X*p 3m㠟p~m2/3>]D_=E&CG֎&P'$$Iȧf U64}kGjsc˯- ۔<0KB/ x =$Afs_j6fڮ  Im,_їߡ';oʪ2U*mlV/.5-|ȴ8F懇d_*m %SƷ)n;]JLw:;J'fUux]W#A7m'HhLG endstream endobj 33 0 obj << /Type /XRef /Index [0 34] /Size 34 /W [1 2 1] /Root 31 0 R /Info 32 0 R /ID [<92A2BC58D3D08F5AFFAAF570BE9A48CC> <92A2BC58D3D08F5AFFAAF570BE9A48CC>] /Length 95 /Filter /FlateDecode >> stream x @D*`l9 8_|9KRS*--:))E*NWAg {| if no other specification is given. \example |\defbeamertemplate{my template}{default}{something}| has no effect in |article| mode. \example |\defbeamertemplate
{my template}{default}{something}| has no effect in |presentation| modes, but has an effect in |article| mode. \example |\defbeamertemplate{my template}{default}{something}| applies to all modes. \end{command} It is often useful to have access to the same template option via different names. For this, you can use the following command to create aliases: \begin{command}{\defbeamertemplatealias\marg{element name}\marg{new predefined option name}\marg{existing predefined option name}} Causes the two predefined options to have the same effect. \end{command} There is no inheritance relation among templates as there is for colors and fonts. This is due to the fact the templates for one element seldom make sense for another. However, sometimes certain elements ``behave similarly'' and one would like a |\setbeamertemplate| to apply to a whole set of templates via inheritance. For example, one might want that |\setbeamertemplate{items}[circle]| causes all items to use the |circle| option, though the effects for the |itemize item| as opposed to the |itemize subsubitem| as opposed to |enumerate item| must be slightly different. The \beamer-template mechanism implements a simple form of inheritance via \emph{parent templates}. In element descriptions, parent templates are indicated via a check mark in parentheses. \begin{command}{\defbeamertemplateparent\marg{parent template name}\oarg{predefined option name}\marg{child template list}\\ \oarg{argument number}\oarg{default optional argument}\marg{arguments for children}} The effect of this command is that whenever someone calls |\setbeamertemplate{|\meta{parent template name}|}{|\meta{args}|}|, the command |\setbeamertemplate{|\meta{child template name}|}{|\meta{args}|}| is called for each \meta{child template name} in the \meta{child template list}. The \meta{arguments for children} come into play if the |\setbeamertemplate| command is called with a predefined option name (not necessarily the same as the \meta{predefined option name}, we'll come to that). If |\setbeamertemplate| is called with some predefined option name, the children are called with the \meta{arguments for children} instead. Let's look at two examples: \example The following is the typical, simple usage: \begin{verbatim} \defbeamertemplateparent{itemize items}{itemize item,itemize subitem,itemize subsubitem} {} %% The following command has the same effect as the three commands below: \setbeamertemplate{itemize items}[circle] \setbeamertemplate{itemite item}[circle] % actually, the ``empty'' argument is added \setbeamertemplate{itemize subitem}[circle] \setbeamertemplate{itemize subsubitem}[circle] \end{verbatim} \example In the following case, an argument is passed to the children: \begin{verbatim} \defbeamertemplateparent{sections/subsections in toc shaded} {section in toc shaded,subsection in toc shaded}[1][20] {[#1]} %% The following command has the same effect as the two commands below: \setbeamertemplate{sections/subsection in toc shaded}[default][35] \setbeamertemplate{section in toc shaded}[default][35] \setbeamertemplate{subsection in toc shaded}[default][35] %% Again: \setbeamertemplate{sections/subsection in toc shaded}[default] \setbeamertemplate{section in toc shaded}[default][20] \setbeamertemplate{subsection in toc shaded}[default][20] \end{verbatim} In detail, the following happens: When |\setbeamertemplate| is encountered for a parent template, \beamer\ first checks whether a predefined option follows. If not, a single argument is read and |\setbeamertemplate| is called for all children for this template. If there is a predefined template option set, \beamer\ evaluates the \meta{argument for children}. It may contain parameters like |#1| or |#2|. These parameters are filled with the arguments that follow the call of |\setbeamertemplate| for the parent template. The number of arguments must be the number given as \meta{argument number}. An optional argument can also be specified in the usual way. Once the \meta{arguments for the children} have been computed, |\setbeamertemplate| is called for all children for the predefined template and with the computed arguments. You may wonder what happens when certain predefined options take a certain number of arguments, but another predefined option takes a different number of arguments. In this case, the above-described mechanism cannot differentiate between the predefined options and it is unclear which or even how many arguments should be contained in \meta{arguments for children}. For this reason, you can give the optional argument \meta{predefined option name} when calling |\defbeamertemplateparent|. If this optional argument is specified, the parenthood of the template applies only to this particular \meta{predefined option name}. Thus, if someone calls |\setbeamertemplate| for this \meta{predefined option name}, the given \meta{argument for children} is used. For other predefined option names a possibly different definition is used. You can imaging that leaving out the optional \meta{predefined option name} means ``this \meta{argument for children} applies to all predefined option names that have not been specially defined differently.'' \end{command} beamer/doc/beamerugcolorthemefly.pdf0000644000175000017500000004261012050430572017506 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1146 /Filter /FlateDecode >> stream xWKs6W(͔(ޏc;M54V#NMʖzĵ }~x,# #;/g@eDADXA0d[ٻSǎTC:R ϵjBMI"Nq$Wz[/ a.o6?VH!)Udܾw}d{]\ϛ2?-~.q9DP̜S|~뺹<($ [jnJ'ڠ<"w#.z/Ha0:*|lbiN˦ !3R(!2mGeb c<fًĊDHyN9KvvKȒLVdq;woỤY Li 2{R%qDyE4ޑ$"xMF u.PD01M/PtKFCK>,`hd@sX LT a7qĨ%Cq> $6^#s)I_!g.c}wG|$3J ]wIyd!cS|I$NS-51I?Hѣ7y'+H/RT0\mS9g fI5q^2xdN$If g`QFu;Δt ' iT/'458luHfRqJEY{)sSLEqЎ d=ނIWpW|m㍙r(/|9!.!eR'K'1$x)%YI2Ө2"7OL>sL9 Z^I2_`'}mJ?ՔD$cHxNpi_~.Mo7o6̗q`󻸸]s ) HQGtЄ|w]/$SvC٦'iixC렗oJСؼo?v- MR-T:_zkOrRo! 0p })/rYѮDב~};xW о߅0±M8i4JX"Η=ʄzLv 89-b4wˈ<{7'4P `fӨH8hy endstream endobj 18 0 obj << /Length 1474 /Filter /FlateDecode >> stream xX[o9~WRmԭچ& Z6sɻHͤb(r4ǻtI3M㡏1"x9yy)p@am:Y]0JvsuKߚW43r/|.<1Ii?Y:m8)o*oSr:v+ x> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203936Z) /ModDate (D:20121113203936Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<82EDEE98F72575A74A5A30891BD03A79> <82EDEE98F72575A74A5A30891BD03A79>] /Length 85 /Filter /FlateDecode >> stream xʹ0CQ>eRR0Z7VK%J, uq[ {I$׶i endstream endobj startxref 17465 %%EOF beamer/doc/beamerthemeexamplebase.tex0000644000175000017500000000314312050430504017627 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerthemeexamplebase.tex,v 161eaf4bc28c 2010/05/08 12:41:37 rivanvx $ \beamertemplatesolidbackgroundcolor{black!5} \beamertemplatetransparentcovered \usepackage{times} \title{There Is No Largest Prime Number} \subtitle{With an introduction to a new proof technique} \author[Euklid]{Euklid of Alexandria} \institute[Univ. Alexandria]{Department of Mathematics\\ University of Alexandria} \date[ISPN '80]{27th International Symposium on Prime Numbers, --280} \begin{document} \begin{frame} \titlepage \tableofcontents \end{frame} \section{Results} \subsection{Proof of the Main Theorem} \begin{frame}<1> \frametitle{There Is No Largest Prime Number} \framesubtitle{The proof uses \textit{reductio ad absurdum}.} \begin{theorem} There is no largest prime number. \end{theorem} \begin{proof} \begin{enumerate} % The strange way of typesetting math is to minimize font usage % in order to keep the file sizes of the examples small. \item<1-| alert@1> Suppose $p$ were the largest prime number. \item<2-> Let $q$ be the product of the first $p$ numbers. \item<3-> Then $q$\;+\,$1$ is not divisible by any of them. \item<1-> Thus $q$\;+\,$1$ is also prime and greater than $p$.\qedhere \end{enumerate} \end{proof} \end{frame} \end{document} beamer/doc/beamerug-fonts.tex0000644000175000017500000005141712050430504016067 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-fonts.tex,v f39336aafb3c 2010/10/26 18:09:31 rivanvx $ \section{Fonts} \label{section-fonts} The first subsection introduces the predefined font themes that come with \beamer\ and which make it easy to change the fonts used in a presentation. The next subsection describes further special commands for changing some basic attributes of the fonts used in a presentation. The last subsection explains how you can get a much more fine-grained control over the fonts used for every individual element of a presentation. \subsection{Font Themes} \beamer\ comes with a set of font themes. When you use such a theme, certain fonts are changed as described below. You can use several font themes in concert. For historical reasons, you cannot change all aspects of the fonts used using font themes---in some cases special commands and options are needed, which are described in the next subsection. The following font themes only change certain font attributes, they do not choose special font families (although that would also be possible and themes doing just that might be added in the future). Currently, to change the font family, you need to load special packages as explained in the next subsection. \begin{fontthemeexample}{default} The default font theme installs a sans serif font for all text of the presentation. The default theme installs different font sizes for things like titles or head- and footlines, but does not use boldface or italics for ``highlighting.'' To change some or all text to a serif font, use the |serif| theme. Note: The command |\mathrm| will always produce upright (not slanted), serif text and the command |\mathsf| will always produce upright, sans-serif text. The command |\mathbf| will produce upright, bold-face, sans-serif or serif text, depending on whether |mathsans| or |mathserif| is used. To produce an upright, sans-serif or serif text, depending on whether |mathsans| or |mathserif| is used, you can use for instance the command |\operatorname| from the |amsmath| package. Using this command instead of |\mathrm| or |\mathsf| directly will automatically adjust upright mathematical text if you switch from sans-serif to serif or back. \end{fontthemeexample} \begin{fontthemeexample*}{professionalfonts} This font theme does not really change any fonts. Rather, it \emph{suppresses} certain internal replacements performed by \beamer. If you use ``professional fonts'' (fonts that you buy and that come with a complete set of every symbol in all modes), you do not want \beamer\ to meddle with the fonts you use. \beamer\ normally replaces certain character glyphs in mathematical text by more appropriate versions. For example, \beamer\ will normally replace glyphs such that the italic characters from the main font are used for variables in mathematical text. If your professional font package takes care of this already, \beamer's meddling should be switched off. Note that \beamer's substitution is automatically turned off if one of the following packages is loaded: |arevmath|, |hvmath|, |kpfonts|, |lucidabr|, |lucimatx|, |mathpmnt|, |mathpple|, |mathtime|, |mtpro|, and |mtpro2|. If your favorite professional font package is not among these, use the |professionalfont| option (and write us an email, so that the package can be added). \end{fontthemeexample*} \begin{fontthemeexample}[\oarg{options}]{serif} This theme causes all text to be typeset using the default serif font (except if you specify certain \meta{options}). You might wish to consult Section~\ref{section-guidelines-serif} on whether you should use serif fonts. The following \meta{options} may be given: \begin{itemize} \item \declare{|stillsansserifmath|} causes mathematical text still to be typeset using sans serif. This option only makes sense if you also use the |stillsansseriftext| option since sans serif math inside serif text looks silly. \item \declare{|stillsansserifsmall|} will cause ``small'' text to be still typeset using sans serif. This refers to the text in the headline, footline, and sidebars. Using this options is often advisable since small text is often easier to read in sans serif. \item \declare{|stillsansseriflarge|} will cause ``large'' text like the presentation title or the frame title to be still typeset using sans serif. Sans serif titles with serif text are a popular combination in typography. \item \declare{|stillsansseriftext|} will cause normal text (none of the above three) to be still typeset using sans serif. If you use this option, you should most likely also use the first two. However, by not using |stillsansseriflarge|, you get a serif (possibly italic) title over a sans serif text. This can be an interesting visual effect. Naturally, ``interesting typographic effect'' can mean ``terrible typographic effect'' if you choose the wrong fonts combinations or sizes. You'll need some typographic experience to judge this correctly. If in doubt, try asking someone who should know. \item \declare{|onlymath|} is a short-cut for selecting all of the above options except for the first. Thus, using this option causes only mathematical text to by typeset using a serif font. Recall that, by default, mathematical formulas are also typeset using sans-serif letters. In most cases, this is visually the most pleasing and easily readable way of typesetting mathematical formulas if the surrounding text is typeset using sans serif. However, in mathematical texts the font used to render, say, a variable is sometimes used to differentiate between different meanings of this variable. In such case, it may be necessary to typeset mathematical text using serif letters. Also, if you have a lot of mathematical text, the audience may be quicker to ``parse'' it if it is typeset the way people usually read mathematical text: in a serif font. \end{itemize} \end{fontthemeexample} \begin{fontthemeexample}[\oarg{options}]{structurebold} This font theme will cause titles and text in the headlines, footlines, and sidebars to be typeset in a bold font. The following \meta{options} may be given: \begin{itemize} \item \declare{|onlysmall|} will cause only ``small'' text to be typeset in bold. More precisely, only the text in the headline, footline, and sidebars is changed to be typeset in bold. Large titles are not affected. \item \declare{|onlylarge|} will cause only ``large'' text to be typeset in bold. These are the main title, frame titles, and section entries in the table of contents. \end{itemize} As pointed out in Section~\ref{section-sizes}, you should use this theme (possibly with the |onlysmall| option) if your font is not scaled down properly or for light-on-dark text. The normal themes do not install this theme by default, while the old compatibility themes do. Since you can reload the theme once it has been loaded, you cannot use this theme with the old compatibility themes to set also titles to a bold font. \end{fontthemeexample} \begin{fontthemeexample}[\oarg{options}]{structureitalicserif} This theme is similarly as the |structurebold| font theme, but where |structurebold| makes text bold, this theme typesets it in italics and in the standard serif font. The same \meta{options} as for the |structurebold| theme are supported. See Section~\ref{section-italics} for the pros and cons of using italics. \end{fontthemeexample} \begin{fontthemeexample}[\oarg{options}]{structuresmallcapsserif} Again, this theme does exactly the same as the |structurebold| font theme, only this time text is set using small caps and a serif font. The same \meta{options} as for the |structurebold| theme are supported. See Section~\ref{section-smallcaps} for the pros and cons of using small caps. \end{fontthemeexample} \subsection{Font Changes Made Without Using Font Themes} While most font decisions can be made using font themes, for historical reasons some changes can only be made using class options or by loading special packages. These options are explained in the following. Possibly, these options will be replaced by themes in the future. \subsubsection{Choosing a Font Size for Normal Text} As pointed out in Section~\ref{section-sizes}, measuring the default font size in points is not really a good idea for presentations. Nevertheless, \beamer\ does just that, setting the default font size to 11pt as usual. This may seem ridiculously small, but the actual size of each frame size is by default just 128mm by 96mm and the viewer application enlarges the font. By specifying a default font size smaller than 11pt you can put more onto each slide, by specifying a larger font size you can fit on less. To specify the font size, you can use the following class options: \begin{classoption}{8pt} This is way too small. Requires that the package |extsize| is installed. \end{classoption} \begin{classoption}{9pt} This is also too small. Requires that the package |extsize| is installed. \end{classoption} \begin{classoption}{10pt} If you really need to fit more onto each frame, use this option. Works without |extsize|. \end{classoption} \begin{classoption}{smaller} Same as the |10pt| option. \end{classoption} \begin{classoption}{11pt} The default font size. You need not specify this option. \end{classoption} \begin{classoption}{12pt} Makes all fonts a little bigger, which makes the text more readable. The downside is that less fits onto each frame. \end{classoption} \begin{classoption}{bigger} Same as the |12pt| option. \end{classoption} \begin{classoption}{14pt} Makes all fonts somewhat bigger. Requires |extsize| to be installed. \end{classoption} \begin{classoption}{17pt} This is about the default size of PowerPoint and OpenOffice.org Impress. Requires |extsize| to be installed. \end{classoption} \begin{classoption}{20pt} This is really huge. Requires |extsize| to be installed. \end{classoption} \subsubsection{Choosing a Font Family} \label{section-substition} By default, \beamer\ uses the Computer Modern fonts. To change this, you can use one of the prepared packages of \LaTeX's font mechanism. For example, to change to Times/Helvetica, simply add \begin{verbatim} \usepackage{mathptmx} \usepackage{helvet} \end{verbatim} in your preamble. Note that if you do not use the |serif| font theme, Helvetica (not Times) will be selected as the text font. There may be many other fonts available on your installation. Typically, at least some of the following packages should be available: |arev|, |avant|, |bookman|, |chancery|, |charter|, |euler|, |helvet|, |lmodern|, |mathtime|, |mathptm|, |mathptmx|, |newcent|, |palatino|, |pifont|, |utopia|. \subsubsection{Choosing a Font Encodings} \label{section-font-encoding} The same font can come in different encodings, which are (very roughly spoken) the ways the characters of a text are mapped to glyphs (the actual shape of a particular character in a particular font at a particular size). In \TeX\ two encodings are often used with Latin characters: the T1~encoding and the OT1~encoding (old T1~encoding). Conceptually, the newer T1~encoding is preferable over the old OT1~encoding. For example, hyphenation of words containing umlauts (like the famous German word Fr\"aulein) will work only if you use the T1~encoding. Unfortunately, the EC fonts, that is, the T1-encoded Computer Modern fonts, are distributed on small installations just as MetaFont sources and only have bitmap renditions of each glyph. For this reason, using the T1-encoded EC fonts on such small installations will produce \pdf\ files that render poorly. \TeX\ Live (cross-platform; replaced older \texttt{teTeX} for \textsc{unix}\slash Linux) and MiK\TeX\ (for Windows platforms) can be installed with different levels of completeness. Concerning the Computer Modern fonts, the following packages can be installed: |cm-super| fonts, |lmodern| (Latin Modern) fonts, and |lgc| fonts, the latter containing the Latin, Greek, and Cyrillic alphabets. Concerning other fonts, the |txfonts| and |pxfonts| are two extended sets of the Times and the Palatino PostScript fonts, both packages containing extended sets of mathematical glyphs. Most other standard PostScript fonts are also available in T1~encoding. Among the packages that make available the Computer Modern fonts in the T1~encoding, the package |lmodern| may be suggested. If you use |lmodern|, several extra fonts become available (like a sans-serif boldface math) and extra symbols (like proper guillemots). To select the T1 encoding, use \verb|\usepackage[T1]{fontenc}|. Thus, if you have the LM~fonts installed, you could write \begin{verbatim} \usepackage[T1]{fontenc} \usepackage{lmodern} \end{verbatim} to get beautiful outline fonts and correct hyphenation. Note, however, that certain older versions of the LM~bundle did not include correct glyphs for ligatures like ``fi,'' which may cause trouble. Double check that all ligatures are displayed correctly and, if not, update your installation. Everything mentioned above applies to |pdflatex| and |latex|+|dvips|. Unlike those engines, |xelatex| and |lualatex| support OpenType fonts, and that means that you can use system fonts in your documents relatively easy. Details will eventually be documented in this manual. For now, you can take a look at the documentation for the |fontspec| package which supports both engines. Also, note that when you use |lualatex| or |xelatex| with EU2 or EU1 encoding, respectively, by default you get OpenType Latin Modern fonts. \subsection{Changing the Fonts Used for Different Elements of a Presentation} This section explains how \beamer's font management works. \subsubsection{Overview of Beamer's Font Management} \beamer's font mechanism is somewhat similar to \beamer's color mechanism, but not quite the same. As for colors, every \beamer\ element, like the frame titles, the document title, the footnotes, and so on has a certain \beamer-font. As for colors, on the one hand you can specify the font of each element individually; on the other hand fonts also use inheritance, thereby making it easy to globally change the fonts used for, say, ``titlelike things'' or for ``itemizelike things.'' While a \beamer-color has a certain foreground and a certain background, either of which may be empty, a \beamer-font has a size, a shape, a series, and a family, each of which may be empty. The inheritance relation among \beamer-fonts is not necessarily the same as between \beamer-colors, though we have tried to match them whenever possible. Multiple inheritance plays a more important rule for fonts than it does for colors. A font might inherit the attributes of two different fonts. If one of them specifies that the font should be, say, boldface and the other specifies that the font should be, say, large, then the child font will be both large and bold. As for fonts, the description of the font used for an element is given after the description of the element. \subsubsection{Using Beamer's Fonts} To use a \beamer-font, you can use the command |\usebeamerfont|. Inside the templates for elements, this command will (typically) have already been called for you, so you will only seldomly have to use this command. \begin{command}{\usebeamerfont\opt{|*|}\marg{beamer-font name}} This command changes the current font to the font specified by the \meta{beamer-font name}. The \meta{beamer-font name} can be a not-too-fancyful text and may contain spaces. Typical examples are |frametitle| or |section in toc| or |My Font 1|. \beamer-fonts can have (and should) have the same name as \beamer-templates and \beamer-colors. \example |\usebeamerfont{frametitle}| In the unstarred version of this command, the font is changed according to the attributes specified in the \meta{beamer-font name}, but unspecified attributes remain unchanged. For example, if the font specifies that the font should be ``bold,'' but specifies nothing else, and if the current font is large, then |\usebeamerfont| causes the current font to become large and bold. In the starred version of this command, the font is first reset before the font's attributes are applied. Thus, in the above example of a \beamer-font having only the attribute ``boldface'' set, saying |\usebeamerfont*| will \emph{always} cause the current font to become a normal-size, normal-shape, bold, default-family font. \end{command} \subsubsection{Setting Beamer's Fonts} As for \beamer-colors, there exists a central command for setting and changing \beamer-fonts. \begin{command}{\setbeamerfont\opt{|*|}\marg{beamer-font name}\marg{attributes}} This command sets or resets certain attributes of the \beamer-font \meta{beamer-font name}. In the unstarred version, this command just adds those attributes that have not been mentioned in a previous call and overwrites those that have been mentioned. Thus, the following two command blocks have the same effect: \example \begin{verbatim} \setbeamerfont{frametitle}{size=\large} \setbeamerfont{frametitle}{series=\bfseries} \setbeamerfont{frametitle}{size=\large,series=\bfseries} \end{verbatim} In the starred version, the font attributes are first completely reset, that is, set to be empty. The following \meta{attributes} may be given: \begin{itemize} \item \declare{|size=|\meta{size command}} sets the size attribute of the \beamer\ font. The \meta{size command} should be a normal \LaTeX-command used for setting the font size or it should be empty. Useful commands include |\tiny|, |\scriptsize|, |\footnotesize|, |\small|, |\normalsize|, |\large|, |\Large|, |\huge|, and |\Huge|. \beamer\ also introduces the two font sizes |\Tiny| and |\TINY| for \emph{really} small text. But you should know \emph{exactly} what you are doing if you use them. You have been warned. Note that there is a difference between specifying an empty command and specifying |\normalsize|: Making the size attribute ``empty'' means that the font size should not be changed when this font is used, while specifying |\normalsize| means that the size should be set to the normal size whenever this font is used. \item \declare{|size*=|\marg{size in pt}\marg{baselineskip}} sets the size attribute of the font to the given \meta{size in pt} and the baseline skip to the given value. Note that, depending on what kind of font you use, not all font sizes may be available. Also, certain font sizes are much less desirable than other ones; the standard commands take care of choosing appropriate sizes for you. Do not use this option unless you have a good reason. This command has the same effect as |size={\fontsize|\marg{size in pt}\marg{baselineskip}|}|. \item \declare{|shape=|\meta{shape command}} sets the shape attribute of the font. The command should be a command like |\itshape|, |\slshape|, |\scshape|, or |\upshape|. \item \declare{|shape*=|\marg{shape attribute abbreviation}} sets the shape attribute of the font using the \LaTeX's abbreviations for attributes. This command has the same effect as |shape={\fontshape|\marg{shape attributes abbreviation}|}|. \item \declare{|series=|\meta{series command}} sets the ``series'' attribute of the font. The command should be a command like |\bfseries|. \item \declare{|series*=|\marg{series attribute abbreviation}} has the same effect as |series={\fontseries|\marg{series attributes abbreviation}|}|. \item \declare{|family=|\meta{family command}} sets the font family attribute. The command should be a \LaTeX-font command like |\rmfamily| or |\sffamily|. \item \declare{|family*=|\marg{family name}} sets the font family attribute to the given \meta{family name}. The command has the same effect as |family={\fontfamily|\marg{family name}|}|. The \meta{family name} is, normally, a somewhat cryptic abbreviation of a font family name that installed somewhere on the system. For example, the \meta{family name} for Times happens to be |ptm|. No one can remember these names, so it's perfectly normal if you have to look them up laboriously. \item \declare{|parent=|\marg{parent list}} specifies a list of parent fonts. When the \beamer-font is used, the parents are used first. Thus, any font attributes set by one of the parents is inherited by the \beamer-font, except if this attribute is overwritten by the font. \end{itemize} \example \begin{verbatim} \setbeamerfont{parent A}{size=\large} \setbeamerfont{parent B}{series=\bfseries} \setbeamerfont{child}{parent={parent A, parent B},size=\small} \normalfont This text is in a normal font. \usebeamerfont{parent A} This text is large. \usebeamerfont{parent B} This text is large and bold. \usebeamerfont{parent B} This text is still large and bold. \usebeamerfont*{parent B} This text is only bold, but not large. \usebeamerfont{child} This text is small and bold. \end{verbatim} \end{command} beamer/doc/beamerugthemeCambridgeUS.pdf0000644000175000017500000005302312050430540017775 0ustar mohuramohura%PDF-1.5 % 17 0 obj << /Length 1772 /Filter /FlateDecode >> stream xn7a/Im/EM"NFb+-'[ÆK4Ô)ntCWlYA<kgFKUqv XI3Z@AU(Jh4[nh&PnDh0SjBh$Js9Yxဒ9VA ,7(p,aBTaܣChu1!Tǚo)&%y[dtHJAEE(u[ʆ@p$:' ؋H|o7*@!&& mVp^V hlV Y0QD|ᢁh(14MD+M D TܱP aMo̱Ae%DNJرO5sy&oR*,Q!'T2,b TJ(3! I3GΉ,C( DLZ hγ,Ed1Uf:)ꝃߠuMC}% Q>C>~!HF_gpג{'ZB?g4rWCXs3;RϗjO>fɷxQj[ dZwӊZe,Z+b1KHGeZܟmSjPJKUP,t^V곏[Խ-#wNT°(ͱvhfN20HZl, rX̅J8#M&Tӊj&pv@HFVu v,x!p4ɳT2ՎL^v7Mo;%I@_-jߜ v b!.#`,֓!uۻ^e;{W] ھSd}J9c]|݉+,VQh\]\?4LMX߮tlz{<_Dwϋ7{d ̽\1gk'!f0F{@m |].f*BQiX턑p^"Z;^o7!`iL7*馝p2w=o`H,k L:<~ AEv6^v>8@J@i܋C?&z3~y˰ T#^/.Yӛ?QLc|`L1Ce믯.r0ZAJjjN pYR騩:#_.N? 2.Ku.wsK+JHP,am$Ҧ0%#ND!C;= s3$P%:)wUQXBnl vsw FV|4D=wMR!78A+']MF])1/bBtsW׋o3 fX0wgWRPHq9p`CTD_  bPV7}a dr"]CPڍ)q/>Gt3:WC3CDfEm~h )WV4) endstream endobj 11 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 8 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 21 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 12 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 16 16] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 22 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 23 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 13 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 14.834 14.834] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 24 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 14 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 25 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 31 0 obj << /Length 2465 /Filter /FlateDecode >> stream x[Ys~篘hW,UJʃjX%ߧ$WXUF@wCC/SX+T 'fl >$DZ FP}٤ 9nՁht>z0ߕ5\Hk Zf:kz4*Uͧ;Z5J8CY#F 98i4SMP$IB#f2sy$A(Z1)ꘘA]w0K\ip E'V#I;-K4 Wl nL2A 鳮7 -uu!϶MՐe6N" _n~7=fV3-$Iн"7O}MfW'}+[^sMRQ#^)ӘIH`\՜Z,b*SHR; J%@r Mc"k(Y$b0E1);j2)B-6gi3˒:Zg$+I{"'~/=+c/>G>!F,>wR8 /Sby %,YzV]\扠qYi]vVH0 BBWO,#LGqFOQ1<;x&}PZ)lH- rpu9%~:ȕgۦޑǒzɼ`#ӳhӝݛ{Pu}\ެ FٺM~u[{цCD6[*!Cuō9FMF7Rs=)aoR™ Fs~ބM(9_XnCer_?--q MaB횆 rnˢ=l~kx pb}aqUdFs뜽#K9-B2.V%ARY4!U9;66B 2 P_4BB/N! 2 aYZ~H/Pr**ct'τ(ro($.ptޝ1c3ZH'm3.?YwժGċ]h^J7Qa(k%qۀU(nDuÝ@~jYIk<]/1ЫM2zAüI?UQ ucCdOh0.b\{[6mI g9§ĨS[+x%/ m'"uHlGcb;aTlaq7sX1&i{{}r쯨\E9ĨB~!c{F+c]':c׽Nn#lNfhQwSl 3rC]DxHf"er.#<窆g=xv}ah&3Kz|R?v9-a%C[[wSܶnRF嫆[pR 'e 0 #2­"xn5dy֝Xўh v\+@LC{ Wfv7+u;[f/*ws3sVծm4iAm#Pi1ʧ;J' ,NSX(bTƌ˛YI72u(!~ҾFh>5w`J<M0$je *^Lh?‰Xi<<38|38Ofwk6ߋV,c6.<[TjXap%eHy0 'z5(&qq x>%-AⱫ2 A)#SBsey?zwAAn7eۿ(pv3lG2qز9C6~Xm"&߽'*$O7-O,~ń'1#UҞX~#c _s~+^m/^\~|wUF#F'c෫]j>asa:#k՗ <-w,dK›[S}4/w l> Vnu9>Wqh{~?,yh> stream xP( endstream endobj 27 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 34 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 28 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 35 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 39 0 obj << /Length1 1166 /Length2 7454 /Length3 0 /Length 8226 /Filter /FlateDecode >> stream xuwUX\ٺ- xP4X\{E(!hpw %X-ء{}ws_9âQdZdg6Nv@`iQbٸ@^s zz-='B 2wC!O @8B@!^Χ5@(\;@=j g y. fYi.pK <`.3  / r@ O W=Gr Դj2V`?0:;Ä88`'ɚr`~jTb%u#I ˧<8; `k0ϑ\` HA 13r@-%<`?I?`s{6wyAO/N 3%s [:,@6Ow'd30ϿWOj{bp(+I)hsGIJBRqظxQ_:O) Py\Ap'o13?@ 1\?-i֐uSx C{s;= ?yvΖ_*[yAjP'7Nlrrz:?)%e P+0Jsտ?hK8I?ۿA w%R8Ȯ6Z܍ms 5F=:;R ɻr jöo* Cbe J#ɇQ:Fg8~!$Iڑ?)ԧ#5%6娊JNUW\>B3@dLΆFĔ+v|ٹ^Il^ߙ9 c r~N߶o;X "8F0V_`$Q.cᐐ*9[O2 b |gYTF,~E⢄&x45;82&Mg΁xyxxUB:/*!Uڰ률iڝ'c'(/rTgF͈Gͤ<295axƪVv] T)SΣ7\]8|KZGH QepҐK1TpF8vv(c0X7͞Q*<*y1[^ngvm揰z_e_vd2V. B~U C_>2D^@?rуj҈^Ws){[ 0p|&ƺի/zms^ۍFi[g/pI4lZ;<JLlg#m'*T.;xޫ q[b=|-6רK ՜k )!gcpA{ 7ssd:7Ox;#F왡ATy]smMG*e'L;R%1qAR|;1rd6~FAl}b؂-z57TvM~/4Sgl=K"cJڐ EVRrMKT)% ux6ƾ20jqb)=EDbjk%AaҫRy5ooNr}?p>9JvrIc fk=p7Kzx^64#6&ҜEk}A'YL\ ۺ s@W_J_eG&ުUFs5QxKҕOIa>M1A*[81nH>義% vZ5a@HRLg YZ:_3H2 6M\`4pԥx\vd_ hiLWcJ9hx޴ ]4 ܤl.-Њ.(!mł@;VQq 4x"MX\J'cx0IB5s3&, ڀp`1Giw*M 1GO͛и a$O&LHГ^R#WyHl4eM|5{1L-)j2+7Vr=~& yӅc Tb#r'( w ,`v*mgmG x-wSYE QJV1]lEE?;"˕*RHxT.eOk#*+5oWԝ?ްX~.cwd6C%AjM:`I56PK0mnGVڛEYϏৎ*rog՟ۆ/b%bήbnX%4pa5k<6eإx- ?h'`,KJ`pŧ~W Ŏ1Hu}sʢ ״e }rF[=Nuf>uRV9,Mzov#[h0oqԲ*%g86Sy]g -aζhJȁwqB5 kgwh/d 7Lo"E%ۤ8KjӂG+/ Zjy9&6Yg=WP! )׆A[ ׌Үy&igҷ!b*dk2y3E5vԸM-Dž4 yՅԮd Dcoh+0m=Ͱ&:NO?ߑk{E~;BJ@xXĢ,xH[3'_ArmrKi4]H]85Dr?p4iO5H2r' &&\`}2S>+Ź Su0{zT۠ ;$}ܖ5P8Gd} 'aOB%=ޝ8qgt?۬YTտ9 UD'AXD&|] ś$xgCE cYՕ7]?& \!r0 9ry, @毨C!y-HXqEoםB8l9#3wf0y:cGKTU]^aGO>icт3Sl,;Y﹥߼=bN_yLA=5/l,^:yHU!Z#W.MWtZ`NK[zGwjP1"3!%_d}v/2f|.Z#^WΗ[&$YCDLk`űc TgҞ>)Y>l!Մ@dW|E)Cu?+)$B;V u_0"?U J}7{P/+RiCRMRlأş'CFyx4 a?:7Pv/kd]\}{9Q)?)tF[y\fnA} nkߵ8Nc%[>RBӐ%Vb^mK/ݕ4reZ2J1̉8'y`G)ihi%$7_SD jl*Gyu^QD%̺reSj}h7i3K"nOا&l$|Q%y#YE*GBň.e_ޢWIՌF!2O1 ǣI'wT8&}n_%E}`ܷx\0\|Vs`9o⻣hỊ5udL m`ӝJ7\见!i)Dc%g1w3dlL&vDSD o֝)_I,u1Vʳq Nrl!ҴݧQ*&b)9ot_fn!%;=KlQldpK9OIHŒq۶/q ޙFRDy9N%y\B}ꂗ+DFDI^;mV̊AF&s9~f!ލ~txMwʚ-˰⮥Yvq_r@e /n/9:4w`_2\|HHRkMe8efl5W9mٗzI09C~~?KYEIŷfu[.*+"}9! NF__ b&=aU1MGGR:G7*ډ3%bѫyLZ-ed/P-}E;4*xbF54fKn+8e3ʯ2Vt3Ren :D-mY9AE&.;| q}`gTh2ھR'WŦy1X3cƌ#TC.鼣 CxLL9e?1%0Wm%b.Pp2F3@RϤfL ?J+ES HZ}i-]Wx .¡:E+T+6>?h|Wn4<)t4MV{/#4deB}AUye =dD_pT@'ܐC_g$Q Szp?HhS DlFjY-+J_7:;0C 2`PDX׸aյ2<i9t W],:!ZEVzX$z{bo(? ܕ8meX,`yf>ZuR=j:m*נ @N iljh5m"|M0ݶlyYcPwM\\'큏Vn$ Knofݑx*F<0o,MQ^ivZGJE1lGĺӽi+6ROs+<~^x p=p܎ x~x `'<"d'!(.LB@PiHPE}ITTn78ҸCJaxvJte@`,HV1sf`rhrWQadfu(_ٽlū5 l޺~P?,!ˏ~C6+i,RzI.7?F7MTncw_:mK%+ݰ_dGbY+:l)!?iu'ҜqNFG{p2'FY$SJw-}ж6ohΜ_:D5,<5ZKS!,_&_r M\v4 RaQYv6 wc%eb\:)$X%FmS)˽)]\<ڳk>FqItx`|D(^-3 '[Tpn[u^SPr$ )2p=K`K/B5=\GV]<ζ7lBܷBV{ |$Ě$kkTr}PeN s g`m 6rsْk"@_- Q䕸5LjmQl6ڥS(ϗLB|&tiJy|!JdpYNwLj7(^c>^ 0]4Y>Px e׽L6Z``u }Nr>BF%PO\q&v=5%q\b{(V295~@3]d6)nmzkh]|EκO?P<[/e5BTO^f3jVl2,ߕOYV:Uz9LyR:̙ ƫ""t$6! /QBeR HR#4@^873[^<\EC+eKuS^g=ज़%\tߋu(Dd.cؕ(CD0W}cO^J$:80Njvo|ؘ"5$y|>q97t\c'RUR%"'['iT6j}v5:m/ endstream endobj 41 0 obj << /Length1 1199 /Length2 4353 /Length3 0 /Length 5123 /Filter /FlateDecode >> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 44 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203912Z) /ModDate (D:20121113203912Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 19 0 obj << /Type /ObjStm /N 24 /First 183 /Length 1702 /Filter /FlateDecode >> stream xY[s۶~v:B3qiөLD)єV{pqY.[ J @IPѐ*F$jb8PT#:P!LHHX$ Qk@[BcIĂ$ b :82#(4hIExN:HC *e9*CH %TM@t^15$$EP뽾Os7u945Ӣ^#E>eW_Rf*ʻ @?ZZC@@4l9y1m9jC 4a@ф6 NNG r8V 8:aHq7_h֭4iGէ]lGRrO;y{8whV(zZ,NE  '.C?_d6P?88_ 9e;9Da/D@//Y)z7(Hߔ5Hii(Yvir;S ")h 'lֶ|hdGrhfZпnFEv\"|e|: vL+QĭCSkpa fN[&ƞzA":&:xJ$|/|RȪQ/'E:{qE>]V*,cN*=멻&I‘D&gՈoF*tdiB;RRN|2@лf߁jDߧ%%_3|/kKk|[LG8*f0C7M{81]upq3c<.3Ƶn"+eݲ XaXMYz}eX(p~ğ,:iy:^~ ^k QKxMowiEwO5.N[3*3?_H0#u &AO{a 〶B_^3-G> Hk-$ſb6$@Fț8 /okNiZem{?>], ,ӦN|8[y[SV}2F{ea5Mif{F4!.IivnyJvOm?VyzMcXΪ˓jj7$AN{ endstream endobj 45 0 obj << /Type /XRef /Index [0 46] /Size 46 /W [1 2 1] /Root 43 0 R /Info 44 0 R /ID [ ] /Length 128 /Filter /FlateDecode >> stream x@u]؁ ؃zճcTBt$3 P*8~ ~`譟XB)d#TLg0-0٧b= Demhy/c2 endstream endobj startxref 21657 %%EOF beamer/doc/beamerugthemeMontpellier.pdf0000644000175000017500000004271712050430532020153 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1142 /Filter /FlateDecode >> stream xWo6_G8~"7+ZlExMQba#ERV 4 >aM)9~"y52' Mv5\|+(9~rBgsRgݏQZ/7A 'B*j%*S]ܒŜ &' *4*cTBJ"c|NP?X`hR.+҂DD$H\Mr8X[u?ƐS^Sç-UBWPPDR189~r1aaP#C5smBl nCIГfEub!1zLNj`ROґi Zp40?<f}TLRJ$VĞpmƌ( Z3L[dk .FN-2+aJ w!"UD8QY6Ca\E+ *RMԓ;%0M9e3L !UD3䎦xJ+l|z]Aô۫x0rCD:nor./?qP'J/7!q:{XJ\|8y}=/pcgἍI9sLߣ7 -9ݗ{yWU춎%axĩ|}AZ7^e07{Om=]VϗM;0;׻էۑ敨L~~=A_GgNgjΟmO▂_3 aP> stream xn9#humUj> RV=0h5F"9>0rMa͕z|iuRa\urMZh&MYS&'NT3O$UΒѬsO:m6@w 0HQ-@T:+%p3:>'HU-eWM̀BD^oI:#UpCۂ]b:TG\y8u))cg+8TgvdKIE%E5 [9jX0T<=K[8Nx84]R@jWmg_obJY RYp o(>$MDk{%@Sm˄fؓtrG)o1zņ}S5Ii ga`x<@ P9 2ȼFSRgH9O2Cdy ;~Hf"#ʈd:EsGRͤ)s<_FB0"4='ۏ2$ Rp=WD+QhF(~ޕB9DJAp:Q^nfº߫~^py=Y˲;U?ofecM1yU kP:F9d!@!.32wcV'gX`ShQDCHaWYfnb@4$_S rS(*(LMrvN2?<>,YCO[c)b ǟ졷lw( _@}X>FQoBcKGzw}6Iw5a(x3ZO+Vj\m,o] 8^Gtzm <.7p5EQ@oQ&Ѭ48sB!^߯ݟ}SuĤ6[ΰz4 )C*jѴyeۺ5h}Id*܅T$ED`a'z# ZM 4Om u Y8#CGя\aoINi .JtV+,ђ-ד#lQd`j \aDJFEOUw)EZ`TUin&hr,T}7aӉ˦Aƪrz3Zfw┫8k#jY-Kr ղMv"8oST)aT:D]ެeeOmeY5AsT]+XE&iOWacp$(R_+U6fj0dkjўa8XNkN`aq`*)=֜$V%1-W7GLa֐> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203905Z) /ModDate (D:20121113203905Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1007 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoM7$E!AI-)(^HzAR_/$@*]2% "!)F}T>ɚT|s_J 8Su7:oj@Pu]Uke$zW X!R5 ⼆p8 W䕣 P\`q)'`M޾4'MhFCJ\X+*n`F>nSt&U4C\7e{x`*]losǫ90n#H.\J=BB͌ xl ](Ruz{o@pa(83֣y~sx͝FMPtY5VJD버=g~K%-=>#p1.0nc\Fc:_WpEG(  n1\cb妭Z?l֕|.g/Ur0TG?rh)L9~#> =2^BP]tDr: Qf+h1vŦۭ 1C Z=[n @U>Ew)[6뚯QFs*_v} 7W Cx4|i %C 쥂::&\EXŌԃ>zRgN'7'W 餬 endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 85 /Filter /FlateDecode >> stream xʱ D]QPSs ,̖,zp/xvݡz 2DICѠμVkAg"E$öNxO 2 endstream endobj startxref 17536 %%EOF beamer/doc/beamerugfontthemestructureitalicserif.pdf0000644000175000017500000006655012050430546023035 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1068 /Filter /FlateDecode >> stream xWo6_G8~t#iF#RFP'5VP. ٶrSQ5~d{EYi|~GC&hr p"y"r4,)㶁+#AEGAcZoY)!4b|NQˑ",K ,)Г#=@$I5P K owgIh:!g 9e%{,|z+v :K뀥r-q$S"#X0,iaPQO-ܠ鎰8 GH~uX+N&s$$n(=2MFg?ϭX`ef3+a? "ORX Xv$mGȚ k 0όGĒpa gQFu8ΜtH:9i2})-5|uHf2 \g;%s-)SeҔ9_F0&4=7ć]w,N{~ޕQN#Krɋ,R> stream xXKo9 WhcaUuؠ(ǭۃc;Lx-Fd<~I&-hDQ"2rI8`ݑz8|iuRa՜\ 7rM?Zh$]I.SK gH%jpG}HlJ4Np 0FP鬔Dg1>%cH5)e“@RDIT(rAa.PxkcbjoZMrJT Vz :K뀤``[H*C8O.H0LnQÂ"w [A82GH!~~50AW}?cH+W ,DCdiڲ$ ,.,,f}&;p%D~c+vS{8O$5N5q39$5$p9`2<")3%IBC¡cg PEi>Z$JV30eJb)`~DʭC7ipg 74}'O3, Rz֮IVн\E_Z+s(>gt="8\n=yRˤOޝN‹I"oԓetshh[xxر+ ͆qIXq6e|;;ڣgQoBEǕZDy"NQ(*9[OjY3:[WMv|dH8ByʕB  oN]-sǭ8M eįtl|A tjHr9D= uoq.cX|7zc0hb|胣{`5!}>oOc #PxZ7K}7NO I;V>7gnJ AO""rmqpcoouo:mx( &zqB+aU /B6qH+X55ѯ"ժO0C0ǙYy7nWK,q r{_hVuBR!^µAw&@/ڮ*-Seӯr֛> o2_nn7[#׍G ?6]͇ա/P3IWfZAkE4IQ8T?NeGW=>pդ7QXZ;ḙJ_12?rVT“XX. @inAs?%ABV> stream xuSu\ۺE@JP$v`hb RK{}=zwg1kh%P9`n. P j x:0Ww4 q!2;^ AA.$[x D $ЀB0%ts]ݜ`P+- i u:Ϫi uceg7%$$@d.08nu@8tB "a bt@0k8ԕQY4wߚP˻P{l [1 8 (wߘ  PgҖwI7 [z;!/zvCH7%}Y,6ww;j^⊄y@ BpjG(SAQА+JJ q% r 9.?3KtՀO)ПHP˝7,ؘ0K(o@wqWK_rn;=\*ߊ8@q9ˁAtG8K&js.l;j \`_2NfinpK nvs%i/7mDݝko k ZMO ,CCJ%<߇x:_ܺr@_hW/},!1`+VlK%J^HPR  50>./Pe\4EMiTF1AR0?͙gu*`ztS]O3, zR=zάd_s||SX IU?7fmel k2a?|=IzU/Pi\`y ?,TE̴JThQu_2ݸ6OB'F:~#?k0Y?^mj92YER_:^dEcd3$Pn;|{މ@%#^F|NZcto"E S,z٭QyN@D ny=OL'*fD_q懓BS؈FNnr24 $.y)IiQ?rZJ!9!v=(*e(z 2ԁZqA{ 򊺲LWx;=э(̗U!?nJQXku 61dEK3NܪH25I$`tYL*iL.8BYh{, yˈQ^ApAi23:^EԎ4 ⃣7J8YH_0u.q\ت2 /e'|tN 08@;ãȿ@{K߳Q7|Hͨkvė@2ƳX"1ت?eB([bW3?qMΉklƏј?#}p2GKg?2RG7nG9O44Ӑ_Tp.bQv]Zl *6.{D\E 2 (D`#.bH0=O--kBV<׊#Nca;>$sdL0(욖^a)1uƌMnHW/v;^8*ܷIM''B)⧜PoB>s>?&2$R-dqgTK{ dN 7e ~,DNvVD',';2r Ƅ|ߣNIKtNA;6[,eߔ9-I+b1 2-;)⎞ R;YOG`E1b8:'WG?U/@~qX&0߱+ufFgnB'{)T8PCH8AFobލͱvRw+iJ^PoòĄE|ӘO$jZ="jOit*2^+[F6ᄱbjas'4|ksY2O98r4ی?{[?ڑcZk*]@[k6-&.48G[O;Yktpc_ES/VbMV9SsG]׻L 6RuOD*$Dq4L~TTo[=4ߓh4yLˏxur0,ib gCua8۫7LO\DF2,k-Oe3εц=s7R1|i)uUy."[1% )ZѮCٲ~s 3>]ƈ&p.C:Wn~B-*tI6+XPhu7f%C)<^V/L1W _%w zo#j€('x4NK"َ͎1 Z lOI1 l~ZM%vݽrS:PO ~BPeuIJU> =@.";8%m39n!ϳ%er7r˽(E>ƗNzfi(4k^9Z,-RyŤ:+F`HFHNLrSҬʞvg8Ks$"B?N~1⮈? |Bz`w싍/?+19dاk#mݎd ^ ;}ӕy~C-/W&˷X]K;5e_bc_ u6?r\{BZ~.?˨!{dQhHzx F8[HꂇyHj&(JОǤ*Z&mhlX`P okm9ɡ"v_..=0SDʄ# 1t{F"&ľjycUf`z6%_yq4)Rޟ.k͘DU-^> $UbFUq0D|*/ 3ةtC,#f8]rc۷D8ĕd{3D;㒐27˭ή,ety{zc$pT4:;(%9j PؿY"sr( n:򲲸\'QPuanU! {]R˖."ÊEsOE>7EBg?qJ%O3m GW7:y6VhafSoJQyQR{1WEIیbOW<'5xI\dn3'ޣyꥼD"q.gI@˩)Ѫ$"0kS.^\]t>`c'>c6KԹr?.^F^٨_"zБqEeWa\ 5Fj\֎k%oW&aଷ+nť+ʭǜ!d0={R%į>ژƷ=5'mS02op3&=z'yUsѡ_c: (NxO7\z+1nFE.:].BgG饉5V~75a%5LrHBs[P,p7H#U-0UcXGb=+fa%:56MpS@(*DO%V=3o?L״ߤ_Pe3).;<RHD=s$8#?naQ^qŜg>.SK_B1GˬG36D߷8~ 7%NyeuQ]n4{~_T2,mKXv r'ܖ!~ !>A&/F,UEIDϦhC+b} uuOg3khAۚk5.C'ч GLht)$eY c&>yV]ڛL[^:BUVQ$z\8D(CW~2)Gv&d1)rDR1]nX7h2S T堮BKZR(~)pxw"(52w!ҁd#Ȉ.>&Fn|/=*|C>^pJ8}Ɂq%I@R[~ܸxz?'c/:q49_d+H/Iʧiغ=(p2?c`v@9("i8껮7Ƈeni"pu-8 JgZP)eĆFk_hbh|eNʓ,v<[7.0prG|wdK^?ute|z]t(X[?Z*PlK/MQ@BgxL?1>{lo.JulcIMGTSG4a7j DS_mΚD-#em9] x挑rx (>S'T&27t ){bZBͳ PaQHl[͇zqײƝVY S>+SE:%hQNá8j*{>?h2]}4Nnma2HbTm?p N)Kr`Ue>'wq*nWkLCjrUE-e/+'d,;'$sy{&''(z6^fkC]9PS XtG,h7}`:ɹ~3M:mfT=zň>%s_h Go9  sXSM Cw(<>TSoUuus3}UHOa^}n7Z  7ᰭ^UFy_wpz. EgӯEGf)_< Ԟ(QN{|j+yJEߪ!q ķ8zdB rn;*nEpz/6"#2pXwƧG9~=>z[2KjIÝE>(6DJ> stream xmSyD>;I@@* hxHAQxD A᡾ GD_7Z0G@W;Ia'nPtI@` ɉp  26ׁh=551$Z "PBZQT/zOg(nүHZՖ/'*Pho! a?c&vvCBTF$@&x*(P QPo$*7quEZ? b@@ /#G͐ǯKnEa+N @¼<(?!hD- ~0"GKb!I%"v9ڳ.AObiPSz;[6 E Īͫ [ 1Rp4YL @;IKIU:^d2&-P'{j"[FV@g}{+ZL10΃+|L\*Ϙ~Qb=d 5WzyFf?>2Jh se+X&\؛]ZBݦ+TAm]ȣP~^7TliSg؆"䌼/Oh٣E]½huj?Ҽ>6~ ێSbtυZɫ- ^Bͯ#զ &mzsŴBOkcHqc,ڭTmJ/8^+NvA.Sk-SdL%ǵr(}(V=ح#QУ3ʤ+ITS;2D-Whh,ȧ44 뺳T#Ӥ9i^IͩTLB&>3$Bǖ xpfadgFoBIuvȺ˓yh+׈;`jHtC:Atfr: a{Чz޿~ : ŅsWC$@'j3 6EKVNb9jŲTL}ҙ#}sA2 _ܦsPVU"NЗ#?J4sneM]dKHVkOh`."`P#iVf2~ ǜt o9L Zxd^ asI\h*cP׷L0l3K6~Nφf:ՖiVaxW<0  ;ܮ/&o`="ۤ7esN,um~Fp LoUV!Rn+נXX:ZZ-(l 8W UZRʣg.*5{1ظuatoyX QkEf_h}z%S5-E&%&8ĥ%cupqA`Y {fC2SϭAF{'Uo EԜ^O3m8#m|6}ӑ,4);u-z߹xH:x4ڜZ:.(:csu-d^W$GMVM22 dLzqPNOJ\E2+  e9r3[rid񹓦@uSRg[ ϳ;Wt7%@5kwV3,Y9q]j唩x=e0RWQ+Ȼ@k:_FV~^EXuE} T*J%խ=#ܟ2|6 68R0Hx'Rz gDfgO ԁ_8\R|Wu1M쐓wj݌;CiMu6u hս̟}[fyMIwMWEH?sDg6qՊx7[=nl]wlJ_/f.$Y/.Վ?攏"y0i;zUpAM[;!xC 638f^_xwun|L|nz7'Q~uWa.~W6ʃ *qB2 !\Z܏#]dd /;߼wjե6--Vw:!|H%wƄ&X9Fz4M }KV6|]c==<Լ~jd7L 攷vg_ \yhXU?=-HJ Ԙ=10_o9ǚYgE~Zc:tߴC$3 k*E%j>s{={\";hDv&< %N]GSؾKK]m1Gذor⊧=KxXٕ;$D Lo[]!7LnU4c+*w)l±}F_־L̞fzXqGV >`l2`Y=uxq*fwd̛>f1JYdM]K\f.3)ڷ)yp$딷A3/ׂBx|w;"Zv`&~|䴚ሖFlړ>ڔ[i-7`ܸĦ]]#v½`z5˭(*#0[L}g -&Hj1h+>GyrVma| `N]э2HۋJ#[r+2S[+Dk*i7t5թ$p*.p>Su)E-lq}Ǖq|-s]"qb…0KrhY\tPPi wa݆Ts8DɂG촶Mp.dgr[Zea._ۻZ(x>8vj\~VW ;JpFн'tsMno3,4;]VxS5K7K-P mX熲|`dY/頌 uz'ѕfJ++JqYw"Re¸U}'tPDchHd`OLctU36<:%~Ҥ9m]mm4%[.[w< ˮrR)XjY Wragk/ l5v.E%E:fE"U-Y1\"REfstѸQ"6Kfk(Q>I!sB:K{&D-ͪNW,vڪ8gJnY ?^d-+b eWP5|@Q5{RxN*P]#ZX_u{&'"9 {:O#?;x>yM7R]Ȕ<)[  .K (y?m1[}Q-Ѕ =ܗ^@Tߍx66'9w6vo)\MPsese5ٕ&~]Ho|}YPG[|mqB .bWU ?S:n߫`pMG՘t\>r#g"q4D~B:B©1)lQ̕4Bl 2D`t{%Z* .`Zh'kZU,'րζؖ6|MʈO|N[77- lvD4fBCU͂ݲŖϭ-I4}b8/(Ss6(8}5Um9ތwRp]].3:/x~5)eM7LCyXMX^7' ۖY12g2Dɤ{;Ѥe1KoH8KsvdbxUe;]җBʏ/MK^ A+FJ Z& ͢J Q> stream xڭveX\ݒupww n 4H!wn%x';w}g89֮UU{ծnjrU f13;ęM 5qqRUWdVY9m725# HAm@d #S$=:-umzFFZlxyt[@4 ;{[-As  +,QȀ "T]LlE)9l^L f?9r9'{) n 1A`'o `8 1q1^wؾbdvNN`{gkTUIt:~v;L]J:'3O, doxJf+ '00A@G3++gV=/ovW`g'9 2;kLS`2~s9u@tz5 `2GfUs~ ߩ E7qUv_]ll  :k?3p+l?9nmY'X*$ vM-@ˮ19ڀ!W:W'64-֐?jp fZënUი0mڬΚ FV3*qq;w3;?2^G~.OؿV:;l,ll? F bjg4/UkXu @ w)¬`՗TjI.v:͂oh۞lҀ("'M05g|>z9Fr_Xo+$M.:w%VKyC*xD.acO+60g^R㗊eY$7)ë94 Q،A) 2\ xEyb `md;&|\5d]QYɧHyD&rʇBP&o72фaP"*K(S[^Yՙz.h?⧣1j{?fqaO*B8rv@ ~ElC zqLwOG]jPy^GmX!Ҝ_do zmA.mE}D;Y.U|g4?"KMA[0@)+ R) &̵jQ;*zTlW)cYbjDvZ%cIl'aJV4 ~U,òe_RˁuOr)G寁 ׌+91'e:C]33#Vq|i\Q4 rNG416T-^7 "йjpc~o)7 }v2)hf-Šel6qRl[`jCF"I@F*DYvL{F6y6PGųndc| ܙEy}/+ۿ Q!4 @F3#*)|ȟFd?]=]t j󌍸!>UeKeҹ{՟_DIķGJז;O\UG]QoK1¢vAJ}e*F-"񯷩j9ϟ06JSkrQ{2;MjN'˶ #U5]afW2JX㜡w‘#|i(BSLlw^KH<34[JB s'çD!"-ZYB'1!-v0e|L=1TG+- =mQ⢠!FTҼaTPbިMy ԴYz8հ)9.#H=]F9Id]!c PXXɉΪ暥fmU=Be] h&dZK#jŹj"gV] ߹x_mϓI#b`@͝'B6]:iJט6M%]]5܌j4D\;5a˾i;Yb$7(&Aq&.}H,mJhKǔ5~B l_D;|P' s'=4moG/1:3 ߨS|w.4npb#Lpu·2>M SuL\=˱+h0 v`OtsI E@a1}}gv+JVR|0Eh̜\h^1->FPjG>Y~EE\jyC+>Vx!F_X{>kQ&Tq7Պ8m}g_hx/-a9/pEq?\uz{)b]p"ގydsw>Tva-7V?VV6d 1LKJQUxQ~ ipo S Z]z7KwO. Y@71K|ە }wcg^׈У}gsZ n~G>u*ĂJcT<4K)7m *ν-*av1F+h뾺>҄~[v4=aO4 |%{:!t'P-WEm!VK Xѽ"殄-?:9@?~cɟsC#] )зXPzIXa tHF$|eބkΘF~gV.\)}DQ@x q>=%BGŌFɛ闯k,Wã*6|guCsjOט&3)r7+yؚ|?meWtqCrbT^H>c9,vg.hKcz湳w3plȺWM~vY/˴o >^6q&̦To4^cGd4Đ[, td#ru{VlqtP)K-ojh!*oMO m09AFtVSH0MB U0ӌ}3ş' )ChED^1ҷa(4:60ZF9K:oϩˠ Nn6UmS,_7T` Q?*+\ $EsőN܎p 7If<0"BpƳåYG`4 gg]S$gF3eKHzۧɱ=3yA(IQa::K8,uxY㋄Ϛikm:][)T2/fl#'.x4<1 9STZF5BI#0bK+ʅ(' u1{nh˒eoc/AzLjl~H/[T{ʺ->LL >t/Ȗc> Ɨ?"qYnDV0/QHRsjigYFS(I((Qg/aNq_et`55c-t\&)t1c}éf]pQk`lf6k! ny/A&Z^WB9Q5>rhXiIrNSU?;pM/Fؤb…d3ԗ ؔ}@@A~b#Ѻc;I6zΓ&*[ $8;)~8wtڛ!i*G3dI+ZXfX@%~Ft%Lg:kG| {+y+o0iR|(H N"$)5a_며wtN (]X4j3,o`\}s aLQ.+VƸH=DAԋx@[_GK)<(\ٙP+ّ-Z@ q4oM\!-+.[,x*T W`]U1Vbꁥ ="6O/* 60Fշ7;`qNb]1נ@iw=rx(]R| *B@tD='O!{Pf-mhnDcG; W\g-jw<_ULJh)VpH[34'f}PڦqRHGFMVo&3[F8dNsB98b{KT8K/]d@Fjr(/Bo_rsj>z4&6$GԐ`L6/?~1>yʉ:abc vݓ*P *cd^[J&8\7,t?jԗ`bfD+w]Q)Q0Ӭ:u%{`YuD2QLH}+F>IA 4۝DML^6[vR`b¶]S$,Ud4}}?)U!3O`4V ܰN3ViZ,Jb@7RI5P+ȇzyݜ̽U1t bmYj$<}0$D|䒖޳p>ɥ܅%G҇  0:ѠD70WrO#,kM&|lps(=&r{)SY0m>2Ný^lx?IHZB_$M;M[PBEx]Szr܀ma Ġ)tyTH -+El2u&)=q9ɝLRx`Ҷaw(4,+@^GWL0nc@qM;+F+ \кj;%h@>@9+g<0L ҅*^z _sna ],LqR)*#s73' 8xrGʇoHJ']Rel-o&j{T1:VD._CQpv\LkT$M_)ߺ Kb>_L4{*JO)֢\Uj wibaMxSY27ۻk8f{!- ^"Ul!$D bu1ӍSm9[I0}>vܙrs^Ow:EiU8XS)GޅX#KSb:*&?9C3S׻n߷2,6"958"|TB3>RK6օ2 &LiV.pMxP,߈*pr^ a)_M4`lGQc-z~  Hj>1G[:_{튫>Tw at񩲝bc3AE n6<2QVo$ﱳє'yRtS?ZGTr=ܪuoj`L aǮtGw^ =#'kJ2ZSn4h}_W=yے7[+/ƵW]g5.-WcǸ؂ѓA58`5"Iu$,@4]JZ\ '(tжZ<91 ~ b{z}{'7'ҩ[!=!$![w@N34lnJW9Qf^6LiRX9rLߵ^x@X},/:1ge=q8!@%p ")r҈Ġ9+UrY))$q ~tV5}tNY~Wµ3sdO`D&,fPMd{ěud}<ք*)yuiTfoTpϠU{[*er1T%XK8}[ߑ9ZsFf/FJQ- =- 1Y>Et2R8mhF lߤe!6;[wtԹr'!> H-SOQ ]|tmu`Њr+$ᎼpS`^ km^"E_*9Oᔄ8٤U؇:+^6Au㿡 ئUBBҶIy4~<}a kp(J;.$pM҂ N 2m?dgV$TmWLa&`㲶JB^L||tHD%w0l'*fzEP2 Y\O^z$^sFT0q56N86xofReGBO/"мtfZw=ω:+ih @s=UnNƘFS8Cm:g ,CKku+W$ڃUzn>ܠeW\h!'"=ƨlZ XOj*ڟ{eBQx^W{0iOnBħ,⒄w6}6OO:6"i&N+$ czC!z{prZ :b~=D3M-6;8QҺ= n ]-Ul*͈*fi0+2avNʻ^- dFkYmAQ T$jY7 ¤#F:D INtHR cH.MCcaTaLъ695*p>.$a"uJZmYF.wvi~(Dzhaa?Qd6Lɥ'G_%ܼW-'+qjxن 1Xt;aJPs'Ք'5 )LX HOkVnZQD1mJp4%o7՗k f279ަ@0?|=8 @(h zZ)^]ވOf}kE>83iYb'Y˶Я"2Kw\ 㩖h٘ڋ3 :iĺeevm%3HI s]9lphLF#nlA?F[:qތgO@`PIGޠl(KROUf沤T0ԩOo%_?w)Vr=f4bw 27s{"={!sgz(Yϕ)M5 5"B \C1=}8~[{ ;2 endstream endobj 32 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203917Z) /ModDate (D:20121113203917Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 15 0 obj << /Type /ObjStm /N 19 /First 138 /Length 1196 /Filter /FlateDecode >> stream xVKoHWqF+~J(y0Me!88kI2뷪6,v{XAr=i!A_I#"!(E$/V|D2Prd"HRpb$dњ䱊ɈTb2@I(JuZ^'3I*,A88E'`Frir*"S4I`쐿~)al6~m\֟|:=)1Qp~mɅ+|ЌY !QTKrcg;;=vJ1ڀ9c`=5Obx!(lsn%>uY~/m&gδC#].֦JAş)ۂ[xدk{EnC{F!f> stream xWKs6W(͔(ޏc;I3ɴ$V-NMʖԎ멭ro$z8iuRamC.fowN^#ʇh2>GD ljz扤YRw2;%@NN1jeJg$832{R2&EZrHy"GR ᆆE@4+z}rKP Vzv :K,IDTp\"!0e(Ǚ@E.p#s4)G3[k`Z؈6* 7:w ,dCəiR:I@|E4 ϞX`'K/U8<&XF^c7yf<2'\3oB3B(#DSRgJ:s$ iԙ`lyW(yI-Wjz{gRä)s<쿌a&ThzO3< Ʋ5z6ݽlCDs7IG<6'X&d़-Jn=Yq/^WOqK,orURЗra}Cɋͩ ^x(R&JJ>Ԯ5p\ʷDIݓBƛriŭ2Ed ϫ=`U^P+T  26u?@ܡ Ofqf7F8v :I,vʄܛ]9Uzu(6Hۘ5e:e6)dv;4 Sd|uQ*l@mzJZ??>h endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 30.481] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 19 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 22 0 obj << /Length 1555 /Filter /FlateDecode >> stream xX[ObI~W#fCO/1kf'3;$ [0jV]uK7\FX{^#G@gDADXA0d>"WYS$xEפE9y&)}&N}gH%=9b ݲ*AFGAaZoY)EiD|C.G7Nao IQT 2ޒFR ᆆ@ Ƽwa}! dOuJQ\g: )9ؖ)dE = S<5,WO2!qE84+EM̨W>_|IՑ' ,DCliڰɒ)U/37 /O_{d+;9z>q/繛߱ ka`x\IrͼA =gLTFYCcJBg,!ϳap8)2ŋhY^F<]dJffʐ9ռS1Y0i3̄ aeXq{gee l/ ~]mXCD#:<6S&UY!,-Rzv-VUeo3VO,1e=yߗ$Kΰ} &&ۇON~mTn مZSS=5o>!R[FƸ2O!٥Ү a%#yu |*oʼ'Ն(TАڠ{>G(JgWᚁr rvI{'aqQ,#_a_X(>5Oh6MvҰiH,D>EhE.֬(22Wn׆r.#xh$<<9\8O~s/8~̯G8:?sO/hQoBe(qyW].F!<>|Ҭ .paq>\iS4^,$(vvG/8)vR)RnF8j#J#7P)pRZ(&=~m4N<~C X&y1|5<#Raam3Z6=LEۣPyI7FG)٨tk1J@y|8DDJ8=3M(M.5¥ 4Dy4}mWn P`+k]r%peeLgU`p0LF;c"mJ/:rsPy_Uta{)>I jaS)ZW\# 6 G:_tjBR\rq*(xQ3rZ&\޸@vGUGQyox&d.Cz 0NMStuyoK0x){ثamlN.m~{UlDYwUL `><@}8J7(FQc$~f[]9Jhn\»o܎q»=W%x+ T:MBo{P캷 4Z>K u5ָo zj>Me endstream endobj 11 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 6.253] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 24 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 12 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 3.126] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 25 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 29 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 34 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203950Z) /ModDate (D:20121113203950Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 17 0 obj << /Type /ObjStm /N 19 /First 143 /Length 1296 /Filter /FlateDecode >> stream xWYo"G~_QL1dYf׉u $0Cf7>U=d%U]]u=2H\BSt! dF\D H&J PAH JuDA>i ֈkG~;xyioq]&- 93EG`rmI|=@AjT!yyp| ɉCsYQXotZqƒ,"fe<"|13f8IIJW;DžձSU:*,JբkHej? TLL)ݐgON~.(0*ۂ^OݳlCAshQ0S(vT>\ll82d!xD<$lm'lL٨oJ]a,lsnSڡ2.U6Ac*/fTO-(E;Sق؝JmŜ;Sl'+Ƶ*]]'sA}蝹2wD_ڿq m=*!&*v=D6}:AɼhdO`B]7  <797251044907FBAC512DA1A26BE0C081>] /Length 104 /Filter /FlateDecode >> stream x;@n`yɊyU+y૞)=)ETn**Ț#-j_t4H8c'2퐟oR< endstream endobj startxref 18515 %%EOF beamer/doc/beamerug-translator.tex0000644000175000017500000005261512050430504017130 0ustar mohuramohura% Copyright 2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the documentation file for more details. \section{Translating Strings} \subsection{Introduction} \subsubsection{Overview of the Package} The \translatorname\ package is a \LaTeX\ package that provides a flexible mechanism for translating individual words into different languages. For example, it can be used to translate a word like ``figure'' into, say, the German word ``Abbildung''. Such a translation mechanism is useful when the author of some package would like to localize the package such that texts are correctly translated into the language preferred by the user. The \translatorname\ package is \emph{not} intended to be used to automatically translate more than a few words. You may wonder whether the \translatorname\ package is really necessary since there is the (very nice) |babel| package available for \LaTeX. This package already provides translations for words like ``figure''. Unfortunately, the architecture of the babel package was designed in such a way that there is no way of adding translations of new words to the (very short) list of translations directly built into babel. The \translatorname\ package was specifically designed to allow an easy extension of the vocabulary. It is both possible to add new words that should be translated and translations of these words. The \translatorname\ package can be used together with babel. In this case, babel is used for language-specific things like special quotation marks and input shortcuts, while \translatorname\ is used for the translation of words. \subsubsection{How to Read This Section} This section explains the commands of the \translatorname\ package and its usage. The ``public'' commands and environments provided by the |translator| package are described throughout the text. In each such description, the described command, environment or option is printed in red. Text shown in green is optional and can be left out. In the following documentation, the installation is explained first, followed by an overview of the basic concepts used. Then, we explain the usage of the package. \subsubsection{Contributing} Since this package is about internationalization, it needs input from people who can contribute translations to their native tongue. In order to submit dictionaries, please do the following: \begin{enumerate} \item Read this manual and make sure you understand the basic concepts. \item Find out whether the translations should be part of the \translatorname\ package or part of another package. In general, submit translations and new keys to the \translatorname\ project only if they are of public interest. For example, translations for keys like |figure| should be send to the \translatorname\ project. Translations for keys that are part of a special package should be send to the author of the package. \item If you are sure that the translations should go to the \translatorname\ package, create a dictionary of the correct name (see this documentation once more). \item Finally, submit the dictionary using the correct forum on the development site. \end{enumerate} \subsubsection{Installation} This package is distributed with \beamer. Typically, if you have \beamer\ installed, the package will already be installed on your system. If not, look in Section \ref{section-installation} for instructions on how to install \beamer. \subsection{Basic Concepts} \subsubsection{Keys} The main purpose of the \translatorname\ package is to provide translations for \emph{keys}. Typically, a key is an English word like |Figure| and the German translation for this key is ``Abbildung''. For a concept like ``figures'' a single key typically is not enough: \begin{enumerate} \item It is sometimes necessary to translate a group of words like ``Table of figures'' as a whole. While these are three words in English, the German translation in just a single word: ``Abbildungsverzeichnis''. \item Uppercase and lowercase letters may cause problems. Suppose we provide a translation for the key |Figure|. Then what happens when we want to use this word in normal text, spelled with a lowercase first letter? We could use \TeX's functions to turn the translation into lowercase, but that would be wrong with the German translation ``Abbildung'', which is always spelled with a capital letter. \item Plurals may also cause problems. If we know the translation for ``Figure'', that does not mean that we know the translation for ``Figures'' (which is ``Abbildungen'' in German). \end{enumerate} Because of these problems, there are many keys for the single concept of ``figures'': |Figure|, |figure|, |Figures|, and |figures|. The first key is used for translations of ``figure'' when used in a headline in singular. The last key is used for translations of ``figure'' when used in normal text in plural. A key may contain spaces, so |Table of figures| is a permissible key. Keys are normally English texts whose English translation is the same as the key, but this need not be the case. Theoretically, a key could be anything. However, since the key is used as a last fallback when no translation whatsoever is available, a key should be readable by itself. \subsubsection{Language Names} The \translatorname\ package uses names for languages that are different from the names used by other packages like babel. The reason for this is that the names used by babel are a bit of a mess, so Till decided to clean things up for the \translatorname\ package. However, mappings from babel names to \translatorname\ names are provided. The names used by the \translatorname\ package are the English names commonly used for these languages. Thus, the name for the English language is |English|, the name for German is |German|. Variants of a language get their own name: The British version of English is called |BritishEnglish|, the US-version is called |AmericanEnglish|. For German there is the special problem of pre-1998 as opposed to the current (not yet fixed) spelling. The language |German| reflects the current official spelling, but |German1997| refers to the spelling used in 1997. \subsubsection{Language Paths} When you request a translation for a key, the \translatorname\ package will try to provide the translation for the current \emph{language}. Examples of languages are German or English. When the \translatorname\ looks up the translation for the given key in the current language, it may fail to find a translation. In this case, the \translatorname\ will try a fallback strategy: It keeps track of a \emph{language path} and successively tries to find translations for each language on this path. Language paths are not only useful for fallbacks. They are also used for situations where a language is a variant of another language. For example, when the \translatorname\ looks for the translation for a key in Austrian, the language path starts with Austrian, followed by German. Then, a dictionary for Austrian only needs to provide translations for those keys where Austrian differs from German. \subsubsection{Dictionaries} The translations of keys are typically provided by \emph{dictionaries}. A dictionary contains the translations of a specific set of keys into a specific language. For example, a dictionary might contain the translations of the names of months into the language German. Another dictionary might contain the translations of the numbers into French. \subsection{Usage} \subsubsection{Basic Usage} \label{section-translator-basic-usage} Here is a typical example of how to use the package: \begin{verbatim} \documentclass[german]{article} \usepackage{babel} \usepackage{some-package-that-uses-translator} \begin{document} ... \end{document} \end{verbatim} As can be seen, things really happen behind the scenes, so, typically, you do not really need to do anything. It is the job of other package to load the \translatorname\ package, to load the dictionaries and to request translations of keys. \subsubsection{Providing Translations} There are several commands to tell the \translatorname\ package what the translation of a given key is. As said before, as a normal author you typically need not provide such translations explicitly, they are loaded automatically. However, there are two situations in which you need to provide translations: \begin{enumerate} \item You do not like the existing translation and you would like to provide a new one. \item You are writing a dictionary. \end{enumerate} You provide a translation using one of the following commands: \begin{command}{\newtranslation\oarg{options}\marg{key}\marg{translation}} This command defines the translation of \meta{key} to be \meta{translation} in the language specified by the \meta{options}. You can only use this command if the translation is really ``new'' in the sense that no translation for the keys has yet been given for the language. If there is already a translation, an error message will be printed. The following \meta{options} may be given: \begin{itemize} \itemoption{to}{}|=|\meta{language} This options tells the \translatorname, that the translation \meta{translation} of \meta{keys} applies to the language \meta{language}. Inside a dictionary file (see Section~\ref{section-dictionaries}), this option is set automatically to the language of the dictionary. \end{itemize} \example |\newtranslation[to=German]{figure}{Abbildung}| \example |\newtranslation[to=German]{Figures}{Abbildungen}| \end{command} \begin{command}{\renewtranslation\oarg{options}\marg{key}\marg{translation}} This command works like |\newtranslation|, only it will redefine an existing translation. \end{command} \begin{command}{\providetranslation\oarg{options}\marg{key}\marg{translation}} This command works like |\newtranslation|, but no error message will be printed if the translation already exists. It this case, the existing translation is not changed. This command should be used by dictionary authors since their translations should not overrule any translations given by document authors or other dictionary authors. \end{command} \begin{command}{\deftranslation\oarg{options}\marg{key}\marg{translation}} This command defines the translation ``no matter what''. An existing translation will be overwritten. This command should typically used by document authors to install their preferred translations. \example |\deftranslation[to=German]{figure}{Figur}| \end{command} Here is an example where a translation is provided by a document author: \begin{verbatim} \documentclass[ngerman]{article} \usepackage{babel} \usepackage{some-package-that-uses-translator} \deftranslation[to=German]{Sketch of proof}{Beweisskizze} \begin{document} ... \end{document} \end{verbatim} \subsubsection{Creating and Using Dictionaries} \label{section-dictionaries} Two kind of people will create \emph{dictionaries}: First, package authors will create dictionaries containing translations for the (new) keys used in the package. Second, document authors can create their own private dictionaries that overrule settings from other dictionaries or that provide missing translations. There is not only one dictionary per language. Rather, many different dictionaries may be used by \textsc{translator} when it tries to find a translation. This makes it easy to add new translations: Instead of having to change \translatorname's main dictionaries (which involves, among other things, the release of a new version of the |translator| package), package authors can just add a new dictionary containing just the keys needed for the package. Dictionaries are named according to the following rule: The name of the dictionary must start with its \emph{kind}. The kind tells \translatorname\ which kind of keys the dictionary contains. For example, the dictionaries of the kind |translator-months-dictionary| contain keys like |January| (note that this is a key, not a translation). Following the kind, the name of a dictionary must have a dash. Then comes the language for which the dictionary file provides translations. Finally, the file name must end with |.dict|. To continue the example of the month dictionary, for the German language the dictionary is called \begin{verbatim} translator-months-dictionary-German.dict \end{verbatim} Its contents is the following: \begin{verbatim} \ProvidesDictionary{translator-months-dictionary}{German} \providetranslation{January}{Januar} \providetranslation{February}{Februar} \providetranslation{March}{M\"arz} \providetranslation{April}{April} \providetranslation{May}{Mai} \providetranslation{June}{Juni} \providetranslation{July}{Juli} \providetranslation{August}{August} \providetranslation{September}{September} \providetranslation{October}{Oktober} \providetranslation{November}{November} \providetranslation{December}{Dezember} \end{verbatim} Note that the |\providetranslation| command does not need the option |[to=German]|. Inside a dictionary file \textsc{translator} will always set the default translation language to the language provided by the dictionary. However, you can still specify the language, if you prefer. The |\ProvidesDictionary| command currently only prints a message in the log-files. \begin{command}{\ProvidesDictionary\marg{kind}\marg{language}\oarg{version}} This command currently only prints a message in the log-files. The format is the same as for \LaTeX's |\ProvidesPackage| command. \end{command} Dictionaries are stored in a decentralized manner: A special dictionary for a package will typically be stored somewhere in the vicinity of the package. For this reasons, \textsc{translator} needs to be told which \emph{kinds} of dictionaries should be loaded and which \emph{languages} should be used. This is accomplished using the following two commands: \begin{command}{\usedictionary\marg{kind}} This command tells the |translator| package, that at the beginning of the document it should load all dictionaries of kind \meta{kind} for the languages used in the document. Note that the dictionaries are not loaded immediately, but only at the beginning of the document. If no dictionary of the given \emph{kind} exists for one of the language, nothing bad happens. Invocations of this command accumulate, that is, you can call it multiple times for different dictionaries. \end{command} \begin{command}{\uselanguage\marg{list of languages}} This command tells the |translator| package that it should load the dictionaries for all languages in the \meta{list of languages}. The dictionaries are loaded at the beginning of the document. \end{command} Here is an example of how all of this works: Suppose you wish to create a new package for drawing, say, chess boards. Let us call this package |chess|. In the file |chess.sty| we could now write the following: \begin{verbatim} // This is chess.sty \RequirePackage{translator} \usedictionary{chess} ... \newcommand\MoveKnight[2]{% ... \translate{knight} ... } \end{verbatim} Now we create dictionaries like the following: \begin{verbatim} // This is chess-German.dict \ProvidesDictionary{chess}{German} \providetranslation{chess}{Schach} \providetranslation{knight}{Springer} \providetranslation{bishop}{L\"aufer} ... \end{verbatim} and \begin{verbatim} // This is chess-English.dict \ProvidesDictionary{chess}{English} \providetranslation{chess}{chass} \providetranslation{knight}{knight} \providetranslation{bishop}{bishop} ... \end{verbatim} Here are a few things to note: \begin{itemize} \item The package |chess.sty| does not use the command |\uselanguage|. After all, the package does not know (or care) about the language used in the final document. It only needs to tell the \translatorname\ package that it will use the dictionary |chess|. \item You may wonder why we need an English dictionary. After all, the keys themselves are the ultimate fallbacks if no other translation is available. The answer to this question is that, first of all, English should be treated like any other language. Second, there are some situations in which there is a ``better'' English translation than the key itself. An example is explained next. \item The keys we chose may not be optimal. What happens, if some other package, perhaps on medieval architecture, also needs translations of knights and bishops. However, in this different context, the translations of knight and bishop are totally different, namely |Ritter| and |Bischof|. Thus, it might be a good idea to add something to the key to make it clear that the ``chess bishop'' is meant: \begin{verbatim} // This is chess-German.dict \providetranslation{knight (chess)}{Springer} \providetranslation{bishop (chess)}{L\"aufer} \end{verbatim} \begin{verbatim} // This is chess-English.dict \providetranslation{knight (chess)}{knight} \providetranslation{bishop (chess)}{bishop} \end{verbatim} \end{itemize} \subsubsection{Creating a User Dictionary} There are two ways of creating a personal set of translations. First, you can simply add commands like \begin{verbatim} \deftranslation[to=German]{figure}{Figur} \end{verbatim} to your personal macro files. Second, you can create a personal dictionary file as follows: In your document you say \begin{verbatim} \documentclass[ngerman]{article} \usepackage{translator} \usedictionary{my-personal-dictionary} \end{verbatim} and then you create the following file somewhere where \TeX\ can find it: \begin{verbatim} // This is file my-personal-dictionary-German.dict \ProvidesDictionary{my-personal-dictionary}{German} \deftranslation{figure}{Figur} \end{verbatim} \subsubsection{Translating Keys} Once the dictionaries and languages have been setup, you can translate keys using the following commands: \begin{command}{\translate\oarg{options}\marg{key}} This command will insert the translation of the \meta{key} at the current position into the text. The command is robust. The translation process of \meta{key} works as follows: \textsc{Translator} iterates over all languages on the current \emph{language path} (see Section~\ref{section-language-path}). For each language on the path, \textsc{translator} checks whether a translation is available for the \meta{key}. For the first language for which this is the case, the translation is used. If there is no translation available for any language on the path, the \meta{key} itself is used as the translation. \example |\caption{\translate{Figure}~2.}| The following options may be given: \begin{itemize} \itemoption{to}{}|=|\meta{language} This option overrules the language path setting and installs \meta{language} as the target language(s) for which \textsc{translator} tries to find a translation. \end{itemize} \end{command} \begin{command}{\translatelet\oarg{options}\marg{macro}\marg{key}} This command works like the |\translate| command, only it will not insert the translation into the text, but will set the macro \meta{macro} to the translation found by the |\translate| command. \example |\translatelet\localfigure{figure}| \end{command} \subsubsection{Language Path and Language Substitution} \label{section-language-path} \begin{command}{\languagepath\marg{language path}} This command sets the language path that is searched when \textsc{translator} looks for a key. The default value of the language path is |\languagename,English|. The |\languagename| is the standard \TeX\ macro that expands to the current language. Typically, this is exactly what you want and there is no real need to change this default language path. \end{command} There is a problem with the names used in the macro |\languagename|. These names, like |ngerman|, are not the ones used by \textsc{translator} and we somehow have to tell the \translatorname\ about aliases for cryptic language names like |ngerman|. This is done using the following command: \begin{command}{\languagealias\marg{name}\marg{language list}} This command tells the \translatorname\ that the language \meta{name} should be replaced by the language in the \meta{language list}. \example |\languagealias{ngerman}{German}| \example |\languagealias{german}{German1997,German}| \end{command} For the languages used by the babel package, the aliases are automatically setup, so you typically do not need to call either |\languagepath| or |\languagealias|. \subsubsection{Package Loading Process} The \translatorname\ package is loaded ``in stages'': \begin{enumerate} \item First, some package or the document author requests the the \translatorname\ package is loaded. \item The \translatorname\ package allows options like |ngerman| to be given. These options cause the necessary aliases and the correct \translatorname\ languages to be requested. \item During the preamble, packages and the document author request creating dictionary kinds and certain languages to be used. There requests are protocoled. \item At the beginning of the document (|\begin{document}|) the requested dictionary-language-pairs are loaded. \end{enumerate} The first thing that needs to be done is to load the package. Typically, this is done automatically by some other package, but you may wish to include it directly: \begin{package}{{translator}} When you load the package, you can specify (multiple) babel languages as \meta{options}. The effect of giving such an option is the following: It causes the \translatorname\ package to call |\uselanguage| for the appropriate translation of the babel language names to \translatorname's language names. It also causes |\languagealias| to be called for the languages. \end{package} beamer/doc/beamerugthemeGoettingen.pdf0000644000175000017500000004343112050430522017755 0ustar mohuramohura%PDF-1.5 % 13 0 obj << /Length 1184 /Filter /FlateDecode >> stream xXKo6qXDIM[ʲ-ڻںHхmlr47cF#g3OБH-9\h'w3N;H)W㪝}Sɋ)(DoAWd:p6q BڢdyI$77U,/ou(&з$IE2 *\MޭM[{qC;o}N aͩd0 Ww2 i= l0B:V= h\ 4\Tp̎!Ճ+'n!Tiˬ JSHJY*޻Uq IQgY2ސ(#i*:lnᓅQh0xP;/1!Cy>>W#*c]j#ȑT r0!)s03T3 FF7cq' FF֓fY?{Zx9a wøgbQ$NԄS-n:j`c\'V}~&' _+qb Soxq# o c:ȒjB9B Di^Ô'98FR2o\Y6FWɋInFT:;Xu.M9e_3L *q䞎>ֲuE ^_oE14N9\)vyIXbEpT>9rѓtEXc]TbU@LcJB΄qDᚱ:`*PU=0Lh"ELѫG3J&?Mm/Sf;g/rwP]- ;tڹ* @WC9S&NUK&3=`=ͧT+Pđ$E?p駋շsO:| endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 56.693 272.126] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 17 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 20 0 obj << /Length 1512 /Filter /FlateDecode >> stream xYKo7W(Z4 A Kk[%ْ %w-bM@rv8̬&ݕzvp8#& ʅ!\ >}~I JyzU@g~= !ZCί: }5V\ ou5 놿oa5r%eRO!}\\*;ʸaDPdΩs>au;=UQIS &Y*tX5\mıDJz/>^pS[|պZt1űʾ>/ĭ"*gCLݓAMP WxT:+%<)=g:d| IZf @IQU4DdI5V kh|ۜC@oHIc ن# dJ1_ X,uׅʡ[H*jE-x ,- ys԰訄Ȁl[Gq943i@/όx~%>!!_lAUC6JZL|hhb&k4mdJ8ަ ^,<~ǪtI6QQB_q{isj1IkƎ3HR7 3QFqLI] >3If (Y^C#E )bf{LMӨw#M7i3 fuw)f~Q5(,‰2o?N>92j 2t o%7pّz/u-kܶn'#Ά)4^9lQxF|TN bОQ*~Vj>Io ϝMis{}#EQ ptDJX ^%yRnbvwx[mrt JY- `| RҬ| :9:!ИՔYl@B@^/ L/:eOP1Ge!QZxuLI jU)d/Zo:9s!ePV s[E]jtM&܇T:~A\vG!"}1%A;l|3 6}7hLmϋc?88fyFw/1g<)d]NoI<-f}%Ouz`]M&! fP) .H8Ze_ݻ4cL ,h1 >PP""zd >D!cj\O9fwDߢZ c;[?j9:: endstream endobj 25 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 30 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203858Z) /ModDate (D:20121113203858Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 15 0 obj << /Type /ObjStm /N 17 /First 122 /Length 1130 /Filter /FlateDecode >> stream xVr6}Wc2{ pFߔWrN5z(Hb+ I9NuI;H`88!$ b^TH H4 q@S8M2_z2$}?)Qƀ\45Rr xxymҹ,S45EL]n Zn4O'dP<*ThQ*-jtv=J^QVS.i^̝}YE$,jN3wi ޝS\y1;մhNCD!6Ee6MǧiBR\I$'.^=WSem>cg\40"f/{0n'lNbfiLUtMnؤK8x#QHuR<&Z hx7Oė UM{%D$z>[W vKUF2}D% o*; م/Bhsrirmb1psVƵ~.7۷ Q‑(qxW''.nl6*FWmGs﬚edt~gp@p E6ul=ncE)"0ro'=Z[VƱ[+sw*_7ev|?]q_&z7'3ߐ28s{28CZ@guƇP,$s狶r߉&]Y1_ԘC:YژP",ygxWx7x}Lqfj pDZ/pgt߸XbY\Ty9rSG<l1|*q 3c㠗p~]?e"^W3n֯2|2:Thr 5yFB"+ZAЇn#Ij@V1jmr ô;X;Z,xDW h@$fnnfŰOm+6oWf&im=lefw^^ Mitii=]kcdAtM{h{φ$(:"%\s;mݤ;oVȧ&6TC endstream endobj 31 0 obj << /Type /XRef /Index [0 32] /Size 32 /W [1 2 1] /Root 29 0 R /Info 30 0 R /ID [ ] /Length 85 /Filter /FlateDecode >> stream x@0D]D/QKy3RȕRDVYjТCe, 2-M0jǧl &t=e]#V|!k endstream endobj startxref 17866 %%EOF beamer/doc/beamerugcolorthemeseahorse.pdf0000644000175000017500000004303512050430560020524 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1226 /Filter /FlateDecode >> stream xXo6_G8~$ۨ|oh5dyE uL8:_ԛzQoq|^|K IT0 "OfQp=o:;ʸ~QoDP̜S|~s\>:D| -5vSݭmx#${D K? RX*N|جW47C>ޕMePC䌭7u{,uÏSn_-gDHyB9KvvGfdq@"LP~ -T:+aag>#prb呙 ZrHy\#! gE w'i*:.g 9G‡%*=&&Cl"zw )Cq>5,$*rH#HzL<.6_؀6+cn")oq55"MJ'v&j騁ŗI,d,%'=:OI%Mc29$y."gBTF ☒:Sҝ#iHdJ,d#ͫEd7P*r]oXu&Me$ 3Bs})Y0Xg;JKƃ1y7oNym'OFc| >'ߋ@cTbU@\%̣;'L^SA[@P+_@5kj΍W#ِT uh&R l<4\V'Wz0[ghaO:;?_ri_&ʗ]߬/wU߬J?/ vl 隻]} 0MG bZ{wz!ﲻP):4cG|!`.-Ab󾭻w%m7UAnhBͶ> stream xYKoIWMו-b܀c`m;ވ_?g2{ Z`U#ׄ1 AgDADXA0d='ov:RHY_m9R/NOI?7Spr䙐DSo!I"8wO|4 ؤ 2IEUZroӲјb9e?Zj˝AsNi_7cTGuF4%be$\hY~$i{AƖ ۏ 2h9Y"pxj|ً9nvq{urI]N ,.ɠog䁄f[T:+XęqAo.G/"EQA#KQRH1JP`HCfw[ˢtc\Cpx<ó>,Rc. F ER тwƔ<5,*^B#n\xX -BwOmg丘g 2BQlpY|Eoh|hZ4mN ^, {&p?'U?a{yMJ9F݉0nbɌ IR7 g(#| DSRWJ9 2/BU2υ,q"̧RYX2%*F `4Q̤)s<޿Ęa&Fhy.V 4"S}{^C7ڧ~]s"ftz @)rI#yr¼Q e?oSj<{|Jx[x\9yEknjڸ϶E>dǫv=.G˲7}g4wM<fѼ5q)tIZǝ5;!Wo:=jj q(3/D,ǬqnsՈa:fAq9ID8HB~4IR ==5%x-kGik_Qo<a\@uT'ŏFލQY/wwyMhm(JTMIw5iDauCfc /W.ØNeez^Tb"Kez9s()U~2^W]W-=QߣZoz%s!qد*+܌௝|waXQ"<Kg'C!^2ߋj$&&N*h c(&+eoj?,6\{ZkV϶fs۟'\^ X'#^4u!n5p*-$t y ^o!\gѸЁEisϭ{9(ϰCO֢> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203927Z) /ModDate (D:20121113203927Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<3764E71217DC92C75EB0A868B03CD34B> <3764E71217DC92C75EB0A868B03CD34B>] /Length 83 /Filter /FlateDecode >> stream xʹ0CQ`M@@ATHGFph^D J,E`?61lvR%If}m+܇u?S  endstream endobj startxref 17616 %%EOF beamer/doc/beamerug-transparencies.tex0000644000175000017500000001047512050430504017756 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-transparencies.tex,v ca2315a97e66 2010/07/12 17:10:04 rivanvx $ \section{Creating Transparencies} \label{section-trans} \label{trans} The main aim of the \beamer\ class is to create presentations for projectors (sometimes called beamers, hence the name). However, it is often useful to print transparencies as backup, in case the hardware fails. A transparencies version of a talk often has less slides than the main version, since it takes more time to switch slides, but it may have more slides than the handout version. For example, while in a handout an animation might be condensed to a single slide, you might wish to print several slides for the transparency version. In order to create a transparencies version, specify the class option |trans|. If you do not specify anything else, this will cause all overlay specifications to be suppressed. For most cases this will create exactly the desired result. \begin{classoption}{trans} Create a version that uses the |trans| overlay specifications. \end{classoption} In some cases, you may want a more complex behavior. For example, if you use many |\only| commands to draw an animation. In this case, suppressing all overlay specifications is not such a good idea, since this will cause all steps of the animation to be shown at the same time. In some cases this is not desirable. Also, it might be desirable to suppress some |\alert| commands that apply only to specific slides in the handout. For a fine-grained control of what is shown on a handout, you can use \emph{mode specifications}. They specify which slides of a frame should be shown for a special version, for example for the handout version. As explained in Section~\ref{section-concept-overlays}, a mode specification is written alongside the normal overlay specification inside the pointed brackets. It is separated from the normal specification by a vertical bar and a space. Here is an example: \begin{verbatim} \only<1-3,5-9| trans:2-3,5>{Text} \end{verbatim} This specification says: ``Normally (in |beamer| mode), insert the text on slides 1--3 and 5--9. For the transparencies version, insert the text only on slides 2,~3, and~5.'' If no special mode specification is given for |trans| mode, the default is ``always.'' This causes the desirable effect that if you do not specify anything, the overlay specification is effectively suppressed for the handout. An especially useful specification is the following: \begin{verbatim} \only<3| trans:0>{Not shown on transparencies.} \end{verbatim} Since there is no zeroth slide, the text is not shown. Likewise, \verb!\alert<3| trans:0>{Text}! will not alert the text on a transparency. You can also use a mode specification for the overlay specification of the |{frame}| environment as in the following example. \begin{verbatim} \begin{frame}<1-| trans:0> Text... \end{frame} \end{verbatim} This causes the frame to be suppressed in the transparencies version. Also, you can restrict the presentation such that only specific slides of the frame are shown on the handout: \begin{verbatim} \begin{frame}<1-| trans:4-5> Text... \end{frame} \end{verbatim} It is also possible to give only an alternate overlay specification. For example, |\alert{...}| causes the text to be always highlighted during the presentation, but never on the transparencies version. Likewise, |\frame{...}| causes the frame to be suppressed for the handout. Finally, note that it is possible to give more than one alternate overlay specification and in any order. For example, the following specification states that the text should be inserted on the first three slides in the presentation, in the first two slides of the transparency version, and not at all in the handout. \begin{verbatim} \only{Text} \end{verbatim} If you wish to give the same specification in all versions, you can do so by specifying |all:| as the version. For example, \begin{verbatim} \frame{blah...} \end{verbatim} ensures that the frame has two slides in all versions. beamer/doc/beamerug-twoscreens.tex0000644000175000017500000002006212050430504017122 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-twoscreens.tex,v 38dfbd395d7c 2012/03/25 13:15:29 joseph $ \section{Taking Advantage of Multiple Screens} \label{section-twoscreens} This section describes options provided by \beamer\ for taking advantage of computers that have more than one video output and can display different outputs on them. For such systems, one video output can be attached to a projector and the main presentation is shown there. The second video output is attached to a small extra monitor (or is just shown on the display of the computer) and shows, for example, special notes for you. Alternatively, the two outputs might be attached to two different projectors. One can then show the main presentation on the first projection and, say, the table of contents on the second. Or the second projection might show a version translated into a different language. Or the seoncd projection might always show the ``previous'' slide. Or \ldots---we are sure you can think of further useful things. The basic idea behind \beamer's support of two video outputs is the following: Using special options you can ask \beamer\ to create a \pdf-file in which the ``pages'' are unusually wide or high. By default, their height will still be 128mm, but their width will be 192mm (twice the usual default 96mm). These ``superwide'' pages will show the slides of the main presentation on the left and auxilliary material on the right (this can be switched using appropriate options, though hyperlinks will only work if the presentation is on the left and the second screen on the right). For the presentation you attach two screens to the system. The windowing system believes that the screen is twice as wide as it actually is. Everything the windowing system puts on the left half of this big virtual screen is redirected to the first video output, everything on the right half is redirected to the second video output. When the presentation program displays the specially prepared superwide \beamer-presentation, exactly the left half of the screen will be filled with the main presentation, the right part is filled with the auxilliary material---voil\`a. Not all presentation programs support this special feature. For example, the Acrobat Reader 6.0.2 will only use one screen in fullscreen mode on MacOS~X. On the other hand, a program named PDF Presenter supports showing dual-screen presentations. Generally, you will have to find out for yourself whether your display program and system support showing superwide presentations stretching over two screens. \beamer\ uses the package |pgfpages| to typeset two-screen presentations. Because of this, your first step when creating a two-screen presentation is to include this package: \begin{verbatim} \documentclass{beamer} \usepackage{pgfpages} \end{verbatim} The next step is to choose an appropriate option for showing something special on the second screen. These options are discussed in the following sections. One of the things these options do is to setup a certain |pgfpages|-layout that is appropriate for two-screen presentations. However, you can still change the |pgfpages|-layout arbitrarily, afterwards. For example, you might wish to enlarge the virtual pages. For details, see the documentation of |pgfpages|. \subsection{Showing Notes on the Second Screen} The first way to use a second screen is to show the presentation on the main screen and to show your notes on the second screen. The option |show notes on second screen| can be used for this. It is described on page~\pageref{command-notesonsecondscreen}. \subsection{Showing Second Mode Material on the Second Screen} The second way to use the second screen is to show ``a different vesion'' of the presentation on the second screen. This different version might be a translation or it might just always be the current table of contents. To specify what is shown on the second screen, you can use a special \beamer-mode called |second|. This mode behaves similar to modes like |handout| or |beamer|, but its effect depends on the exact options used: \begin{beameroption}{second mode text on second screen}{|=|\meta{location}} This option causes the second screen to show the second mode material. The \meta{location} of the second screen can be |left|, |right|, |bottom|, or |top|. In detail, the following happens: When a new frame needs to be typeset, \beamer\ checks whether the special option |typeset second| is given. If not, the frame is typeset normally and the slides are put on the main presentation screen (more precisely, on the logical |pgfpages|-page number zero). The second screen (logical page number one) shows whatever it showed before the frame was typeset. If the special frame option |typeset second| is given, after each slide of the frame the frame contents is typeset once more, but this time for the mode |second|. This results in another slide, which is put on the second screen (on logical page number one). Then the whole page is shipped out. The |second| mode behaves more like the |beamer| mode than other modes: Any overlay specification for |beamer| will also apply to |second| mode, unless an explicit |second| mode specification is also given. In particular, |\only<1-2>{Text}| will be shown on slides 1 and 2 in |second| mode, but only on the first slide in |handout| mode or |trans| mode. \example \begin{verbatim} \documentclass{beamer} \usepackage{pgfpages} \setbeameroption{second mode text on second screen} \begin{document} \begin{frame}[typeset second] This text is shown on the left and on the right. \only{This text is only shown on the right.} \only{This text is only shown on the left.} \end{frame} \begin{frame} This text is shown on the left. The right shows the same as for the previous frame. \end{frame} \begin{frame}[typeset second] \alt{The \string\alt command is useful for second mode. Let's show the table of contents, here: \tableofcontents} {Here comes some normal text for the first slide.} \end{frame} \end{document} \end{verbatim} \example The following example shows how translations can be added in a comfortable way. \begin{verbatim} \documentclass{beamer} \usepackage{pgfpages} \setbeameroption{second mode text on second screen} \DeclareRobustCommand\translation[1]{\mytranslation#1\relax} \long\def\mytranslation#1|#2\relax{\alt{#2}{#1}} \title{\translation{Preparing Presentations|Vortr\"age vorbereiten}} \author{Till Tantau} \begin{document} \begin{frame}[typeset second] \titlepage \end{frame} \begin{frame}[typeset second] \frametitle{\translation{This is the frame title.|Dies ist der Titel des Rahmens.}} \begin{itemize} \item<1-> \translation{First|Erstens}. \item<2-> \translation{Second|Zweitens}. \item<3-> \translation{Third|Drittens}. \end{itemize} \translation{Do not use line-by-line uncovering.|Man sollte Text nicht Zeile f\"ur Zeile aufdecken.} \end{frame} \end{document} \end{verbatim} \end{beameroption} In the last of the above example, it is a bit bothersome that the option |typeset second| has to be added to each frame. The following option globally sets this option: \begin{beameroption}{always typeset second mode}{|=|\meta{true or false}} When this option is set to true, every following frame will have the option |typeset second| set to true. \end{beameroption} \subsection{Showing the Previous Slide on the Second Screen} \begin{beameroption}{previous slide on second screen}{|=|\meta{location}} This option causes the second screen to show the previous slide that was typeset, unless this is overruled by a frame with the |[typeset second]| option set. The idea is that if you have two projectors you can always present ``the last two'' slides simultaneously and talk about them. Using this option will switch off the updating of external files like the table of contents. \end{beameroption} beamer/doc/beamerugthemeMarburg.pdf0000644000175000017500000004355412050430532017260 0ustar mohuramohura%PDF-1.5 % 13 0 obj << /Length 1229 /Filter /FlateDecode >> stream xXo6~_G8E=nhWXm$";eIYq gIƀ}x䙑KțRZђ7[ZP#s" AdӐ٧T-撌[HX9LS`:N^ BEHn)8Y˫f,2Qۭ֋?H&)d\6ދ},2ۮq2^Iu62EKQ:DPӜScJo|h1+Sd,>%g32d 4{(Neg2 ^ #i*IEc9|ƊޫS\94 )ړ;]ưPMb5G.,2·Dy.0w[ai$j_ti;R:_Kx#0CxgWs!i0:4,A}l_m^==9(Lf$^_+_pb ׆#&a?FԄ w {d%)Y- eF VZq D S2p8LRG,*s8:z8`^(5vRxgIUgӔSf;q5ôr_G"stOi ݒO`+XV{~ޥ!"q7pN)vC克'd`<=smL"6*1*Jq ƃc%sjh7 9^m{{TZFDq*s[XCJq ?+]/qڻk_y~>}8SɪY6KM}jow Mq&ōIIWרp,$SP*?ĠA00j8󯚛 6]y_%쪾] S 7n*C˪{!yٶ'x9OV.LhO$i0骲驮=Kw޶nbull} E."pOP aq(/9vnlSLȋrXwdT>MdN,a,M 0;GĽ5-IjA$v?]<Vߒn1O endstream endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 56.693 272.126] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 17 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 20 0 obj << /Length 1551 /Filter /FlateDecode >> stream xn7QB!ǵh4HA֎PKWV}g%^d 5`s9;f0~+qy?8#& ʅ!uE_vRA%5ioTD2Cdyuۉ`ZDSo!+"΂VdN.oU]º~ZN>L*26@@EGhpG؟˪ƗEZ=:k[+!TiΩs>~f1Duj?qP[*kXm4rVm7==Rs?,#we8r \WQibxZVv(i o'u4+g'Ƞ 'P r meT:+%X\z49|S߆ɲ ~*ɑ%@ I8jX%@@ Bx`Bj\UO:bKƐaIR:X9Ȗ F*x-9jX0T^&@-qU.)OmgLz5ϺM""_7 ghKrOTp[(2fV=aOAEʟذ?VG&)O1 z l@rͼA 5gDTF3ЈcJ I=GY@)tʉ,tG2 L$vDoNtC3i3̄M D:w(t} KJ!"J 8+ [6ȓ7 JӉD')U@6a\v= j0=_#N̅']Y%▛k'jEM_5tM!ղuy]ԣ#}096vȻ|b 6il6ߛh*cZjyFw' # ,)d _^k$g:lfݟY }5:iBX=a?C> VI䋯݇8ØKTBS SK-"QP(`8d lNqx[t^qahq gOW4" endstream endobj 25 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 30 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203904Z) /ModDate (D:20121113203904Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 15 0 obj << /Type /ObjStm /N 17 /First 122 /Length 1128 /Filter /FlateDecode >> stream xVr6}Wc2y h4JnݩFIl%R!)w(Y$"X@HD "ХDIxT@.HtcDG !2] % AF:cr:yvk ؖY\0vLy0gBI^A 8BPrvA;Z&,_Xe1&HYhJ?ejN ;2hEyZgE& ǥ)aJaR}@zxL`)aQ$#[9Z :JnA|Yf龒YX[@|/so-:cU11f+_x#"0Lh{r1mW H [O(o;Cؒ*YT[ s2uDCGS oy! I\yŲirBH9xS',=+ .]G^*H\&%%oop8>o N1ŴXF3H%qNW\3W ,r2+fYm+%VX'cOn ?3~tY3.+~[&GpauᇆIВ2T ksMncIjYb՚2av+kG˷ <970BC17F690554433114B9A725E1AAFC>] /Length 86 /Filter /FlateDecode >> stream x9@@Dn};pB;l ^nTB3Ƞ3uQ w6Ga~ע endstream endobj startxref 17948 %%EOF beamer/doc/beamerugcolorthemelily.pdf0000644000175000017500000004264712050430564017700 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1162 /Filter /FlateDecode >> stream xXo6_G8~3(Zjz7QqM`E#c|:HK4 RX*zȥ[6]B cZA>eNEr &5'BŨYR;2;T { `\oY i Lis2q $E*H 2"xCF @ᓅi0Zu*]r('  Lz tJ1#ER18!" S0s԰&Bn\"qd&%#I# [Kضbm"=W G'Db6 c$OЉ$ Ot˴,_KI%=u$m+M!29$y."g\TF ☒:Sҝ#IHJ$,Ф#ͫlEd3T:;ߐ0L2HfB*S@aMO$+Iد*"/rCx $O2)ٓW'%)%o=Y^kuE0vo,d{Tߗ ;ޞZBT*#SЩrUWǚ0W &Q .Km鯣ԲcŶ@8tB}܎V_W]s#[ {N3Mlo] ລ A-,oKؼo󶄶- +Rp/p_:_柅ziOrBh a`KSaS^w=Ľ])o"S{4v;7о?0±ZI&|>Ԡz)lXWLω6h/FF$&婵HHOO}>xT;/V?- endstream endobj 18 0 obj << /Length 1491 /Filter /FlateDecode >> stream xYKoG WQBɼQ# X77YZB-֣F}yZZRm@.~$g5#ׄIH#+(,*r9^R#$,Y\IA'!ZCWP$Q8EwpS-^_Xm/)Kʤ"}Ud<\\WUdNU`wqzzY-Ɖ 9qd{yMNy#&8"P&˿Uj5״ir }K*.VW7 ߇Yc09'Ȝ bSΒѴsO:mkHxJ<\z8JE`Lcr$&)l$)BMLARDoIT(14q(035] , 9g‡I%faRLT$C0h#!0eGEi&dl?u#s4+I7gFu8{c m&@FdD>h`!ɖf Kk=Y,oJi-ŗy5 /2^[ ı ;v$-(+M ȜIrͼA 3&*, ☒Pr͑%yV2*B%8K+kh֑磲L)"L"60?%u֡4e3̄ BE7y{gYYf/"3D7}9 Ba@{ʤVVHy?eup^hн'P:dJ8^ؓM(M]7 ׂPPh>\힯˪gMP*r"ݕ3++%w*eb2t?Q1h =A3wK1ZœBho'#zIp㥺{P -2d(Qql#.į&!2

> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203932Z) /ModDate (D:20121113203932Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<8B9FD9FEB295A8D2F28B891FEDF83BBE> <8B9FD9FEB295A8D2F28B891FEDF83BBE>] /Length 83 /Filter /FlateDecode >> stream x DނЇMp ;T[7lf6t/A"%I" q~.N6C$ɬͶ28xM  endstream endobj startxref 17498 %%EOF beamer/doc/beamerugcolorthemerose.pdf0000644000175000017500000004303412050430562017664 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1162 /Filter /FlateDecode >> stream xXo6_G8~3(Zjz7QqM`E#c|:HK4 RX*zȥ[6]B cZA>eNEr &5'BŨYR;2;T { `\oY i Lis2q $E*H 2"xCF @ᓅi0Zu*]r('  Lz tJ1#ER18!" S0s԰&Bn\"qd&%#I# [Kضbm"=W G'Db6 c$OЉ$ Ot˴,_KI%=u$m+M!29$y."g\TF ☒:Sҝ#IHJ$,Ф#ͫlEd3T:;ߐ0L2HfB*S@aMO$+Iد*"/rCx $O2)ٓW'%)%o=Y^kuE0vo,d{Tߗ ;ޞZBT*#SЩrUWǚ0W &Q .Km鯣ԲcŶ@8tB}܎V_W]s#[ {N3Mlo] ລ A-,oKؼo󶄶- +Rp/p_:_柅ziOrBh a`KSaS^w=Ľ])o"S{4v;7о?0±ZI&|>Ԡz)lXWLω6h/FF$&婵HHOO}>xT;/V?- endstream endobj 18 0 obj << /Length 1605 /Filter /FlateDecode >> stream xY[oZ9~WR[mխ$oim )w>p K3F. #{=R+{_Έ4:rarJ>>l.=HKy{JH֐P$Q89ٗr: z Jʤ"CUd~;Z^NWr0?O{nls꜏/\&wQI)}i3(Zjlsj}uwk@WR4Gt9^ן#ZiҠh12T Cd{\/N&" :2'B®)gxJz]kHxJ\z8JpE`Lc\H4,SHRBMARDHT(14<- ^-LL¸}\!aPIuAg!sT0r8[H*`3EBap9of 牐]$Ҥ!U3YC$sL:iZI`y-Ejb= "?Ű}o?OIJ+M ȜHrͼA 3GTFc@1%u#IHd)PJqWװѤ#yDleLd9xRͤ)s<ܿa&Dhl?8Y0=agd% h_dg""MAp:p<)2)'NNˑ5%,`STqK ~w(l5lM?@R*#?P:J# )Î/ۚTv;67FAc+Gy7SZ){Jj%tƒŅd=5[Mb^Nbg2-t}U1B1p-9͂?Q&$aExvE"W*H!&4^5Yo˰%;)ZG'\9펖xϝ9nCNCT `  T90@lg2 .x 5pz :oZqp֏Y ǡ50*#:u vcWpwiͫ7f: R6@qHOcT 4>v> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203929Z) /ModDate (D:20121113203929Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 86 /Filter /FlateDecode >> stream xʱ D]Q&4SS+k0͟9w%%ID:s?Uq݋Xn2:IvǃtP endstream endobj startxref 17612 %%EOF beamer/doc/beamerugthemeBerlin.pdf0000644000175000017500000004406712050430512017072 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1430 /Filter /FlateDecode >> stream xn7Q:,آi [Emxl $[K}#hmɍm ߾r!ziuRaEC{vQRA%^|+VѤq{io/!a(ׂ= Tzg @ o'Jg$q% e %E!+h D3jX%@ 74-x C](C7 9e%;|z+l,u n "hB Ö!:owOO qp4ibR@WgFY=HZg&K5dQµJ$SL4hZ$JޥBŗ /̱Q?p%Dc+v쩆{8O$=bdL8k g0~0oBgQF} qLI!iH>13xey &i_g)$HRqSԻ'%M2Ce$ 3!Cs}!Y谖FրY{'Zv׹4r!t\ B-| MaAINċJɥ'خEQ+*]E\4Sk;enuTTނ照sLd=MƭKHPѴ:JJxKH2r:I1+T\9gŭPDu֍i[(vBGpt>(A-47yc(qSt,^TJhi?{ i(kqp&+GYoW_;\UO, &h#MCOv  ĩzCGa?zKѷ^?Z f՘\A`J]oZ)W!h<50 Ʃv.p,A%[<7r7d,6B7c]#;[O*D8fqVպ^M-dղe |~klrn6dxw"b`bXL!Ys;ndF~`0cX@i %Ss7Wfh5nդH)Mo RvVyABf`Hlef+8TlF|9YO[)f"f9wF8WVXw[~eBCui:s80VP,:.m>RUEĞz#B C\;A0Pu vvjFcR#PfF0߭ι|4 [A0nRMH7_4 v *-O/Û v8gĠ/ ۭ>-N,ֱ>UA'*'$17sj͞kxp# e endstream endobj 18 0 obj << /Length 1877 /Filter /FlateDecode >> stream xZKs9WԖޏRR,Irp'qm$v ~43 PknI_"9bzؼ9:#& ʅ!<,mK̮H{rhyVI>nOPBƉz0kA{r%AUzW `2N$JI0q$#J9%.,4)N392H!GR %ᆆ"]`b Um 4g9eK/|z+뀤尷DTT"!e(ΫCEI"$l?u#s4MRHjΌjokBV៱MȲ Wm")7 gNNgtx|D ü܆N,ztZpR^-JN=YG;]2oE0'2_),y{dW}`܂內s u2_v[cܦH aTtZJ)>U`L68SwҖTe:d %'#"[t6(:aOSyI_hMigG/^j%*`FQ֒ w2/nǟ.iVrHG 4I'r:+ nʩ57h[RA=6bav{{yRp=tv=&-11{d{Mv4T%*HSv0dqA,4U1ؾ̮F0;sO*h01NJ\(J.(/^k^ 8Ȳ(8],jQ=/fIoL H;7mwY>9Djwh<2?'ׯ-Cs`Uv2ŢޱW0ET5X2|@ ;宸ǾALm"XM|P+h(s.no4 *n)^UNи]+^ǜbjVȭaiy Kqm=t`C l8k5q$&~v*(j]Pǟ@|Zo=c(S^  ՞Dqʭn«2˪)m:.n|)H>ESdI5|4:w$T&Uy&VzX.] %LY##_NKQD #6^4GIW|Ya0\"07z n e6pݪ8q 7͘ͻgs7KIcH5,%\j*%'S%r+JY:aWiw @?#2oPߺTu12ϏT:U)FA{Cr=hC^7&kGʎ+o9tzm>ZPUNo8b:f~}TLMWgڢ]:W160J %U `Oc8'gENM P4 ͰJ_J &n]4SGQzyy5޸5/|6_NRt4Uy{ WUWnD2A_cӾT;azB:!k:3C*%p[5 endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203850Z) /ModDate (D:20121113203850Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9l endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 85 /Filter /FlateDecode >> stream xʹ0CQC ih7VKDIAy\*8E&I<nu?r ^ endstream endobj startxref 18152 %%EOF beamer/doc/beameruginnerthemecircles.pdf0000644000175000017500000004350612050430576020346 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1292 /Filter /FlateDecode >> stream xXKo6Whآ.f㢇WQbrw)YvNT3O$UΒܒ1r\7Pw|&(0Q-T:+%ę蜓J9neВ# @5ILLC CNxɞ JRu@R0r-Q$#+H0Lna!PI-ܸ>F!MFzҋFUǙQ50axX6N 97X I&O{;I$ 03l%>O$#Ȓk  g#s"I5 \(D8#22K@1%u#iHd"S> stream xZKo9 W`1ޏbhܺ=$8-噉nm[#II%a݈u[5>bnttFIM Cr1}nK"+2$Ϫh޷D4'B*'*gx:'!2;MtTTƨqP*`Lw3J9~ KeCHLARDnoHTC+rAm.Px%jvVZ6gr`lW ؐ,u0]$-%".s|b.Cq{rO!ݸ"qdnM)gF@χbhlDY Y")vC3iIi2N }Yxy9Y6Y RX~>O$4$øȜHrͼA -g22`ǔԙj! LP)2ųHY^D?γH<ͤ1zI:t 1L|?XYЖDm YE_zW9b(>AtX=!ø܆N,|tpR^-JE qU^UB\kՊ OTn[T^@M>,~2z rrѥ"B<ɗ|r\Y~8_Nmz?.gדy.a4G1 cMlfr1Y7o5$8rk:Nw|PiXꏸ A{tZxdI\h5P}H xR$Ma5jR9hv[󘌚RS184c8w@U10ի ( *F?3%@kJY.s!"S qCXauG Tg2yuۍ@\K4(XYnzbW->|w$8d/͇T>;arז0ymBELFm#l8|7m'])/GPn0 /!)t+׭| o,/ObFOOimٓC @Ak,:GQϯ^\ vp15t [}}dȶZxٺѵf"U( $yIW/P![ S%0ι}8*< Gkc$h/ jNG6îpz Oo2X)'pNntQX 3T/9O\⁧U/_9w_!s  V Jb:N`aG5@p *Ln*)U(v)` 3*W=f8x endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203942Z) /ModDate (D:20121113203942Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9l endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<087EA29C4B830B903B2E5D70692CF5C3> <087EA29C4B830B903B2E5D70692CF5C3>] /Length 86 /Filter /FlateDecode >> stream xʱ D]E"415BS |w^@(QdP@4m2c^d(-s[4x~_  endstream endobj startxref 17910 %%EOF beamer/doc/beamerug-color.tex0000644000175000017500000010674312050430504016057 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-color.tex,v c1fc5075f54a 2012/11/11 20:21:39 joseph $ \section{Colors} \label{section-colors} \beamer's color management allows you to specify the color of every element (like, say, the color of the section entries in a table of contents or, say, the color of the subsection entries in a mini table of contents in a sidebar). While the system is quite powerful, it is not trivial to use. To simplify the usage of the color system, you should consider using a predefined color theme, which takes care of everything for you. In the following, color themes are explained first. The rest of the section consists of explanations of how the color management works internally. You will need to read these sections only if you wish to write your own color themes; or if you are quite happy with the predefined themes but you absolutely insist that displayed mathematical text simply has to be typeset in a lovely pink. \subsection{Color Themes} In order to also show the effect of the different color themes on the sidebar, in the following examples the color themes are used together with the outer theme |sidebar|. \subsubsection{Default and Special-Purpose Color Themes} \begin{colorthemeexample}{default} The |default| color theme is very sober. It installs little special colors and even less backgrounds. The default color theme sets up the default parent relations between the different \beamer-colors. The main colors set in the |default| color theme are the following: \begin{itemize} \item |normal text| is black on white. \item |alerted text| is red. \item |example text| is a dark green (green with 50\% black). \item |structure| is set to a light version of MidnightBlue (more precisely, 20\% red, 20\% green, and 70\% blue). \end{itemize} Use this theme for a no-nonsense presentation. Since this theme is loaded by default, you cannot ``reload'' it after having loaded another color theme. \end{colorthemeexample} \begin{colorthemeexample}[\oarg{options}]{structure} The example was created using |\usecolortheme[named=SeaGreen]{structure}|. This theme offers a convenient way of changing the color used for structural elements. More precisely, it just changes the foreground of the \beamer-color |structure|. You can also achieve this by directly invoking the function |\setbeamercolor|, but this color theme makes things a bit easier. The theme offers several \meta{options}, which can be used to specify the color to be used for structural elements: \begin{itemize} \item \declare{|rgb=|\marg{rgb tuple}} sets the |structure| foreground to the specified red-green-blue tuple. The numbers are given as decimals between 0 and 1. For example, |rgb={0.5,0,0}| yields a dark red. \item \declare{|RGB=|\marg{rgb tuple}} does the same as |rgb|, except that the numbers range between 0 and 255. For example, |RGB={128,0,0}| yields a dark red. \item \declare{|cmyk=|\marg{cmyk tuple}} sets the |structure| foreground to the specified cyan-magenta-yellow-black tuple. The numbers are given as decimals between 0 and 1. For example, |cmyk={0,1,1,0.5}| yields a dark red. \item \declare{|cmy=|\marg{cmy tuple}} is similar to |cmyk|, except that the black component is not specified. \item \declare{|hsb=|\marg{hsb tuple}} sets the |structure| foreground to the specified hue-saturation-brightness tuple. The numbers are given as decimals between 0 and 1. For example, |hsb={0,1,.5}| yields a dark red. \item \declare{|named=|\marg{color name}} sets the |structure| foreground to a named color. This color must previously have been defined using the |\DefineNamedColor| command. Adding the class option |xcolor=dvipsnames| or |xcolor=svgnames| will install a long list of standard |dvips| or SVG color names (respectively). See the file |dvipsnam.def| for the list. \end{itemize} \end{colorthemeexample} \begin{colorthemeexample}{sidebartab} This theme changes the colors in a sidebar such that the current entry in a table of contents shown there gets highlighted by showing a different background behind it. \end{colorthemeexample} \subsubsection{Complete Color Themes} A ``complete'' color theme is a color theme that completely specifies all colors for all parts of a frame. It installs specific colors and does not derive the colors from, say, the |structure| \beamer-color. Complete color themes happen to have names of flying animals. \begin{colorthemeexample}{albatross} The color theme is a ``dark'' or ``inverted'' theme using yellow on blue as the main colors. The color theme also installs a slightly darker background color for blocks, which is necessary for presentation themes that use shadows, but which (in Till's opinion) is undesirable for all other presentation themes. By using the |lily| color theme together with this theme, the backgrounds for blocks can be removed. When using a light-on-dark theme like this one, be aware that there are certain disadvantages: \begin{itemize} \item If the room in which the talk is given has been ``darkened,'' using such a theme makes it more difficult for the audience to take or read notes. \item Since the room becomes darker, the pupil becomes larger, thus making it harder for the eye to focus. This \emph{can} make text harder to read. \item Printing such slides is difficult at best. \end{itemize} On the other hand, a light-on-dark presentation often appears to be more ``stylish'' than a plain black-on-white one. The following \meta{options} may be given: \begin{itemize} \item \declare{|overlystylish|} installs a background canvas that is, in Till's opinion, way too stylish. But then, it is not his intention to press his taste on other people. When using this option, it is probably a very good idea to also use the |lily| color theme. \end{itemize} \example The |overlystylish| option together with the |lily| color theme: \genericthemeexample{colorthemealbatrossstylish} \end{colorthemeexample} \begin{colorthemeexample}{beetle} The main ``theme behind this theme'' is to use white and black text on gray background. The white text is used for special emphasis, the black text for normal text. The ``outer stuff'' like the headline and the footline use, however, a bluish color. To change this color, change the background of |palette primary|. Great care must be taken with this theme since both the white/gray and the black/gray contrasts are much lower than with other themes. Make sure that the contrast is high enough for the actual presentation. You can change the ``grayish'' background by changing the background of |normal text|. \end{colorthemeexample} \begin{colorthemeexample}{crane} This theme uses the colors of Lufthansa, whose logo is a crane. It is \emph{not} an official theme by that company, however. \end{colorthemeexample} \begin{colorthemeexample}{dove} This theme is nearly a black and white theme and useful for creating presentations that are easy to print on a black-and-white printer. The theme uses grayscale in certain unavoidable cases, but never color. It also changes the font of alerted text to boldface. When using this theme, you should consider using the class option |gray|, which ensures that all colors are converted to grayscale. Also consider using the |structurebold| font theme. \end{colorthemeexample} \begin{colorthemeexample}{fly} This theme is the ``consequent'' version of |beetle| and uses white/black/gray throughout. It does not go particularly well with themes that use shadows. \end{colorthemeexample} \begin{colorthemeexample}{monarca} The theme is based on the the colors of the Monarch butterfly. \themeauthor Max Dohse. \end{colorthemeexample} \begin{colorthemeexample}{seagull} Like the |dove| color theme, this theme is useful for printing on a black-and-white printer. However, it uses different shades of gray extensively, which may or may not look good on a transparency. \end{colorthemeexample} \begin{colorthemeexample}{wolverine} The theme is based on the colors of the University of Michigan's mascot, a wolverine. \themeauthor Madhusudan Singh. \end{colorthemeexample} \begin{colorthemeexample}{beaver} The theme is based on the colors of MIT's mascot, a beaver. \themeauthor Madhusudan Singh. \end{colorthemeexample} \begin{colorthemeexample}{spruce} The theme is based on the the colors of Michigan State University. \themeauthor Alan Munn. \end{colorthemeexample} \subsubsection{Inner Color Themes} Inner color themes only specify the colors of elements used in inner themes. Most noticably, they specify the colors used for blocks. They can be used together with other (color) themes. If they are used to change the inner colors installed by a presentation theme or another color theme, they should obviously be specified \emph{after} the other theme has been loaded. Inner color themes happen to have flower names. \begin{colorthemeexample}{lily} This theme is mainly used to \emph{uninstall} any block colors setup by another theme, restoring the colors used in the |default| theme. In particular, using this theme will remove all background colors for blocks. \end{colorthemeexample} \begin{colorthemeexample}{orchid} This theme installs white-on-dark block titles. The background of the title of a normal block is set to the foreground of the structure color, the foreground is set to white. The background of alerted blocks are set to red and of example blocks to green. The body of blocks get a nearly transparent background. \end{colorthemeexample} \begin{colorthemeexample}{rose} This theme installs nearly transparent backgrounds for both block titles and block bodies. This theme is much less ``aggressive'' than the |orchid| theme. The background colors are derived from the foreground of the structure \beamer-color. \end{colorthemeexample} \subsubsection{Outer Color Themes} An outer color theme changes the palette colors, on which the colors used in the headline, footline, and sidebar are based by default. Outer color themes normally do not change the color of inner elements, except possibly for |titlelike|. They have happen to be sea-animal names. \begin{colorthemeexample}{whale} Installs a white-on-dark palette for the headline, footline, and sidebar. The backgrounds used there are set to shades between the structure \beamer-color and black. The foreground is set to white. While this color theme can appear to be aggressive, you should note that a dark bar at the border of a frame will have a somewhat different appearance during a presentation than it has on paper: During a presentation the projection on the wall is usually surrounded by blackness. Thus, a dark bar will not create a contrast as opposed to the way it does on paper. Indeed, using this theme will cause the main part of the frame to be more at the focus of attention. The counterpart to the theme with respect to blocks is the |orchid| theme. However, pairing it with the |rose| color theme is also interesting. \end{colorthemeexample} \begin{colorthemeexample}{seahorse} Installs a near-transparent backgrounds for the headline, footline, and sidebar. Using this theme will cause navigational elements to be much less ``dominant'' than when using the |whale| theme (see the discussion on contrast there, though). It goes well with the |rose| or the |lily| color theme. Pairing it with the |orchid| overemphasizes blocks (in Till's opinion). \end{colorthemeexample} \begin{colorthemeexample}{dolphin} A color theme somewhere in the middle between the whale and the seahorse. It was graciously donated by Manuel Carro. Like the seahorse, it goes well with the |rose| and the |lily| color theme. \end{colorthemeexample} \subsection{Changing the Colors Used for Different Elements of a Presentation} This section explains how \beamer's color management works. \subsubsection{Overview of Beamer's Color Management} In \beamer's philosophy, every element of a presentation can have a different color. Unfortunately, it turned out that simply assigning a single color to every element of a presentation is not such a good idea. First of all, we sometimes want colors of elements to change during a presentation, like the color of the item indicators when they become alerted or inside an example block. Second, some elements naturally have two colors, namely a foreground and a background, but not always. Third, sometimes elements somehow should not have any special color but should simply ``run along'' with the color of their surrounding. Finally, giving a special color to every element makes it very hard to globally change colors (like changing all the different kind-of-blue things into kind-of-red things) and it makes later extensions even harder. For all these reasons, the color of an element in \beamer\ is a structured object, which we call a \emph{\beamer-color}. Every \beamer-color has two parts: a foreground and a background. Either of these may be ``empty,'' which means that whatever foreground or background was active before should remain active when the color is used. \beamer-colors can \emph{inherit} from other \beamer-colors and the default themes make extensive use of this feature. For example, there is a \beamer-color called |structure| and all sorts of elements inherit from this color. Thus, if someone changes |structure|, the color of all these elements automatically change accordingly. When a color inherits from another color, it can nevertheless still override only the foreground or the background. It is also possible to ``inherit'' from another \beamer-color in a more sophisticated way, which is more like \emph{using} the other \beamer-color in an indirect way. You can specify that, say, the background of the title should be a 90\% of the background of normal text and 10\% of the foreground of |structure|. Inheritance and using of other \beamer-colors is done dynamically. This means that if one of the parent \beamer-colors changes during the presentation, the derived colors automatically also change. The default color theme, which is always loaded, installs numerous \beamer-colors and inheritance relations between them. These colors are explained throughout this guide. The color used for, say, frametitles is discussed in the section on frametitles, and so on. \subsubsection{Using Beamer's Colors} A \beamer-color is not a normal color as defined by the |color| and |xcolor| packages and, accordingly, cannot be used directly as in commands like |\color| or |\colorlet|. Instead, in order to use a \beamer-color, you should first call the command |\usebeamercolor|, which is explained below. This command will setup two (normal) colors called |fg| (for foreground) and |bg| (for, well, guess what). You can then say |\color{fg}| to install the foreground color and |\color{bg}| to install the background color. You can also use the colors |fg| and |bg| in any context in which you normally use a color like, say, |red|. If a \beamer-color does not have a foreground or a background, the colors |fg| or |bg| (or both) remain unchanged. Inside templates, this command will typically have already been called for you with the option |[fg]|. \begin{command}{\usebeamercolor\opt{|*|}\oarg{fg or bg}\marg{beamer-color name}} This command (possibly) changes the two colors |fg| and |bg| to the foreground and background color of the \meta{beamer-color name}. If the \beamer-color does not specify a foreground, |fg| is left unchanged; if does not specify a background, |bg| is left unchanged. You will often wish to directly use the color |fg| or |bg| after using this command. For this common situation, the optional argument \meta{fg or bg} is useful, which may be either |fg| or |bg|. Giving this option will cause the foreground |fg| or the background |bg| to be immediately installed after they have been setup. Thus, the following command \begin{verbatim} \usebeamercolor[fg]{normal text} \end{verbatim} is a shortcut for \begin{verbatim} \usebeamercolor{normal text} \color{fg} \end{verbatim} If you use the starred version of this command, the \beamer-color |normal text| is used before the command is invoked. This ensures that, barring evil trickery, the colors |fg| and |bg| will be setup independently of whatever colors happened to be in use when the command is invoked. This command has special side-effects. First, the (normal) color |parent.bg| is set to the value of |bg| prior to this call. Thus you can access the color that was in use prior to the call of this command via the color |parent.bg|. Second, the special color \meta{beamer-color name}|.fg| is \emph{globally} set to the same value as |fg| and \meta{beamer-color name}|.bg| is globally set to the value of |bg|. This allows you to access the foreground or background of a certain \meta{beamer-color name} after another \beamer-color has been used. However, referring to these special global colors should be kept to the unavoidable minimum and should be done as locally as possible since a change of the \beamer-color will not reflect in a change of the colors \meta{beamer-color name}|.fg| and \meta{beamer-color name}|.bg| until the next invocation of |\usebeamercolor|. Also, if the \meta{beamer-color name} does not specify a foreground or a background color, then the values of the special colors are whatever happened to be the foreground or background at the time of the last invocation of |\usebeamercolor|. So, try not to get into the habit of writing |\color{structure.fg}| all the time, at least not without a |\usebeamercolor{structure}| close by. \example \begin{verbatim} This text is {\usebeamercolor[fg]{alerted text} alerted}. The following box uses the fore- and background of frametitles: { \usebeamercolor[fg]{frametitle} \colorbox{bg}{Frame Title} } \end{verbatim} \articlenote This command has no effect in |article| mode. \end{command} \begin{command}{\ifbeamercolorempty\oarg{fg or bg}\marg{beamer-color name}\marg{if undefined}\marg{if defined}} This command can be used to check whether the foreground or background of some \meta{beamer-color name} is non-empty. If the foreground or background of \meta{beamer-color name} is defined, \meta{if defined} will be executed, otherwise the \meta{if undefined} code. \example \begin{verbatim} \ifbeamercolorempty[bg]{frametitle} { % ``Transparent background'' \usebeamercolor[fg]{frametitle} \insertframetitle } { % Opaque background \usebeamercolor[fg]{frametitle} \colorbox{bg}{\insertframetitle} } \end{verbatim} \end{command} \subsubsection{Setting Beamer's Colors} To set or to change a \beamer-color, you can use the command |\setbeamercolor|. \begin{command}{\setbeamercolor\opt{|*|}\marg{beamer-color name}\marg{options}} Sets or changes a \beamer-color. The \meta{beamer-color name} should be a reasonably simple text (do not try too much trickery and avoid punctuation symbols), but it may contain spaces. Thus, |normal text| is a valid \meta{beamer-color name} and so is |My Color Number 2|. In the most simple case, you just specify a foreground by giving the |fg=| option and, possibly, also a background using the |bg=| option. \example |\setbeamercolor{normal text}{fg=black,bg=mylightgrey}| \example |\setbeamercolor{alerted text}{fg=red!80!black}| The effect of this command is accumulative, thus the following two commands \begin{verbatim} \setbeamercolor{section in toc}{fg=blue} \setbeamercolor{section in toc}{bg=white} \end{verbatim} have the same effect as \begin{verbatim} \setbeamercolor{section in toc}{fg=blue,bg=white} \end{verbatim} Naturally, a second call with the same kind of \meta{option} set to a different value overrides a previous call. The starred version first resets everything, thereby ``switching off'' the accumulative effect. Use this starred version to completely reset the definition of some \beamer-color. The following \meta{options} may be given: \begin{itemize} \item \declare{|fg=|\meta{color}} sets the foreground color of \meta{beamer-color name} to the given (normal) \meta{color}. The \meta{color} may also be a color expression like |red!50!black|, see the manual of the \textsc{xcolor} package. If \meta{color} is empty, the \meta{beamer-color name} ``has no special foreground'' and when the color is used, the foreground currently in force should not be changed. Specifying a foreground this way will override any inherited foreground color. \item \declare{|bg=|\meta{color}} does the same as the |fg| option, but for the background. \item \declare{|parent=|\meta{parent beamer-color(s)}} specifies that \meta{beamer-color name} should inherit from the specified \meta{parent beamer-color(s)}. Any foreground and/or background color set by the parents will also be used when \meta{beamer-color name} is used. If multiple parents specify a foreground, the last one ``wins''; and likewise for the backgrounds. \example \begin{verbatim} \setbeamercolor{father}{fg=red} \setbeamercolor{mother}{bg=green} \setbeamercolor{child}{parent={father,mother}} \begin{beamercolorbox}{child} Terrible red on green text. \end{beamercolorbox} \setbeamercolor{father}{fg=blue} \begin{beamercolorbox}{child} Now terrible blue on green text, since parent was changed. \end{beamercolorbox} \end{verbatim} Note that a change of the foreground or background of a parent changes the corresponding foreground or background of the child (unless it is overruled). A \beamer-color cannot only have parents, but also grandparents and so on. \item \declare{|use=|\meta{another beamer-color}} is used to make sure that another \beamer-color is setup correctly before the foreground or background color specification are evaluated. Suppose you wish the foreground of items to be a mixture of 50\% of the foreground of structural elements and 50\% of the normal foreground color. You could try \begin{verbatim} \setbeamercolor{item}{fg=structure.fg!50!normal text.fg} \end{verbatim} However, this will not necessarily give the desired result: If the \beamer-color |structure| changes, the (normal) color |structure.fg| is not immediately updated. In order to ensure that the normal color |structure.fg| is correct, use the following: \begin{verbatim} \setbeamercolor{item}{use={structure,normal text},fg=structure.fg!50!normal text.fg} \end{verbatim} This will guarantee that the colors |structure.fg| and |normal text.fg| are setup correctly when the foreground of |item| is computed. To show the difference, consider the following example: \begin{verbatim} \setbeamercolor{grandfather}{fg=red} \setbeamercolor{grandmother}{bg=white} \setbeamercolor{father}{parent={grandfather,grandmother}} \setbeamercolor{mother}{fg=black} { \usebeamercolor{father}\usebeamercolor{mother} %% Defines father.fg and mother.fg globally } \setbeamercolor{my color A}{fg=father.fg!50!mother.fg} \setbeamercolor{my color B}{use={father,mother},fg=father.fg!50!mother.fg} {\usebeamercolor[fg]{my color A} dark red text} {\usebeamercolor[fg]{my color b} also dark red text} \setbeamercolor{grandfather}{fg=green} {\usebeamercolor[fg]{my color A} still dark red text} {\usebeamercolor[fg]{my color B} now dark green text} \end{verbatim} \end{itemize} \end{command} \subsection{The Color of Mathematical Text} By default, mathematical text does not have any special color---it just inherits the ``surrounding'' color. Some people prefer mathematical text to have some special color. Though we do not recommend this (we believe mathematical text should \emph{not} stand out amid the normal text), \beamer\ makes it (reasonably) easy to change the color of mathematical text. Simply change the following colors: \begin{element}{math text}\no\yes\no This color is the parent of |math text inlined| and |math text displayed|. It is empty by default. See those colors for details. \end{element} \begin{element}{math text inlined}\no\yes\no \colorparents{math text} If the foreground of this color is set, inlined mathematical text is typeset using this color. This is done via some |\everymath| hackery and may not work in all cases. If not, you'll have to try to find a way around the problem. The background is currently ignored. \end{element} \begin{element}{math text displayed}\no\yes\no \colorparents{math text} Like |math text inlined|, only for so-called ``displayed'' mathematical text. This is mathematical text between |\[| and |\]| or between |$$| and |$$| or inside environments like |equation| or |align|. The setup of this color is somewhat fragile, use at your own risk. The background is currently ignored. \end{element} \begin{element}{normal text in math text}\no\yes\no If the foreground of this color is set, normal text inside mathematical text (which is introduced using the |\text| command) will be typeset using this color. The background is currently ignored. \end{element} \subsection{The Color Palettes} When one designs a color theme, one faces the following problem: Suppose we want the colors in the headline to gradually change from black to, say, blue. Whatever is at the very top of the headline should be black, what comes right below it should be dark blue, and at the bottom of the headline things should just be blue. Unfortunately, different outer themes will put different things at the top. One theme might put the author at the top, another theme might put the document title there. This makes it impossible to directly assign one of the three colors ``black'', ``dark blue,'' and ``blue'' to the different elements that are typically rendered in the headline. No matter how we assign them, things will look wrong for certain outer themes. To circumvent this problem, \beamer\ uses a layer of \emph{palette colors}. Color themes typically only change these palette colors. For example, a color theme might make the \beamer-color |palette primary| blue, make |palette secondary| a dark blue, and make |palette tertiary| black. Outer themes can now setup things such that whatever they show at the top of the headline inherits from |palette primary|, what comes below inherits from |palette secondary|, and whatever is at the bottom inherits from |palette tertiary|. This way, color themes can change the way even complicated outer themes look and they can do so consistently. Note that the user can still change the color of every element individually, simply by overriding the color(s) of the elements in the headline. In a sense, the palette colors are just a ``suggestion'' how things should be colored by an outer theme. In detail, the following palette colors are used by outer themes. \begin{element}{palette primary}\no\yes\no Outer themes (should) base the color of navigational elements and, possibly, also of other elements, on the four palette colors. The ``primary'' palette should be used for the most important navigational elements, which are usually the ones that change most often and hence require the most attention by the audience. The ``secondary'' and ``tertiary'' are less important, the ``quaternary'' one is least important. By default, the palette colors do not have a background and the foreground ranges from |structure.fg| to |black|. For the sidebar, there is an extra set of palette colors, see |palette sidebar primary|. \end{element} \begin{element}{palette secondary}\no\yes\no See |palette primary|. \end{element} \begin{element}{palette tertiary}\no\yes\no See |palette primary|. \end{element} \begin{element}{palette quaternary}\no\yes\no See |palette primary|. \end{element} \begin{element}{palette sidebar primary}\no\yes\no Similar to |palette primary|, only outer themes (should) base the colors of elements in the sidebar on the four sidebar palette colors. \end{element} \begin{element}{palette sidebar secondary}\no\yes\no See |palette sidebar primary|. \end{element} \begin{element}{palette sidebar tertiary}\no\yes\no See |palette sidebar primary|. \end{element} \begin{element}{palette sidebar quaternary}\no\yes\no See |palette sidebar primary|. \end{element} \subsection{Miscellaneous Colors} In this section some ``basic'' colors are listed that do not ``belong'' to any special commands. \begin{element}{normal text}\no\yes\yes The color is used for normal text. At the beginning of the document the foreground color is installed as |\normalcolor|. The background of this color is used by the default background canvas for the background of the presentation, see Section~\ref{section-canvas}. The background is also the default value of the normal color |bg|. Since the color is the ``root'' of all other \beamer-colors, both a foreground and a background must be installed. In particular, to get a transparent background canvas, make the background of the \beamer-color |background canvas| empty, not the background of this color. The \beamer-font currently is not used. In particular, redefining this font will not have any effect. This is likely to change in the future. \end{element} \begin{element}{example text}\no\yes\yes The color/font is used when text is typeset inside an |example| block. \end{element} \begin{element}{titlelike}\no\yes\yes This color/font is a more specialized form of the |structure| color/font. It is the base for all elements that are ``like titles.'' This includes the frame title and subtitle as well as the document title and subtitle. \end{element} \begin{element}{separation line}\no\yes\no The foreground of this color is used for separating lines. If the foreground is empty, no separation line is drawn. \end{element} \begin{element}{upper separation line head}\no\yes\no \colorparents{separation line} Special case for the uppermost separation line in a headline. \end{element} \begin{element}{middle separation line head}\no\yes\no \colorparents{separation line} Special case for the middle separation line in a headline. \end{element} \begin{element}{lower separation line head}\no\yes\no \colorparents{separation line} Special case for the lower separation line in a headline. \end{element} \begin{element}{upper separation line foot}\no\yes\no \colorparents{separation line} Special case for the uppermost separation line in a footline. \end{element} \begin{element}{middle separation line foot}\no\yes\no \colorparents{separation line} Special case for the middle separation line in a footline. \end{element} \begin{element}{lower separation line foot}\no\yes\no \colorparents{separation line} Special case for the lower separation line in a footline. \end{element} \subsection{Transparency Effects} \label{section-transparent} By default, \emph{covered} items are not shown during a presentation. Thus if you write |\uncover<2>{Text.}|, the text is not shown on any but the second slide. On the other slides, the text is not simply printed using the background color -- it is not shown at all. This effect is most useful if your background does not have a uniform color. Sometimes however, you might prefer that covered items are not completely covered. Rather, you would like them to be shown already in a very dim or shaded way. This allows your audience to get a feeling for what is yet to come, without getting distracted by it. Also, you might wish text that is covered ``once more'' still to be visible to some degree. Ideally, there would be an option to make covered text ``transparent.'' This would mean that when covered text is shown, it would instead be mixed with the background behind it. Unfortunately, |pgf| does not support real transparency yet. Instead, transparency is created by mixing the color of the object you want to show with the current background color (the color |bg|, which has hopefully been setup such that it is the average color of the background on which the object should be placed). To install this effect, you can use: \begin{verbatim} \setbeamercovered{transparent} \end{verbatim} This command allows you to specify in a quite general way how a covered item should be rendered. You can even specify different ways of rendering the item depending on how long it will take before this item is shown or for how long it has already been covered once more. The transparency effect will automatically apply to all colors, \emph{except} for the colors in images. For images there is a workaround, see the documentation of the \pgfname\ package. \begin{command}{\setbeamercovered\marg{options}} This command offers several different options, the most important of which is |transparent|. All options are internally mapped to the two options |still covered| and |again covered|. In detail, the following \meta{options} may be given: \begin{itemize} \item \declare{|invisible|} is the default and causes covered text to ``completely disappear''. \item \declare{|transparent|}\opt{|=|\meta{opaqueness}} causes covered text to be typset in a ``transparent'' way. By default, this means that 85\% of the background color is mixed into all colors or that the \meta{opaqueness} of the text is 15\%. You can specify a different \meta{percentage}, where |0| means ``totally transparent'' and |100| means ``totally opaque.'' Unfortunately, this value is kind of ``specific'' to every projector. What looks good on your screen need not look good during a presentation. \item \declare{|dynamic|} Makes all covered text quite transparent, but in a dynamic way. The longer it will take till the text is uncovered, the stronger the transparency. \item \declare{|highly dynamic|} Has the same effect as |dynamic|, but the effect is stronger. \item \declare{|still covered=|\meta{not yet list}} specifies how to render covered items that have not yet been uncovered. The \meta{not yet list} should be a list of |\opaqueness| commands, see the description of that command, below. \example \begin{verbatim} \setbeamercovered{% still covered={\opaqueness<1>{15}\opaqueness<2>{10}\opaqueness<3>{5}\opaqueness<4->{2}}, again covered={\opaqueness<1->{15}}} \end{verbatim} \item \declare{|again covered=|\meta{once more list}} specifies how to render covered items that have once more been covered, that is, that had been shown before but are now covered again. \end{itemize} \end{command} \begin{command}{\opaqueness\ssarg{overlay specification}\marg{percentage of opaqueness}} The \meta{overlay specification} specifies on which slides covered text should have which \meta{percentage of opaqueness}. Unlike other overlay specifications, this \meta{overlay specification} is a ``relative'' overlay specification. For example, the specification ``3'' here means ``things that will be uncovered three slides ahead,'' respectively ``things that have once more been covered for three slides.'' More precisely, if an item is uncovered for more than one slide and then covered once more, only the ``first moment of uncovering'' is used for the calculation of how long the item has been covered once more. An opaqueness of 100 is fully opaque and 0 is fully transparent. Currently, since real transparency is not yet implemented, this command causes all colors to get a mixing of \meta{percentage of opaqueness} of the current |bg|. At some future point this command might result in real transparency. The alternate \pgfname\ extension used inside an opaque area is \meta{percentage of opaqueness}|opaque|. In case of nested calls, only the innermost opaqueness specification is used. \example \begin{verbatim} \setbeamercovered{still covered={\opaqueness<1->{15}},again covered={\opaqueness<1->{15}}} \pgfdeclareimage{book}{book} \pgfdeclareimage{book.!15opaque}{filenameforbooknearlytransparent} \end{verbatim} Makes everything that is uncovered in two slides only 15 percent opaque. \end{command} beamer/doc/beamerugouterthemedefault.pdf0000644000175000017500000004201312050430602020347 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 999 /Filter /FlateDecode >> stream xWoD_xq'<m,jMpj*Z*5ygv5aS5>"yiuRa]K?},N+&GȏUdq{`L'B*'*gI/9P& :* *cz8(JI0q:de &E)H:ސ#*"q>LLsC7CNDMJ]NR:P%DR19>rq Ò8V ק 1H/ΌjocSsn\YpSIyB7I&H ZpY42IQ9l"Ia .칉{>OI'Ȓk 0όGI5.f8#22ȈcJꌤo!&#YY^FZ7ًd7OBi&)]@ߒL2H3̄S훌@dс6 N_w "IAh:zD܆xP'K'[zMwM&_ݴ+ɖ唕!! `0,-ǾvMcQ?Rp´? ݟ+nߍrV jaHWѐpo^ѡƢ7nݡ>7`_DW!ptu9Q5ъ 2hf eB:{lrW3i; endstream endobj 18 0 obj << /Length 1381 /Filter /FlateDecode >> stream xN9=_D_^WV-}IHLc{2d->aӀuW5~ippFIM C9|E=vNW"Jhq{w4'B*'*gɴܑA P&1jeJg$.q;d F²ـ !+H4"zCI5 N w[R1Ju~! dO5JQLgqtKIEE- [9jXpT]%@-vr4ibR@/7gFY1Xclz,JFDh`!J$MіOm*-X͍_dȱs5A#<67Y%y2v8/*qw $L[ǣVUۊh%̓_Osz,߂%czIKa4Ώ>H g])"4`F·gz> eϓjhpQ5ly=qve (dJ(b֫eܬk$#$te,"fzh̚bg*o1vZ#:ݒ9zжԚ O n)*܂;w$Ɵm}8n؏[9?[Ǐョ$=<BdKKM Nn!%<*~3r>zx]繠IL%6PX񀹒>Σд=twWꎽ0ux"mTAAoL[ *&~M6 _T}%i? ͍n(Aƶ7ӿ`׽F\r=xԓ]KiC2ʣ]pg/ enIlwjzq1lx&l~6SMs׋|Xj`M3YV첀,Dͺan4Ouf/˓e3^a='7QX7 3/M[I= Q ~ qwד jB;;/Gf(W (Eԙ endstream endobj 23 0 obj << /Length1 1166 /Length2 7033 /Length3 0 /Length 7803 /Filter /FlateDecode >> stream xuWe\۾顔fC`.ahnC@SZAB$.}s<zևᙆ65,"ع8@@5T] l|, :#?B@@`PY cTA@.0HPa +j!N0o;B, Eh9;;BZ`W * y?e`^pRK/( vB w#w `(дX  9k@f;Yqp@NF20 \5VCyqS7( jHnΜ/7 ~c` q.@:^?H߰ ptAl/;|/;bZm0Ͻ8@ . ÁZà^Y8:l_QҰ\@vnAЃk^\RWc0)AW "p8zO G_2A\!`k Os@v.>p:v+(,PZ!P[6pi+78A?ۿ6`O`~f%b_vY-E Gn4׎țzHJ(xs dj ىW SȽpn %xI~Q'&sޫ &C2=H5H w1X mt~V^{!|DLlQ'h5{}f7U TVsfՠ3*ȅ.ivhjGl7L=%bRQ+Fk6Li16P~#5u|E˛H핈e[`@NL {&5$RޝJ~2d^ ﬑}5? y̕μ-߈ 2$ޮv]8;?_JڞcvcPٕ;J0 O/%<5Ë'Ë24 |\.EnY_{|n4/-iM 1U̒?;/uM;vnc^C!Y̢U@V|F:!q$q}&y >MJ=zkӳ2rjCc\? P=dP=su=(4A/ӯ)~KM~+-Bq%0EQ.uЦuGm֒uì0V.wq;
k20RD$]Z0YgK07,ϝ.ZHt88S_d-8NL^ YD8_qY*g|<%C!FFmcT؍yס*#Gז4XN#qf;j58M Zюn*H@2t2( hTpp?f2<Иu凰{ OЬտR-hKV)lFYݓMt:/u>sߡ/A_\(a<$GO=|,•6n@;! 9Iq!yPqEՖFR1|\hs2/]Y(S4,|@S{ae6@Yb: -Ey~&*ٞjdx6`^]ϤS]P;yg}3@rgj՝RٿU5~m jܚlȿ ]2y~%%|ܿ^-ue2~+S콲nsV@o6]d#Ra(QLJPk,vx2.p7!ȠiEx:t1Wkr^)~'n jO*g8(2ʳPCJ1;pzDjD J88E:\&mI]l v&3NM\w?EruNTJؒwRN"[e@M沣 wWlWAo",.=f͝E 5 }$v%h;5Wzϓe'x.øsjGHR7^Q1.!*7q=4h0qHQ;J1kn1྘SeUzHFOcîQ(mMHP'KP(4#Q&>-tTsB[5yvV5Z892ClxȩDܽKT`%ryy-VڇYyժڝ \Ρm@rS^c;RؚB"\#&#mPv-υ}h{t݉?e^ulǑ7&5]aãc.Oɲ ܖ%-ٕ#ZS۴D,Ё_06 iVwg}>!KDbHH47ȷlQN,'$Û_qj .s_%$|q*nC5$gzjR_WhZLdœV! ?p4?Fm]žz{Phhv=59qWͱd0kc֨cx:?J@Xcun<ͣBYzMFv<aG6NI#?V/^&Zf ܃#Sⲡ2ʃC%D'|(ڨћt܈74cئ*ؾ>1$4e9inڴ zZhYX%keg&ExW~I4kg-9$4ܴZ5OU#G:GJzQ?>ᑐۤOȝ!OҶ+6"z#>|\3[3nUH(lDc,_ ^ݘf& W~gy1Ra{{ &'#1Ӵ>bMfKt)::WቄdOJ YTê^C})D| O򛯑='ܘ2gQ1|;̀tz$nѷD`4w`" , e*ӟC<_^|ƣAg|lH+>5Hrk}[IMWM.X'!$%#: Joʢ&ސ)=@kD$# HtҤ@[ҀDңD%=!#jNbp|(ZX"// "8]9i{V.(a]2]g"UK#gdY.t|qq{,flس l9%_x'%M#`8=wmq;g#]^m{KQޣwJb90,6qpx"3)ğ~ &t ߮&beAs@TvU/ .mlryQmw 07dWEl8C )hfJ3o*_U)9w3o7ruYߟV2 /6ezY{tZT9j~q'9T9#87qEU0s/c}ae I-6&vً3ɑI#iv4qmr9n+XO8&#FGd?79PE|":)@<MA2^܌/_SgTwf5.%:زi->rh7X?Wy /Rԣv+b!$oOrDݍjyB Ym(і_yŤy%XDuCx9ɅYYtX us@f: ̏hD {!lk2]MYu\۬Zwyf"P^ 4QzjT ƞXZ'ziwAx6j#zX,/b8P(wD]nbe/6{ڷ% x$Kd;ԇ2Z>ɾEU?d}W2yP&M$f2e_:.?HoJdD΁TӧG9lrosK4P%| [Gq0~)Irq0&~טA5iz}ZII~Ԥ >WmOہoWl!O}Uj5;3rbF'|a9ɥтV7FB#7P2o{Ri%_?EWȹC%{S2ʬT;G8 AR^4kzK)&4MdPu ԥo_GE-]VNwqf䟯'f-}īw[O+NUyIccn2~f4YbkV2* 5l;wi>1N\x'bѿoos- !R%*j~h1{櫏1nʝ9}e!ъj5e0@ mEA#C¹~g6z1̑XpّiΟqo`pyrG:UAe`iMZ䪄B/}<]-S'LcKle ;g!2 gC8aF"-5Iyac۩OJ,RnE5DJ(zR:+yVa@kA Yz7 EC"`R#8; ,z|J4UۀX>_Yd!Bv Q*J,_ˇ'ux2OPNlo $_VիJ+9 q U9**ӈr10.=oו:tU,۪ğwݪYo}qC_ r،xm%0k)2E>u߹x1VZK @T5F~Q~˓ b/˝o,\J[WFra?*) *A|nQ2Bkf0^x/ګ/rĥݎ 1vR~(*^6a{tCr7cu G ȵmWumE[4ma7B#u=~`vd1H> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203946Z) /ModDate (D:20121113203946Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1006 /Filter /FlateDecode >> stream xVK6W1AH  颛c;ݶLBmIͦ3N襇¦D7$E!AI-)(^HzƠ /t rHc-Bv4)4iʋ]\wpҀ$^E!eH7Nuø^U S@ȱ ;!Ch!5y$(غUjʉ&Diq88 |t[D?0"0za^%|MVٲ9LqF? #^?¥ԃ 4-$Xɀu".ɍ]}|t@)1}1&XnL7j΂͵R"5X%=y2QGE8"G0vlv6ط-vLI#{A Nhڵr8lx&-k i2uCoqRF:ے:9~zuľ9x٤|҄BaT?<[uCs=)wm"[kpz3Dt6$URY/o>8 1Ŵl\FcX$ qI(f5nBcrzXc~خjR >WS[ 'RpYKNFOwFgtL2U{,C-n!ImU\jl*)Km9xib>^BzP]t!?6 (͌kxCbRӗe}5C FOͺi@5O>Ew1_PFs)_v} Cx44|J|AKA ]#uBuḆK'sn}|nKBތ\/h endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<54765049D051F81A98BE34243FAFD222> <54765049D051F81A98BE34243FAFD222>] /Length 86 /Filter /FlateDecode >> stream xʹ0CQ۠ (" 6xg5 P@@$Y~( ԙe2?^d$峭p}4n7x<] O endstream endobj startxref 17083 %%EOF beamer/doc/beamercolorthemeexample.tex0000644000175000017500000000262412050430504020036 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamercolorthemeexample.tex,v 161eaf4bc28c 2010/05/08 12:41:37 rivanvx $ \documentclass[hyperref={draft}]{beamer} \ifx\themename\undefined \def\themename{default} \fi \useoutertheme[height=0pt]{sidebar} \def\albatrossname{albatross} \def\flyname{fly} \def\beetlename{beetle} \def\structurename{structure} \def\albatrossnamestylish{albatrossstylish} \ifx\themename\structurename \usecolortheme[cmyk={0.69,0,0.50,0}]{\themename} \else \ifx\themename\albatrossnamestylish \usecolortheme[overlystylish]{albatross} \usecolortheme{lily} \else \usecolortheme{\themename} \fi \fi \ifx\themename\albatrossname \makeatletter \let\beamertemplatesolidbackgroundcolor=\@gobble \makeatother \fi \ifx\themename\albatrossnamestylish \makeatletter \let\beamertemplatesolidbackgroundcolor=\@gobble \makeatother \fi \ifx\themename\flyname \makeatletter \let\beamertemplatesolidbackgroundcolor=\@gobble \makeatother \fi \ifx\themename\beetlename \makeatletter \let\beamertemplatesolidbackgroundcolor=\@gobble \makeatother \fi \input{beamerthemeexamplebase} beamer/doc/beamerugcolorthemesidebartab.pdf0000644000175000017500000004271312050430564021021 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 1153 /Filter /FlateDecode >> stream xXo6_G8~_m(u׻8,\!L*RWr{U~(7me~oDP̜S|~{\>Ap~wuz9"ʩ ﷛eD(j@mt,F :Df[GNyDr &/'BŨYR2;&C`-AA2[AtVBgk>#79N<Ф(?\ WrHy\#Qchx;q(|"Ѫ!HWAgsXH0r-Q$#XN#!0e(·@E6p#s4-24/:Ό=lcDz@Nl`!ƜI&Ou&j騁ŗI,_?"K` c{uE0Xb> stream xYKoG WQBɼI [7'YZ;Bp$A}yj%iԀ=gH~kFn #{=R׽/@gDADXA0d]އ5RA%[|x}{JH֐ 11Iv)NFSr}`( Jʤ"CUd~;^V~=rݟ-(~vq]qrDP̜S|~k>rUl.nbIۋjo.ǥZ gG' ;g. ZHN&/^ݸ+zZeHO~ZDsϟ2!.^uh}|Mq61:"AHЈy0r]֐n@`UBGAa3oY Q Lit%}Ute[N,@RD$Ha@!0[.Pxcafj.:Հ_l!Hx|0HuBca~n"H`b9EB +<9jXpT^dB-qEM7I?![+},ٿ6~TCJD@43Y,iO˛Rd^سlr'gX;8ϷIN(+M(ȜIrͼA -gTTFY'`ǔԅk,!M&dd pey {I9Ecf{L"VlQnҔ9_FB0"4?gO 4 "nXYβvO/\}cM_AVh|a_n>ެy|,V :ޤSdshjUxS[Đw9|R5U빷KJe67JG 8ЦC<xL6!(<4JleQ]em7UU_Ң9@P\,uhF[8C?Pj endstream endobj 23 0 obj << /Length1 1166 /Length2 7168 /Length3 0 /Length 7942 /Filter /FlateDecode >> stream xuveT\ٺ-. [=*p B] s;}^ko2\clzju-6 D )T[j;(iB݁ 9^LH@ݠnϼ;P q q ל:]@uux-!nZNN0( qutw ;@)G'/IGSHPPhB J) Ī[ˀn dqssp2>4)M[ҬZbweTśaV1!}mM=麳D˓CRJp5Fp?y:6(h~O㓋o(93ÇwT%d&QgQi2a@~^~ntOQm)I^nNaB%FM rhݞ 0^v ܿ0j0YifFW$E)8C5qazyߑZ+3D"2$>v wz٣ ^b}V¦Xyȴgey,%4}3Y(v^?G6vI p RۜȺjL@8ZF׈{5YMW-4f @iCM0Q ߲sf~iYA{-xhqkn݉f O }T]mB wj~j=b'\+Qd7ERɡNW%[,UtMN'x]zBt Ӷq aZӸ7jvg1;ӟ9QzT/_٨0Uf|pU)5 ~p .y= 5rb:vNIdݰa2vv8fI_h[kgB=Kbc ڰLE(vRrmKThnIZ,xc/q:= eg%kz<*| tTT轵DPFM1oˀ?g@V5UjBYIFQ:w(lM4K?1p-3N|̲3sB?nNi:0`Gu}W!iLJG&͊ =3]{R b<.*N?sΧnrAH1>^Zt7@r|Q>8-1*Ҝ﹠ZL3F,a˞L"U%6 4=u)zI)1%yGO0'Fȓ h[3>:喘r49#O u߄.E =(n5 4=/ل/C= &._0n`f:!${%&׺`YZ ӜT ڧ7#=8+3vtuoIp pYd+gP>}}u!yy4EL93:"ڀ1W'Vd%[)$.O\m\56_""NL757B:<ޤd [vdmjQ/L3c݌*\1ATAbv'}1am=uXxT[£#rLg;'3M5lB /=et2ٶvwźsp;0"o-MSRYXwc*6^3-FoKA 'W23X7k \e}j9S A㎃DV}ц3zScZ!\kѯb0nr*X<wkff$[o4U7GyIOQIH&e*^,N͓mRPA=#"^4kY%lzP@DEr6>.`b+ ",!a&C 1SYRT `i1+02i:WQ37^taXBmg`*_0;U، W[ym7G.Ynf󋍊%@xb?W0R1nJIL͡??AZpT6tR ~ˮj7Tȱmpj6BҚ:}+dcl@%1ȝi'PgCyE/gT9%"HE$u*8 ^)>86Ycyv:9#fvPSh.qT+F(:x@ˆY;=Gݝ^W{>ˤ2oYy1hHڗVlḁYZK<:DZupƛ1M@`DwA3TF &*TC bgSB?ؔ)@Z7뎈75m&{knS^iBdHYR(Pt"^c ݦOWPډs[  |GLYYm4T>jid0_%aĎ~K9VU86p^TmX"c܋ D&E|H-}P!˯[`ߨ}S3\VmAP!dj.l0Tx8o6NWSp^Y"/6Mh= zӟ0UX/iNnExsP/Sm$~K  #Ŕ&PfFyOiox{eoj$Ce[#kz}LGW.|t ZjyLFGl&SWβQ/-s[C.ذ~4R3G*d81+6 !`>n*W&zs]c㿴1}D9÷ܻQy=0Q0aot;%ǬТ~}-ܙԶH[@I#SD0)KDSU0X=Qײ=KJ}!5~-scnIw;-YiA€ԹkYnAaz:iӨ/\47?nMF+K)+$Z|5؍`]-Y]ʉA7TnWJݑǒ4ĞMOEIdI>=Դkֺ8by/u4%Z#71rH(PDCrC m܆U5g GG" 씃[yWfIE'ޢ.;L<7lATL0nWN^FG[#hՒ2 m"\mަ# aue&o#;(ts0edɕm$ Z4ñAU$hpJ<ۯj9~vڬN '|'>N/Dh?W D!!K$%#ug8LS*ad98>|eFF@a88v$v5@4p_>ue}yqJ,}I<S[N= 6V?A2wp?"לզW"y< KYX;9)nJ!/FIt 3v5Z\}m qĞ(;F=(7K)- &O  XJOѺ$[ՀmO 6F^NUkmj>+L[OƉHb(S%.l0OZUk҉j)Ԙ 녌f9YRZN1ڊ# bt`?,o9ĮFzuUs{S;qS;lۅŎ2rÛI[>ދ-dD4CqgHWqS+7o_ w /3PW|\&G˭I]n\_'I$hK9lo-qEAXRYcM-{|IJqy&$=cW+؎z ^}9:hk%Pe,ЗAMD߶jzLMociQқ7uz?, tѨ˜'Ί"CNQ2fBV.ƶJ"~ZJ_pZLP0fPj.~x!6n~à0S;}"SΈ8aZ+to+fl=q '?: v%9 /KN$LԜg4Ck%BoT7jT2+wWtF FFjlu@IJH]2"!D E!o3僾o!/c֯7{}5KMSNݟ.h(/xFʀhQ )a:+q3B$t˘D^ݬf6fM5kA)!٫m2OUj p(w)!f+)c`lqwbunw4' + @qK{rMps(;+3&o T23>;"Y y\: BJaH4՗O9Jշ5k4RLYO?Jjߐzܲc[9W4Z}Z"IusٗdJSyP ~?_̥^aFx0&D$R['@(@a8'ֺ"' V3D],}gO# /-%v^bUމ̵K,NP)es`²-$AJc\w >A3v<ʸ^L8&h~euaюe[_5)j^ 83!*>?*p/S3FxcSq.^'4`* 'NM3HinJ4 "kY>,uGŢT"3&$@M`UsYnWl*#dn]J?+ M-̓dq*1|5f8Dvʪ'$ c}F픑zc(9JK[m9O(!:&Peg}~%OA_.Uw4-;5^ tLKޓŝƳ\{G:[c/xg:Z{Қ"~R3Z;vCyP"$-tMT䕥5~+7Y*:|h` \O= g&JG\'^~NS_ד3_ATHAyef/˕{Q^4㕯Sm i).D`>>bdlzN A8 &Aםz%厃S0úVtjySx,;\T-8׮sER #٠vf!HBZ$&&rzvl' XH떴r T͎LqTH_ҝ${1a|Պ؝br0GYt}lP!P̧n2kϵP9+!,3v0Q}\s&KTt'XmCBJ ~@ޛ3E]D \LEﻄS?/o`h]\}VSae+C FkWs<ĪCOd#ԩ۾c 1:2h6U_5Y V>I.n rAD?um,>IFwH+{De.ѵY)oCT%E @j`I{W\S71Pa7t)w-QmyavߗuhۡQb+[jDNXqewal{kl6JmE͒AlQy[VBa>C#[/IN&Ȭ_JNT&ߍwQD˜SBM8Z4h*-)I)וPض͙n] ɏc6ЌN| !$k_lZt=1"~6<n&%7N -s1Iɕ+flf&`=T>\+Ǭxz:V<)~uX&9lձFz ԟvcYiiy7fl$70gyrHW'q0q\Wc`N5Us{jDü"g9`0޽Fŭkro_e';&V8J}mXxLU<xuwra: 3%oî:1^DJrw+0x≙#ewWg JNc@M*cҕ w{YթHsWVq6]F:arrjy)_Њ ECo6 .X,eNJNG߻j ! \q*gC=&TrU6/,>*Evk+˞QK0H6uep)ݓ(W:%]aFvXw@>{qRR=h"uRMη Y\U1zkpK0uivL2GO]a4o] 6>"~8T HQ]PsH 5 <]i lTr W|4Q,hL0FIw'UH˓mP{xq~aC ZRdSc4֦fQqh /ZFq㎄ `ztE@}BGz=")4t]hQ51;c{@{Pu(u0URdC UI4mJzp5\ʉa~%P8;> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203931Z) /ModDate (D:20121113203931Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1009 /Filter /FlateDecode >> stream xVYo6~ׯ]I]6I]m~eZjKl3|SoEB7#B % @8)OL6%j4e\q Wtbkws,5X*+Xn kαf]i[|_O]-ÌKut#ލ?rD7b~),ӎIВjOe+$IPeftѫ9/20\;j߮,x%w l_mG]w@ãV67Cjbhgh̒x3Vd>ì.PnN|ʖͺkܱof Ny147@M͗P?dKja/t 1*Rǚ..fu/ 3&wŅ03I9  endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [<8B9FD9FEB295A8D2F28B891FEDF83BBE> <8B9FD9FEB295A8D2F28B891FEDF83BBE>] /Length 86 /Filter /FlateDecode >> stream x DQ('kЃ]ّU ^~vK%J, uZ ?)%eus?N  endstream endobj startxref 17531 %%EOF beamer/doc/beamerug-license.tex0000644000175000017500000011746112050430504016362 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Free Documentation License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/doc/beamerug-license.tex,v ca2315a97e66 2010/07/12 17:10:04 rivanvx $ \section{Licenses and Copyright} \label{section-license} \subsection{Which License Applies?} Different parts of the \beamer\ package are distributed under different licenses: \begin{enumerate} \item The \emph{code} of the package is dual-license. This means that you can decide which license you wish to use when using the \beamer\ package. The two options are: \begin{enumerate} \item You can use the \textsc{gnu} General Public License, Version 2 or any later version published by the Free Software Foundation. \item You can use the \LaTeX\ Project Public License, version 1.3c or (at your option) any later version. \end{enumerate} \item The \emph{documentation} of the package is also dual-license. Again, you can choose between two options: \begin{enumerate} \item You can use the \textsc{gnu} Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation. \item You can use the \LaTeX\ Project Public License, version 1.3c or (at your option) any later version. \end{enumerate} \end{enumerate} The ``documentation of the package'' refers to all files in the subdirectory |doc| of the \beamer\ package. A detailed listing can be found in the file |doc/licenses/manifest-documentation.txt|. All files in other directories are part of the ``code of the package.'' A detailed listing can be found in the file |doc/licenses/manifest-code.txt|. In the rest of this section, the licenses are presented. The following text is copyrighted, see the plain text versions of these licenses in the directory |doc/licenses| for details. \subsection{The GNU General Public License, Version 2} \subsubsection{Preamble} The licenses for most software are designed to take away your freedom to share and change it. By contrast, the \textsc{gnu} General Public License is intended to guarantee your freedom to share and change free software---to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the \textsc{gnu} Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. \subsubsection{Terms and Conditions For Copying, Distribution and Modification} \begin{enumerate} \addtocounter{enumi}{-1} \item This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The ``Program'', below, refers to any such program or work, and a ``work based on the Program'' means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term ``modification''.) Each licensee is addressed as ``you''. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. \item You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. \item You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: \begin{enumerate} \item You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. \item You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. \item If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) \end{enumerate} These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. \item You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: \begin{enumerate} \item Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, \item Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, \item Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsubsection b above.) \end{enumerate} The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. \item You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. \item You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. \item Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. \item If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. \item If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. \item The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and ``any later version'', you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. \item If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. \end{enumerate} \subsubsection{No Warranty} \begin{enumerate} \addtocounter{enumi}{9} \item Because the program is licensed free of charge, there is no warranty for the program, to the extent permitted by applicable law. Except when otherwise stated in writing the copyright holders and/or other parties provide the program ``as is'' without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. The entire risk as to the quality and performance of the program is with you. Should the program prove defective, you assume the cost of all necessary servicing, repair or correction. \item In no event unless required by applicable law or agreed to in writing will any copyright holder, or any other party who may modify and/or redistribute the program as permitted above, be liable to you for damages, including any general, special, incidental or consequential damages arising out of the use or inability to use the program (including but not limited to loss of data or data being rendered inaccurate or losses sustained by you or third parties or a failure of the program to operate with any other programs), even if such holder or other party has been advised of the possibility of such damages. \end{enumerate} \subsection{The GNU Free Documentation License, Version 1.3, 3 November 2008} \label{label_fdl} \begin{quote} \textbf{Copyright \copyright 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.} \url{http://fsf.org/} Everyone is allowed to distribute verbatim copies of this license document, but modification of it is not allowed. \end{quote} \subsubsection{Preamble} The purpose of this License is to make a manual, textbook, or other functional and useful document ``free'' in the sense of freedom: to assure everyone the effective freedom to copy and redistribute it, with or without modifying it, either commercially or noncommercially. Secondarily, this License preserves for the author and publisher a way to get credit for their work, while not being considered responsible for modifications made by others. This License is a kind of ``copyleft'', which means that derivative works of the document must themselves be free in the same sense. It complements the GNU General Public License, which is a copyleft license designed for free software. We have designed this License in order to use it for manuals for free software, because free software needs free documentation: a free program should come with manuals providing the same freedoms that the software does. But this License is not limited to software manuals; it can be used for any textual work, regardless of subject matter or whether it is published as a printed book. We recommend this License principally for works whose purpose is instruction or reference. \subsubsection{Applicability and definitions} This License applies to any manual or other work, in any medium, that contains a notice placed by the copyright holder saying it can be distributed under the terms of this License. Such a notice grants a world-wide, royalty-free license, unlimited in duration, to use that work under the conditions stated herein. The \textbf{``Document''}, below, refers to any such manual or work. Any member of the public is a licensee, and is addressed as \textbf{``you''}. You accept the license if you copy, modify or distribute the work in a way requiring permission under copyright law. A \textbf{``Modified Version''} of the Document means any work containing the Document or a portion of it, either copied verbatim, or with modifications and/or translated into another language. A \textbf{``Secondary Section''} is a named appendix or a front-matter section of the Document that deals exclusively with the relationship of the publishers or authors of the Document to the Document's overall subject (or to related matters) and contains nothing that could fall directly within that overall subject. (Thus, if the Document is in part a textbook of mathematics, a Secondary Section may not explain any mathematics.) The relationship could be a matter of historical connection with the subject or with related matters, or of legal, commercial, philosophical, ethical or political position regarding them. The \textbf{``Invariant Sections''} are certain Secondary Sections whose titles are designated, as being those of Invariant Sections, in the notice that says that the Document is released under this License. If a section does not fit the above definition of Secondary then it is not allowed to be designated as Invariant. The Document may contain zero Invariant Sections. If the Document does not identify any Invariant Sections then there are none. The \textbf{``Cover Texts''} are certain short passages of text that are listed, as Front-Cover Texts or Back-Cover Texts, in the notice that says that the Document is released under this License. A Front-Cover Text may be at most 5 words, and a Back-Cover Text may be at most 25 words. A \textbf{``Transparent''} copy of the Document means a machine-readable copy, represented in a format whose specification is available to the general public, that is suitable for revising the document straightforwardly with generic text editors or (for images composed of pixels) generic paint programs or (for drawings) some widely available drawing editor, and that is suitable for input to text formatters or for automatic translation to a variety of formats suitable for input to text formatters. A copy made in an otherwise Transparent file format whose markup, or absence of markup, has been arranged to thwart or discourage subsequent modification by readers is not Transparent. An image format is not Transparent if used for any substantial amount of text. A copy that is not ``Transparent'' is called \textbf{``Opaque''}. Examples of suitable formats for Transparent copies include plain ASCII without markup, Texinfo input format, LaTeX input format, SGML or XML using a publicly available DTD, and standard-conforming simple HTML, PostScript or PDF designed for human modification. Examples of transparent image formats include PNG, XCF and JPG. Opaque formats include proprietary formats that can be read and edited only by proprietary word processors, SGML or XML for which the DTD and/or processing tools are not generally available, and the machine-generated HTML, PostScript or PDF produced by some word processors for output purposes only. The \textbf{``Title Page''} means, for a printed book, the title page itself, plus such following pages as are needed to hold, legibly, the material this License requires to appear in the title page. For works in formats which do not have any title page as such, ``Title Page'' means the text near the most prominent appearance of the work's title, preceding the beginning of the body of the text. The \textbf{``publisher''} means any person or entity that distributes copies of the Document to the public. A section \textbf{``Entitled XYZ''} means a named subunit of the Document whose title either is precisely XYZ or contains XYZ in parentheses following text that translates XYZ in another language. (Here XYZ stands for a specific section name mentioned below, such as \textbf{``Acknowledgements''}, \textbf{``Dedications''}, \textbf{``Endorsements''}, or \textbf{``History''}.) To \textbf{``Preserve the Title''} of such a section when you modify the Document means that it remains a section ``Entitled XYZ'' according to this definition. The Document may include Warranty Disclaimers next to the notice which states that this License applies to the Document. These Warranty Disclaimers are considered to be included by reference in this License, but only as regards disclaiming warranties: any other implication that these Warranty Disclaimers may have is void and has no effect on the meaning of this License. \subsubsection{Verbatim Copying} You may copy and distribute the Document in any medium, either commercially or noncommercially, provided that this License, the copyright notices, and the license notice saying this License applies to the Document are reproduced in all copies, and that you add no other conditions whatsoever to those of this License. You may not use technical measures to obstruct or control the reading or further copying of the copies you make or distribute. However, you may accept compensation in exchange for copies. If you distribute a large enough number of copies you must also follow the conditions in section 3. You may also lend copies, under the same conditions stated above, and you may publicly display copies. \subsubsection{Copying in Quantity} If you publish printed copies (or copies in media that commonly have printed covers) of the Document, numbering more than 100, and the Document's license notice requires Cover Texts, you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers must also clearly and legibly identify you as the publisher of these copies. The front cover must present the full title with all words of the title equally prominent and visible. You may add other material on the covers in addition. Copying with changes limited to the covers, as long as they preserve the title of the Document and satisfy these conditions, can be treated as verbatim copying in other respects. If the required texts for either cover are too voluminous to fit legibly, you should put the first ones listed (as many as fit reasonably) on the actual cover, and continue the rest onto adjacent pages. If you publish or distribute Opaque copies of the Document numbering more than 100, you must either include a machine-readable Transparent copy along with each Opaque copy, or state in or with each Opaque copy a computer-network location from which the general network-using public has access to download using public-standard network protocols a complete Transparent copy of the Document, free of added material. If you use the latter option, you must take reasonably prudent steps, when you begin distribution of Opaque copies in quantity, to ensure that this Transparent copy will remain thus accessible at the stated location until at least one year after the last time you distribute an Opaque copy (directly or through your agents or retailers) of that edition to the public. It is requested, but not required, that you contact the authors of the Document well before redistributing any large number of copies, to give them a chance to provide you with an updated version of the Document. \subsubsection{Modifications} You may copy and distribute a Modified Version of the Document under the conditions of sections 2 and 3 above, provided that you release the Modified Version under precisely this License, with the Modified Version filling the role of the Document, thus licensing distribution and modification of the Modified Version to whoever possesses a copy of it. In addition, you must do these things in the Modified Version: \begin{itemize} \item[A.] Use in the Title Page (and on the covers, if any) a title distinct from that of the Document, and from those of previous versions (which should, if there were any, be listed in the History section of the Document). You may use the same title as a previous version if the original publisher of that version gives permission. \item[B.] List on the Title Page, as authors, one or more persons or entities responsible for authorship of the modifications in the Modified Version, together with at least five of the principal authors of the Document (all of its principal authors, if it has fewer than five), unless they release you from this requirement. \item[C.] State on the Title page the name of the publisher of the Modified Version, as the publisher. \item[D.] Preserve all the copyright notices of the Document. \item[E.] Add an appropriate copyright notice for your modifications adjacent to the other copyright notices. \item[F.] Include, immediately after the copyright notices, a license notice giving the public permission to use the Modified Version under the terms of this License, in the form shown in the Addendum below. \item[G.] Preserve in that license notice the full lists of Invariant Sections and required Cover Texts given in the Document's license notice. \item[H.] Include an unaltered copy of this License. \item[I.] Preserve the section Entitled ``History'', Preserve its Title, and add to it an item stating at least the title, year, new authors, and publisher of the Modified Version as given on the Title Page. If there is no section Entitled ``History'' in the Document, create one stating the title, year, authors, and publisher of the Document as given on its Title Page, then add an item describing the Modified Version as stated in the previous sentence. \item[J.] Preserve the network location, if any, given in the Document for public access to a Transparent copy of the Document, and likewise the network locations given in the Document for previous versions it was based on. These may be placed in the ``History'' section. You may omit a network location for a work that was published at least four years before the Document itself, or if the original publisher of the version it refers to gives permission. \item[K.] For any section Entitled ``Acknowledgements'' or ``Dedications'', Preserve the Title of the section, and preserve in the section all the substance and tone of each of the contributor acknowledgements and/or dedications given therein. \item[L.] Preserve all the Invariant Sections of the Document, unaltered in their text and in their titles. Section numbers or the equivalent are not considered part of the section titles. \item[M.] Delete any section Entitled ``Endorsements''. Such a section may not be included in the Modified Version. \item[N.] Do not retitle any existing section to be Entitled ``Endorsements'' or to conflict in title with any Invariant Section. \item[O.] Preserve any Warranty Disclaimers. \end{itemize} If the Modified Version includes new front-matter sections or appendices that qualify as Secondary Sections and contain no material copied from the Document, you may at your option designate some or all of these sections as invariant. To do this, add their titles to the list of Invariant Sections in the Modified Version's license notice. These titles must be distinct from any other section titles. You may add a section Entitled ``Endorsements'', provided it contains nothing but endorsements of your Modified Version by various parties--for example, statements of peer review or that the text has been approved by an organization as the authoritative definition of a standard. You may add a passage of up to five words as a Front-Cover Text, and a passage of up to 25 words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified Version. Only one passage of Front-Cover Text and one of Back-Cover Text may be added by (or through arrangements made by) any one entity. If the Document already includes a cover text for the same cover, previously added by you or by arrangement made by the same entity you are acting on behalf of, you may not add another; but you may replace the old one, on explicit permission from the previous publisher that added the old one. The author(s) and publisher(s) of the Document do not by this License give permission to use their names for publicity for or to assert or imply endorsement of any Modified Version. \subsubsection{Combining Documents} You may combine the Document with other documents released under this License, under the terms defined in section 4 above for modified versions, provided that you include in the combination all of the Invariant Sections of all of the original documents, unmodified, and list them all as Invariant Sections of your combined work in its license notice, and that you preserve all their Warranty Disclaimers. The combined work need only contain one copy of this License, and multiple identical Invariant Sections may be replaced with a single copy. If there are multiple Invariant Sections with the same name but different contents, make the title of each such section unique by adding at the end of it, in parentheses, the name of the original author or publisher of that section if known, or else a unique number. Make the same adjustment to the section titles in the list of Invariant Sections in the license notice of the combined work. In the combination, you must combine any sections Entitled ``History'' in the various original documents, forming one section Entitled ``History''; likewise combine any sections Entitled ``Acknowledgements'', and any sections Entitled ``Dedications''. You must delete all sections Entitled ``Endorsements''. \subsubsection{Collection of Documents} You may make a collection consisting of the Document and other documents released under this License, and replace the individual copies of this License in the various documents with a single copy that is included in the collection, provided that you follow the rules of this License for verbatim copying of each of the documents in all other respects. You may extract a single document from such a collection, and distribute it individually under this License, provided you insert a copy of this License into the extracted document, and follow this License in all other respects regarding verbatim copying of that document. \subsubsection{Aggregating with Independent Works} A compilation of the Document or its derivatives with other separate and independent documents or works, in or on a volume of a storage or distribution medium, is called an ``aggregate'' if the copyright resulting from the compilation is not used to limit the legal rights of the compilation's users beyond what the individual works permit. When the Document is included in an aggregate, this License does not apply to the other works in the aggregate which are not themselves derivative works of the Document. If the Cover Text requirement of section 3 is applicable to these copies of the Document, then if the Document is less than one half of the entire aggregate, the Document's Cover Texts may be placed on covers that bracket the Document within the aggregate, or the electronic equivalent of covers if the Document is in electronic form. Otherwise they must appear on printed covers that bracket the whole aggregate. \subsubsection{Translation} Translation is considered a kind of modification, so you may distribute translations of the Document under the terms of section 4. Replacing Invariant Sections with translations requires special permission from their copyright holders, but you may include translations of some or all Invariant Sections in addition to the original versions of these Invariant Sections. You may include a translation of this License, and all the license notices in the Document, and any Warranty Disclaimers, provided that you also include the original English version of this License and the original versions of those notices and disclaimers. In case of a disagreement between the translation and the original version of this License or a notice or disclaimer, the original version will prevail. If a section in the Document is Entitled ``Acknowledgements'', ``Dedications'', or ``History'', the requirement (section 4) to Preserve its Title (section 1) will typically require changing the actual title. \subsubsection{Termination} You may not copy, modify, sublicense, or distribute the Document except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, or distribute it is void, and will automatically terminate your rights under this License. However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copise or rights from you under this License. If your rights have been terminated and not permanently reinstated, receipt of a copy of some or all of the same material does not give you any rights to use it. \subsubsection{Future Revisions of this License} The Free Software Foundation may publish new, revised versions of the GNU Free Documentation License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. See http://www.gnu.org/copyleft/. Each version of the License is given a distinguishing version number. If the Document specifies that a particular numbered version of this License ``or any later version'' applies to it, you have the option of following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not as a draft) by the Free Software Foundation. If the Document specifies that a proxy can decide which future versions of this License can be used, that proxy’s public statement of acceptance of a version permanently authorizes you to choose that version for the Document. \subsubsection{Relicensing} ``Massive Multiauthor Collaboration Site'' (or ``MMC Site'') means any World Wide Web server that publishes copyrightable works and also provides prominent facilities for anybody to edit those works. A public wiki that anybody can edit is an example of such a server. A ``Massive Multiauthor Collaboration'' (or ``MMC'') contained in the site means any set of copyrightable works thus published on the MMC site. ``CC-BY-SA'' means the Creative Commons Attribution-Share Alike 3.0 license published by Creative Commons Corporation, a not-for-profit corporation with a principal place of business in San Francisco, California, as well as future copyleft versions of that license published by that same organization. ``Incorporate'' means to publish or republish a Document, in whole or in part, as part of another Document. An MMC is ``eligible for relicensing'' if it is licensed under this License, and if all works that were first published under this License somewhere other than this MMC, and subsequently incorporated in whole or in part into the MMC, (1) had no cover texts or invariant sections, and (2) were thus incorporated prior to November 1, 2008. The operator of an MMC Site may republish an MMC contained in the site under CC-BY-SA on the same site at any time before August 1, 2009, provided the MMC is eligible for relicensing. \subsubsection{Addendum: How to use this License for your documents} To use this License in a document you have written, include a copy of the License in the document and put the following copyright and license notices just after the title page: \bigskip \begin{quote} Copyright \copyright \textsc{year your name}. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled ``GNU Free Documentation License''. \end{quote} \bigskip If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, replace the ``with \dots\ Texts.'' line with this: \bigskip \begin{quote} with the Invariant Sections being \textsc{list their titles}, with the Front-Cover Texts being \textsc{list}, and with the Back-Cover Texts being \textsc{list}. \end{quote} \bigskip If you have Invariant Sections without Cover Texts, or some other combination of the three, merge those two alternatives to suit the situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, to permit their use in free software. \providecommand{\LPPLsection}{\subsection} \providecommand{\LPPLsubsection}{\subsubsection} \providecommand{\LPPLsubsubsection}{\subsubsection} \providecommand{\LPPLparagraph}{\paragraph} \input{lppl} beamer/doc/beamerugfontthemedefault.pdf0000644000175000017500000004173512050430544020176 0ustar mohuramohura%PDF-1.5 % 12 0 obj << /Length 975 /Filter /FlateDecode >> stream xW[F~ϯDs\AtSz7kgq{Ι¢Z|ߙ[$<]GOW73"VDAdh%)/S d ~J[cs.-AIDHEsDRe Y2 }*-{ 50N5RJYF+Kw0!7(Ht: % kf;n=gQin-{OrʠJvW4uF: uZH@r-"S2 C|YoT"}LG@i gX #s&QEةls&V*q'0{ah˳+ƪػy&LV/etXw+fx:/ߺ|Zv endstream endobj 18 0 obj << /Length 1360 /Filter /FlateDecode >> stream x]O9=Nqzҵ:TUCHDؐo^f!pHxgaӀuW5~ippFIM C\NwIJ&?-4Hi>u@ !IdܑA P&?:* 2cz80JI qgdpT_#aقlIQxx D$I5 N w[ M:zm)-sg+@`}ԁ@ V%Qs-Cr5,8*b/  z@I%~~ +fkm@!Q"1_b4 %fiKrOm.-XWt8=!pý}\AILN̋J"nғytkxJXx8ĔyyM?kW~ww,jH"XR*#[3Eg dN·몮FcaM\yZ_UZ\vyQգ=(1Z|}w[חs6GȳB 2-EºogFY/6z]F;C-N ӎZk'N m}s,ux܂;8Bsu\b! +X2ڦ_7(<9: EF770j0f+[(*^Р˱! D(E_1Mio5^Ǐo {}cE~ pyJ(u\TGamooכ*׳&%SE5s?0Wrݧyt~C`]&Vidx# 0SAoP[>T ytHhxML}I jD]<aE7cSԍ?0 ՛ޛ2{x(܌ \;eB05zHlr]h>(e:F%? n?m<3_,.F o߄fZIzzD8Xfߝ*b<\L/`J߫ö^c̄oj|F endstream endobj 23 0 obj << /Length1 1166 /Length2 7033 /Length3 0 /Length 7803 /Filter /FlateDecode >> stream xuWe\۾顔fC`.ahnC@SZAB$.}s<zևᙆ65,"ع8@@5T] l|, :#?B@@`PY cTA@.0HPa +j!N0o;B, Eh9;;BZ`W * y?e`^pRK/( vB w#w `(дX  9k@f;Yqp@NF20 \5VCyqS7( jHnΜ/7 ~c` q.@:^?H߰ ptAl/;|/;bZm0Ͻ8@ . ÁZà^Y8:l_QҰ\@vnAЃk^\RWc0)AW "p8zO G_2A\!`k Os@v.>p:v+(,PZ!P[6pi+78A?ۿ6`O`~f%b_vY-E Gn4׎țzHJ(xs dj ىW SȽpn %xI~Q'&sޫ &C2=H5H w1X mt~V^{!|DLlQ'h5{}f7U TVsfՠ3*ȅ.ivhjGl7L=%bRQ+Fk6Li16P~#5u|E˛H핈e[`@NL {&5$RޝJ~2d^ ﬑}5? y̕μ-߈ 2$ޮv]8;?_JڞcvcPٕ;J0 O/%<5Ë'Ë24 |\.EnY_{|n4/-iM 1U̒?;/uM;vnc^C!Y̢U@V|F:!q$q}&y >MJ=zkӳ2rjCc\? P=dP=su=(4A/ӯ)~KM~+-Bq%0EQ.uЦuGm֒uì0V.wq;k20RD$]Z0YgK07,ϝ.ZHt88S_d-8NL^ YD8_qY*g|<%C!FFmcT؍yס*#Gז4XN#qf;j58M Zюn*H@2t2( hTpp?f2<Иu凰{ OЬտR-hKV)lFYݓMt:/u>sߡ/A_\(a<$GO=|,•6n@;! 9Iq!yPqEՖFR1|\hs2/]Y(S4,|@S{ae6@Yb: -Ey~&*ٞjdx6`^]ϤS]P;yg}3@rgj՝RٿU5~m jܚlȿ ]2y~%%|ܿ^-ue2~+S콲nsV@o6]d#Ra(QLJPk,vx2.p7!ȠiEx:t1Wkr^)~'n jO*g8(2ʳPCJ1;pzDjD J88E:\&mI]l v&3NM\w?EruNTJؒwRN"[e@M沣 wWlWAo",.=f͝E 5 }$v%h;5Wzϓe'x.øsjGHR7^Q1.!*7q=4h0qHQ;J1kn1྘SeUzHFOcîQ(mMHP'KP(4#Q&>-tTsB[5yvV5Z892ClxȩDܽKT`%ryy-VڇYyժڝ \Ρm@rS^c;RؚB"\#&#mPv-υ}h{t݉?e^ulǑ7&5]aãc.Oɲ ܖ%-ٕ#ZS۴D,Ё_06 iVwg}>!KDbHH47ȷlQN,'$Û_qj .s_%$|q*nC5$gzjR_WhZLdœV! ?p4?Fm]žz{Phhv=59qWͱd0kc֨cx:?J@Xcun<ͣBYzMFv<aG6NI#?V/^&Zf ܃#Sⲡ2ʃC%D'|(ڨћt܈74cئ*ؾ>1$4e9inڴ zZhYX%keg&ExW~I4kg-9$4ܴZ5OU#G:GJzQ?>ᑐۤOȝ!OҶ+6"z#>|\3[3nUH(lDc,_ ^ݘf& W~gy1Ra{{ &'#1Ӵ>bMfKt)::WቄdOJ YTê^C})D| O򛯑='ܘ2gQ1|;̀tz$nѷD`4w`" , e*ӟC<_^|ƣAg|lH+>5Hrk}[IMWM.X'!$%#: Joʢ&ސ)=@kD$# HtҤ@[ҀDңD%=!#jNbp|(ZX"// "8]9i{V.(a]2]g"UK#gdY.t|qq{,flس l9%_x'%M#`8=wmq;g#]^m{KQޣwJb90,6qpx"3)ğ~ &t ߮&beAs@TvU/ .mlryQmw 07dWEl8C )hfJ3o*_U)9w3o7ruYߟV2 /6ezY{tZT9j~q'9T9#87qEU0s/c}ae I-6&vً3ɑI#iv4qmr9n+XO8&#FGd?79PE|":)@<MA2^܌/_SgTwf5.%:زi->rh7X?Wy /Rԣv+b!$oOrDݍjyB Ym(і_yŤy%XDuCx9ɅYYtX us@f: ̏hD {!lk2]MYu\۬Zwyf"P^ 4QzjT ƞXZ'ziwAx6j#zX,/b8P(wD]nbe/6{ڷ% x$Kd;ԇ2Z>ɾEU?d}W2yP&M$f2e_:.?HoJdD΁TӧG9lrosK4P%| [Gq0~)Irq0&~טA5iz}ZII~Ԥ >WmOہoWl!O}Uj5;3rbF'|a9ɥтV7FB#7P2o{Ri%_?EWȹC%{S2ʬT;G8 AR^4kzK)&4MdPu ԥo_GE-]VNwqf䟯'f-}īw[O+NUyIccn2~f4YbkV2* 5l;wi>1N\x'bѿoos- !R%*j~h1{櫏1nʝ9}e!ъj5e0@ mEA#C¹~g6z1̑XpّiΟqo`pyrG:UAe`iMZ䪄B/}<]-S'LcKle ;g!2 gC8aF"-5Iyac۩OJ,RnE5DJ(zR:+yVa@kA Yz7 EC"`R#8; ,z|J4UۀX>_Yd!Bv Q*J,_ˇ'ux2OPNlo $_VիJ+9 q U9**ӈr10.=oו:tU,۪ğwݪYo}qC_ r،xm%0k)2E>u߹x1VZK @T5F~Q~˓ b/˝o,\J[WFra?*) *A|nQ2Bkf0^x/ګ/rĥݎ 1vR~(*^6a{tCr7cu G ȵmWumE[4ma7B#u=~`vd1H> stream xmSy`9@phicDC"Qc8AI>3D Cyx "֖XJJJ6Gy` B?F0T8򇯹;\"h"I ¤}&wiQR:C?m@ l&䷐; +mALl"/#+$ @ SG+AO CC|w8_o (D!7$̀ CBedd'g"t?p"c`ni&Ēh% IYŋ(ԧܿY/-~Z* QI˿pxҬBD~(M3FN22 ";dΡKD*#KI<C4iq~(B( ;tk`<D*ˈ95;ɍ9y述+(7I0% HbE (Fq8N?_E*hvPjZ \%DEP2ԩU\͇=/w0 ɥ୤!E|J?s[AFK#2Q3-=VP΅}{ZV1sa<_7̨xKki6E#?飯[hxEv>86t{t&|TPe_{2){aKmz$cR5=1e|M#}Dq.K M2Tję6j&!_Oâpײg'/ bv42gr%%m@UI=ݬ!ȑ|uŸ.%D>23½GPnڗ.zDw<:?ȻW`gi6 v3)~lUDKCo%M3zj;lm_ iqN 8]{JcV!R==CYnki({H'z[F@%7iFiwU ۉ.\7oLlA+K95Rӟ Ll'-U*XQwY͢ѹ֜W XuEd[}bx{,R1&{mTev| (ٝau|E7[Л!]BNNɪHx'|?L%&OltN~twloYؓ`}'[ dҌ}Er|kIb%p4jDfOH@p`iRmk\\r`_S+*H`:Vk426/a⋃o7xiž'i YcJh(eCU$x.g(1DM/x&.rNI;OD A-aOk@8R#Rʷ [r2ǜ}T3L.gdeו[+퍨{[tuj=CwUgPM7dlpg}ZR`Cf.exYx׳^3 9o`):M0(ݪ$u,)r=˟2e^d<ۦgSN!$| o lj\Zm+|t m52ߝ$SD8zGLFrmaTVㅏr:n>ԼZKC䴍Dz;p7c[޼5x%FZJ #1zH%|1#)P&Nc`l|7ugyegWY3<Iakqʈ Nɥ֦kq]@R8٘";?҆wq H.c!ܘI2ׯD'ILLZ~C>*y"],oӐ*lJLgBx-sϴcbwʌױR9KIjgWbw;RQ/_W[uA< 9n0v}©5Ay" NdP$=Vxīg8@,7#i"*VGv:+%d|q ٩@!-"g>ڡ٥i$qk足D:lPmx|Bjalњ1Pp7gTӺ/5VO{HCH޻tJ3GF.R TC[-/viC״8_m)`}k b7o לd 'cּ;)݇mdYG7?밾޽ѯbCB #]@a!ПxŷB\0Ѯ_Wǩ?xʱAmkB"=L{ 1r~' Z4`˓m: { ||k<~n^7웯ϟWߏyؚ̯e^)?􍐈6/GbfnV+kmU Wk|֐bUm{qі5kZwׅ !EcpOc^ת%OΛ̺Tf@.@4Ӂ S&?#Y{LmkI^7??Eso>>X.m/ o(%pWh G(~bYpJL"+]"˜u(3j ziU䦜BȇTֶ͘E촛?qPbas34z|u?IΏӼ;,O{Z zAI$e.P~*#bcZ?֪*1c8Jy_uڴ5r>m%M2we+YGuYQ!0^f[٬tUrCYuy#D^T#rVdю:o3vf.Cө͓sF#?0;ғè!qӚ6nfgȹӦx>,dt5eEk+ wO8+^Wism4zj/? $PӼw@M݋dg_nw_%@TٗC%*YbO)9Ml=I4CӍb<<4?B(5&eɦs]b'Tw i|J=p&ՖԻLEE/JKӇ3rJkf\=dq2|TVDp|$`hxwd@~3X7gI Bqö97_472}#r.S8"A&Ģlf67ΎQN'P ) ҮcY=wI}&HQ̢AGwS nw`\&e>u(-⽐o2Tz!cve]*'pF7LP6ڊm*,}JUѡC$Mp嵛נWh-(-w%=V67J:AQaDcR 3hD ӂ^K-ZSj溌sPf ^9~[@80WEE,2vgSW!&䧩? װ$/m:Lv;?r\X4uvՙ{R\JXдaT7c`a]Bo] @y/*/M$ͽ 8ۻ2鉌es1ݯʏ ^yH u eW endstream endobj 28 0 obj << /Producer (pdfTeX-1.40.13) /Creator (TeX) /CreationDate (D:20121113203914Z) /ModDate (D:20121113203914Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 14 0 obj << /Type /ObjStm /N 16 /First 114 /Length 1006 /Filter /FlateDecode >> stream xVK6W1AH  颛c;ݶLBmIͦ3N襇¦D7$E!AI-)(^HzƠ /t rHc-Bv4)4iʋ]\wpҀ$^E!eH7Nuø^U S@ȱ ;!Ch!5y$(غUjʉ&Diq88 |t[D?0"0za^%|MVٲ9LqF? #^?¥ԃ 4-$Xɀu".ɍ]}|t@)1}1&XnL7j΂͵R"5X%=y2QGE8"G0vlv6ط-vLI#{A Nhڵr8lx&-k i2uCoqRF:ے:9~zuľ9x٤|҄BaT?<[uCs=)wm"[kpz3Dt6$URY/o>8 1Ŵl\FcX$ qI(f5nBcrzXc~خjR >WS[ 'RpYKNFOwFgtL2U{,C-n!ImU\jl*)Km9xib>^BzP]t!?6 (͌kxCbRӗe}5C FOͺi@5O>Ew1_PFs)_v} Cx44|J|AKA ]#uBuḆK'sn}|nKBތ\/h endstream endobj 29 0 obj << /Type /XRef /Index [0 30] /Size 30 /W [1 2 1] /Root 27 0 R /Info 28 0 R /ID [ ] /Length 85 /Filter /FlateDecode >> stream x 0CQ;deI HMT@Ksxk $KD:ڭUq݋L$|u?E V endstream endobj startxref 17038 %%EOF beamer/base/0000755000175000017500000000000012050430504012564 5ustar mohuramohurabeamer/base/beamerbasercs.sty0000644000175000017500000000217612050430504016131 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % Copyright 2011 by Vedran Mileti\'c, Joseph Wright % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. % Define beamer version \def\beamer@version{3.24} % Get date and version from RCS Ids \def\beamer@parseid $#1: #2.#3,v #4 #5/#6/#7 #8${% \beamer@parsercsfile$#2/$ \def\beamer@rcsrevision{#4} \def\beamer@rcsdate{#5/#6/#7} } \def\beamer@parsercsfile$#1/#2${ \def\beamer@temp{#2} \ifx\beamer@temp\@empty \def\beamer@rcsfile{#1} \else \beamer@parsercsfile$#2$ \fi} \def\ProvidesPackageRCS $#1${ \beamer@parseid $#1$ \ProvidesPackage{\beamer@rcsfile}[\beamer@rcsdate\space (rcs-revision \beamer@rcsrevision)] } \def\ProvidesClassRCS $#1$ [#2]{% \beamer@parseid $#1$ \ProvidesClass{\beamer@rcsfile}[\beamer@rcsdate\space#2\space (rcs-revision \beamer@rcsrevision)] } \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasercs.sty,v cb16a617839f 2012/11/13 20:38:40 joseph $ beamer/base/beamerbasearticle.sty0000644000175000017500000000602712050430504016764 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasearticle.sty,v cc6557182d97 2012/04/15 14:37:19 rivanvx $ \newif\ifbeamer@articleutf \beamer@articleutffalse \newif\ifbeamer@articlehyperref \beamer@articlehyperreffalse \newif\ifbeamer@articlexcolor \beamer@articlexcolortrue \newif\ifbeamer@articleactive \beamer@articleactivefalse \newif\ifbeamer@amssymb \beamer@amssymbtrue \DeclareOption{utf8}{\beamer@articleutftrue} \DeclareOption{hyperref}{\beamer@articlehyperreftrue} \DeclareOption{noxcolor}{\beamer@articlexcolorfalse} \DeclareOption{nodefaultblocks}{\beamer@blocksfalse}% obsolete. use notheorems \DeclareOption{notheorems}{\beamer@blocksfalse} \DeclareOption{noamsthm}{\beamer@blocksfalse\beamer@amsfalse} \DeclareOption{noamssymb}{\beamer@amssymbfalse} \DeclareOption{envcountsect}{\beamer@countsecttrue} \DeclareOption{activeospeccharacters}{\beamer@articleactivetrue} \ProcessOptions \RequirePackage{beamerbaseoptions} % For option management \ifbeamer@articleutf \RequirePackage[utf8]{inputenc} \fi \ifbeamer@articlehyperref \RequirePackage[pdfborder={0 0 0},bookmarksnumbered]{hyperref} % For hyperlinks \hypersetup{pdfcreator={LaTeX with Beamer class version \beamer@version\space (article mode)}} \ifbeamer@articleutf \hypersetup{unicode=true} \fi \fi \ifbeamer@articlexcolor \RequirePackage[override]{xcolor} % For color support \fi \RequirePackage{beamerbaserequires} % Beamer packages required both by presentation and article modes % Default article templates: \defbeamertemplate
*{frame begin}{default}{} \defbeamertemplate
*{frame end}{default}{} \defbeamertemplate
*{frametitle}{default}{\paragraph*{\insertframetitle}\ \par\noindent\emph{\insertframesubtitle}\par} \defbeamertemplate
*{alerted text begin}{default}{\ifmmode\else\begin{itshape}\fi} \defbeamertemplate
*{alerted text end}{default}{\ifmmode\else\end{itshape}\fi} \defbeamertemplate
*{structure begin}{default}{\ifmmode\else\begin{bfseries}\fi} \defbeamertemplate
*{structure end}{default}{\ifmmode\else\end{bfseries}\fi} \defbeamertemplate
*{block begin}{default} {\par\vskip\medskipamount{\noindent\textbf{\insertblocktitle}}\par\noindent\ignorespaces} \defbeamertemplate
*{block end}{default}{\vskip\medskipamount} \defbeamertemplate
*{block alerted begin}{default} {\par\vskip\medskipamount{\noindent\textbf{\emph{\insertblocktitle}}}\par\noindent\ignorespaces} \defbeamertemplate
*{block alerted end}{default}{\vskip\medskipamount} \defbeamertemplate
*{block example begin}{default} {\par\vskip\medskipamount{\noindent\emph{\insertblocktitle}}\par\noindent\ignorespaces} \defbeamertemplate
*{block example end}{default}{\vskip\medskipamount} \mode beamer/base/beamerbasenavigation.sty0000644000175000017500000006630412050430504017504 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasenavigation.sty,v 42a0f21a412d 2012/04/03 05:51:09 joseph $ \mode % % Navigation buttons % % The following commands are called by the .nav file. \def\beamer@framepages#1#2{% \ifnum\c@page<#1% \else% \ifnum\c@page>#2% \else% \gdef\beamer@startpageofframe{#1}% \gdef\beamer@endpageofframe{#2}% \fi% \fi% } \def\beamer@subsectionpages#1#2{% \ifnum\c@page<#1% \else% \ifnum\c@page>#2% \else% \gdef\beamer@startpageofsubsection{#1}% \gdef\beamer@endpageofsubsection{#2}% \fi% \fi% } \def\beamer@sectionpages#1#2{% \ifnum\c@page<#1% \else% \ifnum\c@page>#2% \else% \gdef\beamer@startpageofsection{#1}% \gdef\beamer@endpageofsection{#2}% \fi% \fi% } \def\beamer@partpages#1#2{% \ifnum\c@page<#1% \else% \ifnum\c@page>#2% \else% \gdef\beamer@startpageofpart{#1}% \gdef\beamer@endpageofpart{#2}% \fi% \fi% } \def\beamer@nextpage#1{% \beamer@tempcount=#1% \advance\beamer@tempcount by1\relax% \ifnum\beamer@tempcount>\beamer@endpageofdocument% \beamer@tempcount=\beamer@endpageofdocument% \fi} \def\beamer@prevpage#1{% \beamer@tempcount=#1\relax% \ifnum\beamer@tempcount>1% \advance\beamer@tempcount by-1% \fi% } \def\hyperlinkslideprev{% \beamer@prevpage\c@page% \hyperlink{Navigation\the\beamer@tempcount}} \def\hyperlinkslidenext{% \beamer@nextpage\c@page% \hyperlink{Navigation\the\beamer@tempcount}} \def\hyperlinkframestart{\hyperlink{Navigation\beamer@startpageofframe}} \def\hyperlinkframeend{\hyperlink{Navigation\beamer@endpageofframe}} \def\hyperlinkframestartnext{% \beamer@nextpage\beamer@endpageofframe% \hyperlink{Navigation\the\beamer@tempcount}} \def\hyperlinkframeendprev{% \beamer@prevpage\beamer@startpageofframe% \hyperlink{Navigation\the\beamer@tempcount}} \def\hyperlinksubsectionstart{\hyperlink{Navigation\beamer@startpageofsubsection}} \def\hyperlinksubsectionend{\hyperlink{Navigation\beamer@endpageofsubsection}} \def\hyperlinksubsectionstartnext{% \beamer@nextpage\beamer@endpageofsubsection% \hyperlink{Navigation\the\beamer@tempcount}} \def\hyperlinksubsectionendprev{% \beamer@prevpage\beamer@startpageofsubsection% \hyperlink{Navigation\the\beamer@tempcount}} \def\hyperlinksectionstart{\hyperlink{Navigation\beamer@startpageofsection}} \def\hyperlinksectionend{\hyperlink{Navigation\beamer@endpageofsection}} \def\hyperlinksectionstartnext{% \beamer@nextpage\beamer@endpageofsection% \hyperlink{Navigation\the\beamer@tempcount}} \def\hyperlinksectionendprev{% \beamer@prevpage\beamer@startpageofsection% \hyperlink{Navigation\the\beamer@tempcount}} \def\hyperlinkpartstart{\hyperlink{Navigation\beamer@startpageofpart}} \def\hyperlinkpartend{\hyperlink{Navigation\beamer@endpageofpart}} \def\hyperlinkpartstartnext{% \beamer@nextpage\beamer@endpageofpart% \hyperlink{Navigation\the\beamer@tempcount}} \def\hyperlinkpartendprev{% \beamer@prevpage\beamer@startpageofpart% \hyperlink{Navigation\the\beamer@tempcount}} \def\hyperlinkpresentationstart{\hyperlink{Navigation1}} \def\hyperlinkpresentationend{% \ifx\beamer@startpageofappendix\@empty% \beamer@tempcount=\beamer@endpageofdocument% \else% \beamer@prevpage\beamer@startpageofappendix% \fi% \hyperlink{Navigation\the\beamer@tempcount}} \def\hyperlinkappendixstart{% \ifx\beamer@startpageofappendix\@empty% \beamer@tempcount=\beamer@endpageofdocument% \else% \beamer@tempcount=\beamer@startpageofappendix% \fi% \hyperlink{Navigation\the\beamer@tempcount}} \def\hyperlinkappendixend{\hyperlink{Navigation\beamer@endpageofdocument}} \def\hyperlinkdocumentstart{\hyperlink{Navigation1}} \def\hyperlinkdocumentend{\hyperlink{Navigation\beamer@endpageofdocument}} \mode
{ \newcommand<>\hyperlinkslideprev[1]{} \newcommand<>\hyperlinkslidenext[1]{} \newcommand<>\hyperlinkframestart[1]{} \newcommand<>\hyperlinkframeend[1]{} \newcommand<>\hyperlinkframestartnext[1]{} \newcommand<>\hyperlinkframeendprev[1]{} \newcommand<>\hyperlinksubsectionstart[1]{} \newcommand<>\hyperlinksubsectionend[1]{} \newcommand<>\hyperlinksubsectionstartnext[1]{} \newcommand<>\hyperlinksubsectionendprev[1]{} \newcommand<>\hyperlinksectionstart[1]{} \newcommand<>\hyperlinksectionend[1]{} \newcommand<>\hyperlinksectionstartnext[1]{} \newcommand<>\hyperlinksectionendprev[1]{} \newcommand<>\hyperlinkpartstart[1]{} \newcommand<>\hyperlinkpartend[1]{} \newcommand<>\hyperlinkpartstartnext[1]{} \newcommand<>\hyperlinkpartendprev[1]{} \newcommand<>\hyperlinkpresentationstart[1]{} \newcommand<>\hyperlinkpresentationend[1]{} \newcommand<>\hyperlinkappendixstart[1]{} \newcommand<>\hyperlinkappendixend[1]{} \newcommand<>\hyperlinkdocumentstart[1]{} \newcommand<>\hyperlinkdocumentend[1]{} } \newcommand\insertframestartpage{\beamer@startpageofframe} \newcommand\insertframeendpage{\beamer@endpageofframe} \newcommand\insertsubsectionstartpage{\beamer@startpageofsubsection} \newcommand\insertsubsectionendpage{\beamer@endpageofsubsection} \newcommand\insertsectionstartpage{\beamer@startpageofsection} \newcommand\insertsectionendpage{\beamer@endpageofsection} \newcommand\insertpartstartpage{\beamer@startpageofpart} \newcommand\insertpartendpage{\beamer@endpageofpart} \newcommand\insertpresentationstartpage{1} \newcommand\insertpresentationendpage{{% \ifx\beamer@startpageofappendix\@empty% \beamer@tempcount=\beamer@endpageofdocument\relax% \else% \beamer@prevpage\beamer@startpageofappendix\relax% \fi% \the\beamer@tempcount}} \newcommand\insertappendixstartpage{{% \ifx\beamer@startpageofappendix\@empty% \beamer@tempcount=\beamer@endpageofdocument\relax% \else% \beamer@tempcount=\beamer@startpageofappendix\relax% \fi% \the\beamer@tempcount}} \newcommand\insertappendixendpage{\beamer@endpageofdocument} \newcommand\insertdocumentstartpage{1} \newcommand\insertdocumentendpage{\beamer@endpageofdocument} % % Navigation Button Art % \def\beamer@linkspace#1{\vbox to7.5pt{}\kern#1} % Due to what could be regarded as a bug in hyperref or DVIPDFm and % derivatives, no links are made to empty boxes with XeTeX. This is % fixed by drawing some 'real' content, which makes the PDF bigger! \begingroup\expandafter\expandafter\expandafter\endgroup \expandafter\ifx\csname XeTeXrevision\endcsname\relax \expandafter\@gobble \else \expandafter\@firstofone \fi {% \def\beamer@linkspace#1{% \begin{pgfpicture}{0pt}{-1.5pt}{#1}{5.5pt} \pgfsetfillopacity{0} \pgftext[x=0pt,y=-1.5pt]{.} \pgftext[x=#1,y=5.5pt]{.} \end{pgfpicture}} } \pgfdefobject{beamerslidenavlight}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{20pt}{5pt}} {\pgfpathqmoveto{4bp}{0.5bp} \pgfpathqlineto{2bp}{2bp} \pgfpathqlineto{4bp}{3.5bp} \pgfusepathqfill \pgfpathqmoveto{16bp}{0.5bp} \pgfpathqlineto{18bp}{2bp} \pgfpathqlineto{16bp}{3.5bp} \pgfusepathqfill} \pgfdefobject{beamerslidenavstrong}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{20pt}{5pt}} {% \pgfpathrectangle{\pgfpoint{8.3pt}{0.8pt}}{\pgfpoint{3.4pt}{2.4pt}}% \pgfusepathqstroke% } \def\insertslidenavigationsymbol{% \begin{pgfpicture}{0pt}{-1.5pt}{20pt}{5.5pt} \pgfuseobject{beamerslidenavstrong}% \usebeamercolor[fg]{navigation symbols dimmed} \pgfuseobject{beamerslidenavlight}% \end{pgfpicture}\kern-20pt% \hyperlinkslideprev{\beamer@linkspace{6pt}}% \Acrobatmenu{GoToPage}{\beamer@linkspace{8pt}}% \hyperlinkslidenext{\beamer@linkspace{6pt}}} \pgfdefobject{beamerframenavlight}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{20pt}{5pt}} {\pgfpathqmoveto{4bp}{0.5bp} \pgfpathqlineto{2bp}{2bp} \pgfpathqlineto{4bp}{3.5bp} \pgfpathqmoveto{16bp}{0.5bp} \pgfpathqlineto{18bp}{2bp} \pgfpathqlineto{16bp}{3.5bp} \pgfusepathqfill} \pgfdefobject{beamerframenavstrong}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{20pt}{5pt}} {% \pgfpathrectangle{\pgfpoint{7pt}{0pt}}{\pgfpoint{3.4pt}{2.4pt}} \pgfpathqmoveto{7.8bp}{2.4bp} \pgfpathqlineto{7.8bp}{3.2bp} \pgfpathqlineto{11.2bp}{3.2bp} \pgfpathqlineto{11.2bp}{.8bp} \pgfpathqlineto{10.4bp}{.8bp} \pgfpathqmoveto{8.6bp}{3.2bp} \pgfpathqlineto{8.6bp}{4bp} \pgfpathqlineto{12bp}{4bp} \pgfpathqlineto{12bp}{1.6bp} \pgfpathqlineto{11.2bp}{1.6bp} \pgfusepathqstroke} \def\insertframenavigationsymbol{% \begin{pgfpicture}{0pt}{-1.5pt}{20pt}{5.5pt} \pgfuseobject{beamerframenavstrong}% \usebeamercolor[fg]{navigation symbols dimmed} \pgfuseobject{beamerframenavlight}% \end{pgfpicture}\kern-20pt% \hyperlinkframeendprev{\beamer@linkspace{5pt}}% \hyperlinkframestart{\beamer@linkspace{5pt}}% \hyperlinkframeend{\beamer@linkspace{5pt}}% \hyperlinkframestartnext{\beamer@linkspace{5pt}}} \pgfdefobject{beamersubsectionnavlight}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{20pt}{5pt}} {% \pgfpathqmoveto{4bp}{0.5bp} \pgfpathqlineto{2bp}{2bp} \pgfpathqlineto{4bp}{3.5bp} \pgfpathqmoveto{16bp}{0.5bp} \pgfpathqlineto{18bp}{2bp} \pgfpathqlineto{16bp}{3.5bp} \pgfusepathqfill \pgfsetlinewidth{0.6pt} \pgfpathqmoveto{8bp}{4bp} \pgfpathqlineto{11bp}{4bp} \pgfpathqmoveto{9bp}{2bp} \pgfpathqlineto{12bp}{2bp} \pgfpathqmoveto{8bp}{1bp} \pgfpathqlineto{11bp}{1bp} \pgfpathqmoveto{9bp}{0bp} \pgfpathqlineto{12bp}{0bp} \pgfusepathqstroke} \pgfdefobject{beamersubsectionnavstrong}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{20pt}{5pt}} {% \pgfsetlinewidth{0.6pt} \pgfpathqmoveto{9bp}{3bp} \pgfpathqlineto{12bp}{3bp} \pgfusepathqstroke} \def\insertsubsectionnavigationsymbol{% \begin{pgfpicture}{0pt}{-1.5pt}{20pt}{5.5pt} \pgfuseobject{beamersubsectionnavstrong}% \usebeamercolor[fg]{navigation symbols dimmed} \pgfuseobject{beamersubsectionnavlight}% \end{pgfpicture}\kern-20pt% \hyperlinksubsectionendprev{\beamer@linkspace{5pt}}% \hyperlinksubsectionstart{\beamer@linkspace{5pt}}% \hyperlinksubsectionend{\beamer@linkspace{5pt}}% \hyperlinksubsectionstartnext{\beamer@linkspace{5pt}}} \pgfdefobject{beamersectionnavlight}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{20pt}{5pt}} {% \pgfpathqmoveto{4bp}{0.5bp} \pgfpathqlineto{2bp}{2bp} \pgfpathqlineto{4bp}{3.5bp} \pgfpathqmoveto{16bp}{0.5bp} \pgfpathqlineto{18bp}{2bp} \pgfpathqlineto{16bp}{3.5bp} \pgfusepathqfill \pgfsetlinewidth{0.6pt} \pgfpathqmoveto{8bp}{1bp} \pgfpathqlineto{11bp}{1bp} \pgfpathqmoveto{9bp}{0bp} \pgfpathqlineto{12bp}{0bp} \pgfusepathqstroke} \pgfdefobject{beamersectionnavstrong}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{20pt}{5pt}} {% \pgfsetlinewidth{0.6pt} \pgfpathqmoveto{8bp}{4bp} \pgfpathqlineto{11bp}{4bp} \pgfpathqmoveto{9bp}{3bp} \pgfpathqlineto{12bp}{3bp} \pgfpathqmoveto{9bp}{2bp} \pgfpathqlineto{12bp}{2bp} \pgfusepathqstroke } \def\insertsectionnavigationsymbol{% \begin{pgfpicture}{0pt}{-1.5pt}{20pt}{5.5pt} \pgfuseobject{beamersectionnavstrong}% \usebeamercolor[fg]{navigation symbols dimmed} \pgfuseobject{beamersectionnavlight}% \end{pgfpicture}\kern-20pt% \hyperlinksectionendprev{\beamer@linkspace{5pt}}% \hyperlinksectionstart{\beamer@linkspace{5pt}}% \hyperlinksectionend{\beamer@linkspace{5pt}}% \hyperlinksectionstartnext{\beamer@linkspace{5pt}}} \pgfdefobject{beamerdocnavlight}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{20pt}{5pt}} {% \pgfpathqmoveto{10bp}{-.5bp} \pgfpathqlineto{10bp}{4.5bp} \pgfusepathqstroke } \pgfdefobject{beamerdocnavstrong}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{20pt}{5pt}} { \pgfsetlinewidth{0.6pt} \pgfpathqmoveto{4bp}{4bp} \pgfpathqlineto{7bp}{4bp} \pgfpathqmoveto{5bp}{3bp} \pgfpathqlineto{8bp}{3bp} \pgfpathqmoveto{5bp}{2bp} \pgfpathqlineto{8bp}{2bp} \pgfpathqmoveto{3bp}{1bp} \pgfpathqlineto{7bp}{1bp} \pgfpathqmoveto{5bp}{0bp} \pgfpathqlineto{8bp}{0bp} \pgfpathqmoveto{12bp}{3bp} \pgfpathqlineto{15bp}{3bp} \pgfpathqmoveto{13bp}{2bp} \pgfpathqlineto{16bp}{2bp} \pgfpathqmoveto{13bp}{1bp} \pgfpathqlineto{16bp}{1bp} \pgfusepathqstroke } \pgfdefobject{beamerdocnavstrongsingle}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{20pt}{5pt}} {% \pgfsetlinewidth{0.6pt} \pgfpathqmoveto{8bp}{4bp} \pgfpathqlineto{11bp}{4bp} \pgfpathqmoveto{9bp}{3bp} \pgfpathqlineto{12bp}{3bp} \pgfpathqmoveto{9bp}{2bp} \pgfpathqlineto{12bp}{2bp} \pgfpathqmoveto{8bp}{1bp} \pgfpathqlineto{11bp}{1bp} \pgfpathqmoveto{9bp}{0bp} \pgfpathqlineto{12bp}{0bp} \pgfusepathqstroke% } \def\insertdocnavigationsymbol{% \ifx\beamer@startpageofappendix\@empty% \begin{pgfpicture}{0pt}{-1.5pt}{20pt}{5.5pt} \pgfuseobject{beamerdocnavstrongsingle}% \end{pgfpicture}\kern-20pt% \hyperlinkpresentationstart{\beamer@linkspace{9pt}}% \hyperlinkpresentationend{\beamer@linkspace{11pt}}% \else% \begin{pgfpicture}{0pt}{-1.5pt}{20pt}{5.5pt} \pgfuseobject{beamerdocnavstrong}% \usebeamercolor[fg]{navigation symbols dimmed} \pgfuseobject{beamerdocnavlight}% \end{pgfpicture}\kern-20pt% \hyperlinkpresentationstart{\beamer@linkspace{5pt}}% \hyperlinkpresentationend{\beamer@linkspace{5pt}}% \hyperlinkappendixstart{\beamer@linkspace{3.5pt}}% \hyperlinkappendixend{\beamer@linkspace{6.5pt}}% \fi} \pgfdefobject{beamerbackfindforwardnav}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{20pt}{5pt}} { % search symbol \pgfsetlinewidth{0.6pt} \pgfpathqmoveto{10.4bp}{1.6bp} \pgfpathqlineto{12bp}{0bp} \pgfusepathqstroke \pgfsetlinewidth{0.4pt} \pgfpathcircle{\pgfpoint{9.5pt}{2.5pt}}{1.2pt} \pgfusepathqstroke % left arrow \pgfsetroundcap \pgfpathqmoveto{4bp}{0bp} \pgfpathqcurveto{5.1pt}{0pt}{6bp}{0.9bp}{6bp}{2bp} \pgfpathqcurveto{6bp}{3.1bp}{5.1bp}{4bp}{4bp}{4bp} \pgfpathqcurveto{2.9bp}{4bp}{2bp}{3.1bp}{2bp}{2bp} \pgfpathqmoveto{3.2bp}{2.6bp} \pgfpathqlineto{2bp}{1.6bp} \pgfpathqlineto{0.8bp}{2.6bp} % right arrow \pgfpathqmoveto{16bp}{0bp} \pgfpathqcurveto{14.9bp}{0bp}{14bp}{0.9bp}{14bp}{2bp} \pgfpathqcurveto{14bp}{3.1bp}{14.9bp}{4bp}{16bp}{4bp} \pgfpathqcurveto{17.1bp}{4bp}{18bp}{3.1bp}{18bp}{2bp} \pgfpathqmoveto{19.2bp}{2.6bp} \pgfpathqlineto{18bp}{1.6bp} \pgfpathqlineto{16.8bp}{2.6bp} \pgfusepathqstroke } \def\insertbackfindforwardnavigationsymbol{% \begin{pgfpicture}{0pt}{-1.5pt}{20pt}{5.5pt} \pgfuseobject{beamerbackfindforwardnav}% \end{pgfpicture}\kern-20pt% \Acrobatmenu{GoBack}{\beamer@linkspace{7pt}}% \Acrobatmenu{Find}{\beamer@linkspace{6pt}}% \Acrobatmenu{GoForward}{\beamer@linkspace{7pt}}} % % User Buttons % \pgfdefobject{beamergotosymbol}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{5pt}{5pt}} { \pgfpathqmoveto{1.5bp}{0.5bp} \pgfpathqlineto{3.5bp}{2bp} \pgfpathqlineto{1.5bp}{3.5bp} \pgfusepathqfill } \def\insertgotosymbol{% \begin{pgfpicture}{1pt}{0pt}{6pt}{5pt} \pgfuseobject{beamergotosymbol}% \end{pgfpicture}} \pgfdefobject{beamerskipsymbol}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{7pt}{5pt}} { \pgfpathqmoveto{1.5bp}{0.5bp} \pgfpathqlineto{3.5bp}{2bp} \pgfpathqlineto{1.5bp}{3.5bp} \pgfpathqmoveto{3.5bp}{0.5bp} \pgfpathqlineto{5.5bp}{2bp} \pgfpathqlineto{3.5bp}{3.5bp} \pgfusepathqfill } \def\insertskipsymbol{% \begin{pgfpicture}{1pt}{0pt}{8pt}{5pt} \pgfuseobject{beamerskipsymbol}% \end{pgfpicture}} \pgfdefobject{beamerreturnsymbol}{\pgfpoint{0pt}{-1pt}}{\pgfpoint{5pt}{5pt}} { \pgfpathqmoveto{3.5bp}{0.5bp} \pgfpathqlineto{1.5bp}{2bp} \pgfpathqlineto{3.5bp}{3.5bp} \pgfusepathqfill } \def\insertreturnsymbol{% \begin{pgfpicture}{1pt}{0pt}{6pt}{5pt} \pgfuseobject{beamerreturnsymbol}% \end{pgfpicture}} \def\beamerbutton#1{\def\insertbuttontext{#1}\usebeamertemplate**{button}} \def\beamergotobutton#1{\beamerbutton{\insertgotosymbol#1}} \def\beamerskipbutton#1{\beamerbutton{\insertskipsymbol#1}} \def\beamerreturnbutton#1{\beamerbutton{\insertreturnsymbol#1}} \mode
{ \let\beamerbutton=\@firstofone \let\beamergotobutton=\beamerbutton \let\beamerskipbutton=\beamerbutton \let\beamerreturnbutton=\beamerbutton } % % Inserting navigation bars % \newdimen\beamer@section@min@dim \newcommand*{\beamer@section@set@min@width}{% \ifdim\wd\beamer@sectionbox>\beamer@section@min@dim \else \setbox\beamer@sectionbox=\hbox to \beamer@section@min@dim {\box\beamer@sectionbox\hfil}% \global\beamer@section@min@dim\z@ \fi } \def\insertnavigation#1{% \vbox{{% \usebeamerfont{section in head/foot}\usebeamercolor[fg]{section in head/foot}% \beamer@xpos=0\relax% \beamer@ypos=1\relax% \hbox to #1{\hskip.3cm\setbox\beamer@sectionbox=\hbox{\kern1sp}% \ht\beamer@sectionbox=1.875ex% \dp\beamer@sectionbox=0.75ex% \hskip-1.875ex plus-1fill% \global\beamer@section@min@dim\z@ \dohead% \beamer@section@set@min@width \box\beamer@sectionbox\hfil\hskip.3cm}% }}} \def\sectionentry#1#2#3#4#5{% section number, section title, page \ifnum#5=\c@part% \beamer@section@set@min@width \box\beamer@sectionbox\hskip1.875ex plus 1fill% \beamer@xpos=0\relax% \beamer@ypos=1\relax% \setbox\beamer@sectionbox= \hbox{\def\insertsectionhead{#2}% \def\insertsectionheadnumber{#1}% \def\insertpartheadnumber{#5}% {% \usebeamerfont{section in head/foot}\usebeamercolor[fg]{section in head/foot}% \ifnum\c@section=#1% \hyperlink{Navigation#3}{{\usebeamertemplate{section in head/foot}}}% \else% \hyperlink{Navigation#3}{{\usebeamertemplate{section in head/foot shaded}}}% \fi}% }% \ht\beamer@sectionbox=1.875ex% \dp\beamer@sectionbox=0.75ex% \fi\ignorespaces} \def\beamer@nav@subsectionstyle#1{\beamer@toc@sprocess\beamer@nav@css\beamer@nav@oss\beamer@nav@ooss#1///} \beamer@nav@subsectionstyle{show} \def\beamer@subsectionentry#1#2#3#4#5{}% no effect by default. \def\beamer@subsubsectionentry#1#2#3#4#5#6{}% no effect by default. \def\insertverticalnavigation#1{% \vbox{% \def\sectionentry##1##2##3##4##5{% \ifnum##5=\c@part% \def\insertsectionhead{##2}% \def\insertsectionheadnumber{##1}% \def\insertpartheadnumber{##5}% \hbox{{% \usebeamerfont{section in sidebar}\usebeamercolor[fg]{section in sidebar}% \hyperlink{Navigation##3}{% \ifnum\c@section=##1% \ifnum\c@subsection=0\relax% {\usebeamertemplate{section in sidebar}}% \else% \ifx\beamer@nav@css\beamer@hidetext% {\usebeamertemplate{section in sidebar}}% \else% {\usebeamertemplate{section in sidebar shaded}}% \fi% \fi% \else {\usebeamertemplate{section in sidebar shaded}}% \fi}}}% \beamer@currentsubsection=0\relax\fi}% \def\slideentry##1##2##3##4##5##6{}% \def\beamer@subsectionentry##1##2##3##4##5{% \ifnum##1=\c@part% \def\insertpartheadnumber{##1}% \def\insertsectionheadnumber{##2}% \def\insertsubsectionheadnumber{##3}% \def\insertsubsectionhead{##5}% \beamer@tocifnothide{\ifnum\c@section=##2\ifnum\c@subsection=##3\beamer@nav@css\else\beamer@nav@oss\fi\else\beamer@nav@ooss\fi}% {\hbox{{% \usebeamerfont{subsection in sidebar}\usebeamercolor[fg]{subsection in sidebar}% \hyperlink{Navigation##4}{% \ifnum\c@section=##2% \ifnum\c@subsection=##3% \ifnum\c@subsubsection=0\relax% {\usebeamertemplate{subsection in sidebar}}% \else% {\usebeamertemplate{subsection in sidebar shaded}}% \fi% \else% {\usebeamertemplate{subsection in sidebar shaded}}% \fi% \else% {\usebeamertemplate{subsection in sidebar shaded}}% \fi}}}% }% \fi}% \def\beamer@subsubsectionentry##1##2##3##4##5##6{% \ifnum##1=\c@part% \def\insertpartheadnumber{##1}% \def\insertsectionheadnumber{##2}% \def\insertsubsectionheadnumber{##3}% \def\insertsubsubsectionheadnumber{##3}% \def\insertsubsubsectionhead{##6}% \beamer@tocifnothide{\ifnum\c@section=##2\ifnum\c@subsection=##3\beamer@nav@css\else\beamer@nav@oss\fi\else\beamer@nav@ooss\fi}% {\hbox{{% \usebeamerfont{subsubsection in sidebar}\usebeamercolor[fg]{subsubsection in sidebar}% \hyperlink{Navigation##5}{% \ifnum\c@section=##2% \ifnum\c@subsection=##3% \ifnum\c@subsubsection=##4% {\usebeamertemplate{subsubsection in sidebar}}% \else {\usebeamertemplate{subsubsection in sidebar shaded}}% \fi% \else% {\usebeamertemplate{subsubsection in sidebar shaded}}% \fi% \else% {\usebeamertemplate{subsubsection in sidebar shaded}}% \fi}}}% }% \fi}% %\beamer@currentsubsection=0\relax% \dohead% }% } \def\slideentry#1#2#3#4#5#6{% %section number, subsection number, slide number, first/last frame, page number, part number \ifnum#6=\c@part\ifnum#2>0\ifnum#3>0% \ifbeamer@compress% \advance\beamer@xpos by1\relax% \else% \beamer@xpos=#3\relax% \beamer@ypos=#2\relax% \fi% \hbox to 0pt{% \beamer@tempdim=-\beamer@vboxoffset% \advance\beamer@tempdim by-\beamer@boxsize% \multiply\beamer@tempdim by\beamer@ypos% \advance\beamer@tempdim by -.05cm% \raise\beamer@tempdim\hbox{% \beamer@tempdim=\beamer@boxsize% \multiply\beamer@tempdim by\beamer@xpos% \advance\beamer@tempdim by -\beamer@boxsize% \advance\beamer@tempdim by 1pt% \kern\beamer@tempdim \global\beamer@section@min@dim\beamer@tempdim \hbox{\beamer@link(#4){% \usebeamerfont{mini frame}% \ifnum\c@section=#1% \ifnum\c@subsection=#2% \usebeamercolor[fg]{mini frame}% \ifnum\c@subsectionslide=#3% \usebeamertemplate{mini frame}%\beamer@minislidehilight% \else% \usebeamertemplate{mini frame in current subsection}%\beamer@minisliderowhilight% \fi% \else% \usebeamercolor{mini frame}% %\color{fg!50!bg}% \usebeamertemplate{mini frame in other subsection}%\beamer@minislide% \fi% \else% \usebeamercolor{mini frame}% %\color{fg!50!bg}% \usebeamertemplate{mini frame in other subsection}%\beamer@minislide% \fi% }}}\hskip-10cm plus 1fil% }\fi\fi% \else% \fakeslideentry{#1}{#2}{#3}{#4}{#5}{#6}% \fi\ignorespaces } \def\fakeslideentry#1#2#3#4#5#6{% \ifnum#2>0\ifnum#3>0% \ifbeamer@compress% \advance\beamer@xpos by1\relax% \else% \beamer@xpos=#3\relax% \beamer@ypos=#2\relax% \fi% \hbox to 0pt{\beamer@tempdim=-\beamer@vboxoffset% \advance\beamer@tempdim by -\beamer@boxsize% \multiply\beamer@tempdim by\beamer@ypos% \advance\beamer@tempdim by -.05cm% \raise\beamer@tempdim\hbox{}}\fi\fi\ignorespaces} \def\beamer@link(#1/#2){% \def\beamer@goto{{Navigation#1}}% default: first slide of frame \ifnum\c@page<#2% \ifnum\c@page<#1\else% go to last slide of frame, on all slides of % the frame, except for the last one \def\beamer@goto{{Navigation#2}}% jump to last slide of frame \fi\fi% \expandafter\hyperlink\beamer@goto} \define@key{beamer@margin}{mini frame size}{\beamer@boxsize=#1} \define@key{beamer@margin}{mini frame offset}{\beamer@vboxoffset=#1} \def\insertsectionnavigation#1{% \hbox to #1{% \vbox{{\usebeamerfont{section in head/foot}\usebeamercolor[fg]{section in head/foot}% \vskip0.5625ex% \def\slideentry##1##2##3##4##5##6{}% \def\sectionentry##1##2##3##4##5{% \ifnum##5=\c@part% \def\insertsectionhead{##2}% \def\insertsectionheadnumber{##1}% \def\insertpartheadnumber{##5}% \setbox\beamer@tempbox=\hbox{% \hyperlink{Navigation##3}{\hbox to #1{% \hskip0.3cm% \ifnum\c@section=##1% {\usebeamertemplate{section in head/foot}}% \else% {\usebeamertemplate{section in head/foot shaded}}% \fi\hskip0.3cm}}}% \ht\beamer@tempbox=1.6875ex\dp\beamer@tempbox=0.75ex% \box\beamer@tempbox\fi}% \dohead\vskip0.5625ex}}\hfil}} \def\insertsectionnavigationhorizontal#1#2#3{% \hbox to #1{{% \def\slideentry##1##2##3##4##5##6{}% #2\hskip.3cm% \usebeamerfont{section in head/foot}\usebeamercolor[fg]{section in head/foot}% \setbox\beamer@sectionbox=\hbox{}% \ht\beamer@sectionbox=1.875ex% \dp\beamer@sectionbox=0.75ex% \hskip-1.875ex plus-1fill\dohead% \box\beamer@sectionbox\hfil\hskip.3cm% #3}}} \def\insertsubsectionnavigation#1{% \hbox to #1{% \vbox{{% \usebeamerfont{subsection in head/foot}\usebeamercolor[fg]{subsection in head/foot}% \vskip0.5625ex% \beamer@currentsubsection=0% \def\sectionentry##1##2##3##4##5{}% \def\slideentry##1##2##3##4##5##6{\ifnum##6=\c@part\ifnum##1=\c@section% \ifnum##2>\beamer@currentsubsection% \beamer@currentsubsection=##2% \def\insertsubsectionhead{##5}% \def\insertsectionheadnumber{##1}% \def\insertsubsectionheadnumber{##2}% \def\insertpartheadnumber{##6}% \setbox\beamer@tempbox=\hbox{\beamer@link(##4){% \hbox to #1{\hskip0.3cm% \ifnum\c@subsection=##2% {\usebeamertemplate{subsection in head/foot}}% \else% {\usebeamertemplate{subsection in head/foot shaded}}% \fi\hfil\hskip0.3cm}}}% \ht\beamer@tempbox=1.6875ex\dp\beamer@tempbox=0.75ex% \box\beamer@tempbox\fi\fi\fi}% \dohead\vskip0.5625ex}\hfil}}} \def\insertsubsectionnavigationhorizontal#1#2#3{% \hbox to #1{{% \usebeamerfont{subsection in head/foot}\usebeamercolor[fg]{subsection in head/foot}% \beamer@currentsubsection=0% \def\sectionentry##1##2##3##4##5{}% \def\slideentry##1##2##3##4##5##6{\ifnum##6=\c@part\ifnum##1=\c@section% \ifnum##2>\beamer@currentsubsection% \beamer@currentsubsection=##2% \box\beamer@sectionbox\hskip1.875ex plus1fill% \setbox\beamer@sectionbox= \hbox{\def\insertsubsectionhead{##5}% \def\insertsectionheadnumber{##1}% \def\insertsubsectionheadnumber{##2}% \def\insertpartheadnumber{##6}% \ifnum\c@subsection=##2% \beamer@link(##4){{\usebeamertemplate{subsection in head/foot}}}\else% \beamer@link(##4){{\usebeamertemplate{subsection in head/foot shaded}}}\fi}% \ht\beamer@sectionbox=1.875ex% \dp\beamer@sectionbox=0.75ex% \fi\fi\fi\ignorespaces}% #2\hskip.3cm\setbox\beamer@sectionbox=\hbox{}% \hskip-1.875ex plus-1fill\dohead% \box\beamer@sectionbox\hfil\hskip.3cm% #3}}} % % Name slides % \def\beamer@inserttarget#1{% \ifbeamer@inframe% \ifvmode% \nointerlineskip\vbox to0pt{#1}% \else% \hbox{#1}% \fi% \else% defer to next frame \expandafter\gdef\expandafter\beamer@framehypertargets\expandafter{\beamer@framehypertargets#1}% \fi% } \def\beamer@nameslide#1{% \addtocontents{snm}{\protect\beamer@slide{#1}{\the\c@page}}% \beamer@inserttarget{\hypertarget{#1}{}}} \def\beamer@dummynameslide{\beamer@inserttarget{}} \def\beamer@slide#1#2{\expandafter\def\csname beamer@hyperlink#1\endcsname{% \hyperlink{Navigation#2}}} \let\beamer@framehypertargets\@empty \mode beamer/base/beamerbasecolor.sty0000644000175000017500000002777512050430504016474 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasecolor.sty,v d1a9b48be06d 2010/06/06 11:34:07 rivanvx $ \mode % % Color theme stuff % \define@key{beamerthc}{fg} {\expandafter\def\csname beamer@thcfg@\beamer@temp\endcsname{\def\beamer@thc@fg{#1}}} \define@key{beamerthc}{bg} {\expandafter\def\csname beamer@thcbg@\beamer@temp\endcsname{\def\beamer@thc@bg{#1}}} \define@key{beamerthc}{parent} {\expandafter\def\csname beamer@thcinherits@\beamer@temp\endcsname{% \@for\@temp:={#1}\do{\expandafter\beamer@thc@docolor\expandafter{\@temp}}}} \define@key{beamerthc}{use} {\expandafter\def\csname beamer@thcuse@\beamer@temp\endcsname{% \@for\@temp:={#1}\do{\expandafter\beamer@thc@usecolor\expandafter{\@temp}}}} \def\beamer@thc@prepcolor{% \let\beamer@thc@fg=\@empty% \let\beamer@thc@bg=\@empty% } \def\beamer@thc@docolor#1{% \csname beamer@thcuse@#1\endcsname% \csname beamer@thcinherits@#1\endcsname% \csname beamer@thcfg@#1\endcsname% \csname beamer@thcbg@#1\endcsname% } \def\beamer@thc@usecolor#1{% \begingroup% \beamer@thc@prepcolor% \beamer@thc@docolor{#1}% \ifx\beamer@thc@fg\@empty\def\beamer@thc@fg{fg}\fi% \ifx\beamer@thc@bg\@empty\def\beamer@thc@bg{bg}\fi% \global\let\beamer@thc@gfg\beamer@thc@fg% \global\let\beamer@thc@gbg\beamer@thc@bg% \globalcolorstrue% \colorlet{#1.fg}{\beamer@thc@gfg}% \colorlet{#1.bg}{\beamer@thc@gbg}% \endgroup% } \def\setbeamercolor{\@ifstar{\beamer@clearbeamercolor}{\beamer@setbeamercolor}} \newcommand\beamer@clearbeamercolor[2]{% \def\beamer@temp{#1}% \expandafter\let\csname beamer@thcfg@#1\endcsname=\relax% \expandafter\let\csname beamer@thcbg@#1\endcsname=\relax% \setkeys{beamerthc}{use={},parent={}}% \setkeys{beamerthc}{#2}% } \newcommand\beamer@setbeamercolor[2]{% \def\beamer@temp{#1}% \setkeys{beamerthc}{#2}% } \newcommand\ifbeamercolorempty[2][]{% \beamer@thc@prepcolor% \beamer@thc@docolor{#2}% \expandafter\ifx\csname beamer@thc@#1\endcsname\@empty% \expandafter\@firstoftwo% \else% \expandafter\@secondoftwo% \fi% } \def\usebeamercolor{\@ifstar{\beamer@usebeamercolor[fg]{normal text}\beamer@usebeamercolor}{\beamer@usebeamercolor}} \newcommand\beamer@usebeamercolor[2][]{% \beamer@thc@prepcolor% \beamer@thc@docolor{#2}% \ifx\beamer@thc@fg\@empty% \@namelet{\string\color@ temp@fg}{\string\color@ fg}% \else% \colorlet{temp@fg}{\csname beamer@thc@fg\endcsname}% \fi% \ifx\beamer@thc@bg\@empty% \@namelet{\string\color@ temp@bg}{\string\color@ bg}% \else% \colorlet{temp@bg}{\csname beamer@thc@bg\endcsname}% \fi% \@namelet{\string\color@ parent.fg}{\string\color@ fg}% \@namelet{\string\color@ parent.bg}{\string\color@ bg}% \@namelet{\string\color@ fg}{\string\color@ temp@fg}% \@namelet{\string\color@ bg}{\string\color@ temp@bg}% \begingroup% \global\@namelet{\string\color@ #2.fg}{\string\color@ temp@fg}% \global\@namelet{\string\color@ #2.bg}{\string\color@ temp@bg}% \endgroup% \def\beamer@temp{#1}% \ifx\beamer@temp\@empty% \else% \color{#1}% \fi% } \colorlet{fg}{black} \colorlet{bg}{white} \mode
{ \newcommand\setbeamercolor{\@ifstar{\@gobbletwo}{\@gobbletwo}} \newcommand\usebeamercolor{\@ifstar{\beamer@optgog}{\beamer@optgog}} \newcommand\beamer@optgog[2][]{} } % % Colored boxes % \define@key{beamercolbox}{wd}{\def\beamer@colbox@wd{#1}} \define@key{beamercolbox}{ht}{\def\beamer@colbox@ht{#1}} \define@key{beamercolbox}{dp}{\def\beamer@colbox@dp{#1}} \define@key{beamercolbox}{leftskip}{\def\beamer@colbox@ls{#1}} \define@key{beamercolbox}{rightskip}{\def\beamer@colbox@rs{#1}} \define@key{beamercolbox}{left}[0pt]{\def\beamer@colbox@ls{0pt}\def\beamer@colbox@rs{#1 plus1fill}} \define@key{beamercolbox}{center}[0pt]{\def\beamer@colbox@ls{#1 plus1fill}\def\beamer@colbox@rs{#1 plus1fill}} \define@key{beamercolbox}{right}[0pt]{\def\beamer@colbox@ls{#1 plus1fill}\def\beamer@colbox@rs{0pt}} \define@key{beamercolbox}{sep}{\def\beamer@colbox@sep{#1}} \define@key{beamercolbox}{colsep}{\def\beamer@colbox@colsep{#1}} \define@key{beamercolbox}{colsep*}{\def\beamer@colbox@colseps{#1}} \define@key{beamercolbox}{shadow}[true]{\def\beamer@colbox@shadow{#1}} \define@key{beamercolbox}{rounded}{\csname beamer@colbox@rounded#1\endcsname} \define@key{beamercolbox}{ignorebg}[true]{\csname beamer@colbox@ignorebg#1\endcsname} \define@key{beamercolbox}{vmode}[]{\def\beamer@vmode{}} \newif\ifbeamer@colbox@rounded \newif\ifbeamer@colbox@ignorebg \newenvironment{beamercolorbox}[2][]{% \begingroup% \def\beamer@colbox@coladd{0pt}% \def\beamer@vmode{\leavevmode}% \setkeys{beamercolbox}{% wd=\textwidth,ht={},dp={},% leftskip=0pt,rightskip=0pt plus1fil,% sep=0pt,colsep=0pt,colsep*=0pt,% shadow=false,rounded=false,ignorebg=false}% \setkeys{beamercolbox}{#1}% \ifbeamercolorempty[bg]{#2}{\@tempswafalse}{\@tempswatrue}% \ifbeamer@colbox@ignorebg\@tempswafalse\fi% \def\beamer@colbox@color{#2}% \hsize=\beamer@colbox@wd% \setbox\beamer@tempbox=\hbox\bgroup\vbox\bgroup% \leftskip=\beamer@colbox@ls% \advance\leftskip by\beamer@colbox@sep% \rightskip=\beamer@colbox@rs% \advance\rightskip by\beamer@colbox@sep% \ifbeamer@colbox@ignorebg% \colorlet{beamer@temp@color}{bg}% \usebeamercolor[fg]{#2}% \colorlet{bg}{beamer@temp@color}% \else% \usebeamercolor[fg]{#2}% \fi% \if@tempswa% \advance\leftskip by\beamer@colbox@colsep% \advance\rightskip by\beamer@colbox@colsep% \ifdim\beamer@colbox@colsep=0pt\else\vskip\beamer@colbox@colsep\fi% \ifdim\beamer@colbox@colseps=0pt\else\vskip\beamer@colbox@colseps\fi% \fi% \ifdim\beamer@colbox@sep=0pt\else\vskip\beamer@colbox@sep\fi% \beamer@vmode\ignorespaces}{% \ifdim\beamer@colbox@sep=0pt\else\vskip\beamer@colbox@sep\fi% \if@tempswa\ifdim\beamer@colbox@colsep=0pt\else\vskip\beamer@colbox@colsep\fi\fi% \if@tempswa\ifdim\beamer@colbox@colseps=0pt\else\vskip\beamer@colbox@colseps\fi\fi% \egroup\egroup% \wd\beamer@tempbox=\hsize% \@tempdima=\wd\beamer@tempbox% \ifx\beamer@colbox@ht\@empty% \else% \ht\beamer@tempbox=\beamer@colbox@ht% \fi% \ifx\beamer@colbox@dp\@empty% \else% \dp\beamer@tempbox=\beamer@colbox@dp% \fi% \ifbeamer@colbox@rounded% \if@tempswa% \begin{beamerboxesrounded}[% shadow=\beamer@colbox@shadow,% lower=\beamer@colbox@color,% upper=normal text,% width=\beamer@colbox@wd]{}% \box\beamer@tempbox% \end{beamerboxesrounded}% \else% \ifdim\@tempdima>\textwidth% \setbox\beamer@tempbox=\hbox to\textwidth{\hss\box\beamer@tempbox\hss}% \fi% \box\beamer@tempbox% \fi% \else% \if@tempswa\setbox\beamer@tempbox=\hbox{\vbox{% \usebeamercolor{\beamer@colbox@color}% \advance\hsize by \beamer@colbox@colseps\relax% \advance\hsize by \beamer@colbox@colseps\relax% \hskip-\beamer@colbox@colseps% \fboxsep=0pt\colorbox{bg}{% \hskip\beamer@colbox@colseps% \hbox{\box\beamer@tempbox}% \hskip\beamer@colbox@colseps% }% \hskip-\beamer@colbox@colseps% }}\fi% \ifdim\@tempdima>\textwidth% \setbox\beamer@tempbox=\hbox to\textwidth{\hskip0pt minus\beamer@leftmargin\relax\box\beamer@tempbox\hskip0pt minus\beamer@rightmargin\relax}% \fi% \box\beamer@tempbox% \fi% \endgroup% } \mode
{ \newenvironment{beamercolorbox}[2][]{}{} } % % Install these colors at the start of the document % \AtBeginDocument{ \usebeamercolor*{alerted text} % Define these colors \usebeamercolor*{example text} % Define these colors \usebeamercolor*{structure} % Define these colors \usebeamercolor{normal text} \color{fg} \def\normalcolor{\color{normal text.fg}} } % % Math mode color hackery % \newcommand\beamer@setmathcolor{% \usebeamercolor{math text inlined}% \ifbeamercolorempty[fg]{math text inlined}{}{\color{fg}}} \newcommand\donotcoloroutermaths{% \everymath{\everymath{\beamer@setmathcolor}}} \newcommand\beamer@setdisplaymathcolor{% \usebeamercolor{math text displayed}% \ifbeamercolorempty[fg]{math text displayed}{}{\color{fg}\aftergroup\ignorespaces}}% \newcommand\donotcolorouterdisplaymaths{% \everydisplay{\everydisplay{\beamer@setdisplaymathcolor}}} \AtBeginDocument { \everymath\expandafter{\the\everymath\beamer@setmathcolor} \everydisplay\expandafter{\the\everydisplay\beamer@setdisplaymathcolor} } \AtBeginDocument{ % Fix $ usage in tabular: \let\beamer@orig@tabular=\@tabular \def\@tabular{\donotcoloroutermaths\beamer@orig@tabular} % Fix $ usage in underline: \let\beamer@orig@underline=\underline \def\underline#1{{\donotcoloroutermaths\beamer@orig@underline{#1}}} % Fix $ usage in underline: \let\beamer@orig@@textsuperscript=\@textsuperscript \def\@textsuperscript#1{{\donotcoloroutermaths\beamer@orig@@textsuperscript{#1}}} % Fix $ usage in parbox: \let\beamer@orig@pboxswture=\@pboxswtrue \def\@pboxswtrue{\donotcoloroutermaths\beamer@orig@pboxswture} % Fix $$ usage in align: \let\beamer@orig@start@align=\start@align \def\start@align{\donotcolorouterdisplaymaths\donotcoloroutermaths\beamer@setdisplaymathcolor\beamer@orig@start@align} % Fix $$ usage in gather: \let\beamer@orig@start@gather=\start@gather \def\start@gather{\donotcolorouterdisplaymaths\donotcoloroutermaths\beamer@setdisplaymathcolor\beamer@orig@start@gather} % Fix $$ usage in multicolumn: \let\beamer@orig@start@multline=\start@multline \def\start@multline{\donotcolorouterdisplaymaths\donotcoloroutermaths\beamer@setdisplaymathcolor\beamer@orig@start@multline} % Fix $$ usage in eqnarray: \let\beamer@orig@eqnarray=\eqnarray \def\eqnarray{\donotcolorouterdisplaymaths\donotcoloroutermaths\beamer@setdisplaymathcolor\beamer@orig@eqnarray} % Fix \text: \let\beamer@orig@text@=\text@ \def\text@#1{{\ifbeamercolorempty[fg]{normal text in math text}{}{\usebeamercolor[fg]{normal text in math text}}\beamer@orig@text@{#1}}} } % % Allow mixins to survive groups: % \let\beamerorig@set@color=\set@color \let\beamerorig@reset@color=\reset@color \edef\beamer@zeropt{\the\z@} \def\beamer@current@colorhook{} \def\set@color{% \edef\beamer@current@colorhook{\beamer@colorhook}% \beamerorig@set@color} \def\reset@color{% \beamer@lastskip=\lastskip% \edef\beamer@lastskiptexta{\the\lastskip}% \ifx\beamer@lastskiptexta\beamer@zeropt\else% \ifvmode\unskip\fi% \ifhmode\unskip\fi% \fi% \ifx\beamer@current@colorhook\beamer@colorhook% \beamerorig@reset@color% \else% mixin changed -> recalculate \colorlet{beamer@tempcolor}{.}% \applycolormixins{beamer@tempcolor}% \@namelet{current@color}{\string\color@beamer@tempcolor}% \beamerorig@reset@color% \pgfsys@color@unstacked{beamer@tempcolor}% \fi% \ifx\beamer@lastskiptexta\beamer@zeropt% \else% \ifvmode\vskip\beamer@lastskip\fi% \ifhmode\hskip\beamer@lastskip\fi% \fi% } % compatibility: \AtBeginDocument{ \colorlet{structure}{structure.fg} \colorlet{beamerstructure}{structure.fg} \colorlet{averagebackgroundcolor}{normal text.bg} } \mode
{ \def\beamersetaveragebackground#1{} \ifbeamer@articlexcolor \colorlet{averagebackgroundcolor}{white} \fi } \colorlet{alert}{red!95!black} \definecolor{structure}{rgb}{0.2,0.2,0.7} % dummy -- not used \colorlet{beameralert}{alert} \colorlet{beamerexample}{green!50!black} \colorlet{beamerstructure}{structure} % dummy \mode
{ \ifbeamer@articlexcolor \definecolor{alert}{rgb}{1,0,0} \colorlet{beameralert}{alert} \colorlet{beamerexample}{green!50!black} \colorlet{beamerstructure}{black} \colorlet{structure}{beamerstructure} \fi } \mode beamer/base/beamer.cls0000644000175000017500000002634612050430504014535 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % Copyright 2011 by Vedran Mileti\'c, Joseph Wright % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \RequirePackage{beamerbasercs} \ProvidesClassRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamer.cls,v 24853e6b98cf 2012/10/15 19:48:15 joseph $ [development version \beamer@version\space A class for typesetting presentations] \RequirePackage{beamerbasemodes} % Setup modes and check for article option \beamer@transferifnecessary \RequirePackage{ifpdf} % % % Declarations used by beamer % % % Public \newdimen\headheight % Total height of the headline (including depth) \newdimen\headdp % Depth of the headline \newdimen\footheight % Height of the footline \newdimen\sidebarheight % Height of the sidebars % Private \newdimen\beamer@tempdim \newdimen\beamer@finalheight \newdimen\beamer@animht \newdimen\beamer@animdp \newdimen\beamer@animwd \newdimen\beamer@leftmargin \newdimen\beamer@rightmargin \newdimen\beamer@leftsidebar \newdimen\beamer@rightsidebar \newdimen\beamer@boxsize \newdimen\beamer@vboxoffset \newdimen\beamer@descdefault \newdimen\beamer@descriptionwidth \newskip\beamer@lastskip \newbox\beamer@areabox \newbox\beamer@animcurrent \newbox\beamer@animshowbox \newbox\beamer@sectionbox \newbox\beamer@logobox \newbox\beamer@linebox \newcount\beamer@sectioncount \newcount\beamer@subsubsectionmax \newcount\beamer@subsectionmax \newcount\beamer@sectionmax \newcount\beamer@totalheads \newcount\beamer@headcounter \newcount\beamer@partstartpage \newcount\beamer@sectionstartpage \newcount\beamer@subsectionstartpage \newcount\beamer@animationtempa \newcount\beamer@animationtempb \newcount\beamer@xpos \newcount\beamer@ypos \newcount\beamer@showpartnumber \newcount\beamer@currentsubsection \newcount\beamer@coveringdepth \newcount\beamer@sectionadjust \newcount\beamer@tocsectionnumber \newif\ifbeamer@sansmath \newif\ifbeamer@altmode \newif\ifbeamer@notes \newif\ifbeamer@notesnormals \newif\ifbeamer@compress \newif\ifbeamer@centered \newif\ifbeamer@draftmode \newif\ifbeamer@suppressreplacements % decides whether fonts should be substituted \newif\ifbeamer@frameswithnotesonly \newif\ifbeamer@ignorenonframe \newif\ifbeamer@autopdfinfo \RequirePackage{beamerbaseoptions} % For option management % % % Document options % % \beamer@suppressreplacementsfalse \beamer@altmodefalse \beamer@notesfalse \beamer@notesnormalstrue \beamer@compressfalse \beamer@draftmodefalse \beamer@frameswithnotesonlyfalse \beamer@ignorenonframefalse \beamer@autopdfinfotrue \DeclareOptionBeamer{usepdftitle}[true]{\csname beamer@autopdfinfo#1\endcsname} \DeclareOptionBeamer{envcountsect}{\beamer@countsecttrue} \DeclareOptionBeamer{notheorems}{\beamer@blocksfalse} \DeclareOptionBeamer{noamsthm}{\beamer@blocksfalse\beamer@amsfalse} \DeclareOptionBeamer{compress}{\beamer@compresstrue} \DeclareOptionBeamer{t}{\beamer@centeredfalse} \DeclareOptionBeamer{c}{\beamer@centeredtrue} \DeclareOptionBeamer{leqno}{\input{leqno.clo}} \DeclareOptionBeamer{fleqn}{\input{fleqn.clo}} \def\beamer@currentmode{beamer} \DeclareOptionBeamer{handout}{\gdef\beamer@currentmode{handout}} \DeclareOptionBeamer{trans}{\gdef\beamer@currentmode{trans}} \DeclareOptionBeamer{pdftex}{}% Used by hyperref \DeclareOptionBeamer{nativepdf}{}% Used by hyperref \DeclareOptionBeamer{pdfmark}{}% Used by hyperref \DeclareOptionBeamer{dvips}{}% Used by hyperref \DeclareOptionBeamer{dviwindo}{}% Used by hyperref \DeclareOptionBeamer{dvipsone}{}% Used by hyperref \DeclareOptionBeamer{vtex}{}% Used by hyperref \DeclareOptionBeamer{ps2pdf}{}% Used by hyperref \DeclareOptionBeamer{ignorenonframetext}{\beamer@ignorenonframetrue} \DeclareOptionBeamer{noamssymb}{\beamer@amssymbfalse} \def\beamer@size{{size11.clo}} \DeclareOptionBeamer{bigger}{\def\beamer@size{{size12.clo}}} \DeclareOptionBeamer{smaller}{\def\beamer@size{{size10.clo}}} \DeclareOptionBeamer{8pt}{\def\beamer@size{{size8.clo}}} \DeclareOptionBeamer{9pt}{\def\beamer@size{{size9.clo}}} \DeclareOptionBeamer{10pt}{\def\beamer@size{{size10.clo}}} \DeclareOptionBeamer{11pt}{\def\beamer@size{{size11.clo}}} \DeclareOptionBeamer{12pt}{\def\beamer@size{{size12.clo}}} \DeclareOptionBeamer{14pt}{\def\beamer@size{{size14.clo}}} \DeclareOptionBeamer{17pt}{\def\beamer@size{{size17.clo}}} \DeclareOptionBeamer{20pt}{\def\beamer@size{{size20.clo}}} \DeclareOptionBeamer{draft}{\beamer@draftmodetrue} \pagenumbering{arabic} \def\insertpagenumber{\thepage} \def\beamer@activecjk{} \def\beamer@hypercjk{} \DeclareOptionBeamer{CJK}{\ExecuteOptionsBeamer{cjk}} \DeclareOptionBeamer{cjk}{ \def\beamer@hypercjk{\hypersetup{CJKbookmarks=true}} \def\beamer@activecjk{ % Activate all >=128 characters. \count@=127 \@whilenum\count@<254 \do{% \advance\count@ by 1 \lccode`\~=\count@ \catcode\count@=\active \lowercase{\def~{\kern1ex}} } } } % obsolete options \DeclareOptionBeamer{notes}[show]{\csname beamer@notesaction@#1\endcsname} \def\beamer@notesaction@hide{% \ClassWarning{beamer}{This option is obsolete. Use beamer option ``hide notes'' instead.}% \beamer@notesfalse} \def\beamer@notesaction@show{% \ClassWarning{beamer}{This option is obsolete. Use beamer option ``show notes'' instead.}% \beamer@notestrue} \def\beamer@notesaction@only{% \ClassWarning{beamer}{This option is obsolete. Use beamer option ``show only notes'' instead.}% \beamer@notestrue \beamer@notesnormalsfalse \nofiles } \def\beamer@notesaction@onlyslideswithnotes{% \beamer@notestrue% \beamer@frameswithnotesonlytrue% \nofiles } \DeclareOptionBeamer{inrow}{ \ClassError{beamer}{``inrow'' no longer supported. Use ``compress'' instead.}{}} \DeclareOptionBeamer{compressnotes}{% \ClassWarning{beamer}{``compressnotes'' is obsolete. Use \noexpand\setbeamertemplate{note page}[compressed] instead} \AtBeginDocument{\beamertemplatenotecompress}} \DeclareOptionBeamer{notesonly}{ \ClassWarning{beamer}{``notesonly'' is obsolete. Use beamer option ``show only notes'' instead.} \beamer@notesaction@only} \DeclareOptionBeamer{blue}{ \ClassWarning{beamer}{``blue'' is obsolete. Use color theme structure instead} \def\beamer@loadlater{\usecolortheme[rgb={0.2,0.2,0.7}]{structure}}} \DeclareOptionBeamer{red}{ \ClassWarning{beamer}{``red'' is obsolete. Use color theme structure instead} \def\beamer@loadlater{\usecolortheme[rgb={0.7,0.2,0.2}]{structure}}} \DeclareOptionBeamer{blackandwhite}{ \ClassWarning{beamer}{``blackandwhite'' is obsolete. Use color theme structure instead} \def\beamer@loadlater{\usecolortheme[rgb={0.2,0.2,0.2}]{structure}}} \DeclareOptionBeamer{brown}{ \ClassWarning{beamer}{``brown'' is obsolete. Use color theme structure instead} \def\beamer@loadlater{\usecolortheme[rgb={0.66,0.4,0.166}]{structure}}} \DeclareOptionBeamer{slidescentered}{ \ClassWarning{beamer}{``slidescentered'' is obsolete. Use ``c'' instead} \beamer@centeredtrue} \DeclareOptionBeamer{slidestop}{ \ClassWarning{beamer}{``slidestop'' is obsolete. Use ``t'' instead} \beamer@centeredfalse} \DeclareOptionBeamer{sans}{% \ClassWarning{beamer}{``sans'' is obsolete. Just remove this option} \def\familydefault{\sfdefault} \def\mathfamilydefault{\sfdefault} \beamer@sansmathtrue } \DeclareOptionBeamer{serif}{% \ClassWarning{beamer}{``serif'' is obsolete. Use font theme ``serif'' instead} \def\familydefault{\rmdefault} \def\mathfamilydefault{\rmdefault} \beamer@sansmathfalse } \DeclareOptionBeamer{mathsans}{ \ClassWarning{beamer}{``mathsans'' is obsolete. Use font theme ``serif'' with option ``butsansserifmath''} \def\mathfamilydefault{\sfdefault}\beamer@sansmathtrue} \DeclareOptionBeamer{mathserif}{ \ClassWarning{beamer}{``mathserif'' is obsolete. Use font theme ``serif'' with option ``onlymath''} \def\mathfamilydefault{\rmdefault}\beamer@sansmathfalse} \DeclareOptionBeamer{professionalfont}{ \ClassWarning{beamer}{``professionalfont'' is obsolete. Use font theme ``professionalfonts'' instead} \beamer@suppressreplacementstrue} % has to be done here for compatibility \def\familydefault{\sfdefault} \def\mathfamilydefault{\sfdefault} \beamer@sansmathtrue \PassOptionsToPackage{bookmarks=true,% bookmarksopen=true,% pdfborder={0 0 0},% pdfhighlight={/N},% linkbordercolor={.5 .5 .5}}{hyperref} \DeclareOptionBeamer{pgf}{\PassOptionsToPackage{#1}{pgf}} \DeclareOptionBeamer{hyperref}{\PassOptionsToPackage{#1}{hyperref}} \DeclareOptionBeamer{color}{\PassOptionsToPackage{#1}{color}} \DeclareOptionBeamer{xcolor}{\PassOptionsToPackage{#1}{xcolor}} \def\beamer@loaducs{} \DeclareOptionBeamer{ucs}{% \ifpdf \PassOptionsToPackage{pdftex,unicode}{hyperref} \def\beamer@loaducs{ \RequirePackage[hyperref]{ucs}% \AtBeginDocument{\PreloadUnicodePage{0}}% \AtBeginDocument{\PreloadUnicodePage{1}}% } \else \def\beamer@loaducs{ \RequirePackage{ucs}% \AtBeginDocument{\PreloadUnicodePage{0}}% \AtBeginDocument{\PreloadUnicodePage{1}}% } \fi } \DeclareOptionBeamer{utf8x}{\ExecuteOptionsBeamer{ucs}% \g@addto@macro\beamer@loaducs{\RequirePackage[utf8x]{inputenc}}% } \DeclareOptionBeamer{utf8}{ \ClassWarning{beamer}{This option works no longer loads ucs.} \RequirePackage[utf8]{inputenc} \PassOptionsToPackage{unicode}{hyperref} } % % Geometry: allows 16:10, 16:9, 14:9, 5:4 and 4:3 (default 4:3). % Default value is set right after declaring width and height % because it doesn't work otherwise. % \newlength\beamer@paperwidth% \beamer@paperwidth 12.80cm% \newlength\beamer@paperheight% \beamer@paperheight 9.60cm% \DeclareOptionBeamer{aspectratio}[43]{% \ifnum#1=1610% \beamer@paperwidth 16.00cm% \beamer@paperheight 10.00cm% \else\ifnum#1=169% \beamer@paperwidth 16.00cm% \beamer@paperheight 9.00cm% \else\ifnum#1=149% \beamer@paperwidth 14.00cm% \beamer@paperheight 9.00cm% \else\ifnum#1=54% \beamer@paperwidth 12.50cm% \beamer@paperheight 10.00cm% \else\ifnum#1=43% \beamer@paperwidth 12.80cm% \beamer@paperheight 9.60cm% \else\ifnum#1=32% \beamer@paperwidth 13.50cm% \beamer@paperheight 9.00cm% \fi\fi\fi\fi\fi\fi% } \RequirePackage[% papersize={\beamer@paperwidth,\beamer@paperheight}, hmargin=1cm,% vmargin=0cm,% head=0.5cm,% might be changed later headsep=0pt,% foot=0.5cm% might be changed later ]{geometry} % % Process Options % \ExecuteOptionsBeamer{c} \ProcessOptionsBeamer % Load corresponding size file \expandafter\input\beamer@size % Filter class option list \beamer@filterclassoptions \RequirePackage{pgfcore} % We need only the core stuff. \RequirePackage{xxcolor} % For color management (comes with pgf). \RequirePackage[implicit=false]{hyperref} % For hyperlinks \hypersetup{pdfcreator={LaTeX with Beamer class version \beamer@version}} % Coding stuff \beamer@loaducs \beamer@hypercjk \RequirePackage{beamerbaserequires} % Beamer packages required both by presentation and article modes % Defaults \normalfont \raggedright \AtBeginDocument { \addtocontents{toc}{\protect\beamer@endinputifotherversion{\beamer@version pt}} \addtocontents{nav}{\protect\beamer@endinputifotherversion{\beamer@version pt}} } \usetheme{default} % Compatibility stuff \csname beamer@loadlater\endcsname beamer/base/beamerbasecompatibility.sty0000644000175000017500000005607712050430504020224 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasecompatibility.sty,v 67c48b3b652d 2012/05/01 07:25:30 joseph $ \mode % % % Hyperlink fix for problem with empty test in pdfmark.def % % \let\beamer@orighyperlink\hyperlink \def\hyperlink#1#2{\beamer@orighyperlink{#1}{\relax#2}} \providecommand\hyper@pagetransition{} \providecommand\hyper@pageduration{} \providecommand\hyper@pagehidden{} \mode { % Things to be done at the beginning of the document \def\beamer@lastminutepatches{} \def\beamer@firstminutepatches{} } % % Fixes right before the start of the document. % \let\beamer@origdocument\document \def\document{% \beamer@firstminutepatches% \endgroup% \AtBeginDocument{% fix spanish.ldf's meddling with < and > % % Fix spanish.ldf's meddling with < and > % \@ifundefined{deactivatequoting}{}{\deactivatequoting} % Fix meddline with enumerate items \renewcommand\theenumi{\@arabic\c@enumi} \renewcommand\theenumii{\@arabic\c@enumii} \renewcommand\theenumiii{\@arabic\c@enumiii} } \AtBeginDocument{% fix frenchb.ldf's meddling with itemize and : \let\labelitemi\beamer@labelitemi \let\labelitemii\beamer@labelitemii \let\itemize\beamer@itemize \let\list\beamer@list \let\@trivlist\beamer@@trivlist% \catcode`<=12\catcode`>=12} \begingroup\beamer@origdocument% \beamer@lastminutepatches% \ifbeamer@ignorenonframe% \expandafter\mode\expandafter*% \fi} \mode
{ \let\beamer@origdocument\document \def\document{% \beamer@origdocument% \beamer@lastminutepatches} \g@addto@macro\beamer@lastminutepatches{% \ifbeamer@articleactive \else \catcode`<=12\catcode`>=12 \fi } } \AtBeginDocument{\def\es@itemize#1#2#3#4{}}% fix spanish.ldf's with \itemize % % Fix for older versions of geometry % We used to test \ifGm@compatii, % but as of geometry v5.0, it is no longer provided. % \ifx\Gm@lmargin\@undefined \def\Gm@lmargin{\Geom@lmargin}\def\Gm@rmargin{\Geom@rmargin} \else \geometry{includeheadfoot} \fi % % Fix deluxetabular floats % \AtBeginDocument{ \def\@plano@float@#1{\begin{table}} \def\end@plano@float@{\end{table}} } % % Fix for implict=false for hyperref % \def\WriteBookmarks{0} \expandafter\def\csname Parent-1\endcsname{} \expandafter\def\csname Parent0\endcsname{} \expandafter\def\csname Parent1\endcsname{} \def\phantomsection{} % % Heiko's fix for correct generation of section* and subsection* bookmarks % \g@addto@macro\beamer@lastminutepatches{% \long\def\@LongEmpty{} \newcommand*{\org@beamer@section}{} \let\org@beamer@section\beamer@section{}% \let\org@writebookmark\Hy@writebookmark{}% \long\def\beamer@section[#1]#2{% \let\Hy@writebookmark\org@writebookmark \long\def\@secname{#1}% \ifx\@secname\@LongEmpty{}% \def\Hy@writebookmark##1##2##3##4##5{}% \fi \long\def\@secname{#2}% \ifx\@secname\@LongEmpty{}% \def\Hy@writebookmark##1##2##3##4##5{}% \fi \org@beamer@section[{#1}]{#2}% } \newcommand*{\org@beamer@subsection}{} \let\org@beamer@subsection\beamer@subsection{}% \long\def\beamer@subsection[#1]#2{% \let\Hy@writebookmark\org@writebookmark \long\def\@secname{#1}% \ifx\@secname\@LongEmpty{}% \def\Hy@writebookmark##1##2##3##4##5{}% \fi \long\def\@secname{#2}% \ifx\@secname\@LongEmpty{}% \def\Hy@writebookmark##1##2##3##4##5{}% \fi \org@beamer@subsection[{#1}]{#2}% } } % % Bugfix for old versions of pdfmark % \begingroup \catcode`P=12 \catcode`T=12 \lowercase{\endgroup \gdef\rem@ptetc#1.#2PT#3!{#1\ifnum#2>\z@.#2\fi}% } \def\strip@pt@and@otherjunk#1{\expandafter\rem@ptetc\the#1!} % % Make the effect of pdfpagetransition and duration global, not local % \define@key{Hyp}{pdfpagetransition}{\gdef\@pdfpagetransition{#1}} \define@key{Hyp}{pdfpageduration}{\gdef\@pdfpageduration{#1}} % % % Fix for babel % % \providecommand\textlatin{} \providecommand\theparagraph{} \providecommand\thesubparagraph{} \providecommand\listoffigures{} \providecommand\listoftables{} \providecommand\l@part{} \providecommand\l@chapter{} % % Fix for subfig % \providecommand\ext@table{} \providecommand\ext@figure{} % % Obsolete commands from old versions of beamer % \mode { \let\beamer@verb@egroup=\verb@egroup \def\beamer@setb{\setbox0=\copy} \long\def\defverb#1{% \expandafter\newbox\csname @verb\string#1\endcsname% \def#1{{\expandafter\beamer@setb\csname @verb\string#1\endcsname\unhbox0}}% \def\verb@egroup{\global\let\verb@balance@group\@empty\egroup\egroup\let\verb@egroup=\beamer@verb@egroup} \expandafter\setbox\csname @verb\string#1\endcsname=\hbox\bgroup \verb} \define@key{beamerverb}{colored}[true]{\def\beamer@colorsup{}} \define@key{beamerverb}{width}{\def\beamer@verbwidth{#1}} \newcommand{\defverbatim}[2][]{% \def\beamer@colorsup{\def\set@color{}\def\reset@color{}}% \setkeys{beamerverb}{width=\textwidth}% \setkeys{beamerverb}{#1}% \expandafter\newbox\csname @verb\string#2\endcsname% \def#2{{\expandafter\beamer@setb\csname @verb\string#2\endcsname% \unvbox0}\color{.}}% \expandafter\setbox\csname @verb\string#2\endcsname=\vbox\bgroup% \beamer@colorsup% \hsize=\beamer@verbwidth\textwidth=\beamer@verbwidth\linewidth=\beamer@verbwidth% \vskip-\baselineskip\strut\bgroup\aftergroup\beamer@verbend% \let\@next=} \def\beamer@verbend{\vskip-\baselineskip\strut\egroup} } \def\tableofcontentscurrent{\tableofcontents[current]} \def\plainframe{\frame[plain]}%obsolete \def\pgfonly{\only}%obsolete \AtBeginDocument{\newcommand{\nameslide}{\alt{\beamer@nameslide}{\@gobble}}}%obsolete \newenvironment{pauses}[1][\c@beamerpauses]{\setcounter{beamerpauses}{#1}}{}%obsolete \def\newoverlaycommand#1#2#3{\def#1{\alt{#2}{#3}}} \def\newoverlayenvironment#1#2#3#4#5{\newenvironment{#1}{\begin{altenv}{#2}{#3}{#4}{#5}}{\end{altenv}}} \newenvironment{columnsonlytextwidth}{\begin{columns}[onlytextwidth]}{\end{columns}} \def\untitledsubsection{\subsection*{}} \def\noteitems{\note[enumerate]} \define@key{beamertoc}{current}[]{\beamer@toc@sectionstyle{show/shaded}\beamer@toc@subsectionstyle{show/show/shaded}} \define@key{beamertoc}{hidesubsections}[]{\beamer@toc@subsectionstyle{show/show/hide}} \define@key{beamertoc}{shadesubsections}[]{\beamer@toc@subsectionstyle{shaded}} \mode {\def\unpause{\onslide{}}} \def\beamer@fixedline#1{% {\setbox\beamer@linebox=\hbox to\textwidth{\hskip-\Gm@lmargin\hskip0.3cm{#1}\hskip-\Gm@rmargin\hskip0.3cm}% \ht\beamer@linebox=2.125ex% \dp\beamer@linebox=1.125ex% \box\beamer@linebox}} \def\beamer@fixedcolouredline#1#2{% \hbox{% \setbox\beamer@linebox=\hbox to\textwidth{\hskip-\Gm@lmargin\hskip0.3cm{#2}\hskip-\Gm@rmargin\hskip0.3cm}% \ht\beamer@linebox=2.625ex% \dp\beamer@linebox=0pt% \setbox\beamer@linebox=\vbox{\box\beamer@linebox\vskip1.125ex}% {\color{#1}\hskip-\Gm@lmargin\vrule width\paperwidth height\ht\beamer@linebox\hskip-\paperwidth\hskip\Gm@lmargin}% \box\beamer@linebox}% } \long\def\beamer@colouredline#1#2{% \hbox{% \setbox\beamer@linebox=\vbox{\hbox to\textwidth{\hskip-\Gm@lmargin{#2}\hskip-\Gm@rmargin}}% {\color{#1}\hskip-\Gm@lmargin\vrule width\paperwidth height\ht\beamer@linebox\hskip-\paperwidth\hskip\Gm@lmargin}% \box\beamer@linebox}% } \def\tinyline#1{% {\tiny\setbox\beamer@linebox=\hbox to\textwidth{\hskip-\Gm@lmargin\hskip0.3cm{#1}\hskip-\Gm@rmargin\hskip0.3cm}% \ht\beamer@linebox=2.06ex% \dp\beamer@linebox=0pt% \box\beamer@linebox% \vskip1.125ex}} \def\tinycolouredline#1#2{% \hbox{\tiny% \setbox\beamer@linebox=\hbox to\textwidth{\hskip-\Gm@lmargin\hskip0.3cm{#2}\hskip-\Gm@rmargin\hskip0.3cm}% \ht\beamer@linebox=2.625ex% \dp\beamer@linebox=0pt% \setbox\beamer@linebox=\vbox{\box\beamer@linebox\vskip1.125ex}% {\color{#1}\hskip-\Gm@lmargin\vrule width\paperwidth height\ht\beamer@linebox\hskip-\paperwidth\hskip\Gm@lmargin}% \box\beamer@linebox}% } \def\colouredline#1#2{% \hbox{% \setbox\beamer@linebox=\hbox to\textwidth{\hskip-\Gm@lmargin\hskip0.3cm{#2}\hskip-\Gm@rmargin\hskip0.3cm}% \setbox\beamer@linebox=\vbox{\vskip2pt\box\beamer@linebox\vskip2pt}% {\color{#1}\hskip-\Gm@lmargin\vrule width\paperwidth height\ht\beamer@linebox\hskip-\paperwidth\hskip\Gm@lmargin}% \box\beamer@linebox}% } \def\beamerline#1{\hbox{\hskip-\Gm@lmargin#1\hskip-\Gm@rmargin}} \def\insertvrule#1#2{\hbox{\color{#2}\hskip-\Gm@lmargin\vrule width \paperwidth height #1\hskip-\Gm@rmargin}} \def\usetitlepagetemplate{\setbeamertemplate{title page}} \def\usepartpagetemplate{\setbeamertemplate{part page}} \mode {\def\useframetitletemplate{\setbeamertemplate{frametitle}}} \def\useitemizeitemtemplate{\setbeamertemplate{itemize item}} \def\usesubitemizeitemtemplate{\setbeamertemplate{itemize subitem}} \def\usesubsubitemizeitemtemplate{\setbeamertemplate{itemize subsubitem}} \def\useenumerateitemtemplate{\setbeamertemplate{enumerate item}} \def\usesubenumerateitemtemplate{\setbeamertemplate{enumerate subitem}} \def\usesubsubenumerateitemtemplate{\setbeamertemplate{enumerate subsubitem}} \def\useitemizetemplate#1#2{% before and after \setbeamertemplate{itemize/enumerate body begin}{#1}% \setbeamertemplate{itemize/enumerate body end}{#2}} \def\usesubitemizetemplate#1#2{% before and after \setbeamertemplate{itemize/enumerate subbody begin}{#1}% \setbeamertemplate{itemize/enumerate subbody end}{#2}} \def\usesubsubitemizetemplate#1#2{% before and after \setbeamertemplate{itemize/enumerate subsubbody begin}{#1}% \setbeamertemplate{itemize/enumerate subsubbody end}{#2}} \def\useenumerateitemminitemplate{\setbeamertemplate{enumerate mini template}} \let\useenumeratetemplate=\useitemizetemplate \let\usesubenumeratetemplate=\usesubitemizetemplate \let\usesubsubenumeratetemplate=\usesubsubitemizetemplate \def\useleftsidebartemplate{\usesidebartemplate[left]} \def\userightsidebartemplate{\usesidebartemplate[right]} \def\useleftsidebarbackgroundtemplate{\usesidebarbackgroundtemplate[left]} \def\userightsidebarbackgroundtemplate{\usesidebarbackgroundtemplate[right]} \def\useleftsidebarcolortemplate#1{\usesidebarbackgroundtemplate[left]{#1\vrule height\paperheight width\csname beamer@leftsidebar\endcsname}} \def\userightsidebarcolortemplate#1{\usesidebarbackgroundtemplate[right]{#1\vrule height\paperheight width\csname beamer@rightsidebar\endcsname}} \def\useleftsidebarverticalshadingtemplate{\beamertemplatesidebarverticalshading[left]} \def\userightsidebarverticalshadingtemplate{\beamertemplatesidebarverticalshading[right]} \def\useleftsidebarhorizontalshadingtemplate{\beamertemplatesidebarhorizontalshading[left]} \def\userightsidebarhorizontalshadingtemplate{\beamertemplatesidebarhorizontalshading[right]} \def\usedescriptionitemtemplate#1#2{\setbeamertemplate{description item}{#1}\setbeamersize{description width={#2}}} \def\usedescriptionitemofwidthas#1{\setbeamersize{description width of={#1}}}% \def\usetemplatetocsection{\@ifnextchar[\@@usetemplatetocsection\@usetemplatetocsection} \long\def\@@usetemplatetocsection[#1]#2{ \@usetemplatetocsection{#2}{\begin{colormixin}{#1}#2\end{colormixin}\unskip}} \long\def\@usetemplatetocsection#1#2{\setbeamertemplate{section in toc}{#1} \setbeamertemplate{section in toc shaded}{#2}} \def\usetemplatetocsubsection{\@ifnextchar[\@@usetemplatetocsubsection\@usetemplatetocsubsection} \long\def\@@usetemplatetocsubsection[#1]#2{ \@usetemplatetocsubsection{#2}{\begin{colormixin}{#1}#2\end{colormixin}\unskip}} \long\def\@usetemplatetocsubsection#1#2{\setbeamertemplate{subsection in toc}{#1}% \setbeamertemplate{subsection in toc shaded}{#2}} \def\usebibitemtemplate{\setbeamertemplate{bibliography item}} \newcommand\usebibliographyblocktemplate[4]{% \setbeamertemplate{bibliography entry author}{#1}% \setbeamertemplate{bibliography entry title}{#2}% \setbeamertemplate{bibliography entry location}{#3}% \setbeamertemplate{bibliography entry note}{#4}} \def\usebuttontemplate{\setbeamertemplate{button}} \def\usetemplateabstract#1#2{% \setbeamertemplate{abstract title}{} \setbeamertemplate{abstract body begin}{#1} \setbeamertemplate{abstract body end}{#2}} \def\usetemplateverse#1#2{\setbeamertemplate{verse begin}{#1}\setbeamertemplate{verse end}{#2}} \def\usetemplatenote{\setbeamertemplate{note page}} \def\useheadtemplate{\@ifstar{\beamer@useheads}{\beamer@usehead}} \def\beamer@usehead{\setbeamertemplate{headline}[text line]} \def\beamer@useheads{\setbeamertemplate{headline}} \def\addtoheadtemplate{\addtobeamertemplate{headline}} \def\addtofoottemplate{\addtobeamertemplate{footline}} \def\usefoottemplate{\@ifstar{\beamer@usefoots}{\beamer@usefoot}} \def\beamer@usefoot{\setbeamertemplate{footline}[text line]} \def\beamer@usefoots{\setbeamertemplate{footline}} \def\usecaptiontemplate{\setbeamertemplate{caption}} \def\insertblockname{\insertblocktitle} \long\def\usesectionheadtemplate#1#2{% \setbeamertemplate{section in head/foot}{#1}% \setbeamertemplate{section in head/foot shaded}{#2}} \long\def\usesubsectionheadtemplate#1#2{% \setbeamertemplate{subsection in head/foot}{#1}% \setbeamertemplate{subsection in head/foot shaded}{#2}} \long\def\usesectionsidetemplate#1#2{% \setbeamertemplate{section in sidebar}{#1}% \setbeamertemplate{section in sidebar shaded}{#2}} \long\def\usesubsectionsidetemplate#1#2{% \setbeamertemplate{subsection in sidebar}{#1}% \setbeamertemplate{subsection in sidebar shaded}{#2}} \newcommand\usetheoremtemplate[2]{% \setbeamertemplate{theorem begin}{#1} \setbeamertemplate{theorem end}{#2}} \newcommand\useprooftemplate[2]{ \setbeamertemplate{proof begin}{#1} \setbeamertemplate{proof end}{#2}} \def\useqedsymboltemplate{\setbeamertemplate{qed symbol}} \newcommand{\BeispielInline}[1]{{\usebeamercolor[fg]{example text}Beispiel: \ignorespaces#1}} \newcommand{\ExampleInline}[1]{{\usebeamercolor[fg]{example text}\translate{Example}: \ignorespaces#1}} \def\usenavigationsymbolstemplate{\setbeamertemplate{navigation symbols}} \def\insertnavigationsymbols{\usebeamertemplate***{navigation symbols}} \def\beamersetaveragebackground#1{\setbeamercolor{normal text}{bg={#1}}} \def\useminislidetemplate#1#2#3#4#5{% \setbeamertemplate{mini frame}{#1}% \setbeamertemplate{mini frame in current subsection}{#2}% \setbeamertemplate{mini frame in other subsection}{#3}% \setbeamersize{mini frame size={#4},mini frame offset={#5}}} \newcommand\usesidebarbackgroundtemplate[2][left]{\setbeamertemplate{sidebar canvas #1}{#2}} \def\usefootnotetemplate{\setbeamertemplate{footnote}} \def\beamertemplatedefaulttoc{\setbeamertemplate{sections/subsections in toc}[default]} \def\beamertemplatenumberedsubsectiontoc{\setbeamertemplate{sections/subsections in toc}[subsections numbered]} \def\beamertemplatenumberedsectiontoc{\setbeamertemplate{sections/subsections in toc}[sections numbered]} \def\beamertemplatenumberedcirclesectiontoc{\setbeamertemplate{sections/subsections in toc}[circle]} \def\beamertemplatenumberedsquaresectiontoc{\setbeamertemplate{sections/subsections in toc}[square]} \def\beamertemplatenumberedballsectiontoc{\setbeamertemplate{sections/subsections in toc}[ball]} \def\beamertemplateballtoc{\setbeamertemplate{sections/subsections in toc}[ball unnumbered]} \def\beamertemplatedotitem{\setbeamertemplate{itemize items}[circle]} \def\beamertemplatetriangleitem{\setbeamertemplate{itemize items}[default]} \def\beamertemplatesquareitem{\setbeamertemplate{itemize items}[square]} \def\beamertemplateballitem{\setbeamertemplate{items}[ball]} \def\beamertemplateenumeratealpha{\setbeamertemplate{enumerate items}[default]} \def\beamertemplateenumeratecircle{\setbeamertemplate{enumerate items}[circle]} \def\beamertemplateenumeratesquare{\setbeamertemplate{enumerate items}[square]} \def\beamertemplatelargepartpage{\setbeamertemplate{part page}[default]} \def\beamertemplateboldpartpage{\setbeamerfont{part}{size=\large}% \setbeamerfont{part name}{series=\bfseries}% \setbeamertemplate{part page}[default]} \def\beamertemplatelargetitlepage{\setbeamertemplate{title page}[default]} \def\beamertemplateboldtitlepage{\setbeamerfont{title}{size=\large,series=\bfseries}% \setbeamertemplate{title page}[default]} \def\beamertemplateboldcenterframetitle{\setbeamerfont{frametitle}{size={},series=\bfseries} \setbeamerfont{framesubtitle}{series=\bfseries} \setbeamertemplate{frametitle}[default][center]} \def\beamertemplateboldframetitle{\setbeamerfont{frametitle}{series=\bfseries} \setbeamerfont{framesubtitle}{series=\bfseries} \setbeamertemplate{frametitle}[default]} \def\beamertemplatelargeframetitle{\setbeamertemplate{frametitle}[default]} \def\beamertemplateboldblocks{\setbeamerfont{block title}{size={},series=\bfseries}\setbeamertemplate{blocks}[default]} \def\beamertemplatelargeblocks{\setbeamertemplate{blocks}[default]} \def\beamertemplateshadowblocks{\setbeamertemplate{blocks}[rounded][shadow=true]} \def\beamertemplateplaintoc{\beamertemplatedefaulttoc} \def\beamertemplatecircleminiframeinverted{\beamertemplatecircleminiframe% \usebeamercolor{mini frames}{use=structure,fg=white,bg=structure.bg}} \def\beamertemplatesphereminiframe{\beamertemplatecircleminiframe} \def\beamertemplatesphereminiframeinverted{\beamertemplatecircleminiframeinverted} \def\beamertemplatelightsectionheads{\usesectionheadtemplate{\hfill\insertsectionhead}{\hfill\color{fg!50!bg}\insertsectionhead} \usesubsectionheadtemplate{\insertsubsectionhead}{\color{fg!50!bg}\insertsubsectionhead}} \let\beamertemplatedarksectionheads=\beamertemplatedefaultsectionheads \def\usecontinuationtemplate{\setbeamertemplate{frametitle continuation}} \def\beamertemplatecontinuationroman{\setbeamertemplate{frametitle continuation}[default]} \def\beamertemplatecontinuationtext{\setbeamertemplate{frametitle continuation}[from second]} \def\beamertemplateroundedbuttons{\setbeamertemplate{button}[default]} \def\beamertemplateoutlinebuttons{\setbeamercolor*{button border}{parent=structure,use=structure,fg=structure.fg!50!bg}} \def\beamertemplatesolidbuttons{\setbeamercolor*{button}{use=structure,bg=structure.fg!50!bg,fg=white} \setbeamercolor*{button border}{use=structure,fg=structure.fg!50!bg}} \def\usetemplatequotation#1#2{ \setbeamertemplate{quotation begin}{#1} \setbeamertemplate{quote begin}{#1} \setbeamertemplate{quotation end}{#2} \setbeamertemplate{quote end}{#2}} \def\beamertemplateheadempty{\setbeamertemplate{headline}{}} \def\beamertemplatefootempty{\setbeamertemplate{footline}{}} \def\beamertemplatefootpagenumber{\setbeamertemplate{footline}[page number]} \def\beamertemplatecaptionownline{\setbeamertemplate{caption}[caption name own line]} \def\beamertemplatecaptionnwithnumber{\setbeamertemplate{caption}[numbered]} \def\beamertemplateroundedblocks{\setbeamertemplate{blocks}[rounded]} \def\beamertemplatetheoremsunnumbered{\setbeamertemplate{theorems}[default]} \def\beamertemplatetheoremsnumbered{\setbeamertemplate{theorems}[numbered]} \def\beamertemplatetheoremsamslike{\setbeamertemplate{theorems}[ams style]} \def\beamertemplatetheoremssimple{\setbeamertemplate{theorems}[normal font]} \def\beamertemplatenavigationsymbolsempty{\setbeamertemplate{navigation symbols}{}} \def\beamertemplatenavigationsymbolsframe{\setbeamertemplate{navigation symbols}[only frame symbol]} \def\beamertemplatenavigationsymbolsvertical{\setbeamertemplate{navigation symbols}[vertical]} \def\beamertemplatenavigationsymbolshorizontal{\setbeamertemplate{navigation symbols}[horizontal]} \def\beamertemplatedefaultsectionheads{% \setbeamertemplate{section in head/foot}[default] \setbeamertemplate{subsection in head/foot}[default] \setbeamertemplate{section in head/foot shaded}[default] \setbeamertemplate{subsection in head/foot shaded}[default] } \def\beamertemplatecircleminiframe{\setbeamertemplate{mini frames}[default]} \def\beamertemplateticksminiframe{\setbeamertemplate{mini frames}[tick]} \def\beamertemplateboxminiframe{\setbeamertemplate{mini frames}[box]} \newcommand\usesidebartemplate[3][left]{% \setbeamersize{sidebar width #1=#2} \setbeamertemplate{sidebar #1}{#3} } \newcommand\beamertemplatesidebarcolor[2][left]{\setbeamercolor{sidebar #1}{bg={#2}}} \def\beamertemplaterightsidebarlogonavigation{\setbeamertemplate{sidebar right}[default] \setbeamersize{sidebar width right=0pt}} \newcommand{\beamertemplatesidebarverticalshading}[3][left]{% \setbeamertemplate{sidebar canvas #1}[vertical shading][top={#3},bottom={#2}]} \newcommand{\beamertemplatesidebarhorizontalshading}[3][left]{% \setbeamertemplate{sidebar canvas #1}[horizontal shading][right={#3},left={#2}]} \define@key{beamer@margin}{descriptionwidth}{% \beamer@descriptionwidth=#1\relax% } \define@key{beamer@margin}{descriptionwidthof}{% \setbox\beamer@tempbox=\hbox{\def\insertdescriptionitem{#1}\usebeamertemplate**{description item}}% \beamer@descriptionwidth=\wd\beamer@tempbox\relax% } \mode { \def\beamersetleftmargin#1{\setbeamersize{text margin left=#1}} \def\beamersetrightmargin#1{\setbeamersize{text margin right=#1}} \long\def\useframetemplate#1#2{\setbeamertemplate{frame begin}{#1}\setbeamertemplate{frame end}{#2}} \def\usebackgroundtemplate{\setbeamertemplate{background canvas}} \def\beamertemplatesolidbackgroundcolor#1{\setbeamercolor{normal text}{bg={#1}}} \long\def\useblocktemplate#1#2{% \setbeamertemplate{block begin}{#1}% \setbeamertemplate{block end}{#2}} \long\def\usealertblocktemplate#1#2{% \setbeamertemplate{block alerted begin}{#1}% \setbeamertemplate{block alerted end}{#2}} \long\def\useexampleblocktemplate#1#2{% \setbeamertemplate{block example begin}{#1}% \setbeamertemplate{block example end}{#2}} \newcommand{\beamertemplategridbackground}[1][]{\setbeamertemplate{background}[grid][step={#1}]} \newcommand{\beamertemplateshadingbackground}[2]{\setbeamertemplate{background canvas}[vertical shading][bottom={#1},top={#2}]} \newcommand\usealerttemplate[2]{\setbeamertemplate{alerted text begin}{#1}\setbeamertemplate{alerted text end}{#2}} \newcommand\usestructuretemplate[2]{\setbeamertemplate{structure begin}{#1}\setbeamertemplate{structure end}{#2}} \newcommand{\beamertemplatebookbibitems}{\setbeamertemplate{bibliography item}[book]} \newcommand{\beamertemplatearticlebibitems}{\setbeamertemplate{bibliography item}[article]} \newcommand{\beamertemplatetextbibitems}{\setbeamertemplate{bibliography item}[text]} \newcommand{\beamertemplatearrowbibitems}{\setbeamertemplate{bibliography item}[triangle]} \newcommand{\beamertemplateonlinebibitems}{\setbeamertemplate{bibliography item}[online]} \def\beamertemplatetransparentcovereddynamic{\setbeamercovered{highly dynamic}} \def\beamertemplatetransparentcovereddynamicmedium{\setbeamercovered{dynamic}} \def\beamertemplatetransparentcovered{\setbeamercovered{transparent}} \def\beamertemplatetransparentcoveredmedium{\setbeamercovered{transparent=10}} \def\beamertemplatetransparentcoveredhigh{\setbeamercovered{transparent=5}} \def\beamertemplatetransparentcoveredhighest{\setbeamercovered{transparent=2}} \def\beamersetuncovermixins#1#2{\setbeamercovered{still covered={#1},again covered={#2}}} } \mode beamer/base/beamerbaseverbatim.sty0000644000175000017500000000656712050430504017163 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % Copyright 2011 by Vedran Mileti\'c, Joseph Wright % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbaseverbatim.sty,v dfdb135076b3 2012/08/30 16:03:43 joseph $ \mode \newwrite\beamer@verbatimfileout \def\beamer@verbatimreadframe{% \begingroup% \let\do\beamer@makeinnocent\dospecials% \count@=127% \@whilenum\count@<255 \do{% \advance\count@ by 1% \catcode\count@=11% }% \beamer@makeinnocent\^^L% and whatever other special cases \endlinechar`\^^M \catcode`\^^M=12% \@ifnextchar\bgroup{\afterassignment\beamer@specialprocessframefirstline\let\beamer@temp=}{\beamer@processframefirstline}}% { \catcode`\{=12% \catcode`\<=1% \gdef\beamer@specialprocessframefirstline<% \beamer@processframefirstline{% } } {\catcode`\^^M=12\endlinechar=-1% \long\gdef\beamer@processframefirstline#1#2^^M{% \def\beamer@test{#1#2}% \ifx\beamer@test\beamer@stopframefirst% \let\next=\beamer@framewritten% \else% \def\beamer@test{#1}% \def\beamer@test@par{\par}% \ifx\beamer@test\beamer@test@par \def\beamer@test{^^J}% \else% \@onelevel@sanitize\beamer@test \edef\beamer@test{\beamer@test\space}% \edef\beamer@test{\expandafter\zap@space\beamer@test\@empty}% \fi \@temptokena{#2}% \immediate\write\beamer@verbatimfileout{\beamer@test\the\@temptokena}% \let\next=\beamer@processframeline% \fi% \next% }% \long\gdef\beamer@processframeline#1^^M{% \def\beamer@test{#1}% \ifx\beamer@test\beamer@stopframe% \let\next=\beamer@framewritten% \else% \immediate\write\beamer@verbatimfileout{#1}% \let\next=\beamer@processframeline% \fi% \next% }% } \def\beamer@setupstoppers#1{% { \escapechar=-1\relax% \xdef\beamer@stopframe{\string\\end\string\{#1\string\}} \xdef\beamer@stopframefirst{\noexpand\end\string\{#1\string\}} } } \def\beamer@framewritten{\endgroup% \beamer@afterexternalframe% } % The following code is partly adapted from code from the alltt package. \mode { \begingroup \lccode`\~=`\' \lowercase{\endgroup \newenvironment{semiverbatim}{% \trivlist \item\relax \if@minipage \else \vskip\parskip \fi \leftskip\@totalleftmargin \rightskip\z@skip \parindent\z@ \parfillskip\@flushglue \parskip\z@skip \@@par \@tempswafalse \def\par{% \if@tempswa \leavevmode\null\@@par\penalty\interlinepenalty \else \@tempswatrue \ifhmode\@@par\penalty\interlinepenalty\fi \fi} \obeylines \def\verbatim@nolig@list{\do\`\do\,\do\'\do\-} \verbatim@font \let\org@prime~% \everymath\expandafter{\the\everymath \catcode`\'=12 \let~\org@prime} \everydisplay\expandafter{\the\everydisplay \catcode`\'=12 \let~\org@prime} \def\dospecials{\do\ \do\$\do\&% \do\#\do\^\do\_\do\%\do\~\do\`\do\,\do\'\do\-} \let\do\@makeother \dospecials \def\\{\char`\\} \def\{{\char`\{} \def\}{\char`\}} \frenchspacing\@vobeyspaces \everypar \expandafter{\the\everypar \unpenalty}} {\endtrivlist}} } \mode beamer/base/beamerbaseoptions.sty0000644000175000017500000000324012050430504017026 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbaseoptions.sty,v 982469101dd6 2010/04/27 12:45:50 rivanvx $ \RequirePackage{keyval}[1997/11/10] \def\ProcessOptionsBeamer{% \let\@tempa\@empty \ifx\@currext\@clsextension% \else \@for\CurrentOption:=\@classoptionslist\do{% \@ifundefined{KV@\@currname @\CurrentOption}% {}{\edef\@tempa{\@tempa,\CurrentOption,}}}% \fi \edef\@tempa{% \noexpand\setkeys{\@currname}{\@tempa\@ptionlist{\@currname.\@currext}}}% \let\beamer@origkverr\KV@err% \ifx\@currext\@clsextension\let\KV@errx=\@gobble\fi% never mind \@tempa% \let\KV@err\beamer@origkverr% \AtEndOfPackage{\let\@unprocessedoptions\relax}} \def\ExecuteOptionsBeamer#1{% \setkeys{\@currname}{#1}} \def\DeclareOptionBeamer#1{\@ifnextchar[{\beamer@dokv{#1}}{\beamer@dokv{#1}[]}} \long\def\beamer@dokv#1[#2]#3{\define@key{\@currname}{#1}[{#2}]{#3}} \def\beamer@filterclassoptions{ \def\beamer@filteredclassoptionslist{} \@for\CurrentOption:=\@classoptionslist\do{% \ifx\CurrentOption\@empty\else \@expandtwoargs\in@{=}{\CurrentOption}% \ifin@ \else \edef\beamer@filteredclassoptionslist{% \beamer@filteredclassoptionslist,\CurrentOption} \fi \fi }% \let\@classoptionslist=\beamer@filteredclassoptionslist } \newcommand\defbeameroption{\define@key{beamer@option}} \newcommand\setbeameroption{\setkeys{beamer@option}} beamer/base/beamerbaseframesize.sty0000644000175000017500000002123312050430504017322 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % Copyright 2011 by Vedran Mileti\'c, Joseph Wright % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbaseframesize.sty,v 70f9d8411e54 2011/09/12 18:58:34 joseph $ \mode \define@key{beamerframe}{allowdisplaybreaks}[4]{% \def\beamer@displaybreak{\allowdisplaybreaks[{#1}]}} \define@key{beamerframe}{allowframebreaks}[0.95]{% \def\beamer@autobreakfactor{#1}\beamer@autobreaktrue} \define@key{beamerframe}{squeeze}[]{% \def\beamer@cramped{\itemsep0pt\topsep0.5pt\relax}} \define@key{beamerframe}{shrink}[0]{% \def\beamer@shrinkpercentage{#1}% \@tempdima=-#1pt% \@tempdima=0.01\@tempdima% \advance\@tempdima by1pt% \edef\beamer@shrinkfactor{\strip@pt\@tempdima}% \@tempcnta=\@tempdima% \divide\@tempcnta by256\relax% \@tempdima=256pt% \divide\@tempdima by\@tempcnta% \edef\beamer@shrinkfactorinv{\strip@pt\@tempdima}% \beamer@shrinktrue% \def\beamer@cramped{\itemsep0pt\topsep0.5pt\relax}} % % Zoom stuff % \define@key{beamerzoom}{border}[1]{\def\beamer@zoomborderwidth{#1}} \def\framezoom<#1><#2>{\@ifnextchar[{\beamer@framezoom<#1><#2>}{\beamer@framezoom<#1><#2>[]}} \def\beamer@framezoom<#1><#2>[#3](#4,#5)(#6,#7){% \par\nointerlineskip% \global\beamer@slidehaszoomtrue% \advance\beamer@zoomcount by1\relax% \def\beamer@zoomborderwidth{0}% \edef\beamer@labelzoomed{beamer@labelzoomed@\the\beamer@zoomframecount @\the\beamer@zoomcount}% \setkeys{beamerzoom}{#3}% \only<#1>{% {\hypersetup{pdfhighlight={/P},pdfborder={0 0 \beamer@zoomborderwidth}}% \global\setbox\@tempboxa=\vbox{\hyperlink{\beamer@labelzoomed}{\vbox to #7{\hbox to#6{\hfil}\vfil}}}}% \ht\@tempboxa=0pt% \wd\@tempboxa=0pt% \dp\@tempboxa=0pt% \setbox\@tempboxa=\vbox{\moveright#4\hbox{\lower#5\vbox{\box\@tempboxa}}}% \ht\@tempboxa=0pt% \wd\@tempboxa=0pt% \dp\@tempboxa=0pt% \global\setbox\beamer@zoombox=\vbox to0pt{\unvbox\beamer@zoombox\box\@tempboxa}% }% \only<#2>{% \@ifundefined{\beamer@labelzoomed}% {% \hypertarget{\beamer@labelzoomed}{}% \expandafter\gdef\csname\beamer@labelzoomed\endcsname{}% }{}% \gdef\beamer@zoomer{% % compute zoom factor \@tempdima=\beamer@frametextheight% \@tempdimb=#7\relax% \@tempcnta=\@tempdimb% \divide\@tempcnta by4096\relax% \multiply\@tempdima by16\relax% \divide\@tempdima by\@tempcnta% \@tempdimb=\paperwidth% \ifbeamer@plainframe% \else% \advance\@tempdimb by-\beamer@leftsidebar% \advance\@tempdimb by-\beamer@rightsidebar\relax% \fi% \@tempdimc=#6\relax% \@tempcntb=\@tempdimc% \divide\@tempcntb by4096\relax% \multiply\@tempdimb by16\relax% \divide\@tempdimb by\@tempcntb% \ifdim\@tempdimb<\@tempdima% \@tempdima=\@tempdimb% \fi% \edef\beamer@temp{\strip@pt\@tempdima}% \@tempdimc=\beamer@frametextheight% \advance\@tempdimc by4pt% \@tempdimb=\paperwidth% \ifbeamer@plainframe% \else% \advance\@tempdimb by-\beamer@leftsidebar% \advance\@tempdimb by-\beamer@rightsidebar\relax% \fi% \setbox\@tempboxa=\vbox{\hsize=\@tempdimb\Acrobatmenu{GoBack}{\vbox to \beamer@frametextheight{\hbox to\@tempdimb{\hfil}\vfil}}}% \ht\@tempboxa=0pt% \wd\@tempboxa=0pt% \dp\@tempboxa=0pt% \setbox\beamer@framebox=\vbox to\beamer@frametextheight{{% \ifbeamer@plainframe\beamer@leftmargin=\Gm@lmargin\fi% \begin{pgfpicture}{\beamer@leftmargin}{-\beamer@frametextheight}{\beamer@leftmargin}{0pt} \pgftext[left,top]{\box\@tempboxa} \pgfpathrectangle{\pgfpoint{0pt}{-\@tempdimc}}{\pgfpoint{\@tempdimb}{\@tempdimc}}% \pgfusepath{clip} \begingroup \pgftransformscale{\beamer@temp} \@tempdima=#4\relax% \@tempdimb=#5\relax% {\pgftransformshift{\pgfpoint{-\@tempdima}{\@tempdimb}}% \pgftext[left,top]{\vbox{\vbox{}\nointerlineskip\unvbox\beamer@framebox}}} \endgroup \end{pgfpicture}% }}% \setbox\beamer@framebox=\vbox{% \nobreak\vbox{}\nobreak\par\nobreak\beamer@entrycode\nobreak% \nointerlineskip\unvbox\beamer@frametitlebox% \nobreak% \box\beamer@framebox% \nobreak% \vss% \beamer@exitcode% }% \global\setbox\beamer@footins=\box\voidb@x% no footnotes in zoomed slides }% }% } \mode
{ \def\framezoom<#1><#2>{\@ifnextchar[{\beamer@framezoom<#1><#2>}{\beamer@framezoom<#1><#2>[]}} \def\beamer@framezoom<#1><#2>[#3](#4,#5)(#6,#7){} } % % Shrink stuff % \def\beamer@shrinkframebox{% \@tempdima=\ht\beamer@framebox% % \ifdim\@tempdima>\beamer@frametextheight% \@tempcnta=\@tempdima% \divide\@tempcnta by 65536\relax% \@tempdimc=\beamer@frametextheight% \divide\@tempdimc by\@tempcnta\relax% \ifdim\@tempdimc>\beamer@shrinkfactor pt% \@tempdimc=\beamer@shrinkfactor pt% \else% \@tempdima=-100\@tempdimc% \advance\@tempdima by100pt% \ClassWarning{beamer}{Frame text is shrunk by a factor of % \strip@pt\@tempdima\space percent instead of \beamer@shrinkpercentage\space percent}% \fi% \edef\beamer@factortemp{\strip@pt\@tempdimc}% \setbox\beamer@framebox=\vbox to\beamer@frametextheight{% \begin{pgfpicture}{0pt}{-\beamer@frametextheight}{0pt}{0pt} {\pgftransformscale{\beamer@factortemp}% \pgftext[left,top]{\box\beamer@framebox}}% \end{pgfpicture}% }% % \fi% } % % Auto break stuff % \splittopskip=10pt \newbox\beamer@splitbox \newcount\beamer@autobreakcount \newdimen\beamer@autobreaklastheight \def\beamer@autobreakframe{% \beamer@slideinframe=1\relax% \advance\beamer@autobreakcount by1\relax% \begin{beamer@frameslide}\relax% \bgroup% \aftergroup\beamer@endautobreak% \afterassignment\beamer@checkframetitle% \let\beamer@next% gobble opening brace } \def\beamer@endautobreak{\end{beamer@frameslide}% \beamer@writeslidentry% \ifvoid\beamer@splitbox% \let\beamer@next=\beamer@reseteecodes% \else% \let\beamer@next=\beamer@continueautobreak% \fi% \beamer@next% } \def\beamer@autobreakframebox{% \global\setbox\beamer@splitbox=\box\voidb@x% \ifbeamer@autobreak% % Ok, frame was overful -> split it! \setbox\@tempboxa=\vsplit\beamer@framebox to\beamer@autobreakfactor\textheight% \global\setbox\beamer@splitbox=\box\beamer@framebox% \@tempdima=\ht\beamer@splitbox% \ifdim\@tempdima<\beamer@autobreaklastheight% \global\beamer@autobreaklastheight=\@tempdima\relax% \else% \setbox\@tempboxa=\vbox{\unvbox\@tempboxa\unvbox\beamer@splitbox}% \global\setbox\beamer@splitbox=\box\voidb@x% \fi% \setbox\beamer@framebox=\vbox to\textheight{\unvbox\@tempboxa% \vskip\beamer@framebottomskipautobreak% \ifvoid\beamer@splitbox% \ifvoid\beamer@footins% \else% \begingroup \usebeamercolor*[fg]{footnote}% \footnoterule% \unvbox \beamer@footins% \global\setbox\beamer@footins=\box\voidb@x% \endgroup \fi% \fi% \beamer@exitcode% }% \else% \setbox\beamer@framebox=\vbox to\textheight{\unvbox\beamer@framebox% \vskip\beamer@framebottomskip% \ifvoid\beamer@footins% \else% \begingroup \usebeamercolor*[fg]{footnote}% \footnoterule% \unvbox \beamer@footins% \global\setbox\beamer@footins=\box\voidb@x% \endgroup \fi% \beamer@exitcode}% \global\setbox\beamer@footins=\box\voidb@x% \fi% } \newtoks\beamer@frametitletoks \newtoks\beamer@framesubtitletoks \def\beamer@continueautobreak{% \refstepcounter{framenumber}% \expandafter\beamer@frametitletoks\expandafter{\beamer@frametitle}% \expandafter\beamer@framesubtitletoks\expandafter{\beamer@shortframetitle}% \edef\beamer@callframetitle{\noexpand\frametitle[\the\beamer@framesubtitletoks]{\the\beamer@frametitletoks}}% \expandafter\expandafter\expandafter\beamer@autobreakframe \expandafter\expandafter\expandafter{% \expandafter\beamer@callframetitle% \expandafter\framesubtitle\expandafter{\insertframesubtitle}% \unvbox\beamer@splitbox}% } \newcommand\insertcontinuationcount{\the\beamer@autobreakcount} \newcommand\insertcontinuationcountroman{\@Roman\beamer@autobreakcount} \newcommand\insertcontinuationtext{(\translate{cont}.)} \mode beamer/base/beamerbasefont.sty0000644000175000017500000003027112050430504016305 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasefont.sty,v 733629cd0c6c 2012/09/19 19:55:31 joseph $ \ifbeamer@amssymb \RequirePackage{amssymb} % For \blacktriangleright; not explicitly required by article, but can cause % weird situations if users find that symbols works in presentation, but not % in article mode. % However, some classes or font packages clash with amssymb, so allow to % disable auto-loading optionally. \fi \mode % % Font theme stuff % \define@key{beamerthm}{size} {\expandafter\def\csname beamer@thmfsize@\beamer@temp\endcsname{#1}} \define@key{beamerthm}{size*} {\expandafter\def\csname beamer@thmfsize@\beamer@temp\endcsname{\fontsize#1}} \define@key{beamerthm}{shape} {\expandafter\def\csname beamer@thmfshape@\beamer@temp\endcsname{#1}} \define@key{beamerthm}{shape*} {\expandafter\def\csname beamer@thmfshape@\beamer@temp\endcsname{\fontshape{#1}}} \define@key{beamerthm}{series} {\expandafter\def\csname beamer@thmfseries@\beamer@temp\endcsname{#1}} \define@key{beamerthm}{series*} {\expandafter\def\csname beamer@thmfseries@\beamer@temp\endcsname{\fontseries{#1}}} \define@key{beamerthm}{family} {\expandafter\def\csname beamer@thmffamily@\beamer@temp\endcsname{#1}} \define@key{beamerthm}{family*} {\expandafter\def\csname beamer@thmffamily@\beamer@temp\endcsname{\fontfamily{#1}}} \define@key{beamerthm}{parent} {\expandafter\def\csname beamer@thmfinherits@\beamer@temp\endcsname{% \@for\@temp:={#1}\do{\expandafter\usebeamerfont\expandafter{\@temp}}}} \def\setbeamerfont{\@ifstar{\beamer@clearbeamerfont}{\beamer@setbeamerfont}} \newcommand\beamer@clearbeamerfont[2]{% \def\beamer@temp{#1} \setkeys{beamerthm}{size={},shape={},series={},family={},parent={}} \setkeys{beamerthm}{#2} } \newcommand\beamer@setbeamerfont[2]{% \def\beamer@temp{#1} \setkeys{beamerthm}{#2} } \def\usebeamerfont{\@ifstar{\reset@font\beamer@usebeamerfont}{\beamer@usebeamerfont}} \newcommand\beamer@usebeamerfont[1]{% \csname beamer@thmfinherits@#1\endcsname% \csname beamer@thmfsize@#1\endcsname% \csname beamer@thmfshape@#1\endcsname% \csname beamer@thmfseries@#1\endcsname% \csname beamer@thmffamily@#1\endcsname% \selectfont} % % computer modern font size stuff - redefinition for oversized fonts. % Not used if other packages like lmodern kick in. % \def\EC@family#1#2#3#4#5{% \DeclareFontShape{#1}{#2}{#3}{#4}% {<5><6><7><8><9><10><10.95><12><14.4>% <17.28><20.74><24.88><29.86><35.83><42.99><51.59>genb*#5}{}} \EC@family{T1}{cmr}{m}{n}{ecrm} \EC@family{T1}{cmr}{m}{sl}{ecsl} \EC@family{T1}{cmr}{m}{it}{ecti} \EC@family{T1}{cmr}{m}{sc}{eccc} \EC@family{T1}{cmr}{bx}{n}{ecbx} \EC@family{T1}{cmr}{b}{n}{ecrb} \EC@family{T1}{cmr}{bx}{it}{ecbi} \EC@family{T1}{cmr}{bx}{sl}{ecbl} \EC@family{T1}{cmr}{bx}{sc}{ecxc} \EC@family{T1}{cmr}{m}{ui}{ecui} \DeclareFontShape{OT1}{cmr}{m}{n}% {<5><6><7><8><9><10><12>gen*cmr% <10.95>cmr10% <14.4>cmr12% <17.28><20.74><24.88><29.86><35.83><42.99><51.59>cmr17}{} \DeclareFontShape{OT1}{cmr}{m}{sl}% {<5><6><7>cmsl8% <8><9>gen*cmsl% <10><10.95>cmsl10% <12><14.4><17.28><20.74><24.88><29.86><35.83><42.99><51.59>cmsl12% }{} \DeclareFontShape{OT1}{cmr}{m}{it}% {<5><6><7>cmti7% <8>cmti8% <9>cmti9% <10><10.95>cmti10% <12><14.4><17.28><20.74><24.88><29.86><35.83><42.99><51.59>cmti12% }{} \DeclareFontShape{OT1}{cmr}{m}{sc}% {<5><6><7><8><9><10><10.95><12>% <14.4><17.28><20.74><24.88><29.86><35.83><42.99><51.59>cmcsc10% }{} \DeclareFontShape{OT1}{cmr}{m}{ui} {<5><6><7><8><9><10><10.95><12>% <14.4><17.28><20.74><24.88><29.86><35.83><42.99><51.59>cmu10% }{} \DeclareFontShape{OT1}{cmr}{b}{n} {<5><6><7><8><9><10><10.95><12>% <14.4><17.28><20.74><24.88><29.86><35.83><42.99><51.59>cmb10% }{} \DeclareFontShape{OT1}{cmr}{bx}{n} {<5><6><7><8><9>gen*cmbx% <10><10.95>cmbx10% <12><14.4><17.28><20.74><24.88><29.86><35.83><42.99><51.59>cmbx12% }{} \DeclareFontShape{OT1}{cmr}{bx}{sl} {<5><6><7><8><9>% <10><10.95><12><14.4><17.28><20.74><24.88><29.86><35.83><42.99><51.59>cmbxsl10% }{} \DeclareFontShape{OT1}{cmr}{bx}{it} {<5><6><7><8><9>% <10><10.95><12><14.4><17.28><20.74><24.88><29.86><35.83><42.99><51.59>cmbxti10% }{} \DeclareFontFamily{T1}{cmss}{} \EC@family{T1}{cmss}{m}{n}{ecss} \EC@family{T1}{cmss}{m}{sl}{ecsi} \EC@family{T1}{cmss}{m}{it}{ecsi} \EC@family{T1}{cmss}{bx}{n}{ecsx} \EC@family{T1}{cmss}{bx}{it}{ecso} \EC@family{T1}{cmss}{bx}{sl}{ecso} \DeclareFontShape{T1}{cmss}{sbc}{n}{% <5><6><7><8><9><10><10.95><12><14.4><17.28>% <20.74><24.88><29.86><35.83><42.99><51.59>% ecssdc10 }{} \DeclareFontShape{OT1}{cmss}{m}{n} {% <5><6><7><8>cmss8% <9>cmss9% <10><10.95>cmss10% <12><14.4>cmss12% <17.28><20.74><24.88><29.86><35.83><42.99><51.59>cmss17% }{} \DeclareFontShape{OT1}{cmss}{m}{sl} {% <5><6><7><8>cmssi8<9>cmssi9% <10><10.95>cmssi10% <12><14.4>cmssi12% <17.28><20.74><24.88><29.86><35.83><42.99><51.59>cmssi17% }{} \DeclareFontShape{OT1}{cmss}{m}{it} {% <5><6><7><8>cmssi8<9>cmssi9% <10><10.95>cmssi10% <12><14.4>cmssi12% <17.28><20.74><24.88><29.86><35.83><42.99><51.59>cmssi17% }{} \DeclareFontShape{OT1}{cmss}{sbc}{n} {% <5><6><7><8><9>cmssdc10% <10><10.95><12><14.4><17.28><20.74><24.88><29.86><35.83><42.99><51.59>cmssdc10% }{} \DeclareFontShape{OT1}{cmss}{bx}{n} {% <5><6><7><8><9>cmssbx10% <10><10.95><12><14.4><17.28><20.74><24.88><29.86><35.83><42.99><51.59>cmssbx10% }{} \AtBeginDocument{% \def\beamer@cmr{cmr} \edef\beamer@fmdef{\mathfamilydefault} % supress for standard cm \ifx\beamer@fmdef\beamer@cmr\beamer@suppressreplacementstrue\fi % supress for mathtime serif and math minion serif \@ifpackageloaded{arevmath}{\ifbeamer@sansmath\else\beamer@suppressreplacementstrue\fi}{} \@ifpackageloaded{hvmath}{\ifbeamer@sansmath\else\beamer@suppressreplacementstrue\fi}{} \@ifpackageloaded{kpfonts}{\ifbeamer@sansmath\else\beamer@suppressreplacementstrue\fi}{} \@ifpackageloaded{lucidabr}{\ifbeamer@sansmath\else\beamer@suppressreplacementstrue\fi}{} \@ifpackageloaded{lucimatx}{\ifbeamer@sansmath\else\beamer@suppressreplacementstrue\fi}{} \@ifpackageloaded{mathpmnt}{\ifbeamer@sansmath\else\beamer@suppressreplacementstrue\fi}{} \@ifpackageloaded{mathpple}{\ifbeamer@sansmath\else\beamer@suppressreplacementstrue\fi}{} \@ifpackageloaded{mathtime}{\ifbeamer@sansmath\else\beamer@suppressreplacementstrue\fi}{} \@ifpackageloaded{mtpro}{\ifbeamer@sansmath\else\beamer@suppressreplacementstrue\fi}{} \@ifpackageloaded{mtpro2}{\ifbeamer@sansmath\else\beamer@suppressreplacementstrue\fi}{} \ifbeamer@suppressreplacements\else \ifbeamer@sansmath \SetSymbolFont{operators}{normal}{OT1}{cmss}{m}{n} \ifx\mv@bold\@undefined \else \SetSymbolFont{operators}{bold}{OT1}{cmss}{bx}{n} \fi \fi \DeclareSymbolFont{numbers}{\encodingdefault}{\mathfamilydefault}{m}{n} \DeclareSymbolFont{pureletters}{\encodingdefault}{\mathfamilydefault}{m}{it} \SetMathAlphabet{\mathrm}{normal}{\encodingdefault}{\rmdefault}{m}{n} \DeclareMathAlphabet{\mathbf}{\encodingdefault}{\mathfamilydefault}{bx}{n} \DeclareMathAlphabet{\mathsf}{\encodingdefault}{\sfdefault}{m}{n} \DeclareMathAlphabet{\mathit}{\encodingdefault}{\mathfamilydefault}{m}{it} \DeclareMathAlphabet{\mathtt}{\encodingdefault}{\ttdefault}{m}{n} \ifx\mv@bold\@undefined\else \SetSymbolFont{numbers}{bold}{\encodingdefault}{\mathfamilydefault}{bx}{n} \SetSymbolFont{pureletters}{bold}{\encodingdefault}{\mathfamilydefault}{bx}{it} \SetMathAlphabet{\mathrm}{bold}{\encodingdefault}{\rmdefault}{bx}{n} \SetMathAlphabet{\mathbf}{bold}{\encodingdefault}{\mathfamilydefault}{bx}{n} \SetMathAlphabet{\mathsf}{bold}{\encodingdefault}{\sfdefault}{bx}{n} \SetMathAlphabet{\mathit}{bold}{\encodingdefault}{\mathfamilydefault}{bx}{it} \SetMathAlphabet{\mathtt}{bold}{\encodingdefault}{\ttdefault}{bx}{n} \fi \def\operator@font{\mathgroup\symnumbers} \DeclareMathSymbol{0}\mathalpha{numbers}{"30} \DeclareMathSymbol{1}\mathalpha{numbers}{"31} \DeclareMathSymbol{2}\mathalpha{numbers}{"32} \DeclareMathSymbol{3}\mathalpha{numbers}{"33} \DeclareMathSymbol{4}\mathalpha{numbers}{"34} \DeclareMathSymbol{5}\mathalpha{numbers}{"35} \DeclareMathSymbol{6}\mathalpha{numbers}{"36} \DeclareMathSymbol{7}\mathalpha{numbers}{"37} \DeclareMathSymbol{8}\mathalpha{numbers}{"38} \DeclareMathSymbol{9}\mathalpha{numbers}{"39} \DeclareMathSymbol{A}\mathalpha{pureletters}{"41} \DeclareMathSymbol{B}\mathalpha{pureletters}{"42} \DeclareMathSymbol{C}\mathalpha{pureletters}{"43} \DeclareMathSymbol{D}\mathalpha{pureletters}{"44} \DeclareMathSymbol{E}\mathalpha{pureletters}{"45} \DeclareMathSymbol{F}\mathalpha{pureletters}{"46} \DeclareMathSymbol{G}\mathalpha{pureletters}{"47} \DeclareMathSymbol{H}\mathalpha{pureletters}{"48} \DeclareMathSymbol{I}\mathalpha{pureletters}{"49} \DeclareMathSymbol{J}\mathalpha{pureletters}{"4A} \DeclareMathSymbol{K}\mathalpha{pureletters}{"4B} \DeclareMathSymbol{L}\mathalpha{pureletters}{"4C} \DeclareMathSymbol{M}\mathalpha{pureletters}{"4D} \DeclareMathSymbol{N}\mathalpha{pureletters}{"4E} \DeclareMathSymbol{O}\mathalpha{pureletters}{"4F} \DeclareMathSymbol{P}\mathalpha{pureletters}{"50} \DeclareMathSymbol{Q}\mathalpha{pureletters}{"51} \DeclareMathSymbol{R}\mathalpha{pureletters}{"52} \DeclareMathSymbol{S}\mathalpha{pureletters}{"53} \DeclareMathSymbol{T}\mathalpha{pureletters}{"54} \DeclareMathSymbol{U}\mathalpha{pureletters}{"55} \DeclareMathSymbol{V}\mathalpha{pureletters}{"56} \DeclareMathSymbol{W}\mathalpha{pureletters}{"57} \DeclareMathSymbol{X}\mathalpha{pureletters}{"58} \DeclareMathSymbol{Y}\mathalpha{pureletters}{"59} \DeclareMathSymbol{Z}\mathalpha{pureletters}{"5A} \DeclareMathSymbol{a}\mathalpha{pureletters}{"61} \DeclareMathSymbol{b}\mathalpha{pureletters}{"62} \DeclareMathSymbol{c}\mathalpha{pureletters}{"63} \DeclareMathSymbol{d}\mathalpha{pureletters}{"64} \DeclareMathSymbol{e}\mathalpha{pureletters}{"65} \DeclareMathSymbol{f}\mathalpha{pureletters}{"66} \DeclareMathSymbol{g}\mathalpha{pureletters}{"67} \DeclareMathSymbol{h}\mathalpha{pureletters}{"68} \DeclareMathSymbol{i}\mathalpha{pureletters}{"69} \DeclareMathSymbol{j}\mathalpha{pureletters}{"6A} \DeclareMathSymbol{k}\mathalpha{pureletters}{"6B} \DeclareMathSymbol{l}\mathalpha{pureletters}{"6C} \DeclareMathSymbol{m}\mathalpha{pureletters}{"6D} \DeclareMathSymbol{n}\mathalpha{pureletters}{"6E} \DeclareMathSymbol{o}\mathalpha{pureletters}{"6F} \DeclareMathSymbol{p}\mathalpha{pureletters}{"70} \DeclareMathSymbol{q}\mathalpha{pureletters}{"71} \DeclareMathSymbol{r}\mathalpha{pureletters}{"72} \DeclareMathSymbol{s}\mathalpha{pureletters}{"73} \DeclareMathSymbol{t}\mathalpha{pureletters}{"74} \DeclareMathSymbol{u}\mathalpha{pureletters}{"75} \DeclareMathSymbol{v}\mathalpha{pureletters}{"76} \DeclareMathSymbol{w}\mathalpha{pureletters}{"77} \DeclareMathSymbol{x}\mathalpha{pureletters}{"78} \DeclareMathSymbol{y}\mathalpha{pureletters}{"79} \DeclareMathSymbol{z}\mathalpha{pureletters}{"7A} \fi } \DeclareOldFontCommand{\rm}{\normalfont\rmfamily}{\mathrm} \DeclareOldFontCommand{\sf}{\normalfont\sffamily}{\mathsf} \DeclareOldFontCommand{\tt}{\normalfont\ttfamily}{\mathtt} \DeclareOldFontCommand{\bf}{\normalfont\bfseries}{\mathbf} \DeclareOldFontCommand{\it}{\normalfont\itshape}{\mathit} \DeclareOldFontCommand{\sl}{\normalfont\slshape}{\@nomath\sl} \DeclareOldFontCommand{\sc}{\normalfont\scshape}{\@nomath\sc} \DeclareRobustCommand*\cal{\@fontswitch\relax\mathcal} \DeclareRobustCommand*\mit{\@fontswitch\relax\mathnormal} \newcommand\Tiny{\@setfontsize\Tiny{4}{5}} \newcommand\TINY{\@setfontsize\Tiny{3}{4}} \mode
{ \let\Tiny=\tiny \let\TINY=\tiny \newcommand\setbeamerfont{\@ifstar{\@gobbletwo}{\@gobbletwo}} \newcommand\usebeamerfont{\@ifstar{\beamer@optgog}{\beamer@optgog}} } \mode beamer/base/art/0000755000175000017500000000000012050430504013352 5ustar mohuramohurabeamer/base/art/beamericonbook.20.eps0000644000175000017500000006027212050430504017271 0ustar mohuramohura%!PS-Adobe-3.0 EPSF-3.0 %%Creator: GIMP PostScript file plugin V 1.12 by Peter Kirchgessner %%Title: /n/mappazza/home4/algo/tantau/texmf/tex/latex/classes/latex-beamer/beamericonbook.20.eps %%CreationDate: Wed Oct 29 13:59:19 2003 %%DocumentData: Clean7Bit %%LanguageLevel: 2 %%Pages: 1 %%BoundingBox: 14 14 29 27 %%EndComments %%BeginProlog % Use own dictionary to avoid conflicts 10 dict begin %%EndProlog %%Page: 1 1 % Translate for offset 14.173228 14.173228 translate % Translate to begin of first scanline 0.000000 11.952000 translate 13.968000 -11.952000 scale % Image geometry 194 166 8 % Transformation matrix [ 194 0 0 166 0 0 ] % Strings to hold RGB-samples per scanline /rstr 194 string def /gstr 194 string def /bstr 194 string def {currentfile /ASCII85Decode filter /RunLengthDecode filter rstr readstring pop} {currentfile /ASCII85Decode filter /RunLengthDecode filter gstr readstring pop} {currentfile /ASCII85Decode filter /RunLengthDecode filter bstr readstring pop} true 3 %%BeginData: 23693 ASCII Bytes colorimage JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> XoACqrpTgJ!:QHXJ,~> XoACqrpTgJ!:QHXJ,~> XoACqrpTgJ!:QHXJ,~> ZN'pmp#Z8KT)X<~> ZN'pmp#Z8KT)X<~> ZN'pmp#Z8KT)X<~> \GlR'rpTOB!8RM7!;E,cJ,~> \GlR'rpTOB!8RM7!;E,cJ,~> \GlR'rpTOB!8RM7!;E,cJ,~> ^&S*#p#Z85rnRJ(!SlZ5joFkCs*t~> ^&S*#p#Z85rnRJ(!SlZ5joFkCs*t~> ^&S*#p#Z85rnRJ(!SlZ5joFkCs*t~> _uB`2rpTOBrnR1u!9*q>!:QW]J,~> _uB`2rpTOBrnR1u!9*q>!:QW]J,~> _uB`2rpTOBrnR1u!9*q>!:QW]J,~> aT)8.p#Z85rnQto!8RS9!:QZ^J,~> aT)8.p#Z85rnQto!8RS9!:QZ^J,~> aT)8.p#Z85rnQto!8RS9!:QZ^J,~> cMmn=rpTOBrnQ_h!8RS9!UocYs*t~> cMmn=rpTOBrnQ_h!8RS9!UocYs*t~> cMmn=rpTOBrnQ_h!8RS9!UocYs*t~> e,TF9p#Z85rnQMb!8RP8!;E>iJ,~> e,TF9p#Z85rnQMb!8RP8!;E>iJ,~> e,TF9p#Z85rnQMb!8RP8!;E>iJ,~> g&D'HrpTOBrnQ5Z!9*q>!;EAjJ,~> g&D'HrpTOBrnQ5Z!9*q>!;EAjJ,~> g&D'HrpTOBrnQ5Z!9*q>!;EAjJ,~> hZ*TDp#Z85rnQMbs4mb:ki;Hi!9*q>!:QicJ,~> hZ*TDp#Z85rnQMbs4%2#e("0E!9*q>!:QicJ,~> hZ*TDp#Z85rnQMbs4.8%eCF?G!9*q>!:QicJ,~> jSo5SrpTOBrnQMb!oMhiq<.h=pt#N)roO4LW;hA~> jSo5SrpTOBrnQJas4-qo!7^eq!9*q>!:QldJ,~> jSo5SrpTOBrnQMb!nc)Tq:#Dppt#N)roO4LW;hA~> l2UbOp#Z85rnQMbs5*h=rU'@C!9 l2UbOp#Z85rnQ8[pX9,lpt#N$roO4LWW.J~> l2UbOp#Z85rnQMbs4I8&pXB2npt#N$roO4LWW.J~> n,EC^rpTOBrnQMbrnmG:p?2M4q:>W%rT4+SX8d\~> n,EC^rpTOBrnQ#TpW%rT4+SX8d\~> n,EC^rpTOBrnQMbrn-qtp=')nq:>W%rT4+SX8d\~> o`+pZp#Z85rnQMbs5*h=nEor5!8[J&!SlZ5joG.Ws*t~> o`+pZp#Z85rnPfNpZ&iVqs>pT4CF~> o`+pZp#Z85rnQMbs4Henp=')nq:>Z&iVqs>pT4CF~> p\t9gn+PoCgu?rbhs'P%kQ'H6f)Xe/joFkPs*t~> p\t9gn+PoCgrJ%?df@qnf)Xe/joFkPs*t~> p\t9gn+PoCgu?rbf]h)_e,\(pf)Xe/joFkPs*t~> q#:?gqW7e:rnQMbs5*h=j6cR(!9!:R)jJ,~> q#:?gqW7e:rnP?Ap q#:?gqW7e:rnQMbs4H>ap=')mpt#N)roO4LY5a"~> q>UHhrT=.8in"7ihr!5Vp?2M:pt#N$roO4LYQ'+~> q>UHhrT=.8in"1_g=Q&I!7^eq!8RS9!:R,kJ,~> q>UHhrT=.8in"7bf\#!4p=')mpt#N$roO4LYQ'+~> q>UQck2tX`fDjb/kl(#)mIo`Ej5'O_!8RS9!Uocfs*t~> q>UQck2tX`fDjM$g"P'OdfItKq:>W%roO7MpTaaK~> q>UQck2tX`fDjM(g\op]g%Nnre^jQJ!8RS9!Uocfs*t~> qYpQiroWIsro!M>g?nRs!8[J&!8RP8!;Ef!J,~> qYpQiroWIsrn-qtg=Q#H!7gns!8RP8!;Ef!J,~> qYpQiroWIsrn7##g=c/K!7ptt!8RP8!;Ef!J,~> qYpZdk2tIefDjb/kj\)qmIfZCh>#S%iVqs>pTsmM~> qYpZdk2tIefDjLlg"P'Ndf@qnf)Xe/joG.^s*t~> qYpZdk2tIefDjM(g[O"Pg%Ehpf(dhsiVqs>pTsmM~> qZ$QW!8R4us5=+=o()>@mI8isp#lD9pt#N)roO4L[/YX~> qZ$QW!8R4us4[\1hr!5EmFg4Fp!Wojpt#N)roO4L[/YX~> qZ$QW!8R4urnIJ3s5*.ug=c/K!7gkr!9*q>!:R;pJ,~> qu6cek2tXtf)jsjli-PVoD\=\na5i"mIfZCj7q4+iVqs>n$W1G~> qu6cek2tXtf)jgbj8S0?ir7j8h!NeKfCdSmeG.VqiVqs>n$W1G~> qu6cek2tXtf)jgbj8S3@j8S$;hX0+Pg%EhpebI_riVqs>n$W1G~> qu6cek2tIrfDkUEpAagbo`+O^o)J7InCm:&kQ'Z qu6cek2tIrfDk:huDL!g"P'Ndf@nmf)XV*joFkYs*t~> qu6cek2tIrfDk: qu?ZXqpti-rqHEcs7QB`s7?6\s7,LGg?nOr!8[J&!8RP8!;F#'J,~> qu?ZXqpti*rpKdOs60IDs5O%8s4m"pg=PuG!7gns!8RP8!;F#'J,~> qu?ZXqpti*rpKdOs60IEs5X+;s5*.ug=c,J!7ptt!8RP8!;F#'J,~> r;Qlfk2tY"f)Y4:p\smdp&=U`oD\=\na5i"mI]TBh>,Y'gu87p!;F&(J,~> r;Qlfk2tY"f)Y"4mf)PPkl0]Dir7j8h!NeKfC[MlebRetgu87p!;F&(J,~> r;Qlfk2tY"f)Y"4mf)PPkl0`Ej8S$;hX0+Pg% r;Qlfk2tIrfDG=ApAagbo`+O^o)J7InCm:%kQ'H6f)Xe/joFk]s*t~> r;Qlfk2tIrf)Y18mf)PPkl0]Dir7j8h!NeKfC[MlebI_riVqs>n%/OL~> r;Qlfk2tIrf)Y.7mf)PPkl0`Ej8S$;hX0+Pg%n%/OL~> r;ZcYqpti-qY1!_s7QB`s7?6\s7,LGg?nOr!9!:RQ"J,~> r;ZcYqpto)m-OZrnmb2mFg4Fo[ r;ZcYqpto)lg+K:rp0UJroX7@ro*n6mG-FKo[Elkpt#N)roO4L]DmB~> r;ZfZ!8RJ'!UTOVp\smdp&=U`oD\=\na5i"mI]TBj7q4+h#?F9n%A[N~> r;ZfZ!8RJ'"6&D/m/6;Nli62Jjo=?>huDL!g"P'Mdf@nmf)XV*joFk_s*t~> r;ZfZ!8RJ'"6&D.lhp2Mli62Jk5XK@iW%d%gtLHRe,\%of)XV*joFk_s*t~> rVlugk2tIsf)Xh0pA4O_pAagbo`+O^o)J7InCm:%kQ0`"q:>W%roO7MpV-ZX~> rVlugk2tIsf*0skjlYprr9jRMs60IDs5O%8s4m"pg=PuG!S#Zqf)XV*joOrF^Ai]~> rVlugk2tIsf*0skjlYmpr9jRMs60IEs5X+;s5*.ug=c,J!S,csf)XV*joOrF^Ai]~> rVlugk2tIsf)Xh/pA4O_pAagbo`+O^o)J7InCm:$kQ'H7f)XV)joG.js*t~> rVlugk2tIsf)XV*jT=T2m/6;Nli62Jjo=?>huDL!g"P'Ldf@qof)XV)joG.js*t~> rVlugk2tIsf)XV*jT=T1lhp2Mli62Jk5XK@iW%d%gtLHQe,\(qf)XV)joG.js*t~> rVlugk2tIsf)Xh.pA4O_pAagbo`+O^o)J7InCm:$kQ'H6f)Xe/joG.ks*t~> rVlugk2tIsf)XV)jT=T2m/6;Nli62Jjo=?>huDL!g"P'Ldf@qnf)Xe/joG.ks*t~> rVlugk2tIsf)XV)jT=T1lhp2Mli62Jk5XK@iW%d%gtLHQe,\(pf)Xe/joG.ks*t~> rVulZ!8RM(!93nLqY1!_s7QB`s7?6\s7,LGg?nLq!9!:Rc(J,~> rVulZ!8RM(!8RM6!p8k9r9jRMs60IDs5O%8s4m"pg=PrF!7^eq!9*q>!:Rc(J,~> rVulZ!8RM(!8RM6!p8h7r9jRMs60IEs5X+;s5*.ug=c)I!7gkr!9*q>!:Rc(J,~> rVulZqpti8qY'd[rq?Bbrq-6^rpp*ZmI8isoB627pt#N)roO4L_Z,,~> rVulZqpti,qrInAm-OZrnmb2mFg4Fo@!]hpt#N)roO4L_Z,,~> rVulZqpti,qrInAlg+K:rp0UJroX7@ro*n6mG-FKo@*cjpt#N)roO4L_Z,,~> rVulZqq(lBqY'd[rq?Bbrq-6^rpp*ZmI8isoB627pt#N$roO4L_uG5~> rVulZqq(Z*!p8k9r9jRMs60IDs5O%8s4m"pg=PrF!7^eq!8RS9!:Ri*J,~> rVulZqq(Z*!p8h7r9jRMs60IEs5X+;s5*.ug=c)I!7gkr!8RS9!:Ri*J,~> rVulZqq(iAqY'd[rq?Bbrq-6^rpp*ZmI8iso&p)0q:>W%rT4+S`W(G~> rVulZqq(W)!p8k9r9jRMs60IDs5O%8s4m"pg=PoE!7gns!8RP8!;FJ4J,~> rVulZqq(W)!p8h7r9jRMs60IEs5X+;s5*.ug=c&H!7ptt!8RP8!;FJ4J,~> rVuo[!9*h,rV-0^qY1!_s7QB`s7?6\s7,LGg?nIp!8[J&!SlZ5joG.qs*t~> rVuo[!9*h,pZ2J=m-OZrnmb2mFg4Fo$[Thq:>Z&iVqs>pW!5`~> rVuo[!9*h,pZ2J=lg+K:rp0UJroX7@ro*n6mG-FKo$dZjq:>Z&iVqs>pW!5`~> rVuo[!8RJ'r:g']qY1!_s7QB`s7?6\s7,LGg?nIp!8[G%!9*q>!:Ru.J,~> rVuo[!8RJ'p>lArnmb2mFg4Fo$[Thpt#N)roO4La8^Y~> rVuo[!8RJ'p>lA rVuo[!8RJ'qtKs\qY1!_s7QB`s7?6\s7,LGg?nIp!9!:S#/J,~> rVuo[!8RJ'p#Q8;m-OZrnmb2mFg4Fo$[Tgpt#N)roO4LaT$b~> rVuo[!8RJ'p#Q8;lg+K:rp0UJroX7@ro*n6mG-FKo$dZipt#N)roO4LaT$b~> rVulZqq(]=qY'd[rq?Bbrq-6^rpp*ZmI8iso&p)6pt#N$roO4Lao?k~> rVulZqq(K%!p8k9r9jRMs60IDs5O%8s4m"pg=PoE!7^eq!8RS9!:S&0J,~> rVulZqq(K%!p8h7r9jRMs60IEs5X+;s5*.ug=c&H!7gkr!8RS9!:S&0J,~> rVulZqq(Z,Y&h#?F:n+Y$*J,~> rVulZqq(H$!p8k9r9jRMs60IDs5O%8s4m"pg=PoE!S#Zqf)XV*joOrFbQ!(~> rVulZqq(H$!p8h7r9jRMs60IEs5X+;s5*.ug=c&H!S,csf)XV*joOrFbQ!(~> rVulZqq(W;qY'd[rq?Bbrq-6^rpp*ZmI8isn`Tu/q:>W%rT4+Sbl<1~> rVulZqq(E#!p8k9r9jRMs60IDs5O%8s4m"pg=PlD!7gns!8RP8!;F_;J,~> rVulZqq(E#!p8h7r9jRMs60IEs5X+;s5*.ug=c#G!7ptt!8RP8!;F_;J,~> rVulZqpti-q"OXYqY1!_s7QB`s7?6\s7,LGg?nFo!8[G%!9*q>!;Fb rVulZqpti'o&Tr8m-OZrnmb2mFg4Fn^@Kgpt#N)roO4Tc2W:~> rVulZqpti'o&Tr8lg+K:rp0UJroX7@ro*n6mG-FKn^IQipt#N)roO4Tc2W:~> rVlugk2tIsf)Xh)p\OU[p\smdp&=U`oD\=\na5i"mIBB?j7q4+iVqs>n':r`~> rVlugk2tIsf)XUrjT=T2m/6;Nli62Jjo=?>huDL!g"P'Jdf@nmf)Xe/joFkqs*t~> rVlugk2tIsf)XUrjT=T1lhp2Mli62Jk5XK@iW%d%gtLHOe,\%of)Xe/joFkqs*t~> rVlugk2tIsf)Xh(p\OU[p\smdp&=U`oD\=\na5i"mIBB?j7q4+iVqs>n'D#a~> rVlugk2tIsf)a[hn`9i7m-OZrnmb2mFg4Fn^@Kfpt#N)roO4Lci8L~> rVlugk2tIsf)a[hn`9i7lg+K:rp0UJroX7@ro*n6mG-FKn^IQhpt#N)roO4Lci8L~> rVlugk2tIsf)Xh'p\OU[p\smdp&=U`oD\=\na5i"mIBB?j7q4+h#?F9n'M)b~> rVlugk2tIsf)jaik4.O7k3VI4mf)PPkl0]Dir7j8h!NeKfC@;ieG.Vqh#?F9n'M)b~> rVlugk2tIsf)jaik4.O7k3M@2mf)PPkl0`Ej8S$;hX0+Pg%!PlebI_rh#?F9n'M)b~> rVluok2tIrfC\h6pA4O_pAagbo`+O^o)J7InCm:!kQ'H7f)XV)joG/(s*t~> rVluok2tIrfDaq&jT=T2m/6;Nli62Jjo=?>huDL!g"P'Idf@qof)XV)joG/(s*t~> rVluok2tIrfDaq&jT=T1lhp2Mli62Jk5XK@iW%d%gtLHNe,\(qf)XV)joG/(s*t~> r;ZfZ!9*h,!:BFQqY'd[rq?Bbrq-6^rpp*ZmI8isnE9l.q:>Z&iVqs>pXB.m~> r;ZfZ!9*h,!9*q>n`9i7m-OZrnmb2mFg4FnC%Bfq:>Z&iVqs>pXB.m~> r;ZfZ!9*h,!9*q>n`9i7lg+K:rp0UJroX7@ro*n6mG-FKnC.Hhq:>Z&iVqs>pXB.m~> r;ZcYqpti-oCr+TqY1!_s7QB`s7?6\s7,LGg?nCn!8[G%!9*q>!:SG;J,~> r;ZcYqpti'rT!:SG;J,~> r;ZcYqpti'rT!:SG;J,~> r;Qlfk2tIrfCJ\4pA4O_pAagbo`+O^o)J7InCm:!kQ'Z r;Qlfk2tIrfDOe$jT=T2m/6;Nli62Jjo=?>huDL!g"P'Idf@nmf)Xe/joFl#s*t~> r;Qlfk2tIrfDOe$jT=T1lhp2Mli62Jk5XK@iW%d%gtLHNe,\%of)Xe/joFl#s*t~> r;Qlnk2tY"f)Xh$p\OU[p\smdp&=U`oD\=\na5i"mI9<>j7q4+h#?F9n(.Mh~> r;Qlnk2tY"f)XV(k4.O7k3VI4mf)PPkl0]Dir7j8h!NeKfC75heG.Vqh#?F9n(.Mh~> r;Qlnk2tY"f)XV(k4.O7k3M@2mf)PPkl0`Ej8S$;hX0+Pg$mJkebI_rh#?F9n(.Mh~> qu?ZX!8RM(!93PCqY'd[rq?Bbrq-6^rpp*ZmI8isnE9o5h>,Y&h#?F:n+YK7J,~> qu?ZX!8RM(!8RJ6n`9i7m-OZrnmb2mFg4FnC%EfebResh#?F:n+YK7J,~> qu?ZX!8RM(!8RJ6n`9i7lg+K:rp0UJroX7@ro*n6mG-FKnC.Khf(mnth#?F:n+YK7J,~> qu6cek2tIrf)Y4.p\OU[p\smdp&=U`oD\=\na5i"mI06=h>,Y&h#6@8pY#Rs~> qu6cek2tIrf)Xe,k4.O7k3VI4mf)PPkl0]Dir7j8h!NeKfC./gebResh#6@8pY#Rs~> qu6cek2tIrf)Xe,k4.O7k3M@2mf)PPkl0`Ej8S$;hX0+Pg$dDjf(mnth#6@8pY#Rs~> qu6ZjroX+0!93MBqY'd[rq?Bbrq-6^rpp*ZmI8isn)sc-pt#N)roO4TgAc[~> qu6ZjroX+0!8RG5n`9i7m-OZrnmb2mFg4Fn'_9ept#N)roO4TgAc[~> qu6ZjroX+0!8RG5n`9i7lg+K:rp0UJroX7@ro*n6mG-FKn'h?gpt#N)roO4TgAc[~> qZ$QW!8RJ'!93MBqY'd[rq?Bbrq-6^rpp*ZmI8isn)sc3pt#N)roO4Lg])d~> qZ$QW!8RJ'!8RG5n`9i7m-OZrnmb2mFg4Fn'_9dpt#N)roO4Lg])d~> qZ$QW!8RJ'!8RG5n`9i7lg+K:rp0UJroX7@ro*n6mG-FKn'h?fpt#N)roO4Lg])d~> qYpZdk2tY!f)Y4-p\OU[p\smdp&=U`oD\=\na5i"mI06=j7q4+iVqs>n(dqn~> qYpZdk2tY!f)Xe+k4.O7k3VI4mf)PPkl0]Dir7j8h!NeKfC./geG.VqiVqs>n(dqn~> qYpZdk2tY!f)Xe+k4.O7k3M@2mf)PPkl0`Ej8S$;hX0+Pg$dDjebI_riVqs>n(dqn~> q>^HV!8RG&!:B:MqY'd[rq?Bbrq-6^rpp*ZmI8isn)sc3pt#N$roO4Lh>`!~> q>^HV!8RG&!9*e:n`9i7m-OZrnmb2mFg4Fn'_9dpt#N$roO4Lh>`!~> q>^HV!8RG&!9*e:n`9i7lg+K:rp0UJroX7@ro*n6mG-FKn'h?fpt#N$roO4Lh>`!~> q>UQck2tXuf)Y4-p\OU[p\smdp&=U`oD\=\na5i"mI'0,Y&h#6@8pYZ"$~> q>UQck2tXuf)Xe+k4.O7k3VI4mf)PPkl0]Dir7j8h!NeKfC%)febResh#6@8pYZ"$~> q>UQck2tXuf)Xe+k4.O7k3M@2mf)PPkl0`Ej8S$;hX0+Pg$[>if(mnth#6@8pYZ"$~> q#:Hbk2tXuf)Y4-p\OU[p\smdp&=U`oD\=\na5i"mI'0,Y'gu87p!;GFOJ,~> q#:Hbk2tXuf)Xe+k4.O7k3VI4mf)PPkl0]Dir7j8h!NeKfC%)febRetgu87p!;GFOJ,~> q#:Hbk2tXuf)Xe+k4.O7k3M@2mf)PPkl0`Ej8S$;hX0+Pg$[>if(mnugu87p!;GFOJ,~> q#:?groO4>q:>W6nFueQqY1!_s7QB`s7?6\s7,LGg?n=l!8[G%!9*q>!:SnHJ,~> q#:?groO4>q:>W*qW@>0!p8k9r9jRMs60IDs5O%8s4m"pg=PcA!7gkr!9*q>!:SnHJ,~> q#:?groO4>q:>W*qW@>0!p8h7r9jRMs60IEs5X+;s5*.ug=boD!7pqs!9*q>!:SnHJ,~> p\t6froO49q:G*0qY'd[rq?Bbrq-6^rpp*ZmI8ismcXZ2pt#N)roO4Lir=N~> p\t6froO49q:GH)n`9i7m-OZrnmb2mFg4FmaD0cpt#N)roO4Lir=N~> p\t6froO49q:GH)n`9i7lg+K:rp0UJroX7@ro*n6mG-FKmaM6ept#N)roO4Lir=N~> pAY-eroO49qUY`,n+Z\PqY1!_s7QB`s7?6\s7,LGg?n=l!9 pAY-eroO49qUY`&q<%5/!p8k9r9jRMs60IDs5O%8s4m"pg=PcA!7^eq!8RS9!:StJJ,~> pAY-eroO49qUY`&q<%5/!p8h7r9jRMs60IEs5X+;s5*.ug=boD!7gkr!8RS9!:StJJ,~> p&>$droO49qUY`,n+Z\PqY1!_s7QB`s7?6\s7,LGg?n=l!TW#3f)XV*joOrFjo9i~> p&>$droO49qUY`&q<%5/!p8k9r9jRMs60IDs5O%8s4m"pg=PcA!S#Zqf)XV*joOrFjo9i~> p&>$droO49qUY`&q<%5/!p8h7r9jRMs60IEs5X+;s5*.ug=boD!S,csf)XV*joOrFjo9i~> o`"p[roO49qUY`,n+Z\PqY1!_s7QB`s7?6\s7,LGg?n:k!8[J&!8RP8!;GXUJ,~> o`"p[roO49qUY`&q<%5/!p8k9r9jRMs60IDs5O%8s4m"pg=P`@!7gns!8RP8!;GXUJ,~> o`"p[roO49qUY`&q<%5/!p8h7r9jRMs60IEs5X+;s5*.ug=blC!7ptt!8RP8!;GXUJ,~> oD\gZroO49qUY`,n+Z\PqY1!_s7QB`s7?6\s7,LGg?n:k!8[G%!9*q>!;G[VJ,~> oD\gZroO49qUY`&q<%5/!p8k9r9jRMs60IDs5O%8s4m"pg=P`@!7gkr!9*q>!;G[VJ,~> oD\gZroO49qUY`&q<%5/!p8h7r9jRMs60IEs5X+;s5*.ug=blC!7pqs!9*q>!;G[VJ,~> o)A^YroO49qUY`,n+Z\PqY1!_s7QB`s7?6\s7,LGg?n:k!9!:T.OJ,~> o)A^YroO49qUY`&q<%5/!p8k9r9jRMs60IDs5O%8s4m"pg=P`@!7^eq!9*q>!:T.OJ,~> o)A^YroO49qUY`&q<%5/!p8h7r9jRMs60IEs5X+;s5*.ug=blC!7gkr!9*q>!:T.OJ,~> nc&UXroX%.!93JAqY'd[rq?Bbrq-6^rpp*ZmI8ismH=Q1pt#N)roO4Ll2Q8~> nc&UXroX%.!8RD4n`9i7m-OZrnmb2mFg4FmF)'bpt#N)roO4Ll2Q8~> nc&UXroX%.!8RD4n`9i7lg+K:rp0UJroX7@ro*n6mG-FKmF2-dpt#N)roO4Ll2Q8~> nG`UZk2tXuf)Y4,p\OU[p\smdp&=U`oD\=\na5i"mHs*;j7q4+h#?F9n*9q'~> nG`UZk2tXuf)Xe*k4.O7k3VI4mf)PPkl0]Dir7j8h!NeKfBq#eeG.Vqh#?F9n*9q'~> nG`UZk2tXuf)Xe*k4.O7k3M@2mf)PPkl0`Ej8S$;hX0+Pg$R8hebI_rh#?F9n*9q'~> n,ELYk2tXuf)Y4,p\OU[p\smdp&=U`oD\=\na5i"mHj$:h>,Y&h#6@8p[%p1~> n,ELYk2tXuf)Xe*k4.O7k3VI4mf)PPkl0]Dir7j8h!NeKfBgrdebResh#6@8p[%p1~> n,ELYk2tXuf)Xe*k4.O7k3M@2mf)PPkl0`Ej8S$;hX0+Pg$I2gf(mnth#6@8p[%p1~> mf3:K!9*b*!:B7LqY'd[rq?Bbrq-6^rpp*ZmI8ism-"H*q:>Z&iVqs>p[/!2~> mf3:K!9*b*!9*b9n`9i7m-OZrnmb2mFg4Fm*bsbq:>Z&iVqs>p[/!2~> mf3:K!9*b*!9*b9n`9i7lg+K:rp0UJroX7@ro*n6mG-FKm*l$dq:>Z&iVqs>p[/!2~> mf*:]roO4>q:>W6n+Z\PqY1!_s7QB`s7?6\s7,LGg?n7j!8[G%!9*q>!:T@UJ,~> mf*:]roO4>q:>W*q<%5/!p8k9r9jRMs60IDs5O%8s4m"pg=P]?!7gkr!9*q>!:T@UJ,~> mf*:]roO4>q:>W*q<%5/!p8h7r9jRMs60IEs5X+;s5*.ug=biB!7pqs!9*q>!:T@UJ,~> mJd1\roO4>q:>W6n+Z\PqY1!_s7QB`s7?6\s7,LGg?n7j!9!:TCVJ,~> mJd1\roO4>q:>W*q<%5/!p8k9r9jRMs60IDs5O%8s4m"pg=P]?!7^eq!9*q>!:TCVJ,~> mJd1\roO4>q:>W*q<%5/!p8h7r9jRMs60IEs5X+;s5*.ug=biB!7gkr!9*q>!:TCVJ,~> m/I([roO49q:G'/qY'd[rq?Bbrq-6^rpp*ZmI8ism-"H0pt#N$roO4LnGe"~> m/I([roO49q:GE(n`9i7m-OZrnmb2mFg4Fm*bsapt#N$roO4LnGe"~> m/I([roO49q:GE(n`9i7lg+K:rp0UJroX7@ro*n6mG-FKm*l$cpt#N$roO4LnGe"~> li-tZroO49qUY`,me?SOqY1!_s7QB`s7?6\s7,LGg?n7j!TW#3f)XV*joOrFo)F4~> li-tZroO49qUY`&pu_,.!p8k9r9jRMs60IDs5O%8s4m"pg=P]?!S#Zqf)XV*joOrFo)F4~> li-tZroO49qUY`&pu_,.!p8h7r9jRMs60IEs5X+;s5*.ug=biB!S,csf)XV*joOrFo)F4~> lMgkYroO49qUY`,me?SOqY1!_s7QB`s7?6\s7,LGg?n4i!8[J&!8RP8!;H*bJ,~> lMgkYroO49qUY`&pu_,.!p8k9r9jRMs60IDs5O%8s4m"pg=PZ>!7gns!8RP8!;H*bJ,~> lMgkYroO49qUY`&pu_,.!p8h7r9jRMs60IEs5X+;s5*.ug=bfA!7ptt!8RP8!;H*bJ,~> l2LbProO49qUY`,me?SOqY1!_s7QB`s7?6\s7,LGg?n4i!8[G%!9*q>!;H-cJ,~> l2LbProO49qUY`&pu_,.!p8k9r9jRMs60IDs5O%8s4m"pg=PZ>!7gkr!9*q>!;H-cJ,~> l2LbProO49qUY`&pu_,.!p8h7r9jRMs60IEs5X+;s5*.ug=bfA!7pqs!9*q>!;H-cJ,~> kl1YOroO49qUY`,me?SOqY1!_s7QB`s7?6\s7,LGg?n4i!9!:TU\J,~> kl1YOroO49qUY`&pu_,.!p8k9r9jRMs60IDs5O%8s4m"pg=PZ>!7^eq!9*q>!:TU\J,~> kl1YOroO49qUY`&pu_,.!p8h7r9jRMs60IEs5X+;s5*.ug=bfA!7gkr!9*q>!:TU\J,~> kPkPNroO49qUY`,me?SOqY1!_s7QB`s7?6\s7,LGg?n4i!9!:TX]J,~> kPkPNroO49qUY`&pu_,.!p8k9r9jRMs60IDs5O%8s4m"pg=PZ>!7^eq!9*q>!:TX]J,~> kPkPNroO49qUY`&pu_,.!p8h7r9jRMs60IEs5X+;s5*.ug=bfA!7gkr!9*q>!:TX]J,~> k5PGMroX%.!93G@qY'd[rq?Bbrq-6^rpp*ZmI8islf\?/pt#N$roO4Lp]#a~> k5PGMroX%.!8RA3n`9i7m-OZrnmb2mFg4FldGj`pt#N$roO4Lp]#a~> k5PGMroX%.!8RA3n`9i7lg+K:rp0UJroX7@ro*n6mG-FKldPpbpt#N$roO4Lp]#a~> jo5GOk2tXuf)Y4+p\OU[p\smdp&=U`oD\=\na5i"mHWm8h>,Y&h#?F9n+cp5~> jo5GOk2tXuf)Xe)k4.O7k3VI4mf)PPkl0]Dir7j8h!NeKfBUfbebResh#?F9n+cp5~> jo5GOk2tXuf)Xe)k4.O7k3M@2mf)PPkl0`Ej8S$;hX0+Pg$7&ef(mnth#?F9n+cp5~> jSo>Nk2tXuf)Y4+p\OU[p\smdp&=U`oD\=\na5i"mHWm8h>,Y&h#?F9p\Fi>~> jSo>Nk2tXuf)Xe)k4.O7k3VI4mf)PPkl0]Dir7j8h!NeKfBUfbebResh#?F9p\Fi>~> jSo>Nk2tXuf)Xe)k4.O7k3M@2mf)PPkl0`Ej8S$;hX0+Pg$7&ef(mnth#?F9p\Fi>~> j8],@!9*b*!:B4KqY'd[rq?Bbrq-6^rpp*ZmI8isn`Tu5rn[8!"5N&$n+m!6~> j8],@!9*b*!9*_8n`9i7m-OZrnmb2mFg4Fn^@Kfrmg\n"5N&$n+m!6~> j8],@!9*b*!9*_8n`9i7lg+K:rp0UJroX7@ro*n6mG-FKn^IQhrmpbo"5N&$n+m!6~> j8T,RroO4>q:>W6me?SOqY1!_s7QB`s7?6\s7,LGg?n\!rS?nns5j=Mq>Ys~> j8T,RroO4>q:>W*pu_,.!p8k9r9jRMs60IDs5O%8s4m"pg=Q,KrRL>fs5j=Mq>Ys~> j8T,RroO4>q:>W*pu_,.!p8h7r9jRMs60IEs5X+;s5*.ug=c8NrRUDgs5j=Mq>Ys~> ir9#QroO4>q:>W6me?SOqY1!_s7QB`s7?6\s7,LGg?eq)j8Rluf)sgjk3r-GJ,~> ir9#QroO4>q:>W*pu_,.!p8k9r9jRMs60IDs5O%8s4m"pg=HASeGe"^f)sgjk3r-GJ,~> ir9#QroO4>q:>W*pu_,.!p8h7r9jRMs60IEs5X+;s5*.ug=ZMVec+.`f)sgjk3r-GJ,~> iVroProO49q:G$.qY'd[rq?Bbrq-6^rpp*ZmI9'$rSQVd"5N&$n+m!6~> iVroProO49q:GB'n`9i7m-OZrnmb2mFf2)"5N&$n+m!6~> iVroProO49q:GB'n`9i7lg+K:rp0UJroX7@ro*n6mG-XQrRg,]"5N&$n+m!6~> i;WfOroO49qUY`,mJ$JNqY1!_s7QB`s7?6\s7,LGkj8B4rnlM_!8RS9q#>j~> i;WfOroO49qUY`&pZD#-!p8k9r9jRMs60IDs5O%8s4m"p^XiJ@roX"UJ,~> i;WfOroO49qUY`&pZD#-!p8h7r9jRMs60IEs5X+;s5*.ukLojegt)P]roX"UJ,~> hu<]NroO49qUY`,mJ$JNqY1!_s7QB`s7?6\s7,LGn*U)2f%9o`!:T^_J,~> hu<]NroO49qUY`&pZD#-!p8k9r9jRMs60IDs5O%8s4m"p^t8SJ!:T^_J,~> hu<]NroO49qUY`&pZD#-!p8h7r9jRMs60IEs5X+;s5*.un(IZlf%9o`!:T^_J,~> hZ!TEroO49qUY`,mJ$JNqY1!_s7QB`s7?6\s7,LGp[%tCrnlM_rn[\Ai;2%-iTB:kp]#a~> hZ!TEroO49qUY`&pZD#-!p8k9r9jRMs60IDs5O%8s4m"pcI`'P!UJ\?f)t!ok3r'EJ,~> hZ!TEroO49qUY`&pZD#-!p8h7r9jRMs60IEs5X+;s5*.up=]Gtgt2P^!UJ\?f)t!ok3r'EJ,~> h>[KDroO49qUY`,mJ$JNqY1!_s7QB`s7?6\s7,LGrpB[Ah:MY_!9O.E!V#=Lf)sgjk3r$DJ,~> h>[KDroO49qUY`&pZD#-!p8k9r9jRMs60IDs5O%8s4m"pf%9oX!9O.E!V#=Lf)sgjk3r$DJ,~> h>[KDroO49qUY`&pZD#-!p8h7r9jRMs60IEs5X+;s5*.urn78&h:MY_!9O.E!V#=Lf)sgjk3r$D J,~> h#@BCroO49qUY`,mJ$JNqY1!_s7QB`s7?6\s7,[L!9jF?gt2P^pZqhJqUYi)k2u.*s*t~> h#@BCroO49qUY`&pZD#-!p8k9r9jRMs60IDs5O%8s4m.trn-#XrndD8rp]d9"5N&$n+H^2~> h#@BCroO49qUY`&pZD#-!p8h7r9jRMs60IEs5X+;s5*>%!8IM+gt2P^pZqhJqUYi)k2u.*s*t~> g]%9BroX%.!93D?qY'd[rq?Bbrq-6^rpp*Zq=+@@h:DbbhVRAcli$;Qi;2()k4J\(~> g]%9BroX%.!8R>2n`9i7m-OZrnmb2q:Y`!h:DbbhVRAcli$;Qi;2()k4J\(~> g]%9BroX%.!8R>2n`9i7lg+K:rp0UJroX7@ro*n6q:tr%h:DbbhVRAcli$;Qi;2()k4J\(~> gA_9Dk2tXuf)Y4*p\OU[p\smdp&=U`oD\=\nGqePi7ur`h>c[,li$;Qi;2%-iTB:so`'F~> gA_9Dk2tXuf)Xe(k4.O7k3VI4mf)PPkl0]Dir7j8g]6%,f\G*Xh>c[,li$;Qi;2%-iTB:so`'F~> gA_9Dk2tXuf)Xe(k4.O7k3M@2mf)PPkl0`Ej8S$;h>l=0g"b3Yh>c[,li$;Qi;2%-iTB:so`'F~> g&D0Ck2tXuf)Y4*p\OU[p\smdp&=U`iW%ilfDaS+iqhj-lhg2Jf)sgjk3qpAJ,~> g&D0Ck2tXuf)Xe(k4.O7k3VI4mf)PPkl0]Dg]-!`fDaS+iqhj-lhg2Jf)sgjk3qpAJ,~> g&D0Ck2tXuf)Xe(k4.O7k3M@2mf)PPkl0`CgYLK\h#QI2kO@g7nG:`=gudbfoDa=~> f`1s5!9*b*!:B1JqY'd["8;*@iS<&ah=]t#lhU&If)sgjk3qm@J,~> f`1s5!9*b*!9*\7n`9i7m-OZ<"7,(*h;$W]h=]t#lhU&If)sgjk3qm@J,~> f`1s5!9*b*!9*\7n`9i7lg+K:"7,(*h;$W]h=]t#lhU&If)sgjk3qm@J,~> f`(sGroO4>q:>W6mJ$JNr:^3Yhq.k^!93P3n*Bf=!9!b+roO4To)F4~> f`(sGroO4>q:>W*pZD#-!p8k9rpBdLhq.k^!93P3n*Bf=!9!b+roO4To)F4~> f`(sGroO4>q:>W*pZD#-!p8h7rpBdLhq.k^!93P3n*Bf=!9!b+roO4To)F4~> fDbjFroO4>q:>W6mJ$JNrV$0n*B`;!9!e,"5N&$n+$F.~> fDbjFroO4>q:>W*pZD#-"m51 fDbjFroO4>q:>W*pZD#-"m5.:mdAuofDaP'ipc."lhBlKi;D1/gudbfnc++~> f)GaEroO49q:G!-qY's`!:B+(rn@G1q;Ul+nE]c:qpto)k2u15J,~> f)GaEroO49q:G?&n`9l8m-Np$fDaM)htc:#kO@g1nGCf=gudbgs*t~> f)GaEroO49q:G?&n`9l8lg*a"fDaM)htc:#kO@g1nGCf=gudbgs*t~> ec,XDroO49qUY`,m.^AM!VbUDfDaOripc.#lgsWCf)jpnn*p@-~> ec,XDroO49qUY`&p?(o,!p8k+n^mcpoA]9&nE]]8qpto.k3qg>J,~> ec,XDroO49qUY`&p?(o,!p8h*n^mcpoA]9&nE]]8qpto.k3qg>J,~> eGfOCroO49qUY`,m.^AMpXfDu!SlQ$ipc."lgsTGi;;.+joFl>s*t~> eGfOCroO49qUY`&p?(o,!9X%-rn7D.hXKOokO7a.n,VDDfDjt5n*p@-~> eGfOCroO49qUY`&p?(o,!9X%-rn7D.hXKOokO7a.n,VDDfDjt5n*p@-~> e,KF:roO49qUY`,m.^GO!93n-!8@>,nD`p"nE]W6!9!e,!o2r#n,In~> e,KF:roO49qUY`&p?(r-!8RJ'!8@>,nD`p"nE]W6!9!e,!o2r#n,In~> e,KF:roO49qUY`&p?(r-!8RJ'!8@>,nD`p"nE]W6!9!e,!o2r#n,In~> df0=9roO49qUY`,m.^JP!93q.!8@A-n)Ej"nE]Q4qpto)k3qd=J,~> df0=9roO49qUY`&p?(u.!8RM(!8@A-n)Ej"nE]Q4qpto)k3qd=J,~> df0=9roO49qUY`&p?(u.!8RM(!8@A-n)Ej"nE]Q4qpto)k3qd=J,~> dJj48roO49qUY`,m.^PR!:9U7!8@G/n)Ej"nE]K2qpto.k3qd=J,~> dJj48roO49qUY`&p?)&0!9*h,!8@G/n)Ej"nE]K2qpto.k3qd=J,~> dJj48roO49qUY`&p?)&0!9*h,!8@G/n)Ej"nE]K2qpto.k3qd=J,~> d/O+7roX%.!93A>!VYOMfDaXripc."lg=0Ai;;.+joFl=s*t~> d/O+7roX%.!8R;1p>l;0qq(i(nD`s#n*BB1!9!b+s5j=Mn,In~> d/O+7roX%.!8R;1p>l;0qq(i(nD`s#n*BB1!9!b+s5j=Mn,In~> ci4+9k2tXuf)Y4)p\WPCg>;>Yn)s3+lgOo4r7;&+k2u.$s*t~> ci4+9k2tXuf)Xe'k4e!7f)aU^nD`p"nE]E0!9!e,"5N&$n*g:,~> ci4+9k2tXuf)Xe'k4e!7f)aU^nD`p"nE]E0!9!e,"5N&$n*g:,~> cMn"8k2tXuf)Y4+pAjUXf)X^tipc.#lfmm=i;;.+joFl=s*t~> cMn"8k2tXuf)Xe'k5"*=iVV4,hsfXpkO@g%n,VDDfDjt5n*g:,~> cMn"8k2tXuf)Xe'k5"*=iVV4,hsfXpkO@g%n,VDDfDjt5n*g:,~> c2[e*!9*b*!:B7L!93n-n`''$nE]9,!9j=3s5j=Mn,In~> c2[e*!9*b*!9*Y6qW._4qq(AtnE9<,kO8K8qq(l1!:TCVJ,~> c2[e*!9*b*!9*Y6qW._4qq(AtnE9<,kO8K8qq(l1!:TCVJ,~> c2Req:>W6nFuh3!8I,)nE99+jm`0!!o2r,n,In~> c2Req:>W*p?)86qpti&oA]9&n*B*)qpto)k3qd=J,~> c2Req:>W*p?)86qpti&oA]9&n*B*)qpto)k3qd=J,~> bl7\;roO4>q:>W6nb;q4!8mJ/n)s3+j7!',r7;#*k2u.4J,~> bl7\;roO4>q:>W*p?);7qpti*p#>H'nE]-(!9!e,!o2r#n,In~> bl7\;roO4>q:>W*p?);7qpti*p#>H'nE]-(!9!e,!o2r#n,In~> bPqS:roO49q:G02qq(N#nE9<,iU?j*qq(l1!;H!_J,~> bPqS:roO49q:G<%rT3q.p#>K(nE]'&!9!b+s5j=UnGe"~> bPqS:roO49q:G<%rT3q.p#>K(nE]'&!9!b+s5j=UnGe"~> b5VJ9roO49qUY`,oCi7Eqq(T%nE99+i:$a1qq(l1!:TFWJ,~> b5VJ9roO49qUY`&p#c;9!8RJ'pYt]*n*Ap$!9j=3s5j=MnGe"~> b5VJ9roO49qUY`&p#c;9!8RJ'pYt]*n*Ap$!9j=3s5j=MnGe"~> ao;A8roO49qUY`,o_/@Fr7:r'q;Ul+nE]!$s7H3?!o2r#nGe"~> ao;A8roO49qUY`&p#Z;:h#,b(g\KjtkO@fpnGi.Xf)jaik4&D$~> ao;A8roO49qUY`&p#Z;:h#,b(g\KjtkO@fpnGi.Xf)jaik4&D$~> aSu8/roO49qUY`,p%JIGr7:r'qr7)-nE\s#rq$3Lr7;&+k2u.&s*t~> aSu8/roO49qUY`&p#Z80r7:r'qr7)-nE\s#rq$3Lr7;&+k2u.&s*t~> aSu8/roO49qUY`&p#Z80r7:r'qr7)-nE\s#rq$3Lr7;&+k2u.&s*t~> a8Z/.roO49qUY`,p@eRHr7:r'r8R5/nE\s#r:C!Jqq(i0!;H'aJ,~> a8Z/.roO49qUY`&p>uA1r7:r'r8R5/nE\s#r:C!Jqq(i0!;H'aJ,~> a8Z/.roO49qUY`&p>uA1r7:r'r8R5/nE\s#r:C!Jqq(i0!;H'aJ,~> `r?&-roO49qUY`,p\4R:!8IM4nE99+hsgL7!:0O6"5N&$n+-L/~> `r?&-roO49qUY`&pZDA)!8IM4nE99+hsgL7!:0O6"5N&$n+-L/~> `r?&-roO49qUY`&pZDA)!8IM4nE99+hsgL7!:0O6"5N&$n+-L/~> `W#r,roX%.!93eJqq(l-n)s3+hsgC4qUYi.k2uF0s*t~> `W#r,roX%.!8RA3qq(l-n)s3+hsgC4qUYi.k2uF0s*t~> `W#r,roX%.!8RA3qq(l-n)s3+hsgC4qUYi.k2uF0s*t~> `;]r.k2tXuf)Y46p\WPBipc.#le_.)oDmkHf)jpnk4AV'~> `;]r.k2tXuf)Xe*k53a1ipc.#le_.)oDmkHf)jpnk4AV'~> `;]r.k2tXuf)Xe*k53a1ipc.#le_.)oDmkHf)jpnk4AV'~> _uBi-k2tXuf)Y47p\WS4kO@fonFQ8PiVV4/gudbfo`'F~> _uBi-k2tXuf)Xe+k53d#kO@fonFQ8PiVV4/gudbfo`'F~> _uBi-k2tXuf)Xe+k53d#kO@fonFQ8PiVV4/gudbfo`'F~> _Z0Vt!9*b*!:B^Y!93n-oB5T.hsg1.!:0L5"5N&$n+H^2~> _Z0Vt!9*b*!9*k _Z0Vt!9*b*!9*k _Z'W1roO4>q:>W6r:g*?o]P`0hXL"+!:0L5"6&D)n+Qd3~> _Z'W1roO4>q:>W*r9!n.o]P`0hXL"+!:0L5"6&D)n+Qd3~> _Z'W1roO4>q:>W*r9!n.o]P`0hXL"+!:0L5"6&D)n+Qd3~> _>aN0roO4>q:>W6rV-3@p?1r2hXKn(!9*e+"6&D)n+Zj4~> _>aN0roO4>q:>W*rT="/p?1r2hXKn(!9*e+"6&D)n+Zj4~> _>aN0roO4>q:>W*rT="/p?1r2hXKn(!9*e+"6&D)n+Zj4~> _#FE/roO49q:GT>qq(W+nE\s#l1=u7qpti'roO4Tq#>j~> _#FE/roO49q:GT-qq(W+nE\s#l1=u7qpti'roO4Tq#>j~> _#FE/roO49q:GT-qq(W+nE\s#l1=u7qpti'roO4Tq#>j~> ^]+<.roO49qUY`,rqH ^]+<.roO49qUY`&roX+0!8[P8n*Am#kO\c?qUY`&roX"UJ,~> ^]+<.roO49qUY`&roX+0!8[P8n*Am#kO\c?qUY`&roX"UJ,~> ^Ae3-roO49qUYi/p\3\Ff)XY)kO@fonEKTEiV;",iTB:kq>Ys~> ^Ae3-roO49qUYi)k2tIsf)XY)kO@fonEKTEiV;",iTB:kq>Ys~> ^Ae3-roO49qUYi)k2tIsf)XY)kO@fonEKTEiV;",iTB:kq>Ys~> ^&J*$roO49qUYf.pYu,&!8[Y;nE\s#mdpMFro*G""5N&$n+m!6~> ^&J*$roO49qUYf(k1omd!8[Y;nE\s#mdpMFro*G""5N&$n+m!6~> ^&J*$roO49qUYf(k1omd!8[Y;nE\s#mdpMFro*G""5N&$n+m!6~> ]`/!#roO49qUbc,r7:u*kO7`onFH5NiTo(tgudbfq>Ys~> ]`/!#roO49qUbc&r7:u*kO7`onFH5NiTo(tgudbfq>Ys~> ]`/!#roO49qUbc&r7:u*kO7`onFH5NiTo(tgudbfq>Ys~> ]Dhm"roO49o@NKthsgC4!:0XCjjsUik2u..s*t~> ]Dhm"roO49o@NKthsgC4!:0XCjjsUik2u..s*t~> ]Dhm"roO49o@NKthsgC4!:0XCjjsUik2u..s*t~> ])Md!roWh(o'>0%r:L!Ihq&"diTB:sq>Ys~> ])Md!roWh(o'>0%r:L!Ihq&"diTB:sq>Ys~> ])Md!roWh(o'>0%r:L!Ihq&"diTB:sq>Ys~> \c2d#k2tXpf)Xq*le_+2li,l!fDaP*iVqs>n+cp5~> \c2d#k2tXpf)Xq*le_+2li,l!fDaP*iVqs>n+cp5~> \c2d#k2tXpf)Xq*le_+2li,l!fDaP*iVqs>n+cp5~> \Gl["k2tXqf)X\$lf7L6i7ur`g]6=/joFlEs*t~> \Gl["k2tXqf)X\$lf7L6i7ur`g]6=/joFlEs*t~> \Gl["k2tXqf)X\$lf7L6i7ur`g]6=/joFlEs*t~> \,ZHi!9*V&q!7/5!9jF?h:MV\oB$&ApA]X~> \,ZHi!9*V&q!7/5!9jF?h:MV\oB$&ApA]X~> \,ZHi!9*V&q!7/5!9jF?h:MV\oB$&ApA]X~> \,QI&roO4>p=B<$qs3V \,QI&roO4>p=B<$qs3V \,QI&roO4>p=B<$qs3V [f6@%roO4>pX]E%rTj"C!9jF?h:MV\o&fr?!;Gm\J,~> [f6@%roO4>pX]E%rTj"C!9jF?h:MV\o&fr?!;Gm\J,~> [f6@%roO4>pX]E%rTj"C!9jF?h:MV\o&fr?!;Gm\J,~> [Jp7$roO49pXfE1p@/(>gt2P\!9*P3rU8nKJ,~> [Jp7$roO49pXfE1p@/(>gt2P\!9*P3rU8nKJ,~> [Jp7$roO49pXfE1p@/(>gt2P\!9*P3rU8nKJ,~> [/U.#roO49pt#N&qsXULrnuVarS6u+rpKj]i;\<~> [/U.#roO49pt#N&qsXULrnuVarS6u+rpKj]i;\<~> [/U.#roO49pt#N&qsXULrnuVarS6u+rpKj]i;\<~> Zi:%"roO49pt,N'gt2P\!9*P3rU8G>J,~> Zi:%"roO49pt,N'gt2P\!9*P3rU8G>J,~> Zi:%"roO49pt,N'gt2P\!9*P3rU8G>J,~> ZMspnroO49f[p)Wo&fr?!;FtBJ,~> ZMspnroO49f[p)Wo&fr?!;FtBJ,~> ZMspnroO49f[p)Wo&fr?!;FtBJ,~> Z2XgmroO49hq.k_!9*P3rU7u1J,~> Z2XgmroO49hq.k_!9*P3rU7u1J,~> Z2XgmroO49hq.k_!9*P3rU7u1J,~> Yl=^lroO49kL][fo&fr?!;FM5J,~> Yl=^lroO49kL][fo&fr?!;FM5J,~> Yl=^lroO49kL][fo&fr?!;FM5J,~> YQ"UkroWV"rnIM4oB-#?^]/f~> YQ"UkroWV"rnIM4oB-#?^]/f~> YQ"UkroWV"rnIM4oB-#?^]/f~> Y5\Umk2tXqfDXLqk5OfLpUU Y5\Umk2tXqfDXLqk5OfLpUU Y5\Umk2tXqfDXLqk5OfLpUU XoAOmk2tXXrR_&(!9*P3rU7&lJ,~> XoAOmk2tXXrR_&(!9*P3rU7&lJ,~> XoAOmk2tXXrR_&(!9*P3rU7&lJ,~> XT.\MrpKj]XT*e~> XT.\MrpKj]XT*e~> XT.\MrpKj]XT*e~> XT&=qn+PoBn"p&7~> XT&=qn+PoBn"p&7~> XT&=qn+PoBn"p&7~> WrN+froX4K!;E,cJ,~> WrN+froX4K!;E,cJ,~> WrN+froX4K!;E,cJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> JcELbJ,~> %%EndData showpage %%Trailer end %%EOF beamer/base/art/beamericonarticle.20.pdf0000644000175000017500000000561612050430504017745 0ustar mohuramohura%PDF-1.3 7 0 obj << /Length 340 /Filter /FlateDecode >> stream xڝT;n0 } ]>ԇ{EC;)<%e3b ;H ÖIqx~Ec$u; iVѷ3_H4fŨsD@IeiZ b2ͅ2R!Ž6[~ne {x>zo J<^Db'bH)A΋",}'MHdX!LPQYT-BA`MP3+j }Q,A4K|%f rR,A4* M: S=q=M!sx.2rb;*#s-n.xFw]$endstream endobj 6 0 obj << /Type /Page /Contents 7 0 R /Resources 5 0 R /MediaBox [0 0 10.959 13.948] /Parent 8 0 R >> endobj 2 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 19.925 14.944] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 9 0 R /Length 15 /Filter /FlateDecode >> stream xP(endstream endobj 9 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 14.94392] /Coords [0 0.0 0 14.94392] /Function << /FunctionType 3 /Domain [0.0 14.94392] /Functions [ << /FunctionType 2 /Domain [0.0 14.94392] /C0 [0.96 0.96 0.9] /C1 [1 1 1] /N 1 >> ] /Bounds [] /Encode [0 1 ] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 4 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 1.993 1.993] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 10 0 R /Length 15 /Filter /FlateDecode >> stream xP(endstream endobj 10 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 1.99252] /Coords [0 0.0 0 1.99252] /Function << /FunctionType 3 /Domain [0.0 1.99252] /Functions [ << /FunctionType 2 /Domain [0.0 1.99252] /C0 [0.9 0.9 0.8] /C1 [0.96 0.96 0.96] /N 1 >> ] /Bounds [] /Encode [0 1 ] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 3 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 2.491 3.487] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 11 0 R /Length 15 /Filter /FlateDecode >> stream xP(endstream endobj 11 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 3.48691] /Coords [0 0.0 0 3.48691] /Function << /FunctionType 3 /Domain [0.0 3.48691] /Functions [ << /FunctionType 2 /Domain [0.0 3.48691] /C0 [0.85 0.95 0.85] /C1 [0.95 0.85 0.85] /N 1 >> << /FunctionType 2 /Domain [0.0 3.48691] /C0 [0.95 0.85 0.85] /C1 [0.85 0.85 0.95] /N 1 >> ] /Bounds [ 1.49438] /Encode [0 1 0 1] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 5 0 obj << /XObject << /Fm2 2 0 R /Fm4 4 0 R /Fm3 3 0 R >> /ProcSet [ /PDF ] >> endobj 8 0 obj << /Type /Pages /Count 1 /Kids [6 0 R] >> endobj 12 0 obj << /Type /Catalog /Pages 8 0 R >> endobj 13 0 obj << /Producer (pdfTeX-0.14h) /Creator (TeX) /CreationDate (D:20031027234000) >> endobj xref 0 14 0000000001 65535 f 0000000000 00000 f 0000000537 00000 n 0000001646 00000 n 0000001090 00000 n 0000002309 00000 n 0000000427 00000 n 0000000009 00000 n 0000002396 00000 n 0000000737 00000 n 0000001289 00000 n 0000001845 00000 n 0000002453 00000 n 0000002503 00000 n trailer << /Size 14 /Root 12 0 R /Info 13 0 R >> startxref 2598 %%EOF beamer/base/art/beamericonarticle.eps0000644000175000017500000006375312050430504017551 0ustar mohuramohura%!PS-Adobe-3.0 EPSF-3.0 %%Creator: GIMP PostScript file plugin V 1.12 by Peter Kirchgessner %%Title: /n/mappazza/home4/algo/tantau/texmf/tex/latex/classes/latex-beamer/beamericonarticle.eps %%CreationDate: Thu Oct 16 20:42:27 2003 %%DocumentData: Clean7Bit %%LanguageLevel: 2 %%Pages: 1 %%BoundingBox: 14 14 26 29 %%EndComments %%BeginProlog % Use own dictionary to avoid conflicts 10 dict begin %%EndProlog %%Page: 1 1 % Translate for offset 14.173228 14.173228 translate % Translate to begin of first scanline 0.000000 13.920000 translate 10.980000 -13.920000 scale % Image geometry 183 232 8 % Transformation matrix [ 183 0 0 232 0 0 ] % Strings to hold RGB-samples per scanline /rstr 183 string def /gstr 183 string def /bstr 183 string def {currentfile /ASCII85Decode filter /RunLengthDecode filter rstr readstring pop} {currentfile /ASCII85Decode filter /RunLengthDecode filter gstr readstring pop} {currentfile /ASCII85Decode filter /RunLengthDecode filter bstr readstring pop} true 3 %%BeginData: 25534 ASCII Bytes colorimage JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> o`(:Y_#Jo~> o`(:Y_#Jo~> o`(:Y_#Jo~> o`(9Y!*-l8J,~> o`(9Y!*-l8J,~> o`(9Y!*-l8J,~> o`(6X!*-o9J,~> o`(6X!*-o9J,~> o`(6X!*-o9J,~> o`(3W!*-r:J,~> o`(3W!*-r:J,~> o`(3W!*-r:J,~> o`(0V!*-u;J,~> o`(0V!*-u;J,~> o`(0V!*-u;J,~> o`(-U!*.# o`(-U!*.# o`(-U!*.# o`(*T!*.&=J,~> o`(*T!*.&=J,~> o`(*T!*.&=J,~> o`+afr`/>bm8N%CmSNs'p&G(ma8^Y~> o`+afr`/>bm8N%CmSNs'p&G(ma8^Y~> o`+afr`&VjpJU`^pJ:NYpJ(BUpIb3P!#bJ1!*.)>J,~> o`+afs8Mcjp\X^\p\=LVp\":Qp[\(K!)W=g!*.,?J,~> o`+afs8Mcjp\X^\p\=LVp\":Qp[\(K!)W=g!*.,?J,~> o`+afs82Qbp[n4Lp[%Y=pZ;//pYPYu!(cb_!*.,?J,~> o`+af!<2`jp\X^\p\=LVp\":Qp[\(K!UikW!!$$@s*t~> o`+af!<2`jp\X^\p\=LVp\":Qp[\(K!UikW!!$$@s*t~> o`+af!;lNbp[n4Lp[%Y=pZ;//pYPYu!S9m7!!$$@s*t~> o`+afp\ad_p\FRYp\+@Sp[n4Np[S:P!)W7e!*.2AJ,~> o`+afp\ad_p\FRYp\+@Sp[n4Np[S:P!)W7e!*.2AJ,~> o`+afp\4FSp[IqDpZ_G6pYtr(pY,Z!!(c\]!*.2AJ,~> o`+afq#'m`p\FRYp\+@Sp[n4Np[S7O!)W4d!*.5BJ,~> o`+afq#'m`p\FRYp\+@Sp[n4Np[S7O!)W4d!*.5BJ,~> o`+afq"OOTp[IqDpZ_G6pYtr(pY,Vu!(cY\!*.5BJ,~> o`+afq>C!ap\FRYp\+@Sp[n4Np[S4N!)WOm!#>8/!*.8CJ,~> o`+afq>C!ap\FRYp\+@Sp[n4Np[S4N!)WOm!#>8/!*.8CJ,~> o`+afq=jXUp[IqDpZ_G6pYtr(pY,St!(cte!"nu+!*.8CJ,~> o`+afqY^*bp\FRYp\+@Sp[n4Np[S1M!)WOms#p,W!*.;DJ,~> o`+afqY^*bp\FRYp\+@Sp[n4Np[S1M!)WOms#p,W!*.;DJ,~> o`+afqY0aVp[IqDpZ_G6pYtr(pY,Ps!(ctes"X9K!*.;DJ,~> o`+afqu$3cp\FRYp\+@Sp[n4Np[S.L!)WOm!^*hPp](:ocMrC~> o`+afqu$3cp\FRYp\+@Sp[n4Np[S.L!)WOm!^*hPp](:ocMrC~> o`+afqtKjWp[IqDpZ_G6pYtr(pY,Mr!(cte!\]Kcp](:ocMrC~> o`+afr;? o`+afr;? o`+afr:fsXp[IqDpZ_G6pYtr(pY,Jq!(cte""oFe0),DH o`+afrVZEep\FRYp\+@Sp[n4Np[S(J!)WOm!'C1b!'BrU!*.DGJ,~> o`+afrVZEep\FRYp\+@Sp[n4Np[S(J!)WOm!'C1b!'BrU!*.DGJ,~> o`+afrV-'Yp[IqDpZ_G6pYtr(pY,Gp!(cte!%e,%!%dmF!*.DGJ,~> o`+afrquNfp\FRYp\+@Sp[n4Np[S%I!)WOm!':(]!'9lT!*.GHJ,~> o`+afrquNfp\FRYp\+@Sp[n4Np[S%I!)WOm!':(]!'9lT!*.GHJ,~> o`+afrqH0Zp[IqDpZ_G6pYtr(pY,Do!(Znd!%Rqp!%RaD!*.GHJ,~> o`+afs8;Wgp\FRYp\+@Sp[n4Np[S%I!U`e]!!#(XX8k o`+afs8;Wgp\FRYp\+@Sp[n4Np[S%I!U`e]!!#(XX8k o`+afs7c9[p[IqDpZ_G6pYtr(pY,Do!RjR9!!"GFFoWrc!!$$Is*t~> o`+af!;uTgp\FRYp\+@Sp[n4Np[S%Is6]k`qZ$UVql0WVp](:oe,Op~> o`+af!;uTgp\FRYp\+@Sp[n4Np[S%Is6]k`qZ$UVql0WVp](:oe,Op~> o`+af!;H6[p[IqDpZ_G6pYtr(pY,Dos3gs o`+afp\X^\p\=LVp\":Qp[\(Kq!\4M!)WOm!''hQ!''`R!*.PKJ,~> o`+afp\X^\p\=LVp\":Qp[\(Kq!\4M!)WOm!''hQ!''`R!*.PKJ,~> o`+afp[n4Lp[%Y=pZ;//pYPYupt,Mo!(Znd!$h>S!$h7=!*.PKJ,~> o`+afq"sg]p\=LVp\":Qp[\(Kq!\1L!)WOm!&s_M!&sZQ!*.SLJ,~> o`+afq"sg]p\=LVp\":Qp[\(Kq!\1L!)WOm!&s_M!&sZQ!*.SLJ,~> o`+afq"4=Mp[%Y=pZ;//pYPYupt,Jn!(Znd!$V/J!$V+;!*.SLJ,~> o`+afq>9p^p\=LVp\":Qp[\(Kq!\.K!)WOm!&jVH!&jTP!*.VMJ,~> o`+afq>9p^p\=LVp\":Qp[\(Kq!\.K!)WOm!&jVH!&jTP!*.VMJ,~> o`+afq=OFNp[%Y=pZ;//pYPYupt,Gm!(Znd!$Cu@!$Ct9!*.VMJ,~> o`+afqYU$_p\=LVp\":Qp[\(Kq!\+J!)WOm!&jSE!&jTP!*.YNJ,~> o`+afqYU$_p\=LVp\":Qp[\(Kq!\+J!)WOm!&jSE!&jTP!*.YNJ,~> o`+afqXjOOp[%Y=pZ;//pYPYupt,Dl!(Znd!$1f7!$1h7!*.YNJ,~> o`+afqtp-`p\=LVp\":Qp[\(Kq!\(I!)WOm!&aJ@!&aNO!*.\OJ,~> o`+afqtp-`p\=LVp\":Qp[\(Kq!\(I!)WOm!&aJ@!&aNO!*.\OJ,~> o`+afqt0XPp[%Y=pZ;//pYPYupt,Ak!(Znd!#tW.!#t\5!*.\OJ,~> o`+afr;6 o`+afr;6 o`+afr:KgSs/#IcpS7JVpRq8QpR_/Nq3q@@qZ$U6ogo-$p](:og&HR~> o`+afrVQBcZ@;j)qZ$UPoU,\8p](:ogAc[~> o`+afrVQBcZ@;j)qZ$UPoU,\8p](:ogAc[~> o`+afrUfmSZ@;j)qZ$U4oKrTpp](:ogAc[~> o`+afrqlHcZ@;j)qZ$UOo9KA3p](:og])d~> o`+afrqlHcZ@;j)qZ$UOo9KA3p](:og])d~> o`+afrq,sSZ@;j)qZ$U1o/m!ep](:og])d~> o`+afs82Qd!;NjL!%[pH!&F,1!&F o`+afs82Qd!;NjL!%[pH!&F,1!&F o`+afs7H'T!:7"@!%[pH!#+o`!#,,-!*.hSJ,~> o`+af!;lNds7imL!%[pH!&=#-!&=6K!*.kTJ,~> o`+af!;lNds7imL!%[pH!&=#-!&=6K!*.kTJ,~> o`+af!;-$Ts6R%@!%[pH!"n`W!"nu+!*.kTJ,~> o`+afp\Fg`Z@;j)qZ$UMn;mW(p](:ohZ&*~> o`+afp\Fg`Z@;j)qZ$UMn;mW(p](:ohZ&*~> o`+afp[J1KZ@;j)qZ$U,n14PMp](:ohZ&*~> o`+afq"am`Z@;j)qZ$UMmu@B%p](:ohuA3~> o`+afq"am`Z@;j)qZ$UMmu@B%p](:ohuA3~> o`+afq!e7KZ@;j)qZ$U*mj8#Dp](:ohuA3~> o`+afq>'s`r2B"\mAB o`+afq>'s`r2B"\mAB o`+afq=+=Kr1s(^pS%>SpRh2Opmq/Kr0dUBqZ$U(mN2E:p](:oi;\<~> o`+afqYBm\p\+@Sp[n4Np[S%Ip[7qF!)NIl!&!Yq!&"$H!*/"XJ,~> o`+afqYBm\p\+@Sp[n4Np[S%Ip[7qF!)NIl!&!Yq!&"$H!*/"XJ,~> o`+afqXF7GpZ_G6pYtr(pY,DopXB#d!(Qhc!"&$1!"&E#!*/"XJ,~> o`+afqt^!]p\+@Sp[n4Np[S%Ip[7nE!)M>L!*/%YJ,~> o`+afqt^!]p\+@Sp[n4Np[S%Ip[7nE!)M>L!*/%YJ,~> o`+afqsa@HpZ_G6pYtr(pY,DopXAuc!(P]C!*/%YJ,~> o`+afr;$*^p\+@Sp[n4Np[S%Ip[7kD!)M;K!*/(ZJ,~> o`+afr;$*^p\+@Sp[n4Np[S%Ip[7kD!)M;K!*/(ZJ,~> o`+afr:'IIpZ_G6pYtr(pY,DopXArb!(PZB!*/(ZJ,~> o`+afrV?3_p\+@Sp[n4Np[S%Ip[7hC!)M8Jj8XW~> o`+afrV?3_p\+@Sp[n4Np[S%Ip[7hC!)M8Jj8XW~> o`+afrUBRJpZ_G6pYtr(pY,DopXAoa!(PWAj8XW~> o`+afrqZ<`p\+@Sp[n4Np[S%Ip[7eB!)M8Jj8XW~> o`+afrqZ<`p\+@Sp[n4Np[S%Ip[7eB!)M8Jj8XW~> o`+afrp][KpZ_G6pYtr(pY,DopXAl`!(>K?j8XW~> o`+afs7uEap\+@Sp[n4Np[S%Ip[7eB!UEP7!9=*0~> o`+afs7uEap\+@Sp[n4Np[S%Ip[7eB!UEP7!9=*0~> o`+afs7#dLpZ_G6pYtr(pY,DopXAl`!R*sb!9=*0~> o`+af!;ZBap\+@Sp[n4Np[S%Ip[7eBs6BY\f`:(4J,~> o`+af!;ZBap\+@Sp[n4Np[S%Ip[7eBs6BY\f`:(4J,~> o`+af!:]aLpZ_G6pYtr(pY,DopXAl`s3(I2f`:(4J,~> o`+afp\=LVp\":Qp[\(Kq![tFp[%nF!)M8Jj8XW~> o`+afp\=LVp\":Qp[\(Kq![tFp[%nF!)M8Jj8XW~> o`+afp[%Y=pZ;//pYPYupt,8hpX&o`!(>K?j8XW~> o`+afq"XUWp\":Qp[\(Kq![tFp[%Y?pZ_G9q<.SSj8XW~> o`+afq"XUWp\":Qp[\(Kq![tFp[%Y?pZ_G9q<.SSj8XW~> o`+afq!@b>pZ;//pYPYupt,8hpX&ZYpW3*Jq8)n-j8XW~> o`+afq=s^Xp\":Qp[\(Kq![tFp[%Y?pZ_G9puhJRj8XW~> o`+afq=s^Xp\":Qp[\(Kq![tFp[%Y?pZ_G9puhJRj8XW~> o`+afq<[k?pZ;//pYPYupt,8hpX&ZYpW3*Jpqce,j8XW~> o`+afqY9gYp\":Qp[\(Kq![tFp[%Y?pZ_G9pZMAQj8XW~> o`+afqY9gYp\":Qp[\(Kq![tFp[%Y?pZ_G9pZMAQj8XW~> o`+afqX!t@pZ;//pYPYupt,8hpX&ZYpW3*JpVH\+j8XW~> o`+afqtTpZp\":Qp[\(Kq![tFp[%Y?pZ_G9pZDPfRUJ,~> o`+afqtTpZp\":Qp[\(Kq![tFp[%Y?pZ_G9pZDPfRUJ,~> o`+afqs=(ApZ;//pYPYupt,8hpX&ZYpW3*JpV?jDq>fRUJ,~> o`+afr:p$[p\":Qp[\(Kq![tFp[%Y?pZ_G9pZMSfRUJ,~> o`+afr:p$[p\":Qp[\(Kq![tFp[%Y?pZ_G9pZMSfRUJ,~> o`+afr9X1BpZ;//pYPYupt,8hpX&ZYpW3*JpVHmDq>fRUJ,~> o`+afrV6-\p\":Qp[\(Kq![tFp[%Y?pZ_G9pZMP;q>fRUJ,~> o`+afrV6-\p\":Qp[\(Kq![tFp[%Y?pZ_G9pZMP;q>fRUJ,~> o`+afrTs:CpZ;//pYPYupt,8hpX&ZYpW3*JpVHjCq>fRUJ,~> o`+afrqQ6]p\":Qp[\(Kq![tFp[%Y?pZ_G9pZMM:q>fRUJ,~> o`+afrqQ6]p\":Qp[\(Kq![tFp[%Y?pZ_G9pZMM:q>fRUJ,~> o`+afrp9CDpZ;//pYPYupt,8hpX&ZYpW3*JpVHgBq>fRUJ,~> o`+afs7l?^p\":Qp[\(Kq![tFp[%Y?pZ_G9pZMJ9q>fRUJ,~> o`+afs7l?^p\":Qp[\(Kq![tFp[%Y?pZ_G9pZMJ9q>fRUJ,~> o`+afs6TLEpZ;//pYPYupt,8hpX&ZYpW3*JpVHdAq>fRUJ,~> o`+af!;Q<^p\":Qp[\(Kq![tFp[%Y?pZ_G9pZMG8q>fRUJ,~> o`+af!;Q<^p\":Qp[\(Kq![tFp[%Y?pZ_G9pZMG8q>fRUJ,~> o`+af!:9IEpZ;//pYPYupt,8hpX&ZYpW3*JpVHa@q>fRUJ,~> o`+afp\+@Sq"+R;mC2MlmBuet!mg,qpZVA7qW7PRj8XW~> o`+afp\+@Sq"+R;mC2MlmBuet!mg,qpZVA7qW7PRj8XW~> o`+afpZ_G6pu2:rpTXCqpoa@npT4+hqPaP,aN4+ppVH^?q>fRUJ,~> o`+afq"FITp[eHp^R5,0l1aE9kP=69!9=*0~> o`+afq"FITp[eHp^R5,0l1aE9kP=69!9=*0~> o`+afq!%P7pYl1W^R5,%aS3[J_>1hA!9=*0~> o`+afq=aRUp[eLW\%e=2[.ieYkP408!9=*0~> o`+afq=aRUp[eLW\%e=2[.ieYkP408!9=*0~> o`+afq<@Y8pYl51YeQS+WV=C+_>(b@!9=*0~> o`+afqY'[Vp[nLV!4T_2!4;ObpZM;4q>fRUJ,~> o`+afqY'[Vp[nLV!4T_2!4;ObpZM;4q>fRUJ,~> o`+afqW[b9pYu50!3j5+!3#\3pVHUfRUJ,~> o`+afqtBdWp[nIU!4T_2!4;RcpZM;4!9EtVj8XW~> o`+afqtBdWp[nIU!4T_2!4;RcpZM;4!9EtVj8XW~> o`+afqs!k:pYu2/!3j5+!3#_4pVHU o`+afr:]mXp[nFT!4T_2!4;UdpZM;4s5a"Vj8XW~> o`+afr:]mXp[nFT!4T_2!4;UdpZM;4s5a"Vj8XW~> o`+afr9 o`+afrV$!Yp[nCS!4T_2!4;XepZM;4roEnUj8XW~> o`+afrV$!Yp[nCS!4T_2!4;XepZM;4roEnUj8XW~> o`+afrTX( o`+afrq?*Zp[n@R!7g_Nm^DMjo<\MCr93nfRUJ,~> o`+afrq?*Zp[n@R!7g_Nm^DMjo<\MCr93nfRUJ,~> o`+afros1=pYu),!6>)CpTO@ppT=1kpT!terMT_*r5JEHpV-U;q>fRUJ,~> o`+afs7Z3[p[n4Np[S%Ip[7eBpZqS6q>fRUJ,~> o`+afs7Z3[p[n4Np[S%Ip[7eBpZqS6q>fRUJ,~> o`+afs69:>pYtr(pY,DopXAl`pWWBQpVlmCpV-R:q>fRUJ,~> o`+af!;?0[p[n4Np[S%Ip[7eBpZqSfRUJ,~> o`+af!;?0[p[n4Np[S%Ip[7eBpZqSfRUJ,~> o`+af!9s7>pYtr(pY,DopXAl`pWWBQpVlmCpV-O9q>fRUJ,~> o`+afp\":Qp[\(Kq![tFp[%Y?pZ_G9pZM;4qW.JQj8XW~> o`+afp\":Qp[\(Kq![tFp[%Y?pZ_G9pZM;4qW.JQj8XW~> o`+afpZ;//pYPYupt,8hpX&ZYpW3*JpVHU o`+afq"=CRp[\(Kq![tFp[%Y?pZ_G9pZM;4q;hAPj8XW~> o`+afq"=CRp[\(Kq![tFp[%Y?pZ_G9pZM;4q;hAPj8XW~> o`+afpuV80pYPYupt,8hpX&ZYpW3*JpVHU o`+afq=XLSp[\(Kq![tFp[%Y?pZ_G9pZM;4puM8Oj8XW~> o`+afq=XLSp[\(Kq![tFp[%Y?pZ_G9pZM;4puM8Oj8XW~> o`+afq;qA1pYPYupt,8hpX&ZYpW3*JpVHU o`+afqXsUTp[\(Kq![tFp[%Y?pZ_G9pZM;4pZ2/Nj8XW~> o`+afqXsUTp[\(Kq![tFp[%Y?pZ_G9pZM;4pZ2/Nj8XW~> o`+afqW7J2pYPYupt,8hpX&ZYpW3*JpVHU o`+afqt9^Up[\(Kq![tFp[%Y?pZ_G9pZM;4pZ)>6q>fRUJ,~> o`+afqt9^Up[\(Kq![tFp[%Y?pZ_G9pZM;4pZ)>6q>fRUJ,~> o`+afqrRS3pYPYupt,8hpX&ZYpW3*JpVHUfRUJ,~> o`+afr:TgVp[\(Kq![tFp[%Y?pZ_G9pZM;4pZ2A6q>fRUJ,~> o`+afr:TgVp[\(Kq![tFp[%Y?pZ_G9pZM;4pZ2A6q>fRUJ,~> o`+afr8m\4pYPYupt,8hpX&ZYpW3*JpVHUfRUJ,~> o`+afrUopWp[\(Kq![tFp[%Y?pZ_G9pZM;4pZ2>5q>fRUJ,~> o`+afrUopWp[\(Kq![tFp[%Y?pZ_G9pZM;4pZ2>5q>fRUJ,~> o`+afrT3e5pYPYupt,8hpX&ZYpW3*JpVHUfRUJ,~> o`+afrq6$Xp[\4O!4T_2!42UdpZ;/1rSmYRj8XW~> o`+afrq6$Xp[\4O!4T_2!42UdpZ;/1rSmYRj8XW~> o`+afroNn6pYPf$!3a/*!2ob2pV-C5rO2P&j8XW~> o`+afs7Q-Yp[\1N!4T_2!42XepZ;/1r8RPQj8XW~> o`+afs7Q-Yp[\1N!4T_2!42XepZ;/1r8RPQj8XW~> o`+afs5j"7pYPc#!3a/*!2oe3pV-C5r3lG%j8XW~> o`+af!;6*Yp[\.M!4T_2!42[fpZ;/1qr7GPj8XW~> o`+af!;6*Yp[\.M!4T_2!42[fpZ;/1qr7GPj8XW~> o`+af!9Nt7pYP`"!3a/*!2oh4pV-C5qmQ>$j8XW~> o`+afp[n4Nq!e?n^R5/0kNDU$pZ221q>fRUJ,~> o`+afp[n4Nq!e?n^R5/0kNDU$pZ221q>fRUJ,~> o`+afpYtr(pt>_O^R5/$_85l[pU^40q>fRUJ,~> o`+afq"4=Op[J6l^R5,/kP+*4jS@g3!9=*0~> o`+afq"4=Op[J6l^R5,/kP+*4jS@g3!9=*0~> o`+afpu;&)pY#VM^R5,#_=t\<](rf2!9=*0~> o`+afq=OFPp[J:Q[_J41ZhNSUjS7a2!9=*0~> o`+afq=OFPp[J:Q[_J41ZhNSUjS7a2!9=*0~> o`+afq;V/*pY#Z"Y.pA)Vt[q"](i`1!9=*0~> o`+afqXjOQp[S:P!4KY1!42I^pZ2).q>fRUJ,~> o`+afqXjOQp[S:P!4KY1!42I^pZ2).q>fRUJ,~> o`+afqVq8+pY,Z!!3X))!2fP*pU^+-q>fRUJ,~> o`+afqt0XRp[S%Ip[7eBpZqSfRUJ,~> o`+afqt0XRp[S%Ip[7eBpZqSfRUJ,~> o`+afqr7A,pY,DopXAl`pWWBQpVlmCpV-C5pU1(.q>fRUJ,~> o`+afr:KaSp[S%Ip[7eBpZqSfRUJ,~> o`+afr:KaSp[S%Ip[7eBpZqSfRUJ,~> o`+afr8RJ-pY,DopXAl`pWWBQpVlmCpV-C5pU:+.q>fRUJ,~> o`+afrUfjTp[S%Ip[7eBpZqSfRUJ,~> o`+afrUfjTp[S%Ip[7eBpZqSfRUJ,~> o`+afrSmS.pY,DopXAl`pWWBQpVlmCpV-C5pU:(-q>fRUJ,~> o`+afrq,sUp[S%Ip[7eBpZqSfRUJ,~> o`+afrq,sUp[S%Ip[7eBpZqSfRUJ,~> o`+afro3\/pY,DopXAl`pWWBQpVlmCpV-C5pU:%,q>fRUJ,~> o`+afs7H'Vp[S%Ip[7eBpZqSfRUJ,~> o`+afs7H'Vp[S%Ip[7eBpZqSfRUJ,~> o`+afs5Ne0pY,DopXAl`pWWBQpVlmCpV-C5pU:"+q>fRUJ,~> o`+af!;-$Vp[S%Ip[7eBpZqSfRUJ,~> o`+af!;-$Vp[S%Ip[7eBpZqSfRUJ,~> o`+af!93b0pY,DopXAl`pWWBQpVlmCpV-C5pU9t*q>fRUJ,~> o`+afp[\(Kq![tFp[%Y?pZ_G9pZM;4pZ2).qVh8Nj8XW~> o`+afp[\(Kq![tFp[%Y?pZ_G9pZM;4pZ2).qVh8Nj8XW~> o`+afpYPYupt,8hpX&ZYpW3*JpVHU o`+afq""1Lq![tFp[%Y?pZ_G9pZM;4pZ2).q;M/Mj8XW~> o`+afq""1Lq![tFp[%Y?pZ_G9pZM;4pZ2).q;M/Mj8XW~> o`+afptkc!pt,8hpX&ZYpW3*JpVHU o`+afq==:Mq![tFp[%Y?pZ_G9pZM;4pZ2).pu2&Lj8XW~> o`+afq==:Mq![tFp[%Y?pZ_G9pZM;4pZ2).pu2&Lj8XW~> o`+afq;1l"pt,8hpX&ZYpW3*JpVHU o`+afqXXCNq![tFp[%Y?pZ_G9pZM;4pZ2).pYkrKj8XW~> o`+afqXXCNq![tFp[%Y?pZ_G9pZM;4pZ2).pYkrKj8XW~> o`+afqVLu#pt,8hpX&ZYpW3*JpVHU o`+afqssLOq![tFp[%Y?pZ_G9pZM;4pZ2).pYc,0q>fRUJ,~> o`+afqssLOq![tFp[%Y?pZ_G9pZM;4pZ2).pYc,0q>fRUJ,~> o`+afqqh)$pt,8hpX&ZYpW3*JpVHUfRUJ,~> o`+afr:9UPq![tFp[%Y?pZ_G9pZM;4pZ2).pYl/0q>fRUJ,~> o`+afr:9UPq![tFp[%Y?pZ_G9pZM;4pZ2).pYl/0q>fRUJ,~> o`+afr8.2%pt,8hpX&ZYpW3*JpVHUfRUJ,~> o`+afrUT^Qq![tFp[%Y?pZ_G9pZM;4pZ2).pYl,/q>fRUJ,~> o`+afrUT^Qq![tFp[%Y?pZ_G9pZM;4pZ2).pYl,/q>fRUJ,~> o`+afrSI;&pt,8hpX&ZYpW3*JpVHUfRUJ,~> o`+afrpogRq![tFp[%Y?pZ_G9pZM;4pZ2).pYl).q>fRUJ,~> o`+afrpogRq![tFp[%Y?pZ_G9pZM;4pZ2).pYl).q>fRUJ,~> o`+afrndD'pt,8hpX&ZYpW3*JpVHUfRUJ,~> o`+afs75pSq![tFp[%Y?pZ_G9pZM;4pZ2).pYl&-q>fRUJ,~> o`+afs75pSq![tFp[%Y?pZ_G9pZM;4pZ2).pYl&-q>fRUJ,~> o`+afs5*M(pt,8hpX&ZYpW3*JpVHUfRUJ,~> o`+af!:omSq![tFp[%Y?pZ_G9pZM;4pZ2).pYl#,q>fRUJ,~> o`+af!:omSq![tFp[%Y?pZ_G9pZM;4pZ2).pYl#,q>fRUJ,~> o`+af!8dJ(pt,8hpX&ZYpW3*JpVHUfRUJ,~> o`+afp[S%Ip[7eBpZqS o`+afp[S%Ip[7eBpZqS o`+afpY,DopXAl`pWWBQpVlmCpV-C5pU9h&qQK_qj8XW~> o`+afq!n.Jp[7eBpZqSf0fJpq;;#Kj8XW~> o`+afq!n.Jp[7eBpZqSf0B2lq;;#Kj8XW~> o`+afptGMppXAl`pWWBQpVm-Jf=_$fq60Vpj8XW~> o`+afq=4COf o`+afq=4COf o`+afq:bbuf o`+afqXOIOffRUJ,~> o`+afqXOIOffRUJ,~> o`+afqV(huffRUJ,~> o`+afqsjOOf o`+afqsjOOf o`+afqqCnuf o`+afr:0UOf o`+afr:0UOf o`+afr7^tuf o`+afrUK[OffRUJ,~> o`+afrUK[OffRUJ,~> o`+afrS%%uffRUJ,~> o`+afrpfdP!:JIFqWR_;f3%k+r8.8Mj8XW~> o`+afrpfdP!:JIFqWR_;f0B)gr8.8Mj8XW~> o`+afrn@/!!7TQ+qSi6Gf;JGJr2f_pj8XW~> o`+afs7,mQs6eLFqrme;f3A+/qqh/Lj8XW~> o`+afs7,mQs6eLFqrme;f0B,hqqh/Lj8XW~> o`+afs4[8"s3oT+qo/ o`+af!:fjQp[7eBpZqSqqq8,q>fRUJ,~> o`+af!:fjQp[7eBpZqSfRUJ,~> o`+af!8@5"pXAl`pWWBQpVlmC!5@'Xqlfjtq>fRUJ,~> o`+afq![tFp[%Y?pZ_G9pZMS o`+afq![tFp[%Y?pZ_G9pZMS o`+afpt,8hpX&ZYpW3*JpVHmDf:;cBq5jDmj8XW~> o`+afq="(Gp[%Y?pZ_G9pZMP;f4P!=ptkiIj8XW~> o`+afq="(Gp[%Y?pZ_G9pZMP;f0B5kptkiIj8XW~> o`+afq:GAipX&ZYpW3*JpVHjCf9uT@poO;lj8XW~> o`+afqX=1Hp[%Y?pZ_G9pZMM:f4t o`+afqX=1Hp[%Y?pZ_G9pZMM:f0B8lpYP`Hj8XW~> o`+afqUbJjpX&ZYpW3*JpVHgBf9Q?=pT42kj8XW~> o`+afqsX:Ip[%Y?pZ_G9pZMJ9f5:QFpYGo+q>fRUJ,~> o`+afqsX:Ip[%Y?pZ_G9pZMJ9f0B;mpYGo+q>fRUJ,~> o`+afqq(SkpX&ZYpW3*JpVHdAf960;pT+@nq>fRUJ,~> o`+afr9sCJp[%Y?pZ_G9pZMG8f5L`IpYPr+q>fRUJ,~> o`+afr9sCJp[%Y?pZ_G9pZMG8f098mpYPr+q>fRUJ,~> o`+afr7C\lpX&ZYpW3*JpVHa@f8fp8pT4Cnq>fRUJ,~> o`+afrU9LKp[%Y?pZ_G9pZMD7f6?uGrn[DNj8XW~> o`+afrU9LKp[%Y?pZ_G9pZMD7f0B#drn[DNj8XW~> o`+afrR^empX&ZYpW3*JpVH^?f801&ri#Ynj8XW~> o`+afrpTULp[%Y?pZ_G9pZMA6f6d;LrS@;Mj8XW~> o`+afrpTULp[%Y?pZ_G9pZMA6f0B&erS@;Mj8XW~> o`+afrn$nnpX&ZYpW3*JpVH[>f7`q#rM]Pmj8XW~> o`+afs6o^Mp[%Y?pZ_G9pZM>5f7*PPr8%2Lj8XW~> o`+afs6o^Mp[%Y?pZ_G9pZM>5f0B)fr8%2Lj8XW~> o`+afs4@"opX&ZYpW3*JpVHX=f7Eb!r2BGlj8XW~> o`+af!:T[Ms6T3ol,EP_pZ:"YqVM,*q>fRUJ,~> o`+af!:T[Ms6T3ol,EP_pZ:!kqVM,*q>fRUJ,~> o`+af!8$tos3USTpUp73pUU74qn`$@f7!Lsql'>kj8XW~> o`+afp[8%If o`+afp[8%If o`+afpXB,gf o`+afq!S+If o`+afq!S+If o`+afps]2gf o`+afqpZ;D8f8]acptbcHj8XW~> o`+afqpZ;D8f0B5jptbcHj8XW~> o`+afq:#8gf o`+afqX47If o`+afqX47If o`+afqU>>gf o`+afqsO=If6f9?6kpY>i(q>fRUJ,~> o`+afqsO=If6f0B;lpY>i(q>fRUJ,~> o`+afqpYDgffRUJ,~> o`+afr9jCIf o`+afr9jCIf o`+afr6tJgf o`+afrU0IIp;Z.3!6"ZoqW-8"pYGi'q>fRUJ,~> o`+afrU0IIp;Z.3!6"ZoqW-6mpYGi'q>fRUJ,~> o`+afrR:Pg!58->pU^+0pUC44pqHU9f4"EPrhTAjj8XW~> o`+afrpKOIpZqS o`+afrpKOIpZqS o`+afrmUVgpWWBQpVlmCpV-I7f3S0MrM98ij8XW~> o`+afs6fXJpZqS o`+afs6fXJpZqS o`+afs3p_hpWWBQpVlmCpV-F6f38!Kr1s/hj8XW~> o`+af!:KUJpZqS o`+af!:KUJpZqS o`+af!7U\hpWWBQpVlmCpV-C5f2haHqkX&gj8XW~> o`+afp[%Y?pZ_G9pZM;4pZ)>6f<"l*qV1iHj8XW~> o`+afp[%Y?pZ_G9pZM;4pZ)>6f0B/gqV1iHj8XW~> o`+afpX&ZYpW3*JpVHU o`+afq!@b@pZ_G9pZM;4pZ2A6f<>,.q:k`Gj8XW~> o`+afq!@b@pZ_G9pZM;4pZ2A6f0B2hq:k`Gj8XW~> o`+afpsAcZpW3*JpVHU o`+afq<[kApZ_G9pZM;4pZ2>5f o`+afq<[kApZ_G9pZM;4pZ2>5f0B5iptPWFj8XW~> o`+afq9\l[pW3*JpVHU o`+afqX!tBpZ_G9pZM;4pZ2;4f=(\7pY5NEj8XW~> o`+afqX!tBpZ_G9pZM;4pZ2;4f0B8jpY5NEj8XW~> o`+afqU"u\pW3*JpVHU o`+afqs=(CpZ_G9pZM;4pZ283f=M"fRUJ,~> o`+afqs=(CpZ_G9pZM;4pZ283f0B;kpY,]%q>fRUJ,~> o`+afqp>)]pW3*JpVHUfRUJ,~> o`+afr9X1DpZ_G9pZM;4pZ252f=_1?pY5`%q>fRUJ,~> o`+afr9X1DpZ_G9pZM;4pZ252f0TJnpY5`%q>fRUJ,~> o`+afr6Y2^pW3*JpVHUfRUJ,~> o`+afrTs=FffRUJ,~> o`+afrTs=FffRUJ,~> o`+afrQt>`ffRUJ,~> o`+afrp9CFffRUJ,~> o`+afrp9CFffRUJ,~> o`+afrm:D`fpn[k^q>fRUJ,~> o`+afs6TLG!9r+AqW.G2f o`+afs6TLG!9r+AqW.G2f2)4sr7^uIj8XW~> o`+afs3UMa!6EcuqRZI1f0B),r1Wrej8XW~> o`+af!:9IGs68.AqrIM2f;nc&qqClHj8XW~> o`+af!:9IGs68.AqrIM2f2VV$qqClHj8XW~> o`+af!7:Jas2`fuqmuO1f0B,-qk o`+afpZqhCf o`+afpZqhCf o`+afpWWWXf o`+afq!7nCf o`+afq!7nCf o`+afprr]Xf o`+afq o`+afq o`+afq98cXf o`+afqWmn?pZVA7pZ;/1pYu/1f9lQlpY,HDj8XW~> o`+afqWmn?pZVA7pZ;/1pYu/1f4Y*;pY,HDj8XW~> o`+afqTS]TpVlmCpV-C5pU:%,f0B81pS%E`j8XW~> o`+afqs4"@pZVA7pZ;/1pYu,0f9?6hpY#W"q>fRUJ,~> o`+afqs4"@pZVA7pZ;/1pYu,0f51KApY#W"q>fRUJ,~> o`+afqonfUpVlmCpV-C5pU:"+f0B;2pRqSXq>fRUJ,~> o`+afr9O+ApZVA7pZ;/1pYu)/f89R_pY,Z"q>fRUJ,~> o`+afr9O+ApZVA7pZ;/1pYu)/f6%)JpY,Z"q>fRUJ,~> o`+afr64oVpVlmCpV-C5pU9t*f0982pS%VXq>fRUJ,~> o`+afrTj4BpZVA7pZ;/1pYu&.f7s%Rrn.&Ij8XW~> o`+afrTj4BpZVA7pZ;/1pYu&.f6R,Ern.&Ij8XW~> o`+afrQP#WpVlmCpV-C5pU9q)f0B#'rgilcj8XW~> o`+afrp0=CpZVA7pZ;/1pYu#-f7E_NrRgrHj8XW~> o`+afrp0=CpZVA7pZ;/1pYu#-f7*MKrRgrHj8XW~> o`+afrlk,XpVlmCpV-C5pU9n(f0B&(rLNcbj8XW~> o`+afs6KFDpZVA7pZ;/1pYtu,f6mDJr7LiGj8XW~> o`+afs6KFDpZVA7pZ;/1pYtu,f7WnQr7LiGj8XW~> o`+afs315YpVlmCpV-C5pU9k'f0B))r13Zaj8XW~> o`+af!:0CDpZVA7pZ;/1pYtr+f6@)Fqq1`Fj8XW~> o`+af!:0CDpZVA7pZ;/1pYtr+f80:Wqq1`Fj8XW~> o`+af!6k2YpVlmCpV-C5pU9h&f0B,*qjmQ`j8XW~> o`+afpZ_G9pZM;4pZ2).pYc,0f5piCqUkWEj8XW~> o`+afpZ_G9pZM;4pZ2).pYc,0f8TU\qUkWEj8XW~> o`+afpW3*JpVHU o`+afq!%P:pZM;4pZ2).pYl/0f5CN?q:PNDj8XW~> o`+afq!%P:pZM;4pZ2).pYl/0f9-!bq:PNDj8XW~> o`+afprN3KpVHU o`+afq<@Y;pZM;4pZ2).pYl,/f4t9 o`+afq<@Y;pZM;4pZ2).pYl,/f9Q o`+afq8i o`+afqW[n@f o`+afqW[n@f o`+afqT/QQf o`+afqs!t@ffRUJ,~> o`+afqs!t@ffRUJ,~> o`+afqoJWQffRUJ,~> o`+afr9=%@f o`+afr9=%@f o`+afr5e]Qc*R;Nf098/pRV>Qq>fRUJ,~> o`+afrTX+@ffRUJ,~> o`+afrTX+@ffRUJ,~> o`+afrQ+cQcEmANf0B##rgNZ`j8XW~> o`+afros1@ffRUJ,~> o`+afros1@ffRUJ,~> o`+afrlFiQca3GNf0B&$rL3Q_j8XW~> o`+afs69:A!9_t?qVh5,f1Gejr7CcFj8XW~> o`+afs69:A!9_t?qVh5,f=(M-r7CcFj8XW~> o`+afs2arR!5[$gpoi:6q47GPq>fRUJ,~> o`+af!9s7As6&"?qr.>-!8cfRUJ,~> o`+af!9s7As6&"?qr.>-!8c>>qUk\sq>fRUJ,~> o`+af!6FoRs2!*hpoa\!f0B,&qjR?]j8XW~> o`+afpZVA7pZ;/1pYtr+ptu,.f0B/bqUbQDj8XW~> o`+afpZVA7pZ;/1pYtr+ptu,.f>%48qUbQDj8XW~> o`+afpVlmCpV-C5pU9h&poj_!f0B/'qO76\j8XW~> o`+afpuqJ8pZ;/1pYtr+ptti&pYGSupY,Aoq:GHCj8XW~> o`+afpuqJ8pZ;/1pYtr+ptti&pYGSupY,Aoq:GHCj8XW~> o`+afpr3!DpV-C5pU9h&pojFnpSdh^pS%>Pq3q-[j8XW~> o`+afq<7S9pZ;/1pYtr+ptti&pYGSupY,Aopt,?Bj8XW~> o`+afq<7S9pZ;/1pYtr+ptti&pYGSupY,Aopt,?Bj8XW~> o`+afq8N*EpV-C5pU9h&pojFnpSdh^pS%>PpmV$Zj8XW~> o`+afqWR\:pZ;/1pYtr+ptti&pYGSupY,AopXf6Aj8XW~> o`+afqWR\:pZ;/1pYtr+ptti&pYGSupY,AopXf6Aj8XW~> o`+afqSi3FpV-C5pU9h&pojFnpSdh^pS%>PpR:pYj8XW~> o`+afqrme;pZ;/1pYtr+ptti&pYGSupY,AopX]Dqq>fRUJ,~> o`+afqrme;pZ;/1pYtr+ptti&pYGSupY,AopX]Dqq>fRUJ,~> o`+afqo/PpR2)Jq>fRUJ,~> o`+afr93nfRUJ,~> o`+afr93nfRUJ,~> o`+afr5JEHpV-C5pU9h&pojFnpSdh^pS%>PpR;,Jq>fRUJ,~> o`+afrTO"=pZ;/1pYtr+ptti&pYGSupY,AopXfDpq>fRUJ,~> o`+afrTO"=pZ;/1pYtr+ptti&pYGSupY,AopXfDpq>fRUJ,~> o`+afrPeNIpV-C5pU9h&pojFnpSdh^pS%>PpR;)Iq>fRUJ,~> o`+afroj+>pZ;/1pYtr+ptti&pYGSupY,AopXfAoq>fRUJ,~> o`+afroj+>pZ;/1pYtr+ptti&pYGSupY,AopXfAoq>fRUJ,~> o`+afrl+WJpV-C5pU9h&pojFnpSdh^pS%>PpR;&Hq>fRUJ,~> o`+afs604?pZ;/1pYtr+ptti&pYGSupY,AopXf>nq>fRUJ,~> o`+afs604?pZ;/1pYtr+ptti&pYGSupY,AopXf>nq>fRUJ,~> o`+afs2F`KpV-C5pU9h&pojFnpSdh^pS%>PpR;#Gq>fRUJ,~> o`+af!9j1?s5i^fmDJn>r878*!8[(ZmD/_9qUbVpq>fRUJ,~> o`+af!9j1?s5i^fmDJn>r878*!8[(ZmD/_9qUbVpq>fRUJ,~> o`+af!6+]Ks1\<fRUJ,~> o`+afpZMP;f o`+afpZMP;f o`+afpVHjCf o`+afpuhV;f o`+afpuhV;f o`+afpqcpCf o`+afq<.\;f o`+afq<.\;f o`+afq8*!Cf o`+afqWIb;f o`+afqWIb;f o`+afqSE'Cf o`+afqrdh;f o`+afqrdh;f o`+afqn`-Cf o`+afr9*n;f o`+afr9*n;f o`+afr5&3Cf o`+afrTEt;p;H@9p;6X^q;(_[mD/J2pXT8mq>fRUJ,~> o`+afrTEt;p;H@9p;6X^q;(_[mD/J2pXT8mq>fRUJ,~> o`+afrPA9C!4V^2pU'\$pp'k'q5jCjs0)1"pT=1jpT!tRrf[*Xj8XW~> o`+afroa%;pZ2).pYko)pYPZ#pY5GrpXo5lpXT5lq>fRUJ,~> o`+afroa%;pZ2).pYko)pYPZ#pY5GrpXo5lpXT5lq>fRUJ,~> o`+afrk\?CpU^+-pTsXupT4+fpS@PWpRV&IpQkc@q>fRUJ,~> o`+afs6'.fRUJ,~> o`+afs6'.fRUJ,~> o`+afs2"HDpU^+-pTsXupT4+fpS@PWpRV&IpQk`?q>fRUJ,~> o`+af!9a+fRUJ,~> o`+af!9a+fRUJ,~> o`+af!5\EDpU^+-pTsXupT4+fpS@PWpRV&IpQk]>q>fRUJ,~> o`+afpZ;/1pYtr+ptti&pYGSupY,AopXf/iqUG?Aj8XW~> o`+afpZ;/1pYtr+ptti&pYGSupY,AopXf/iqUG?Aj8XW~> o`+afpV-C5pU9h&pojFnpSdh^pS%>PpR:iBqNC[Tj8XW~> o`+afpuV82pYtr+ptti&pYGSupY,AopXf/iq:,6@j8XW~> o`+afpuV82pYtr+ptti&pYGSupY,AopXf/iq:,6@j8XW~> o`+afpqHL6pU9h&pojFnpSdh^pS%>PpR:iBq3(RSj8XW~> o`+afq;qA3pYtr+ptti&pYGSupY,AopXf/ipsf-?j8XW~> o`+afq;qA3pYtr+ptti&pYGSupY,AopXf/ipsf-?j8XW~> o`+afq7cU7pU9h&pojFnpSdh^pS%>PpR:iBplbIRj8XW~> o`+afqW7J4pYtr+ptti&pYGSupY,AopXf/ipXK$>j8XW~> o`+afqW7J4pYtr+ptti&pYGSupY,AopXf/ipXK$>j8XW~> o`+afqS)^8pU9h&pojFnpSdh^pS%>PpR:iBpQG@Qj8XW~> o`+afqrRS5pYtr+ptti&pYGSupY,AopXf/ipXB2kq>fRUJ,~> o`+afqrRS5pYtr+ptti&pYGSupY,AopXf/ipXB2kq>fRUJ,~> o`+afqnDg9pU9h&pojFnpSdh^pS%>PpR:iBpQ>N;q>fRUJ,~> o`+afr8m\6pYtr+ptti&pYGSupY,AopXf/ipXK5kq>fRUJ,~> o`+afr8m\6pYtr+ptti&pYGSupY,AopXf/ipXK5kq>fRUJ,~> o`+afr4_p:pU9h&pojFnpSdh^pS%>PpR:iBpQGQ;q>fRUJ,~> o`+afrT3e7pYtr+ptti&pYGSupY,AopXf/ipXK2jq>fRUJ,~> o`+afrT3e7pYtr+ptti&pYGSupY,AopXf/ipXK2jq>fRUJ,~> o`+afrP&$;pU9h&pojFnpSdh^pS%>PpR:iBpQGN:q>fRUJ,~> o`+afroNn8pYtr+ptti&pYGSupY,AopXf/ipXK/iq>fRUJ,~> o`+afroNn8pYtr+ptti&pYGSupY,AopXf/ipXK/iq>fRUJ,~> o`+afrkA-PpR:iBpQGK9q>fRUJ,~> o`+afs5j"9pYtr+ptti&pYGSupY,AopXf/ipXK,hq>fRUJ,~> o`+afs5j"9pYtr+ptti&pYGSupY,AopXf/ipXK,hq>fRUJ,~> o`+afs1\6=pU9h&pojFnpSdh^pS%>PpR:iBpQGH8q>fRUJ,~> o`+af!9Nt9pYtr+ptti&pYGSupY,AopXf/ipXK)gq>fRUJ,~> o`+af!9Nt9pYtr+ptti&pYGSupY,AopXf/ipXK)gq>fRUJ,~> o`+af!5A3=pU9h&pojFnpSdh^pS%>PpR:iBpQGE7q>fRUJ,~> o`+afpZ2).pYko)pYPZ#pY5GrpXo5lpXT#fqU53?j8XW~> o`+afpZ2).pYko)pYPZ#pY5GrpXo5lpXT#fqU53?j8XW~> o`+afpU^+-pTsXupT4+fpS@PWpRV&IpQkQ:qN(IQj8XW~> o`+afpuM2/pYko)pYPZ#pY5GrpXo5lpXT#fq9o*>j8XW~> o`+afpuM2/pYko)pYPZ#pY5GrpXo5lpXT#fq9o*>j8XW~> o`+afpq$4.pTsXupT4+fpS@PWpRV&IpQkQ:q2b@Pj8XW~> o`+afq;h;0pYko)pYPZ#pY5GrpXo5lpXT#fpsT!=j8XW~> o`+afq;h;0pYko)pYPZ#pY5GrpXo5lpXT#fpsT!=j8XW~> o`+afq7?=/pTsXupT4+fpS@PWpRV&IpQkQ:plG7Oj8XW~> o`+afqW.D1pYko)pYPZ#pY5GrpXo5lpXT#fpX8m o`+afqW.D1pYko)pYPZ#pY5GrpXo5lpXT#fpX8m o`+afqRZF0pTsXupT4+fpS@PWpRV&IpQkQ:pQ,.Nj8XW~> o`+afnP&@Dm7Qb;m7?V7p."lYj8XW~> o`+afnP&@Dm7Qb;m7?V7p."lYj8XW~> o`+afq`aa;pH844pH&%.pG_h)pGM\%pG2ItpFlS#q>fRUJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'IBo`4%PJ,~> o`'JBoi:&PJ,~> o`'JBoi:&PJ,~> o`'JBoi:&PJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> JcEmmJ,~> %%EndData showpage %%Trailer end %%EOF beamer/base/art/beamericonarticle.tex0000644000175000017500000000661012050430504017547 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \documentclass[12pt]{article} \usepackage{pgf,pgfshade} \usepackage{color} \usepackage[papersize={11pt,14pt},hmargin=0pt,vmargin=0pt,headsep=0pt,nohead,nofoot]{geometry} \pagestyle{empty} \begin{document} \begin{colormixin}{20}% \pgfdeclareverticalshading{shadow}{20pt}{% rgb(0pt)=(.2,.2,.2); rgb(11pt)=(1,1,1)}% \pgfdeclareverticalshading{paper}{20pt}{% rgb(0pt)=(0.8,0.8,0.5); rgb(15pt)=(1,1,1)}% \pgfdeclareverticalshading{pic}{2.5pt}{% rgb(0pt)=(0.25,0.75,0.25); rgb(1.5pt)=(0.75,0.25,0.25); rgb(3.5pt)=(0.25,0.25,0.75)}% \pgfdeclareverticalshading{corner}{2pt}{% rgb(0pt)=(0.5,0.5,0); rgb(2pt)=(0.8,0.8,0.8)}% \noindent\hbox{% \begin{pgfpicture}{-1pt}{-2pt}{10pt}{12pt} \pgfsetxvec{\pgfpoint{1pt}{0pt}} \pgfsetyvec{\pgfpoint{0pt}{1pt}} \pgfsetlinewidth{0.4pt} % \begin{pgfscope} % \color[gray]{0.7} % \pgfmoveto{\pgfxy(0.6,-1)} % \pgflineto{\pgfxy(9,-1)} % \pgflineto{\pgfxy(9,8.2)} % \pgflineto{\pgfxy(6.8,10.4)} % \pgflineto{\pgfxy(0.6,10.4)} % \pgfclip % \pgfputat{\pgfxy(0.6,-10)} % {% % \begin{pgfrotateby}{\pgfdegree{45}} % \pgfbox[left,base]{\pgfuseshading{shadow}} % \end{pgfrotateby} % } % \end{pgfscope} \begin{pgfscope} \pgfmoveto{\pgfxy(0,0)} \pgflineto{\pgfxy(8,0)} \pgflineto{\pgfxy(8,9)} \pgflineto{\pgfxy(6,9)} \pgflineto{\pgfxy(6,11)} \pgflineto{\pgfxy(0,11)} \pgfclip \pgfputat{\pgfxy(0,-10)} {% \begin{pgfrotateby}{\pgfdegree{45}} \pgfbox[left,base]{\pgfuseshading{paper}} \end{pgfrotateby} } \end{pgfscope} \begin{pgfscope} \pgfmoveto{\pgfxy(8,9)} \pgflineto{\pgfxy(6,9)} \pgflineto{\pgfxy(6,11)} \pgfclip \pgfputat{\pgfxy(6,9)}{\pgfbox[left,base]{\pgfuseshading{corner}}} \end{pgfscope} \pgfmoveto{\pgfxy(0,0)} \pgflineto{\pgfxy(8,0)} \pgflineto{\pgfxy(8,9)} \pgflineto{\pgfxy(6,11)} \pgflineto{\pgfxy(0,11)} \pgfclosepath \pgfstroke \color[gray]{0.5} \pgfxyline(1,9.5)(6,9.5) \color[gray]{0.6} \pgfxyline(2,8)(6,8) \pgfxyline(2,7)(6,7) \color[gray]{0.7} \pgfxyline(1,5.5)(3.5,5.5) \pgfxyline(1,4.5)(3.5,4.5) \pgfxyline(1,3.5)(3.5,3.5) \pgfxyline(1,2.5)(3.5,2.5) \pgfxyline(1,1.5)(3.5,1.5) \pgfputat{\pgfxy(4.5,2.25)}{\pgfbox[left,base]{\pgfuseshading{pic}}} \pgfxyline(4.5,1.5)(7,1.5) \color{black} \pgfmoveto{\pgfxy(8,9)} \pgflineto{\pgfxy(6,9)} \pgflineto{\pgfxy(6,11)} \pgfstroke \end{pgfpicture}% }% \end{colormixin}% \end{document} beamer/base/art/beamericonbook.20.pdf0000644000175000017500000000525612050430504017254 0ustar mohuramohura%PDF-1.3 5 0 obj << /Length 317 /Filter /FlateDecode >> stream xT;N0}cgA(8@ Vh(7I {a~ls;gEƍ!#; Mz[A@_1(G alr[bN]Y$R bt->S5 SH$I9cB^)H3# QlUg7UX+]QAb^Q?)z6otE %~HtO:*Z⺌ӼkZomr9uvD3VIa%IO,jٌh1yZ퇣endstream endobj 4 0 obj << /Type /Page /Contents 5 0 R /Resources 3 0 R /MediaBox [0 0 13.948 11.955] /Parent 6 0 R >> endobj 1 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 7.97 19.925] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 7 0 R /Length 15 /Filter /FlateDecode >> stream xP(endstream endobj 7 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 7.9701] /Coords [0.0 0 7.9701 0] /Function << /FunctionType 3 /Domain [0.0 7.9701] /Functions [ << /FunctionType 2 /Domain [0.0 7.9701] /C0 [0.968 0.9 0.9] /C1 [0.964 0.896 0.896] /N 1 >> << /FunctionType 2 /Domain [0.0 7.9701] /C0 [0.964 0.896 0.896] /C1 [0.966 0.932 0.93] /N 1 >> << /FunctionType 2 /Domain [0.0 7.9701] /C0 [0.966 0.932 0.93] /C1 [0.966 0.932 0.93] /N 1 >> << /FunctionType 2 /Domain [0.0 7.9701] /C0 [0.966 0.932 0.93] /C1 [0.938 0.85 0.86] /N 1 >> << /FunctionType 2 /Domain [0.0 7.9701] /C0 [0.938 0.85 0.86] /C1 [0.89 0.81 0.81] /N 1 >> ] /Bounds [ 1.79326 1.89288 2.09215 2.98878] /Encode [0 1 0 1 0 1 0 1 0 1] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 2 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 9.963 4.981] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 8 0 R /Length 15 /Filter /FlateDecode >> stream xP(endstream endobj 8 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 4.98131] /Coords [0 0.0 0 4.98131] /Function << /FunctionType 3 /Domain [0.0 4.98131] /Functions [ << /FunctionType 2 /Domain [0.0 4.98131] /C0 [0.956 0.956 0.956] /C1 [0.92 0.92 0.92] /N 1 >> << /FunctionType 2 /Domain [0.0 4.98131] /C0 [0.92 0.92 0.92] /C1 [0.85 0.85 0.85] /N 1 >> ] /Bounds [ 2.49065] /Encode [0 1 0 1] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 3 0 obj << /XObject << /Fm1 1 0 R /Fm2 2 0 R >> /ProcSet [ /PDF ] >> endobj 6 0 obj << /Type /Pages /Count 1 /Kids [4 0 R] >> endobj 9 0 obj << /Type /Catalog /Pages 6 0 R >> endobj 10 0 obj << /Producer (pdfTeX-0.14h) /Creator (TeX) /CreationDate (D:20031027233800) >> endobj xref 0 11 0000000000 65535 f 0000000514 00000 n 0000001494 00000 n 0000002158 00000 n 0000000404 00000 n 0000000009 00000 n 0000002234 00000 n 0000000712 00000 n 0000001692 00000 n 0000002291 00000 n 0000002340 00000 n trailer << /Size 11 /Root 9 0 R /Info 10 0 R >> startxref 2435 %%EOF beamer/base/art/beamericononline.20.eps0000644000175000017500000010056712050430504017625 0ustar mohuramohura%!PS-Adobe-3.0 EPSF-3.0 %%Creator: cairo 1.10.2 (http://cairographics.org) %%CreationDate: Tue Jan 17 16:28:57 2012 %%Pages: 1 %%BoundingBox: 0 -1 39 39 %%DocumentData: Clean7Bit %%LanguageLevel: 3 %%EndComments %%BeginProlog /cairo_eps_state save def /dict_count countdictstack def /op_count count 1 sub def userdict begin /q { gsave } bind def /Q { grestore } bind def /cm { 6 array astore concat } bind def /w { setlinewidth } bind def /J { setlinecap } bind def /j { setlinejoin } bind def /M { setmiterlimit } bind def /d { setdash } bind def /m { moveto } bind def /l { lineto } bind def /c { curveto } bind def /h { closepath } bind def /re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto 0 exch rlineto 0 rlineto closepath } bind def /S { stroke } bind def /f { fill } bind def /f* { eofill } bind def /n { newpath } bind def /W { clip } bind def /W* { eoclip } bind def /BT { } bind def /ET { } bind def /pdfmark where { pop globaldict /?pdfmark /exec load put } { globaldict begin /?pdfmark /pop load def /pdfmark /cleartomark load def end } ifelse /BDC { mark 3 1 roll /BDC pdfmark } bind def /EMC { mark /EMC pdfmark } bind def /cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def /Tj { show currentpoint cairo_store_point } bind def /TJ { { dup type /stringtype eq { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse } forall currentpoint cairo_store_point } bind def /cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def /Tf { pop /cairo_font exch def /cairo_font_matrix where { pop cairo_selectfont } if } bind def /Td { matrix translate cairo_font_matrix matrix concatmatrix dup /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def /Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def /g { setgray } bind def /rg { setrgbcolor } bind def /d1 { setcachedevice } bind def %%EndProlog %%Page: 1 1 %%BeginPageSetup %%PageBoundingBox: 0 -1 39 39 %%EndPageSetup q 0 -1 39 40 rectclip q 0 38.4 39 -39 re W n /CairoFunction << /FunctionType 3 /Domain [ 0 1 ] /Functions [ << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 1 1 1 ] /C1 [ 1 1 1 ] /N 1 >> << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 1 1 1 ] /C1 [ 0.854902 0.898039 0.945098 ] /N 1 >> << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 0.854902 0.898039 0.945098 ] /C1 [ 0.67451 0.733333 0.835294 ] /N 1 >> ] /Bounds [ 0.155172 0.75 ] /Encode [ 1 1 3 { pop 0 1 } for ] >> def << /PatternType 2 /Shading << /ShadingType 3 /ColorSpace /DeviceRGB /Coords [ 18.246094 15.714844 0 18.246094 15.714844 29.992188 ] /Function CairoFunction /Extend [ true true ] >> >> [ 0.799991 0 0 -0.800009 0 38.400002 ] makepattern setpattern 35.168 19.611 m 35.168 11.045 28.223 4.099 19.656 4.099 c 11.09 4.099 4.145 11.045 4.145 19.611 c 4.145 28.177 11.09 35.123 19.656 35.123 c 28.223 35.123 35.168 28.177 35.168 19.611 c h 35.168 19.611 m f 0.67451 0.67451 0.823529 rg 0.8 w 0 J 0 j [] 0.0 d 4 M q 1 0 0 -1 0 38.400002 cm 35.168 18.789 m 35.168 27.355 28.223 34.301 19.656 34.301 c 11.09 34.301 4.145 27.355 4.145 18.789 c 4.145 10.223 11.09 3.277 19.656 3.277 c 28.223 3.277 35.168 10.223 35.168 18.789 c h 35.168 18.789 m S Q Q q 0 38.4 39 -39 re W n q 0 38.4 38 -38 re W n % Fallback Image: x=0, y=0, w=39, h=39 res=300dpi size=79707 [ 0.24 0 0 0.24 0 -0.719998 ] concat /DeviceRGB setcolorspace 8 dict dup begin /ImageType 1 def /Width 163 def /Height 163 def /BitsPerComponent 8 def /Decode [ 0 1 0 1 0 1 ] def /DataSource currentfile /ASCII85Decode filter /LZWDecode filter def /Interpolate false def /ImageMatrix [ 1 0 0 -1 0 163 ] def end image J3Vsg3$]7K#D>EP:q1$o*=mro@So+\<\5,H7Uo<*jE<[.O@Wn[3@'nb-^757;Rp>H>q_R=Al C^cenm@9:1mM9jS"!dTMT<$3[GQ$8#0$s<4ZX!SPQ1`C/mk4jFBD;.4M(?#194.a^:j0=chE@t4':in% T->/)F\@E!5NOcVX_;/l)'5JRrD$5aYD.H*sOe^9Hsl_jjA0e(e,CWAOYa,U2q 6M_:3:jB3_rhRqD3CDB%bTaEF%Bl.Tqm7p3!2SS""aF;_28No1a$&\;3`-H!)"3\_$Wn$pd XVSO4kl+2$ZkIL7*;@>M[INPI"`-7S\)8,.;m[TUNZRj47>;J^iZG2nVM5G@<-Y^kK*bU>n I%G8]j]`e(dH+WbB@5aEfCe[tI3',oML=(>I:m+5-[Fj%S^r4aBJnsg??MhEZ+t@N1.F\o>>N>8n%e:B!uN;:'HWQ) XD%`eUE9)BNP%pPRu&Ft.oKe\-)%==7'YEZM'_]Q>48&_)-[LOnc%AbK_IA_CpKU3pS9ETD Kf\__X[*G:5qDpmcnUiR@7!P6M2-F9U:4=6O/CR\7:oR.gj^9jUUQ(2*!]FZm=b$Zp(&8\i =)4G?3`ehET)N3?+g-&,#+=7RESQ-#?CG,k *+9c+JZ*Q0B0tiijq^CFRWM'>B4fk'8b8S;k@SmY*J^K).%ASDT+ST\0j8:s`hB2B*:]P7X n[a@lWgWK,G?8OdSq8q(^As-hOWhln$nrY$*&4@#D%ZSR-)NLLE=LXp[Xr".J.SM8$Sq1Sp XDl?lFfGIVJf=Y8d?WHtW*M?b#NS0EoQY!T)ml5hd=hd!E$@Nj;fgVIE1IdkbYgcPc?*BHu >L%sC?(`u+%^6TLp>_6Sk/&Ca+',jC:SW:3ZZ`J-dCX,kn<3Y6=_H,sB/[5"%)7j-P+,K+5 SiT)_J_!i0c:j1gNIXbn3]UX(0-$qQ2bPH0XQ?+Vfut7TOCW_K_qcK/iU2?&I?>%Kco[#]fhlODDS'K4A 0&J86KXq`Rs8QnaLURV`auFue/i4(0[^kLQuEOdl8(ofnJG&>-q+@N4@[]Z*m8)B5#M+O-- 5_>&_q&[iHI"g4N)8X<*mUId/N'0s*f#\qF:892.CZKNmEB'1?Mt.(+VA+90PYXM$c@X4$] >JDF?e$(-E`1fc;_m]XMp%;K7"'6dee-;A@_QaM\pJI)q:)3&ONjB,Uk ;F$3CiYXW<^*`%H6N*)6%ATN5?j5bYe3_K4I)#IHr:j3:uSi]BNcDD;g>`A4./r"oD(P>2J 9ZJXDUM0+QFUDhU=1:&%6uJJH8d6g`+L>162k6YO6caL0,,\^LOYq$#*pFP)#>JTtK6VE"i rFa1.O@)')6]*i8O90Qi#Dj3c&IuX2A\5p0`ti6%Pc^$.5:OmQ3_pMJb;TN4M7oL(;m*:&3 eTdOF5BJ=V$X[/4I6*V8Ka3%b[%=+>lHB%s@?Sk;"bD4.3IaQ0ugVK_F3:msJX,Te#5G"5P 1^B5Y;%e[aF8-WOE6;o5]`&arh>3n\Slg+]6%*jR:uE>RTq0V$*Fl0kdosZO_[kKo=kE@reWN[>ZmR-PkYds@q5)%1?I_"Y>2EoKjqeSsq6@33nCH H>,h(9V20*2B`aN>1M,n9BR4X."*Z-O<;96I67SI2-/g+^7Z/q [$382b)b_3(ON$8>/$[)NXgH'UF=T,G)Z+f"@-eiOo>_a.lG[bdV9@Cfdi;WFoK@) *iZ08fA"rcMTQ21)]]3t_&"Jed$aB/",C_1>Ttcd\=Nqi'S9; P!6'.&>`[6P3g#3KG]B5rYS3o$c6h;/0m04bm#/`gG4Tj(ra!T4%=2j.L].H0HRKroG2r;) gEod"kG%3P-)C?^9)N29*/kaf"KE)tCnnOl5Ml0>)T?Lq?bm^=1dTo081)P8#qJ0,DG^Fph WUeV@^'h-7@$p"eB71?W*"HUrV/I/Ymr",GeRl[S&AMELL>E6eF&\p$:*!u?j/UlF;]E09l 0qu7(+)Jb-iV6+ZKG8>i/F-FpF6JJ`Cf,`l;B9(,D4"7@9HYsC>dK/SI#Ic0%[?P"R-Z7F1 1cOQn>tL+9X>Pc(ar*R'YDh+aBh'g4N+m;,ak)JdR]j0U&n%Ud\; sM&'WX^SjieDVj-'S5L7mJ9l<5gc.fsf,S;O.VV@(III+^Qf I,?Ys/F_.RVlr'nP0"GoO*^OHWJ^tUqRN62_pS##8iTas)nAXAW^\0eB;+l8Woj"@`6$uJ8>DLF"mGVgRYJ"P*A;4KO)Q!_Y4^pFSI'\)8@T_7XSuY.*+A' ,!UOsFo'PD'UHu[9C/Wb3.,BIN+)Rlo$"b4hV#!AtVFiUbU#=+UWsWDdqrMuCCrG4KfV:a( cL99^%Z'kQXM`D>*eD$G+m`CKo_U8+&$4EgCZ+Z!p2A4j@jWg=#$uBUA=S@RiekCfU$`jJ] )td-,,8]DXe:'DW/Cj&n"]4iN-H>"b.H[r)$,g=03\WIN*da*)I_")kC+E7DG`^PA3oc*_9 sClZ5]\+pd+0a!QtaFN#Ua**q.Z$E7u@N9Zr"c$B^kfV'oAQp99>/*as"*cS23\FreE-*5u t+@c83`r9c"AKP6>40od/g4U@bF)T]N,&<\(XoWXCk)=PB_n$(W-hY1Ht$3p9l`pdoMraQ- PF:f4!YRI8fB-8jb,JrF^b75W;lIlC]+/sYA$Prr^arMYh;Sh3S!SW:gc5_Un'gd@o;.?8. bnZqtk5j#66/6Otn/N$tI=^l-0VKhEmg0$$)q&j7&WUpNNZXCP/hNqB`@)h*?6=`oIL)Sb9 ^[=$W#m1?HpPamO8)V9P:L,#;M"co#Him/d--XH%\^E-BmhM[]_Jec%$8L:;==W"L`YuD#Y [Af$;>j\!Zn3in-1dOn-2pSmeER8,/rghng<('4O=i-7+0XPqdisr0JpPB`3RalfmoqfXh]C-0E)2-. d#eGC!>&-4096%TB!BAY-=W\E14cBQ#NZG(jMqkf*^O0O+k8gL"$clr)*uaf6'`O1*Z]#K* Xm5e'0M-aP;0=f(ZE(L"nirk@eUL@40qU-1V,4_dj:)j0-Siu@H;RIoGj%!"&Lj)iUKANAm %mN49FM#oPcE=18N>?+n*/e!N?@O2)pc47j7h$ULQfgiep+npTkr'9jf"#ni$)r8s?qZP.N 85% d]D?+n2HdJT_q4g_R_n*L-RueH&D;!#AN6*+@D>[-0GBb>0r">dX2F<8h*t[nm*a6@^U +to[(LLlMY/TmIA[I[80is7:^R5A@6A70KDR]cXKmMA2PVT_dm);M(Q$l$C1N4Ord)Dq]Mb BJUqp>n0B$*BgFVa>8E2_9iO&G!ZhS#*S-PA_:LqV:&S/Y7(?fFCA1Kapi/4M>><&5>![(>^(+(U[C@Wk-]nfolnL?357A!2-Z` T]0)S0(d+EOQri(A8jD@r]@?+nLP&iYFH?pg\=N&HVHo@IIACgKmZ3:UZ0UXWL;V)WU@4*b oX7Q-!dMASVt`>4h\XDQjo,iu8Q@o+g:hTn!uR_Rtck>f"8s+l@.R2OgE/,tM8\oM'SlPk^ FXX>Uq;:e)qn-"OJ1?D^+4;]Ae^#3_69@ndMjU$+*Q-ZS_gEd,-B[;I5@0Hj?,g(6N*U#[1 )nLr0*!/=gL.C^AZZMm/Q>5!gm'0Pf9m6=PX>h&F]Qm$4rBknI49sja4F;&jNWErTcl?9^( +a+[_p(mb6P/44@7X',E.':>]23nFe,nqAnkkLLH(=^_FU,RM%-&@ko,!>*C2T8F3RP$X&2Xe++ `"FJi9faMW?iU"(Q50"MhQl+GB=Q>CoMkXY1R2F[a<;f*@L)kQ/K@i_`iZJSn$n@q;$o[Tmp-H_F:4aNULIKJ 4VEsf_,#MG5m;%+-]c.U9,(!Lq^FlbMeV3;!oCL$6BEt(J8rCp4li% Za4h7:&5sg2&$OT\?6,+*XhV#6e+_$Q1u&*c;*%6)OUMOt>%o@R9f;8>Lbt0H#3pZb &6(g8VFpV4q0aU:.>6\gS'iS5ec?qIBa?>+EZ7_7A c)VMT?Mkd>,Hm$8;QtS4GDFRb`BiS5_>+2[4iCe8gnF8C!f\d3N>`Dulis^.:Q$aVc6:H.+ 4)jkU#Q14frB?AWk6s(qq]X]9?2UGa4(,ciRN,eh9pB[!ZPYj!FQ\:Z's^:-&u^\7:?@hH5 U/170sAE;"_B0hk(F']A($F@P]et6UhcW@RdXIr%fa!*]CoG3)\W1na[c_!>a(=*mWfm)mU N*FB^aV,'(?qZ]@D#$]TL%d2K@=>]mbHdM6@n$m.*hdMZf-a!@&H7]#OXG1?ShOkI:>,nmNJV8:j=]Apq<[?$Rb!DH:8_M_6uiSW\-/>a?)!Zpa:>Ke+- [gp-eOQGe"N;qY%g[K[rnD7=&?PA$\n(_5alF!Zu+^*tqQ^\GsE*!8m; MAU^#P?>t#p,NX%_''4f_BL!?Og^ijjrsM45Q%-KLO\fIC^I1QrE,Wpi4,T/uQ=0de@W>hT _rTVH2W;3Sj.je+*A9Rn`&ZRFLYM4eGO4YP7\?LI.]^hm>F;q>3a4;lMF\V+LO[IFW*(-gT IVqfP#./r+f4XQ+T2>7VJ_=l-r/4-tpSEoit]>;Mh.2Iik"b._5dY-k#ZfX,5%(,tSQWFEt l0,cIogR7@%X3]r>-aW?3h0EL99'/Tu8#"FF=RMGtVcTnL1*&CZRkFohFktl3>MdWSXC4+h lNXB&?I[sl*fihBA!tU)F8?muM_UU[?n`P$Ai#".c>pFcDe=WMk1"B6)K$WeX4-B\=^I)C, M#ifDE8i`kq%PWi.7Q!+qTC%LMR6D^aSa\n/hsVmenEQ6=?snNg)%%3[tJp%4LL>P,>49Jc )F7NfPh i9Tmg\rX@_!i((>;hFYBXiQ>N3Cq=<]!LZtURSoUl+2)US+dT4Vud:?gZ9@;bOCZ9n7faj6#^+GHrj-]Ao=.NJa@@:LAXeI;P&-^:.B^&sa+E)j(TW\>n=Blanqs%UH.mNc'[c!Wb,+?sG=\X:ODQ$O]X*/0;U i'ZZ7jZbUpC<:oR<4s,dc.^D+rhG2)e'.6@;*9nRWc=Vb]B3q[XIJR@=7qLBP/7"S94-= 4Y,6NhR?#Gu=Xl0+Aj`g;6E4nrQ)(Ina/4f->D>_VGfGMqLN44YU#'8u#D*5.?&-QMG91s` )0m;/?08Ga9;<'5>UOi*HBqYS$dR[AHQ:gW8Xb7'*bW%Z]Uft;0@ps+)aMBNGl)28:52[aA /thnCi*_eEEm4IB%beBGlC&aI::g6XB?<.WFf;%`d+;"DYF4](nNY=jmLlPjgi"PPk@Lk]t :&tq&[-\<-miEJlZ`b)QW2-X67pBIec4fGn*(22VO$c6Wsr+I^]GV[1Je"*fl7jV=oGL&\: 1J#gdf,&aDQQ_"r$R6,g@]nDhPuo,W]BFH5nXDMM?:)e6[*NreT"$c6(jND+XIdGX2C;k\t Y3S5]HBRCgLQlVsGI1*@G`L*p)*AH`;(^/u>$lJ:Fir!dOUQ-s\d+WuSFoDj__E4/QdMg!P >)dO130u&C*Y%mh3&0F-UPdqH&^_ITOlH/eaRW<*78UA?c?pOdooO*oouL(orX(boObE!"' SlsL,a8HSKg#W)U81J Zq;&WSUK[=/Tog-&(s]8*^.+3\dq@)ldK*lr`#PdB8hG?KTn<\on05-LA5G#dBh&E$ ;*(/9KN\Tg!h)+Ae&jAjff%WZ-Pa?8Toa/a;P:,-2pdYes?_c%!5"s?!*[B$Z_;X65i;B]! &<<3X_ot5tnk^>o^jF7HMEPE6lpf94F%cW"5mO@!8[.c`)EEmnbqq0rMV*9DK/>e)aR1p[[ +JCBRU_N@*YucJ=hBf$/k5F\S7>1#%XKR/:4k)>N2c!"=NiYBYh:%7!-\h0UlNW[^`%:I*$ _C2)lM/;*YHnH_T;;W&UO+LkE5@+j[;'5UjaA?njV.Z)b#WoCd[MNWQAc3MBC7[776QhO(% ZS#K6OZ"26gW!^8d3=Rq_6\sQDBio?kX2]h$:Hdg`1:SBcA\RUS@O&\G-C(3]Vj4%t,A4QL@fu7m70'ROXV`7?eJH4X+HF(']f(RnCh2PF/Eg,EQ"8&ZIb0SU%RYoUh-u`]O_n A/=1[C^m)Z4RK6C1'PI,(BW[/#CRtk_n@%MptRTd]Fg0)612*0#%s^f,9*a$'"Gel;/c'JZ r05Lg13Wdb,qYNAOsuT`Z'pUBj;a5.0#?@:d3]#qLiC>>,n:YVbri7_[,QS1XYDfmNol`(F %trZG\nmjjTSU<-"#APF*+&o,E=LGn"c64VF2u]B63E)\X6<;,LF`esq4$U%&icBoFdqB)' W5=trN,XVO91rDq>#0QCEW-I3;S**C9:"t8A"./sUKedad8OR3i/3-L4]+/W+.J$>c]-BA1 `\L_>4Dc,N8@H>0gM'2N!=tuDu-J+1,MBp27;G89tB5:#L/_FS&HOk]'O@KlI*n/Eg`A_Jt (uE_b`W3a]I6;`ZY#M=P=qkP8]IWV-7HiOj29"[<_:?1%^pkFO.#B7Fs,68fnIVFOA+Ur"Z2kM8Y/`g2"(IR'q!u1M@C ,)8#l!+0Jj.2'/#MG@aGGe1.NjN4(RSOJen QI_J)[\b\h3f]G44[R(h.^-Ja59BDtbIP"rq^4)(\i\8ZHn+F$4./riMI-STWI5^A)\AHs1gMdoCG92H#&XM3?)'?jKCJAOU9P< F0%QoK8ILj'(PG7:^VTKoM"/0Z2>9F8og,abMs$m32[WX5&A$FD4dZPu5uX#:fC[Q&]/3.) ?Ke;Pfn_Xm1_"0Y'*mmAON_`93HU_t?*F<(E)+nG'(ip]Hb]T[.t8!qe[@+;lP,)OF81fKT0)U"]/J0!L+':BnhFWX+XlM0VaDk`Wq*f#C7'gk\u<1'Y1#;Mj./(]IjUT'79j_&KQ"aInA?M -:"_#@m&SD/XJRgt7s(oKo6S=X!_X65&VtWmfQ7qNG)u-E#T/4*neh[7XnJBEZ*MMKhlMe!NuluNWAoVFNmXb?S=D#?JmrJ00B:Vt+G>\:uj"OMfF4p;+HgmSp E(;;&'0ms=$lIF7^@6/ef7[V@M`=>AdmSlml6Nl1A*-'6aEXZriJ7edlj@I^W:\_ U96l]YYh1sdBIPEHSe%BU'@96(@ZJOaDqNMaTgsn.G/s?@!Di_>R'GUPRqQ5!-ck2@g5J7U :U7+n6ZCPHdCVtL[?U]'2c_0?FJ8j.8nes'%f;PI8`i=MWokNfbFbGh?Vj;``T30A3\^VKOifMHdd+&Z.,Js+FV"K!+CtbX0K)9YP9dVke#OjbQI_ng1(?%ceG`bP$Q3cR/SM7m/*=818s)1*M>W `-?$Y/kkYOs@4u,`"/7'o&5>[WQ6CgD/Yfed@P"hIec)lP$[&HnCKATBp=A1[.r2rdKdi93 K#5h7GfkuPok1is6a/jU15ZNOeF@9MM>d.UjOPZku@g9/ZL>[*-JL?58-\n*_LL\FoOQ+s, eI]-h#O.I'\`SVpBa7f4+4]&q=f2M!;V%;gg-mb%Y^Ot[b=n]]e.nq3"J2!"XYp(<&H+YH] I$RBk;Cg6?EPHk/0J93-V;b:?Ig'%%=R2kb;Gj$=:D+b/?$H,]O+B(g[2]feb<0^Y8r.8L7 ?OsZSI;l`RqR:hs@VFmJkTm!"8"4?he\r=CMM#=b]IhL59^P=XSub5DI6sLL&Aa(up=S>6` (UOK;/$)"Pqs7jHJS8'7\j`V/`G[%2p`N+:lPTZ=Il7 e&m%OJ8UP%0D)oTo>\0IPj^ie\r[-?O*R/rqidcHa[II3bnlr7I`sqZ5XV0CEp06rt;21o-Yn`!khA.Hp,bCgWN+H-)VKeon;G13(C" kP.=&*$fI+5lIETQk@0u`QTD=;'XQk`NaB&PAF\jal/Y=7LNn0/OE S="Ett9K*@cn(.LieRn.C&iAMtmWp)IC%X6`BI$8)eEbrF<$3*/:EChCiE7[.^QQ!W;p:qg @SmSMki%p$K26Z'Bd%\$f_K#92m=@Uj1XtOX/pW%BZ'3Nk*mJ.&JGm;.dmDc!c<]B&fhWg] 3"s0aV5[XeVFb[tZk?r@cY!If(D$N=6L'V[W\8JM"_JZ=79E9:iam$#XC`I\8fh7GaZW)^2 aH8PFlbIq(nZa=d9pI3`mq.j,pAf#\&W,`bTN79C/HTk1Pk+fQo2dcqSsAd[[H7X@n1J0h4 T&6qG.Nm'?R@8PB*`?4SQj1Se=J;8dd?1mGX)-E(p\#=4u8t4G?e`Lp)^'`eti1(,gEY-G"!,us1Qm3j#L<7L-aF"2%pb*8/,J_IK7_=j,p8l (%LRK$pcM$`+gJB_Y1_=$aLJNY:X+jr(lEG>a DW:q7C54VY'Q@lK4:hb$7G*!"(c2gfhrZA46:b=>0AjuA)dF9YQWLKB69:9+Ui\,1ts*k6!@0P#p*Ec0:eN];0jB8h ]<0Qhn\0HaVCTuJNQ`I(:G&(#Wokk_PTV3)_3T5mhpJt7\'*:Mi#:B6sW*rf\V2<@K.I31E E(7'A53IO]PE$qAaG688_UfPAVdiO7?4BlO&dVst`oG&$]-D#'k(3%S/oMpda)(Z"`q$2nD #E'%8n$6\Gh<5\u#(G\=E,BTdG5G*WL0/5?hb]&/\c2YN"u']q)DWhSrA7tYS!!rmh g@.;epIJXZB=0aQJlt`S+Nlg@fR79A3Np0VWo<+?rDaU2FB%ZL+CMCr]>I0l8`\X;h`S#'0 X_1j,\Ede9h+ZDCV3]bU17HL;2^=@*C:TaLG;C,0j'++(lQq`p>-2MO*Y3MYLW/Xb"QuT.FJ!\W'Mo5VQH mQ1^("t:^Q--T-nX@Hks_AfX%\QA?`O9/#qbbbDY/k]Tt)?`l#$^'[X_%F'BeGZ0\jUb0E] (50pTW]1UKl/#h$7[:YiBGH_b.ODGqlOh,]S%G@7g2sq'FijiqeP309p0pl_r`]9]4(BqXZ pR7,qVKj4Q_pq`:aUtH6jD,fB;=oIe)N3?!?nWp"6(i` FAFc,E1Z-dko!ao2\*huhW%p1)?#(.1),CHX=Fk0IrdqFE?]u itB:utcs[=q9:8g/F=:l\!kV(3kO UKSt_^lGgTgX]XO=i`L+aemmq#h75Qa=T]Tq*S7jF0i]:RO],2c55<_!=-"l:c(Ll`JX"ge B`mEr7[!nse"+F"hI-4!,19T1h[K4&n9'*TPhA%b[0ZfPO57dll>_fT,=`HqKk#YeX(bdLJ1^Zom5uU!R<XFUV]S3H*(S(c.P'dBL=#8$H5uSe_72Q;OOl[k?sjBP(9,X4pjS3bqdNQ^K2Inq,1l6 M&%XK,a1`:Pe:.pf&a(T5Q(f,uBR#J5Xuln8ZPeC3Gc0Na=0[Ln`VTTO\a3sfX?OUX\Dl:R X*'I]Aj<4=h>lpFnj3^%AM7NfBb&WF4gGXl(aE"(%C+,?#<;,mgQ[%G+mQLkT]$oCYAe#KY2, t3j'uNaIO%g5-cSm"p"'&-VJU/t=f]O9-d9^#Nm7Z?U%rGjkrO>_r7L&f0PG=HQ_%FM``pi Q;,9Ugg*G;k%GeP)+]-\$8bIO/:_0PUNH(i:le=39j1V"EO3Z/>a*ro,GT&^;ORKE Ke9'I>$9c"mkjHUZFZ31`hR;YV*fRUOeGfY^.TqcI*Z/DtP8\'r9\ZTcNSrr&\FK/\"ruXL AQCn1_N&OG*Fi2iNkqkX'KNlEB1u_BiP[AR.,L$?GE7f*A][*/ibD_8V2]J>0*^(c*(.DG8 ;VHeAZKImMieLqe\p9O.bbo\-^MQh*&S*8dHGOKGmpPTdP[pq)SItA%cMLd#AD61*G_`m5L J(@1rI?q-Y2ojH]TuVAD1DJB_J(jGMD'LmP"M+:?:3UmbI7"*MMce0Flj5/fpf@kX4.8ad. ]Kcn*&p(1EFJ:bEbVpb(\P!t12F@9W1OW:FZ=TSFgU%Hin.`100 )WAaYO/O+Y4/KpK%@;$O<)&-Lo)55^t_: TON7hoIa'sUsW;*u$0@S6,K!s)g4#Aioc_ 6j!LauOBGU]Q#Jm8SiJnm3Kc>V'^>[/oliJ%*P/+1JrC[\D//6QEghfAQO(94s!\>G3TH?c a)\.B:X>Chi<#P$dUs35s+g=ricN(Bg]bn e3DaLF8ms-^&`bN/K%LN#$D!.AXOOD\dR'Y+/"JAga<4N8>Q#5TPE^)*tYJ6*0%hoGiF<3c K$X+at;[^(p`Y^4r6>_5>S=%3)R`)r\LOW;L@@"$/n;e6*Eap4 +=Y>+tF*L?tZB0f$'\+7\D;jg6)o7^Pt8*[XSjDn[%hV[_UZ*RNk>@G(]kgB-?b(lF4,_-'OHNeA3H91`hc>4%ub"!I72OHMfVP*R1f /[,F`1gJ2kUgG%R-FO81ZYrm&V(!MXb!mq*[!q@F=2Be5%iRL,%P.[L<)e$`,iOM0=\/^(V S`,I>iJbJ>D&OS5(?'KW1_/R0mX3M#6#Uq>-Ff_"UDPW#Vha?cYD!uF<2)gI,N[5HPZD!3f (l$-kGSk6.Q6HdY9$R%+lW?%iUe#(\fPoX*]$4KNNaGHK/tg8FXiE,P_pY%ro;#!APSSh:(;\L3_:1EO'TFNf*Ao5ciO`!r6lkX];ZXlTUSh#ka;@V L/O@/f7_(,t8/T1%*#21\!MC>3biQf1M6Ms,okP(BY8Wf`7#T30iAoo9Wcb&D^5`FA:(fnl9YG&Df^O*U]>5_;B;lclMW/F/ k.>f0aWeMfUM<(_+;OFo>'oX^TPr@T<@A2Co_SZ;Eu:;5)HL6/W^@c5m#!*22:00oQs#U`= F"GcT_50qAOmH5Qar($"4OJQNY@HCUTo1$mECUjV* Z/_EU#1Va4`8*l23o%Ro[,cg?#=-_iRJlX!Q5uZiZ',e*[/6;_;Qr+:)m)IMNZ3giL1_eE# 8V_Ht0T'77d,AVgB'A6,o30%011e"s!'Zg+.G^8ps%WLia6a4=_UX6FCP%nW/JH$fU:flnj q<_CSA?qTW'+&BnNJjW@ppO[Zoc,#0INqeP`m*g1b"\/M=TO-<$A>=%X]f)JA;02!)d,ksH R[i&KcO%_2!EOFt_R8Z'tk$(jXeoYjfiSaU$G7@8Q*Y6M^iO,"TKerhhR(-fK(j0&L4PTXZ @6pf6F1B>cKGoEo)K$R+!QlEkjrAs%*^Rdd+lo4os\uqa)MugL/\$)C4YT8iWHu0e;+g;nof)N;^>\nRKW;%I` #2!Le*qM=r#uM+i4<@4"%*D0`3gq*NWsqd7%;Lg%FesjGFZ>r"kjiQ!:6R+E92L>h/$g+<+?VkU>P%, *Dc\t[dpOdAno2#(LID8D[-<#MC<*T_;_U"'/<2BJ34*XU9R9&S#]`q860(bGV(+i5&sR8_ 8k)XH['>5,4C:qgcb(i&SnHF5ci1Q7@$h@`eO]\D1kBg4b/]3Mq(%KJsRB&MiJ;*8A#2&poJ6 1pK['c_]AF\h8ljRjkY4+R!7-b.Oa>%9]F[T>P*HQoU.o3+#58h1ai(*nL/2l[PD9.ZN3@X RKmCPr6:,T>+V*(SR'4iFE^@!^77V)$,j=Hj.;['_!8P)JK&1!P8%''*%ZXDhLS)kKH5DWi .T7lia)gg8NR@Wn%]k_sb3YpFhrnh+ha<4E0O#0KU%0re&s%+F,$&U%9B<3m.i)W<(nm4;4 T;;l7#9Q*ZO\]S>P0YpN4Q3HA>DqL*>9B/fF/DnR,T.kVmuVW`6t_i-ULiMISu+kqFJeQO4 ;q8M,4T>MV?W`b#>!T2]W$NRVg5>C1(?]#6/_hEG>T]@T>I70r$]q?R*:I-ZVn7*'gNN[=?eD(:fUJ-Q:#EFlK-br3gtd#O4s H`35WeRYd]@oJ)BOJ>;Pkuu*W,SQEhoj%3h'VN;_;%70OKF)_S86 g7_3R*eaZq#f(ZCZ");6"Y%--XUT\^-L[WELc8[%9d*!+8):!i<@"=GBW6[$I0lYAo"Ybb]U"T::5^#eShtQ/lu8RhWF* *ZCO\?lcIlPI6=+I\XW!AoR5Y):)?jbK[k:R)m9Q`f.WPY3HKJtY&cend(N\Q/M<1;RO!hiSS^;b(*tVA")J`X)s5$`(Kj8<[47u=Hh*N#gKFdcq$e7b=a8Y Bmj#'$kgRARO=A/])(LhIbS_00Z2AXX$\(58H`IO=:N ;XMb_,28a6)?T;S-&hAjRW0dWbrEamIg`U^V%26['D7+6I]/+B3P#AY1"lj1JKC 9AMG(Bn`8i)9KCtK0p@IXHlm6?nB80Po/=u9XYg=<[;B,\6oN;b@+r&E;e&?UF8IYX8]j)' i2ML+;bes1qn=4P>QcL&55bH>WNB:DM?e 7[Z`&K9'-W,*CX<+1#X2j NN`Sol5LC)-u(W0A.=8]9/NZcn;S-aTN:5rTWU(=+q"alP(TX#Xq$XX@7`[7uR"pfG]WoZr Un=UO[QSS!9,36mIe"bJ,"[.8E$bi.p;k,h>df/;&X'1M)l2&posa.4."dPM;9bFIa1LJ0Z 7"ZYSX[/'5T\lBb=H(QGfB3a%8rFU"'luDL!S0qXbZg<#FmB>*keTdH'$p!7bDMR%WHC;e; ias-"Kqrm]#5Qnd)oknm"rg'(SnoDYZnQ26L%0\1QNb41',oZ2Yah>pVa&OM0k$G]*,%@3) k+63"IPf/jpHPYrGgKOS;i44Fm*I@lIWD6he_(*[9:_!QO>#30s2AXe`HV@=.eW$*d=BAqR I7#N+Bs(jJZiG#e_%LCg;m\Z7Sr+h&E.Qd6tL4'1e5Y*lI3+0;hVt 7]7Z(L7g&kkI&S]QF`Diu$f,5^he1DN8pu1WNV$)%SJ^`sCcI?CZ4c;<@(5M"_s^S &e/u5s2aa`><"KGt9;#U8Z__cjXt]N7(+>[CF##'ef@j"+r*;1pWXpqDY1kZnX[IP8_!r?&>f-Vh5)kQ\QK*@)V=`CEfg#E\[f6gT+ 0EV=?Zg5Ip&4E-=K-UAt.Q(\gIDaq[F4!UR4Nc[`P;(<_Wj6[YDPZEc6&ZUA@S=^jB7RFgZ >s;oFq_;p.QV_nd5pW9[T[1/;49Yk*RR?sdO7c5;PrSgZ$WeA9AlOg'l9:klXWJ'qT$F-?/ 4]Ln+44rrO43qh:AFHa6Z@(,+i$+YMEN!?E,gos['UAelPcg+BW\Wg3Q=&&*)grt:'%mbQI tCBF1/b`[Gm'6o:)=EUiMK(i]O4j7it?80W=gO,cD^eN0M>8:jNm?"eoJ$FBZoA\g_9.eXi M>TQnQ#!'LX%p8B4tQdS1q8X%CIYnEqQ)[^"a)\%pC$6bn-Q4hVQi97(m/P`]#WrZDJ#ps0 EU(=)W#RATC:q/FH7Up..$3ITm)POAZF\K#Ib_[B\h'hj$!2l;6?dPqu38q"JOGP2o5e6W #Rtc^crWkRXG':eaLCG9`:rZ&q7Sj.C[d`I%4PHXdX5TGCX.MbH"R2PJN6>f#J5tN)l cuY5dL,t*OiiBtIEt8\c=DJc,*&,?I%,n":#!h/bK+g''S,>@SQJ^I#>^RodN&Cm=eK$0IF \_JUZ8&MOTbcLP%jA]\\$5JNG1K7o@BM]!VNB^S5CmbP#JbR2OVoC>n)IR\V`8jRTUHCJ=, %@T#JN[WACBP"&jqc$bc+BZqcB2R37Fk`Z`!)OTLsfM@Q++*YpLi,ls5W4#EHs=fkP-U1_M \O9;EP;,\2oTau@=bcQ'>SE:gl36q:rD)?W6FNBsL'`g5-mUH!:RgBf/TAM/ph9'u(Ql$dt +p"pYpJdadq_>#s-i4[1?G7pW3GLm@gSVslL^[*>e+AFY#;""1?G?)"IM :N[D85n;`Q=IV*+n/*Quj@_p^C)BniX'3^]PE6YhHrR(^-E_'!QKaE9cCE<\+,#6AlM^h*e ,F#rh]YZ&35+]sMhpUg=tW*B!LaJal(l`di^&W/e,B#jn8A2Xh#N6O*)S$%)&/RlN#-`3NH[34gDa -W0X2F^!r)8=-BL3+O69J:;FeY#[5BIr8oM`X!@)%XTL>[,?+F( mWA1Su%4;,:mR@]u]c3L#<)NgDVPQo%$4%$A<6doAQ>X&OAd(-*"ZESP-aDSKfY`*7; <9;P%@GeLHqLU/jml6$;hJd/In#.SB%cug9)/&$B(-sTY=,Pakq?jV eT$JAT5F_YAAjT_\nPLra\GaFpup<49u'\'(![*\_`Y"M;biOM_cp`]TGS<56OY_F[lP#2( (&d2th/;o-C.W%3T@*&Kp[gkRGKZ?XbSI%eZlTJcV)%YB'7j)9^hf*=ZNZ@I4U)k.'.B*Qk h2dg?SS#ZaTF,9mEb,!b0P<0RQGo\kJKs5@t\8R.DZnr0^^MILL"LBX&.Yh9>bD`o*FQUl% LPinNh[)C8.PKq[mbOiTl<5D6B_FufVLQ'-s/Aat(m6?c;^PHgSCAb?2a+k;oZAcn!X 'l6VNQ#- oMaS:aAn]al61L0T\AZm*e,'[D*g#(UVB%.272(t"$+:Al*VoYS^LnP;:gcSZc+nR%u'EX. :@#1Xkm19Eqn+$/KV7jDQJaDe?,q6i@p8hbP7R!H)5r!0%A:\!*ElX$EH4ssfC#O$9S+l%h dAVb#CL=g?u>BWMXVh_Yde"j!)3-'ine"'0]#(UKE<%Q,o1!+3(#ACXmV%^]\'i'_NXLND5 jVq'n)q9j&qE#]/#h,):Rj`%<-%.qV^X_G>6Bd X(QG"]3_C#IkHF_Vcr9h@!@HT$FX0u#AjUj>m?'TFq%/,etf:r$_S*64V >V\#&%`V6tE&tZU*UK_XLjM:fnRm\1klj=(J`uj3uM[GgXc]e@eRX[7o!(+B7GuL;INP*E' W`E//CJ=;(UgE;C?0JQMeIVL;?B79-nI/I(Os#5)*HBR%sXA$4V/LSSgc9jh*"FMkB;8aq0 L%:Fs)V7DtZ#D6p#[+3WOGR%@'Hn#Ckt?.#,#Ng73#A;QHm@N$V5CorH'*R!.[E!L>s&1D8tpi_C_[ tnJ0>C-:7M#rFFKien&bu1g$g1?$#M--TcX/G?'$$MK!fD.56\,AHtc:='Z Pq25X[S'>h[G,Q/>EEb.?tis:BZER 3#?Y\15\[o3[kdWfgVfp=286abAVU(nZ7qgSm>t?]FGH6P#:_IV][F5//[bt=O3oqbaF&j0 =sDmQW7+>#@u!M.%#B';\S!6pkh_:qi[%K)?6`oHnQRSr?FB)0V1[N&[Kg\!>B RG^mI/p)n-]VAH)k/J,GtKc99eJc7i7JrK!G#1d7[V]P.!^S1a\mOb7!^+d^'rJ32dl&Jfs:M\Os:1 BGmQkT"issRct>Dh'AaX/*/*9k`l)!k2C@c %\0P6&QAtE`!\92EWD21l[#%>O:.!,YqC[+4*L2"Zip1f@WoESsKLTI-'6Kh>X4&UTR[X`O Udd^Q:GcrhIp!ZhK#JkGm 8&B;$i*)it>6[hCMrMp8:g/Tca6\dTYkVDcr\9ocLKfch@`H^U?7a,co4bWcipN=R2J;:*e n9uQ)CFi3]q(6TMr7c pD!Y3PsD-?ATk-?ocEZ``YjDW^>hm*t>8FDJRW:gDP+<-i?Zo^>UuW$6,6rkg7L]*42FKt( Or"r@M6(^o98LIeibH6h7;!9pXuD&tfuAu=/AY1IWIT^A'P\c1;t?JC6)i.jM OmG?Y':>^dr&-eg:-JE#D=IsCoF]/QqZ8O]JBl%O@"dZ*0&3+fuOEI'."X],4m\]8TP-Kc, Aa[:<8C`Q4"$H$!]XLd_LK7&]<<2Jh..:-6\tF,!(h&0n.u*h`(KafP(g@1]E9Pqr@C=qF? >\RPd.:;cm2")Z=#]MI1M2[Pl2_-%n7Q^;frmm!mB3:&[gd<>%WM2aF<;'U`t=%eo`d*aLF HkrJ=:IP`Fi;&SVD29C2:t+D3/ZQLJhkBru95]2k1rQVMf*mB-&QV*=#tg@j?/>Ed1W;F,* 5uLQ9+>QWs.%R>7_QL1tW3#]@o6KI5nITb`890GL7W_aQON;J-q3[!Kj44_ULk[uO`ntY+%l# .S%s2Q"W3)Ym7JQEY(5:RCQgDs$K?l5pCWk2>aSgijhOG:7!D6M5OnEq`q7S;uC@P-7[eH" t3n;^/FM-tnA`VhZC)L6-D08"um5k7AbQE>oHG= M-P@!27X>TpHs]hJRf2iC:2$,=GZ"Fq1ja*#:J(QLk%:O9GV]'JB`&;=f qrC()l1A1`T1iMiK4GA$hbBL7=0cdrI2f9QjWoN5q,:S.'R&JWRrlbN:Sb9-qO4DS$u$LYM fV5G1hd<&u<@NCTdBBiMZT2P!XB<,,DoV%r(^Hnq*b20us7Y#dIG[OUrmW3BA](+U/pflG_ P0cR2pFEsnKADPoj9?$2ojh/-l=3KG-maZ5;*0-ALc0G+Q^E:!&mRd?TI_W3bl2E^6fl4Q* XX>A_`l!Weg$U1&Xq_7r0A2?pPCaM,KC,?Dh6SVF`G[Ds%E7o6\A2K2==b6R$&%/DYhRAk, CPP$S3(''B@U(shsblMaHeZG$US+jG[E3VV?uG(oAatDk#p 0npI'j4O#\,'26q6c&Vq/HlL)qg1D4X,eF.)::aJlR:]UABc9JteodK1$/B]pVlAtL*p:*- HnkrKoR7m$djWC-%,'QaT*EEUG*p@P@o8r@EY-um%InaT)o^KdDAOW#[Tf)Qa_G'!n+!Ecf 4Bf==hjY2XS3XPZ#"4.`l+<^8nQJDBH3pYfQsl&D67U.(CDuA-Hs`A>Wo&FJ(e&@rQPa/8=r-82B(qT[Ofa M0\A``QXc#RBO0$MjViP=#BsM?=V^>Af;Q&omQf]0GAXVZRY$1J0BAMTnVjFO#I\);I[WTn uWN*e)i%u9HGk.p-->_JY:T3M]REh)bQi-pD &m5VVK:i(-VMqM4[I3"*?#OBE#]+&b&X(4.IEGlrQfWBpRUc$htS6'L#Mfu09,#f*`&'_q4 ;MqkP?6\V Q Q Q showpage %%Trailer count op_count sub {pop} repeat countdictstack dict_count sub {end} repeat cairo_eps_state restore %%EOF beamer/base/art/beamericonarticle.20.eps0000644000175000017500000004127012050430504017757 0ustar mohuramohura%!PS-Adobe-3.0 EPSF-3.0 %%Creator: GIMP PostScript file plugin V 1.12 by Peter Kirchgessner %%Title: /n/mappazza/home4/algo/tantau/texmf/tex/latex/classes/latex-beamer/beamericonarticle.20.eps %%CreationDate: Wed Oct 29 13:57:41 2003 %%DocumentData: Clean7Bit %%LanguageLevel: 2 %%Pages: 1 %%BoundingBox: 14 14 26 29 %%EndComments %%BeginProlog % Use own dictionary to avoid conflicts 10 dict begin %%EndProlog %%Page: 1 1 % Translate for offset 14.173228 14.173228 translate % Translate to begin of first scanline 0.000000 13.968000 translate 10.944000 -13.968000 scale % Image geometry 152 194 8 % Transformation matrix [ 152 0 0 194 0 0 ] % Strings to hold RGB-samples per scanline /rstr 152 string def /gstr 152 string def /bstr 152 string def {currentfile /ASCII85Decode filter /RunLengthDecode filter rstr readstring pop} {currentfile /ASCII85Decode filter /RunLengthDecode filter gstr readstring pop} {currentfile /ASCII85Decode filter /RunLengthDecode filter bstr readstring pop} true 3 %%BeginData: 16008 ASCII Bytes colorimage JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> pA_/:!8Ym!J,~> pA_/:!8Ym!J,~> pA_/:!8Ym!J,~> pA_,9!8Yp"J,~> pA_,9!8Yp"J,~> pA_,9!8Yp"J,~> pA_)8!8Ys#J,~> pA_)8!8Ys#J,~> pA_)8!8Ys#J,~> pA_&7!8Z!$J,~> pA_&7!8Z!$J,~> pA_&7!8Z!$J,~> pA_#6!8Z$%J,~> pA_#6!8Z$%J,~> pA_#6!8Z$%J,~> pA^u5!8Z'&J,~> pA^u5!8Z'&J,~> pA^u5!8Z'&J,~> pAb$6k5O<;nGN%)!8Z*'J,~> pAb$6k5O<;nGN%)!8Z*'J,~> pAb$6k5=06nFu\$!8Z*'J,~> pAb$6kPjE pAb$6kPjE pAb$6kPX97n+ZP"!8Z-(J,~> pAb$6kl0N=melb%!8Z0)J,~> pAb$6kl0N=melb%!8Z0)J,~> pAb$6kksB8me?Cu!8Z0)J,~> pAb$6l2KW>mJQV#!8Z3*J,~> pAb$6l2KW>mJQV#!8Z3*J,~> pAb$6l29K9mJ$7s!8Z3*J,~> pAb$6lMf`?m/6J!!8Z6+J,~> pAb$6lMf`?m/6J!!8Z6+J,~> pAb$6lMTT:m.^+q!8Z6+J,~> pAb$6li,i@lhpY(!9Et"!8Z9,J,~> pAb$6li,i@lhpY(!9Et"!8Z9,J,~> pAb$6lho];lhC;#!8dOq!8Z9,J,~> pAb$6m/GrAlMUP'!V#1GbQ-JOs*t~> pAb$6m/GrAlMUP'!V#1GbQ-JOs*t~> pAb$6m/5f pAb$6mJc&Bl2:G&s6p$Lq9/ipg&HR~> pAb$6mJc&Bl2:G&s6p$Lq9/ipg&HR~> pAb$6mJPo=l1b)!s5j= pAb$6mf)/Ckkt>%rpBdHq9/ipgAc[~> pAb$6mf)/Ckkt>%rpBdHq9/ipgAc[~> pAb$6mel#>kkFturo!k2q9/ipgAc[~> pAb$6n,D8DkPY5$rU'[Gq9/ipg])d~> pAb$6n,D8DkPY5$rU'[Gq9/ipg])d~> pAb$6n,2,?kP+ktrS[b1q9/ipg])d~> pAb$6nG_AEk5>,#r9aRFq9/iph#Dm~> pAb$6nG_AEk5>,#r9aRFq9/iph#Dm~> pAb$6nGM5@k4ebsr8@Y0q9/iph#Dm~> pAb$6nc%JFjo##"qs4=Bq9/iph>`!~> pAb$6nc%JFjo##"qs4=Bq9/iph>`!~> pAb$6nbh>AjnJYrqqM2'q9/iph>`!~> pAb$6o)@SGjS\o!qWn4Aq9/iphZ&*~> pAb$6o)@SGjS\o!qWn4Aq9/iphZ&*~> pAb$6o).GBjS/PqqV2)&q9/iphZ&*~> pAb$6oD[\Hj8Aeuq pAb$6oD[\Hj8Aeuq pAb$6oDIPCj7iGpq:ku%q9/iphuA3~> pAb$6o`!eIir&\tq!8"?q9/ipi;\<~> pAb$6o`!eIir&\tq!8"?q9/ipi;\<~> pAb$6o_dYDiqN>optPl$q9/ipi;\<~> pAb$6p\k0\^ZPF;pZ_b:q9/ipiW"E~> pAb$6p\k0\^ZPF;pZ_b:q9/ipiW"E~> pAb$6p\Y$Z^ZPF;pX]Dpq9/ipiW"E~> pAb$6p\k0\^ZPF;p?DY9q9/ipir=N~> pAb$6p\k0\^ZPF;p?DY9q9/ipir=N~> pAb$6p\Y$Z^ZPF;p=B;oq9/ipir=N~> pAb$6p\k0\^ZPF;p$)P8q9/ipj8XW~> pAb$6p\k0\^ZPF;p$)P8q9/ipj8XW~> pAb$6p\Y$Y^ZPF;p"'2nq9/ipj8XW~> pAb$6q#1 pAb$6q#1 pAb$6q"t0hmD%f\bk0BbdeV)eh;nTd~> pAb$6q>UEm!:IVaqonZr!9![s!8Zc:J,~> pAb$6q>UEm!:IVaqonZr!9![s!8Zc:J,~> pAb$6q>C9h!:@P`qonZ]!7L\e!8Zc:J,~> pAb$6qYpKm!:IVaqonWp!8mUr!8Zf;J,~> pAb$6qYpKm!:IVaqonWp!8mUr!8Zf;J,~> pAb$6qY^?h!:@P`qonWY!7:Pc!8Zf;J,~> pAb$6qu5OPi;ENMqonTo!8mUr!8Zi pAb$6qu5OPi;ENMqonTo!8mUr!8Zi pAb$6qu#CKi:m0AqonTX!7:Pc!8Zi pAb$6r;PXQi;EKLiQM;Xkl6/~> pAb$6r;PXQi;EKLiQM;Xkl6/~> pAb$6r;>LLi:m-@iQM;Xkl6/~> pAb$6rVkaRi;EHKi622Wl2Q8~> pAb$6rVkaRi;EHKi622Wl2Q8~> pAb$6rVYUMi:m*?i622Wl2Q8~> pAb$6rr1jSi;EEJi622Wl2Q8~> pAb$6rr1jSi;EEJi622Wl2Q8~> pAb$6rqt^Ni:m'>i622Wl2Q8~> pAb$6s8LsTi;EBIi622Wl2Q8~> pAb$6s8LsTi;EBIi622Wl2Q8~> pAb$6s8:gOi:m$=i622Wl2Q8~> pAb$6!<1pTi;E?Hi622Wl2Q8~> pAb$6!<1pTi;E?Hi622Wl2Q8~> pAb$6!;tdOi:m! pAb$6i;MU3pAJ,~> pAb$6i;MU3pAJ,~> pAb$6i;2C+p@R:e!8Zo>J,~> pAb$6iVh^4i;J,~> pAb$6iVh^4i;J,~> pAb$6iVML,i:Qp:!87:o!8Zo>J,~> pAb$6ir.g5i;J,~> pAb$6ir.g5i;J,~> pAb$6iqhU-i:Qm9!87:o!8Zo>J,~> pAb$6j8Ip6i;J,~> pAb$6j8Ip6i;J,~> pAb$6j8.^.i:Qj8!87:o!8Zo>J,~> pAb$6jSe$7i;<J,~> pAb$6jSe$7i;<J,~> pAb$6jSIg/i:Qg7!87:o!8Zo>J,~> pAb$6jo+-8i;<9F!8RLr!8Zo>J,~> pAb$6jo+-8i;<9F!8RLr!8Zo>J,~> pAb$6jndp0i:Qd6!87:o!8Zo>J,~> pAb$6k5F69i;<6E!8RLr!8Zo>J,~> pAb$6k5F69i;<6E!8RLr!8Zo>J,~> pAb$6k5+$1i:Qa5!87:o!8Zo>J,~> pAb$6kPa?:i;<3D!8RLr!8Zo>J,~> pAb$6kPa?:i;<3D!8RLr!8Zo>J,~> pAb$6kPF-2i:Q^4!87:o!8Zo>J,~> pAb$6l2:VVb453&o_JRCr6,/sl2Q8~> pAb$6l2:VVb453&o_JRCr6,/sl2Q8~> pAb$6l1tDQi:$""p@S"I!87:o!8Zo>J,~> pAb$6l2:VPb3Sg!oD/IBr6,/sl2Q8~> pAb$6l2:VPb3Sg!oD/IBr6,/sl2Q8~> pAb$6l1tDKb3SfooC2h6r6,/sl2Q8~> pAb$6lMUb]n]L1mqssR`h#,@rh pAb$6lMUb]n]L1mqssR`h#,@rh pAb$6lM:PUn&jtko^_MPg&0%oh pAb$6li$k]!:e4tq>9^Y!8RLr!8Zo>J,~> pAb$6li$k]!:e4tq>9^Y!8RLr!8Zo>J,~> pAb$6lh^YU!:S(rq=O4I!87:o!8Zo>J,~> pAb$6m/?q]!:e4tqYTdY!8RLr!8Zo>J,~> pAb$6m/?q]!:e4tqYTdY!8RLr!8Zo>J,~> pAb$6m/$_U!:S(rqXj:I!87:o!8Zo>J,~> pAb$6mJ["]!:e4tqtojY!8RLr!8Zo>J,~> pAb$6mJ["]!:e4tqtojY!8RLr!8Zo>J,~> pAb$6mJ?eU!:S(rqt0@I!87:o!8Zo>J,~> pAb$6mf!(]!;FY+r;5pY!8RLr!8Zo>J,~> pAb$6mf!(]!;FY+r;5pY!8RLr!8Zo>J,~> pAb$6meZkU!;#@AjmN'=mdU;1r6,/sl2Q8~> pAb$6n,;2Bi;;pJ,~> pAb$6n,;2Bi;;pJ,~> pAb$6n+tu:i:QF,!87:o!8Zo>J,~> pAb$6nGV;Ci;;m;!8RLr!8Zo>J,~> pAb$6nGV;Ci;;m;!8RLr!8Zo>J,~> pAb$6nG;);i:QC+!87:o!8Zo>J,~> pAb$6nbqDDi;;j:!8RLr!8Zo>J,~> pAb$6nbqDDi;;j:!8RLr!8Zo>J,~> pAb$6nbV2J,~> pAb$6o)7MEi;;g9!8RLr!8Zo>J,~> pAb$6o)7MEi;;g9!8RLr!8Zo>J,~> pAb$6o(q;=i:Q=)!87:o!8Zo>J,~> pAb$6oDRVFi;;d8!8RLr!8Zo>J,~> pAb$6oDRVFi;;d8!8RLr!8Zo>J,~> pAb$6oD7D>i:Q:(!87:o!8Zo>J,~> pAb$6o_m_Gi;;a7!8RLr!8Zo>J,~> pAb$6o_m_Gi;;a7!8RLr!8Zo>J,~> pAb$6o_RM?i:Q7'!87:o!8Zo>J,~> pAb$6p&3hHi;;^6!8RLr!8Zo>J,~> pAb$6p&3hHi;;^6!8RLr!8Zo>J,~> pAb$6p%mV@i:Q4&!87:o!8Zo>J,~> pAb$6pAOX]!;Fb.rp]1K!8RLr!8Zo>J,~> pAb$6pAOX]!;Fb.rp]1K!8RLr!8Zo>J,~> pAb$6pA4FU!;#XIi9pU3l1"c,r6,/sl2Q8~> pAb$6p\j^]!:e4tl1tD8r6,/sl2Q8~> pAb$6p\j^]!:e4tl1tD8r6,/sl2Q8~> pAb$6p\OLU!:S(rl1"c,r6,/sl2Q8~> pAb$6q#0d]!:e4tl1tD8r6,/sl2Q8~> pAb$6q#0d]!:e4tl1tD8r6,/sl2Q8~> pAb$6q"jRU!:S(rl1"c,r6,/sl2Q8~> pAb$6q>Kj]!:e4tl1tD8r6,/sl2Q8~> pAb$6q>Kj]!:e4tl1tD8r6,/sl2Q8~> pAb$6q>0XU!:S(rl1"c,r6,/sl2Q8~> pAb$6qYfp]!:e4tl1tD8r6,/sl2Q8~> pAb$6qYfp]!:e4tl1tD8r6,/sl2Q8~> pAb$6qYK^U!:S(rl1"c,r6,/sl2Q8~> pAb$6qu-!]!:e4tl1tD8r6,/sl2Q8~> pAb$6qu-!]!:e4tl1tD8r6,/sl2Q8~> pAb$6qtfdU!:S(rl1"c,r6,/sl2Q8~> pAb$6r;H']!;Ft4q!dPE!8IFq!8Zo>J,~> pAb$6r;H']!;Ft4q!dPE!8IFq!8Zo>J,~> pAb$6r;,jU!;#jOi9pC-l1"c+r6,/sl2Q8~> pAb$6rVb[Pi;;I/!VkFIbQ-J`s*t~> pAb$6rVb[Pi;;I/!VkFIbQ-J`s*t~> pAb$6rVGIHi:Pst!UeV pAb$6rr(dQi;;I/s7cTKr6,/sl2Q8~> pAb$6rr(dQi;;I/s7cTKr6,/sl2Q8~> pAb$6rqbRIi:Psts6]m>r6,/sl2Q8~> pAb$6s8CmRi;;I/rqHKJr6,/sl2Q8~> pAb$6s8CmRi;;I/rqHKJr6,/sl2Q8~> pAb$6s8([Ji:PstrpBd=r6,/sl2Q8~> pAb$6!<(jRi;;I/rV-BIr6,/sl2Q8~> pAb$6!<(jRi;;I/rV-BIr6,/sl2Q8~> pAb$6!;bXJi:PstrU'[ pAb$6i;DO1i;3BH!8IFq!8Zo>J,~> pAb$6i;DO1i;3BH!8IFq!8Zo>J,~> pAb$6i:l1%i:6a5!8.4n!8Zo>J,~> pAb$6iV_X2i;3?G!8IFq!8Zo>J,~> pAb$6iV_X2i;3?G!8IFq!8Zo>J,~> pAb$6iV2:&i:6^4!8.4n!8Zo>J,~> pAb$6ir%a3i;3J,~> pAb$6ir%a3i;3J,~> pAb$6iqMC'i:6[3!8.4n!8Zo>J,~> pAb$6j8@j4i;39E!8IFq!8Zo>J,~> pAb$6j8@j4i;39E!8IFq!8Zo>J,~> pAb$6j7hL(i:6X2!8.4n!8Zo>J,~> pAb$6jS[s5i;36D!8IFq!8Zo>J,~> pAb$6jS[s5i;36D!8IFq!8Zo>J,~> pAb$6jS.U)i:6U1!8.4n!8Zo>J,~> pAb$6jo"'6i;33C!8IFq!8Zo>J,~> pAb$6jo"'6i;33C!8IFq!8Zo>J,~> pAb$6jnI^*i:6R0!8.4n!8Zo>J,~> pAb$6k5=07i;30B!8IFq!8Zo>J,~> pAb$6k5=07i;30B!8IFq!8Zo>J,~> pAb$6k4dg+i:6O/!8.4n!8Zo>J,~> pAb$6kPX98i;3-A!8IFq!8Zo>J,~> pAb$6kPX98i;3-A!8IFq!8Zo>J,~> pAb$6kP*p,i:6L.!8.4n!8Zo>J,~> pAb$6kksB9i;3*@!8IFq!8Zo>J,~> pAb$6kksB9i;3*@!8IFq!8Zo>J,~> pAb$6kkF$-i:6I-!8.4n!8Zo>J,~> pAb$6l29K:s8(U-p\4aCr6,/sl2Q8~> pAb$6l29K:s8(U*p\4aCr6,/sl2Q8~> pAb$6l1a-.s7+t8p[/%6r6,/sl2Q8~> pAb$6p\Y$`hs^XJ,~> pAb$6p\Y$`hs^XJ,~> pAb$6p\+[Zhs^X:p[nIThXL:-!8.4n!8Zo>J,~> pAb$6p\Y$`hs^XJ,~> pAb$6p\Y$`hs^XJ,~> pAb$6p\+[Zhs^X:q"4OThXL:-!8.4n!8Zo>J,~> pAb$6p\Y$`hs^X:*dhV@l#!8IFq!8Zo>J,~> pAb$6p\Y$`hs^X:*dhV%Yu!8IFq!8Zo>J,~> pAb$6p\+[Zhs^X:q=OUThXL:-!8.4n!8Zo>J,~> pAb$6p\Y$`hs^XJ,~> pAb$6p\Y$`hs^XJ,~> pAb$6p\+[Zhs^X:qXj[ThX1(*!8.4n!8Zo>J,~> pAb$6p\Y$`hs^XJ,~> pAb$6p\Y$`hs^XJ,~> pAb$6p\+[Zhs^X:qt0aThX1(*!8.4n!8Zo>J,~> pAb$6p\Y$`hs^XJ,~> pAb$6p\Y$`hs^XJ,~> pAb$6p\+[Zhs^X:r:KgThX1(*!8.4n!8Zo>J,~> pAb$6nGM5Aq"ik,p\4aCr6,/sl2Q8~> pAb$6nGM5Aq"ik#p\4aCr6,/sl2Q8~> pAb$6nFtl5q!m5+p[/%6r6,/sl2Q8~> pAb$6nbh>Bp\Nb+p\4aCr6,/sl2Q8~> pAb$6nbh>Bp\Nb"p\4aCr6,/sl2Q8~> pAb$6nb:u6p[R,*p[/%6r6,/sl2Q8~> pAb$6o).GCpA3Y*p\4aCr6,/sl2Q8~> pAb$6o).GCpA3Y!p\4aCr6,/sl2Q8~> pAb$6o(V)7p@7#)p[/%6r6,/sl2Q8~> pAb$6oDIPDp%mP+p\4aCr6,/sl2Q8~> pAb$6oDIPDp%mOup\4aCr6,/sl2Q8~> pAb$6oCq28p$po&p[/%6r6,/sl2Q8~> pAb$6o_dYEo_RG*p\4aCr6,/sl2Q8~> pAb$6o_dYEo_RFtp\4aCr6,/sl2Q8~> pAb$6o_7;9o^Uf%p[/%6r6,/sl2Q8~> pAb$6p&*bFoD7>)p\4aCr6,/sl2Q8~> pAb$6p&*bFoD7=sp\4aCr6,/sl2Q8~> pAb$6p%RD:oC:]$p[/%6r6,/sl2Q8~> pAb$6pAEkGo(q5+p\4aCr6,/sl2Q8~> pAb$6pAEkGo(q4rp\4aCr6,/sl2Q8~> pAb$6p@mM;o'tSup[/%6r6,/sl2Q8~> pAb$6p\`tHnbV,*p\4aCr6,/sl2Q8~> pAb$6p\`tHnbV+qp\4aCr6,/sl2Q8~> pAb$6p\3V pAb$6q"t0io\]- pAb$6q"t0io\]- pAb$6q"Fg]o&&s.n_WC%mJto;bQ-J`s*t~> pAb$6q>C9i!;,1J,~> pAb$6q>C9i!;,1J,~> pAb$6q=jp]!:o%:oC:\sp[/%6r6,/sl2Q8~> pAb$6qY^?i!;,1J,~> pAb$6qY^?i!;,1J,~> pAb$6qY1!]!:o%:oC:\sp[/%6r6,/sl2Q8~> pAb$6qu$Ei!;,1J,~> pAb$6qu$Ei!;,1J,~> pAb$6qtL']!:o%:oC:\sp[/%6r6,/sl2Q8~> pAb$6r;?Ki!;,1J,~> pAb$6r;?Ki!;,1J,~> pAb$6r:g-]!:o%:oC:\pp[/%5r6,/sl2Q8~> pAb$6rVZQi!;,1 pAb$6rVZQi!;,1 pAb$6rV-3]!:o%:oC:\pq!J1KfDNhmh pAb$6rqt^OlMBB)q=t!a!8IFq!8Zo>J,~> pAb$6rqt^OlMBAjq=t!a!8IFq!8Zo>J,~> pAb$6rqG@ClLE`gqJ,~> pAb$6s8:gPl2'9*qY:'a!8IFq!8Zo>J,~> pAb$6s8:gPl2'8iqY:'a!8IFq!8Zo>J,~> pAb$6s7bIDl1*WcqX4@K!8%.m!8Zo>J,~> pAb$6!;tdPkka0)qtU-a!8IFq!8Zo>J,~> pAb$6!;tdPkka/hqtU-a!8IFq!8Zo>J,~> pAb$6!;GFDkjdNbqsOFK!8%.m!8Zo>J,~> pAb$6i;;^6hXCC;r:^3Gr6,/sl2Q8~> pAb$6i;;^6hV%i%r:^3Gr6,/sl2Q8~> pAb$6i:Q4&hVA%sr9F@7r6,/sl2Q8~> pAb$6iVVd6hXLL=qtC*Fr6,/sl2Q8~> pAb$6iVVd6hVA))qtC*Fr6,/sl2Q8~> pAb$6iUl:&hV%kqqs+76r6,/sl2Q8~> pAb$6iqqj6hXLO>qY(!Er6,/sl2Q8~> pAb$6iqqj6hVA,*qY(!Er6,/sl2Q8~> pAb$6iq2@&hV%nrqWe.5r6,/sl2Q8~> pAb$6j87p6hXLR?q=amDr6,/sl2Q8~> pAb$6j87p6hVA/+q=amDr6,/sl2Q8~> pAb$6j7MF&hV%qsq pAb$6jSS!6hXCO?q"FdCr6,/sl2Q8~> pAb$6jSS!6hV8,+q"FdCr6,/sl2Q8~> pAb$6jRhL&hUqnsq!.q3r6,/sl2Q8~> pAb$6p\Os_hs^X pAb$6p\Os_hs^X pAb$6p[eIVhsg7-hV%Yh!8%.m!8Zo>J,~> pAb$6p\Os_hs^X pAb$6p\Os_hs^X pAb$6p[eIVhsg7-hV%Yh!8%.m!8Zo>J,~> pAb$6p\Os_hs^X pAb$6p\Os_hs^X pAb$6p[eIVhsg7-hV%Yh!8%.m!8Zo>J,~> pAb$6p\Os_hs^XJ,~> pAb$6p\Os_hs^XJ,~> pAb$6p[eIVhsg:.!:J^spZhh2r6,/sl2Q8~> pAb$6p\Os_hs^XJ,~> pAb$6p\Os_hs^XJ,~> pAb$6p[eIVhsg=/s6easpZhh2r6,/sl2Q8~> pAb$6p\Os_hs^XJ,~> pAb$6p\Os_hs^XJ,~> pAb$6p[eIVhsg@0rpJXrpZhh2r6,/sl2Q8~> pAb$6lhfW:rV575p\+[Br6,/sl2Q8~> pAb$6lhfW:rV571p\+[Br6,/sl2Q8~> pAb$6lh'-*rU/OqpZhh2r6,/sl2Q8~> pAb$6m/,`;r:o.4p\+[Br6,/sl2Q8~> pAb$6m/,`;r:o.0p\+[Br6,/sl2Q8~> pAb$6m.B6+r9iFppZhh2r6,/sl2Q8~> pAb$6mJGi pAb$6mJGi pAb$6mI]?,qsN=opZhh2r6,/sl2Q8~> pAb$6mebr=qY8q.p\+[Br6,/sl2Q8~> pAb$6mebr=qY8q2p\+[Br6,/sl2Q8~> pAb$6me#H-qX34npZhh2r6,/sl2Q8~> pAb$6n,)&>q=rh-p\+[Br6,/sl2Q8~> pAb$6n,)&>q=rh1p\+[Br6,/sl2Q8~> pAb$6n+>Q.q pAb$6nGD/?q"W_,p\+[Br6,/sl2Q8~> pAb$6nGD/?q"W_0p\+[Br6,/sl2Q8~> pAb$6nFYZ/q!R"lpZhh2r6,/sl2Q8~> pAb$6nb_8@p\ pAb$6nb_8@p\ pAb$6natc0p[6nkpZhh2r6,/sl2Q8~> pAb$6p\Oscht.!EqYKp\hVn5'!8IFq!8Zo>J,~> pAb$6p\Oscht.!EqYKp\hWsq1!8IFq!8Zo>J,~> pAb$6p[eIWrUSn:p?pejpZhh2r6,/sl2Q8~> pAb$6p\Os_hs^[=qXsX?iV3'Hg\f7qh pAb$6p\Os_hs^[=qXsX?lhC,Rg\f7qh pAb$6p[eIVhsg[9p$U\ipZhh2r6,/sl2Q8~> pAb$6p\Os_hs^X pAb$6p\Os_hs^X pAb$6p[eIVhs^X9o^:ShpZhh2r6,/sl2Q8~> pAb$6p\Os_hs^X;o_@;!p\+[Br6,/sl2Q8~> pAb$6p\Os_hs^X;o_@;3p\+[Br6,/sl2Q8~> pAb$6p[eIVhs^X7o^:ShpZhh2r6,/sl2Q8~> pAb$6p\Os_hs^X;o_@;!p\+[Br6,/sl2Q8~> pAb$6p\Os_hs^X;o_@;3p\+[Br6,/sl2Q8~> pAb$6p[eIVhs^X7o^:ShpZhh2r6,/sl2Q8~> pAb$6p\Os_hs^X;o_@:rp\+[Br6,/sl2Q8~> pAb$6p\Os_hs^X;o_@;7p\+[Br6,/sl2Q8~> pAb$6p[eIUhs^X7o^:ShpZhh2r6,/sl2Q8~> pAb$6q"k*gpYtiEo)SLVptj]upAitGbQ-J`s*t~> pAb$6q"k*gpYtiEo)SLVptkW:pAitGbQ-J`s*t~> pAb$6q"3M7rpTIHhV%Yh!8%.m!8Zo>J,~> pAb$6q>9+Hn+bbmp\+[Br6,/sl2Q8~> pAb$6q>9+Hn+bc2p\+[Br6,/sl2Q8~> pAb$6q=NV8n*]&cpZhh2r6,/sl2Q8~> pAb$6qYT4Ii:u=+!8IFq!8Zo>J,~> pAb$6qYT4Ii:u=+!8IFq!8Zo>J,~> pAb$6qXi_9i9oUj!8%.m!8Zo>J,~> pAb$6qto=Ji:u:*!8IFq!8Zo>J,~> pAb$6qto=Ji:u:*!8IFq!8Zo>J,~> pAb$6qt/h:i9oRi!8%.m!8Zo>J,~> pAb$6r;5FKi:u7)!8@@p!8Zo>J,~> pAb$6r;5FKi:u7)!8@@p!8Zo>J,~> pAb$6r:Jq;i9oOh!7q(l!8Zo>J,~> pAb$6rVPOLi:u7)!VY7FbQ-J`s*t~> pAb$6rVPOLi:u7)!VY7FbQ-J`s*t~> pAb$6rUf% pAb$6rqkXMi:u7)s7QHHr6,/sl2Q8~> pAb$6rqkXMi:u7)s7QHHr6,/sl2Q8~> pAb$6rq,.=i9oOhs6'I6r6,/sl2Q8~> pAb$6s81aNi:u7)rq6?Gr6,/sl2Q8~> pAb$6s81aNi:u7)rq6?Gr6,/sl2Q8~> pAb$6s7G7>i9oOhroa@5r6,/sl2Q8~> pAb$6!;lQf!;GdNp@A:Xo_@;7qtL'_!8@@p!8Zo>J,~> pAb$6!;lQf!;GdNp@A:Xo_@;7qtL'_!8@@p!8Zo>J,~> pAb$6!;,4>p@%V@q=!J6qs44E!7q(l!8Zo>J,~> pAb$6p\Fm^hs^X;o_@;4r:g-_!8@@p!8Zo>J,~> pAb$6p\Fm^hs^X;o_@;4r:g-_!8@@p!8Zo>J,~> pAb$6p@7&0!:TRJhXLI/r9+.3r6,/sl2Q8~> pAb$6p\Fm^hs^X;o_@;4rV-3_!8@@p!8Zo>J,~> pAb$6p\Fm^hs^X;o_@;4rV-3_!8@@p!8Zo>J,~> pAb$6p@7&0!:TRJhXLL0qre%2r6,/sl2Q8~> pAb$6p\Fm^hs^X;o_@;4rqH9_!8@@p!8Zo>J,~> pAb$6p\Fm^hs^X;o_@;4rqH9_!8@@p!8Zo>J,~> pAb$6p@7&0!:TRJhXLO1qWIq1r6,/sl2Q8~> pAb$6p\Fm^hs^X;o_@;4s7c?_!8@@p!8Zo>J,~> pAb$6p\Fm^hs^X;o_@;4s7c?_!8@@p!8Zo>J,~> pAb$6p@7&0!:TRJhXLR2q<.h0r6,/sl2Q8~> pAb$6p\Fm^hs^X;o_@;4!;H9^!8@@p!8Zo>J,~> pAb$6p\Fm^hs^X;o_@;4!;H9^!8@@p!8Zo>J,~> pAb$6p@7&0!:TRJhXCO2puh_/r6,/sl2Q8~> pAb$6p\FmanFZ5A!;?'[hXgL8!8@@p!8Zo>J,~> pAb$6p\FmanFZ5A!;?'[hXgL8!8@@p!8Zo>J,~> pAb$6jmhj/oBuYIi9p@'!7q(l!8Zo>J,~> pAb$6k5+$2i:ls=!8@@p!8Zo>J,~> pAb$6k5+$2i:ls=!8@@p!8Zo>J,~> pAb$6k4.Bti9U+#!7q(l!8Zo>J,~> pAb$6kPF-3i:lpJ,~> pAb$6kPF-3i:lpJ,~> pAb$6kOIKui9U("!7q(l!8Zo>J,~> pAb$6kka64i:lm;!8@@p!8Zo>J,~> pAb$6kka64i:lm;!8@@p!8Zo>J,~> pAb$6kjdU!i9U%!!7q(l!8Zo>J,~> pAb$6l2'?5i:lj:!8@@p!8Zo>J,~> pAb$6l2'?5i:lj:!8@@p!8Zo>J,~> pAb$6l1*^"i9U!u!7q(l!8Zo>J,~> pAb$6lMBH6i:lg9!8@@p!8Zo>J,~> pAb$6lMBH6i:lg9!8@@p!8Zo>J,~> pAb$6lLEg#i9Tst!7q(l!8Zo>J,~> pAb$6lh]Q7i:ld8!8@@p!8Zo>J,~> pAb$6lh]Q7i:ld8!8@@p!8Zo>J,~> pAb$6lg`p$i9Tps!7q(l!8Zo>J,~> pAb$6m/#Z8i:la7!8@@p!8Zo>J,~> pAb$6m/#Z8i:la7!8@@p!8Zo>J,~> pAb$6m.'$%i9Tmr!7q(l!8Zo>J,~> pAb$6mJ>c9i:l^6!8@@p!8Zo>J,~> pAb$6mJ>c9i:l^6!8@@p!8Zo>J,~> pAb$6mIB-&i9Tjq!7q(l!8Zo>J,~> pAb$6meYl:i:l[5!8@@p!8Zo>J,~> pAb$6meYl:i:l[5!8@@p!8Zo>J,~> pAb$6md]6'i9Tgp!7q(l!8Zo>J,~> pAb$6n+tu;i:lX4!8@@p!8Zo>J,~> pAb$6n+tu;i:lX4!8@@p!8Zo>J,~> pAb$6n+#?(i9Tdo!7q(l!8Zo>J,~> pAb$6nG;)J,~> pAb$6nG;)J,~> pAb$6nF>H)i9Tan!7q(l!8Zo>J,~> pAb$6nbV2=i:lR2!8@@p!8Zo>J,~> pAb$6nbV2=i:lR2!8@@p!8Zo>J,~> pAb$6naYQ*i9T^m!7q(l!8Zo>J,~> pAb$6o(q;>i:lO1!8@@p!8Zo>J,~> pAb$6o(q;>i:lO1!8@@p!8Zo>J,~> pAb$6o'tZ+i9T[l!7q(l!8Zo>J,~> pAb$6oD7D?i:lL0!8@@p!8Zo>J,~> pAb$6oD7D?i:lL0!8@@p!8Zo>J,~> pAb$6oC:c,i9TXk!7q(l!8Zo>J,~> pAb$6o\@49kM#jX!8Zo>J,~> pAb$6o\@49kM#jX!8Zo>J,~> pAb$6o\&0Ti7I/Cr6,/sl2Q8~> pA^,r!8Zo>J,~> pA^,r!8Zo>J,~> pA^,r!8Zo>J,~> pA^,r!8Zo>J,~> pA^,r!8Zo>J,~> pA^,r!8Zo>J,~> pA^,r!8Zo>J,~> pA^,r!8Zo>J,~> pA^,r!8Zo>J,~> pA^,r!8Zo>J,~> pA^,r!8Zo>J,~> pA^,r!8Zo>J,~> pA^,r!8Zo>J,~> pA^,r!8Zo>J,~> pA^,r!8Zo>J,~> pA^-.!:K+OJ,~> pA^-.!:K+OJ,~> pA^-.!:K+OJ,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> JcG!7J,~> %%EndData showpage %%Trailer end %%EOF beamer/base/art/beamericonbook.eps0000644000175000017500000005134312050430504017050 0ustar mohuramohura%!PS-Adobe-3.0 EPSF-3.0 %%Creator: GIMP PostScript file plugin V 1.12 by Peter Kirchgessner %%Title: /n/mappazza/home4/algo/tantau/texmf/tex/latex/classes/latex-beamer/beamericonbook.eps %%CreationDate: Thu Oct 16 20:39:49 2003 %%DocumentData: Clean7Bit %%LanguageLevel: 2 %%Pages: 1 %%BoundingBox: 14 14 29 27 %%EndComments %%BeginProlog % Use own dictionary to avoid conflicts 10 dict begin %%EndProlog %%Page: 1 1 % Translate for offset 14.173228 14.173228 translate % Translate to begin of first scanline 0.000000 12.000000 translate 13.920000 -12.000000 scale % Image geometry 116 100 8 % Transformation matrix [ 116 0 0 100 0 0 ] % Strings to hold RGB-samples per scanline /rstr 116 string def /gstr 116 string def /bstr 116 string def {currentfile /ASCII85Decode filter /RunLengthDecode filter rstr readstring pop} {currentfile /ASCII85Decode filter /RunLengthDecode filter gstr readstring pop} {currentfile /ASCII85Decode filter /RunLengthDecode filter bstr readstring pop} true 3 %%BeginData: 20153 ASCII Bytes colorimage NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> ci4!qrMfkJ`W(G~> ci4!qrMfkJ`W(G~> ci4!qrMfkJ`W(G~> eGoNJq0rCE`rCP~> eGoNJq0rCE`rCP~> eGoNJq0rCE`rCP~> gA_0'ri5jFr_ gA_0'ri5jFr_ gA_0'ri5jFr_ huE\UqgSZZ9hk@<"&48pe]IiA~> huE\UqgSZZ9hk@<"&48pe]IiA~> huE\UqgSZZ9hk@<"&48pe]IiA~> jo5>2ri5jFr_;o="&48pWlk?l~> jo5>2ri5jFr_;o="&48pWlk?l~> jo5>2ri5jFr_;o="&48pWlk?l~> lMpj`qgSZZ9hjk.!bQq^bQ!(~> lMpj`qgSZZ9hjk.!bQq^bQ!(~> lMpj`qgSZZ9hjk.!bQq^bQ!(~> nG`L=ri5jFr_;f:"]8*4Lh]``1BM0 nG`L=ri5jFr_;f:"YD8O*[<351BM0 nG`L=ri5jFr_;f:"YMAT,:+o=1BM0 p&G#kqgSZZ9hk%3s&/tsNfO*sreLT/:]*!NAq-i2cMrC~> p&G#kqgSZZ9hk%3s"4@),:!12rZ2([/,V1*Aq-i2cMrC~> p&G#kqgSZZ9hk%3s"FL-.4P6CrZ_Fc/Gq:+Aq-i2cMrC~> qZ$Ppqg\T>mPFlC!d'ZkrfR2?repc3!JO>I1BU@$J(;mFJ,~> qZ$Ppqg\T>mPFks!\5ZIr[.UhrZV7^!? qZ$Ppqg\T>ln\\s0/*;Ur[IgnrZ_Fc/Gq:+9n.ZCci8L~> r;QcIrI4l\9hk%3"^"i-Ssu5KR/W?LOoCC?MuJM5KkgNA"&48pe^4>H~> r;QcIrI4l\9hk"2s"XX0/h[,Rr[@amrZhCcrZ2([,Q'>"9n.ZCd/SU~> r;QcIrI4l\9hk%3"ZA4q3Arep1]B',/H.*t-N54j+!ph@"&48pe^4>H~> r;ZeH!);l;"'SiWV#I(eT)Y;ZR/W?LOoCC?MuJM5KkgNA"&3BWWmUis~> r;ZeH!);l;"#Vnm2?#E20`Nd)/,gsr-N57h+oWM`*$bA;"&3BWWmUis~> r;ZeH!);l;"$&;%5Q3eE3WD#:1]B',/H.*t-N54j+!ph@"&3BWWmUis~> rVlr!InfMjs',V0WiH&rrhTOergs.Zrg<\LrfR2?repc3!JP:c1BM0 rVlr!InfMjs#1!;3]d7"r\a[2r\4@)r[[srr[.UhrZV7^!? rVlr!InfMjs#U9C7RmAEr]gBEr]1!:r\OO,r[e$tr[.Uh!?WWb1BM0 rVlnuJ+k`%?s\VmYl:d(WrApqV#I(eT)Y;ZR/W?LOoCC?MuJP4K`FpH1BM0 rVlnuJ+k`%5<:kj5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP_)uqMe1BM0 rVlnuJ+k`%69[e29`@W_7fGdS5Q3eE3WD#:1]B',/H.*t-N57i*rmki1BM0 rVlnJB)OLkB4b_n_S*OjZi73.Xo>@"VuELkU&LY`S,SfSPl?gENrFt9M#W//:]*!N9n.ZCec1.~> rVlnJB)OLk rVlnJB)OLkN30E*O%.K1[n,QAhc/Gq:+9n.ZCec1.~> rr3&"Infnu$>Il4bf@Z=]t1_[rilC(ri5sqrhTOergs.Zrg<\LrfR2?repc3s+LGKr%eFLIt-#" s*t~> rr3&"Infnu$ rr3&"Infnu$ rr<"JrA+hReBlLba2Gj.]"#*GYl:d(WrApqV#I(eT)Y;ZR/W?LOoCC?MuJP4K`Glc1BU@$J#_-# J,~> rr<"JrA+h4W1K?;JU2BJ>uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP_)uq5]1BU@$J#_-# J,~> rr<"JrA+h3VOa'9KRS/]ARAC89`@W_7fGdS5Q3eE3WD#:1]B',/H.*t-N57i*rmVb1BU@$J#_-# J,~> rr3"K:&ZpXB[bJ\d*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9reUT.!,DBe!bQq^ f`-I~> rr3"K:&ZpX9qA5]SsPOiH?3V& rr3"K:&ZpX9q/#WSX5IlIX#X>?W6qtr^m)Yr^6ZLr]L0?s#0j4r\+7%r[IgnrZhFb!%%Lu!bQq^ f`-I~> s8N/NInfnu%VX;>eC;jjbf@Z=]t1_[rilC(ri5sqrhTOergs.Zrg<\LrfR2?repc3s+LJg:AcmL Aq-i6s*t~> s8N/NInfnu%SM>CW2Q;SOF__!A6i2*r]gBFr]:$ s8N/NInfnu%SM>AVP]oNObA1.CLpjOr_3;_r^QlSr]gBEr]1!:r\OO,r[e$tr[.UhruV7f/,V1) Aq-i6s*t~> s8N/#Infnu&"V.se'umocHO>I_S*OjZi73.Xo>@"VuELkU&LY`S,SfSPl?gENrFt9M#N).:AcmM Aq-i2g])d~> s8N/#Infnu%qBs:SZ&KYQ]QcEF(AQV8,baP4oRMA3;tf71]B*.0)dC#./kRm,Q8kc*r[,Z.f;() Aq-i2g])d~> s8N/#Infnu%qBs:S#3'RQ]ZrMG\^kt;uTJi8cD3Y6iK=L4T7A@2Z>N30E*O%.K1[n,Q8bb/,V1* Aq-i2g])d~> s8N,"J,M2%dL=USeBlLba2Gj.]"#*GYl:d(WrApqV#I(eT)Y;ZR/W?LOoCC?MuJP3K`FmG1BU@$ J( s8N,"J,M2&HOYLrW2Q;SOF__!A6i2*r]gBFr]:$ s8N,"J,M2&HOYLpVP]oNObA1.CLpjOr_3;_r^QlSr]gBEr]1!:r\OO,r[e$tr[.UhrZ;+jr%eFL It-#(s*t~> s8N,"J,M2$dL=USeBlLba2Gj.]"#*GYl:d(WrApqV#I(eT)Y;ZR/W?LOoCC?MuJP3K`Gfa1BU@$ J( s8N,"J,M2%HOYLrW2Q;SOF__!A6i2*r]gBFr]:$ s8N,"J,M2%HOYLpVP]oNObA1.CLpjOr_3;_r^QlSr]gBEr]1!:r\OO,r[e$tr[.UhrZ;+br%eFL It-#)s*t~> s8N,"J,M/'eGR`'e'umocHO>I_S*OjZi73.Xo>@"VuELkU&LY`S,SfSPl?gENrFt9M#N).B`'Xg 9kJmThZ&*~> s8N,"J,M/'IJnL%J=WX;SsPOiH?3V& s8N,"J,M/'IJnL%J=EF5SX5IlIX#X>?W6qtr^m)Yr^6ZLr]L0?s#0j4r\+7%r[IgnrZhCa!$hCt "&3BWWo!c+~> s8N,"J,M2'eGR`'e'umocHO>I_S*OjZi73.Xo>@"VuELkU&LY`S,SfSPl?gENrFt9M#N).B_sRe Aq-i s8N,"J,M2'IJnL%J=WX;SsPOiH?3V& s8N,"J,M2'IJnL%J=EF5SX5IlIX#X>?W6qtr^m)Yr^6ZLr]L0?s#0j4r\+7%r[IgnrZhCa!$h@s !bQq^huA3~> s8N,"J,M2&eGR`'e'umocHO>I_S*OjZi73.Xo>@"VuELkU&LY`S,SfSPl?gENrFt9M#N)/Jkl5" !bQq^i;\<~> s8N,"J,M2&IJnL%J=WX;SsPOiH?3V& s8N,"J,M2&IJnL%J=EF5SX5IlIX#X>?W6qtr^m)Yr^6ZLr]L0?s#0j4r\+7%r[IgnrZhCa!? s8N,"J,M2%eGR`'e'umocHO>I_S*OjZi73.Xo>@"VuELkU&LY`S,SfSPl?gENrFt9M#N)/Jkl5" "&48pe`-UZ~> s8N,"J,M2%IJnL%J=WX;SsPOiH?3V& s8N,"J,M2%IJnL%J=EF5SX5IlIX#X>?W6qtr^m)Yr^6ZLr]L0?s#0j4r\+7%r[IgnrZhCa!? s8N,"J,M2$eGR`'e'umocHO>I_S*OjZi73.Xo>@"VuELkU&LY`S,SfSPl?gENrFt9M#N)/Jkl5" "&48pe`6[[~> s8N,"J,M2$IJnL%J=WX;SsPOiH?3V& s8N,"J,M2$IJnL%J=EF5SX5IlIX#X>?W6qtr^m)Yr^6ZLr]L0?s#0j4r\+7%r[IgnrZhCa!? s8N/#Infnu!29>?r6c#&eC;jjbf@Z=]t1_[rilC(ri5sqrhTOergs.Zrg<\LrfR2?repc3re1B) B`'Xg9n.YmjSs`~> s8N/#Infnu!+u.WrHf!(SZ&KYQ]QcEF(AQV8,baP4oRMA3;tf71]B*.0)dC#./kRm,Q8kc*r[,[ )'So6"&48pWoX21~> s8N/#Infnu!+u.WrHf!(S#3'RQ]ZrMG\^kt;uTJi8cD3Y6iK=L4T7A@2Z>N30E*O%.K1[n,Q8bc *$bA;"&48pWoX21~> s8N/NInfnu!G^6aeGR`'e'umocHO>I_S*OjZi73.Xo>@"VuELkU&LY`S,SfSPl?gENrFt9M#N)/ JnY$;!bQq^jo9i~> s8N/NInfnu!DS(AIJnL%J=WX;SsPOiH?3V& s8N/NInfnu!DS(AIJnL%J=EF5SX5IlIX#X>?W6qtr^m)Yr^6ZLr]L0?s#0j4r\+7%r[IgnrZhCa !? rr3"K:&ZpMC=h)8eGR`'e'umocHO>I_S*OjZi73.Xo>@"VuELkU&LY`S,SfSPl?gENrFt9M#N)0 JnRpW1BM03~> rr3"K:&ZpM9n.ZjIJnL%J=WX;SsPOiH?3V& rr3"K:&ZpM9n.ZjIJnL%J=EF5SX5IlIX#X>?W6qtr^m)Yr^6ZLr]L0?s#0j4r\+7%r[IgnrZhCa !ZWF8r%eCdJ#_Z2J,~> rr<"JrA+MKf@TrMr6c#&eC;jjbf@Z=]t1_[rilC(ri5sqrhTOergs.Zrg<\LrfR2?repc3re:B( !)EGJ"(m%_e`d$`~> rr<"JrA+LeIt.BErHf!(SZ&KYQ]QcEF(AQV8,baP4oRMA3;tf71]B*.0)dC#./kRm,Q8kc*r[/Z )#u/a1BV6=Wn$>5J,~> rr<"JrA+LeIt.BErHf!(S#3'RQ]ZrMG\^kt;uTJi8cD3Y6iK=L4T7A@2Z>N30E*O%.K1[n,Q8eb )uqMe1BV6=Wn$>5J,~> rr3&"Infnu!,DMbr7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9reUQ- s+15Gr%eFLIt-#5s*t~> rr3&"Infnu!)uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP^ *<-lV.f;()9n.ZCl2Q8~> rr3&"Infnu!) rVlnJB)OOafDO.rdL=USeBlLba2Gj.]"#*GYl:d(WrApqV#I(eT)Y;ZR/W?LOoCC?MuJP3L&Z`) B`'Xg9n.ZClMlA~> rVlnJB)OOaJ,F`nHOYLrW2Q;SOF__!A6i2*r]gBFr]:$ rVlnJB)OOaJ,F`nHOYLpVP]oNObA1.CLpjOr_3;_r^QlSr]gBEr]1!:r\OO,r[e$tr[.UhrZD.[ !$hCt"&48pea!0b~> rVlnuJ,M/'CAlc^eGR`'e'umocHO>I_S*OjZi73.Xo>@"VuELkU&LY`S,SfSPl?gENrFt9M#N,. JcKK^1BU?`J#_i7J,~> rVlnuJ,M/':&TS>IJnL%J=WX;SsPOiH?3V& rVlnuJ,M/':&TS>IJnL%J=EF5SX5IlIX#X>?W6qtr^m)Yr^6ZLr]L0?s#0j4r\+7%r[IgnrZhCa ru;"`r%eFLAq-iHs*t~> rVlr!Infkt!,DJar7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9reUQ- s+15aq_J:cJ#_l8J,~> rVlr!Infkt!)uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP^ *<-lV+o=%sAq-iIs*t~> rVlr!Infkt!) r;ZeH!) r;ZeH!)uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP^ *<$fU.Jtt'Aq-iJs*t~> r;ZeH!) r;QiKIqJU7!29ACr7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9reUQ- rdk,Er%eFLIt-#;s*t~> r;QiKIqJU7!+u1Zr-eNj%=k"JW1K?;JU2BJ>uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP^ *<$fU.Jtt(9n.ZCn,In~> r;QiKIqJU7!+u1Zr-eNj%=jqFVOa'9KRS/]ARAC89`@W_7fGdS5Q3eE3WD#:1]B',/H.*t-N57h +9!5[.f;()9n.ZCn,In~> qu6`JIqJU7!29ACr7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9reUQ- rdk,Er%eFLIt-# qu6`JIqJU7!+u1Zr-eNj%=k"JW1K?;JU2BJ>uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP^ *<$fU.Jtt(9n.ZCnGe"~> qu6`JIqJU7!+u1Zr-eNj%=jqFVOa'9KRS/]ARAC89`@W_7fGdS5Q3eE3WD#:1]B',/H.*t-N57h +9!5[.f;()9n.ZCnGe"~> qYpWIIqJU7!29ACr7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9reUQ- rdk,^r%eFLIt+Kgs*t~> qYpWIIqJU7!+u1Zr-eNj%=k"JW1K?;JU2BJ>uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP^ *<$fU+T+"t9n.Ymnc++~> qYpWIIqJU7!+u1Zr-eNj%=jqFVOa'9KRS/]ARAC89`@W_7fGdS5Q3eE3WD#:1]B',/H.*t-N57h +9!5[+oF+u9n.Ymnc++~> q>UMrIqJU7!29ACr7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9reUQ- rdk,^q_J:cJ#`)>J,~> q>UMrIqJU7!+u1Zr-eNj%=k"JW1K?;JU2BJ>uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP^ *<$fU+T!qrAq-iOs*t~> q>UMrIqJU7!+u1Zr-eNj%=jqFVOa'9KRS/]ARAC89`@W_7fGdS5Q3eE3WD#:1]B',/H.*t-N57h +9!5[+o=%sAq-iOs*t~> q#:DqIqJU7!29ACr7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9reUQ- rdk/_:&HdKAq-iPs*t~> q#:DqIqJU7!+u1Zr-eNj%=k"JW1K?;JU2BJ>uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP^ *<$fV+=[4E!bQq^oDa=~> q#:DqIqJU7!+u1Zr-eNj%=jqFVOa'9KRS/]ARAC89`@W_7fGdS5Q3eE3WD#:1]B',/H.*t-N57h +9!5\+Y*CG!bQq^oDa=~> p\t;pIqJU7!29ACr7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9reUQ- rdk0#:&HdLAq-i2p&BO~> p\t;pIqJU7!+u1Zr-eNj%=k"JW1K?;JU2BJ>uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP^ *<$fV(Ff8<"(m%_eb/rm~> p\t;pIqJU7!+u1Zr-eNj%=jqFVOa'9KRS/]ARAC89`@W_7fGdS5Q3eE3WD#:1]B',/H.*t-N57h +9!5\)(PP?"(m%_eb/rm~> pAY2oInfkt!,DG`r7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9reUQ- rdk0#:&HdL9n.ZCpA]X~> pAY2oInfkt!)uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP^ *<$fV(Ff8<"&48peb9#n~> pAY2oInfkt!) p&>)nInfkt!,DG`r7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9reUQ- rdk0#B)FFe9n.ZCp]#a~> p&>)nInfkt!)uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP^ *<$fV(EiW3"&48pebB)o~> p&>)nInfkt!) o`"umInfkt!,DG`r7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9reUQ- rdk0#B)FFe9kJmTq#>j~> o`"umInfkt!)uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP^ *<$fV(EiW3"&3BWWqcUE~> o`"umInfkt!) o`#$DIt(2k1B;1ffDO.rdL=USeBlLba2Gj.]"#*GYl:d(WrApqV#I(eT)Y;ZR/W?LOoCC?MuJP3 L&QZ)IqJR6!bQq^q>Ys~> o`#$DIt(2k1B:/IJ,F`nHOYLrW2Q;SOF__!A6i2*r]gBFr]:$cmU1BM0 o`#$DIt(2k1B:/IJ,F`nHOYLpVP]oNObA1.CLpjOr_3;_r^QlSr]gBEr]1!:r\OO,r[e$tr[.Uh rZD+Z!?!'X1BM0 oD\pCIt(2k1B;1ffDO.rdL=USeBlLba2Gj.]"#*GYl:d(WrApqV#I(eT)Y;ZR/W?LOoCC?MuJP3 L&Q](IfN4@1BM0 oD\pCIt(2k1B:/IJ,F`nHOYLrW2Q;SOF__!A6i2*r]gBFr]:$ oD\pCIt(2k1B:/IJ,F`nHOYLpVP]oNObA1.CLpjOr_3;_r^QlSr]gBEr]1!:r\OO,r[e$tr[.Uh rZD+Zrttedr%eCdJ#`AFJ,~> o)AgBIt(2k1B;1ffDO.rdL=USeBlLba2Gj.]"#*GYl:d(WrApqV#I(eT)Y;ZR/W?LOoCC?MuJP3 L&Q](IfN4@1BU@$J(=JsJ,~> o)AgBIt(2k1B:/IJ,F`nHOYLrW2Q;SOF__!A6i2*r]gBFr]:$ o)AgBIt(2k1B:/IJ,F`nHOYLpVP]oNObA1.CLpjOr_3;_r^QlSr]gBEr]1!:r\OO,r[e$tr[.Uh rZD+Zrttedr%eFLIt-#Hs*t~> nc&[@IqJU7!29>Br7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9reUQ- rdt0"!) nc&[@IqJU7!+u.Yr-eNj%=k"JW1K?;JU2BJ>uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP^ *<$iU(B>o^1BL:#Wr2mI~> nc&[@IqJU7!+u.Yr-eNj%=jqFVOa'9KRS/]ARAC89`@W_7fGdS5Q3eE3WD#:1]B',/H.*t-N57h +9!8[)#u/a1BL:#Wr2mI~> nG`R?IqJU7!29>Br7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9reUQ- s+1;I9hkL@!_n0prVqB~> nG`R?IqJU7!+u.Yr-eNj%=k"JW1K?;JU2BJ>uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+oWP^ *<-lX.OchD1BL:#ec#Mu~> nG`R?IqJU7!+u.Yr-eNj%=jqFVOa'9KRS/]ARAC89`@W_7fGdS5Q3eE3WD#:1]B',/H.*t-N57h +9*;^.k3%G1BL:#ec#Mu~> n,EI>IqJU7!29>Br7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmDErf6u9")Le1 :\6FDJ#`JIJ,~> n,EI>IqJU7!+u.Yr-eNj%=k"JW1K?;JU2BJ>uaDo5Q3hF3rV,<2?#E20`Nd)/,gsr-N57h+Tj#A /1^?K!Iq-Js*t~> n,EI>IqJU7!+u.Yr-eNj%=jqFVOa'9KRS/]ARAC89`@W_7fGdS5Q3eE3WD#:1]B',/H.*t-3GYJ /M-NM!Iq-Js*t~> mf*?gIqJU7!29>Br7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-s"TrfmGF!`MupmP=l< J,K=s~> mf*?gIqJU7!+u.Yr-eNj%=k"JW1K?;JU2BJ>uaDo5Q3hF3rV,<2?#E20`Nd)/,gss-3>eO/abCq 9n3*@J,~> mf*?gIqJU7!+u.Yr-eNj%=jqFVOa'9KRS/]ARAC89`@W_7fGdS5Q3eE3WD#:1]B'-/-7LY0CCUs 9n3*@J,~> mJd6fIqJU7!29>Br7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoakrh9=_s-j+7 mJd6fIqJU7!+u.Yr-eNj%=k"JW1K?;JU2BJ>uaDo5Q3hF3rV,<2?#E20`Na-/MJk3kVN6gr;V9~> mJd6fIqJU7!+u.Yr-eNj%=jqFVOa'9KRS/]ARAC89`@W_7fGdS5Q3eE3WD#:1B9/n1]Mt&s*t~> m/I-eIqJU7!29>Br7(Ym%+E_Ud*BkU`594!\?l1=riQ1"rhoak"//h!=6h[B;Z]ou m/I-eIqJU7!+u.Yr-eNj%=k"JW1K?;JU2BJ>uaDo5Q3hF3rV,<2?#B31@$ar;Z]ou m/I-eIqJU7!+u.Yr-eNj%=jqFVOa'9KRS/]ARAC89`@W_7fGdS56F#+2DseVs&/tu li.$dInfkt!,DD_r7(Ym%+E_Ud*BkU`594!\?l1=riQ4#!/(8SlSAiD;,VFsPEqW, li.$dInfkt!)uaDo5Q3hG3WM/=2=!%):f1,2Ocu*!S6#SE!_n0E qu;0~> li.$dInfkt!)^Q3U8I-:f1,2Ocu*!S6#SE!_n0E qu;0~> lMgpcInfkt!,DD_r7(Ym&C].Yd*BkU`594!\?iDF?!Q\O%no\m:PO[`NfK6cQC4/2H2TN#9n02> s*t~> lMgpcInfkt!)uaBZr\s.!%no\m:PO[`NfK6cQC4/2H2TN#9n02> s*t~> lMgpcInfkt!) l2LgbInfkt!,DD_r7(Ym$.IDRd*Bk$A7K'61D*2N94NC#K7eo7MiNg[PEqN&rgWsirA4J'q>Ys~> l2LgbInfkt!) l2LgbInfkt!) l2Lk9It(2k1B;1efDO.rdK@tJe=>n^s$m#Y&or,=GC"[fJ:iT4Mi3UXPEV<#rga"\rA+LeJ(=Ap J,~> l2Lk9It(2k1B:/HJ,F`nHN\kiW2P(11]KrE7hTibGB\@]J:N9,Ll71OOctupRJr`VTD^PIAq/A, s*t~> l2Lk9It(2k1B:/HJ,F`nHN\kgVP\\,1]KrE7hTibGB\@]J:N9,Ll71OOctupRJr`VTD^PIAq/A, s*t~> kl1b8It(2k1B;1efDO.rdK.hHnh^;5)am_ACi"$1F`hnSI=6WuL5:YDNffHfQC4/2SGo,\IJkr& J#`;DJ,~> kl1b8It(2k1B:/HJ,F`nHNJ_gW:DbE6Q8EoC2@^)EclMKH@:3lK8,2 kl1b8It(2k1B:/HJ,F`nHNJ_eVXcPC6Q8EoC2@^)EclMKH@:3lK8,2 kPkY7It(2k1B;1efDO.rdK""W1]KZ^5XA^_@:X"cC2@g/EclSPH@: kPkY7It(2k1B:/HJ,F`nHNAXuq(r%8+@&5!?=@AWC2.R'EcQ;HH?t!iK8,,:MiNg[PEqW)S=KSN s.TKqr\FUMJ(=>oJ,~> kPkY7It(2k1B:/HJ,F`nHNAXtq(r%8+@&5!?=@AWC2.R'EcQ;HH?t!iK8,,:MiNg[PEqW)S=KSN s.TKqr\FUMJ(=>oJ,~> k5PM5IqJU7!29;Ar7(\n!,2?f,@(`KB4ksqDf9Z=GC"R`J:iK/Ll71OOcu)sRJr`V TDkPcV-3dR!DS( k5PM5IqJU7!+u+Xr-eNj!)@(`KB4ksqDf9Z=GC"R`J:iK/Ll71OOcu)sRJr`V TDkPcV-3dR!DS( k5PM5IqJU7!+u+Xr-eNj!)@(`KB4ksqDf9Z=GC"R`J:iK/Ll71OOcu)sRJr`V TDkPcV-3dR!DS( jo5D4IqJU7!29;Ar7(bp!1j'E+])*<=^,*:@:Wn]C2@^)EclSMH@: jo5D4IqJU7!+u+Xr-eTl!+Ys`+])*<=^,*:@:Wn]C2@^)EclSMH@: jo5D4IqJU7!+u+Xr-eTl!+Ys`+])*<=^,*:@:Wn]C2@^)EclSMH@: jSo;3IqJU7!29;Ar6tbqB`9e45#tfh>@(`HA7oXlCi=?:Fa&.[I=Qs)L5:bJOcbinR@0S8rh'4b rh]XnrA+J(WqZOD~> jSo;3IqJU7!+u+Xr-\Tm9E$^l5#tfh>@(`HA7oXlCi=?:Fa&.[I=Qs)L5:bJOcbinR@0S8rh'4b rh]XnrA+J(WqZOD~> jSo;3IqJU7!+u+Xr-\Tm9E$^l5#tfh>@(`HA7oXlCi=?:Fa&.[I=Qs)L5:bJOcbinR@0S8rh'4b rh]XnrA+J(WqZOD~> j8T1\IqJU7!29;Ar7([$+\PsB?=%&NB4ksqDfTl@GC"R`J:iT2Ll7:ROcu)sR@KfHTDkSbV>dCn Wr4^SJ#`8CJ,~> j8T1\IqJU7!+u+Xr-eN"+\PsB?=%&NB4ksqDfTl@GC"R`J:iT2Ll7:ROcu)sR@KfHTDkSbV>dCn Wr4^SJ#`8CJ,~> j8T1\IqJU7!+u+Xr-eN"+\PsB?=%&NB4ksqDfTl@GC"R`J:iT2Ll7:ROcu)sR@KfHTDkSbV>dCn Wr4^SJ#`8CJ,~> ir9([IqJU7!29;ArmUq?rA4IX)dZr`B4ksqDf9Z=GB\@]J:iK/Ll71OOctupRJr`VTDkSaV>mLn Wr4aRJ+rtn~> ir9([IqJU7!+u+Xrd=cXrA4IX)dZr`B4ksqDf9Z=GB\@]J:iK/Ll71OOctupRJr`VTDkSaV>mLn Wr4aRJ+rtn~> ir9([IqJU7!+u+Xrd=cXrA4IX)dZr`B4ksqDf9Z=GB\@]J:iK/Ll71OOctupRJr`VTDkSaV>mLn Wr4aRJ+rtn~> iVrtZIqJU7!29;As3q$_r\GN[?=@ATB527!DfTuCGC"[fJ:iT4Ll7:UOcu*!rg`t[s.]Lhs/>ps s/c9+r\FRLJ+rtn~> iVrtZIqJU7!+u+Xs*Xl@r\GN[?=@ATB527!DfTuCGC"[fJ:iT4Ll7:UOcu*!rg`t[s.]Lhs/>ps s/c9+r\FRLJ+rtn~> iVrtZIqJU7!+u+Xs*Xl@r\GN[?=@ATB527!DfTuCGC"[fJ:iT4Ll7:UOcu*!rg`t[s.]Lhs/>ps s/c9+r\FRLJ+rtn~> i;WkYInfkt!,DA^!Rti_1EAhkA7oXlCi=?7Fa&.[I=Qs)L5:bJOcbinR@0S8rh'4brh]Ums/Q(# !O,l/1BL:#WqcUE~> i;WkYInfkt!)<<>!I[Z@1EAhkA7oXlCi=?7Fa&.[I=Qs)L5:bJOcbinR@0S8rh'4brh]Ums/Q(# !O,l/1BL:#WqcUE~> i;WkYInfkt!)<<>!I[Z@1EAhkA7oXlCi=?7Fa&.[I=Qs)L5:bJOcbinR@0S8rh'4brh]Ums/Q(# !O,l/1BL:#WqcUE~> huO) M>]42J#`;DJ,~> hu!)3AJ),t6]C2@g/EclSPH@:O) M>]42J#`;DJ,~> hu!)3AJ),t6]C2@g/EclSPH@:O) M>]42J#`;DJ,~> hZ!YWInfkt!,DD_!,DKh(M@K!Df9Z=GB\@]J:N9,Ll71OOctupRJr`VTDkSaV>mLnWrK4#Yl;!- 1BM0 hZ!YWInfkt!)mLnWrK4#Yl;!- 1BM0 hZ!YWInfkt!)mLnWrK4#Yl;!- 1BM0 hZ!].It(2k1B;1ffDRN*C_L`-F`hnSI=Qj#L5:YDNffHfQC7`Brh'4brh]Xnri5t"s02L/s0_o8 rA4J'!7grGJ,~> hZ!].It(2k1B:/IJ,M2'C_L`-F`hnSI=Qj#L5:YDNffHfQC7`Brh'4brh]Xnri5t"s02L/s0_o8 rA4J'!7grGJ,~> hZ!].It(2k1B:/IJ,M2'C_L`-F`hnSI=Qj#L5:YDNffHfQC7`Brh'4brh]Xnri5t"s02L/s0_o8 rA4J'!7grGJ,~> h>[T-It(2k1B;1gfDRK@DfTl@GC"[cJ:iT2Ll7:ROcu*!R@KfHTDkSbV>dFnWrB.#Yl;!.[K3pu rA+LLJ#`AFJ,~> h>[T-It(2k1B:/JJ,M/=DfTl@GC"[cJ:iT2Ll7:ROcu*!R@KfHTDkSbV>dFnWrB.#Yl;!.[K3pu rA+LLJ#`AFJ,~> h>[T-It(2k1B:/JJ,M/=DfTl@GC"[cJ:iT2Ll7:ROcu*!R@KfHTDkSbV>dFnWrB.#Yl;!.[K3pu rA+LLJ#`AFJ,~> h#@K,It(2k1B;1hfDRKR)Zi7E4\H0?O rA+LLJ#`DGJ,~> h#@K,It(2k1B:/KJ,M/9EclSPH@:R)Zi7E4\H0?O rA+LLJ#`DGJ,~> h#@K,It(2k1B:/KJ,M/9EclSPH@:R)Zi7E4\H0?O rA+LLJ#`DGJ,~> g]%?*IqJU7!hn5trA4It%XNPRJ:iT4Mi3UXPEV<#rga"\rhBCgs/>pss/l:)rj2X5rji'As1\PC rA+LeJ(=JsJ,~> g]%?*IqJU7!bQq3rA4It%XNPRJ:iT4Mi3UXPEV<#rga"\rhBCgs/>pss/l:)rj2X5rji'As1\PC rA+LeJ(=JsJ,~> g]%?*IqJU7!bQq3rA4It%XNPRJ:iT4Mi3UXPEV<#rga"\rhBCgs/>pss/l:)rj2X5rji'As1\PC rA+LeJ(=JsJ,~> gA_6)IqJU7!MS-D1D+q]I=Qs)LkptLOcbinR@0S8rh'4brh]Ums/Q(#s02L/s0hp;rk/9Gs2"Uh s*stHJ,~> gA_6)IqJU7!G6i[1D+q]I=Qs)LkptLOcbinR@0S8rh'4brh]Ums/Q(#s02L/s0hp;rk/9Gs2"Uh s*stHJ,~> gA_6)IqJU7!G6i[1D+q]I=Qs)LkptLOcbinR@0S8rh'4brh]Ums/Q(#s02L/s0hp;rk/9Gs2"Uh s*stHJ,~> g&D-(IqJU7!MO9-1CnnaK8,,:MiNg[PEqN&S=KSNrhBFhri#jsriQ1(s0M^5s1/-A"M^(.@q5Bl !_n0ErVqB~> g&D-(IqJU7!G5(*1CnnaK8,,:MiNg[PEqN&S=KSNrhBFhri#jsriQ1(s0M^5s1/-A"M^(.@q5Bl !_n0ErVqB~> g&D-(IqJU7!G5(*1CnnaK8,,:MiNg[PEqN&S=KSNrhBFhri#jsriQ1(s0M^5s1/-A"M^(.@q5Bl !_n0ErVqB~> f`)#QIqJU7!,DKh$Vl>/Ll71OOcu)sRJr`VTDkSbV>dFmWrK4#YlD'/[f?t!L91BL:#Wr;sJ~> f`)#QIqJU7!)/Ll71OOcu)sRJr`VTDkSbV>dFmWrK4#YlD'/[f?t!L91BL:#Wr;sJ~> f`)#QIqJU7!)/Ll71OOcu)sRJr`VTDkSbV>dFmWrK4#YlD'/[f?t!L91BL:#Wr;sJ~> fDboPIqJL4#u?A5MiNp`PEqX9SGo/\UAh"hW;`grXoGX*ZNH%k?XW:X!_n0ErVqB~> fDboPIqJL4#u?A5MiNp`PEqX9SGo/\UAh"hW;`grXoGX*ZNH%k?XW:X!_n0ErVqB~> fDboPIqJL4#u?A5MiNp`PEqX9SGo/\UAh"hW;`grXoGX*ZNH%k?XW:X!_n0ErVqB~> f)GfOIqJO5$;cY@OcbinR@0S8rh'4brh]Ums/Q(#s'5V2lSJN7!bQq^r;V9~> f)GfOIqJO5$;cY@OcbinR@0S8rh'4brh]Ums/Q(#s'5V2lSJN7!bQq^r;V9~> f)GfOIqJO5$;cY@OcbinR@0S8rh'4brh]Ums/Q(#s'5V2lSJN7!bQq^r;V9~> ec,]NInfbq#EFq1QBmr/SGo/[UAq(hVuqZV>[6SNr_<6=!35qrJ,~> ec,]NInfbq#EFq1QBmr/SGo/[UAq(hVuqZV>[6SNr_<6=!35qrJ,~> ec,]NInfbq#EFq1QBmr/SGo/[UAq(hVuqZV>[6SNr_<6=!35qrJ,~> eGfTMInfer"&kDLRJr`VTDkPeV--r)lSJN7!+u(Wri,tKq#>j~> eGfTMInfer"&kDLRJr`VTDkPeV--r)lSJN7!+u(Wri,tKq#>j~> eGfTMInfer"&kDLRJr`VTDkPeV--r)lSJN7!+u(Wri,tKq#>j~> e,KKLInfer!1EhV"J:$B=BOlFr_<3 e,KKLInfer!1EhV"J:$B=BOlFr_<3 e,KKLInfer!1EhV"J:$B=BOlFr_<3 e,KO#It(2j1]LMA1]C)KB)7#VWW:T8s*t~> e,KO#It(2j1]LMA1]C)KB)7#VWW:T8s*t~> e,KO#It(2j1]LMA1]C)KB)7#VWW:T8s*t~> df0F"It(2Y1]C,EJ,ZJ/s*t~> df0F"It(2Y1]C,EJ,ZJ/s*t~> df0F"It(2Y1]C,EJ,ZJ/s*t~> dJj=!It(2a1]C)KB)7#VWW:T+s*t~> dJj=!It(2a1]C)KB)7#VWW:T+s*t~> dJj=!It(2a1]C)KB)7#VWW:T+s*t~> d/O0tIqJL4r_<3 d/O0tIqJL4r_<3 d/O0tIqJL4r_<3 ci4'sIt.Gl!+u(Wri,tKdJn^~> ci4'sIt.Gl!+u(Wri,tKdJn^~> ci4'sIt.Gl!+u(Wri,tKdJn^~> cMmpqWr.AGWlk?l~> cMmpqWr.AGWlk?l~> cMmpqWr.AGWlk?l~> bl7[n_uG5~> bl7[n_uG5~> bl7[n_uG5~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> NW4M~> %%EndData showpage %%Trailer end %%EOF beamer/base/art/beamericononline.20.pdf0000644000175000017500000005760312050430504017611 0ustar mohuramohura%PDF-1.4 % 3 0 obj << /Length 4 0 R /Filter /FlateDecode >> stream xeY˪%Wz`0,{i1Wh;"2q$=Q]|gTu_oOߧ󷭴mlOlGmȹHkiN^m0LU|W@lec*}c@}b d%}?FtQߙKkO1wKO9iV?_w2O_oYsv(SGIv8 Ti*K-LudͷOe[ҧNNȫdgXevҨ Go5ot/mP=# uEk,1m,.a|x$mk&.8lgXXG7 lht)\:,'NG7+%t6ngS$%Le2e}eoM'-3qA^Gʶ:WF[[ f/ǐ0!< P!,ҏ[9hgΆ+^rXx#֏Vlln &o\80Q, 3zfyX]^-ǧQl3-f$- ˤC&`GW@Sp,Xa!mi*8wj;~$Su Zf:aS*WP$j_ ,1'a~8,c7BA lk>`]#K@S]Dj 8e@s0#Ya?Xqؑ(6/J6yBU)h@:)gզ@鄚4pKEE`\oU14TAd+w>z0΀{Xp`B`2⌈bo4%TpQkY MSYЙަPËZS`t,{*8|N#GX/P{##*{D=[Y5,٧Y$ݫU:v=C4wvm6>Ltϧjwa@-61KyE hB^e}0TV ӻgUe^LgD<ǁ^=vc%yKݲS*0oacBp,|c$hV!,jyygUy Ró["o~._y!+x˯\3XRWhg8W  X"t1 !al`(zhKf`ksY>Ĵ(3#8N 9c]9侀]xE vjI YrEQztdo+[ߐ^w0lSUoþͨ4~@&4ŮRK"m`sq:/98&u1qDجQM X*}P!@lLûA9h~̈~._v!>[4/Wxl6Q~ xڮl{z)}fHڿ|'.m'wdR AkzwEv2YK=iWr$u![E^UBvE*W,9ҏ:+"|;+A!ٙs}w⮓pRq@D83K9I쑤1A"I*u3֐%둮RgS.Nihy;@/ϳ5-ohkH-H2ra id{RXy>W!_yEr'LRz*1UAI<=> /a1 << /CA 0.71345 /ca 0.71345 >> /s6 6 0 R /s9 9 0 R /s12 12 0 R /s15 15 0 R /s18 18 0 R /s21 21 0 R /s24 24 0 R /s27 27 0 R /s30 30 0 R >> /Pattern << /p5 5 0 R >> /XObject << /x7 7 0 R /x10 10 0 R /x13 13 0 R /x16 16 0 R /x19 19 0 R /x22 22 0 R /x25 25 0 R /x28 28 0 R /x31 31 0 R >> >> endobj 32 0 obj << /Type /Page /Parent 1 0 R /MediaBox [ 0 0 38.400002 38.400002 ] /Contents 3 0 R /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources 2 0 R >> endobj 33 0 obj << /Type /XObject /Length 39 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 0.395604 /ca 0.395604 >> >> >> >> stream x3P0¢tDb.BXE i\ s endstream endobj 7 0 obj << /Type /XObject /Length 59 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p34 34 0 R >> >> >> stream x+TH,)I-SH.V/06Q(NSO4PH/2P0P031#$VQBW # endstream endobj 35 0 obj << /Type /Mask /S /Alpha /G 33 0 R >> endobj 6 0 obj << /Type /ExtGState /SMask 35 0 R /ca 1 /CA 1 /AIS false >> endobj 10 0 obj << /Type /XObject /Length 196 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p8 8 0 R >> >> >> stream x]j1 zyjek ) {,9mI($4?ׯnAXv0dL7 ;J^-Nc a'EqFUR^tE!QQGĚ Ga0¹ 8e֫CŒ9$ Cס{΍>ZW%xiZ:H˾\-KlBſ3'lhC? endstream endobj 13 0 obj << /Type /XObject /Length 200 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p11 11 0 R >> >> >> stream xejA;?go%GA6!!DqXra._bI nARw8[\ M9*&wPUJZ \G P0#2qWX08ڢqBIź/XmG$0+T)OK׎V:Gz_Og>q@ endstream endobj 16 0 obj << /Type /XObject /Length 160 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p14 14 0 R >> >> >> stream x]K1 C=,> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p17 17 0 R >> >> >> stream xeOj1 +Vm {,=mi)4i _oҮ5if|x\^ϟL1mvTX#Amx 8a֒<ڐkmV(r{H]Uq:cj]\[g2.INE0# ZIrɊu->D6Djrq̿/s?6aE endstream endobj 22 0 obj << /Type /XObject /Length 201 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p20 20 0 R >> >> >> stream xeN1 yyڎsoHET{D(r Rd9b|؟/_L?1m1Tzw~OO`b<'GHP,jj1DW FndK1(Y)Pf\Sigd%B3e[YLVȗܡJ,vuK/z鷑x K?*A? endstream endobj 25 0 obj << /Type /XObject /Length 157 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p23 23 0 R >> >> >> stream x];0 Cwsƒ,9E{ gi6?joEJ7rφuRþn @ snx"Q dfC ʢ:0a7@ Ӭ+[ FL fPe+ԨJ7&cX(E_)]/ endstream endobj 28 0 obj << /Type /XObject /Length 158 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p26 26 0 R >> >> >> stream x];nBA=Evfo $ :.~l:plтJܑҦB:TXAðC*4T]k1c=>&_X"0cXbҼ`ξSE6g,u K'u}0 endstream endobj 31 0 obj << /Type /XObject /Length 161 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p29 29 0 R >> >> >> stream x]n0 Dw}h(_`iHk?*Y{岝wG?> endobj 37 0 obj << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 1 1 1 ] /C1 [ 0.854902 0.898039 0.945098 ] /N 1 >> endobj 38 0 obj << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 0.854902 0.898039 0.945098 ] /C1 [ 0.67451 0.733333 0.835294 ] /N 1 >> endobj 39 0 obj << /FunctionType 3 /Domain [ 0 1 ] /Functions [ 36 0 R 37 0 R 38 0 R ] /Bounds [ 0.155172 0.75 ] /Encode [ 0 1 0 1 0 1 ] >> endobj 5 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.799991 0 0 -0.800009 0 38.400002 ] /Shading << /ShadingType 3 /ColorSpace /DeviceRGB /Coords [ 18.246094 15.714844 0 18.246094 15.714844 29.992188 ] /Function 39 0 R /Extend [ true true ] >> >> endobj 40 0 obj << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 1 ] /C1 [ 0 ] /N 1 >> endobj 8 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.904827 -0.490478 -0.381245 -0.703315 43.272464 25.564522 ] /Shading << /ShadingType 2 /ColorSpace /DeviceRGB /Coords [ -25.175781 30.058594 -22.253906 21.042969 ] /Domain [ 0 1 ] /Function 36 0 R /Extend [ true true ] >> >> endobj 41 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.904827 -0.490478 -0.381245 -0.703315 43.272464 25.564522 ] /Shading << /ShadingType 2 /ColorSpace /DeviceGray /Coords [ -25.175781 30.058594 -22.253906 21.042969 ] /Domain [ 0 1 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 42 0 obj << /Length 43 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p41 41 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/01T(N2P0P031#$VQ*WW I endstream endobj 43 0 obj 58 endobj 44 0 obj << /Type /Mask /S /Luminosity /G 42 0 R >> endobj 9 0 obj << /Type /ExtGState /SMask 44 0 R /ca 1 /CA 1 /AIS false >> endobj 11 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.751461 0.703269 0.546646 -0.584105 25.851248 41.96125 ] /Shading << /ShadingType 2 /ColorSpace /DeviceRGB /Coords [ -25.175781 30.058594 -22.113281 22.660156 ] /Domain [ 0 1 ] /Function 36 0 R /Extend [ true true ] >> >> endobj 45 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.751461 0.703269 0.546646 -0.584105 25.851248 41.96125 ] /Shading << /ShadingType 2 /ColorSpace /DeviceGray /Coords [ -25.175781 30.058594 -22.113281 22.660156 ] /Domain [ 0 1 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 46 0 obj << /Length 47 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p45 45 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/01U(N2P0P031#$VQ*WW  endstream endobj 47 0 obj 58 endobj 48 0 obj << /Type /Mask /S /Luminosity /G 46 0 R >> endobj 12 0 obj << /Type /ExtGState /SMask 48 0 R /ca 1 /CA 1 /AIS false >> endobj 14 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.836618 -0.613801 0.613801 -0.836618 30.060298 27.754653 ] /Shading << /ShadingType 3 /ColorSpace /DeviceRGB /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 36 0 R /Extend [ true true ] >> >> endobj 49 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.836618 -0.613801 0.613801 -0.836618 30.060298 27.754653 ] /Shading << /ShadingType 3 /ColorSpace /DeviceGray /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 50 0 obj << /Length 51 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p49 49 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/0T(N2P0P031#$VQ*WW q endstream endobj 51 0 obj 58 endobj 52 0 obj << /Type /Mask /S /Luminosity /G 50 0 R >> endobj 15 0 obj << /Type /ExtGState /SMask 52 0 R /ca 1 /CA 1 /AIS false >> endobj 17 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -1.024253 0.100927 0.0784498 0.796144 -1.9241 5.980906 ] /Shading << /ShadingType 2 /ColorSpace /DeviceRGB /Coords [ -22.824219 28.335938 -22.113281 22.660156 ] /Domain [ 0 1 ] /Function 36 0 R /Extend [ true true ] >> >> endobj 53 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -1.024253 0.100927 0.0784498 0.796144 -1.9241 5.980906 ] /Shading << /ShadingType 2 /ColorSpace /DeviceGray /Coords [ -22.824219 28.335938 -22.113281 22.660156 ] /Domain [ 0 1 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 54 0 obj << /Length 55 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p53 53 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/05V(N2P0P031#$VQ*WW  endstream endobj 55 0 obj 58 endobj 56 0 obj << /Type /Mask /S /Luminosity /G 54 0 R >> endobj 18 0 obj << /Type /ExtGState /SMask 56 0 R /ca 1 /CA 1 /AIS false >> endobj 20 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.734299 0.687186 0.534161 -0.570746 22.106536 43.927257 ] /Shading << /ShadingType 2 /ColorSpace /DeviceRGB /Coords [ -21.660156 15.648438 -21.960938 21.335938 ] /Domain [ 0 1 ] /Function 36 0 R /Extend [ true true ] >> >> endobj 57 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.734299 0.687186 0.534161 -0.570746 22.106536 43.927257 ] /Shading << /ShadingType 2 /ColorSpace /DeviceGray /Coords [ -21.660156 15.648438 -21.960938 21.335938 ] /Domain [ 0 1 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 58 0 obj << /Length 59 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p57 57 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/05W(N2P0P031#$VQ*WW M endstream endobj 59 0 obj 58 endobj 60 0 obj << /Type /Mask /S /Luminosity /G 58 0 R >> endobj 21 0 obj << /Type /ExtGState /SMask 60 0 R /ca 1 /CA 1 /AIS false >> endobj 23 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.645021 -0.473232 0.473232 -0.645021 11.116716 30.957798 ] /Shading << /ShadingType 3 /ColorSpace /DeviceRGB /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 36 0 R /Extend [ true true ] >> >> endobj 61 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.645021 -0.473232 0.473232 -0.645021 11.116716 30.957798 ] /Shading << /ShadingType 3 /ColorSpace /DeviceGray /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 62 0 obj << /Length 63 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p61 61 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/03T(N2P0P031#$VQ*WW  endstream endobj 63 0 obj 58 endobj 64 0 obj << /Type /Mask /S /Luminosity /G 62 0 R >> endobj 24 0 obj << /Type /ExtGState /SMask 64 0 R /ca 1 /CA 1 /AIS false >> endobj 26 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.645021 -0.473232 0.473232 -0.645021 12.007484 41.734606 ] /Shading << /ShadingType 3 /ColorSpace /DeviceRGB /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 36 0 R /Extend [ true true ] >> >> endobj 65 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.645021 -0.473232 0.473232 -0.645021 12.007484 41.734606 ] /Shading << /ShadingType 3 /ColorSpace /DeviceGray /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 66 0 obj << /Length 67 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p65 65 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/03U(N2P0P031#$VQ*WW ) endstream endobj 67 0 obj 58 endobj 68 0 obj << /Type /Mask /S /Luminosity /G 66 0 R >> endobj 27 0 obj << /Type /ExtGState /SMask 68 0 R /ca 1 /CA 1 /AIS false >> endobj 29 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.696182 -0.510858 0.510766 -0.696305 21.468042 43.046175 ] /Shading << /ShadingType 3 /ColorSpace /DeviceRGB /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 36 0 R /Extend [ true true ] >> >> endobj 69 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.696182 -0.510858 0.510766 -0.696305 21.468042 43.046175 ] /Shading << /ShadingType 3 /ColorSpace /DeviceGray /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 70 0 obj << /Length 71 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p69 69 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/0T(N2P0P031#$VQ*WW  endstream endobj 71 0 obj 58 endobj 72 0 obj << /Type /Mask /S /Luminosity /G 70 0 R >> endobj 30 0 obj << /Type /ExtGState /SMask 72 0 R /ca 1 /CA 1 /AIS false >> endobj 34 0 obj << /Length 74 0 R /PatternType 1 /BBox [0 0 39 39] /XStep 155 /YStep 155 /TilingType 1 /PaintType 1 /Matrix [ 1 0 0 1 0 -0.599998 ] /Resources << /XObject << /x73 73 0 R >> >> >> stream /x73 Do endstream endobj 74 0 obj 11 endobj 73 0 obj << /Length 76 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /BBox [ 0 0 39 39 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources 75 0 R >> stream x+*T/6PH/VЯ0TpW OQ endstream endobj 76 0 obj 32 endobj 75 0 obj << /ExtGState << /s78 78 0 R >> /XObject << /x79 79 0 R >> >> endobj 79 0 obj << /Type /XObject /Length 166 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 39 39 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p77 77 0 R >> >> >> stream xe @ D{KAVQՂomw"!$/0Px~t(ޣk(ˋkIF'*j{Ғ}#uY+`e0+t(9h{2dV'Q4;.@1[8G[tA#;g9 endstream endobj 80 0 obj << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 1 ] /C1 [ 0.164948 ] /N 1 >> endobj 77 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.799991 0 0 -0.800009 0 39 ] /Shading << /ShadingType 3 /ColorSpace /DeviceRGB /Coords [ 15.601563 12.140625 0 15.601563 12.140625 43.527344 ] /Function 36 0 R /Extend [ true true ] >> >> endobj 81 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.799991 0 0 -0.800009 0 39 ] /Shading << /ShadingType 3 /ColorSpace /DeviceGray /Coords [ 15.601563 12.140625 0 15.601563 12.140625 43.527344 ] /Function 80 0 R /Extend [ true true ] >> >> endobj 82 0 obj << /Length 83 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 39 39 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p81 81 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/0T(N2P0P0T4@.; = endstream endobj 83 0 obj 52 endobj 84 0 obj << /Type /Mask /S /Luminosity /G 82 0 R >> endobj 78 0 obj << /Type /ExtGState /SMask 84 0 R /ca 1 /CA 1 /AIS false >> endobj 1 0 obj << /Type /Pages /Kids [ 32 0 R ] /Count 1 >> endobj 85 0 obj << /Creator (cairo 1.10.2 (http://cairographics.org)) /Producer (cairo 1.10.2 (http://cairographics.org)) >> endobj 86 0 obj << /Type /Catalog /Pages 1 0 R >> endobj xref 0 87 0000000000 65535 f 0000022377 00000 n 0000002911 00000 n 0000000015 00000 n 0000002888 00000 n 0000009025 00000 n 0000004347 00000 n 0000003899 00000 n 0000009427 00000 n 0000010669 00000 n 0000004434 00000 n 0000010756 00000 n 0000011993 00000 n 0000004959 00000 n 0000012081 00000 n 0000013290 00000 n 0000005490 00000 n 0000013378 00000 n 0000014613 00000 n 0000005981 00000 n 0000014701 00000 n 0000015940 00000 n 0000006513 00000 n 0000016028 00000 n 0000017237 00000 n 0000007045 00000 n 0000017325 00000 n 0000018534 00000 n 0000007533 00000 n 0000018622 00000 n 0000019831 00000 n 0000008022 00000 n 0000003333 00000 n 0000003546 00000 n 0000019919 00000 n 0000004287 00000 n 0000008514 00000 n 0000008613 00000 n 0000008733 00000 n 0000008873 00000 n 0000009336 00000 n 0000009777 00000 n 0000010129 00000 n 0000010582 00000 n 0000010604 00000 n 0000011104 00000 n 0000011453 00000 n 0000011906 00000 n 0000011928 00000 n 0000012415 00000 n 0000012750 00000 n 0000013203 00000 n 0000013225 00000 n 0000013725 00000 n 0000014073 00000 n 0000014526 00000 n 0000014548 00000 n 0000015050 00000 n 0000015400 00000 n 0000015853 00000 n 0000015875 00000 n 0000016362 00000 n 0000016697 00000 n 0000017150 00000 n 0000017172 00000 n 0000017659 00000 n 0000017994 00000 n 0000018447 00000 n 0000018469 00000 n 0000018956 00000 n 0000019291 00000 n 0000019744 00000 n 0000019766 00000 n 0000020189 00000 n 0000020167 00000 n 0000020484 00000 n 0000020462 00000 n 0000021158 00000 n 0000022289 00000 n 0000020577 00000 n 0000021060 00000 n 0000021463 00000 n 0000021769 00000 n 0000022202 00000 n 0000022224 00000 n 0000022443 00000 n 0000022571 00000 n trailer << /Size 87 /Root 86 0 R /Info 85 0 R >> startxref 22624 %%EOF beamer/base/art/beamericonarticle.pdf0000644000175000017500000000557012050430504017524 0ustar mohuramohura%PDF-1.3 7 0 obj << /Length 325 /Filter /FlateDecode >> stream xڝTKn s .Ug]͢]LU_3JB {]jg'kojh'$f܌wh7[Ĥg6ŵ1*sL$J*;H_k%|W rL/toeG7=>m}訣4g'n\,fޏM rN] 0_8X" ZEkn!ba!"D7X2kVp|N%fab ¬@#qhF !\)HcE}R_{{oendstream endobj 6 0 obj << /Type /Page /Contents 7 0 R /Resources 5 0 R /MediaBox [0 0 10.959 13.948] /Parent 8 0 R >> endobj 2 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 19.925 14.944] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 9 0 R /Length 15 /Filter /FlateDecode >> stream xP(endstream endobj 9 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 14.94392] /Coords [0 0.0 0 14.94392] /Function << /FunctionType 3 /Domain [0.0 14.94392] /Functions [ << /FunctionType 2 /Domain [0.0 14.94392] /C0 [0.8 0.8 0.5] /C1 [1 1 1] /N 1 >> ] /Bounds [] /Encode [0 1 ] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 4 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 1.993 1.993] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 10 0 R /Length 15 /Filter /FlateDecode >> stream xP(endstream endobj 10 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 1.99252] /Coords [0 0.0 0 1.99252] /Function << /FunctionType 3 /Domain [0.0 1.99252] /Functions [ << /FunctionType 2 /Domain [0.0 1.99252] /C0 [0.5 0.5 0] /C1 [0.8 0.8 0.8] /N 1 >> ] /Bounds [] /Encode [0 1 ] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 3 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 2.491 3.487] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 11 0 R /Length 15 /Filter /FlateDecode >> stream xP(endstream endobj 11 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 3.48691] /Coords [0 0.0 0 3.48691] /Function << /FunctionType 3 /Domain [0.0 3.48691] /Functions [ << /FunctionType 2 /Domain [0.0 3.48691] /C0 [0.25 0.75 0.25] /C1 [0.75 0.25 0.25] /N 1 >> << /FunctionType 2 /Domain [0.0 3.48691] /C0 [0.75 0.25 0.25] /C1 [0.25 0.25 0.75] /N 1 >> ] /Bounds [ 1.49438] /Encode [0 1 0 1] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 5 0 obj << /XObject << /Fm2 2 0 R /Fm4 4 0 R /Fm3 3 0 R >> /ProcSet [ /PDF ] >> endobj 8 0 obj << /Type /Pages /Count 1 /Kids [6 0 R] >> endobj 12 0 obj << /Type /Catalog /Pages 8 0 R >> endobj 13 0 obj << /Producer (pdfTeX-0.14h) /Creator (TeX) /CreationDate (D:20031016203400) >> endobj xref 0 14 0000000001 65535 f 0000000000 00000 f 0000000522 00000 n 0000001624 00000 n 0000001073 00000 n 0000002287 00000 n 0000000412 00000 n 0000000009 00000 n 0000002374 00000 n 0000000722 00000 n 0000001272 00000 n 0000001823 00000 n 0000002431 00000 n 0000002481 00000 n trailer << /Size 14 /Root 12 0 R /Info 13 0 R >> startxref 2576 %%EOF beamer/base/art/beamericononline.eps0000644000175000017500000014510012050430504017375 0ustar mohuramohura%!PS-Adobe-3.0 EPSF-3.0 %%Creator: cairo 1.10.2 (http://cairographics.org) %%CreationDate: Tue Jan 17 16:13:55 2012 %%Pages: 1 %%BoundingBox: 0 -1 39 39 %%DocumentData: Clean7Bit %%LanguageLevel: 3 %%EndComments %%BeginProlog /cairo_eps_state save def /dict_count countdictstack def /op_count count 1 sub def userdict begin /q { gsave } bind def /Q { grestore } bind def /cm { 6 array astore concat } bind def /w { setlinewidth } bind def /J { setlinecap } bind def /j { setlinejoin } bind def /M { setmiterlimit } bind def /d { setdash } bind def /m { moveto } bind def /l { lineto } bind def /c { curveto } bind def /h { closepath } bind def /re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto 0 exch rlineto 0 rlineto closepath } bind def /S { stroke } bind def /f { fill } bind def /f* { eofill } bind def /n { newpath } bind def /W { clip } bind def /W* { eoclip } bind def /BT { } bind def /ET { } bind def /pdfmark where { pop globaldict /?pdfmark /exec load put } { globaldict begin /?pdfmark /pop load def /pdfmark /cleartomark load def end } ifelse /BDC { mark 3 1 roll /BDC pdfmark } bind def /EMC { mark /EMC pdfmark } bind def /cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def /Tj { show currentpoint cairo_store_point } bind def /TJ { { dup type /stringtype eq { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse } forall currentpoint cairo_store_point } bind def /cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def /Tf { pop /cairo_font exch def /cairo_font_matrix where { pop cairo_selectfont } if } bind def /Td { matrix translate cairo_font_matrix matrix concatmatrix dup /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def /Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def /g { setgray } bind def /rg { setrgbcolor } bind def /d1 { setcachedevice } bind def %%EndProlog %%Page: 1 1 %%BeginPageSetup %%PageBoundingBox: 0 -1 39 39 %%EndPageSetup q 0 -1 39 40 rectclip q 0 38.4 39 -39 re W n /CairoFunction << /FunctionType 3 /Domain [ 0 1 ] /Functions [ << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 0.827451 0.913725 1 ] /C1 [ 0.827451 0.913725 1 ] /N 1 >> << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 0.827451 0.913725 1 ] /C1 [ 0.25098 0.454902 0.682353 ] /N 1 >> << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 0.25098 0.454902 0.682353 ] /C1 [ 0.211765 0.282353 0.423529 ] /N 1 >> ] /Bounds [ 0.155172 0.75 ] /Encode [ 1 1 3 { pop 0 1 } for ] >> def << /PatternType 2 /Shading << /ShadingType 3 /ColorSpace /DeviceRGB /Coords [ 18.246094 15.714844 0 18.246094 15.714844 29.992188 ] /Function CairoFunction /Extend [ true true ] >> >> [ 0.799991 0 0 -0.800009 0 38.400002 ] makepattern setpattern 35.168 19.611 m 35.168 11.045 28.223 4.099 19.656 4.099 c 11.09 4.099 4.145 11.045 4.145 19.611 c 4.145 28.177 11.09 35.123 19.656 35.123 c 28.223 35.123 35.168 28.177 35.168 19.611 c h 35.168 19.611 m f 0.223529 0.223529 0.423529 rg 0.8 w 0 J 0 j [] 0.0 d 4 M q 1 0 0 -1 0 38.400002 cm 35.168 18.789 m 35.168 27.355 28.223 34.301 19.656 34.301 c 11.09 34.301 4.145 27.355 4.145 18.789 c 4.145 10.223 11.09 3.277 19.656 3.277 c 28.223 3.277 35.168 10.223 35.168 18.789 c h 35.168 18.789 m S Q Q q 0 38.4 39 -39 re W n q 0 38.4 38 -38 re W n % Fallback Image: x=0, y=0, w=39, h=39 res=300dpi size=79707 [ 0.24 0 0 0.24 0 -0.719998 ] concat /DeviceRGB setcolorspace 8 dict dup begin /ImageType 1 def /Width 163 def /Height 163 def /BitsPerComponent 8 def /Decode [ 0 1 0 1 0 1 ] def /DataSource currentfile /ASCII85Decode filter /LZWDecode filter def /Interpolate false def /ImageMatrix [ 1 0 0 -1 0 163 ] def end image J3Vsg3$]7K#D>EP:q1$o*=mro@So+\<\5,H7Uo<*jE<[.O@Wn[3@'nb-^757;Rp>H>q_R=Al C^cenm@9:1mM9jS"!dTMT<$3[GQ$8#0$s<4ZX!SPQ1`C/m__;">raCD"#mlXAjdhbNLd&8K,UA2r(%7@*[3=l? ZoL5'5q'91l7C`Im(PEY[?B?GCH9W$RaS87@_oWg#%O;oo230%+`]')JaM:9%igBl?]rq!] ,!HFQjWh^L37p,%:+:d;SS*Vr@BAY.n9l*Ad?Za%"KNt344.#1)`+8ITI:>Z\G@\4`#-i\' -kU+apD_E,H<-\[G+r`mH,:Rj<8cBojV!L,onmOO?6*6J0:JM8FN6-AeMQD&64]PiD L6,M;]bR)Uk["?0@.N2`A'@H("FAYcFQc7_k-`t*c`Ud$[=&DB..6ocZ"PQdbZ=IDZ>AnIS Q3RClrB0ft3Q,ZD@=a!"<(PkV^J>oR=:A875Q8Xr6bL4MTrS)jhc:LReu G].%.H$4'==JdE^il9P#D3EQ?8o0ZEWN\o/#,))lQihU2;i>,l*GoEYA&RcUnJJ,PO6q4?H 6.jUO5m0o.EZeV"WU/H6p^>!mHRQD(-i?3a[/(OoPlp$&#@m18_k]?U32elQdBFeT1RU=)@ ',SB,s&odSUhCnJYDqj5DmM_iU&uJYY^B:r"3mJ6id2\1WRC(a&uu%2GRq6Alu]pVaSM)Zk \"NX.V\L%*r>OGS`Z0g>tHE1M&f$uNQ,5V:"&Q$#D]=UedN.E5b:&E:>SL-Zjnd@oV_BU'1 C"!SaRTTg2UGq_@:S4psWjrK$r6jdLsOjQMC1MKrEL+sSj7**"U6P+3lYr".%0Sa4+,[(Dg (bJ+:Or"2HAr_)jqF=qt)'bA>Mc$JsK`K($EP;bf!6#!A&;6.n.R]14'-bDK#8R>f5mm+s+ JbM8JP\I0L7oM<6m/pBlu*3(FMsQA()qj1>Rdqk$lIpV&q\JH M'6Qt`K8[`il#U<_-Su%8?Ee>+B=CU$7\N$K,"JR5RLAY)oP:T$LZT;*cp1L;E?]N6E"7\n bG(Y5nko'pf`SQOL7lHi^[ct.g9no+2g^Q'&pQ;#H(rJ@pis^!m\Ui0^9rQk_sLJ]t0,QU, tfJclI]`<"-o>8ON!K$R,.BKol'ZXOsT^P`c6.kpS'\gkVVU(.29@a<=!3YI6@+6HE:O!QB En(%=aNLp:k'#6^rG,%+Z8d3pT$gE.A$7\0neAi;+Y]+uVr7Z.V2/&nNG'uNpVe:Cb#`F.+ *iiHif+eg+`8C.o7QtHXi,VK5_BbJ6:R\JiXOj[?7$R--n%&'q0Dug;k6``WrEj<%GsBi>/1BF9h=q0LN(.(I?,5$\9cY7Zb5#A$B8K;;& [efEcNCQALN2Fi;6)WSC(NdZ"3"obeDUJuGq]M^A:R-kabYZf]LZuleWi:!XhX/)F]tQ(2L!j0+l.;LC45(o WL&*99(pKGd>U4aB(`;>FkB3&\HgnmdXJGTk[u`d38utN;BP1K@lk8@B`0.@%\8<3jkC]fJ fR6L+pW=Rokkj8-o@0`iXYLnMg,"B]RP6=<]L;5>kb\F7CHX'03JCSUDo3<;0?+&Q+W-W4lu6gs_6P9Q Y_X%>,DV(p=e3N>e@^7QVMK$00X!%FWV&`[L`oMM":\BB_N8C#&XXUBprX(uE+B/,oI9oE9 em.A+tI`<&k.Ldk!n]S%ACc^_ml-D_3d_0;'HssGa'mK?r%,lLbVB?mhl4HG`1?H,/lO`f& OP1$,M;:_"&-^K#FA>lTsMHNj]a4Wp>`[!F^!eJ`-Y!+rZ$h(JknK:^ZN$ljpop(i'K8DY! 8B(@]--&qP-8!@en9oMWL";K,eUT_K0S?rCD+;UAG\OAHa48f'ci(a6P/7`ZRhibrH*'Z#M D5t2\E5]R3:\Ag?<+_DZEiYq1Q)PIZ"mq`nn#Sft%Qsg3!$D\R`!r(XR'Z$FQiCk-Iri3d1 pkdAmTgTcX<#L5W'EOF/09Qf2//Vd'%=p?._oPRuNXT=8&Ri[!@FY0`ckkYi)I(;[![Y9M,*L_[_(%j=o'6! t-F)":r`(ar?&cn$4mJer=6!6nso/s%,?J/]Zl';=J(6*_P&O;Dg:(G%]83JNk.EbRfog*7;\A&\8e;&/8Q3(PgKV+eTi!C`2B`)1g'JiKWpE1_eo *#mL;A`XrNYdMltl)_C+in?*[\$E9^($\8Eq!Mp35UCCY)%tR:4!Cl,N71K?e%oPml_!D_C NXgUs(kDMu@@.Spg_:or%`(1D!6buT=:(Xn&'Z:hK;_4HmcEkH&OO&f!Vd?p6l/3g'-QoX5 r]CJq@hfd&)fbdiA_Vs3Yk#Q&tr>D;RRJ(\/\qQ*.dJkU$!Bqo*$8pH`cqITW8jDS.:*D$) $DpTU63T8diH>(/P\d::)'.IN&=N).D\G_1in;jqs9r(r<^'@?3/$qHVFR(QhcT&7B).>98iKt<&C`4Io*+A1N!N$kl`# (1C(P)o-+c(SUckJcj)dr(H_12m.p(^u(%Y7@]JE@QqO;,MdL(at46+.hcL`:p/(r_2K!-:`/.:'d8YO@8n*f-l$js:PI. 5JQs%#\/:pB*J'FoJ`%CH[N4hp*RR\(Tn"&_8/bpg*s'h\:kETIr*DZY?r'*uMj+gthY"^c $Xoqo_#P2.U(>(5,G@LC_akRdHjnss4eY:I2"2A+8?p!OraD$0_8mRharS=,*+@P?+i57NX ;g-L)F:qT;&UE?5S[^b&4$F5:W=!A[Q9$>'aBL\_O?s&3"pjZMLeGYJQm QT.iA)&iBGCPK(dWTg_8I)5Bm2kG'nL`NThNF65Sg&e7,aLJ!IAls:`09K1uVm\iPHKVa<' <3*+A7Q_878PQ[:V`BYi^I'%.I;P/hFF%q/GYJQ`[TdMZ,l)55#qpT,86`ZG3p*gG"`'15L QN"Ru6&trDF=,gR$Tk[Fi(h'Kd G)@4>Jf:?72^-oS_::o\00$6=o-)0hn;b!g#gFlcVh%MY6,4>RXrUrt*TrA+U?E\MjrVA0* MMI6_:0Lal?Qh#)r]'`+hAZ0iYpdq*T<5$Tu\&ON#KZu)2'7P[pg+cR[WtI-ch]umV3Jf/e [,R'B)+jiEd:.O;Je<(/8Z^To'dTE#@QB(2[q(X^bF@U_U-q(86m2(\ej`oGM)9*22d=J]o 2NiZAu4*s%6<@H8"$8/Vd<(4c`*6'-P(ddk5u%C>C8@=0#FRsne;*.dSt!QZ?C-5q.R2?C4 7To!C?NY7TJ6p[1RJRfXl9\BHCBnNL_.FS_+.56!P(&(F_Xl(;Y)1Tnt=oC`(!tO*Z/6RX>m%L`8Wdeq%m8iNsU+mM3!n77! Xa+da68YT3c8)WB$b6*7/Uo*s'"p=eHhP [N,D8)*tPK@8Om.8B'8:)PMa$J^J6j(`OXS2^-k.!H8q8diSV;)PP.l+lj]\p*-sg*ZBHVJ WAOeAdon+(SL%,_3PKQ()ML;$m@A1]:HL+1'\rC'0pdN_)M]Ce.^cG&0YQo+Z(%oa:WuHOP sLWZ-j>%+r(@2'L>b:Q,XTK?4i)1NPTUV[nii0?s(89'P+Q`_(6?F3u+G]'VTafP[G@PX;p 2F).C/oeuccj>T#i=(Jj00&*=a\Z5l6H*P3'(_7gq`oGbX!+$mIY@ItM/:`1F`*S.)/JZp. ^RW>+s2->+(;4Mr+I1"@NT$c*C9@mJbBkqOrQE>'D]P= JTr'+_AlfK*'r@%6-%1-ain#2+$@Ob22iV>\[#Ea=dbVF@@eFSg))cE)KqN_@H8<"]H.*;; 0gJaiS5E(g)erB+l_]-TpLA!F:.cd#@P[fJ9B8tF:<^Y$R#WgJFF6rRL[.t)1\(a_,n1@27 c%f$ir*fi5?:7-51a/':!/CZd'<$M@H7G#f,40+Hd387L:)WJm6S=!A"p.HKLo*6K%bP_*: 7PDDqcX^Htf4!DF3DH)1?(']De'_0d).WYq8&(_K@W[[\2#Q5F&%*'!.$iLS)uOrj_I*Wbs SJ_hJnWZPKY+(<#,_=tj@pR'q2QiWgS6'/1!Zl431_de9ViN(ogT<^0i$KarUE(*Pq9jG:f4ke [%QfRi!Z-p7Z5PZ5g^DM-KNo\bT@DmMP9e^=sHGoRM'`;&[PRP+]K>*-m+pB+2:J(fjhg8Ndr.;bD$LFhVW26qS?2G-S]9r?]\`+tS)O55HTtes8*7AWl$;`( :WGs/cLH?C*KPn@mAQUZZdT9D>")?1:G#aEkB$HZg3>:iY/]e8r7pjg]Y8kCNVq]$\/k&$$ bcDrqDfT-f,MEsk'3Mr4+_Ra/`G::*_3d;I\4hur<=;JWV1?TLIpEOT'+Mt`1;+JG)j="UUVZ'BW]N8JiWWfMM jqd[mD;@A9j'P7#De*"6B+BWirg#h2Y+K4."iNPu5jit0-t$KAT#-jg( @DHiM[D$*(#FHa@iAtlOD5bi@BOX?B,TEM*s^O0 "s<$=p4"*\WVZc>X`=3p+/UKaEtp"[W)8lCM)ncW`2QjM'8;jI8sQ8f!)=@63CI>GB5.50+ 83CRG9>uChLD%CJc9X1#P#l[T>rP0FMJ-Dr8H5ISRd%*(RaK7eT4MWbQ5h'9Z4D+W82AMD5]Si,G iRit4-s'/I_%9M2=tYcDB!d)JeX,hRF2#QmX^+j?ZAdAE-Y&O7P"7-Lp1O^au^5RCn%ng'& :_7X\+pWgsgD#6X,Gb-:^,Y8`hW@D!`jS[Nr=3HSu""f\.gQ0)STA._6RMF&!=#m="j-+TC`gU?4Qe9):U`GjVQq9!t)k;Ct8*bY(lI iV%QrE5\VM;na+/1"@'+)#*JBUgH4Qu=#baj`coVDY)VQH!@[=JQ*tN,fVe$,T/s`ec6NRq -eTC_5]:W\]dVk^=GI`RKMMNRO8>k=Npuu!bUf[W&)Ap<12H>.LA@6",:Pa7-H oG,'Y<0"O8Do+J9!3La.YZ4;7jaJI(3S4+n/s*.mB[&B!.I&!r+]@?`QEU[`bhd5ik4G`NS noNE[eFu)UljATQMA?#*l2MXQX*@&P0YHe'ga0WB:is]U]+_!-[^oA3G91JRTE,>a=dj=@M` YW>nY7b/W$]Z)8tJd'C];,#15^@b7\:nJm#:4J;+WQQp(bk]KQS:4X?s@"/()Q7>+p:0 /DBckm$3>*!>KFf&K9Tc&n\?nLW8njaCimR/,2*93_AYd\FH&#d3_$pD*Fj>7Nq(=Sa,oaJ "4[f5[IHOsd2,&Xk_ITKlo#)&oGHUnFUI)Z2MO3E*MVb1%Uf\l`Xmr07!s%_iK-&s;\U&.J 3sZpS4^aCJXA*pC5>/T1rKs))Gf!uKcp(>J]V2fl#$O.<1u2f`7ej<=K>0\_)LN_Q3KX&97 phk=!p=B9N/3pVFI5H64d<4TbJ]+:k0)ZLcYiM\601_NDAjUUJO!L-%]Yi6u6-qXtYTWSUDjsK5X S$(4@]HnH%?WlcHYS2[_fE`0#b16SBJoIoMg"6lMJ4<97!&KJ9KG29063pNXIY;*f*Ch75* HrSA@e'(SLYW:OiWMN('c8GLGe"^0BQUbh]J%9NK0^h4_PTd+/A4OjQr>Lklj&VG7 L)QW^].rB_!*0Lj"b<2&)%7Koe[A6c0$f5KBGn+61s2.ae6q#Pe->A+JX=ngSP`PV4"i(g; kq[2B0>G7oMs8W*&4*/']k$`mnV$Bj$j$P9"BKZoi>@W!P"c2]B)%g'(?XNi07;6Rr:DrB< e$psW?S+%kt"*D&5i1Q[ZJqa]Z^igQJYX/WSl4aIPp`'[?QHpKcd96!s*J:Sa&4-Y"#sAbO `^&8p__c=jkF=41E8VRfLscbfi,%Tl1`k\=FUoY$6'V`;(S`O"$FmYpKqQa)#?C#I;%b;^, 15:a*9ms/\pThOi#h!>-OrXY3JX"%N\T==]En6RA,,cBRi'-UF\k$b!4*MPA4K+>]HBX`1X \Rm8d9\qV3sN:^cHdVC((WOX59XbZZa0"RE8k+E%hZ`QGZcY1fs@EBF-u?;8Kfk-UH*_&ci Cb#m>Wi=c2Bd`-V%b,B4QmK0_@tAUpA\P[!0`U)AdtPD_ *Q/[L;31OMK(hS*\]<,<+%0Xf_XnPW'I*DrUKE2+rT5"$5dTZFmnDuX'nBp\#+G[/"!p-H? hq@p'&;tL!rdKR_Ut.(ZK_ UE:@]LX^0*!m,aQ989]5n45EiG.B&E1&C&fEI7@\UA=So@m<0PuM_?j=7L#/F]&W-!cEDhj -\#3^:9>RgtjFhFcuQO$^u3,jW1FpI?W4MYqr4+s/ocj*0'#?rK;)F"sF<2^G"#;C@Wb:a+ 9KSQe^LT6>hT[=",J;1[g,e/3-fR5@q5mNL-S60Z]cqB)OW4iVM)A>o\.KZ[1DE^s<^16=i KBKt9(agL2/$hj"!?AZamKDjOJ`nfk\0:uV4f?I:"+WuHTNFEh5R_=L7h*A@1U1J(*.]K*KYc+4,(M63O2OH1RaE((u$=C*f)Lt.7efU#^V 5uEJL!A#Dcgn^ii!lE/qGC";jph*%M3Obls7^#2rIA;`fplH\][j[_Qe`kY-^#W5@i4_Y`C :6npm*_8@ee_aC#s!M(?`9e9/:0X.F<#Yu@p++hj0!\4tda>ebG++o)_LBr"?%$(f:G6>?: K\/,684Wks7YOrK"h8,u\8[4D,DRCRWXriufQ7=rKSI!TLKN(34)`(\E"sL=RlG^RTt\.k> R!H2"it5/n6#rcZ5Hu=k/DrF=kWX[tO3WQ>L)=?RO>hf:8ecMQ"\;UI!+gnH E=E?G`@Gl8k\u7"V$25PU<%-S]E^%(DTVs",&'BR^jVIRF""WcXiO[&!QR;7aZ[FPS@Qk(W hkJbe]S89QFgjdJ8>H]I0T>Jb=QZlS'IS*2)qPOLseO6'0$[SLkk29#DddWG^RMmKSR'l#I )\_XRHIa+bu$]Kns7E#XF'q?o0!3K65Rp45GM`5_XG5"5$TTGWLO?>+^mP-V.#7cp%\A9*K !?#/G14BZ6s,Gn,XAMc$$>FP&r+fuP"&JTL(iPNU371GEgA3_Bjm-rJ')*J3%C\p,7si&:] #*eSELL?N\RPX*9.7>+cBKMY)@5YHd?=G9"?L'V:DY]NZ+D?Ys6Q2#%rpueCIaG-'_"n69I :i&C1D7amf#7,+nXJ4(g_5Y>SLR^m`ZA^OB:^)G&"]/MLnR)LY@A@41L%oLI_:071DO0*dL ](Z4/HqI4@%E/-\=g\Ti^,V_dNelYUelP&]XWd&ILs;E#B5!L&9ruaQcmHo#KYsOaE4EfL6 VT\*b0C!Mn]LA@0X5c"DC_g5WT%0>_?ER"fO200Ng5G=#>.KK:#QJ5oe<_8t_<1!jFfk:eQ h4/r*iQ]qAcW-$t?f.55;b_bDr)4Ya[A1/50<80dF'acf89%%9FW!SB,[^`EPR5KLW"\rqQ A%6m'bBa0Z:K:k7._UO8F7g*d3"j==X0O0@"9a-&ZULbj.=QkKI:*U@n#),b#fP8`CpBKFJ =K$0jgmNpTLqAV:#>n8%,2K]SE()a(eHGS)J80cd>_\NR#+/Gk86c@$EQ[MbKpXRt+BS]l5)!AmM+Y#d#Z&lKKK2<$hDh CGpbF\a9nL&&"X%%SLj+qG`5N:3KE+`#q4Kb(0\H&[JS6W;pdtR0o$\^S)q9'i@lk6"aXB\O&5<9]7"n0/L"L2EBMsR72?]+A#"An'84a;k 1'UQL*5GB0SYHCS[oJN+1\bfdK-38.?nrb*>30HT5PGUQR]DF3u5[i!8s,ScO*OT\khJIL[rK>l ])Jn90T.D[0Bl..DS<^iP::NJFTPKpZA*!(YY>6(JiV"Me?r\2K"R>6?QHKp.UPE%hD;=[V +S"5lt0840FK2h\,W_SRL ?Te:ODL7?]4'[O]\A$:*5i&H C;a@q[Mh=*#EGXhpSU]oCh"JAs'i(+$=D$4NSL;5Ns:gI0oR0$2G"[G6T+D6;95R!@;jU/W cBq'rE;h]'`9c/_G.!?/Tc;!4ih];:F-<]H5=p1K9-Qt%P"/Ld0:#DU>:!lbdR35"Rc$=15U6HI/:u58Rs8TKYY#)Hd09ZP"rK^]#[o@Bf<4(b"riVX1I4h[k 6??.*0j\3TN7S1o`i*$#/p42?s!U=Cet#=4;_ehTP5\<@Qa(57DWeL!H$g3M?iu:L\PYiBP Z7dmD_PgP>;!bHU"3.!R#AGR)l@#B5(r"uG:1I"pR%#K4 rD]L[g`ki7bDLR@?284+4WmKNAK"L)27Qq5iRI=j.0mh+Tm4ICeU*"i^2*`p5&i*GE#fi. Y&%D?lqeaU(e]Gd-%kPI2@T!WrlchGoEVlQ!an0-TrnL=4+nGM"/nhGmG!?-.g>-$hX7'@p Gms-#b;N7m@JE4R#$G,5o"UPtZm&k&`k'B9;50Qr@k[?A>[m(!pjf*pB>Al,BJ*eg B_*(i=0pM/MO,L9Pe*phKIPL^Y,W4Nt$PB(SB3AN]\Z`]!W/B`A>%FcX=e&(l>LgWJL,!,r _U#=*Wj\8qn[:PYl^#7u2iE-VRhl:b'?A)KD$OBkR7>J8BdK31SH\5K0%;2,?r"R'0I!)!L 9'6-9-KpZ]Actihe=,+4QEHa8EL`cdr:]e^(Kq\AJJR".j- bJsQ5YqY51'B"-p>B*VQ.uJO8VPV["kKCOk6Zk#4lb^>D.m@2@F"$9A-AQ+##2"j#\NJLG- 73GHIo;>W*fgcEgJM&BN'MWFBQ*set#6DclLUrA7=(XAHG.55pLjgF`pT8\H-VhDf4KZicdi$')4* eO_jJfl=kb?rP&CWUde-l)o15UM9f2"kE9,Yokd&VU@k1*Mr1PY05m4Q(;-J.H\q[!n1@O"jrA:gM:PZ>"eWl@qB>g#ekR>I2U2Ls"GXBD\"C[K46J%4>lg3\ \7s)?KC%eojHYhaLfgQ'n_C;AMG5MGP7qcVH`Zom5!qh<&Nn9e>S[OUs%\QQ!mlOF8mo\+E$>:t]K?-N%X3?HE]'@iW2H8=7$-9H)(J5.e. l^5iMdY_3q<[IAV]gTVS.%!aTlM85_>rRq)G2c).gIJ@".+O5a'X);H's1D,6%3oM1(Xe9M >9cj4K'-n;gO[uGZGgubd31DP&U>?5aA$NYY#(NaX7abOARPKN'ta;1_YHpfM@;*3Aqt:";le8%RJ`j2Njl8@1L B,4HUo2;I#V:aifP!GTMGRL,oVB5jg$-"6fkXQHep35aB_'>VQeDJB1'C6ST-T2eAZ77@'] o**Wo+O`ESt`SgYg(W6nH@$&K%&5a9t@7Xjiaa"q,)!$Qb8WV,trfXCXTe4/%#gN:9&+SW-=lXM>F"iN3W*#T 4Zh7CpU"Lc?pP4)5_GGk)%+.*%bm=H'nlqjC0&uJSo+k"Y"t>c8,2(=Ui;pE_.#nWD$`jAH @=#P@`F_9,Ar@T'3b'WNnuT0&*u+OJQ*Y6'WddcLee[fg]Ta7+mYT&EV!s:74o"OuJRO5fc H^_6CjP5d3?a#=6^e?nN).IV]gYA?=3])i#TjHlj`hoR3@#3Vn3B8a2NVMaX4=/8P: 6S80(-@F2;M#XTBk+:Z2DU-D"Agn1t@>@,u0Qc8Kb+:&(*OsH(iR&3*1"W<=UTu-XA/J"[c Z9FO_f_ecD-#g^eQ5f@)1_BnYg5CtZM/YNhL!]ISO7VlD5`gZhKL6FX'aeC^1bf_4-"\Umf+i.'ZRlEa@1MZ3=oN.V-i'dMpbfHu]Q^777pboPrB@9S`qeD>)l IEHDB4MoTRE:W;=nZ\VRAg@+>hT3J[qa;Dac ?l5C(=B*WuS1IJC=)2s93T;G::_dJfJ_5Ktb:rjmd#[S)en14i2D@aWmUM>b!T6'La T+5Y6)Z`sClOS*4XUSf:bRD+5n613-&7T+)[)g\'12mY\M1fc_T7*>@6co3E2"Al5ZJ=]W% CVL\f_u&NXWcE=baXD"Mh]liqP`pZ%*rbjNEscOBmic[Q=`[hg<[l?TY !nobGk^GGAiW]Cf-,'sRCVW,]0]@A`VY>KM//2-MK]U01fj@%2l,IJ`'4\+LiO_ GXi4[L`lu-5S/QETEl^?)[;Eg&&Ur0#N;=O"5qHPJgbLN@I>.l5u]]"PVbN(oMQ+mE=S]'4 q;CcP!h9e0nW.k%,srhL/B-KK+O(\!J!Xtn<=s4CfkBdQK@MDqT.<:r2E/k_%>[.L g,VFoJ\dnjA?'6@W/4MVX)T/G&Ng]l-kN(,lY4ceZ'i:qG;/7*SP^AIuN/!q?=IlqXG!*6u o,`&@8d% D7c#ZM6Ur[ES]:`86U;+$Q&*Da@M)*u(/L>ap#+uNXC[S= Hh'dB[k-:L'<)rm<0NZlb3#8l\H3YZh:Tl^ft.%@KHoc+('+:SCFM?grl2onhN(kWBWZatW _,iRo)L2bEW5u]=i&=aDdj.@.hXPP<$?59;]9FaCS$48h!.)JMp'O`s^MK#F6"\;^Z_/MVr lX$#KN1h#1[5\H.CdjPm+;Q1MEX`W(683B/*sBM`qbr'" b$^Uo\S'1k8(I/X*7P7ergZ]cmsqAGS#M1QOWpr GE24VW-md!/gIH?Nrc%5L@C*5@\>1SE=%RmqJRPZbq_oM<"el=0,.UW$@?kFXf^a%$A%8<" c!Pm"`;4uWM#"O0d\OWd*Wk$0Q?!%a+\]hdN%$^F-"/93X=g+gjBE[N8k1J$(aP%eLe#Eo[Qm`M&eB@3?Su[$t2(#d#_h;]G!iK'-M%Jj9.`$$panJ5s[.On @oA]hIfOJ%*\/KnC%h!km`1k%Da:n+KQ2MBGCg2)rZquTuItDXrO..)aV[Y_(lgWE!uau#, &UAJ8bhr$FG>4#N4SS+X.ZK,;+fmBd4N9+jq<\\/_3J)^337JQW=m)55.idGQ"\p_j1Z*C8$oak@comR\W7rR&SDn]9A0O>QLo rLq.159R"A92%Rjmj^&n"NC_'03$jqNA_It<7jiP$/&U)X2m)Bls+@0@=DQ#,&%0@#, )]k`VV"%)C(!dd'Lpef6I9(L_K9TthZL]Gn]2)BlI."N#hc%MhI\(-o;=iEF6P:tN#lk#;4 6&R;0k$5DHh-c+Cu@G$.IcjrE%(t0>qJP$YCN#\O=)Zf(<+gW8a[N;-")klU8ZX+L-^)mB= *$OkjELSlFp)1]i2hB0pU"CF)OrU3a3HLHc'9`=CSfbe@<#%G9JX@Ecp).;W+&fHe1L_F@- 6D]/*n/%KV(`ssc5pD?)WB`nPLLBlW#btU)BmrQJY&Z65Z,AC$PPN8Tg^/H*e2t1UnD>.oQ$r3n7g^U #I/iO<#M/@G`4/guP0`:H#9p5fs[)E;)(i#F2a[RsDF:>uJ#ls<,MVdaIbs`-(.@(Dm&DdYBhA&:p%7*Qo^g9G0c4Ig"(#aZ]Tjei ^X;6AA)W=F-+eT)@`Y-(;$)%6./M7MGp)LMHJ&I?\JN+F@H4G&")55Ct+l43TefIT[*C.hT ,fmD;fW[@hq(#bN#;AL:=b/I<;(:BqI@2Kdn!Zj3-` .>6l&c":-M,Epd=/!crY`[F% :))0`Q>?1]]qFm""7m3cLR5i`_0+M&3LW"`XHM;X*u+]AfV:hF:@5H5QLiuTmqLlTG9,K'qopl@/:MpEX0CO&0Qc7JE\Z$iYOn&)41Ak!osm-r"JmV %Y2V/JJ]D9fH*ZY*gd]a5sQ3ZTQ(VXp].2d!>#uSU(b@j*$tA"@7c+Q;Ad6o'k*1DiEdC1d `'&SL#L\'@G;pRfH'<`*B)Cg1X7%ThZkSO( :jWa$6>?!C-N>Ia2g:goEOD!..)O6hu6%Yo7m*C:Lq?4`Ba12D-BnWC6Q6'O\?Fm]V<&/Tl "&>=+LT[FNdSWf5%@$FfY18G+>`i($>'gR?\+]4F(:'cqX#r-$>6'N&aAf6.f(4hngTkkU^ WXRi9#b[%bYnRj[2AWieZIGHXgE$j%l43o1(ZD53J`%TcdN-0f*$NTK![\\bL(s^6&RfVlJ U/::4r==='OcY7BHeG,hAj@:)*uUb3)PCgf&T-L`A?-ea93OBIN%2(;'FrZ+lqZ776GWl_t 1\]0H[!.QtSe\D$&c>U%0;UA04k>MR>C;[67P//Q:NT[&g1EeJM%2Cg(^35m4Qa" Y(@&_"r4s8(.*HbTo]qf7M9,d(;Pk7_!M_"";!jdZItBIi1:ILYR\c/%j9X=Tj=,q!Zo2.[ %WEs6,X*qn.brc'#B)3q9=PC`*X\-'g[niW^mmcjq`N<*DT!CE&\khGT).f4X&Z!)k4CsL) V;r!b(.,YULYm^)i@Ze$4T-60t,mp-XRi]Q'3<%#YO%C$%SBR5esV_( _i[$8jW!lSD50;FNNK2).>p?\^VU%fGpSe)$.qs!L=`H$6:`e*C4cc6.aM8fRQ9C(a6%&iI l^bbT8o&*[-I]@pg7P`Tq7i*fN-$X?*Qdl%l,qU'KLU1M+k`H(Q.a)4.MI6TX'2o;g:?$;J!)M%6tU9E+IEZ_?j^3'$/kdu^g9>DXcrGj.NEg1!@-M' +9b$2a5Fd$=0e@^2J]"&cZHgVo90Gqp>B-;/LDa_s;p:$8=[ki$\K?h7F-fs^0nZ5`7E4+6Q^HSJaNH6_ 7)hL%&Imtq!(R`KG3.TK*35+bNFd\ue],B`FlDEX@]\#T\>ojB[aMrr4-HJ!MH)UB_YI9 8b)n[?*GE>'AGA5ps,HPRF@q[13@bQ:(GL\4t,X9S/dq1A!7gIE+;TOb[!E2fYX$pp-tn^a O%_i)418-6'6FF0eW;qWF:?t/2-c+b@t=0=Hn,6PRn42kh8r=@`^#5MZfDI!sKmZ,SZ-SOA IG?+[E(7$D`2M.Zr[h1)1/7J6"04iIJ4)M$%HS4;)51(/Yn/;)2>f,Y:`XM5/^R+:]j5G90 8ZoR@uS1),KaRc_/r+p`goOsH(iJ=o)`j4R<[%jacb6'^UnfQj&YWUP,'8%H3OScquKEYV% uaB'5a.:d$5Z\]`')5Ns4B:%hMKSq&[H&Rb#k1S[SSgI?-AXg`*&p]mWq;u9.kFo&"*lmgL *mCP0P&Hqkid>YcW_/"`T#MdCYF`o4mo?Eg/R5&Nl7H(:X@jbWZE3@af!_^HMWS]G7G@%=S gD4MGS\;^rkPaS.h9M&Chk)7'*Z4^bVK[V36sDiqa/e;/R)3*2C/'H1q'NZIR@JjgkqKU?`If`Vf-cNsKFi4Dtn[o=^2ph"e[&W*K1R_]_&g&*:$[4r-FtZqA-<33G ih:h1RP6DT8^$cAB32%YK3,YUskj7uM;P@`,G8X:Urr_O!>nI?Rp@r^j^*tfo]UhMkhH=WE j[$)fXZ?Z4(OlbAu<6@X,(/c!IU$d=MB;tHI*llC.Eunn$OE)*b+_YJXjG?uNO/0mF7hm@M pi`$Z_;.?skm?<9Shs%!8=i:b^Vq/tR@D58#8-0IT6/"q0d!cC?V[FfToi0=k3;/?Rtn#^H IjJNc!6W9a'W'E4_i6lf1SuJH<6#Fi40Z4$L#)T$dmpCff!%7_&;rn&B-A_F!+JN-V6p>SA NYT=Bft$LsFcB+[PS(m5;u9[J)IoFuK)9Gi)g;2rSn O2jEt'To`_QB/I=f8/4*`m(4b="$7$2'csdAL#X&I!L/8e3LK(l^e`+%9:9&&PP)#U*M) L&fe_P=@rurTZ/RR0@ *]epaCgMFjtn>/L)tucHOn&>5)8(q)C(2e%)K_B*8@&1K@/'W6&ITkTYh^YdFGjlfWQSW\/ 5jQUbb94O#_;$UHK?5..`5@K&RQB;Ge9W@8aDU =r`2TW=>Q.8Hs^m%N5o8)oJ*edlM0i`R)2b@2(bUYa-=sLf+c#86Lq&p*W J0'k4g7M_gjUHaYobGY?aW RG+5D^]M9+3?B<'QSE\W'VeBLH'>aX(M<)L?9_CPf%X^NEq*,_KPQcjO(kqK8`W_`#%mn>X #-geAW+.-+Lg#Y_-q-PfZm#^JHqFMqe0bh^S-bn-:51J'.>(0A'S22tLp4Z3"@t]]_8'jrJ ]1?&p)ceVfNScGMb^80Gm[tZ5`%4/2?^P")^39p$a@u%"dj-=K%)mB1!D]!OSEjkeZ]OWgc Ye-WYm!;;N,$0.Y^3p-fZaq%e6#mA,u-<:j"5@-FjTF\@Maqm/hJ9gGda3m]Sf^'eq&\ nlV?):+k)SZ5cGU\SnAOQ9_CaaL_eS?DnYD>Bh`0Y2A:&`:$\3,=+oX`':jNrV>57o])fNF FoI5SlMqH4iddrTIDCXRH4V+]^gY_nKQ-K5Jh702TpSYBS+1s2eJ*[-F@R@&/oCgK";>I99 n^mM-N_qG'L?t+$/i0+KHO>'iWL?UnDZ:ER,5b$#7l_TTnu.<8&YL.5sjP9-ABOq'>j*R#m "3c_lbd*U.AOFiCktpq"Z!E3.$^;p,N@SnIn7-AdOY<0*ZCV)'`[8%"Y]Fo#U>>UPsI-CrA 3O..eGuri&n+qMuRLr#1ubBh9JBjQ$E(c@i9_O"lSaL*54l6O[fB+bO?J(54CP(#ejApS6R lOI&E58N_%r08pKr[8R<'g=$rjXb=cA=Z]FE)4W^@.)[+B7\T+D]l9SWimm@\j-qW5Em;V3 S7`$"h%Puohk]VjpLN^J]nF5?^#3=3hdjNJrZs3]cp4=%)ss;W*^tlQ%cY8GLETfKk^MF(J j/g`0Qn>PiNj2Pi(X>.dO'Q2Cu&O49ncF--\A:9'-TalLX;D%"4m>Z,=#oOc3YL"s@` :\8hh41C'RjLHp0?n8sGc^7$bu3B=F$0hKF`'>[:-_-tA7@$:mI49pf`6*P/1K0]`m?3[?P Kudt`EFh4VG/@Y(8DK1G<$mPT-O`&e/Rm:"&T7VF$ep%LFb*6+Ai=SE WlGN#9"Kb.Ia4Nng<-N/kP]JHoWg#>V:q?6c35jWp?;#@%ZG(JXQP*;L?(k66K4T]g2[dnd 9rh1kcbi"/o:PBJ0M48e@@[J["-bn25n.9a(Ah4pWrte51h9iWR%AK31gd850/a3J?o"^h3m3?&"/W#.SZ.J:=gu!/Kn?#7ttu+[H:j6\`s/#EWs2BR<#>I#!5uUiSATj,f&[ C^2).9UKh1aE]f8H9+[3LRLI5P_5JSO%Wt]3cBWbsUf*_t`lB$Y2lYA]j%Gb4,R+q2bVbqLS]."`PLbE)Zj8O:]2uJ\#cP?r9>=:]] g&QXiocZquFc+bN1rK2>3mKB30U3s>%(K8<2&Wtb[I+Tn/QLB)8u7*&:-+U31(L>9q(R2U_ 4HA!\<"aF`Tphb^%?\[cDL*1GhBOcf/=NsZGL1#%UaCg8f?NuU6L)=\2=E91:9,,>"#P@/A g-WTs08J5W#:ObR3l6TtA;9#H#k2AZ^i[CR]do?9X+A-P&9p]]nqOgKL8];"ctS8K>DAB'6 A52oD#6Pq>ffC!8P?[eJa#M2A@2:5ab*J4X1sED;F:SV:^ioA+CEJY"GGdj"OLHZpbIM)>s hkjd%mDKFUU.>aY&-kd-BmRiVL]D?cn;ONrn`-)Xk*jd$SPM;,Vm,4KhUr"->A[TX[PoYVU tE*.q'c!LPQoi"q"?97a#r"P=QP5l(VNjb1QJNPJ5=pbL8g1^(<5dV(.`W)!Ka4dkLo5):V >n0!;g3?cIf#B4re%@<4JQj5c*K:""fE'=?U/VGNAKg94&i*D)a;?d,>"]/Y5"DNW&=U%]C "h80"0O<0.?\XqiL+$hm=Ch]hG)'IN#Kb0=A8eeP+;D>8#/G0_=C3%M>Vj/t_73g+E,dYU5 q@IpL;7t9J9(m=@YXY`L6-N^"]`?OG6Q5oKs54q?s/5'FgTC44;kTHn @pCR8uDb<`GNB*1P'p!RND#eppNB857[3CBV^a#5CUjBPJm=$(")!+&V\gZcK:t%@=JCb&) 5B\Ep,4mge`/8tl8W]48c"H7pg:;.0N'Fa]?DKpa+o]t'?9!r`=A'7uT@J\WsmZf+QrMhJ; XK/cL*E&WI#OG+6$KD8;r(chfH,D%m:fg%Oui#VuJD`TJ;?f7CY@!2d7RK@^]fu9Ko?t0?' ?&%!0;ik#50NWugEJ9s[g1YM\fOtLL?j<9GL+mEK=tg1pBSQS4#B4tBl-$=61l(Y#LG3$Za BFDP=$b24"k[Pmou%!Ca+S\9L,_PS#[rDe>_]Tk#AAmJA,Z^@=pB4oKofo%;nFmOAinQma` ]/GfQ5ic;7l0I:[iD[m:KW0@##b8"T?d"P2-8n?3^I)"k[b?=Dn>P>__`?KtqSY-q+B=q#e>0jkuV8cm&TG3oCi=K&A6a 0L?_kAD.Kdi,EY1(i`8]V?V![L#rdJ%Ln.V%gH]bLN>#^V!5Z)'K?H$#Ja_O8O3N+"<^l8L-F2n5\(LKA0Q+loK: M%J)j=I8st<(X3]CVXB1m&6nK.^FlrmtYMP+uW+cR+15Y)Gs'F&AJT2<0!&N^j1BbEjKW$A QW)&$_5D:Fe"ZS=A&5iR>HT3`""-#0Lm^J%U@Y?@BjsWS!n4*YL:'J^U"W1VOkZ.m9E!;&. Aq4HJ,hM1UCLGnc#?YVNj9Z'ADML2sdg0Nk%8;N7=b[c0KiA81'uGXQ9SA:7KLesp+@-.o? smqm#[hf(:RVgX28Z"0)NR(l7i6WN#:bY[T2N6HTe;!`lj)-g?#! -HFP6J1-kt#XoJ6@WR7YQA/!gl.TCWGK.%%h^2Q`Y9jZolKRhq)/mC$g,_"44J?TtMZAjH0 IX7S9U_$soO']uI$_#-!X%n&5h[jX;7(0M=Sh9EQD&KeP=d(fQ'%PCgK2!_=dCrj@m03J3\ ll\;m$J2d\6Ro;j0"=QA8+B8Qs>_^,m*KR&=C-`bc\@6MkSkk'5XfND5q;E8`n4r0;Q'gk=9_lL)dU\J#2mi=0]NFYclV/fj jEKSN+gaULB`c>Y3#(g#&+'1A#N"6/sCsM>)([#Bi%A!%GbqZ4BFDt8qro*C3iLXHZ+dhjFVj;Attad(T:B32Wa5hK)P0/&V@#ETKchX_>3V&<."g/R5(I-p,mUTd&P A>J]^sKB`T6;2q4M'jjJJd7^AY7\W1au%lBiFji(8q79[ZC/KWlo>C6=3P3.t+/"->s*==8 `)"p6hU!^\/21[G9);hasWA`-Sm?sp^I4ZC/B"#)NaGYA:FCX!B,"rM9R(i\E*E/%b@"jgn ;25pgG@g9Gc@/t!H!-a28FpG-'L9PTO!jW&Y!B?3DBK#$=`W'k`:4MWi[Rcqid/%ub!f2044)F,&f?r],%l3qKjcDNJ`,cTU^:5 BI,rF=>$k'BSi`KPF(RELDl-Q fEQ(K?+Kpi_f<`hr@dUJr^9N"q`$;/D`6!5B[.b2\@!C9Vn<(GP;_K))):fBiDN/<,EPqG6 UV249PdBsUg3MR>0FF(I0Gu#%]aRVoZ(.KMhLdWJTpj@$l17JgPVH5@9b[tp!]]OE$T?8rm XccO0nl704$mlZd79Ii3Y8_5b)gu&5E3,H[-*&W;\S!p(XVX&2XQj@TSW+E^\[(=A^Rs3iV I-5#@l1[]L>p1*f2Sp,C'CY(0!8c]'^Tp.Knb(OYKlB$dCC7*1Ek=qV''7=t%hcjt\k9n/Tl+`\A[/a:(8fkhD3>'rZq$ EoaW+G&,\^_(&S6Nr72=sq&m$!i6!A#b`F5]3Q"H]o<17>0:h^ALTn4_SKlH`_)5GkSB+IE CS3.K4C)2Ptj-_r>%OB_j2j5RT-tA6i\Vr>-7MpM1'Ibe0OsOg=^.Y:/.RK8n<':GL:e>tF (ac6@.\W#_:fO5>lADI=Wf"*dXt+8P_C@*P.`b)5_T7@;Xp-4h:T^Yp>`)1JI_\qFJT4cNu]qIf tresJd-L=)3`3DF''Gf)<>"HY$JS,k?Z+P,uObJI6+H]PF&L%eJAJMfG$';XtP&uI)(NJbXdBGugTaDN^G+i))l#9t*E* K7Z+aA%FW.65asSI\=eLEe0,c%c/"-qr#&%3\<$7&$)EX%LgT;:K_;)AJ'^D`Ye%pTjN*&17e%fX8+oFHVg8CMXPKUhL)KV BVO5._I^[pB,F*+W5Kn?&130@<3$/[4Ug=l+,5>/&- GUu%75:^L7pdBK3Y==_$X+5;*QKtoUQZ2qG#(^G3HcX@M;#Z0To=39SBZ5;P@CR.O)f6$T# a,+c&dWdb(W&3,91'5Zrm4/hM`)RMQ!d5Dh.X)8qEM&]#14"@/7o+(Oqj6.)Pg7nBQp6VL:\d4QqF8>n\,\3M,ImNkp>2X[[:INm[(B&T*+X%:KbdP#=slNMX%Z"J dlDGgVQS6+IF)paFn.?OnTM4,O'+ho92[E)IQ3VY&lSJRTKn6>c6L9+Z5R22?OaLD2hb)G)q5R?MUgR$LCgs5UQFGp@>6X06N8'9` -SY_0*c1ddPGD(O:Hiq4N;p**95OqO.lB).1lH1KC!UgU#IO4'J:7I1)U?`4>9.\QkuIC8; id=/OLY8(*RW]MSQ/376jQW@ZVd:\NqV)#Z;1"YW`C-da_O%=)--?Xs8h8f,E[UXD%PTUbm uK;FP;:%B;EHk2@@+eTR"QI5%NZq-TWtFA62h_C"@%iW_Q*(r?KZ0-ps%S/hbe:C_uBU?Rd).>!;HdmBNsMGTe>_I.BuRRYY-nCf9W+DVZ/450/8\NNWA,Vco -gm__sEn0_/VH\7Z85bVY(,kS]"XEf:U!2oX^t)ku8#NNmMJ#9`7P,OZ*QS4l)d_##/tb^9 ekZ$1N[NbhRp=^b90_IGthg=6o]SnSFeMU%IPT4$uk8S r%OQViQoFI0f1V:\:#+B'N0Vblm[ON7g`\_>4E21joT M1"26-)]=7K?YdtW=46d?-GV9>AnrcDf[i4S*D1+.I'S1WNJP6 m]]"fP,(u`7hUOF)sa;cAQ*eQ-f@I>4T)B%ZA(I=5FDG&u@[MH]<)aS-SJ[-$lJf+8noH%H-+"T_uk"6IAGfRW9(8bQ^An^eP;Ulp_[NRu'M.R1cQO0m] $0aS;TjSDL\Ek]d)U-EADTWltcKtdMm6RVON7s;ngoaE3Y,M-`W;]JDbcf1iYX\o%W=hr8! [=fLOX/Wu!9b)XoacT<';:M[To]cc4;f:.'7l/O@/d)ip(]iuLkpd#@($T^=?h@?5CloE_# Y22BFC\NaFRJ,@9F3mL)!KX'e_H[%pm^-kS0"SS&!gcJCYCLK_V;"'-Mf7!B(6Li:at=';1 j*+[-I23Z!>]'ENLlTgT^4iXnIY#f+Xs+I;mITFHH#$&e3Wi5?3mKF$N&r4mI\@,.JRf[UrYkl!(Ep'u!I,PVp`!X:(]h.^K5MY_'a=^61BG#F+cI>u e/3b:*8t->!N[%,,pIoC'rESu@RLQ,'i-CF@,M`;L_K#d'=*ZJ.5r\A3g3I1PB*0#/>`q$5T*D0m- *=7lIcS@fG[B=Xt&G6E6um@^e@AoO9YRM+s,&rPg>0rOXV'.YjQK!(`L_\jdLa[cgi5cJ'?jq**11=ZJ@::rj*YmVK&4'SV6!D? \>7t@F$P=9ab`E0M/d`1o$%V$Ai7bKPe.[fo'O[F@@71F;j:hV'';9^b5u&7qKGYj8'-V6! 5fQnkaq=]A]ATCmJL;B?M@76/#U"d1;8NdXF9b(b('.e[Oj?.&i&!a,=Wlo8@&=Im^^L5W( kI8OJS#h"Xr?iq'>\c0;3rBI#/DCq+i2S_$:#]U,TR.-*8tKHiOT_sE#M2$)H7Ol;Ec!S:) X-t,[iYJ6(/Ghd)JOC(r6n#@>5P27g?g#*f)cs11VE&&/jH4*8p/r@<;iamM-:m#nie!18. 3YT.-GX8'>g@j]P,0SeKPJ'sRomKVFKahX/b.O"0HHDX,NQcL1u=/S*:(E9-K2%WO'(%Y3Q $P3WWu%1o3%'B,30o*6s7r"NS*S"Z,Z!D")9q@isk1IL^K+O1Q"ALAX5%7(_)o`>S2'Gcr? :t5m^2$+4BF\cFV%*XD]5f5DY^(:.%C_3H]1"r(%o:"85AJHQ\'Qk4gD)5-sC6'4tEB#iib&YX"N" 7?XKFq-e\(A?N"(>WjDhedp^%HHjci>NK5Io(].%5dlY'.OQ%>RUW8&to.;5d1c!9Fg#R$G c-Fd52S(!^QiV(8702K6e5CkR=-d'YoG3JKP5@D@#?[qk5&KV2CY;V[e(j=J(GI=)L;ID'9l7T\:!"rXfk:&CVU16!I6l,S+<[$\8'g(Fg 50oFaH#$-0CZ64bh:+`tO=#scWFTUZGL)@6DT&B0eBWRZ07NYUM[4BHZ h-*#cE^:\u`$%VXTi3!VVjq0mjLZ+a8Tir?\FrGoc(;['c+_hqZ%NIhc3p]`Z/-Olb$9"SC (Jq=M@>RAqL_2Y$R)+M?TnEuS9jrU'VP/KJl>@D'jG.-tDeaS6F#u4D(`%'m*'r:"=8X)Tk T$;G*^RR]iSOdsWq.B2Jp8Gj\`@kcj:$rfT#0!@0UWA.G"_Tk)76EhiL)8uK.Up6KWsT61? 3'M/s40m%>$:\_2JjW'b>J]&@c@,3,B:;Qk25t&=@VPThlWZKGhT?'k*[G@9=EK&/=F/5+& D^BQ.M`H4RhK(Y@E1)5'.oI-4pdVSRZ#+a=NBWY2"I%`'D,!9nBp*#=(XPh,mN!6Pk(=puP S'mc/]Tjei>W"rfp)S3R"JLD5kJdV#H$?X0(TdgAAdLm[e%)Eni2d?Z>aq9/f=Dd/_B?gtj ZX$]kYN;Wd5n`$SV@2JSlN*@b!E9rq*#8.V(."ub6)kfRZlNYPUaehR:`^:4n.Y?c'L@'Fo un"68f7As&0X"Lq4X`&++<*k%`@Lc6#gfDD,BmJ(0)[rnIu_!:t)S74op*OTu\7jdph"S*^ RX_iSYXU_B"pLPlX1C.s8F97WkV3]">5YiALslg_?!PK?iqY7*`"Fo1L6kn!8jWqA(9U'8: RB(ot3$JVqhflCXc5%j=+S2Q9E^3Y])LLNub%6(at3T9V^80;5*Q!FDop3LSha(YP;i@6>A -$kqTOA>+Yfk"Or#11]/p#Ae2n!R;Oi&HIar!:ILRS.B$$' >":h-)_PE<#>?X4TM&[i;%6+GRufi=2CS76)RpQU`@5)_Q$'HY$r6!W#XbG(1F>1iNE2(Ye %ZV^EKI<@<[WOAUZpd[Qrkip;3&pFF2[;@c&DM1Hid_!Vh$D oY/@(SR!2DEJkhDE,Gj)8OEj5fO>.6424I>'':IA#eh",nS?12;jXe?2 :U/anj;QZ[O<]![Rk+/3=Aj`YYLh2F"#d?"Ue`HE1\@@#h(/KgnZ0>4c4=UZX74BM?UEUWk ,P+6HEb%n(bXno@MaO8eNXTWs;CQ5#C:P<:LP'`lmVKC=NE5YMEl`,:d;)HGOYf'RV[[?0& ^H!G$G7>[g4Q:@8r>+1,tDJG B3afJ;T7_p]YRA?faA+`h+NP/j1fp)5\QWO,V-/gM'a?B4;OE, 76=>p%!J"FBk/i^!*%!tKE1"Y%^d]"akj#[<.mVrYPlkbD2@sFBe3B0B&FrO'"*#S7$m\*" ,S'*)iZ8>WEFN%;WWaV=;KS`c8Xu\-etS/G:u3E&_m$R,P;#rWW>5[u^il:s_9dBIVRaWh& #Bl*588i[s'-*]0q(D.WhH"N'aAp>8=+qTqGiG3:p)sH6E'NUZ,Ju$3u$[fk/jp'.,%LR"% bTr%&E2_dbO7:c#g<9d)\rn,iO2d)eVNOgG]She7d]mR>,O:X3e(:(9X^@A@ml^]^EE#$'+ PgY<0u$R);kZs-Sk*k5(%TPOSMZO6FSS(baj"s-R;4"uqen0^/]N&6SX&R5NBX6.`&LS@+d GEE`s>&JRc0QDU`]CD5gOY#(Hs_*hQInl1/`'?-B0:mRu(6sCQ5)/a+%ReFS$lbsXD:mQiU 5$=;,giuN7`1^.?&k+g=0:O;6Y]B1[.@P%BKW.p[&*1!14H]kul:)M@TbLK:,XG6d&B-'U6 'O_boM(6rOXMZ:":Yf.#Qp0UP+Muqoh0FUB3Wt8KE2'L#GLA<+p`goQmRl(8K(mMjtV*nS; /iQHCQ?[kBS&bYrlQX"TP&hR9kH-4VT5Fp8JRfX;YW,K>CG5NeK0Ua]g&6PW4nZ38@@dpA! -5LP%b4e:tjI1]2`0chIH(fDm7j_u^?$&d&6ObU5dqSer\;D%:W)DGAj^*,d4; N$+#.E0Z_'dE!YMQqC`"^o$);=ZgY0i]6J5e7jg]P'3#S0s#R5Y5GWAIZJU2b-8u*M#j8?$h05sbckmt!=UiC!.q^HoCW>SPYHd_64H9^RA!S8KnEIu6muUY U6JE25POtCBYZc[U(C+Z&Y(aL1AQNcJ9[&n`]OH%fc`FsX1/CH[@]-U-Z'\`'iJI@I9 S/kR;'-8+aC0jTJ4>IlFta"K,7Phj@72g23Q&(l(ua`CPnB6'OIC6'6EFgnd@qo6#aZ&D(9a@=HiJ#@GKTY8?5"4i^ ,".>>R`(dgE(%C*i4m(hp+6\KT>nTm%15b8e/$r%,7$mt'$6^/e14p_6n*^jD8%Y>s)#9aF &_ao.g@=U*=^oS9(';c:A"@3Q,lolabbINrrRttJ].25'!Dr_3-^pOJWk(0Mr5d7P@/;T,1r['SoU= /AqOO(#eXP$F&qB`B\MV_MC&S@4iBa#`8uj?pTJ8Sf\,DX;G##B5IC*3YcU(#iXKN#:l_n6 >0F3f5u0F+hTm+E82ISLh^9!q2[pe7EFG7,DHV`O>g-"LR@Qa#bcMA"Sadg]C8L4mK((I(' `]a,D0BO'uFp%$fRU+L1#HQ-3;Zreq6M)NN5'!7^1mb6\'@hn[^e:@-\T'/9(s8I*'8H6-% XT,_c)T(PH21aMR^)#bcP\"A$5I)(8#a#_Fb9E5TgY9Kf'.-8NrHb]1N\SrF)q1ohbJMo/O 2NH20[COU3I,/duNiEKZ)pt$:lr*=%PniK?lp*Kp`Rh+rF4GTm1)l&L3(6]TbsiRh]N0uZc*8B)RcUQc2pRP80IlJ7'dGB6L5]6 Tu8(\oG(Dgh0p"TU:c_I)^;E+eop&)cAn#Cl_[dJg"ZTkDcrL>fD?YQ##4PfN88pB;Ck]2bL+m&]LPU6`pi_F[FM`iH)u*@5RS8H<:^)Yc"Sc&Q-qskA@"ba_L%%YPE(5NE>6HoYK nquVi&q3F;Zi[VK]"bEpbFGr/V;VAL.Gj0]@t135no]6LWFlr1Yi+',_Nm>L&bnA&86hE!X C,@ZJ[PBOcha$*JO).L%BKllQ\ZAS3V0$3NJQ9j!$aecihu<^?b7,HriapmlqLi59oj9FBh 8Hou3jYKE,/c>9,1$*[4L%L?"E*(j3UoA-TPcL)=Y149>aA]:d@r-YX9Ipl.tfR1kZNX*DhZ8E #7Md\d+8LAfSAbSLT#QTdRsg)=G?l?"lO'J?sNtU Qdkt"dhRYOB)J96j4\oK6[W%^V#.'#d ae`9:6tD`8",,#VN[+#Y*Td7goY`bYbpgRY$Vd"fN:?kY$JcZqFB*b?ODRCg"r?=A+l]9:W UeXLn\IM+$ZT5-lCf'-\:o@(AO9Kt(_Y$C3juF@L4jL%o>:-s_RHEJ;?KKd*sY'.fim?cM" WKNMQk=C7b8@)k5e"O(ukk[O_R#9nP?"[H\?QtN`*BS=NR6L%&aZ>_3,5=p@5h"aFJZn5]`!9SG`J1cM^[8Bpo64O)," NZ;2lLASJtF^,(k\N76FMa@jAd*YeYVl^mI(a^g``ei(KTr;;9`NY&=UCaFLNn*Q6op"Z>(m5YKud$mpfiD*:^/1>K+LM+oM)>2:/ (8M7bnLV-sZnY6Nu*meqFR[m1..o+bP;DJUf?U[;T+MDq>F4dr#?D.'"J*:(VAuaC^2=>)#jm]'sXSi,8dH*ln1mL?gW "Z7:TZL^$sG)4V=o;*!*=;e#1W)GjJ@V'ieIMFL;7lVn8/C1FTp]5 L:CHB(hn\[?A=>#,%eM'eFO@t71Kl;;K*Xrjr<\)ZcNd*66W2/%Xk>_8n@"kCIp*G >M^`7t>8K4n/6I;dnk93db)>`EaY]l@<%Ea6T.gss\T^`NY\;,IMF"@-8EjDWZ;^fUKR>W$ 2"3%A"&.KgSnJri9P^aTBt>[<.j)-C@ZN0&e\m=tOhLA4mU3,d(GLV`;[#5*dm;Ed"e]4WGZWAP _2)rKbtU-fLk,48qDF2@HJThmN>rob?UV^go _i14ipPd97c"XKa8n*TN)&D5D>a\d+,p5p!qhlfA1lj"jP_Sc5,6TgYKqU!f0,G\0qIi1^! e_!e*$/E'K&T-A1ekJp9P7W&00h?k\o>dbn8!(#n9a5Y)XKKqMt2r/M!bi;T&:\2#Kn779h?3W!5L'VIHN8fOf>2S`IK\04WfLeME7YGGT"<^#7 -*%6[CPN*"AaNX4J:FF-?.CW)"2I#%fI;E>5D#OdK^3jdl5q2"]=2m$"?jY2?.n1jggaAAK t&Pk<\joh*59c8iPlmN5'(@3*9U@EB3l\CINN3_*+F.mK!$]]G&-&304O?&ismd%IPPOGDr X<)@qIY'[Q%c_3b+O\Jm^crTI&fH-3Na@!gY]EW*EQb?,X6[PJCbSTP<8ED.G>>A55OH^h& 9)4pM@"#&nO8n7RLc5DKeYL6-D00PUh8AHo]ZL<+FkTR0"2=GAMBL=fge3,4/c8-P;PKihO `3)ST.9i_G*Kmg',:0Rl==bW5Qjn>l^!-pYf5_KD>K5`aPTIti[6cqYEV@F.rF:&.Fe)muS >XdK/*])sX2M;8lKs2O!0M_^_/HhreCaR!b0#7[n`9/blB4f1sG'<3H:ZqE*m%uLR^+s@3] ]SA%C[Qi8L4j&sL1lrXBQf2FGU3IM=oq5XKq?j!T%&Ic.0[,r"h6.;5[<'j?3;t\"(4]T#W RLI@=up&"u&K":hGCE>GKY+=tjmP\8^?8EFdF*L6ut85\c'&Aa/39l2I@+OCErXD!F3[TP. I3fOb:X=p?BPcQGqEYXjG'g"[Ge8fNR"jYA4(9(VJe!SB5_&/G>g8oY@RnJ9&Z587om'lcGQnP6ru!**\S )/S_YnE15D2]QZEd-+OPD'"RO2UmGXf^4.>Jj;I&O<]D!=TU9>KnpuE3%&C4.>/7:2W.h!\ 6X_07g8D<,jKn*G5:fIUC@9)5jgH\npK%L3f8Hj'VLM1sOmndD:Ad2 X[6eF_WC#,>i3W_E4Jri$I7;@Od/He=E3S+RQTL.tY1@WN*S04]5 jATg"E"J?Y8#Yo4ABk*0VkY?kU^,g*YD.nBSneTbr*nKm8,P!c=E`XRkLa%JlF9B<\!['T! Dg1S>=`E;&!iSEPYX=,c0a(gBKRdCp3+%<:9Ekbd"R':PaC:ubA-@-W##IqrGp!9YXG+H(? k@&VHGE'2?3XML#/T@rn9,0&@"q3f"k[7SqU_H@`K9.=0=?V7l4G@DQmDq_Mjh:oF/;,nqKt`IT?XIK>-%k,YJY4`Ni"^ jZ8c'%'q\QJiTG?u5[/3@*p0VA(BH(aldsI[CG3?J\pUk\Sf67_UpEt!%:F5RMF8&IQpOH? I(cqnG+acg("0]ZGW)n"1=Ft3MKodbD\1LpK@>2cYKQ(32#[RV+9832d"pdJIpgJh8;?egE Kg9/OTN6eD9bJ"6RbBb+P.h.!=jDpo#2;nbFJ+AmD8_b,"iib0OB_ua",7:o"RIuKYY,.UD MI@rH2$W>pZMdFUE-!dV>*'&:W`a34G?Taor"\%J6[<-X**L/j.=\OkZNK+2[)C^p+N`O^T r@8Z[^m1J*4*C!oU5L3Mj^T01O\ZS<_SCtOO\#gkAU+ VZ5ru'&-Ui"V?p?ZP8*;1,'^VtL*gQscqT,sq=r5QO@k'3PCIg(<8QG$:1;?&OQmcMZ%2Pg N,aE21_S)8,=gM).L4ZORdp97`DMN#Pm.bumhiHCfk4O)8?Z4QnlcJAa@PZ['egj=.]Oi\E lpX77I%X:g'1o$q=fgStB62c)#)>XBdV3gWI7iLBj@(8`8L1(Y8E-BnTU*Pkp @W6#5cooK;M"d[:-U<8`jHr-\1<<*36p$B#3SpOg6>np()h,ac6SR#3G(nTa6:2= ciWA("`&NF=3!ap:A6?BunZJn.q0M6_)iQ!sII^5j>fgS#K(mt 3=(_&N$Jnm@+\5b-(Bou3)1$Z5Sg)@PTC7on7XJ=!Jn<["jX>QmtDsr,u<#J"[u>=!EDopP !R1;;82M2oiS#TPOSPt:[1jY5Y6>-R&4StBN?JR&EO)3Y]tUV'fJW[+-#AAKK0bK5jD>Uj3 ^sYO6(>j5o'P7$s=#B@;7_5jgaSJ(IQk0?4\CHIRB>H!?+lRA=6D,'EsnlC7D+g#(4M_8bX Hu7bQ!nRASZkGTN'=R!kCBTtFa"k+oFu(58HBB%gYej(gFL/"7$SLg;.o\S! ;m:(Arl>eciW/+A5P<=T[I&+j>@(Bm/.2RJgJ*G,6'-5L38%eqS%r1G4SD\Y_fYH-P_',O, 7[.%RQMmG%&AKODG]P)5pgX`jpJ-Rg.9WF\.AK:iuHO8Y0cl'%)#;@sIE*aHuKAG&3Wq*aS@7h`o LIj2N-T2[)Qi(>6NmV.tQnr'7f:%$(u#M7)1Pcb%NA`5ZSX gS.gLJ?qDi!-E2Z[-u71S8HTO@-QBTS=:h&;6=ki,&54ZACDFP#(AcqD$I)`7sb[dK> ;aC=/7rJnDYH;<,N*fOu7s_`#:u'>s5&E@tki"'dERsMrDf=7pG5Cd_8gV')X?#\B7T@g`H b$KFid'8I6Qu.KuLU(.7.]&E;1b#;Jg]""9TCE$QEX+YjLZ!1*n`HqT)O*d!(>0KR"WXf9\ pVSo\s%&/BF@+V1e#3tO98HgN,bpPjOh9d,@78WC8*C!]@Rj/"DA0oE\bV$Z[ 7k$;p&Nt3X7q3\ELTE="p+0Q.N<'-aMd$/o,D"W4N^o]Tin_/_=8LqO\Ce6e1)DD5fJ_AYc)@>uFS- \^3j)C"6N%0:K'7X2?X6S7\`&RmI`BWW+LV(W6Sg,hfaC;\\R&18(=,6LbW&h3H%KeWQC8f 1kB_B::^JLb,]^ce*Yr%eY`J/Q;`6+?XU:1I]h%U`[%J`+m/$%RgO`BZa",+KcZBR,j*hGp sD?@LV@[1@+j6+,2HfNTk?D69qO[l3S0>MFT;6TCR[JnQ20Cu?1aa?^7ZCa4\n3YR.-T*gk U1'f%&/I!'C*[B&W?)$VT7ptd,Jp^[ZE=+%H\;Cs:kXZ%(GU5d4^(Wi3@#AQ+Zl%5Q.CX`YcWrAdlO5,R!W;&;(O[a'r^*#*CkW6Wfo8Jp/5l]*]lm5a_no`)8SR9G %A_V?fK#;M58i^mna6EBsF[MCoLX\5*LV(<8-!):=i8/[i,(h_Xeae!dQPCX'E)39N@/)+; Ee')!#4"5qBL_BnXr"m7!CkpCb/;)lE(*X#W$UG7LKs6L L_WOUNXZ.t%bbl-L=AfM-Lah!7Wts_<;ugQ1Gctj8e,=!- &Q)okN5=3#kKGgmuL?q4]k&\ifD[u0SCCYODYau"?),KJ/\Xt57N3p+59&1D8G^V[s=I&g[ 7.bGlQ%6I#;NV?:i8L8(A#W<#u5e-kAZfPRp/p>`HS>3o._m:8Q`pO5ZtQ3^C%^![LbN;&U qefT?pN!(mV2#UT_BM%bGV&]$XI!@/@FF:umc'14#YTiN!265@GY('0.(TjejI9`fl@(#af [iD^W]jR/^d'OaHIAk;<_fH#o3n'Fu::f]58g`=5l'&bGY@,;@O-k7BZ'#9T*7/d[HMQVJ] $UGU7@)*DjE*s(&=*V&iY4Y:Tn&"0iBdg-& dUbT'B"HO@6=f+N!Jb"#O?gD^sEa6jqC8mq@)Ta0_PpX:(36^'#8bgnH9JcZ4_\2$pc3FYn @QJ,Sjth*9.5F#B\X.llWFZ*=tsX_*f*4`"0[P%3YigT\L*p:(Dgh'gVC'iE?cN-5GJD'#A )iiA)0W()(+i&]$RFi?T*\E"\j6(I9YfTlq)8:)@=s'a2bu_*%dl56+QN(BHZ87*ZRa3"pj X(i09,B;#Kk],T*t)?HKMJIE++8e#6sB0bNj5iS,4;O V9'Ct$5+XntY.MBR*'%4fR+_(^"@bQBBmQo&:_:oq#$S]q0*l@%T_/'thcj^!sIGih-i7sX gg'HW"%j7/GJJ\_Fq]Fcf$@qU[TWG\3YRb/<1kA@X1&MOOp:10n%Uh[1@,R_Dh@m\`%A>`e JCYBNdM#<%'+AjNY#YeCaQ54:qiM74d1[iLG:%C$&ho%Q+IWbU1_Tmj(kKUFkA23^<(Ti.r ?;*%!ULGm:`'2"%7)W01+[ce`$l"6Y&OB/&JK,Cj!" pGY&7I"=+Y4Ae&/*r0&RdF1+VYRJ?4gTi'nI26JQ"p%<"YfC6e"ChiD^G0>T#hl)W^3^:fU%5(2T^CS@'C3XRLLDm$6\QB_!2V5JeT?!%UhWKJNaC5i"Nno8\gW $iAq9$EX:UU'3)+J5`Fg?L^bL`9>N:f@*fPY`Y.3_%,id4!A,@D-jVSF:#RE)JBee#kRjLr (4h,WJ_]DuE_0/ZAe?:%iEd@oQjk2c#XH0;J;+IU(^V>/&\stI@3Q&/g_,.E%Ugmri9h7$a q$ct%3YW`i7nlP6k2Kk'O^>@+\WD5[L[p-']As&@87A%n.9"6'O_7YJOg?G$WiUA=.r4u!> #so()\:Zd1fefbI 9R("u[Z6(U +:]^P9@GW&@e/3_5%H/oF^rR,GM@XMV_*EEj?Wi\uCD.0t! Pf]V!"]0"*G0:\Z.;^Ug'C]]#[j#1J;O^8%LD"4&cdu"p%A\WfFo%c'*+A:^mGS)1'tDd3g T__TV)bq1_.>C();]\_7UckL`Z(4&r%Ua;o0X8Z5_cL&OAGo!2'd0-4+),&g3JKi?<;/*XP *S&\sPY+Hd.a('u,%&O;\*TU6.])@?Jm&\t=oJ?TKV+:DT.&`CA4!?)AJC(-i#0u4qOi?A` ]/.M[<&tn:q5qENHn.SNJ(a7BL6/QH:]6i%3"i9@)+a+0bRL`eJ#?)lQGLR)/A*9#Tl+k@\8fVIK_k85.Y!pFpjl5ChM*+9m &+`n'Ah@dVk%07V`3@50n*,$0m%+\80J50ni<0GeU^t8&$)$nr^lAosECU=_ %cEQX5kBArp'LpT$6Z&R^o@a8!"5I2&E+ZBiDpj_U`7]6+5!of=dOL*[N/f-*[/6:iQ`A#X rK(`*'q(RJ]jKJc5]D,Q!r=HJ_caQiHug.k7s("q:6WJe/ 0U^nWcWKT>6BlGuU.+?P2hY^'Efk*LB6=uOG[=rU[KGRu#2&KsmclglhSnX5h1U`) UYH96L5ZlSt_S?Q6>=jS4S?_-/]XB;5&5k%R\C,T73%U*kM>&H5qf;HW4*HZ'dVK&PfpBQ5 s%3Zi-0k_J[.2(Y1UcP9N>,Et3nk!!$(r;.LTf*QmB6cLJ%hg1h=4aNtfrVd2XI@V>g=<9t SY%PH&g8#&@8]cBJf:>_*#)DQReO"SqDC:[*kLbZ)E+N@3+O1\0D1&6q\?Ae&[?['YsU,ZN ntTRC=Ont)CNHCH98=b41![+Zl;B>>=Z&i9=3GL[2W&P>?A5%>IE3m[Mr_b>A(C6CUVu9[i 9Ct>BdQGHahaZ\/U(1>DK_XMn%N&\JpaC>F2miS%7:G\f7EU>Go'%X1I&h],S)g>IV56]=Z ,1+ Q Q Q showpage %%Trailer count op_count sub {pop} repeat countdictstack dict_count sub {end} repeat cairo_eps_state restore %%EOF beamer/base/art/beamericonbook.tex0000644000175000017500000000575112050430504017063 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \documentclass[12pt]{article} \usepackage{pgf,pgfshade} \usepackage{xxcolor} \usepackage[papersize={14pt,12pt},hmargin=0pt,vmargin=0pt,headsep=0pt,nohead,nofoot]{geometry} \pagestyle{empty} \begin{document}% \begin{colormixin}{100}% \pgfdeclarehorizontalshading{cover}{20pt}{% rgb(0pt)=(0.84,.5,.5); rgb(1.8pt)=(0.82,.48,.48); rgb(1.9pt)=(0.83,.66,.65); rgb(2.1pt)=(0.83,.66,.65); rgb(3pt)=(0.69,.25,.3); rgb(8pt)=(0.45,0.05,0.05)}% % \pgfdeclareverticalshading{side}{10pt}{% rgb(0pt)=(0.78,.78,.78); rgb(2.5pt)=(0.60,.60,.60); rgb(5pt)=(0.25,.25,.25)}% \noindent\hbox{% \begin{pgfpicture}{0pt}{1pt}{14pt}{11pt} \pgfsetxvec{\pgfpoint{1pt}{0pt}} \pgfsetyvec{\pgfpoint{0pt}{1pt}} \pgfsetlinewidth{0.4pt} \pgfsetroundjoin \pgfsetlinewidth{0.8pt} \color[gray]{0.5} \pgfmoveto{\pgfxy(6.5,11.5)} \pgflineto{\pgfxy(1,10.5)} \pgfcurveto{\pgfxy(0.6,9.75)}{\pgfxy(0.6,8.75)}{\pgfxy(1,8)} \pgflineto{\pgfxy(6.5,2)} \pgflineto{\pgfxy(13,3)} \pgfcurveto{\pgfxy(12,4)}{\pgfxy(12,5)}{\pgfxy(13,6)} \pgfclosepath \pgfmoveto{\pgfxy(6.5,2)} \pgfcurveto{\pgfxy(6,3)}{\pgfxy(6,4)}{\pgfxy(6.5,5)} \pgflineto{\pgfxy(13,6)} \pgfstroke \begin{pgfscope} \pgfmoveto{\pgfxy(6.5,11.5)} \pgflineto{\pgfxy(1,10.5)} \pgfcurveto{\pgfxy(0.6,9.75)}{\pgfxy(0.6,8.75)}{\pgfxy(1,8)} \pgflineto{\pgfxy(6.5,2)} \pgfcurveto{\pgfxy(6,3)}{\pgfxy(6,4)}{\pgfxy(6.5,5)} \pgflineto{\pgfxy(13,6)} \pgfclosepath \pgfclip \pgfputat{\pgfxy(8.5,0)} {% \begin{pgfrotateby}{\pgfdegree{45}} \pgfbox[left,base]{\pgfuseshading{cover}} \end{pgfrotateby} } \end{pgfscope} \begin{pgfscope} \pgfmoveto{\pgfxy(6.5,2)} \pgfcurveto{\pgfxy(6,3)}{\pgfxy(6,4)}{\pgfxy(6.5,5)} \pgflineto{\pgfxy(13,6)} \pgfcurveto{\pgfxy(12,5)}{\pgfxy(12,4)}{\pgfxy(13,3)} \pgfclosepath \pgfclip \pgfputat{\pgfxy(7.5,0)} {% \begin{pgfrotateby}{\pgfdegree{30}} \pgfbox[left,base]{\pgfuseshading{side}} \end{pgfrotateby} } \end{pgfscope} \pgfsetlinewidth{0.4pt} \color[gray]{0.2} \pgfmoveto{\pgfxy(6.5,11.5)} \pgflineto{\pgfxy(1,10.5)} \pgfcurveto{\pgfxy(0.6,9.75)}{\pgfxy(0.6,8.75)}{\pgfxy(1,8)} \pgflineto{\pgfxy(6.5,2)} \pgflineto{\pgfxy(13,3)} \pgfcurveto{\pgfxy(12,4)}{\pgfxy(12,5)}{\pgfxy(13,6)} \pgfclosepath \pgfmoveto{\pgfxy(6.5,2)} \pgfcurveto{\pgfxy(6,3)}{\pgfxy(6,4)}{\pgfxy(6.5,5)} \pgflineto{\pgfxy(13,6)} \pgfstroke \end{pgfpicture}% }% \end{colormixin}% \end{document} beamer/base/art/beamericonbook.pdf0000644000175000017500000000515312050430504017030 0ustar mohuramohura%PDF-1.3 5 0 obj << /Length 298 /Filter /FlateDecode >> stream xTn ~09N=B&SONc0L9F pqoO~몲c9#㬧Ϻ2c&>c;נŧ9J$QtTg@* Jf6r [H@RT$S!\Y!V`3q > endobj 1 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 7.97 19.925] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 7 0 R /Length 15 /Filter /FlateDecode >> stream xP(endstream endobj 7 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 7.9701] /Coords [0.0 0 7.9701 0] /Function << /FunctionType 3 /Domain [0.0 7.9701] /Functions [ << /FunctionType 2 /Domain [0.0 7.9701] /C0 [0.84 .5 .5] /C1 [0.82 .48 .48] /N 1 >> << /FunctionType 2 /Domain [0.0 7.9701] /C0 [0.82 .48 .48] /C1 [0.83 .66 .65] /N 1 >> << /FunctionType 2 /Domain [0.0 7.9701] /C0 [0.83 .66 .65] /C1 [0.83 .66 .65] /N 1 >> << /FunctionType 2 /Domain [0.0 7.9701] /C0 [0.83 .66 .65] /C1 [0.69 .25 .3] /N 1 >> << /FunctionType 2 /Domain [0.0 7.9701] /C0 [0.69 .25 .3] /C1 [0.45 0.05 0.05] /N 1 >> ] /Bounds [ 1.79326 1.89288 2.09215 2.98878] /Encode [0 1 0 1 0 1 0 1 0 1] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 2 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 9.963 4.981] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 8 0 R /Length 15 /Filter /FlateDecode >> stream xP(endstream endobj 8 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 4.98131] /Coords [0 0.0 0 4.98131] /Function << /FunctionType 3 /Domain [0.0 4.98131] /Functions [ << /FunctionType 2 /Domain [0.0 4.98131] /C0 [0.78 .78 .78] /C1 [0.60 .60 .60] /N 1 >> << /FunctionType 2 /Domain [0.0 4.98131] /C0 [0.60 .60 .60] /C1 [0.25 .25 .25] /N 1 >> ] /Bounds [ 2.49065] /Encode [0 1 0 1] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 3 0 obj << /XObject << /Fm1 1 0 R /Fm2 2 0 R >> /ProcSet [ /PDF ] >> endobj 6 0 obj << /Type /Pages /Count 1 /Kids [4 0 R] >> endobj 9 0 obj << /Type /Catalog /Pages 6 0 R >> endobj 10 0 obj << /Producer (pdfTeX-0.14h) /Creator (TeX) /CreationDate (D:20031016202900) >> endobj xref 0 11 0000000000 65535 f 0000000495 00000 n 0000001438 00000 n 0000002091 00000 n 0000000385 00000 n 0000000009 00000 n 0000002167 00000 n 0000000693 00000 n 0000001636 00000 n 0000002224 00000 n 0000002273 00000 n trailer << /Size 11 /Root 9 0 R /Info 10 0 R >> startxref 2368 %%EOF beamer/base/art/beamericononline.pdf0000644000175000017500000006004312050430504017361 0ustar mohuramohura%PDF-1.4 % 3 0 obj << /Length 4 0 R /Filter /FlateDecode >> stream xeY˪%Wz`0,{i1Wh;"2q49Q]|gT/~y}?^?Oo[i:؎T۞sҜ4eaƈU<Ǝ^@+K?lmǏ?St[I?y۞̣&u<\8J,UQ]9:m0z$i#pu(xʖ.ݒ>-uܪ R2EG=Fٳ4|‘;rqm1js> 9J 0G>x py <6563 ,Rz64z }.ՈfDi#J,?,9<7 !F[5ٔ; G SYzLY&keoM'-3qA^Gʶ:WF[[ f/ǐ0!< P!,[9hg͆+^rXx#֏VllnvbMX(>p>a$ YfV .W2+`Z3OG 0-6fZ̶IZ<IL|(*$SvS!Xx!ClR UJUqwIڧt¦TIXJ/b,O{qXƒos|:λ06Fbզ(qؿˀaGV~#Q"l^1NmhsUWqG Iy2}դszW-eLCa̜BBe,W{xBv}0هʊ`@uaA6tzX>5ֳLc8!ǎ{y|7{yU[Yyj|VFe1YJSY]k\i$쁂|###acM7K(㬴N ؕx;s_xP1AF6!ZB2hkndennYM3ڗTА А[v8x. "tKQyfk=jqw)4nB cw=X#Pbrsr9(h5hMdnXWLY%d6& ַVDUB^b R-rį!r7NՁЄAx$6'XUwvdNqsAaskNE^dlj0l)`+ zIGuedKYG32N},7rC2&MPθ w!Gd_:L0T('ې{;Y,iE!h9w,[qO>acBp,|c$hV!,jyygUy Ró[#o~._y!+x˯\3XRWhg8W X^"t1 !al`(zhKf`ksY>Ĵ(3#8N 9c]9侀]xE vjI YrEQztdo+[ߐ^w0lSUoþͨ4~@&4ŮRK"m`sq:/98&u1qDجQM X*}P!@lLûA9h~̈~._v!>[4/Wxl6Q~ xڮl{z)}fHڿ|'.m'wdR AkzwEv2YK=iWr$u![E^UBvE*W,9ҏ:+"|;+A!ٙs}w⮓pRq@D83K9I쑤1A"I*u3֐%둮RgS.Nihy;@/ϳ5-ohkH-H>2r?a id{RXy>=ꍜw";kW=GDai)_D6>~CXvWYk?&Dӕ!ltzՃ?1B_;wA6Cc5ƚ  RϷ]L*^Kv:U̟j֫ebn6Te_QAno/V[a79>6 uGnu#b7B^z;MH^qwXC<+1HƒvzZj!8\Xӣ݋ Z+ҢMp0rRz%zp4XCGE-9A|"Iڄ̆D%IQBq$qnOS$(W$alSÓ\ʼn^ xCZjQ~HzY endstream endobj 4 0 obj 2796 endobj 2 0 obj << /ExtGState << /a0 << /CA 1 /ca 1 >> /a1 << /CA 0.71345 /ca 0.71345 >> /s6 6 0 R /s9 9 0 R /s12 12 0 R /s15 15 0 R /s18 18 0 R /s21 21 0 R /s24 24 0 R /s27 27 0 R /s30 30 0 R >> /Pattern << /p5 5 0 R >> /XObject << /x7 7 0 R /x10 10 0 R /x13 13 0 R /x16 16 0 R /x19 19 0 R /x22 22 0 R /x25 25 0 R /x28 28 0 R /x31 31 0 R >> >> endobj 32 0 obj << /Type /Page /Parent 1 0 R /MediaBox [ 0 0 38.400002 38.400002 ] /Contents 3 0 R /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources 2 0 R >> endobj 33 0 obj << /Type /XObject /Length 39 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 0.395604 /ca 0.395604 >> >> >> >> stream x3P0¢tDb.BXE i\ s endstream endobj 7 0 obj << /Type /XObject /Length 59 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p34 34 0 R >> >> >> stream x+TH,)I-SH.V/06Q(NSO4PH/2P0P031#$VQBW # endstream endobj 35 0 obj << /Type /Mask /S /Alpha /G 33 0 R >> endobj 6 0 obj << /Type /ExtGState /SMask 35 0 R /ca 1 /CA 1 /AIS false >> endobj 10 0 obj << /Type /XObject /Length 196 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p8 8 0 R >> >> >> stream x]j1 zyjek ) {,9mI($4?ׯnAXv0dL7 ;J^-Nc a'EqFUR^tE!QQGĚ Ga0¹ 8e֫CŒ9$ Cס{΍>ZW%xiZ:H˾\-KlBſ3'lhC? endstream endobj 13 0 obj << /Type /XObject /Length 200 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p11 11 0 R >> >> >> stream xejA;?go%GA6!!DqXra._bI nARw8[\ M9*&wPUJZ \G P0#2qWX08ڢqBIź/XmG$0+T)OK׎V:Gz_Og>q@ endstream endobj 16 0 obj << /Type /XObject /Length 160 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p14 14 0 R >> >> >> stream x]K1 C=,> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p17 17 0 R >> >> >> stream xeOj1 +Vm {,=mi)4i _oҮ5if|x\^ϟL1mvTX#Amx 8a֒<ڐkmV(r{H]Uq:cj]\[g2.INE0# ZIrɊu->D6Djrq̿/s?6aE endstream endobj 22 0 obj << /Type /XObject /Length 201 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p20 20 0 R >> >> >> stream xeN1 yyڎsoHET{D(r Rd9b|؟/_L?1m1Tzw~OO`b<'GHP,jj1DW FndK1(Y)Pf\Sigd%B3e[YLVȗܡJ,vuK/z鷑x K?*A? endstream endobj 25 0 obj << /Type /XObject /Length 157 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p23 23 0 R >> >> >> stream x];0 Cwsƒ,9E{ gi6?joEJ7rφuRþn @ snx"Q dfC ʢ:0a7@ Ӭ+[ FL fPe+ԨJ7&cX(E_)]/ endstream endobj 28 0 obj << /Type /XObject /Length 158 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p26 26 0 R >> >> >> stream x];nBA=Evfo $ :.~l:plтJܑҦB:TXAðC*4T]k1c=>&_X"0cXbҼ`ξSE6g,u K'u}0 endstream endobj 31 0 obj << /Type /XObject /Length 161 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 38.400002 38.400002 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p29 29 0 R >> >> >> stream x]n0 Dw}h(_`iHk?*Y{岝wG?> endobj 37 0 obj << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 0.827451 0.913725 1 ] /C1 [ 0.25098 0.454902 0.682353 ] /N 1 >> endobj 38 0 obj << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 0.25098 0.454902 0.682353 ] /C1 [ 0.211765 0.282353 0.423529 ] /N 1 >> endobj 39 0 obj << /FunctionType 3 /Domain [ 0 1 ] /Functions [ 36 0 R 37 0 R 38 0 R ] /Bounds [ 0.155172 0.75 ] /Encode [ 0 1 0 1 0 1 ] >> endobj 5 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.799991 0 0 -0.800009 0 38.400002 ] /Shading << /ShadingType 3 /ColorSpace /DeviceRGB /Coords [ 18.246094 15.714844 0 18.246094 15.714844 29.992188 ] /Function 39 0 R /Extend [ true true ] >> >> endobj 40 0 obj << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 1 1 1 ] /C1 [ 1 1 1 ] /N 1 >> endobj 41 0 obj << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 1 ] /C1 [ 0 ] /N 1 >> endobj 8 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.904827 -0.490478 -0.381245 -0.703315 43.272464 25.564522 ] /Shading << /ShadingType 2 /ColorSpace /DeviceRGB /Coords [ -25.175781 30.058594 -22.253906 21.042969 ] /Domain [ 0 1 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 42 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.904827 -0.490478 -0.381245 -0.703315 43.272464 25.564522 ] /Shading << /ShadingType 2 /ColorSpace /DeviceGray /Coords [ -25.175781 30.058594 -22.253906 21.042969 ] /Domain [ 0 1 ] /Function 41 0 R /Extend [ true true ] >> >> endobj 43 0 obj << /Length 44 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p42 42 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/01R(N2P0P031#$VQ*WW n endstream endobj 44 0 obj 58 endobj 45 0 obj << /Type /Mask /S /Luminosity /G 43 0 R >> endobj 9 0 obj << /Type /ExtGState /SMask 45 0 R /ca 1 /CA 1 /AIS false >> endobj 11 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.751461 0.703269 0.546646 -0.584105 25.851248 41.96125 ] /Shading << /ShadingType 2 /ColorSpace /DeviceRGB /Coords [ -25.175781 30.058594 -22.113281 22.660156 ] /Domain [ 0 1 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 46 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.751461 0.703269 0.546646 -0.584105 25.851248 41.96125 ] /Shading << /ShadingType 2 /ColorSpace /DeviceGray /Coords [ -25.175781 30.058594 -22.113281 22.660156 ] /Domain [ 0 1 ] /Function 41 0 R /Extend [ true true ] >> >> endobj 47 0 obj << /Length 48 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p46 46 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/01S(N2P0P031#$VQ*WW  endstream endobj 48 0 obj 58 endobj 49 0 obj << /Type /Mask /S /Luminosity /G 47 0 R >> endobj 12 0 obj << /Type /ExtGState /SMask 49 0 R /ca 1 /CA 1 /AIS false >> endobj 14 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.836618 -0.613801 0.613801 -0.836618 30.060298 27.754653 ] /Shading << /ShadingType 3 /ColorSpace /DeviceRGB /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 50 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.836618 -0.613801 0.613801 -0.836618 30.060298 27.754653 ] /Shading << /ShadingType 3 /ColorSpace /DeviceGray /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 41 0 R /Extend [ true true ] >> >> endobj 51 0 obj << /Length 52 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p50 50 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/05P(N2P0P031#$VQ*WW J endstream endobj 52 0 obj 58 endobj 53 0 obj << /Type /Mask /S /Luminosity /G 51 0 R >> endobj 15 0 obj << /Type /ExtGState /SMask 53 0 R /ca 1 /CA 1 /AIS false >> endobj 17 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -1.024253 0.100927 0.0784498 0.796144 -1.9241 5.980906 ] /Shading << /ShadingType 2 /ColorSpace /DeviceRGB /Coords [ -22.824219 28.335938 -22.113281 22.660156 ] /Domain [ 0 1 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 54 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -1.024253 0.100927 0.0784498 0.796144 -1.9241 5.980906 ] /Shading << /ShadingType 2 /ColorSpace /DeviceGray /Coords [ -22.824219 28.335938 -22.113281 22.660156 ] /Domain [ 0 1 ] /Function 41 0 R /Extend [ true true ] >> >> endobj 55 0 obj << /Length 56 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p54 54 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/05Q(N2P0P031#$VQ*WW  endstream endobj 56 0 obj 58 endobj 57 0 obj << /Type /Mask /S /Luminosity /G 55 0 R >> endobj 18 0 obj << /Type /ExtGState /SMask 57 0 R /ca 1 /CA 1 /AIS false >> endobj 20 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.734299 0.687186 0.534161 -0.570746 22.106536 43.927257 ] /Shading << /ShadingType 2 /ColorSpace /DeviceRGB /Coords [ -21.660156 15.648438 -21.960938 21.335938 ] /Domain [ 0 1 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 58 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.734299 0.687186 0.534161 -0.570746 22.106536 43.927257 ] /Shading << /ShadingType 2 /ColorSpace /DeviceGray /Coords [ -21.660156 15.648438 -21.960938 21.335938 ] /Domain [ 0 1 ] /Function 41 0 R /Extend [ true true ] >> >> endobj 59 0 obj << /Length 60 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p58 58 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/0P(N2P0P031#$VQ*WW r endstream endobj 60 0 obj 58 endobj 61 0 obj << /Type /Mask /S /Luminosity /G 59 0 R >> endobj 21 0 obj << /Type /ExtGState /SMask 61 0 R /ca 1 /CA 1 /AIS false >> endobj 23 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.645021 -0.473232 0.473232 -0.645021 11.116716 30.957798 ] /Shading << /ShadingType 3 /ColorSpace /DeviceRGB /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 62 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.645021 -0.473232 0.473232 -0.645021 11.116716 30.957798 ] /Shading << /ShadingType 3 /ColorSpace /DeviceGray /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 41 0 R /Extend [ true true ] >> >> endobj 63 0 obj << /Length 64 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p62 62 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/03R(N2P0P031#$VQ*WW  endstream endobj 64 0 obj 58 endobj 65 0 obj << /Type /Mask /S /Luminosity /G 63 0 R >> endobj 24 0 obj << /Type /ExtGState /SMask 65 0 R /ca 1 /CA 1 /AIS false >> endobj 26 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.645021 -0.473232 0.473232 -0.645021 12.007484 41.734606 ] /Shading << /ShadingType 3 /ColorSpace /DeviceRGB /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 66 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.645021 -0.473232 0.473232 -0.645021 12.007484 41.734606 ] /Shading << /ShadingType 3 /ColorSpace /DeviceGray /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 41 0 R /Extend [ true true ] >> >> endobj 67 0 obj << /Length 68 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p66 66 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/03S(N2P0P031#$VQ*WW N endstream endobj 68 0 obj 58 endobj 69 0 obj << /Type /Mask /S /Luminosity /G 67 0 R >> endobj 27 0 obj << /Type /ExtGState /SMask 69 0 R /ca 1 /CA 1 /AIS false >> endobj 29 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.696182 -0.510858 0.510766 -0.696305 21.468042 43.046175 ] /Shading << /ShadingType 3 /ColorSpace /DeviceRGB /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 70 0 obj << /Type /Pattern /PatternType 2 /Matrix [ -0.696182 -0.510858 0.510766 -0.696305 21.468042 43.046175 ] /Shading << /ShadingType 3 /ColorSpace /DeviceGray /Coords [ 12.070313 12.492188 0 12.070313 12.492188 6.71875 ] /Function 41 0 R /Extend [ true true ] >> >> endobj 71 0 obj << /Length 72 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 38.400002 38.400002 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p70 70 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/07P(N2P0P031#$VQ*WW  endstream endobj 72 0 obj 58 endobj 73 0 obj << /Type /Mask /S /Luminosity /G 71 0 R >> endobj 30 0 obj << /Type /ExtGState /SMask 73 0 R /ca 1 /CA 1 /AIS false >> endobj 34 0 obj << /Length 75 0 R /PatternType 1 /BBox [0 0 39 39] /XStep 155 /YStep 155 /TilingType 1 /PaintType 1 /Matrix [ 1 0 0 1 0 -0.599998 ] /Resources << /XObject << /x74 74 0 R >> >> >> stream /x74 Do endstream endobj 75 0 obj 11 endobj 74 0 obj << /Length 77 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /BBox [ 0 0 39 39 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources 76 0 R >> stream x+*T/6TH/VЯ0PpW O endstream endobj 77 0 obj 32 endobj 76 0 obj << /ExtGState << /s79 79 0 R >> /XObject << /x80 80 0 R >> >> endobj 80 0 obj << /Type /XObject /Length 166 /Filter /FlateDecode /Subtype /Form /BBox [ 0 0 39 39 ] /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Pattern << /p78 78 0 R >> >> >> stream xe @ yyvν G (Bj׷/0Px~t>k )xzPp" hV!',>B!Gf8AGv+5F@`9J{6MԬ"Iq\Rp~&\whs9 endstream endobj 81 0 obj << /FunctionType 2 /Domain [ 0 1 ] /C0 [ 1 ] /C1 [ 0.164948 ] /N 1 >> endobj 78 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.799991 0 0 -0.800009 0 39 ] /Shading << /ShadingType 3 /ColorSpace /DeviceRGB /Coords [ 15.601563 12.140625 0 15.601563 12.140625 43.527344 ] /Function 40 0 R /Extend [ true true ] >> >> endobj 82 0 obj << /Type /Pattern /PatternType 2 /Matrix [ 0.799991 0 0 -0.800009 0 39 ] /Shading << /ShadingType 3 /ColorSpace /DeviceGray /Coords [ 15.601563 12.140625 0 15.601563 12.140625 43.527344 ] /Function 81 0 R /Extend [ true true ] >> >> endobj 83 0 obj << /Length 84 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /FormType 1 /BBox [ 0 0 39 39 ] /Resources << /ExtGState << /a0 << /ca 1 /CA 1 >> >> /Pattern << /p82 82 0 R >> >> /Group << /Type /Group /S /Transparency /CS /DeviceGray >> >> stream x+O4PH/H,)I-SH.V/0R(N2P0P0T4@.; > endstream endobj 84 0 obj 52 endobj 85 0 obj << /Type /Mask /S /Luminosity /G 83 0 R >> endobj 79 0 obj << /Type /ExtGState /SMask 85 0 R /ca 1 /CA 1 /AIS false >> endobj 1 0 obj << /Type /Pages /Kids [ 32 0 R ] /Count 1 >> endobj 86 0 obj << /Creator (cairo 1.10.2 (http://cairographics.org)) /Producer (cairo 1.10.2 (http://cairographics.org)) >> endobj 87 0 obj << /Type /Catalog /Pages 1 0 R >> endobj xref 0 88 0000000000 65535 f 0000022517 00000 n 0000002911 00000 n 0000000015 00000 n 0000002888 00000 n 0000009066 00000 n 0000004347 00000 n 0000003899 00000 n 0000009567 00000 n 0000010809 00000 n 0000004434 00000 n 0000010896 00000 n 0000012133 00000 n 0000004959 00000 n 0000012221 00000 n 0000013430 00000 n 0000005490 00000 n 0000013518 00000 n 0000014753 00000 n 0000005981 00000 n 0000014841 00000 n 0000016080 00000 n 0000006513 00000 n 0000016168 00000 n 0000017377 00000 n 0000007045 00000 n 0000017465 00000 n 0000018674 00000 n 0000007533 00000 n 0000018762 00000 n 0000019971 00000 n 0000008022 00000 n 0000003333 00000 n 0000003546 00000 n 0000020059 00000 n 0000004287 00000 n 0000008514 00000 n 0000008641 00000 n 0000008774 00000 n 0000008914 00000 n 0000009377 00000 n 0000009476 00000 n 0000009917 00000 n 0000010269 00000 n 0000010722 00000 n 0000010744 00000 n 0000011244 00000 n 0000011593 00000 n 0000012046 00000 n 0000012068 00000 n 0000012555 00000 n 0000012890 00000 n 0000013343 00000 n 0000013365 00000 n 0000013865 00000 n 0000014213 00000 n 0000014666 00000 n 0000014688 00000 n 0000015190 00000 n 0000015540 00000 n 0000015993 00000 n 0000016015 00000 n 0000016502 00000 n 0000016837 00000 n 0000017290 00000 n 0000017312 00000 n 0000017799 00000 n 0000018134 00000 n 0000018587 00000 n 0000018609 00000 n 0000019096 00000 n 0000019431 00000 n 0000019884 00000 n 0000019906 00000 n 0000020329 00000 n 0000020307 00000 n 0000020624 00000 n 0000020602 00000 n 0000021298 00000 n 0000022429 00000 n 0000020717 00000 n 0000021200 00000 n 0000021603 00000 n 0000021909 00000 n 0000022342 00000 n 0000022364 00000 n 0000022583 00000 n 0000022711 00000 n trailer << /Size 88 /Root 87 0 R /Info 86 0 R >> startxref 22764 %%EOF beamer/base/beamerbasetwoscreens.sty0000644000175000017500000000275412050430504017540 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. % % version 1.71 bugfix for \pgfpagescurrentpagewillbelogicalpage (hv) % % \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasetwoscreens.sty,v efa082c6111d 2010/05/01 11:27:03 rivanvx $ \mode \newif\ifbeamer@twoscreenstext \newif\ifbeamer@dosecondmode \defbeameroption{previous slide on second screen}[right]% { \pgfpagesuselayout{two screens with lagging second}[second #1] \beamer@twoscreenstexttrue \nofiles } \defbeameroption{second mode text on second screen}[right]% { \pgfpagesuselayout{two screens with optional second}[second #1] \beamer@twoscreenstexttrue } \defbeameroption{always typeset second mode}[true]% { \def\beamer@defaultdosecondmode{#1} } \def\beamer@defaultdosecondmode{false} \long\def\beamer@dosecondscreennow#1{% called from \beamer@doseveralframes \ifbeamer@dosecondmode% {% \clearpage% \def\beamer@currentmode{second} \def\beamer@doifnotinframe{}% \def\beamer@doifinframe{\begin{beamer@frameslide}% #1% \end{beamer@frameslide}% \pgfpagescurrentpagewillbelogicalpage{2}% \clearpage% }% {\beamer@masterdecode{\beamer@whichframes}}% \beamer@donow% }% \fi% } \mode beamer/base/beamerbaselocalstructure.sty0000644000175000017500000003720212050430504020413 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbaselocalstructure.sty,v ddfba79dac19 2012/11/13 20:36:32 joseph $ \mode \RequirePackage{enumerate} \mode % % % The \frametitle command % % \newcommand<>\frametitle{\alt#1{\@dblarg\beamer@@frametitle}{\beamer@gobbleoptional}} \long\def\beamer@@frametitle[#1]#2{% \beamer@ifempty{#2}{}{% \gdef\insertframetitle{{#2\ifnum\beamer@autobreakcount>0\relax{}\space\usebeamertemplate*{frametitle continuation}\fi}}% \gdef\beamer@frametitle{#2}% \gdef\beamer@shortframetitle{#1}% }% } \newcommand\insertshortframetitle[1][]{% {% \beamer@setupshort{#1}% \beamer@insertshort{\beamer@shortframetitle}% }} \mode { \let\beamer@aftersubtitle=\relax \newcommand<>\framesubtitle[1]{\only#2{\beamer@ifempty{#1}{}{\gdef\insertframesubtitle{{#1}}\beamer@aftersubtitle}}} } \mode
{ \newcommand<>\frametitle[2][]{\only#3{\gdef\insertframetitle{#2}% \@ifnextchar\framesubtitle{\beamer@donextsubtitle}{\usebeamertemplate{frametitle}}}} \def\beamer@donextsubtitle{% % Ugly hack... \def\beamer@aftersubtitle{\usebeamertemplate{frametitle}\let\beamer@aftersubtitle=\relax} } } % % Alerting % \mode { \newenvironment{alertenv}{\begin{altenv}% {\usebeamertemplate{alerted text begin}\usebeamercolor[fg]{alerted text}\usebeamerfont{alerted text}} {\usebeamertemplate{alerted text end}}{\color{.}}{}}{\end{altenv}} \newenvironment{structureenv}{\begin{altenv}% {\usebeamertemplate{structure text begin}\usebeamercolor[fg]{structure}\usebeamerfont{structure}} {\usebeamertemplate{structure text end}}{\color{.}}{}}{\end{altenv}} \newcommand<>{\alert}[1]{\begin{alertenv}#2\relax#1\end{alertenv}} \newcommand<>{\structure}[1]{\begin{structureenv}#2\relax#1\end{structureenv}} } % % % Predefined Blocks % % \mode { \newenvironment<>{block}[1]{% \begin{actionenv}#2% \def\insertblocktitle{#1}% \par% \usebeamertemplate{block begin}} {\par% \usebeamertemplate{block end}% \end{actionenv}} \newenvironment<>{alertblock}[1]{% \begin{actionenv}#2% \def\insertblocktitle{#1}% \par% \mode{%\usebeamerfont{block}% \setbeamercolor{local structure}{parent=alerted text}}% \usebeamertemplate{block alerted begin}} {\par% \usebeamertemplate{block alerted end}% \end{actionenv}} \newenvironment<>{exampleblock}[1]{% \begin{actionenv}#2% \def\insertblocktitle{#1}% \par% \mode{%\usebeamerfont{block}% \setbeamercolor{local structure}{parent=example text}}% \usebeamertemplate{block example begin}} {\par% \usebeamertemplate{block example end}% \end{actionenv}} } % % List stuff % \setlength\leftmargini {2em} \setlength\leftmarginii {2em} \setlength\leftmarginiii {2em} \setlength \labelsep {.5em} \setlength \labelwidth{\leftmargini} \addtolength\labelwidth{-\labelsep} \def\@listi{\leftmargin\leftmargini \topsep 3\p@ \@plus2\p@ \@minus2.5\p@ \parsep 0\p@ \itemsep3\p@ \@plus2\p@ \@minus3\p@} \let\@listI\@listi \def\@listii{\leftmargin\leftmarginii \topsep 2\p@ \@plus1\p@ \@minus2\p@ \parsep 0\p@ \@plus\p@ \itemsep \parsep} \def\@listiii{\leftmargin\leftmarginiii \topsep 2\p@ \@plus1\p@ \@minus2\p@ \parsep 0\p@ \@plus\p@ \itemsep \parsep} % % % Enumerations % % \def\enumerate{% \ifnum\@enumdepth>2\relax\@toodeep \else% \advance\@enumdepth\@ne% \edef\@enumctr{enum\romannumeral\the\@enumdepth}% \advance\@itemdepth\@ne% \fi% \beamer@computepref\@enumdepth% sets \beameritemnestingprefix \edef\beamer@enumtempl{enumerate \beameritemnestingprefix item}% \@ifnextchar[{\beamer@@enum@}{\beamer@enum@}} \def\beamer@@enum@[{\@ifnextchar<{\beamer@enumdefault[}{\beamer@@@enum@[}} \def\beamer@enumdefault[#1]{\def\beamer@defaultospec{#1}% \@ifnextchar[{\beamer@@@enum@}{\beamer@enum@}} \def\beamer@@@enum@[#1]{% partly copied from enumerate.sty \@enLab{}\let\@enThe\@enQmark \@enloop#1\@enum@ \ifx\@enThe\@enQmark\@warning{The counter will not be printed.% ^^J\space\@spaces\@spaces\@spaces The label is: \the\@enLab}\fi \def\insertenumlabel{\the\@enLab} \def\beamer@enumtempl{enumerate mini template}% \expandafter\let\csname the\@enumctr\endcsname\@enThe \csname c@\@enumctr\endcsname7 \expandafter\settowidth \csname leftmargin\romannumeral\@enumdepth\endcsname {\the\@enLab\hspace{\labelsep}}% \beamer@enum@} \def\beamer@enum@{% \beamer@computepref\@itemdepth% sets \beameritemnestingprefix \usebeamerfont{itemize/enumerate \beameritemnestingprefix body}% \usebeamercolor[fg]{itemize/enumerate \beameritemnestingprefix body}% \usebeamertemplate{itemize/enumerate \beameritemnestingprefix body begin}% \expandafter \list {\usebeamertemplate{\beamer@enumtempl}} {\usecounter\@enumctr% \def\makelabel##1{{\hss\llap{{% \usebeamerfont*{enumerate \beameritemnestingprefix item}% \usebeamercolor[fg]{enumerate \beameritemnestingprefix item}##1}}}}}% \beamer@cramped% \raggedright% \beamer@firstlineitemizeunskip% } \def\endenumerate{\ifhmode\unskip\fi\endlist% \usebeamertemplate{itemize/enumerate \beameritemnestingprefix body end}} \def\beamer@computepref#1{% \let\beameritemnestingprefix\@empty% \ifcase#1\or\or\def\beameritemnestingprefix{sub}\or\def\beameritemnestingprefix{subsub}\or\@toodeep\fi% } \def\insertenumlabel{\theenumi} \def\insertsubenumlabel{\theenumii} \def\insertsubsubenumlabel{\theenumiii} \mode
{ \AtBeginDocument{ % Remove any overlay specification \let\beamer@@@enum@\@@enum@ \def\@@enum@[{% \@ifnextchar<% {\beamer@@@num@@} {\beamer@@@enum@[}% } \def\beamer@@@num@@<#1>]{% \@ifnextchar[% {\beamer@@@enum@} {\@enum@}% } %\let\beamer@origenumerate=\enumerate %\renewcommand*\enumerate{\beamer@origenumerate} } } % % % Itemize % % \renewcommand{\itemize}[1][]{% \beamer@ifempty{#1}{}{\def\beamer@defaultospec{#1}}% \ifnum \@itemdepth >2\relax\@toodeep\else \advance\@itemdepth\@ne \beamer@computepref\@itemdepth% sets \beameritemnestingprefix \usebeamerfont{itemize/enumerate \beameritemnestingprefix body}% \usebeamercolor[fg]{itemize/enumerate \beameritemnestingprefix body}% \usebeamertemplate{itemize/enumerate \beameritemnestingprefix body begin}% \list {\usebeamertemplate{itemize \beameritemnestingprefix item}} {\def\makelabel##1{% {% \hss\llap{{% \usebeamerfont*{itemize \beameritemnestingprefix item}% \usebeamercolor[fg]{itemize \beameritemnestingprefix item}##1}}% }% }% } \fi% \beamer@cramped% \raggedright% \beamer@firstlineitemizeunskip% } \def\enditemize{\ifhmode\unskip\fi\endlist% \usebeamertemplate{itemize/enumerate \beameritemnestingprefix body end}} \let\beamer@itemize\itemize \mode
{ \AtBeginDocument{ \let\beamer@origitemize=\itemize \def\itemize{% \@ifnextchar[{\beamer@itemize@}{\beamer@origitemize}% } \def\beamer@itemize@[{% \@ifnextchar<{\beamer@itemize@@}{\beamer@origitemize[}% } \def\beamer@itemize@@<#1>]{\beamer@origitemize} } } \def\description{\@ifnextchar[{\beamer@testforospec}{\beamer@descdefault\beamer@descriptionwidth\@@description}} \def\beamer@testforospec[{\@ifnextchar<{\beamer@scandefaultospec[}{\@description[}} \def\beamer@scandefaultospec[#1]{\def\beamer@defaultospec{#1}\description} \def\@description[#1]{\setbox\beamer@tempbox=\hbox{\def\insertdescriptionitem{#1}\usebeamertemplate**{description item}}% \beamer@descdefault\wd\beamer@tempbox\@@description} \def\@@description{% \advance\beamer@descdefault by \labelsep% \list {} {\labelwidth\beamer@descdefault\leftmargin\beamer@descdefault\let\makelabel\beamer@descriptionitem}% \beamer@cramped% \raggedright \beamer@firstlineitemizeunskip% } \def\enddescription{\ifhmode\unskip\fi\endlist} \long\def\beamer@descriptionitem#1{% \def\insertdescriptionitem{#1}% \hfil\hspace\labelsep{\usebeamertemplate**{description item}}} \beamer@descriptionwidth=2cm \define@key{beamer@margin}{description width}{% \beamer@descriptionwidth=#1\relax% } \define@key{beamer@margin}{description width of}{% \setbox\beamer@tempbox=\hbox{\def\insertdescriptionitem{#1}\usebeamertemplate**{description item}}% \beamer@descriptionwidth=\wd\beamer@tempbox\relax% } \mode
{ \AtBeginDocument{ \let\beamer@origdescription=\description \renewcommand{\description}[1][]{\beamer@origdescription} } } % % Abstract command % \newenvironment<>{abstract}% {\actionenv#1% \usebeamertemplate{abstract begin}% \usebeamerfont{abstract}% \usebeamercolor{abstract}% \usebeamertemplate**{abstract title}}% {\usebeamertemplate{abstract end}\endactionenv} % % Verse, quotation, quote environments % \newenvironment<>{verse} {\actionenv#1% \usebeamertemplate{verse begin}% \usebeamerfont{verse}% \usebeamercolor{verse}% \let\\\@centercr% \list{}{\itemsep \z@ \itemindent -1.5em% \listparindent\itemindent \rightmargin \leftmargin \advance\leftmargin 1.5em \parsep .75em plus .25em minus.25em}% \item\relax} {\endlist\usebeamertemplate{verse end}\endactionenv} \newenvironment<>{quotation} {\actionenv#1% \usebeamertemplate{quotation begin} \usebeamerfont{quotation}% \usebeamercolor{quotation}% \list{}{\listparindent 1.5em% \itemindent \listparindent \rightmargin \leftmargin \parsep \z@ \@plus\p@}% \item\relax} {\endlist\usebeamertemplate{quotation end}\endactionenv} \newenvironment<>{quote} {\actionenv#1% \usebeamertemplate{quote begin}% \usebeamerfont{quote}% \usebeamercolor{quote}% \list{}{\rightmargin \leftmargin} \item\relax} {\endlist\usebeamertemplate{quote end}\endactionenv} \mode
{ \renewenvironment<>{verse}{\actionenv#1\originalverse}{\endoriginalverse\endactionenv} \renewenvironment<>{quotation}{\actionenv#1\originalquotation}{\endoriginalquotation\endactionenv} \renewenvironment<>{quote}{\actionenv#1\originalquote}{\endoriginalquote\endactionenv} } % % Bibliography code % \newenvironment{thebibliography}[1] {%\leavevmode\unskip% \list{\@biblabel{\@arabic\c@enumiv}}% {\settowidth\labelwidth{\beamer@biblabeltemplate{\@biblabel{#1}}}% \leftmargin\labelwidth \advance\leftmargin\labelsep \itemsep=0pt% \partopsep=0pt% \topsep=0pt% \usecounter{enumiv}% \let\p@enumiv\@empty \renewcommand\theenumiv{\@arabic\c@enumiv} \let\makelabel\beamer@biblabeltemplate}% \sloppy\raggedright \clubpenalty10000 \@clubpenalty \clubpenalty \widowpenalty10000% \sfcode`\.\@m} {\def\@noitemerr {\@latex@warning{Empty `thebibliography' environment}}% \ifhmode\unskip\fi\endlist} \long\def\beamer@biblabeltemplate#1{\def\insertbiblabel{#1}\usebeamertemplate*{bibliography item}\hfil} \def\bibitem{\@ifnextchar<{\beamer@bibitem@store}{\gdef\beamer@bibstore{}\beamer@plainbibitem}} \def\beamer@bibitem@store<#1>{\gdef\beamer@bibstore{<#1>}\beamer@plainbibitem} \def\beamer@plainbibitem{\@ifnextchar[\@lbibitem\beamer@bibitem} \def\@lbibitem[#1]#2{\expandafter\item\beamer@bibstore[\@biblabel{#1}\hfill]% \@ifundefined{beamerbib@#2@\the\c@framenumber}{\if@filesw {\let\protect\noexpand \immediate \write\@auxout{\string\bibcite{#2}{\noexpand\hyperlink{beamerbib#2}{#1}}}}\fi% \global\@namedef{beamerbib@#2@\the\c@framenumber}{\relax}% \hypertarget{beamerbib#2}{}% }{}% \def\newblock{\beamer@newblock}\newblock% \hbox{}\ignorespaces} \def\beamer@bibitem#1{\@bibitem{#1}\ignorespaces} \def\@bibitem#1{\expandafter\item\beamer@bibstore\@ifundefined{beamerbib@#1@\the\c@framenumber}% {\if@filesw \immediate\write\@auxout {\string\bibcite{#1}{\noexpand\hyperlink{beamerbib#1}{\the\value{\@listctr}}}}\fi% \global\@namedef{beamerbib@#1@\the\c@framenumber}{\relax}% \hypertarget{beamerbib#1}{}}% {}% \def\newblock{\beamer@newblock}\newblock} \def\newblock{\beamer@newblock} \def\beamer@newblock{% \usebeamercolor[fg]{bibliography entry author}% \usebeamerfont{bibliography entry author}% \usebeamertemplate{bibliography entry author}% \def\newblock{% \usebeamercolor[fg]{bibliography entry title}% \usebeamerfont{bibliography entry title}% \usebeamertemplate{bibliography entry title}% \def\newblock{% \usebeamercolor[fg]{bibliography entry location}% \usebeamerfont{bibliography entry location}% \usebeamertemplate{bibliography entry location}% \def\newblock{% \usebeamercolor[fg]{bibliography entry note}% \usebeamerfont{bibliography entry note}% \usebeamertemplate{bibliography entry note}}}}% \leavevmode\setbox\beamer@tempbox=\hbox{}\ht\beamer@tempbox=1.5em\box\beamer@tempbox} % The following code provided by Audrey http://tex.stackexchange.com/a/57247 \AtBeginDocument{% \@ifpackageloaded{biblatex} {\apptocmd{\blx@env@bibliography} {\let\makelabel\beamer@biblabeltemplate}{}{} \apptocmd{\abx@macro@begentry} {\let\bbx@tempa\@empty% \usebeamercolor[fg]{bibliography entry author}}{}{} \pretocmd{\abx@macro@labeltitle} {\ifboolexpr{ test {\ifcsundef{abx@field@label}} and test {\ifcsundef{abx@field@labeltitle}} }{}{\let\bbx@tempa\labelnamepunct}}{}{} \pretocmd{\abx@macro@title} {\ifcsundef{abx@name@labelname}{}{\let\bbx@tempa\labelnamepunct}% \bbx@tempa\newblock\unspace\usebeamercolor[fg]{bibliography entry title}}{}{} \apptocmd{\abx@macro@title} {\ifcsundef{abx@field@title}{}{\newunitpunct}% \newblock\usebeamercolor[fg]{bibliography entry note}}{}{}} {}} \mode
{ \AtBeginDocument{ \renewcommand<>{\bibitem}{\beameroriginal{\bibitem}}%should actually suppress } } % % Floats and tables % \newenvironment{figure}[1][]{% \def\@captype{figure}% \par\nobreak\begin{center}\nobreak} {\par\nobreak\end{center}} \newcounter{figure} \renewcommand\thefigure{\@arabic\c@figure} \newenvironment{table}[1][]{% \def\@captype{table}% \par\nobreak\begin{center}\nobreak} {\par\nobreak\end{center}\nobreak} \newcounter{table} \renewcommand\thetable{\@arabic\c@table} \newlength\abovecaptionskip \newlength\belowcaptionskip \setlength\abovecaptionskip{7pt} \setlength\belowcaptionskip{7pt} \def\caption{ \ifx\@captype\@undefined \@latex@error{\noexpand\caption outside figure or table}\@ehd \expandafter\@gobble \else \refstepcounter\@captype \expandafter\@firstofone \fi {\@dblarg{\@caption\@captype}}% } \long\def\@caption#1[#2]#3{% second argument ignored \par\nobreak \begingroup \@parboxrestore \if@minipage \@setminipage \fi \beamer@makecaption{#1}{\ignorespaces #3}\par\nobreak \endgroup} \long\def\beamer@makecaption#1#2{% \def\insertcaptionname{\csname#1name\endcsname}% \def\insertcaptionnumber{\csname the#1\endcsname}% \def\insertcaption{#2}% \nobreak\vskip\abovecaptionskip\nobreak \sbox\@tempboxa{\usebeamertemplate**{caption}}% \ifdim \wd\@tempboxa >\hsize \usebeamertemplate**{caption}\par \else \global \@minipagefalse \hb@xt@\hsize{\hfil\box\@tempboxa\hfil}% \fi \nobreak\vskip\belowcaptionskip\nobreak} \mode beamer/base/beamerbasetoc.sty0000644000175000017500000001614612050430504016131 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasetoc.sty,v 5ed0f4010e8a 2012/10/02 06:08:21 joseph $ \mode % % Local counters/ifs/dimensions % \newif\ifbeamer@pausesections \newif\ifbeamer@pausesubsections % % % Table of Contents Format % % \def\beamer@toc@sectionstyle#1{\beamer@toc@process\beamer@toc@cs\beamer@toc@os#1//} \def\beamer@toc@subsectionstyle#1{\beamer@toc@sprocess\beamer@toc@css\beamer@toc@oss\beamer@toc@ooss#1///} \def\beamer@toc@subsubsectionstyle#1{\beamer@toc@ssprocess\beamer@toc@csss\beamer@toc@osss\beamer@toc@oosss\beamer@toc@ooosss#1////} \define@key{beamertoc}{sectionstyle}{\beamer@toc@sectionstyle{#1}} \define@key{beamertoc}{subsectionstyle}{\beamer@toc@subsectionstyle{#1}} \define@key{beamertoc}{subsubsectionstyle}{\beamer@toc@subsubsectionstyle{#1}} \def\beamer@toc@process#1#2#3/#4/{% \beamer@ifempty{#4}{\def#1{#3}\def#2{#3}}{\def#1{#3}\def#2{#4}\@gobble}} \def\beamer@toc@sprocess#1#2#3#4/#5/#6/{% \beamer@ifempty{#5}% {\def#1{#4}\def#2{#4}\def#3{#4}} {\beamer@ifempty{#6} {\def#1{#4}\def#2{#5}\def#3{#5}\@gobble} {\def#1{#4}\def#2{#5}\def#3{#6}\@gobbletwo}}} \def\beamer@toc@ssprocess#1#2#3#4#5/#6/#7/#8/{% \beamer@ifempty{#6}% {\def#1{#5}\def#2{#5}\def#3{#5}\def#4{#5}} {\beamer@ifempty{#7} {\def#1{#5}\def#2{#6}\def#3{#6}\def#4{#6}\@gobble} {\beamer@ifempty{#8} {\def#1{#5}\def#2{#6}\def#3{#7}\def#4{#7}\@gobbletwo} {\def#1{#5}\def#2{#6}\def#3{#7}\def#4{#8}\expandafter\@gobble\@gobbletwo}}}% no gobblethree? } \define@key{beamertoc}{pausesections}[true]{\beamer@pausesectionstrue} \define@key{beamertoc}{pausesubsections}[true]{\beamer@pausesubsectionstrue} \define@key{beamertoc}{currentsection}[]{\beamer@toc@sectionstyle{show/shaded}\beamer@toc@subsectionstyle{show/show/shaded}\beamer@toc@subsubsectionstyle{show/show/shaded}} \define@key{beamertoc}{currentsubsection}[]{\beamer@toc@subsectionstyle{show/shaded}\beamer@toc@subsubsectionstyle{show/shaded}} \define@key{beamertoc}{hideallsubsections}[]{\beamer@toc@subsectionstyle{hide}\beamer@toc@subsubsectionstyle{hide}} \define@key{beamertoc}{hideothersubsections}[]{\beamer@toc@subsectionstyle{show/show/hide}\beamer@toc@subsubsectionstyle{show/shaded/hide}} \define@key{beamertoc}{part}{\beamer@showpartnumber=#1\relax} \define@key{beamertoc}{sections}{\beamer@parsetocsections#1[]} \define@key{beamertoc}{firstsection}{\beamer@sectionadjust=-#1\relax\advance\beamer@sectionadjust by 1\relax} \def\beamer@parsetocsections{\@ifnextchar<\beamer@@parsetocsections\beamer@@@parsetocsections} \def\beamer@@parsetocsections#1[]{\def\beamer@tocsections{#1}} \def\beamer@@@parsetocsections#1[]{\def\beamer@tocsections{}} \def\tableofcontents{\@ifnextchar[{\beamer@tableofcontents}{\beamer@tableofcontents[]}} \def\beamer@tableofcontents[#1]{% \def\beamer@toc@cs{show}% \def\beamer@toc@os{show}% \def\beamer@toc@css{show}% \def\beamer@toc@oss{show}% \def\beamer@toc@ooss{show}% \def\beamer@toc@csss{show}% \def\beamer@toc@osss{show}% \def\beamer@toc@oosss{show}% \def\beamer@toc@ooosss{show}% \beamer@showpartnumber=\c@part% \beamer@pausesectionsfalse% \beamer@pausesubsectionsfalse% \def\beamer@tocsections{<*>}% \setkeys{beamertoc}{firstsection=1}% \setkeys{beamertoc}{#1}% \vspace*{-.5em}{\makeatletter% \pause[0]% \@input{\jobname.toc}% \vfill}% } \renewcommand\addcontentsline[3]{\addtocontents{#1}{\protect\contentsline{#2}{#3}}} \def\beamer@tocaction@show#1{\usebeamertemplate**{#1}} \def\beamer@tocaction@shaded#1{\usebeamertemplate**{#1 shaded}} \def\beamer@tocaction@hide#1{} \def\beamer@tocact#1#2{\csname beamer@tocaction@#1\endcsname{#2}} \def\beamer@tocifnothide#1{\csname beamer@tocinvcheck@#1\endcsname} \let\beamer@tocinvcheck@hide\@gobble \def\beamer@hidetext{hide} \def\sectionintoc{} \def\beamer@sectionintoc#1#2#3#4#5{% \ifnum\c@tocdepth>0% \ifnum#4=\beamer@showpartnumber% { \beamer@saveanother% \gdef\beamer@todo{}% \beamer@slideinframe=#1\relax% \expandafter\only\beamer@tocsections{\gdef\beamer@todo{% \beamer@tempcount=#5\relax% \advance\beamer@tempcount by\beamer@sectionadjust% \edef\inserttocsectionnumber{\the\beamer@tempcount}% \def\inserttocsection{\hyperlink{Navigation#3}{#2}}% \beamer@tocifnothide{\ifnum\c@section=#1\beamer@toc@cs\else\beamer@toc@os\fi}% { \ifbeamer@pausesections\pause\fi% \ifx\beamer@toc@ooss\beamer@hidetext \vskip1.5em \else \vfill \fi {% \hbox{\vbox{% \def\beamer@breakhere{\\}% \beamer@tocact{\ifnum\c@section=#1\beamer@toc@cs\else\beamer@toc@os\fi}{section in toc}}}% \par% }% }% } }% \beamer@restoreanother% } \beamer@todo% \fi\fi% } \def\subsectionintoc{} \long\def\beamer@subsectionintoc#1#2#3#4#5#6{% \ifnum\c@tocdepth>1% \ifnum#5=\beamer@showpartnumber% { \beamer@saveanother% \gdef\beamer@todo{}% \beamer@slideinframe=#1\relax% \expandafter\only\beamer@tocsections{\gdef\beamer@todo{% \ifbeamer@pausesubsections\pause\fi% \beamer@tempcount=#6% \advance\beamer@tempcount by\beamer@sectionadjust% \edef\inserttocsectionnumber{\the\beamer@tempcount}% \def\inserttocsubsectionnumber{#2}% \def\inserttocsubsection{\hyperlink{Navigation#4}{#3}}% \beamer@tocifnothide{\ifnum\c@section=#1\beamer@toc@oss\else\beamer@toc@ooss\fi}% {% \def\beamer@breakhere{\\}% \beamer@tocact{\ifnum\c@section=#1\ifnum\c@subsection=#2\beamer@toc@css\else\beamer@toc@oss\fi\else\beamer@toc@ooss\fi} {subsection in toc}% }% }}% \beamer@restoreanother% } \beamer@todo% \fi\fi% } \def\subsubsectionintoc{} \long\def\beamer@subsubsectionintoc#1#2#3#4#5#6#7{% \ifnum\c@tocdepth>2% \ifnum#6=\beamer@showpartnumber% { \beamer@saveanother% \gdef\beamer@todo{}% \beamer@slideinframe=#2\relax% \expandafter\only\beamer@tocsections{\gdef\beamer@todo{% \ifbeamer@pausesubsections\pause\fi% \beamer@tempcount=#7% \advance\beamer@tempcount by\beamer@sectionadjust% \edef\inserttocsectionnumber{\the\beamer@tempcount}% \def\inserttocsubsectionnumber{#2}% \def\inserttocsubsubsectionnumber{#3}% \def\inserttocsubsubsection{\hyperlink{Navigation#5}{#4}}% \beamer@tocifnothide{\ifnum\c@section=#1\beamer@toc@oss\else\beamer@toc@ooss\fi}% {% \def\beamer@breakhere{\\}% \beamer@tocact{\ifnum\c@section=#1\ifnum\c@subsection=#2\ifnum\c@subsubsection=#3\beamer@toc@csss\else\beamer@toc@osss\fi\else\beamer@toc@oosss\fi\else\beamer@toc@ooosss\fi} {subsubsection in toc}% }% }}% \beamer@restoreanother% } \beamer@todo% \fi\fi% } \mode
{ \AtBeginDocument{ \let\beamer@origtableofcontents=\tableofcontents \renewcommand{\tableofcontents}[1][]{\beamer@origtableofcontents} } } \mode beamer/base/emulation/0000755000175000017500000000000012050430504014561 5ustar mohuramohurabeamer/base/emulation/beamerseminar.sty0000644000175000017500000000366612050430504020147 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/emulation/beamerseminar.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \newif\ifbeamerseminar@accumulated \beamerseminar@accumulatedfalse \DeclareOption{accumulated}{\beamerseminar@accumulatedtrue} \ProcessOptions \newcount\beamerseminar@overlay \def\overlay#1{% \beamerseminar@overlay=#1\relax% \advance\beamerseminar@overlay by1\relax% \ifbeamerseminar@accumulated% \expandafter\onslide\expandafter<\the\beamerseminar@overlay->% \else% \expandafter\onslide\expandafter<\the\beamerseminar@overlay>% \fi% \aftergroup\beamerseminar@endoverlay\ignorespaces} \def\beamerseminar@endoverlay{% \ifbeamerseminar@accumulated% \expandafter\onslide\expandafter<\the\beamerseminar@overlay->% \else% \expandafter\onslide\expandafter<\the\beamerseminar@overlay>% \fi} \newif\ifbeamerseminar@starred \newenvironment{slide}[1][]{% \beamerseminar@starredfalse \ifbeamer@inframe% \beamerseminar@overlay=1\bgroup\overlay{0}% \else% \frame[containsverbatim]\bgroup% \fi} {\egroup} \newenvironment{slide*}[1][]{\begin{slide}\beamerseminar@starredtrue}{\end{slide}} \newcommand{\newslide}{% \ifbeamerseminar@starred% \end{slide*}\begin{slide*}% \else% \end{slide}\begin{slide}% \fi} \beamerseminar@overlay=1 \def\blue{\color{blue}} \def\red{\color{red}} \def\green{\color{green}} \def\ptsize#1{} \newif\ifarticle \articlefalse \newif\ifslidesonly \slidesonlytrue \newif\ifslide \slidetrue \newif\ifportrait \portraitfalse \newif\ifcenterslides \centerslidestrue \newdimen\semin \newdimen\semcm \semin=.5in \semcm=.5cm \mode
{\articletrue\slidefalse\slidesonlyfalse} beamer/base/emulation/beamerfoils.sty0000644000175000017500000000345012050430504017614 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/emulation/beamerfoils.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \let\leftheader=\@gobble \let\rightheader=\@gobble \let\leftfooter=\@gobble \let\rightfooter=\@gobble \let\Restriction=\@gobble \let\marginpar=\@gobble \newcommand\LogoOff{\expandafter\global\logo{}} \newcommand\LogoOn{\expandafter\global\logo{\beamerfoils@logo}} \def\MyLogo#1{\gdef\beamerfoils@logo{#1}\LogoOn} \def\beamerfoils@logo{} \newtheorem*{Theorem*}{Theorem} \newtheorem*{Lemma*}{Lemma} \newtheorem*{Corollary*}{Corollary} \newtheorem*{Proposition*}{Proposition} \newtheorem*{Definition*}{Definition} \def\beamerfoils@closer{}% \newcommand\foilhead[2][]{% \beamerfoils@closer% \ifbeamer@inframe \gdef\beamerfoils@closer{}% \let\beamerfoils@next=\relax% \else \gdef\beamerfoils@closer{\egroup}% \let\beamerfoils@next=\beamerfoils@openframe% \fi \beamerfoils@next% \frametitle{#2}% } \let\rotatefoilhead=\foilhead \def\beamerfoils@openframe{\beamerfoils@origframe[allowframebreaks]\bgroup}% \let\beamerfoils@origframe=\frame \def\frame{\endfoil\beamerfoils@origframe} \def\endfoil{\beamerfoils@closer\gdef\beamerfoils@closer{}} \beamertemplatecontinuationtext \newenvironment{boldequation}{\boldmath\begin{equation}}{\end{equation}} \newenvironment{boldequation*}{\boldmath\begin{equation*}}{\end{equation*}} \DeclareRobustCommand\FoilTeX{{\normalfont{\sffamily Foil}\kern-.03em{\rmfamily\TeX}}} \def\bm#1{\mathpalette\bmstyle{#1}} \def\bmstyle#1#2{\mbox{\boldmath$#1#2$}} beamer/base/emulation/examples/0000755000175000017500000000000012050430504016377 5ustar mohuramohurabeamer/base/emulation/examples/beamerexample-foils.tex0000644000175000017500000000205412050430504023043 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/base/emulation/examples/beamerexample-foils.tex,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ % This file is a demonstration on how a foils file should be % changed to make it work with beamer. % Copyright notice: % Since foiltex has a restricted license, I'm not able to include an % original example from foiltex. Instead, I'm providing a simple % example that shows the basic usage. \documentclass{beamer} \usepackage{beamerfoils} \beamertemplatetheoremsnumbered \title{A Foils-To-Beamer Example} \author{Till Tantau} \MyLogo{\tiny-- Typeset by beamer emulation of \FoilTeX\ --} \leftheader{Till Tantau} \begin{document} \frame{ \maketitle } \foilhead{A first frame} Some text. \pagebreak More text on next slide. \foilhead{A third frame} Some text. \endfoil \end{document} beamer/base/emulation/examples/beamerexample-prosper.tex0000644000175000017500000000357012050430504023425 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/base/emulation/examples/beamerexample-prosper.tex,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \documentclass[notes]{beamer} % You might wish to try this instead of the above line: %\documentclass[class=article]{beamer} %\usepackage{beamerbasearticle} %\usepackage{hyperref} \usepackage[framesassubsections]{beamerprosper} \mode { \definecolor{beamerstructure}{RGB}{43,79,112} \definecolor{sidebackground}{RGB}{230,242,250} \color{beamerstructure} \usetheme{Goettingen} \usepackage{times} \userightsidebarcolortemplate{\color{sidebackground}} \beamertemplateballitem } \title{A Beamer Presentation Using (HA-)Prosper Commands} \subtitle{Subtitles Are Also Supported} \author{Till Tantau} \institution{The Institution is Mapped To Institute} \begin{document} \maketitle \tsectionandpart{Introduction} \overlays{2}{ \begin{slide}[trans=Glitter]{About this file} \begin{itemstep} \item This is a beamer presentation. \item You can use the prosper and the HA-prosper syntax. \item This is done by mapping prosper and HA-prosper commands to beamer commands. \item The emulation is by no means perfect. \end{itemstep} \end{slide} } \section{Second Section} \subsection{A subsection} \frame { \frametitle{A frame created using the \texttt{frame} command.} \begin{itemize}[<+->] \item You can still use the original beamer syntax. \item The emulation is intended only to make recycling slides easier, not to install a whole new syntax for beamer. \end{itemize} } \begin{notes}{Notes for these slides} My notes for these slides. \end{notes} \end{document} beamer/base/emulation/examples/beamerexample-texpower.tex0000644000175000017500000002417312050430504023612 0ustar mohuramohura% $Header: /Users/joseph/Documents/LaTeX/beamer/base/emulation/examples/beamerexample-texpower.tex,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ % This file is a demonstration on how a seminar file should be % changed to make it work with beamer. % Copyright notice: % Except for the changes indicated by CHANGED, this file is the original % file texpower-0.0.9d/doc/seminardemo.tex, which is part of the % examples of the texpower package. % seminardemo.tex,v 1.2 2002/11/14 20:46:00 hansfn Exp % % TeXPower bundle - dynamic online presentations with LaTeX % Copyright (C) 1999-2002 Stephan Lehmke % % This program is free software; you can redistribute it and/or % modify it under the terms of the GNU General Public License % as published by the Free Software Foundation; either version 2 % of the License, or (at your option) any later version. % % This program is distributed in the hope that it will be useful, % but WITHOUT ANY WARRANTY; without even the implied warranty of % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the % GNU General Public License for more details. % %----------------------------------------------------------------------------------------------------------------- % File: seminardemo.tex % % Simple examples the for combining the seminar class with the dynamic features provided by the package texpower.sty. % %----------------------------------------------------------------------------------------------------------------- % Autor: Stephan Lehmke % % v0.0.1 Jun 02, 2000: First version for the pre-alpha release of TeXPower. % % CHANGED: commented %\documentclass{seminar} % %% We need fixseminar for setting the page size correctly. % %\usepackage{fixseminar} % % %%----------------------------------------------------------------------------------------------------------------- %% The texpower package is loaded. %% We give the display option so dynamic features are enabled. %% %\usepackage[display]{texpower} % CHANGED: Added \documentclass[slidestop,usepdftitle=false]{beamer} \usepackage[accumulated]{beamerseminar} \usepackage{beamertexpower} \usepackage{beamerthemeshadow} % CHANGED: Moved \title and \author outside of slide \title{The \code{texpower} Package\\ {\normalfont \texttt{seminar} Demo}} \author[Stephan Lehmke]{Stephan Lehmke\\\code{mailto:Stephan.Lehmke@cs.uni-dortmund.de}} \begin{document} \begin{slide} \maketitle \newslide \tableofcontents \end{slide} % CHANGED: Added \frame, moved \section out, added \frametitle \section{A list environment} \frame{ \begin{slide} \centerslidesfalse \frametitle{A list environment} % The \pause command `splits' the current page at the place it appears, producing two pages, one with everything which % came before the \pause command, one containing this and additionally the stuff coming after \pause. When these pages % are presented with acrobar reader in full screen mode (or any other viewer with this capability), the presentation % will appear to `stop' at the point the \pause command was issued and `resume' in the moment the presenter switches to % the next page. \pause % As \pause forces a paragraph break, it can not be used to separate a description label from the associated text. For % this, we use the (very flexible) \stepwise command. Inside the argument of \stepwise, an arbitrary number of \step % commands may occur. \stepwise will produce as many pages as there are \step commands, making the arguments of the % \step commands appear ``one by one''. \stepwise {% \begin{description} \item[foo.] \step{bar.} \step{\item[baz.]} \step{qux.} \end{description} } \end{slide} } % CHANGED: Added \frame, moved \section out \section{An aligned equation} \frame{ \begin{slide} \centerslidesfalse \frametitle{An aligned equation} \pause % Normally for \stepwise, if a \step is not yet active, its argument is ignored completely. This would disturb % alignments, because the width changes with every new activated \step. % \parstepwise is a variant of \stepwise where the argument of an inactive \step is put into a \phantom, leaving the % proper amount of white space. \parstepwise {% % Using eqnarray with equation numbers here means all equation numbers will be visible from the outset, because only % the contents of the lines are `filled in'. See the full demo for an example of aligned equations where equation % numbers `appear'. \begin{eqnarray} % % When the argument of \step is put into a box (as it happens with \parstepwise), tabulators can not go in there. As % we want the equals sign to appear at the same time as the right side of the equation, we use \restep for the % latter. \restep is like \step, but it appears at the same time as the previous \step command. % \sum_{i=1}^{n} i & \step{=} & \restep{1 + 2 + \cdots + (n-1) + n}\\ % & \step{=} & \restep{1 + n + 2 + (n-1) + \cdots}\\ % & \step{=} & \restep {% We can nest \step commands inside each other. The order of execution is just the % order of appearance, independent of nesting. % \switch is a variant of \step which takes two arguments and toggles between them on % activation. This way, we can make the \underbrace `appear'. % We insert a \vphantom in the first argument so that the equation numbers will be % placed correctly whether or not the underbrace is didplayed. \switch {% \vphantom{\underbrace{(1 + n) + \cdots + (1 + n)}_{\times\frac{n}{2}}}% (1 + n) + \cdots + (1 + n)% } {\underbrace{(1 + n) + \cdots + (1 + n)}_{\times\frac{n}{2}}}% } \\ % % This is another nested application of \step. Note that the spacing of \cdot has to be corrected manually by % inserting {} left of it, because otherwise it would behave like a prefix operator. % & \step{=} & \restep{\frac{(1 + n)\step{{}\cdot n}}{\restep{2}}} \end{eqnarray} } \end{slide} } % CHANGED: Added \frame, moved \section out \section{An array} \frame{ \begin{slide} \centerslidesfalse \frametitle{An array} \stepwise {% With arrays, beware of problems with automatic calculation of cell widths. % % If you want all widths to be calculated automatically, you need to use \parstepwise, with the consequence that % a) tabulators or newlines can not go into the argument of \step, % b) the array `structure' (rules) will be completely visible right from the beginning. % % If you want to use \stepwise for being able to build the `structure' (like \hilne's) dynamically (as done in the % following), you have to make sure that the cell widths are correct from the very first line, because otherwise the % array will expand horizontally, destroying the dynamic effect. This can be assured by % a) using only p cells, % b) making sure all the cells in the first line are at least as wide as the widest cell which will appear later. If % you are using the calc package, this is easiest by putting \makebox[\widthof{widest entry}]{first entry} into % the first cell. Otherwise, you can use \settowidth. % \begin{displaymath} \begin{array}{rrrrr} \step {% n & \log n & n\log n & \lefteqn{n^2}\phantom{25} & \lefteqn{2^n}\phantom{32} \\ \hline% }% \step{0 &} \step{\textrm{---} &} \step{\textrm{---} &} \step{0 &} \step{1 \\}% \step{1 &} \step{0\phantom{.6} &} \step{0\phantom{.8} &} \step{1 &} \step{2 \\}% \step{2 &} \step{1\phantom{.6} &} \step{2\phantom{.8} &} \step{4 &} \step{4 \\}% \step{3 &} \step{1.6 &} \step{4.8 &} \step{9 &} \step{8 \\}% \step{4 &} \step{2\phantom{.6} &} \step{8\phantom{.8} &} \step{16 &} \step{16 \\}% \step{5 &} \step{2.3 &} \step{11.6 &} \step{25 &} \step{32 }% \end{array} \end{displaymath} } \end{slide} } % CHANGED: Added \frame, moved \section out \section{A picture} \frame{ \begin{slide} \centerslidesfalse \frametitle{A picture} \pause \begin{center}% \stepwise {% \setlength{\unitlength}{1.5\semcm}% \delimitershortfall-1sp% Just for the nested braces \begin{picture}(14,2) \put(0,1){\vector(1,0){1}} \put(0.5,0.5){\makebox(0,0){\small $x(t)$}} \put(13,1){\vector(1,0){1}} \put(13.5,0.5){\makebox(0,0){\small $y(t)$}} \step { \put(1,1){\line(3,2){1.5}} \put(1,1){\line(3,-2){1.5}} \put(2.5,0){\line(0,1){2}} \put(2,1){\makebox(0,0){\large $\varphi$}} } \step { \put(2.5,1){\vector(1,0){3.5}} \put(4.25,0.5){\makebox(0,0){\small $F_t = \varphi\left(x(t)\right)$}} } \step { \put(6,0){\framebox(2,2){\large $\Phi$}} } \step { \put(8,1){\vector(1,0){3.5}} % % Here, we find another nested use of \step inside \step. % \bstep is a variant of \step which _always_ puts its argument into a box for leaving the correct amount of % white space. We cannot use \parstepwise here because \put can't go into a box. Hence, just using \step for % building the nested formula on the next line would give the wrong size for the nested braces. % \put(9.75,0.5){\makebox(0,0){\footnotesize $G_t = \Phi\left(\bstep{\varphi\left(\bstep{x(t)}\right)}\right)$}} } \step { \put(13,1){\line(-3,2){1.5}} \put(13,1){\line(-3,-2){1.5}} \put(11.5,0){\line(0,1){2}} \put(12,1){\makebox(0,0){\large $\delta$}} } \end{picture}% }% \end{center}% \end{slide} } \end{document} beamer/base/emulation/examples/beamerexample-seminar.tex0000644000175000017500000003050312050430504023365 0ustar mohuramohura% $Header: /Users/joseph/Documents/LaTeX/beamer/base/emulation/examples/beamerexample-seminar.tex,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ % This file is a demonstration on how a seminar file should be % changed to make it work with beamer. % Copyright notice: % Except for the changes indicated by CHANGED, this file is the original % file semsamp2.tex, which is part of the examples of the seminar % package. %% BEGIN semsamp2.tex % This is a sample document for seminar.sty, v0.93 (and maybe later). % % This file contains both landscape and portrait mode slides. % Choose one of the following to print them out: % - If using PSTricks, try the semcolor style option. % - If using Rokicki's dvips, try the semrot style option. % - To print the landscape slides, put \landscapeonly in the preamble. % To print the portrait slides, include the portrait style option and % put \portraitonly in the preamble. % % % CHANGED: commented the following: %\documentstyle[% % slidesonly,% Try notes or notesonly instead. % %notes,% Use instead of slidesonly to typeset the notes. % %notesonly,% Use instead of slidesonly to typeset notes and slides. % %semcolor,% Try me if using PSTricks. % %semrot,% Try me if using Rokicki's dvips. % %semhelv,% Try me if using a PostScript printer. % %article,% Try me. % %portrait,% Try me. % %sem-a4,% Try me if using A4 paper. % semlayer% This must be included, but you need the semcolor option to % ]{seminar} % actually see the overlays. % %\slidesmag{5} %\articlemag{1} % %%\twoup % Try me for twoup printing. % %%\portraitonly % To print only portrait slides %%\landscapeonly % To print only landscape slides % %%\notslides{\ref{questions}-7,1} %Try me: The slides are omitted. %%\onlyslides{\ref{questions}-7,1} %Try me: Only these slides are included. %%\onlynotestoo %Try me: For selecting notes as well. % %\colorlayers{red,blue} % Try deleting this if using the semcolor option, % % to get \blue and \red to use PostScript color. % %%\overlaysfalse % Suppress overlays with semcolor option. %%\layersfalse % Suppress color layers with semcolor option. % %\rotateheaderstrue % Try this out if using rotation macros. % CHANGED: Added following three lines: \documentclass[ignorenonframetext]{beamer} \usepackage[accumulated]{beamerseminar} % remove ``accumulated'' option % for original behaviour \usepackage{beamerthemeclassic} \title{Example for seminar.sty} \author{Policarpa Salabarrieta} \date{July 21, 1991} \newcommand{\sref}[1]{SLIDE \ref{#1}} % CHANGED: different definition of \heading %\newcommand{\heading}[1]{\begin{center}\large\bf #1\end{center}} \let\heading=\frametitle % CHANGED: Commented: %\newpagestyle{MH}% % {University of Guaduas, March 13, 1998\hfil\thepage}{} %\pagestyle{MH} \begin{document} % CHANGED: Added \frame \frame{ \maketitle % This won't show up when \onlynotestoo is in effect. } % CHANGED: Commented %\begin{slide} % \ifslidesonly % Title slide only for slidesonly selection. % \maketitle % \addtocounter{slide}{-1} % \slidepagestyle{empty} % \fi %\end{slide} This is a lot of gobbledy-gook intended only to illustrate some of the features of seminar.sty. The phrase information overload rings a bell with just about anyone. Certainly you all receive more working papers or more applications for graduate school than you can readily read. Nevertheless, the term information overload is ill-defined. (\sref{too_much}, top) A message like this when you check your email conjures up the notion of information overload. More generally, information overload always means too much information, in some sense or another. But what does ``too much'' mean? (\sref{too_much}, bottom) It might just mean that people cannot process all the information they receive. That is certainly true for everyone. A claim that is much stronger, and that is implicit when people complain about informaton overload, is that people {\em should} receive less information, by some criterion. % CHANGED: Added \frame \frame{ \begin{slide}\label{too_much}% \begin{center} \large\bf Information overload = ``Too much'' information \end{center} \smallskip \begin{verse} \bf\tt You have 134 unread messages:\\ Do you want to read them now? \end{verse} \begin{enumerate} {\overlay2 \item People {\overlay1 cannot process all} the information they receive.} \item People {\em should} receive less information. \end{enumerate} \end{slide} } In this paper, I use the term ``information overload'' in both senses. (\sref{overload}, bottom). Specifically, I say that an {\em individual} is overloaded with information if she receives more information than she can process. But I say that there is information overload in a {\em network} if there is some mechanism that makes the senders and/or receivers better off by restricting the flow of information. This latter notion of information overload is an equilibrium property, and it depends on what we mean by ``better off.'' % CHANGED: Added \frame \frame{ \begin{slide*}\label{overload} \ptsize{12} \begin{itemize}{\overlay1 \item There is information {\overlay0 overload in a network if} there is some mechanism that, compared to the {\em status quo}, makes the senders and/or receivers better off by restricting the flow} of information.' \item There is information overload in a network if there is some mechanism that, compared to the {\em status quo}, makes the senders and/or receivers better off by restricting the flow of information. \end{itemize} \end{slide*} } (\sref{questions}) The purpose of my paper is to show why there can be information overload in a network and what kind of mechanisms can make the receivers and/or senders better off. Since the cost of communication is one factor that restricts communication, I am thus also going to look at how the welfare of the senders and receivers depends on the cost of communication. Most messages don't become jumbled and we can choose which ones to process. But some of us may have a bias towards choosing to process more information than we should, like the graduate student who feels compelled to read every article on the usual lengthy reading list, and just ends up getting confused and ruffling through the papers. % CHANGED: Added \frame \frame{ \begin{slide}[7.3in,5.5in] \label{questions} \heading{Questions} \begin{itemize} {\overlay1\item When could {\blue there be overload} in networks?} \item What mechanims make the receivers and senders better off? \item How does the welfare {\red of the senders} and receivers depend on the cost of communication? \end{itemize} \end{slide} } However, experiments in consumer research and psychology have failed to find that such a bias is prevalent. This is in spite of the fact that it is common for stress and cognitive strain to increase with information load. We may incur such stress and strain because the information we choose to process is valuable to us. More commonly, then, we can and do choose to process roughly as much information as we can handle efficiently. This is called screening. But when we choose which messages to begin to process, we're ignorant of their contents, since otherwise there would be no reason to process them in the first place. Therefore, if we receive more junk mail, then some of the important mail gets crowded out, and we are effectively less informed. % CHANGED: Added \frame \frame{ \begin{slide} \label{informed} \begin{center} {\bf Being more informed} \par \smallskip is always better,\par \medskip \overlay1{but it's not the same as \par \smallskip {\bf receiving more information}} \end{center} \end{slide} } Why would the senders communicate too many messages in the first place? If I present too much material in this seminar, you have to choose which parts to ignore and I would rather make that decision myself, since I know what I most want to get across. Thus, it is in my interest not to overload you with information. Generally, whenever there is a single sender of messages, that sender will prefer to screen rather than have the receiver screen, because the sender has an interest in which messages the receiver processes. But when there are more senders, one sender's messages tend to crowd out the messages of the other senders, as in this example here. If the senders don't take this external cost into account when sending messages, they may collectively overload the receiver. (\sref{akbar}) There are several reasons that our scarcity of attention, that is, our limited capacity to process information, can mean that we become less informed when we receive more information. I have a cartoon here to illustrate these reasons. (\sref{akbar}) % CHANGED: Added \frame \frame{ \begin{slide}\label{akbar}\def\slidefuzz{15pt} {\large A tax $\tau$ on communication is said to support $\tilde{\cal{X}}(c)$ if $\tilde{\cal{X}}(c)$ is an equilibrium for $\Gamma(c+\tau)$.} \medskip {\bf Proposition 6.} {\em Assume $\tilde{\cal{X}}(c)$ is not an equilibrium for $\Gamma(c)$.\vspace{-3pt} \begin{enumerate} \item If $\mbox{supp}(\gamma)=[0,1]^n$, there is no tax that supports $\tilde{\cal{X}}(c)$. \item If $\mbox{supp}(\gamma)=S^{n-1}$, there is a tax that supports $\tilde{\cal{X}}(c)$ if and only if $m=1$, $p_j>c\, \forall j$, and \begin{enumerate} \item $n=2$; or \item $n=3$ and $p_i^{-1}+p_j^{-1}\geq p_k^{-1}$ for all distinct $i,j,k$; or \item $n=4$ and $p_1=p_2=p_3=p_4$. \end{enumerate} \end{enumerate}} \end{slide} } If, by restricting communication, we eliminate the less relevant messages, then we can become more informed. But how can we achieve this? Restricting the flow of information shifts the task of screening messages from the receivers to the senders. Unlike the receivers, the senders do know the contents of the messages they originate. If the senders' interests coincide with those of the receiver and if the senders have sufficient knowledge about the receivers, then the senders will choose the messages which are most relevant to the receivers. This may make the receivers, and even the senders, better off. The network in Slide \ref{architectures} attains the minimal delay $c(8,24) = 6$ using 8 processors. It is an example of the efficient one-shot networks described by Foo. We will focus on a class of networks that are similar to the Foo networks but that may differ slightly. For $q$, $c$ and $n$ such that $1 \leq q \leq \lfloor n/2 \rfloor$ and $c(q,n) \leq c \leq n$, let $R_{nqc}$ be the class of essential networks for adding $n$ items using $q$ processors in $c$ cycles that have the following properties: % CHANGED: Added \frame \frame{ \begin{slide*}\label{architectures} \heading{Architecture} \begin{center} \setlength{\unitlength}{1.65in} \begin{picture}(1.1,1.6)(3.5,5.0) \put(4.0,6.5){\circle*{.04}} \put(4.1,6.5){1} \put(4.0,6.0){\circle*{.04}} \put(4.1,6.0){2} \put(4.0,6.1){\vector(0,1){.3}} \put(3.5,6.0){\circle*{.04}} \put(3.6,6.0){3} \put(3.6,6.1){\vector(1,1){.3}} \put(4.0,5.5){\circle*{.04}} \put(4.1,5.5){4} \put(4.0,5.6){\vector(0,1){.3}} \put(4.5,6.0){\circle*{.04}} \put(4.6,6.0){5} \put(4.4,6.1){\vector(-1,1){.3}} \put(4.5,5.5){\circle*{.04}} \put(4.6,5.5){6} \put(4.4,5.6){\vector(-1,1){.3}} \put(3.5,5.5){\circle*{.04}} \put(3.6,5.5){7} \put(3.5,5.6){\vector(0,1){.3}} \put(4.0,5.0){\circle*{.04}} \put(4.1,5.0){8} \put(4.0,5.1){\vector(0,1){.3}} \end{picture} \end{center} \end{slide*} } Why would the senders communicate too many messages in the first place? If I present too much material in this seminar, you have to choose which parts to ignore and I would rather make that decision myself, since I know what I most want to get across. Thus, it is in my interest not to overload you with information. Generally, whenever there is a single sender of messages, that sender will prefer to screen rather than have the receiver screen, because the sender has an interest in which messages the receiver processes. But when there are more senders, one sender's messages tend to crowd out the messages of the other senders, as in this example here. If the senders don't take this external cost into account when sending messages, they may collectively overload the receiver. (\sref{architectures}) \end{document} %% END semsamp2.tex beamer/base/emulation/beamerprosper.sty0000644000175000017500000001367312050430504020202 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % Copyright 2011 by Vedran Mileti\'c, Joseph Wright % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/emulation/beamerprosper.sty,v 70f9d8411e54 2011/09/12 18:58:34 joseph $ \let\beamerprosper@entry=\@gobble \DeclareOption{framesassubsections}{\mode {\def\beamerprosper@entry#1{\beamer@ifempty{#1}{}{\subsection{#1}}}}} \ProcessOptions % Redefine \institution inside \author \mode { \def\author{\@dblarg\beamer@author} \def\beamer@author[#1]#2{% \def\insertauthor{\def\inst{\beamer@insttitle}\def\and{\beamer@andtitle}% \let\institution=\beamer@institution#2}% \def\beamer@shortauthor{\let\institution=\beamer@shortinstitution#1}% } \def\beamer@institution#1{\footnotesize #1} \def\beamer@shortinstitution#1{\ } \def\institution{\institute} } \mode
{ \def\institution#1{#1} } \newcommand\email[1]{\texttt{#1}} \define@key{beamerprosper}{toc}{\def\beamerprosper@toc{#1}} \define@key{beamerprosper}{template}{} \define@key{beamerprosper}{trans}{\def\beamerprosper@trans{#1}} \define@key{beamerprosper}{Glitter}[true]{\def\beamerprosper@trans{Glitter}} \define@key{beamerprosper}{R}[true]{\def\beamerprosper@trans{R}} \define@key{beamerprosper}{Replace}[true]{\def\beamerprosper@trans{Replace}} \define@key{beamerprosper}{Split}[true]{\def\beamerprosper@trans{Split}} \define@key{beamerprosper}{Blinds}[true]{\def\beamerprosper@trans{Blinds}} \define@key{beamerprosper}{Box}[true]{\def\beamerprosper@trans{Box}} \define@key{beamerprosper}{Wipe}[true]{\def\beamerprosper@trans{Wipe}} \define@key{beamerprosper}{Dissolve}[true]{\def\beamerprosper@trans{Dissolve}} \define@key{beamerprosper}{Glitter}[true]{\def\beamerprosper@trans{Glitter}} \newcommand{\PDForPS}[2]{\ifpdf#1\else#2\fi} \newcommand{\onlyInPDF}[1]{\ifpdf#1\fi} \newcommand{\onlyInPS}[1]{\ifpdf\else#1\fi} \newenvironment{slide}[2][]{% \def\beamerprosper@toc{#2} \def\beamerprosper@trans{}% \setkeys{beamerprosper}{#1}% \expandafter\beamerprosper@entry\expandafter{\beamerprosper@toc}% \edef\@temp{\noexpand\begin{frame}\beamerprosper@options}% \@temp\PDFtransition{\beamerprosper@trans}\frametitle{#2}}{\end{frame}} \def\beamerprosper@options{[containsverbatim]} \long\def\overlays#1#2{{\def\beamerprosper@options{}#2}} \def\fromSlide{\@ifstar{\beamer@sfromSlide}{\beamer@fromSlide}} \newcommand{\beamer@fromSlide}[2]{\uncover<#1->{#2}} \newcommand{\beamer@sfromSlide}[2]{\only<#1->{#2}} \def\onlySlide{\@ifstar{\beamer@sonlySlide}{\beamer@onlySlide}} \newcommand{\beamer@onlySlide}[2]{\uncover<#1>{#2}} \newcommand{\beamer@sonlySlide}[2]{\only<#1>{#2}} \def\untilSlide{\@ifstar{\beamer@suntilSlide}{\beamer@untilSlide}} \newcommand{\beamer@untilSlide}[2]{\uncover<-#1>{#2}} \newcommand{\beamer@suntilSlide}[2]{\only<-#1>{#2}} \newcommand\FromSlide[1]{\onslide<#1->} \newcommand\OnlySlide[1]{\onslide<#1>} \newcommand\UntilSlide[1]{\onslide<-#1>} \newcommand\slideCaption[1]{\date{#1}} \def\Logo{\@ifnextchar(\beamer@Logo\logo} \def\beamer@Logo(#1,#2){\logo} \let\DefaultTransition=\@gobble \let\NoFrenchBabelItemize=\relax \let\TitleSlideNav=\@gobble \let\NormalSlideNav=\@gobble \let\LeftFoot=\@gobble \let\RightFoot=\@gobble \AtBeginDocument{\let\beamer@steporigitem=\item} \newenvironment{Itemize}{\begin{itemize}}{\end{itemize}} \newenvironment{itemstep}[1][]{\begin{itemize}[<+->]}{\end{itemize}} \newenvironment{enumstep}[1][]{\begin{enumerate}[<+->]}{\end{enumerate}} \newcommand\prosperpart[2][]{\begin{slide}[#1]{}\begin{centering}\Large\structure{#2}\par\end{centering}\end{slide}} \newcommand{\hiddenitem}{\addtocounter{beamerpauses}{1}} \newcommand{\FontTitle}[2]{} \newcommand{\FontText}[2]{} \newcommand{\fontTitle}[1]{#1} \newcommand{\fontText}[1]{#1} \newcommand{\ColorFoot}[1]{} \newcommand{\PDFtransition}[1]{\csname beamer@trans#1\endcsname} \def\beamer@trans{} \def\beamer@transR{} \def\beamer@transReplace{} \def\beamer@transSplit{\transsplithorizontalout} \def\beamer@transBlinds{\transblindshorizontal} \def\beamer@transBox{\transboxout} \def\beamer@transWipe{\transwipe} \def\beamer@transDissolve{\transdissolve} \def\beamer@transGlitter{\transglitter} \newcommand{\myitem}[2]{} \def\tsection{\@ifstar\section\section} \def\tsectionandpart{\@ifstar\beamerprosper@tsp\beamerprosper@tsp} \newcommand\beamerprosper@tsp[2][]{% \def\beamerprosper@toc{#2}% \def\beamerprosper@trans{}% \setkeys{beamerprosper}{#1}% \expandafter\section\expandafter{\beamerprosper@toc} \mode{\expandafter\prosperpart\expandafter[\beamerprosper@trans]{#2}}} \newbox\beamerprosper@notebox \newenvironment{notes}[1]{% \begingroup% \textwidth=10.8cm\hsize=\textwidth\setbox\beamerprosper@notebox=\vbox\bgroup \begin{small}\textbf{#1}\par\medskip} {\par\end{small}\egroup\note{\box\beamerprosper@notebox} \endgroup} \let\wideslide=\slide \let\endwideslide=\endslide \let\HAPsetup=\@gobble \newdimen\beamerprosper@leftwidth \newdimen\beamerprosper@rightwidth \define@key{beamerprosper}{lcolwidth}{\beamerprosper@leftwidth=#1\relax} \define@key{beamerprosper}{rcolwidth}{\beamerprosper@rightwidth=#1\relax} \define@key{beamerprosper}{lfrheight}{} \define@key{beamerprosper}{rfrheight}{} \define@key{beamerprosper}{frsep}{} \define@key{beamerprosper}{colsep}{} \define@key{beamerprosper}{topsep}{} \define@key{beamerprosper}{bottomsep}{} \define@key{beamerprosper}{indent}{} \def\dualslide{\@ifnextchar[{\beamerprosper@gobble}{\beamerprosper@dual}} \long\def\beamerprosper@gobble[#1]{\dualslide} \long\def\beamerprosper@dual#1#2#3{% \beamerprosper@leftwidth=0.47\linewidth% \beamerprosper@rightwidth=0.47\linewidth% \setkeys{beamerprosper}{#1}% \begin{columns}[t,onlytextwidth]% \column{\beamerprosper@leftwidth}% #2% \column{\beamerprosper@rightwidth}% #3% \end{columns}\bigskip} beamer/base/emulation/beamertexpower.sty0000644000175000017500000000246612050430504020363 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/emulation/beamertexpower.sty,v 14743c450e2c 2010/06/17 09:25:56 rivanvx $ \long\def\stepwise#1{{\nonboxedsteps#1}} \long\def\parstepwise#1{{\boxedsteps#1}} \long\def\liststepwise{\vspace*{\parskip}\hrule \@height\z@\stepwise} \long\def\step#1{\beamerpower@action<+(1)->{#1}} \long\def\steponce#1{\beamerpower@action<+(1)>{#1}} \long\def\switch#1#2{\alt<+(1)->{#2}{#1}} \long\def\bstep#1{{\boxedsteps\step{#1}}} \long\def\dstep{\addtocounter{beamerpauses}{1}} \long\def\vstep{\addtocounter{beamerpauses}{1}} \def\restep{\addtocounter{beamerpauses}{-1}\step} \def\reswitch{\addtocounter{beamerpauses}{-1}\switch} \def\rebstep{\addtocounter{beamerpauses}{-1}\bstep} \def\redstep{\addtocounter{beamerpauses}{-1}\dstep} \def\revstep{\addtocounter{beamerpauses}{-1}\vstep} \def\boxedsteps{\let\beamerpower@action=\uncover} \def\nonboxedsteps{\let\beamerpower@action=\only} \boxedsteps \DeclareRobustCommand{\code}[1]{\textbf{\texttt{#1}}}% \DeclareRobustCommand{\codeswitch}{\bfseries\ttfamily}% beamer/base/beamerbasemisc.sty0000644000175000017500000001726012050430504016275 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasemisc.sty,v 2ff5461be705 2012/02/24 19:44:11 joseph $ \mode % Maximum dead cycles \maxdeadcycles=1000 % Calculate maximum number of sections/subsections per part \beamer@subsubsectionmax=0\relax \beamer@subsectionmax=0\relax \beamer@sectionmax=0\relax \beamer@sectioncount=0\relax \def\headcommand#1{\global\advance\beamer@totalheads by1\relax% \expandafter\gdef\csname @@head\the\beamer@totalheads\endcsname{#1}} \def\dohead{\beamer@headcounter=0\relax\loop\ifnum\beamer@headcounter<\beamer@totalheads% \advance\beamer@headcounter by1\relax% \csname @@head\the\beamer@headcounter\endcsname\repeat} \def\beamer@startpageofframe{1} \def\beamer@endpageofframe{1} \def\beamer@startpageofsubsection{1} \def\beamer@endpageofsubsection{1} \def\beamer@startpageofsection{1} \def\beamer@endpageofsection{1} \def\beamer@startpageofpart{1} \def\beamer@endpageofpart{1} \def\beamer@endpageofdocument{1} \def\beamer@startpageofappendix{} \def\inserttotalframenumber{1} \def\partentry#1#2{\beamer@sectioncount=0\relax} \def\beamer@initsectionentry#1#2#3#4#5{\advance\beamer@sectioncount by1\relax% \ifnum\beamer@sectionmax<\beamer@sectioncount\beamer@sectionmax=\beamer@sectioncount\fi} \def\beamer@initslideentry#1#2#3#4#5#6{\ifnum\beamer@subsectionmax<#2\relax\beamer@subsectionmax=#2\fi} \def\beamer@initsubsubsectionentry#1#2#3#4#5#6{\ifnum\beamer@subsubsectionmax<#4\relax\beamer@subsectionmax=#4\fi} \def\beamer@framepages#1#2{} \def\beamer@subsectionpages#1#2{} \def\beamer@sectionpages#1#2{} \def\beamer@partpages#1#2{} \def\beamer@appendixpages#1{\gdef\beamer@startpageofappendix{#1}} \def\beamer@documentpages#1{\gdef\beamer@endpageofdocument{#1}} \setlength\lineskip{1\p@} \setlength\normallineskip{1\p@} \renewcommand\baselinestretch{} \setlength\parskip{0\p@}% \@plus \p@} \@lowpenalty 51 \@medpenalty 151 \@highpenalty 301 \setcounter{topnumber}{2} \renewcommand\topfraction{.7} \setcounter{bottomnumber}{1} \renewcommand\bottomfraction{.3} \setcounter{totalnumber}{3} \renewcommand\textfraction{.9}%.2} \renewcommand\floatpagefraction{.1}%5} \setcounter{dbltopnumber}{2} \renewcommand\dbltopfraction{.7} \renewcommand\dblfloatpagefraction{.5} \@beginparpenalty -\@lowpenalty \@endparpenalty -\@lowpenalty \@itempenalty -\@lowpenalty \g@addto@macro\beamer@lastminutepatches{ \beamer@activecjk \makeatletter \@input{\jobname.nav} \let\beamer@sectionentryorig=\sectionentry \let\beamer@slideentryorig=\slideentry \let\beamer@subsubsectionentryorig=\beamer@subsubsectionentry \let\sectionentry=\beamer@initsectionentry \let\slideentry=\beamer@initslideentry \let\beamer@subsubsectionentry=\beamer@initsubsubsectionentry \dohead \let\sectionentry=\beamer@sectionentryorig \let\slideentry=\beamer@slideentryorig \let\beamer@subsubsectionentry=\beamer@subsubsectionentryorig \beamer@calculateheadfoot \ifbeamer@draftmode \setbeamertemplate{footline}{ \color{black!25}% \kern-\Gm@lmargin\vrule width\paperwidth height\footheight\kern-\Gm@rmargin} \setbeamertemplate{headline}{ \color{black!25}% \kern-\Gm@lmargin\vrule width\paperwidth height\headheight\kern-\Gm@rmargin} \setbeamertemplate{sidebar left}{% \color{black!20}% \vrule width \beamer@leftsidebar height\sidebarheight} \setbeamertemplate{sidebar right}{% \color{black!20}% \vrule width \beamer@rightsidebar height\sidebarheight} \setbeamertemplate{sidebar canvas left}{} \setbeamertemplate{sidebar canvas right}{} \fi \makeatother } \setcounter{tocdepth}{3} \setlength\arraycolsep{5\p@} \setlength\tabcolsep{6\p@} \setlength\arrayrulewidth{.4\p@} \setlength\doublerulesep{2\p@} \setlength\tabbingsep{\labelsep} \skip\@mpfootins = \skip\footins \setlength\fboxsep{3\p@} \setlength\fboxrule{.4\p@} \newcommand\contentsname{\translate{Contents}} \newcommand\listfigurename{\translate{List of Figures}} \newcommand\listtablename{\translate{List of Tables}} \newcommand\refname{\translate{References}} \newcommand\bibname{\translate{Bibliography}} \newcommand\indexname{\translate{Index}} \newcommand\figurename{\translate{Figure}} \newcommand\algorithmname{\translate{Algorithm}} \newcommand\tablename{\translate{Table}} \newcommand\partname{\translate{Part}} \newcommand\chaptername{\translate{Chapter}} \newcommand\appendixname{\translate{Appendix}} \newcommand\abstractname{\translate{Abstract}} % This is suboptimal; for full localization babel should be used. \def\today{\ifcase\month\or \translate{January}\or \translate{February}\or \translate{March}\or \translate{April}\or \translate{May}\or \translate{June}\or \translate{July}\or \translate{August}\or \translate{September}\or \translate{October}\or \translate{November}\or \translate{December}\fi \space\number\day, \number\year} \setlength\columnsep{10\p@} \setlength\columnseprule{0\p@} \onecolumn \parindent0pt \AtEndDocument{% \clearpage \beamer@tempcount=\c@page\advance\beamer@tempcount by -1% \if@filesw \immediate\write\@auxout{\string\@writefile{nav}% {\noexpand\headcommand{\noexpand\beamer@partpages{\the\beamer@partstartpage}{\the\beamer@tempcount}}}}% \immediate\write\@auxout{\string\@writefile{nav}% {\noexpand\headcommand{\noexpand\beamer@subsectionpages{\the\beamer@subsectionstartpage}{\the\beamer@tempcount}}}}% \immediate\write\@auxout{\string\@writefile{nav}% {\noexpand\headcommand{\noexpand\beamer@sectionpages{\the\beamer@sectionstartpage}{\the\beamer@tempcount}}}}% \immediate\write\@auxout{\string\@writefile{nav}% {\noexpand\headcommand{\noexpand\beamer@documentpages{\the\beamer@tempcount}}}} \immediate\write\@auxout{\string\@writefile{nav}% {\noexpand\headcommand{\noexpand\def\noexpand\inserttotalframenumber{\the\c@framenumber}}}} \newwrite\tf@nav \immediate\openout\tf@nav\jobname.nav\relax \newwrite\tf@toc \immediate\openout\tf@toc\jobname.toc\relax \newwrite\tf@snm \immediate\openout\tf@snm\jobname.snm\relax \fi } % % Managing short inserts % \define@key{beamerst}{respectlinebreaks}[true]{% \def\beamer@stlinebreakrule{}} \define@key{beamerst}{width}{% \def\beamer@ststart{% \begin{minipage}[t]{#1}% \raggedright% \beamer@stalign% \beamer@stlinebreakrule% }% \def\beamer@stend{\end{minipage}}} \define@key{beamerst}{center}[true]{% \def\beamer@stalign{\centering}} \define@key{beamerst}{spill}[true]{% \def\beamer@stalign{\parshape...}}% \newcommand{\beamer@setupshort}[1]{% \def\beamer@stlinebreakrule{\def\\{}}% \def\beamer@stalign{}% \def\beamer@ststart{\hbox\bgroup\def\\{}}% \def\beamer@stend{\egroup}% \setkeys{beamerst}{#1}}% \newcommand{\beamer@insertshort}[1]{% \beamer@ststart#1\beamer@stend% } \mode \AtBeginDocument { \ifx\includegraphics\@undefined \else \renewcommand<>\includegraphics[2][]{\only#3{\beameroriginal\includegraphics[{#1}]{#2}}\ignorespaces} % Deal with star case (unique for overlay-aware commands) \let\beamer@includegraphics@maybe@star\includegraphics \DeclareRobustCommand\includegraphics{% \@ifstar {\Gin@cliptrue \beamer@includegraphics@maybe@star} {\Gin@clipfalse \beamer@includegraphics@maybe@star}% } \fi \ifx\pgfuseimage\@undefined \else \renewcommand<>\pgfuseimage[1]{\only#2{\beameroriginal\pgfuseimage{#1}}\ignorespaces} \renewcommand<>\pgfimage[2][]{\only#3{\beameroriginal\pgfimage[{#1}]{#2}}\ignorespaces} \fi } beamer/base/themes/0000755000175000017500000000000012050430504014051 5ustar mohuramohurabeamer/base/themes/font/0000755000175000017500000000000012050430504015017 5ustar mohuramohurabeamer/base/themes/font/beamerfontthemestructureitalicserif.sty0000644000175000017500000000146412050430504025132 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/font/beamerfontthemestructureitalicserif.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \def\beamer@ftb@str{% \setbeamerfont{structure}{shape=\itshape,family=\rmfamily} \setbeamerfont{block title}{size={}} } \def\beamer@ftb@tstr{\setbeamerfont{tiny structure}{shape=\itshape,family=\rmfamily}} \DeclareOptionBeamer{onlysmall}{\let\beamer@ftb@str=\relax} \DeclareOptionBeamer{onlylarge}{\let\beamer@ftb@tstr=\relax} \ProcessOptionsBeamer \mode \beamer@ftb@str \beamer@ftb@tstr \mode beamer/base/themes/font/beamerfontthemeprofessionalfonts.sty0000644000175000017500000000067712050430504024436 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/font/beamerfontthemeprofessionalfonts.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode{\beamer@suppressreplacementstrue} beamer/base/themes/font/beamerfontthemedefault.sty0000644000175000017500000001002012050430504022263 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/font/beamerfontthemedefault.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamerfont{normal text}{} % ignored currently \setbeamerfont{alerted text}{} \setbeamerfont{example text}{} \setbeamerfont{structure}{} \setbeamerfont{tiny structure}{size=\tiny} \setbeamerfont{title}{size=\Large,parent=structure} \setbeamerfont{title in head/foot}{} \setbeamerfont{title in sidebar}{size=\tiny} \setbeamerfont{subtitle}{size=\normalsize,parent=title} \setbeamerfont{author}{} \setbeamerfont{author in head/foot}{} \setbeamerfont{author in sidebar}{size=\tiny} \setbeamerfont{institute}{size=\scriptsize} \setbeamerfont{institute in head/foot}{} \setbeamerfont{institute in sidebar}{} \setbeamerfont{date}{} \setbeamerfont{date in head/foot}{} \setbeamerfont{date in sidebar}{} \setbeamerfont{part name}{size=\LARGE} \setbeamerfont{part title}{size=\LARGE,parent=title} \setbeamerfont{section name}{size=\Large} \setbeamerfont{section title}{size=\Large,parent=title} \setbeamerfont{section in toc}{parent=structure} \setbeamerfont{section in toc shaded}{parent=section in toc} \setbeamerfont{section in head/foot}{} \setbeamerfont{section in sidebar}{size=\tiny} \setbeamerfont{section number projected}{size=\small,parent={section in toc,projected text}} \setbeamerfont{subsection name}{size=\large} \setbeamerfont{subsection title}{size=\large,parent=title} \setbeamerfont{subsection in toc}{} \setbeamerfont{subsection in toc shaded}{parent=subsection in toc} \setbeamerfont{subsection in head/foot}{} \setbeamerfont{subsection in sidebar}{} \setbeamerfont{subsubsection in toc}{size=\footnotesize} \setbeamerfont{subsubsection in toc shaded}{parent=subsubsection in toc} \setbeamerfont{subsubsection in head/foot}{} \setbeamerfont{subsubsection in sidebar}{} \setbeamerfont{headline}{parent={tiny structure}} \setbeamerfont{footline}{parent={tiny structure}} \setbeamerfont{sidebar}{size=\Tiny,parent={tiny structure}} \setbeamerfont{sidebar left}{parent=sidebar} \setbeamerfont{sidebar right}{parent=sidebar} \setbeamerfont{frametitle}{parent=structure,size=\Large} \setbeamerfont{framesubtitle}{parent=frametitle,size=\footnotesize} \setbeamerfont{caption}{size=\small} \setbeamerfont{caption name}{parent={structure,caption}} \setbeamerfont{button}{size=\tiny} \setbeamerfont{block body}{} \setbeamerfont{block body alerted}{} \setbeamerfont{block body example}{} \setbeamerfont{block title}{size=\large,parent={structure,block body}} \setbeamerfont{block title alerted}{parent={block title,alerted text}} \setbeamerfont{block title example}{parent={block title,example text}} \setbeamerfont{item}{parent=structure} \setbeamerfont{subitem}{parent=item} \setbeamerfont{subsubitem}{parent=subitem} \setbeamerfont{item projected}{size=\tiny,parent={item,projected text}} \setbeamerfont{subitem projected}{parent=item projected} \setbeamerfont{subsubitem projected}{parent=subitem projected} \setbeamerfont{itemize item}{parent=item} \setbeamerfont{itemize subitem}{parent=subitem} \setbeamerfont{itemize subsubitem}{parent=subsubitem} \setbeamerfont{enumerate item}{parent=item} \setbeamerfont{enumerate subitem}{parent=subitem} \setbeamerfont{enumerate subsubitem}{parent=subsubitem} \setbeamerfont{itemize/enumerate body}{} \setbeamerfont{itemize/enumerate subbody}{size=\small} \setbeamerfont{itemize/enumerate subsubbody}{size=\footnotesize} \setbeamerfont{description item}{parent=item} \setbeamerfont{projected text}{parent={tiny structure}} \setbeamerfont{abstract}{size=\small} \setbeamerfont{abstract title}{parent={abstract,structure},size=\normalsize} \setbeamerfont{verse}{family=\rmfamily,shape=\itshape} \setbeamerfont{quotation}{shape=\itshape} \setbeamerfont{quote}{parent=quotation} \setbeamerfont{note page}{size=\small} \mode beamer/base/themes/font/beamerfontthemeserif.sty0000644000175000017500000000212712050430504021760 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/font/beamerfontthemeserif.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \DeclareOptionBeamer{stillsansserifmath}[]{\def\mathfamilydefault{\sfdefault}\beamer@sansmathtrue} \DeclareOptionBeamer{stillsansserifsmall}[]{\def\beamer@tsfont{\sffamily}} \DeclareOptionBeamer{stillsansseriflarge}[]{\def\beamer@sfont{\sffamily}} \DeclareOptionBeamer{stillsansseriftext}[]{\def\familydefault{\sfdefault}} \DeclareOptionBeamer{onlymath}[]{ \def\beamer@tsfont{\sffamily} \def\beamer@sfont{\sffamily} \def\familydefault{\sfdefault} } \def\beamer@tsfont{\rmfamily} \def\beamer@sfont{\rmfamily} \def\familydefault{\rmdefault} \def\mathfamilydefault{\rmdefault} \beamer@sansmathfalse \ProcessOptionsBeamer \setbeamerfont{tiny structure}{family=\beamer@tsfont} \setbeamerfont{structure}{family=\beamer@sfont} beamer/base/themes/font/beamerfontthemestructurebold.sty0000644000175000017500000000141612050430504023551 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/font/beamerfontthemestructurebold.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \def\beamer@ftb@str{ \setbeamerfont{structure}{series=\bfseries} \setbeamerfont{block title}{size={}} } \def\beamer@ftb@tstr{\setbeamerfont{tiny structure}{series=\bfseries}} \DeclareOptionBeamer{onlysmall}{\let\beamer@ftb@str=\relax} \DeclareOptionBeamer{onlylarge}{\let\beamer@ftb@tstr=\relax} \ProcessOptionsBeamer \mode \beamer@ftb@str \beamer@ftb@tstr \mode beamer/base/themes/font/beamerfontthemestructuresmallcapsserif.sty0000644000175000017500000000147612050430504025647 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/font/beamerfontthemestructuresmallcapsserif.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \def\beamer@ftb@str{ \setbeamerfont{structure}{shape=\scshape,family=\rmfamily} \setbeamerfont{section in toc}{size=\large} } \def\beamer@ftb@tstr{\setbeamerfont{tiny structure}{shape=\scshape,family=\rmfamily}} \DeclareOptionBeamer{onlysmall}{\let\beamer@ftb@str=\relax} \DeclareOptionBeamer{onlylarge}{\let\beamer@ftb@tstr=\relax} \ProcessOptionsBeamer \mode \beamer@ftb@str \beamer@ftb@tstr \mode beamer/base/themes/theme/0000755000175000017500000000000012050430504015153 5ustar mohuramohurabeamer/base/themes/theme/beamerthemeSingapore.sty0000644000175000017500000000176412050430504022052 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeSingapore.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \DeclareOptionBeamer{compress}{\beamer@compresstrue} \ProcessOptionsBeamer \mode \setbeamercolor{section in head/foot}{use=structure,bg=structure.fg!25!bg} \useoutertheme[subsection=false]{miniframes} \setbeamertemplate{frametitle}[default][center] \AtBeginDocument{% { \usebeamercolor{section in head/foot} } \pgfdeclareverticalshading{beamer@headfade}{\paperwidth} {% color(0cm)=(bg); color(1.25cm)=(section in head/foot.bg)% } \setbeamercolor{section in head/foot}{bg=} } \addtoheadtemplate{\pgfuseshading{beamer@headfade}\vskip-1.25cm}{} \beamertemplatedotitem \mode beamer/base/themes/theme/beamerthemeDresden.sty0000644000175000017500000000115012050430504021474 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeDresden.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \DeclareOptionBeamer{compress}{\beamer@compresstrue} \ProcessOptionsBeamer \mode \useoutertheme[footline=authorinstitutetitle]{miniframes} \usecolortheme{whale} \setbeamercolor{titlelike}{parent=structure} \mode beamer/base/themes/theme/beamerthemeJuanLesPins.sty0000644000175000017500000000106612050430504022311 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeJuanLesPins.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \useoutertheme{smoothtree} \usecolortheme{whale} \usecolortheme{orchid} \useinnertheme[shadow=true]{rounded} \setbeamerfont{block title}{size={}} \mode beamer/base/themes/theme/beamerthemeCopenhagen.sty0000644000175000017500000000104312050430504022160 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeCopenhagen.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \useoutertheme{split} \useinnertheme{rounded} \usecolortheme{whale} \usecolortheme{orchid} \setbeamerfont{block title}{size={}} \mode beamer/base/themes/theme/beamerthemeboxes.sty0000644000175000017500000000726712050430504021247 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeboxes.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \DeclareOptionBeamer{headheight}{\beamer@boxheadheight=#1} \DeclareOptionBeamer{footheight}{\beamer@boxfootheight=#1} \newdimen\beamer@boxheadheight \newdimen\beamer@boxfootheight \beamer@boxheadheight=10pt \beamer@boxfootheight=10pt \ProcessOptionsBeamer % For example: %\addheadboxtemplate{\color{black}}{\hfill\color{white}\insertshorttitle\hskip0.3cm} %\addheadboxtemplate{\color{structure}}{\hskip0.3cm\color{white}\insertshortauthor} %\addfootboxtemplate{\color{black}}{\hfill\color{white}\insertshortinstitute\hskip0.3cm} %\addfootboxtemplate{\color{structure}}{} %\addfootboxtemplate{\color{black}}{\hfill\color{white}\insertframenumber\hskip0.3cm} \mode % Head \newcount\beamer@headboxes \newdimen\beamer@headboxsizes \newcount\beamer@currentbox \def\addheadboxtemplate#1#2{ \expandafter\def\csname beamer@headbox\the\beamer@headboxes\endcsname{#2} \expandafter\def\csname beamer@headbg\the\beamer@headboxes\endcsname{#1} \advance\beamer@headboxes by 1\relax \beamer@headboxsizes=\paperwidth \divide\beamer@headboxsizes by\beamer@headboxes } \def\addheadbox#1#2{\addheadboxtemplate{\usebeamercolor[bg]{#1}}{\usebeamercolor[fg]{#1}\usebeamerfont{#1}#2}} \defbeamertemplate*{headline}{boxes theme} {% \leavevmode \beamer@currentbox=0\relax% \loop% \ifnum\beamer@currentbox<\beamer@headboxes% \hbox to\beamer@headboxsizes{% % Background {% \csname beamer@headbg\the\beamer@currentbox\endcsname% \vrule width\beamer@headboxsizes height\beamer@boxheadheight% \hskip-\beamer@headboxsizes% }% % Box {% \setbox\beamer@tempbox=\hbox to\beamer@headboxsizes{% \csname beamer@headbox\the\beamer@currentbox\endcsname\hfil}% \dp\beamer@tempbox=0pt% \setbox\beamer@tempbox=\hbox{\vbox{\box\beamer@tempbox\vskip3pt}}% \ht\beamer@tempbox=\beamer@boxheadheight% \dp\beamer@tempbox=0pt% \box\beamer@tempbox% }}% \advance\beamer@currentbox by 1% \repeat% }% % Foot \newcount\beamer@footboxes \newdimen\beamer@footboxsizes \def\addfootboxtemplate#1#2{ \expandafter\def\csname beamer@footbox\the\beamer@footboxes\endcsname{#2} \expandafter\def\csname beamer@footbg\the\beamer@footboxes\endcsname{#1} \advance\beamer@footboxes by 1\relax \beamer@footboxsizes=\paperwidth \divide\beamer@footboxsizes by\beamer@footboxes } \def\addfootbox#1#2{\addfootboxtemplate{\usebeamercolor[bg]{#1}}{\usebeamercolor[fg]{#1}\usebeamerfont{#1}#2}} \defbeamertemplate*{footline}{boxes theme} {% \leavevmode \beamer@currentbox=0\relax% \loop% \ifnum\beamer@currentbox<\beamer@footboxes% \hbox to\beamer@footboxsizes{% % Background {% \csname beamer@footbg\the\beamer@currentbox\endcsname% \vrule width\beamer@footboxsizes height\beamer@boxfootheight% \hskip-\beamer@footboxsizes% }% % Box {% \setbox\beamer@tempbox=\hbox to\beamer@footboxsizes{% \csname beamer@footbox\the\beamer@currentbox\endcsname\hfil}% \dp\beamer@tempbox=0pt% \setbox\beamer@tempbox=\hbox{\vbox{\box\beamer@tempbox\vskip3pt}}% \ht\beamer@tempbox=\beamer@boxfootheight% \dp\beamer@tempbox=0pt% \box\beamer@tempbox% }% }% \advance\beamer@currentbox by 1% \repeat% }% \mode beamer/base/themes/theme/beamerthemeBerlin.sty0000644000175000017500000000122012050430504021321 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeBerlin.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \DeclareOptionBeamer{compress}{\beamer@compresstrue} \ProcessOptionsBeamer \mode \useoutertheme[footline=authorinstitutetitle]{miniframes} \usecolortheme{whale} \usecolortheme{orchid} \useinnertheme{rectangles} \setbeamerfont{block title}{size={}} \mode beamer/base/themes/theme/beamerthemeFrankfurt.sty0000644000175000017500000000110512050430504022052 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeFrankfurt.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \useoutertheme[subsection=false]{smoothbars} \useinnertheme[shadow=true]{rounded} \usecolortheme{orchid} \usecolortheme{whale} \setbeamerfont{block title}{size={}} \mode beamer/base/themes/theme/beamerthemeDarmstadt.sty0000644000175000017500000000106412050430504022037 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeDarmstadt.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \useoutertheme{smoothbars} \useinnertheme[shadow=true]{rounded} \usecolortheme{orchid} \usecolortheme{whale} \setbeamerfont{block title}{size={}} \mode beamer/base/themes/theme/beamerthemeBergen.sty0000644000175000017500000000102312050430504021311 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeBergen.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \usecolortheme{orchid} \useinnertheme{rectangles} \useinnertheme{inmargin} \setbeamercolor{item projected}{fg=black} \mode beamer/base/themes/theme/beamerthemeMarburg.sty0000644000175000017500000000257112050430504021517 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeMarburg.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \PassOptionsToPackage{right}{beamerouterthemesidebar} \PassOptionsToPackage{width=2cm}{beamerouterthemesidebar} \DeclareOptionBeamer{hideothersubsections}{\PassOptionsToPackage{hideothersubsections=#1}{beamerouterthemesidebar}} \DeclareOptionBeamer{hideallsubsections}{\PassOptionsToPackage{hideallsubsections=#1}{beamerouterthemesidebar}} \DeclareOptionBeamer{width}{\PassOptionsToPackage{width=#1}{beamerouterthemesidebar}} \DeclareOptionBeamer{left}{\PassOptionsToPackage{left}{beamerouterthemesidebar}} \DeclareOptionBeamer{right}{\PassOptionsToPackage{right}{beamerouterthemesidebar}} \ProcessOptionsBeamer \mode \usecolortheme{whale} \setbeamercolor*{titlelike}{use=structure,fg=structure.fg} \useoutertheme[height=0pt]{sidebar} \setbeamercolor{sidebar}{parent=palette primary} {\usebeamercolor{palette quaternary}} {\usebeamercolor{palette primary}} \setbeamertemplate{sidebar canvas \beamer@sidebarside}[vertical shading][top=palette quaternary.bg,bottom=palette primary.bg] \mode beamer/base/themes/theme/beamerthemeBerkeley.sty0000644000175000017500000000212212050430504021652 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeBerkeley.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \DeclareOptionBeamer{hideothersubsections}{\PassOptionsToPackage{hideothersubsections=#1}{beamerouterthemesidebar}} \DeclareOptionBeamer{hideallsubsections}{\PassOptionsToPackage{hideallsubsections=#1}{beamerouterthemesidebar}} \DeclareOptionBeamer{width}{\PassOptionsToPackage{width=#1}{beamerouterthemesidebar}} \DeclareOptionBeamer{left}{\PassOptionsToPackage{left}{beamerouterthemesidebar}} \DeclareOptionBeamer{right}{\PassOptionsToPackage{right}{beamerouterthemesidebar}} \ProcessOptionsBeamer \mode \useoutertheme{sidebar} \useinnertheme{rectangles} \usecolortheme{whale} \usecolortheme{orchid} \setbeamercolor*{frametitle}{parent=palette primary} \setbeamerfont{block title}{size={}} \mode beamer/base/themes/theme/beamerthemeEastLansing.sty0000644000175000017500000000135512050430504022327 0ustar mohuramohura\ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeEastLansing.sty,v adfc58636b1f 2012/03/07 18:35:25 amunn $ % Copyright 2012 by Alan Munn Modified for MSU colours % Copyright 2004 by Madhusudan Singh % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. % \mode \useinnertheme{rounded} \useoutertheme{infolines} \usecolortheme{spruce} \setbeamerfont{block title}{size=\large} \setbeamertemplate{itemize subitem}[triangle] \setbeamercolor{titlelike}{parent=structure,bg=white!85!MSUgreen} \mode beamer/base/themes/theme/compatibility/0000755000175000017500000000000012050430504020024 5ustar mohuramohurabeamer/base/themes/theme/compatibility/beamerthemetree.sty0000644000175000017500000000126512050430504023727 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/compatibility/beamerthemetree.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \def\beamer@theme@col{\setbeamercolor{separation line}{use=structure,bg=structure.fg!50!bg}} \DeclareOptionBeamer{bars}{\def\beamer@theme@col{\usecolortheme{whale}}} \ProcessOptionsBeamer \usefonttheme[onlysmall]{structurebold} \beamer@theme@col \useoutertheme{tree} \mode beamer/base/themes/theme/compatibility/beamerthemeplain.sty0000644000175000017500000000112412050430504024065 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/compatibility/beamerthemeplain.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \PackageWarning{beamerthemeplain}{This package is obsolet - use font theme italics instead} \usefonttheme{structureitalicserif} \beamertemplatedefaultframetitle[center] \mode beamer/base/themes/theme/compatibility/beamerthemesplit.sty0000644000175000017500000000077612050430504024131 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/compatibility/beamerthemesplit.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \usecolortheme{whale} \useoutertheme{split} \usefonttheme[onlysmall]{structurebold} \mode beamer/base/themes/theme/compatibility/beamerthemeclassic.sty0000644000175000017500000000104312050430504024403 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/compatibility/beamerthemeclassic.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \usefonttheme[onlylarge]{structureitalicserif} \usefonttheme[onlysmall]{structuresmallcapsserif} \usetheme{Singapore} \mode beamer/base/themes/theme/compatibility/beamerthemebars.sty0000644000175000017500000000104212050430504023710 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/compatibility/beamerthemebars.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \usefonttheme[onlysmall]{structurebold} \useoutertheme[footline=authorinstitutetitle]{miniframes} \usecolortheme{whale} \mode beamer/base/themes/theme/compatibility/beamerthemesidebar.sty0000644000175000017500000000261612050430504024402 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/compatibility/beamerthemesidebar.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \newif\ifbeamer@sidebartab \newif\ifbeamer@sidebardark \beamer@sidebartabfalse \beamer@sidebardarkfalse \PassOptionsToPackage{width=2.5cm}{beamerouterthemesidebar} \DeclareOptionBeamer{width}{\PassOptionsToPackage{width=#1}{beamerouterthemesidebar}} \DeclareOptionBeamer{tab}[true]{\csname beamer@sidebartab#1\endcsname} \DeclareOptionBeamer{dark}[true]{\csname beamer@sidebardark#1\endcsname} \ProcessOptionsBeamer \mode \useoutertheme[right,height=0pt]{sidebar} \ifbeamer@sidebardark \usefonttheme{structurebold} \usecolortheme{whale} \setbeamercolor{sidebar}{parent=palette primary} \usebeamercolor{palette quaternary} \usebeamercolor{palette primary} \setbeamertemplate{sidebar canvas right}[vertical shading][top=palette quaternary.bg,bottom=palette primary.bg] \else \usecolortheme{seahorse} \usebeamercolor{sidebar} \setbeamertemplate{sidebar canvas right}[vertical shading][top=sidebar.bg,bottom=white] \fi \ifbeamer@sidebartab \usecolortheme{sidebartab} \fi \mode beamer/base/themes/theme/compatibility/beamerthemeshadow.sty0000644000175000017500000000124112050430504024247 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/compatibility/beamerthemeshadow.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \useinnertheme[shadow=true]{rounded} \usecolortheme{orchid} \usecolortheme{whale} \useoutertheme{shadow} \usefonttheme[onlysmall]{structurebold} \setbeamercolor{title}{use=structure,fg=white,bg=structure.fg} \setbeamerfont{block title}{size={}} \mode beamer/base/themes/theme/compatibility/beamerthemelined.sty0000644000175000017500000000432212050430504024060 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/compatibility/beamerthemelined.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamertemplate{headline}[text line] {% \vbox{% \vskip3pt% \beamerline{\insertnavigation{\paperwidth}}% \vskip1.5pt% \insertvrule{0.4pt}{beamerstructure!50!averagebackgroundcolor}% \vskip1.5pt% \tinyline{\color{beamerstructure}\insertsubsection\hfill} \insertvrule{4pt}{beamerstructure!50!averagebackgroundcolor}% }% } % Footline \setbeamertemplate{footline}[text line] {% \ifbeamertemplateempty{logo} {% \vbox{% \setbox\beamer@tempbox=\hbox{\tiny\insertshortauthor: \insertshorttitle\hskip1.5cm\insertshortinstitute}% \ifdim\wd\beamer@tempbox>\paperwidth% \insertvrule{4pt}{beamerstructure!50!averagebackgroundcolor}% \vskip1.5pt \tinyline{\color{beamerstructure}\insertshortauthor:\hfill\insertshortinstitute}% \tinyline{\color{beamerstructure}\insertshorttitle\hfill\lower1pt\hbox{\insertnavigationsymbols}}% \else% \setbox\beamer@tempbox=\hbox{\beamerline{\hbox to\paperwidth{\hfill\lower1pt\hbox{\insertnavigationsymbols}}}}% \ht\beamer@tempbox=0pt% \box\beamer@tempbox% \insertvrule{4pt}{beamerstructure!50!averagebackgroundcolor}% \vskip1.5pt \tinyline{\color{beamerstructure}\insertshortauthor: \insertshorttitle\hfill\insertshortinstitute}% \fi}% } {% \vbox{% \insertvrule{4pt}{beamerstructure!50!averagebackgroundcolor}% \vskip1.5pt% \setbox\beamer@logobox=\hbox{\lower1pt\hbox{\usebeamertemplate*{logo}}}% \tinyline{\color{beamerstructure}\insertshortauthor:\hfill}% \tinyline{\color{beamerstructure}\insertshorttitle\hfill\lower1pt\hbox{\insertnavigationsymbols}\hskip0.1cm\hbox{\dp\beamer@logobox=0pt\ht\beamer@logobox=0pt\box\beamer@logobox} }% }% }% } \userightsidebartemplate{0cm}{} \mode beamer/base/themes/theme/compatibility/beamerthemecompatibility.sty0000644000175000017500000000146712050430504025645 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/compatibility/beamerthemecompatibility.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \usefonttheme[onlysmall]{structurebold} \setbeamerfont{frametitle}{series=\bfseries} \useoutertheme[subsection=false]{miniframes} \addtobeamertemplate{headline} {} {% \begin{beamercolorbox}[wd=\paperwidth,colsep=0.2pt]{fine separation line} \end{beamercolorbox}% } \setbeamercolor{fine separation line}{use=structure,bg=structure.fg!50!bg} \beamertemplatedefaultframetitle[center] \mode beamer/base/themes/theme/beamerthemeSzeged.sty0000644000175000017500000000114412050430504021334 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeSzeged.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \DeclareOptionBeamer{compress}{\beamer@compresstrue} \ProcessOptionsBeamer \mode \useoutertheme[footline=institutetitle]{miniframes} \setbeamercolor{separation line}{use=structure,bg=structure.fg!50!bg} \mode beamer/base/themes/theme/beamerthemeWarsaw.sty0000644000175000017500000000105412050430504021357 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeWarsaw.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \useinnertheme[shadow=true]{rounded} \useoutertheme{shadow} \usecolortheme{orchid} \usecolortheme{whale} \setbeamerfont{block title}{size={}} \mode beamer/base/themes/theme/beamerthemeCambridgeUS.sty0000644000175000017500000000116512050430504022243 0ustar mohuramohura% Copyright 2004 by Madhusudan Singh % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeCambridgeUS.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \useinnertheme[shadow=true]{rounded} \useoutertheme{infolines} \usecolortheme{beaver} \setbeamerfont{block title}{size={}} \setbeamercolor{titlelike}{parent=structure,bg=white} \mode beamer/base/themes/theme/beamerthemeAntibes.sty0000644000175000017500000000104112050430504021474 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeAntibes.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \useoutertheme{tree} \usecolortheme{whale} \usecolortheme{orchid} \useinnertheme{rectangles} \setbeamerfont{block title}{size={}} \mode beamer/base/themes/theme/beamerthemeGoettingen.sty0000644000175000017500000000227312050430504022222 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeGoettingen.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \DeclareOptionBeamer{hideothersubsections}{\PassOptionsToPackage{hideothersubsections}{beamerouterthemesidebar}} \DeclareOptionBeamer{hideallsubsections}{\PassOptionsToPackage{hideallsubsections}{beamerouterthemesidebar}} \PassOptionsToPackage{right}{beamerouterthemesidebar} \PassOptionsToPackage{width=2cm}{beamerouterthemesidebar} \DeclareOptionBeamer{width}{\PassOptionsToPackage{width=#1}{beamerouterthemesidebar}} \DeclareOptionBeamer{left}{\PassOptionsToPackage{left}{beamerouterthemesidebar}} \DeclareOptionBeamer{right}{\PassOptionsToPackage{right}{beamerouterthemesidebar}} \ProcessOptionsBeamer \mode \useoutertheme[height=0pt]{sidebar} {\usebeamercolor{structure}} \setbeamertemplate{sidebar canvas \beamer@sidebarside}[vertical shading][top=structure.fg!25,bottom=structure.fg!10] \mode beamer/base/themes/theme/beamerthemedefault.sty0000644000175000017500000000077512050430504021550 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemedefault.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \usefonttheme{default} \usecolortheme{default} \useinnertheme{default} \useoutertheme{default} \mode beamer/base/themes/theme/beamerthemeIlmenau.sty0000644000175000017500000000122012050430504021500 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeIlmenau.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \DeclareOptionBeamer{compress}{\beamer@compresstrue} \ProcessOptionsBeamer \mode \useoutertheme[footline=authorinstitutetitle]{miniframes} \usecolortheme{whale} \usecolortheme{orchid} \useinnertheme{rounded} \setbeamerfont{block title}{size={}} \mode beamer/base/themes/theme/beamerthemeMadrid.sty0000644000175000017500000000130512050430504021312 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeMadrid.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \newif\ifbeamer@secheader \beamer@secheaderfalse \DeclareOptionBeamer{secheader}{\beamer@secheadertrue} \ProcessOptionsBeamer \usecolortheme{whale} \usecolortheme{orchid} \useinnertheme[shadow]{rounded} \useoutertheme{infolines} \ifbeamer@secheader\else\setbeamertemplate{headline}[default]\fi \mode beamer/base/themes/theme/beamerthemeRochester.sty0000644000175000017500000000132512050430504022052 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeRochester.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \DeclareOptionBeamer{height}{\PassOptionsToPackage{height=#1}{beamerouterthemesidebar}} \ProcessOptionsBeamer \mode \useoutertheme[width=0pt]{sidebar} \useinnertheme{rectangles} \usecolortheme{whale} \usecolortheme{orchid} \setbeamercolor*{frametitle}{parent=palette primary} \setbeamerfont{block title}{size={}} \mode beamer/base/themes/theme/beamerthemeLuebeck.sty0000644000175000017500000000104412050430504021464 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeLuebeck.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \useoutertheme{split} \useinnertheme{rectangles} \usecolortheme{whale} \usecolortheme{orchid} \setbeamerfont{block title}{size={}} \mode beamer/base/themes/theme/beamerthemePaloAlto.sty0000644000175000017500000000213212050430504021624 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemePaloAlto.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \DeclareOptionBeamer{hideothersubsections}{\PassOptionsToPackage{hideothersubsections=#1}{beamerouterthemesidebar}} \DeclareOptionBeamer{hideallsubsections}{\PassOptionsToPackage{hideallsubsections=#1}{beamerouterthemesidebar}} \DeclareOptionBeamer{width}{\PassOptionsToPackage{width=#1}{beamerouterthemesidebar}} \DeclareOptionBeamer{left}{\PassOptionsToPackage{left}{beamerouterthemesidebar}} \DeclareOptionBeamer{right}{\PassOptionsToPackage{right}{beamerouterthemesidebar}} \ProcessOptionsBeamer \mode \useoutertheme{sidebar} \useinnertheme[shadow=true]{rounded} \usecolortheme{orchid} \usecolortheme{whale} \setbeamercolor*{frametitle}{parent=palette primary} \setbeamerfont{block title}{size={}} \mode beamer/base/themes/theme/beamerthemePittsburgh.sty0000644000175000017500000000075112050430504022251 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemePittsburgh.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamertemplate{frametitle}[default][right] \useinnertheme{circles} \mode beamer/base/themes/theme/beamerthemeMalmoe.sty0000644000175000017500000000077012050430504021331 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeMalmoe.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \useoutertheme{split} \usecolortheme{whale} \setbeamercolor*{titlelike}{parent=structure} \mode beamer/base/themes/theme/beamerthemeHannover.sty0000644000175000017500000000166112050430504021677 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeHannover.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \DeclareOptionBeamer{width} {\PassOptionsToPackage{width=#1}{beamerouterthemesidebar}} \DeclareOptionBeamer{hideothersubsections} {\PassOptionsToPackage{hideothersubsections=#1}{beamerouterthemesidebar}} \DeclareOptionBeamer{hideallsubsections} {\PassOptionsToPackage{hideallsubsections=#1}{beamerouterthemesidebar}} \ProcessOptionsBeamer \mode \useoutertheme[height=0pt,left]{sidebar} \usecolortheme{seahorse} \setbeamercolor*{titlelike}{parent=structure} \useinnertheme{circles} \setbeamertemplate{frametitle}[default][right] \mode beamer/base/themes/theme/beamerthemeBoadilla.sty0000644000175000017500000000204012050430504021616 0ustar mohuramohura% Copyright 2004 by Manuel Carro % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeBoadilla.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \newif\ifbeamer@secheader \beamer@secheaderfalse \DeclareOptionBeamer{secheader}{\beamer@secheadertrue} \ProcessOptionsBeamer \usecolortheme{rose} \useinnertheme[shadow]{rounded} \usecolortheme{dolphin} \useoutertheme{infolines} % Tills' opinion: should be done in an inner theme, not here. \usesubitemizeitemtemplate{% \tiny\raise1.5pt\hbox{\color{beamerstructure}$\blacktriangleright$}% } \usesubsubitemizeitemtemplate{% \tiny\raise1.5pt\hbox{\color{beamerstructure}$\bigstar$}% } \setbeamersize{text margin left=1em,text margin right=1em} \ifbeamer@secheader\else\setbeamertemplate{headline}[default]\fi \mode beamer/base/themes/theme/beamerthemeAnnArbor.sty0000644000175000017500000000117712050430504021623 0ustar mohuramohura% Copyright 2004 by Madhusudan Singh % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeAnnArbor.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \useinnertheme[shadow=true]{rounded} \useoutertheme{infolines} \usecolortheme{wolverine} \setbeamerfont{block title}{size={}} \setbeamercolor{titlelike}{parent=structure,bg=yellow!85!orange} \mode beamer/base/themes/theme/beamerthemeMontpellier.sty0000644000175000017500000000077512050430504022416 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/theme/beamerthemeMontpellier.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \useoutertheme{tree} \setbeamercolor{separation line}{use=structure,bg=structure.fg!50!bg} \mode beamer/base/themes/inner/0000755000175000017500000000000012050430504015164 5ustar mohuramohurabeamer/base/themes/inner/beamerinnerthemecircles.sty0000644000175000017500000000077512050430504022615 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/inner/beamerinnerthemecircles.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamertemplate{items}[circle] \setbeamertemplate{sections/subsections in toc}[circle] \mode beamer/base/themes/inner/beamerinnerthemeinmargin.sty0000644000175000017500000001034012050430504022762 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/inner/beamerinnerthemeinmargin.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamercolor*{sidebar}{parent=block title} \setbeamercolor{local structure}{parent=sidebar} \setbeamercolor{section in toc}{parent=sidebar} \setbeamercolor{button}{use=structure,bg=structure.fg!50!bg,fg=white} \setbeamercolor*{title}{parent=structure} \setbeamercolor{block title alerted}{use=sidebar,fg=sidebar.fg!25!red} \setbeamercolor{block title example}{use=sidebar,fg=sidebar.fg!50!green} \setbeamersize{text margin left=1.5ex} \setbeamersize{text margin right=1.5ex} \setbeamersize{sidebar width left=.25\paperwidth} \setlength\leftmargini{0pt} \setlength\leftmarginii{1.5ex} \setlength\leftmarginiii{1.5ex} \newcommand\beamer@putleft[2]{% \hbox to 0pt{\hss\vtop{% \normalsize% \@tempdima=.25\paperwidth% \advance\@tempdima by-3ex% \hsize=\@tempdima% \leftskip=0pt plus 1fill% \rightskip=0pt\relax% \leavevmode#1}\kern#2}% } \newenvironment{beamer@putright}{\vtop\bgroup\leavevmode}{\egroup} \defbeamertemplate*{section in toc}{inmargin} {\beamer@putleft{\inserttocsection\strut}{2.5ex}} \defbeamertemplate*{subsection in toc}{inmargin} {\leavevmode% \inserttocsubsection\par\vskip.5ex} \defbeamertemplate*{subsubsection in toc}{inmargin} {\leavevmode% \inserttocsubsubsection\par\vskip.5ex} \def\inserttitleindicator{} \def\insertauthorindicator{Who?} \def\insertinstituteindicator{From?} \def\insertdateindicator{When?} \defbeamertemplate*{title page}{inmargin} { \begin{block}{\inserttitleindicator} \usebeamercolor[fg]{title}\usebeamerfont{title}\inserttitle\par \usebeamercolor[fg]{subtitle}\usebeamerfont{subtitle}\insertsubtitle \end{block} \vfill \ifx\insertauthor\@empty \else \begin{block}{\insertauthorindicator} \usebeamercolor[fg]{author}\usebeamerfont{author}\insertauthor\par \end{block} \fi \ifx\insertinstitute\@empty \else \begin{block}{\insertinstituteindicator} \usebeamercolor[fg]{institute}\usebeamerfont{institute}\insertinstitute\par \end{block} \fi \ifx\insertdate\@empty \else \begin{block}{\insertdateindicator} \usebeamercolor[fg]{date}\usebeamerfont{date}\insertdate\par \end{block} \fi } \defbeamertemplate*{block begin}{inmargin} { \par\vskip\medskipamount% \leavevmode% \beamer@putleft{\normalfont{\usebeamercolor[fg]{block title}\usebeamerfont*{block title}\insertblocktitle}}{2.5ex}% \beamer@putright\usebeamercolor[fg]{block body}% } \defbeamertemplate*{block end}{inmargin} {\endbeamer@putright\vskip\smallskipamount} \defbeamertemplate*{block alerted begin}{inmargin} { \par\vskip\medskipamount% \leavevmode% \beamer@putleft{\normalfont{\usebeamercolor[fg]{block title alerted}\usebeamerfont*{block title alerted}\insertblocktitle}}{2.5ex}% \beamer@putright\usebeamercolor[fg]{block body alerted}% } \defbeamertemplate*{block alerted end}{inmargin} {\endbeamer@putright\vskip\smallskipamount} \defbeamertemplate*{block example begin}{inmargin} { \par\vskip\medskipamount% \leavevmode% \beamer@putleft{\normalfont{\usebeamercolor[fg]{block title example}\usebeamerfont*{block title example}\insertblocktitle}}{2.5ex}% \beamer@putright\usebeamercolor[fg]{block body example}% } \defbeamertemplate*{block example end}{inmargin} {\endbeamer@putright\vskip\smallskipamount} \AtBeginDocument { \addtobeamertemplate{enumerate item}{\llap\bgroup}{\normalsize\kern1.5ex\egroup} \addtobeamertemplate{enumerate subitem}{\llap\bgroup}{\normalsize\kern1.5ex\kern\leftmarginii\egroup} \addtobeamertemplate{enumerate subsubitem}{\llap\bgroup}{\normalsize\kern1.5ex\kern\leftmarginii\kern\leftmarginiii\egroup} \addtobeamertemplate{itemize item}{\llap\bgroup}{\normalsize\kern1.5ex\egroup} \addtobeamertemplate{itemize subitem}{\llap\bgroup}{\normalsize\kern1.125ex\kern\leftmarginii\egroup} \addtobeamertemplate{itemize subsubitem}{\llap\bgroup}{\small\kern0.75ex\kern\leftmarginii\kern\leftmarginiii\egroup} } \mode beamer/base/themes/inner/beamerinnerthemerounded.sty0000644000175000017500000000161612050430504022624 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/inner/beamerinnerthemerounded.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \DeclareOptionBeamer{shadow}[true]{\def\beamer@themerounded@shadow{#1}} \ExecuteOptionsBeamer{shadow=false} \ProcessOptionsBeamer \mode \setbeamertemplate{blocks}[rounded][shadow=\beamer@themerounded@shadow] \setbeamertemplate{items}[ball] \setbeamertemplate{sections/subsections in toc}[ball] \setbeamertemplate{title page}[default][colsep=-4bp,rounded=true,shadow=\beamer@themerounded@shadow] \setbeamertemplate{part page}[default][colsep=-4bp,rounded=true,shadow=\beamer@themerounded@shadow] \mode beamer/base/themes/inner/beamerinnerthemerectangles.sty0000644000175000017500000000077712050430504023322 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/inner/beamerinnerthemerectangles.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamertemplate{sections/subsections in toc}[square] \setbeamertemplate{items}[square] \mode beamer/base/themes/inner/beamerinnerthemedefault.sty0000644000175000017500000003104112050430504022603 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/inner/beamerinnerthemedefault.sty,v 67c48b3b652d 2012/05/01 07:25:30 joseph $ \mode % Some images: \pgfdeclareimage[width=14pt,height=12pt]{beamericonbook}{beamericonbook} \pgfdeclareimage[width=14pt,height=12pt]{beamericonbookshaded}{beamericonbook.20} \pgfaliasimage{beamericonbook.!20opaque}{beamericonbookshaded} \pgfaliasimage{beamericonbook.!15opaque}{beamericonbookshaded} \pgfaliasimage{beamericonbook.!10opaque}{beamericonbookshaded} \pgfaliasimage{beamericonbook.!5opaque}{beamericonbookshaded} \pgfaliasimage{beamericonbook.!2opaque}{beamericonbookshaded} \pgfdeclareimage[width=11pt,height=14pt]{beamericonarticle}{beamericonarticle} \pgfdeclareimage[width=11pt,height=14pt]{beamericonarticleshaded}{beamericonarticle.20} \pgfaliasimage{beamericonarticle.!20opaque}{beamericonarticleshaded} \pgfaliasimage{beamericonarticle.!15opaque}{beamericonarticleshaded} \pgfaliasimage{beamericonarticle.!10opaque}{beamericonarticleshaded} \pgfaliasimage{beamericonarticle.!5opaque}{beamericonarticleshaded} \pgfaliasimage{beamericonarticle.!2opaque}{beamericonarticleshaded} \pgfdeclareimage[width=14pt,height=14pt]{beamericononline}{beamericononline} \pgfdeclareimage[width=14pt,height=14pt]{beamericononlineshaded}{beamericononline.20} \pgfaliasimage{beamericonbook.!20opaque}{beamericononlineshaded} \pgfaliasimage{beamericonbook.!15opaque}{beamericononlineshaded} \pgfaliasimage{beamericonbook.!10opaque}{beamericononlineshaded} \pgfaliasimage{beamericonbook.!5opaque}{beamericononlineshaded} \pgfaliasimage{beamericonbook.!2opaque}{beamericononlineshaded} % Title page: default \defbeamertemplate*{title page}{default}[1][] { \vbox{} \vfill \begin{centering} \begin{beamercolorbox}[sep=8pt,center,#1]{title} \usebeamerfont{title}\inserttitle\par% \ifx\insertsubtitle\@empty% \else% \vskip0.25em% {\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}% \fi% \end{beamercolorbox}% \vskip1em\par \begin{beamercolorbox}[sep=8pt,center,#1]{author} \usebeamerfont{author}\insertauthor \end{beamercolorbox} \begin{beamercolorbox}[sep=8pt,center,#1]{institute} \usebeamerfont{institute}\insertinstitute \end{beamercolorbox} \begin{beamercolorbox}[sep=8pt,center,#1]{date} \usebeamerfont{date}\insertdate \end{beamercolorbox}\vskip0.5em {\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic\par} \end{centering} \vfill } % Part page: default \defbeamertemplate*{part page}{default}[1][] { \begin{centering} {\usebeamerfont{part name}\usebeamercolor[fg]{part name}\partname~\insertromanpartnumber} \vskip1em\par \begin{beamercolorbox}[sep=16pt,center,#1]{part title} \usebeamerfont{part title}\insertpart\par \end{beamercolorbox} \end{centering} } % Section page: default \defbeamertemplate*{section page}{default}[1][] { \begin{centering} {\usebeamerfont{section name}\usebeamercolor[fg]{section name}\sectionname~\insertsectionnumber} \vskip1em\par \begin{beamercolorbox}[sep=12pt,center,#1]{part title} \usebeamerfont{section title}\insertsection\par \end{beamercolorbox} \end{centering} } % Subection page: default \defbeamertemplate*{subsection page}{default}[1][] { \begin{centering} {\usebeamerfont{subsection name}\usebeamercolor[fg]{subsection name}\subsectionname~\insertsubsectionnumber} \vskip1em\par \begin{beamercolorbox}[sep=8pt,center,#1]{part title} \usebeamerfont{subsection title}\insertsubsection\par \end{beamercolorbox} \end{centering} } % % Table of contents % \defbeamertemplateparent{sections/subsections in toc}{section in toc,subsection in toc,subsubsection in toc} {} \defbeamertemplateparent{sections/subsections in toc shaded}{section in toc shaded,subsection in toc shaded,subsubsection in toc shaded}[1][20] {[#1]} % (sub-)section in toc: default \defbeamertemplate*{section in toc}{default} {\inserttocsection\par} \defbeamertemplate*{subsection in toc}{default} {\leavevmode\leftskip=1.5em\inserttocsubsection\par} \defbeamertemplate*{subsubsection in toc}{default} {\leavevmode\normalsize\usebeamerfont{subsection in toc}\leftskip=3em% \usebeamerfont{subsubsection in toc}\inserttocsubsubsection\par} % (sub-)section in toc shaded, default \defbeamertemplate*{section in toc shaded}{default}[1][20] {\begin{colormixin}{#1!parent.bg}\usebeamertemplate{section in toc}\end{colormixin}\unskip} \defbeamertemplate*{subsection in toc shaded}{default}[1][20] {\begin{colormixin}{#1!parent.bg}\usebeamertemplate{subsection in toc}\end{colormixin}\unskip} \defbeamertemplate*{subsubsection in toc shaded}{default}[1][20] {\begin{colormixin}{#1!parent.bg}\usebeamertemplate{subsubsection in toc}\end{colormixin}\unskip} % % Item % \defbeamertemplateparent{items}{itemize items,enumerate items} {} % Itemize items \defbeamertemplateparent{itemize items}{itemize item,itemize subitem,itemize subsubitem} {} % Itemize items, default \defbeamertemplate*{itemize item}{default}{\scriptsize\raise1.25pt\hbox{\donotcoloroutermaths$\blacktriangleright$}} \defbeamertemplate*{itemize subitem}{default}{\tiny\raise1.5pt\hbox{\donotcoloroutermaths$\blacktriangleright$}} \defbeamertemplate*{itemize subsubitem}{default}{\tiny\raise1.5pt\hbox{\donotcoloroutermaths$\blacktriangleright$}} % Enumerate items, default \defbeamertemplateparent{enumerate items}{enumerate item,enumerate subitem,enumerate subsubitem,enumerate mini} {} \defbeamertemplate*{enumerate item}{default}{\insertenumlabel.} \defbeamertemplate*{enumerate subitem}{default}{\insertenumlabel.\insertsubenumlabel} \defbeamertemplate*{enumerate subsubitem}{default}{\insertenumlabel.\insertsubenumlabel.\insertsubsubenumlabel} \defbeamertemplate*{enumerate mini template}{default}{\insertenumlabel} % Description item width \defbeamertemplate*{description item}{default}{\insertdescriptionitem} % Itemize/Enumerate body \defbeamertemplate*{itemize/enumerate body begin}{default}{} \defbeamertemplate*{itemize/enumerate body end}{default}{} \defbeamertemplate*{itemize/enumerate subbody begin}{default}{} \defbeamertemplate*{itemize/enumerate subbody end}{default}{} \defbeamertemplate*{itemize/enumerate subsubbody begin}{default}{} \defbeamertemplate*{itemize/enumerate subsubbody end}{default}{} % Alerted text \defbeamertemplate*{alerted text begin}{default}{\setbeamercolor{local structure}{parent=alerted text}} % Structured text % empyt defaults % Bibliography items \defbeamertemplate*{bibliography item}{default} {\lower3.5pt\hbox{\hskip2pt\pgfuseimage{beamericonarticle}\hskip1pt}} \defbeamertemplate*{bibliography entry article}{default}{} \defbeamertemplate*{bibliography entry title}{default}{\par} \defbeamertemplate*{bibliography entry location}{default}{\par} \defbeamertemplate*{bibliography entry note}{default}{\par} % Buttons \newdimen\beamer@dima% \newdimen\beamer@dimb% \defbeamertemplate*{button}{default} {% \setbox\beamer@tempbox=\hbox{{\insertbuttontext}}% \ht\beamer@tempbox=6pt% \dp\beamer@tempbox=0pt% \setbox\beamer@tempbox=\vbox{\box\beamer@tempbox\vskip2pt}% \beamer@tempdim=\wd\beamer@tempbox% \beamer@dima=\beamer@tempdim\advance\beamer@dima by2.2pt \beamer@dimb=\beamer@tempdim\advance\beamer@dimb by4pt \begin{pgfpicture}{-4pt}{0pt}{\the\beamer@tempdim}{8pt} \color{bg} \pgfsetlinewidth{0.8pt} \pgfpathqmoveto{0pt}{0pt} \pgfpathqcurveto{-2.2pt}{0pt}{-4pt}{1.8pt}{-4pt}{4pt} \pgfpathqcurveto{-4pt}{6.2pt}{-2.2pt}{8pt}{0pt}{8pt} \pgfpathlineto{\pgfpoint{\the\beamer@tempdim}{8pt}} \pgfpathcurveto% {\pgfpoint{\the\beamer@dima}{8pt}}% {\pgfpoint{\the\beamer@dimb}{6.2pt}}% {\pgfpoint{\the\beamer@dimb}{4pt}} \pgfpathcurveto% {\pgfpoint{\the\beamer@dimb}{1.8pt}}% {\pgfpoint{\the\beamer@dima}{0pt}}% {\pgfpoint{\the\beamer@tempdim}{0pt}} \pgfpathclose \pgfusepathqfill \colorlet{bg}{parent.bg} \usebeamercolor[fg]{button border} \pgfpathqmoveto{0pt}{0pt} \pgfpathqcurveto{-2.2pt}{0pt}{-4pt}{1.8pt}{-4pt}{4pt} \pgfpathqcurveto{-4pt}{6.2pt}{-2.2pt}{8pt}{0pt}{8pt} \pgfpathlineto{\pgfpoint{\the\beamer@tempdim}{8pt}} \pgfpathcurveto% {\pgfpoint{\the\beamer@dima}{8pt}}% {\pgfpoint{\the\beamer@dimb}{6.2pt}}% {\pgfpoint{\the\beamer@dimb}{4pt}} \pgfpathcurveto% {\pgfpoint{\the\beamer@dimb}{1.8pt}}% {\pgfpoint{\the\beamer@dima}{0pt}}% {\pgfpoint{\the\beamer@tempdim}{0pt}} \pgfpathclose \pgfusepathqstroke \end{pgfpicture}% \hskip-\beamer@tempdim% \box\beamer@tempbox% \kern4pt% } % Abstract \defbeamertemplate*{abstract title}{default} {% \begin{center}% \abstractname \end{center}% } \defbeamertemplate*{abstract begin}{default} {\beamercolorbox[vmode]{abstract}\leftskip2em\rightskip2em plus 1fill\usebeamerfont*{abstract}} \defbeamertemplate*{abstract end}{default} {\medskip\endbeamercolorbox} % Verse \defbeamertemplate*{verse begin}{default} {\beamercolorbox[vmode]{verse}} \defbeamertemplate*{verse end}{default} {\endbeamercolorbox} % Quotation \defbeamertemplate*{quotation begin}{default} {\beamercolorbox[vmode]{quotation}} \defbeamertemplate*{quotation end}{default} {\endbeamercolorbox} % Quote \defbeamertemplate*{quote begin}{default} {\beamercolorbox[vmode]{quote}} \defbeamertemplate*{quote end}{default} {\endbeamercolorbox} % Footnotes \defbeamertemplate*{footnote}{default} { \parindent 1em\noindent% \raggedright \hbox to 1.8em{\hfil\insertfootnotemark}\insertfootnotetext\par% } % Captions \defbeamertemplate*{caption}{default} {% \raggedright {% \usebeamercolor[fg]{caption name}% \usebeamerfont*{caption name}% \insertcaptionname \usebeamertemplate{caption label separator}% }% \insertcaption\par } \defbeamertemplate*{caption label separator}{default}{ : } % Blocks \defbeamertemplateparent{blocks}{block begin,block end,% block alerted begin,block alerted end,% block example begin,block example end} {} \defbeamertemplate*{block begin}{default} { \par\vskip\medskipamount% \begin{beamercolorbox}[colsep*=.75ex]{block title} \usebeamerfont*{block title}\insertblocktitle% \end{beamercolorbox}% {\parskip0pt\par}% \ifbeamercolorempty[bg]{block title} {} {\ifbeamercolorempty[bg]{block body}{}{\nointerlineskip\vskip-0.5pt}}% \usebeamerfont{block body}% \begin{beamercolorbox}[colsep*=.75ex,vmode]{block body}% \ifbeamercolorempty[bg]{block body}{\vskip-.25ex}{\vskip-.75ex}\vbox{}% } \defbeamertemplate*{block end}{default} {\end{beamercolorbox}\vskip\smallskipamount} \defbeamertemplate*{block alerted begin}{default} { \par\vskip\medskipamount% \begin{beamercolorbox}[colsep*=.75ex]{block title alerted} \usebeamerfont*{block title alerted}\insertblocktitle% \end{beamercolorbox}% {\parskip0pt\par}% \ifbeamercolorempty[bg]{block title alerted} {} {\ifbeamercolorempty[bg]{block body alerted}{}{\nointerlineskip\vskip-0.5pt}}% \usebeamerfont{block body alerted}% \begin{beamercolorbox}[colsep*=.75ex,vmode]{block body alerted}% \ifbeamercolorempty[bg]{block body alerted}{\vskip-.25ex}{\vskip-.75ex}\vbox{}% } \defbeamertemplate*{block alerted end}{default} {\end{beamercolorbox}\vskip\smallskipamount} \defbeamertemplate*{block example begin}{default} { \par\vskip\medskipamount% \begin{beamercolorbox}[colsep*=.75ex]{block title example} \usebeamerfont*{block title example}\insertblocktitle% \end{beamercolorbox}% {\parskip0pt\par}% \ifbeamercolorempty[bg]{block title example} {} {\ifbeamercolorempty[bg]{block body example}{}{\nointerlineskip\vskip-0.5pt}}% \usebeamerfont{block body example}% \begin{beamercolorbox}[colsep*=.75ex,vmode]{block body example}% \ifbeamercolorempty[bg]{block body example}{\vskip-.25ex}{\vskip-.75ex}\vbox{}% } \defbeamertemplate*{block example end}{default} {\end{beamercolorbox}\vskip\smallskipamount} % Theorems \defbeamertemplateparent{theorems}{theorem begin,theorem end} {} \defbeamertemplate*{theorem begin}{default} {% \begin{\inserttheoremblockenv} {% \inserttheoremname \ifx\inserttheoremaddition\@empty\else\ (\inserttheoremaddition)\fi% }% } \defbeamertemplate*{theorem end}{default} {\end{\inserttheoremblockenv}} % Proofs \defbeamertemplate*{proof begin}{default} {\begin{block}{\insertproofname}} \defbeamertemplate*{proof end}{default} {\end{block}} \defbeamertemplate*{qed symbol}{default} {\openbox} \mode beamer/base/themes/outer/0000755000175000017500000000000012050430504015207 5ustar mohuramohurabeamer/base/themes/outer/beamerouterthemesplit.sty0000644000175000017500000000466512050430504022374 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/outer/beamerouterthemesplit.sty,v 51a8c72084af 2012/10/16 20:17:59 joseph $ \mode \setbeamercolor{section in head/foot}{parent=palette quaternary} \setbeamercolor{subsection in head/foot}{parent=palette primary} \setbeamercolor{author in head/foot}{parent=section in head/foot} \setbeamercolor{title in head/foot}{parent=subsection in head/foot} \usesectionheadtemplate {\hfill\insertsectionhead} {\hfill\color{fg!50!bg}\insertsectionhead} % Head \ifbeamer@compress \defbeamertemplate*{headline}{split theme} {% \leavevmode% \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{section in head/foot}% \insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% \end{beamercolorbox}% \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{subsection in head/foot}% \insertsubsectionnavigationhorizontal{.5\paperwidth}{}{\hskip0pt plus1filll}% \end{beamercolorbox}% } \else \defbeamertemplate*{headline}{split theme} {% \leavevmode% \@tempdimb=2.4375ex% \ifnum\beamer@subsectionmax<\beamer@sectionmax% \multiply\@tempdimb by\beamer@sectionmax% \else% \multiply\@tempdimb by\beamer@subsectionmax% \fi% \ifdim\@tempdimb>0pt% \advance\@tempdimb by 1.825ex% \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{section in head/foot}% \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% \end{beamercolorbox}% \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{subsection in head/foot}% \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.5\paperwidth}\vfil}% \end{beamercolorbox}% \fi% } \fi \defbeamertemplate*{footline}{split theme} {% \leavevmode% \hbox{\begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fill,rightskip=.3cm]{author in head/foot}% \usebeamerfont{author in head/foot}\insertshortauthor \end{beamercolorbox}% \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}% \usebeamerfont{title in head/foot}\insertshorttitle \end{beamercolorbox}}% \vskip0pt% } \mode beamer/base/themes/outer/beamerouterthemetree.sty0000644000175000017500000000412012050430504022162 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/outer/beamerouterthemetree.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \newif\ifbeamer@tree@showhooks \beamer@tree@showhookstrue \DeclareOptionBeamer{hooks}[true]{\csname beamer@tree@showhooks#1\endcsname} \ProcessOptionsBeamer \mode \defbeamertemplate*{headline}{tree theme} {% \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{upper separation line head} \end{beamercolorbox} \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} \usebeamerfont{title in head/foot}\insertshorttitle \end{beamercolorbox} \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} \usebeamerfont{section in head/foot}% \ifbeamer@tree@showhooks \setbox\beamer@tempbox=\hbox{\insertsectionhead}% \ifdim\wd\beamer@tempbox>1pt% \hskip2pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% \hskip1pt% \fi% \else% \hskip6pt% \fi% \insertsectionhead \end{beamercolorbox} \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,% leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} \usebeamerfont{subsection in head/foot}% \ifbeamer@tree@showhooks \setbox\beamer@tempbox=\hbox{\insertsubsectionhead}% \ifdim\wd\beamer@tempbox>1pt% \hskip9.4pt\raise1.9pt\hbox{\vrule width0.4pt height1.875ex\vrule width 5pt height0.4pt}% \hskip1pt% \fi% \else% \hskip12pt% \fi% \insertsubsectionhead \end{beamercolorbox} \begin{beamercolorbox}[wd=\paperwidth,colsep=1.5pt]{lower separation line head} \end{beamercolorbox} } \mode beamer/base/themes/outer/beamerouterthemeinfolines.sty0000644000175000017500000000400312050430504023211 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/outer/beamerouterthemeinfolines.sty,v 51a8c72084af 2012/10/16 20:17:59 joseph $ \mode \setbeamercolor*{author in head/foot}{parent=palette tertiary} \setbeamercolor*{title in head/foot}{parent=palette secondary} \setbeamercolor*{date in head/foot}{parent=palette primary} \setbeamercolor*{section in head/foot}{parent=palette tertiary} \setbeamercolor*{subsection in head/foot}{parent=palette primary} \defbeamertemplate*{footline}{infolines theme} { \leavevmode% \hbox{% \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}% \usebeamerfont{author in head/foot}\insertshortauthor\expandafter\beamer@ifempty\expandafter{\beamer@shortinstitute}{}{~~(\insertshortinstitute)} \end{beamercolorbox}% \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}% \usebeamerfont{title in head/foot}\insertshorttitle \end{beamercolorbox}% \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}% \usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em} \insertframenumber{} / \inserttotalframenumber\hspace*{2ex} \end{beamercolorbox}}% \vskip0pt% } \defbeamertemplate*{headline}{infolines theme} { \leavevmode% \hbox{% \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.65ex,dp=1.5ex,right]{section in head/foot}% \usebeamerfont{section in head/foot}\insertsectionhead\hspace*{2ex} \end{beamercolorbox}% \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.65ex,dp=1.5ex,left]{subsection in head/foot}% \usebeamerfont{subsection in head/foot}\hspace*{2ex}\insertsubsectionhead \end{beamercolorbox}}% \vskip0pt% } \setbeamersize{text margin left=1em,text margin right=1em} \mode beamer/base/themes/outer/beamerouterthemesidebar.sty0000644000175000017500000001132112050430504022635 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/outer/beamerouterthemesidebar.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \newdimen\beamer@sidebarwidth \newdimen\beamer@headheight \usebeamerfont{frametitle} \beamer@sidebarwidth=2.5\baselineskip \beamer@headheight=2.5\baselineskip \reset@font \def\beamer@lefttext{left} \DeclareOptionBeamer{hideothersubsections}[]{\beamer@nav@subsectionstyle{show/show/hide}} \DeclareOptionBeamer{hideallsubsections}[]{\beamer@nav@subsectionstyle{hide}} \DeclareOptionBeamer{width}{\beamer@sidebarwidth=#1} \DeclareOptionBeamer{height}{\beamer@headheight=#1} \DeclareOptionBeamer{left}{\def\beamer@sidebarside{left}} \DeclareOptionBeamer{right}{\def\beamer@sidebarside{right}} \ExecuteOptionsBeamer{left} \ProcessOptionsBeamer \mode \ifdim\beamer@headheight>0pt % if head height is 0pt, use default frame title \setbeamercolor*{frametitle}{parent=sidebar} \defbeamertemplate*{frametitle}{sidebar theme} {% \nointerlineskip% \vskip-\beamer@headheight% \vbox to \beamer@headheight{% \vfil \leftskip=-\beamer@leftmargin% \advance\leftskip by0.3cm% \rightskip=-\beamer@rightmargin% \advance\rightskip by0.3cm plus1fil% {\usebeamercolor[fg]{frametitle}\usebeamerfont{frametitle}\insertframetitle\par}% {\usebeamercolor[fg]{framesubtitle}\usebeamerfont{framesubtitle}\insertframesubtitle\par}% \vbox{}% \vskip-1em% \vfil }% } \defbeamertemplate*{headline}{sidebar theme} {% \begin{beamercolorbox}[wd=\paperwidth]{frametitle} \ifx\beamer@sidebarside\beamer@lefttext% \else% \hfill% \fi% \ifdim\beamer@sidebarwidth>0pt% \usebeamercolor[bg]{logo}% \vrule width\beamer@sidebarwidth height \beamer@headheight% \hskip-\beamer@sidebarwidth% \hbox to \beamer@sidebarwidth{\hss\vbox to \beamer@headheight{\vss\hbox{\color{fg}\insertlogo}\vss}\hss}% \else% \vrule width0pt height \beamer@headheight% \fi% \end{beamercolorbox} } \fi \def\beamer@sidebarformat#1#2#3{% \begin{beamercolorbox}[wd=\beamer@sidebarwidth,leftskip=#1,rightskip=1ex plus1fil,vmode]{#2} \vbox{}% #3\par% \vbox{}% \vskip-1.5ex% \end{beamercolorbox} } \defbeamertemplate*{section in sidebar}{sidebar theme} {% \vbox{% \vskip1ex% \beamer@sidebarformat{3pt}{section in sidebar}{\insertsectionhead}% }% } \defbeamertemplate*{section in sidebar shaded}{sidebar theme} {% \vbox{% \vskip1ex% \beamer@sidebarformat{3pt}{section in sidebar shaded}{\insertsectionhead}% }% } \defbeamertemplate*{subsection in sidebar}{sidebar theme} {% \beamer@sidebarformat{5pt}{subsection in sidebar}{\insertsubsectionhead}% } \defbeamertemplate*{subsection in sidebar shaded}{sidebar theme} {% \beamer@sidebarformat{5pt}{subsection in sidebar shaded}{\insertsubsectionhead}% } \defbeamertemplate*{subsubsection in sidebar}{sidebar theme} {% \beamer@sidebarformat{7pt}{subsubsection in sidebar}{\insertsubsubsectionhead}% } \defbeamertemplate*{subsubsection in sidebar shaded}{sidebar theme} {% \beamer@sidebarformat{7pt}{subsubsection in sidebar shaded}{\insertsubsubsectionhead}% } \ifdim\beamer@sidebarwidth>0pt % Sidebar \setbeamersize{sidebar width \beamer@sidebarside=\beamer@sidebarwidth} \defbeamertemplate*{sidebar \beamer@sidebarside}{sidebar theme} { \beamer@tempdim=\beamer@sidebarwidth% \advance\beamer@tempdim by -6pt% {\usebeamerfont{title in sidebar}% \vskip1.5em% \hskip3pt% \usebeamercolor[fg]{title in sidebar}% \insertshorttitle[width=\beamer@tempdim,center,respectlinebreaks]\par% \vskip1.25em% }% {% \hskip3pt% \usebeamercolor[fg]{author in sidebar}% \usebeamerfont{author in sidebar}% \insertshortauthor[width=\beamer@tempdim,center,respectlinebreaks]\par% \vskip1.25em% }% \insertverticalnavigation{\beamer@sidebarwidth}% \vfill \ifx\beamer@sidebarside\beamer@lefttext% \else% \usebeamercolor{normal text}% \llap{\usebeamertemplate***{navigation symbols}\hskip0.1cm}% \vskip2pt% \fi% }% \ifx\beamer@sidebarside\beamer@lefttext% \defbeamertemplate*{sidebar right}{sidebar theme} {% \vfill% \llap{\usebeamertemplate***{navigation symbols}\hskip0.1cm}% \vskip2pt} \fi % Margins \setbeamersize{text margin left=0.5cm,text margin right=0.5cm} \fi \mode beamer/base/themes/outer/beamerouterthememiniframes.sty0000644000175000017500000001052512050430504023363 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/outer/beamerouterthememiniframes.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \setbeamercolor{section in head/foot}{parent=palette tertiary} \setbeamercolor{subsection in head/foot}{parent=palette secondary} \setbeamercolor{author in head/foot}{parent=subsection in head/foot} \setbeamercolor{title in head/foot}{parent=section in head/foot} \def\beamer@theme@footline@empty{} \def\beamer@theme@footline@authorinstitute{ \defbeamertemplate*{footline}{miniframes theme} {% \begin{beamercolorbox}[colsep=1.5pt]{upper separation line foot} \end{beamercolorbox} \begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,% leftskip=.3cm,rightskip=.3cm plus1fil]{author in head/foot}% \leavevmode{\usebeamerfont{author in head/foot}\insertshortauthor}% \hfill% {\usebeamerfont{institute in head/foot}\usebeamercolor[fg]{institute in head/foot}\insertshortinstitute}% \end{beamercolorbox}% \begin{beamercolorbox}[colsep=1.5pt]{lower separation line foot} \end{beamercolorbox} } } \def\beamer@theme@footline@authortitle{ \defbeamertemplate*{footline}{miniframes theme} {% \begin{beamercolorbox}[colsep=1.5pt]{upper separation line foot} \end{beamercolorbox} \begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,% leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}% \leavevmode{\usebeamerfont{title in head/foot}\insertshorttitle}% \hfill% {\usebeamerfont{author in head/foot}\usebeamercolor[fg]{author in head/foot}\insertshortauthor}% \end{beamercolorbox}% \begin{beamercolorbox}[colsep=1.5pt]{lower separation line foot} \end{beamercolorbox} } } \def\beamer@theme@footline@institutetitle{ \defbeamertemplate*{footline}{miniframes theme} {% \begin{beamercolorbox}[colsep=1.5pt]{upper separation line foot} \end{beamercolorbox} \begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,% leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}% \leavevmode{\usebeamerfont{title in head/foot}\insertshorttitle}% \hfill% {\usebeamerfont{institute in head/foot}\usebeamercolor[fg]{institute in head/foot}\insertshortinstitute}% \end{beamercolorbox}% \begin{beamercolorbox}[colsep=1.5pt]{lower separation line foot} \end{beamercolorbox} } } \def\beamer@theme@footline@authorinstitutetitle{ \defbeamertemplate*{footline}{miniframes theme} {% \begin{beamercolorbox}[colsep=1.5pt]{upper separation line foot} \end{beamercolorbox} \begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,% leftskip=.3cm,rightskip=.3cm plus1fil]{author in head/foot}% \leavevmode{\usebeamerfont{author in head/foot}\insertshortauthor}% \hfill% {\usebeamerfont{institute in head/foot}\usebeamercolor[fg]{institute in head/foot}\insertshortinstitute}% \end{beamercolorbox}% \begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,% leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}% {\usebeamerfont{title in head/foot}\insertshorttitle}% \end{beamercolorbox}% \begin{beamercolorbox}[colsep=1.5pt]{lower separation line foot} \end{beamercolorbox} } } \newif\ifbeamer@theme@subsection \beamer@theme@subsectiontrue \DeclareOptionBeamer{footline}{\csname beamer@theme@footline@#1\endcsname} \DeclareOptionBeamer{subsection}[true]{\csname beamer@theme@subsection#1\endcsname} \ProcessOptionsBeamer \mode % Head \defbeamertemplate*{headline}{miniframes theme} {% \begin{beamercolorbox}[colsep=1.5pt]{upper separation line head} \end{beamercolorbox} \begin{beamercolorbox}{section in head/foot} \vskip2pt\insertnavigation{\paperwidth}\vskip2pt \end{beamercolorbox}% \ifbeamer@theme@subsection% \begin{beamercolorbox}[colsep=1.5pt]{middle separation line head} \end{beamercolorbox} \begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,% leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} \usebeamerfont{subsection in head/foot}\insertsubsectionhead \end{beamercolorbox}% \fi% \begin{beamercolorbox}[colsep=1.5pt]{lower separation line head} \end{beamercolorbox} } \mode beamer/base/themes/outer/beamerouterthemesmoothbars.sty0000644000175000017500000000701212050430504023407 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/outer/beamerouterthemesmoothbars.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \newif\ifbeamer@sb@subsection \DeclareOptionBeamer{subsection}[true]{\csname beamer@sb@subsection#1\endcsname} \ExecuteOptionsBeamer{subsection=true} \ProcessOptionsBeamer \mode \setbeamercolor{frametitle}{parent=palette primary} \setbeamercolor{subsection in head/foot}{parent=palette secondary} \setbeamercolor{section in head/foot}{parent=palette quaternary} \beamer@compresstrue \AtBeginDocument{ { \usebeamerfont*{headline} \colorlet{global.bg}{bg} \usebeamercolor{subsection in head/foot} \usebeamercolor{section in head/foot} \usebeamercolor{frametitle} \ifbeamer@sb@subsection \pgfdeclareverticalshading{beamer@barshade}{\the\paperwidth}{% color(0ex)=(global.bg);% color(1ex)=(subsection in head/foot.bg);% color(3.25ex)=(subsection in head/foot.bg);% color(4.25ex)=(section in head/foot.bg);% color(9.75ex)=(section in head/foot.bg)% } \pgfdeclareverticalshading{beamer@aboveframetitle}{\the\paperwidth}{% color(0ex)=(frametitle.bg);% color(1ex)=(frametitle.bg);% color(2ex)=(subsection in head/foot.bg) } \else \pgfdeclareverticalshading{beamer@barshade}{\the\paperwidth}{% color(0ex)=(global.bg);% color(1ex)=(section in head/foot.bg);% color(7ex)=(section in head/foot.bg)% } \pgfdeclareverticalshading{beamer@aboveframetitle}{\the\paperwidth}{% color(0ex)=(frametitle.bg);% color(1ex)=(frametitle.bg);% color(2ex)=(section in head/foot.bg) } \fi \pgfdeclareverticalshading{beamer@belowframetitle}{\the\paperwidth}{% color(0ex)=(global.bg);% color(1ex)=(frametitle.bg) } } } % Head \defbeamertemplate*{headline}{smoothbars theme} {% \pgfuseshading{beamer@barshade}% \ifbeamer@sb@subsection% \vskip-9.75ex% \else% \vskip-7ex% \fi% \begin{beamercolorbox}[ignorebg,ht=2.25ex,dp=3.75ex]{section in head/foot} \insertnavigation{\paperwidth} \end{beamercolorbox}% \ifbeamer@sb@subsection% \begin{beamercolorbox}[ignorebg,ht=2.125ex,dp=1.125ex,% leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} \usebeamerfont{subsection in head/foot}\insertsubsectionhead \end{beamercolorbox}% \fi% }% \defbeamertemplate*{frametitle}{smoothbars theme} {% \nointerlineskip% \usebeamerfont{headline}% \begin{beamercolorbox}[wd=\paperwidth,ht=1.5ex,dp=0ex,vmode]{empty} \pgfuseshading{beamer@aboveframetitle}% \end{beamercolorbox}% \vskip-.5ex% \nointerlineskip% \begin{beamercolorbox}[wd=\paperwidth,leftskip=.3cm,rightskip=.3cm plus1fil,vmode]{frametitle} \usebeamerfont*{frametitle}\insertframetitle% \ifx\insertframesubtitle\@empty% \strut\par% \else \par{\usebeamerfont*{framesubtitle}{\usebeamercolor[fg]{framesubtitle}\insertframesubtitle}\strut\par}% \fi%% \usebeamerfont{headline}% \vskip.5ex \end{beamercolorbox}% \nointerlineskip \begin{beamercolorbox}[wd=\paperwidth,ht=.5ex,dp=0ex]{empty} \pgfuseshading{beamer@belowframetitle}% \end{beamercolorbox}% } \mode beamer/base/themes/outer/beamerouterthemesmoothtree.sty0000644000175000017500000000605112050430504023421 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/outer/beamerouterthemesmoothtree.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamercolor{frametitle}{parent=palette primary} \AtBeginDocument{ { \usebeamerfont*{headline} \usebeamercolor{normal text} \usebeamercolor{title in head/foot} \usebeamercolor{subsection in head/foot} \usebeamercolor{section in head/foot} \usebeamercolor{frametitle} \pgfdeclareverticalshading{beamer@treeshade}{\the\paperwidth}{% color(0ex)=(normal text.bg);% color(1ex)=(subsection in head/foot.bg);% color(3.25ex)=(subsection in head/foot.bg);% color(4.25ex)=(section in head/foot.bg);% color(6.5ex)=(section in head/foot.bg);% color(7.5ex)=(title in head/foot.bg);% color(10.25ex)=(title in head/foot.bg)% } \pgfdeclareverticalshading{beamer@aboveframetitle}{\the\paperwidth}{% color(0ex)=(frametitle.bg);% color(1ex)=(frametitle.bg);% color(2ex)=(subsection in head/foot.bg) } \pgfdeclareverticalshading{beamer@belowframetitle}{\the\paperwidth}{% color(0ex)=(normal text.bg);% color(1ex)=(frametitle.bg) } } } \defbeamertemplate*{headline}{smoothtree theme} {% \pgfuseshading{beamer@treeshade}% \vskip-10.25ex% \begin{beamercolorbox}[wd=\paperwidth,ht=2.125ex,dp=1.125ex,ignorebg,% leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} \usebeamerfont{title in head/foot}\insertshorttitle \end{beamercolorbox} \begin{beamercolorbox}[wd=\paperwidth,ht=2.125ex,dp=1.125ex,ignorebg,% leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot} \usebeamerfont{section in head/foot}% \hskip6pt\insertsectionhead \end{beamercolorbox} \begin{beamercolorbox}[wd=\paperwidth,ht=2.125ex,dp=1.125ex,ignorebg,% leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot} \usebeamerfont{subsection in head/foot}% \hskip12pt\insertsubsectionhead \end{beamercolorbox} } \defbeamertemplate*{frametitle}{smoothtree theme} {% \nointerlineskip% \usebeamerfont{headline}% \begin{beamercolorbox}[wd=\paperwidth,ht=1.5ex,dp=0ex]{empty} \pgfuseshading{beamer@aboveframetitle}% \end{beamercolorbox}% \vskip-.5ex% \nointerlineskip% \begin{beamercolorbox}[wd=\paperwidth,leftskip=.935cm,rightskip=.3cm plus1fil]{frametitle} \usebeamerfont*{frametitle}\insertframetitle% \ifx\insertframesubtitle\@empty% \strut\par% \else \par{\usebeamerfont*{framesubtitle}{\usebeamercolor[fg]{framesubtitle}\insertframesubtitle}\strut\par}% \fi%% \usebeamerfont{headline}% \vskip.5ex \end{beamercolorbox}% \nointerlineskip \begin{beamercolorbox}[wd=\paperwidth,ht=.5ex,dp=0ex]{empty} \pgfuseshading{beamer@belowframetitle}% \end{beamercolorbox}% } \mode beamer/base/themes/outer/beamerouterthemeshadow.sty0000644000175000017500000000461612050430504022522 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/outer/beamerouterthemeshadow.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \useoutertheme{split} \setbeamercolor{frametitle}{parent=subsection in head/foot} \setbeamercolor{frametitle right}{parent=section in head/foot} \pgfdeclarehorizontalshading[frametitle.bg,frametitle right.bg]{beamer@frametitleshade}{\paperheight}{% color(0pt)=(frametitle.bg); color(\paperwidth)=(frametitle right.bg)} \AtBeginDocument{ \pgfdeclareverticalshading{beamer@topshade}{\paperwidth}{% color(0pt)=(bg); color(4pt)=(black!50!bg)} } \addtobeamertemplate{headline} {} {% \vskip-0.2pt \pgfuseshading{beamer@topshade} \vskip-2pt } \defbeamertemplate*{frametitle}{shadow theme} {% \nointerlineskip% \vskip-2pt% \hbox{\leavevmode \advance\beamer@leftmargin by -12bp% \advance\beamer@rightmargin by -12bp% \beamer@tempdim=\textwidth% \advance\beamer@tempdim by \beamer@leftmargin% \advance\beamer@tempdim by \beamer@rightmargin% \hskip-\Gm@lmargin\hbox{% \setbox\beamer@tempbox=\hbox{\begin{minipage}[b]{\paperwidth}% \vbox{}\vskip-.75ex% \leftskip0.3cm% \rightskip0.3cm plus1fil\leavevmode \insertframetitle% \ifx\insertframesubtitle\@empty% \strut\par% \else \par{\usebeamerfont*{framesubtitle}{\usebeamercolor[fg]{framesubtitle}\insertframesubtitle}\strut\par}% \fi% \nointerlineskip \vbox{}% \end{minipage}}% \beamer@tempdim=\ht\beamer@tempbox% \advance\beamer@tempdim by 2pt% \begin{pgfpicture}{0pt}{0pt}{\paperwidth}{\beamer@tempdim} \usebeamercolor{frametitle right} \pgfpathrectangle{\pgfpointorigin}{\pgfpoint{\paperwidth}{\beamer@tempdim}} \pgfusepath{clip} \pgftext[left,base]{\pgfuseshading{beamer@frametitleshade}} \end{pgfpicture} \hskip-\paperwidth% \box\beamer@tempbox% }% \hskip-\Gm@rmargin% }% \nointerlineskip \vskip-0.2pt \hbox to\textwidth{\hskip-\Gm@lmargin\pgfuseshading{beamer@topshade}\hskip-\Gm@rmargin} \vskip-2pt } \mode beamer/base/themes/outer/beamerouterthemedefault.sty0000644000175000017500000001413612050430504022657 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/outer/beamerouterthemedefault.sty,v 5ed0f4010e8a 2012/10/02 06:08:21 joseph $ \mode % Mini frames \defbeamertemplateparent{mini frames} {mini frame,mini frame in current section,mini frame in current subsection} {} \defbeamertemplate*{mini frame}{default} {% \begin{pgfpicture}{0pt}{0pt}{0.1cm}{0.1cm} \pgfpathcircle{\pgfpoint{0.05cm}{0.05cm}}{0.05cm} \pgfusepath{fill,stroke} \end{pgfpicture}% } [action] { \setbeamersize{mini frame size=.14cm,mini frame offset=.03cm} } \defbeamertemplate*{mini frame in current section}{default} {% \begin{pgfpicture}{0pt}{0pt}{0.1cm}{0.1cm} \pgfpathcircle{\pgfpoint{0.05cm}{0.05cm}}{0.05cm} \pgfusepath{stroke} \end{pgfpicture}% } \defbeamertemplate*{mini frame in current subsection}{default} {% \begin{pgfpicture}{0pt}{0pt}{0.1cm}{0.1cm} \pgfpathcircle{\pgfpoint{0.05cm}{0.05cm}}{0.05cm} \pgfusepath{stroke} \end{pgfpicture}% } \defbeamertemplate*{mini frame in other section}{default}[1][50] {\color{fg!#1!bg}\usebeamertemplate{mini frame in current section}} \defbeamertemplate*{mini frame in other subsection}{default}[1][50] {\color{fg!#1!bg}\usebeamertemplate{mini frame in current subsection}} % Navigation symbols \defbeamertemplate*{navigation symbols}{default} {% \hbox{% \hbox{\insertslidenavigationsymbol} \hbox{\insertframenavigationsymbol} \hbox{\insertsubsectionnavigationsymbol} \hbox{\insertsectionnavigationsymbol} \hbox{\insertdocnavigationsymbol} \hbox{\insertbackfindforwardnavigationsymbol}% }% } % No navigation symbols in handout or trans mode: \only{\setbeamertemplate{navigation symbols}{}} % Section and subsections in head/foot \defbeamertemplate*{section in head/foot}{default} {\insertsectionhead} \defbeamertemplate*{section in head/foot shaded}{default}[1][50] {\color{fg!#1!bg}\usebeamertemplate{section in head/foot}} \defbeamertemplate*{subsection in head/foot}{default} {\insertsubsectionhead} \defbeamertemplate*{subsection in head/foot shaded}{default}[1][50] {\color{fg!#1!bg}\usebeamertemplate{subsection in head/foot}} \defbeamertemplate*{subsubsection in head/foot}{default} {\insertsubsubsectionhead} \defbeamertemplate*{subsubsection in head/foot shaded}{default}[1][50] {\color{fg!#1!bg}\usebeamertemplate{subsubsection in head/foot}} % Headline and footline \defbeamertemplate*{headline}{default} {} \defbeamertemplate*{footline}{default} {} % background \defbeamertemplate*{background}{default} {} \defbeamertemplate*{background canvas}{default} {% \ifbeamercolorempty[bg]{background canvas}{}{\color{bg}\vrule width\paperwidth height\paperheight}% } % Sidebar \defbeamertemplate*{sidebar left}{default} {} \defbeamertemplate*{sidebar right}{default} { \vfill% \llap{\insertlogo\hskip0.1cm}% \vskip2pt% \llap{\usebeamertemplate***{navigation symbols}\hskip0.1cm}% \vskip2pt% } \defbeamertemplate*{sidebar canvas left}{default} {% \ifbeamercolorempty[bg]{sidebar left}{} {\color{bg}\vrule height\sidebarheight width\beamer@leftsidebar}% } \defbeamertemplate*{sidebar canvas right}{default} {% \ifbeamercolorempty[bg]{sidebar right}{} {\color{bg}\vrule height\sidebarheight width\beamer@rightsidebar}% } % Frame title: default \defbeamertemplate*{frametitle}{default}[1][left] { \ifbeamercolorempty[bg]{frametitle}{}{\nointerlineskip}% \@tempdima=\textwidth% \advance\@tempdima by\beamer@leftmargin% \advance\@tempdima by\beamer@rightmargin% \begin{beamercolorbox}[sep=0.3cm,#1,wd=\the\@tempdima]{frametitle} \usebeamerfont{frametitle}% \vbox{}\vskip-1ex% \if@tempswa\else\csname beamer@fte#1\endcsname\fi% \strut\insertframetitle\strut\par% {% \ifx\insertframesubtitle\@empty% \else% {\usebeamerfont{framesubtitle}\usebeamercolor[fg]{framesubtitle}\insertframesubtitle\strut\par}% \fi }% \vskip-1ex% \if@tempswa\else\vskip-.3cm\fi% set inside beamercolorbox... evil here... \end{beamercolorbox}% } \def\beamer@fteright{\vskip0.35cm\advance\leftskip by 1.7cm\advance\rightskip by1.7cm} % Frame title continuations, default \defbeamertemplate*{frametitle continuation}{default}{\insertcontinuationcountroman} % Notes \defbeamertemplate*{note page}{default} {% {% \scriptsize \insertvrule{.25\paperheight}{white!90!black} \vskip-.25\paperheight \nointerlineskip \vbox{ \hfill\insertslideintonotes{0.25}\hskip-\Gm@rmargin\hskip0pt% \vskip-0.25\paperheight% \nointerlineskip \begin{pgfpicture}{0cm}{0cm}{0cm}{0cm} \begin{pgflowlevelscope}{\pgftransformrotate{90}} {\pgftransformshift{\pgfpoint{-2cm}{0.2cm}}% \pgftext[base,left]{\footnotesize\the\year-\ifnum\month<10\relax0\fi\the\month-\ifnum\day<10\relax0\fi\the\day}} \end{pgflowlevelscope} \end{pgfpicture}} \nointerlineskip \vbox to .25\paperheight{\vskip0.5em \hbox{\insertshorttitle[width=8cm]}% \setbox\beamer@tempbox=\hbox{\insertsection}% \hbox{\ifdim\wd\beamer@tempbox>1pt{\hskip4pt\raise3pt\hbox{\vrule width0.4pt height7pt\vrule width 9pt height0.4pt}}\hskip1pt\hbox{\begin{minipage}[t]{7.5cm}\def\breakhere{}\insertsection\end{minipage}}\fi% }% \setbox\beamer@tempbox=\hbox{\insertsubsection}% \hbox{\ifdim\wd\beamer@tempbox>1pt{\hskip17.4pt\raise3pt\hbox{\vrule width0.4pt height7pt\vrule width 9pt height0.4pt}}\hskip1pt\hbox{\begin{minipage}[t]{7.5cm}\def\breakhere{}\insertsubsection\end{minipage}}\fi% }% \setbox\beamer@tempbox=\hbox{\insertshortframetitle}% \hbox{\ifdim\wd\beamer@tempbox>1pt{\hskip30.8pt\raise3pt\hbox{\vrule width0.4pt height7pt\vrule width 9pt height0.4pt}}\hskip1pt\hbox{\insertshortframetitle[width=7cm]}\fi% }% \vfil}% }% \vskip.25em \nointerlineskip \insertnote } \mode beamer/base/themes/color/0000755000175000017500000000000012050430504015167 5ustar mohuramohurabeamer/base/themes/color/beamercolorthemedefault.sty0000644000175000017500000001544712050430504022625 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemedefault.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} % use structure theme to change \setbeamercolor{normal text}{fg=black,bg=white} \setbeamercolor{alerted text}{fg=red} \setbeamercolor{example text}{fg=green!50!black} \setbeamercolor{structure}{fg=beamer@blendedblue} \setbeamercolor{background canvas}{parent=normal text} \setbeamercolor{background}{parent=background canvas} \setbeamercolor{palette primary}{use=structure,fg=structure.fg} \setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} \setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} \setbeamercolor{palette quaternary}{fg=black} \setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} \setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} \setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} \setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} \setbeamercolor{math text}{} \setbeamercolor{math text inlined}{parent=math text} \setbeamercolor{math text displayed}{parent=math text} \setbeamercolor{normal text in math text}{} \setbeamercolor{local structure}{parent=structure} \setbeamercolor{titlelike}{parent=structure} \setbeamercolor{title}{parent=titlelike} \setbeamercolor{title in head/foot}{parent=palette quaternary} \setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} \setbeamercolor{subtitle}{parent=title} \setbeamercolor{author}{} \setbeamercolor{author in head/foot}{parent=palette primary} \setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} \setbeamercolor{institute}{} \setbeamercolor{institute in head/foot}{parent=palette tertiary} \setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} \setbeamercolor{date}{} \setbeamercolor{date in head/foot}{parent=palette secondary} \setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} \setbeamercolor{titlegraphic}{} \setbeamercolor{part name}{} \setbeamercolor{part title}{parent=titlelike} \setbeamercolor{section name}{} \setbeamercolor{section title}{parent=titlelike} \setbeamercolor{section in toc}{parent=structure} \setbeamercolor{section in toc shaded}{parent=section in toc} \setbeamercolor{section in head/foot}{parent=palette tertiary} \setbeamercolor{section in sidebar}{parent=palette sidebar secondary} \setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} \setbeamercolor{section number projected}{parent=item projected} \setbeamercolor{subsection name}{} \setbeamercolor{subsection title}{parent=titlelike} \setbeamercolor{subsection in toc}{} \setbeamercolor{subsection in toc shaded}{parent=subsection in toc} \setbeamercolor{subsection in head/foot}{parent=palette secondary} \setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} \setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} \setbeamercolor{subsection number projected}{parent={subitem projected}} \setbeamercolor{subsubsection in toc}{parent=subsection in toc} \setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} \setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} \setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} \setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} \setbeamercolor{subsubsection number projected}{parent=subsubitem projected} \setbeamercolor{headline}{} \setbeamercolor{footline}{} \setbeamercolor{sidebar}{} \setbeamercolor{sidebar left}{parent=sidebar} \setbeamercolor{sidebar right}{parent=sidebar} \setbeamercolor{logo}{parent=palette secondary} \setbeamercolor{frametitle}{parent=titlelike} \setbeamercolor{framesubtitle}{parent=frametitle} \setbeamercolor{frametitle right}{parent=frametitle} \setbeamercolor{caption}{} \setbeamercolor{caption name}{parent=structure} \setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} \setbeamercolor{button border}{use=button,fg=button.bg} \setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} \setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} \setbeamercolor{mini frame}{parent=section in head/foot} \setbeamercolor{block body}{} \setbeamercolor{block body alerted}{} \setbeamercolor{block body example}{} \setbeamercolor{block title}{parent=structure} \setbeamercolor{block title alerted}{parent=alerted text} \setbeamercolor{block title example}{parent=example text} \setbeamercolor{item}{parent=local structure} \setbeamercolor{subitem}{parent=item} \setbeamercolor{subsubitem}{parent=subitem} \setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} \setbeamercolor{subitem projected}{parent=item projected} \setbeamercolor{subsubitem projected}{parent=subitem projected} \setbeamercolor{enumerate item}{parent=item} \setbeamercolor{enumerate subitem}{parent=subitem} \setbeamercolor{enumerate subsubitem}{parent=subsubitem} \setbeamercolor{itemize item}{parent=item} \setbeamercolor{itemize subitem}{parent=subitem} \setbeamercolor{itemize subsubitem}{parent=subsubitem} \setbeamercolor{itemize/enumerate body}{} \setbeamercolor{itemize/enumerate subbody}{} \setbeamercolor{itemize/enumerate subsubbody}{} \setbeamercolor{description item}{parent=item} \setbeamercolor{bibliography item}{parent=item} \setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} \setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} \setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} \setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} \setbeamercolor{separation line}{} \setbeamercolor{upper separation line head}{parent=separation line} \setbeamercolor{middle separation line head}{parent=separation line} \setbeamercolor{lower separation line head}{parent=separation line} \setbeamercolor{upper separation line foot}{parent=separation line} \setbeamercolor{middle separation line foot}{parent=separation line} \setbeamercolor{lower separation line foot}{parent=separation line} \setbeamercolor{abstract}{} \setbeamercolor{abstract title}{parent=structure} \setbeamercolor{verse}{} \setbeamercolor{quotation}{} \setbeamercolor{quote}{parent=quotation} \setbeamercolor{page number in head/foot}{fg=fg!50!bg} \setbeamercolor{qed symbol}{parent=structure} \mode beamer/base/themes/color/beamercolorthemedolphin.sty0000644000175000017500000000227112050430504022625 0ustar mohuramohura% Copyright 2004 by Manuel Carro % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemedolphin.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamercolor*{palette primary}{use=structure,fg=black,bg=structure.fg!40!white} \setbeamercolor*{palette secondary}{use=structure,fg=white,bg=structure.fg!60!white} \setbeamercolor*{palette tertiary}{use=structure,fg=white,bg=structure.fg!90!white} \setbeamercolor*{palette quaternary}{fg=white,bg=black} \setbeamercolor*{sidebar}{use=structure,bg=structure.fg} \setbeamercolor*{palette sidebar primary}{use=structure,fg=structure.fg!10} \setbeamercolor*{palette sidebar secondary}{fg=white} \setbeamercolor*{palette sidebar tertiary}{use=structure,fg=structure.fg!50} \setbeamercolor*{palette sidebar quaternary}{fg=white} \setbeamercolor*{titlelike}{use=structure,fg=structure.fg} \setbeamercolor*{separation line}{} \setbeamercolor*{fine separation line}{} \mode beamer/base/themes/color/beamercolorthemewolverine.sty0000644000175000017500000000255612050430504023210 0ustar mohuramohura% Copyright 2004 by Madhusudan Singh % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemewolverine.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \definecolor{darkblue}{rgb}{0,0,0.8} \setbeamercolor{alerted text}{fg=darkblue!80!yellow} \setbeamercolor*{palette primary}{fg=darkblue!60!black,bg=yellow!85!orange} \setbeamercolor*{palette secondary}{fg=darkblue!70!black,bg=yellow!60!orange} \setbeamercolor*{palette tertiary}{bg=darkblue!80!black,fg=yellow!50!orange} \setbeamercolor*{palette quaternary}{fg=darkblue,bg=yellow!20!orange} \setbeamercolor*{sidebar}{fg=darkblue,bg=orange!75!white} \setbeamercolor*{palette sidebar primary}{fg=darkblue!10!black} \setbeamercolor*{palette sidebar secondary}{fg=white} \setbeamercolor*{palette sidebar tertiary}{fg=darkblue!50!black} \setbeamercolor*{palette sidebar quaternary}{fg=yellow!10!orange} \setbeamercolor*{titlelike}{parent=palette primary} \setbeamercolor{frametitle}{bg=yellow!90!orange} \setbeamercolor{frametitle right}{bg=yellow!60!orange} \setbeamercolor*{separation line}{} \setbeamercolor*{fine separation line}{} \mode beamer/base/themes/color/beamercolorthemestructure.sty0000644000175000017500000000173012050430504023227 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemestructure.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \DeclareOptionBeamer{gray}{\definecolor{beamer@structure@color}{gray}{#1}} \DeclareOptionBeamer{rgb}{\definecolor{beamer@structure@color}{rgb}{#1}} \DeclareOptionBeamer{RGB}{\definecolor{beamer@structure@color}{RGB}{#1}} \DeclareOptionBeamer{cmyk}{\definecolor{beamer@structure@color}{cmyk}{#1}} \DeclareOptionBeamer{cmy}{\definecolor{beamer@structure@color}{cmy}{#1}} \DeclareOptionBeamer{named}{\definecolor{beamer@structure@color}{named}{#1}} \DeclareOptionBeamer{hsb}{\definecolor{beamer@structure@color}{hsb}{#1}} \ProcessOptionsBeamer \setbeamercolor{structure}{fg=beamer@structure@color} beamer/base/themes/color/beamercolorthemeorchid.sty0000644000175000017500000000174112050430504022441 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemeorchid.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamercolor{block title}{use=structure,fg=white,bg=structure.fg!75!black} \setbeamercolor{block title alerted}{use=alerted text,fg=white,bg=alerted text.fg!75!black} \setbeamercolor{block title example}{use=example text,fg=white,bg=example text.fg!75!black} \setbeamercolor{block body}{parent=normal text,use=block title,bg=block title.bg!10!bg} \setbeamercolor{block body alerted}{parent=normal text,use=block title alerted,bg=block title alerted.bg!10!bg} \setbeamercolor{block body example}{parent=normal text,use=block title example,bg=block title example.bg!10!bg} \mode beamer/base/themes/color/beamercolorthemebeaver.sty0000644000175000017500000000267312050430504022442 0ustar mohuramohura% Copyright 2004 by Madhusudan Singh % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemebeaver.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \definecolor{darkred}{rgb}{0.8,0,0} \setbeamercolor{section in toc}{fg=black,bg=white} \setbeamercolor{alerted text}{fg=darkred!80!gray} \setbeamercolor*{palette primary}{fg=darkred!60!black,bg=gray!30!white} \setbeamercolor*{palette secondary}{fg=darkred!70!black,bg=gray!15!white} \setbeamercolor*{palette tertiary}{bg=darkred!80!black,fg=gray!10!white} \setbeamercolor*{palette quaternary}{fg=darkred,bg=gray!5!white} \setbeamercolor*{sidebar}{fg=darkred,bg=gray!15!white} \setbeamercolor*{palette sidebar primary}{fg=darkred!10!black} \setbeamercolor*{palette sidebar secondary}{fg=white} \setbeamercolor*{palette sidebar tertiary}{fg=darkred!50!black} \setbeamercolor*{palette sidebar quaternary}{fg=gray!10!white} %\setbeamercolor*{titlelike}{parent=palette primary} \setbeamercolor{titlelike}{parent=palette primary,fg=darkred} \setbeamercolor{frametitle}{bg=gray!10!white} \setbeamercolor{frametitle right}{bg=gray!60!white} \setbeamercolor*{separation line}{} \setbeamercolor*{fine separation line}{} \mode beamer/base/themes/color/beamercolorthemeseahorse.sty0000644000175000017500000000234612050430504023004 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemeseahorse.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamercolor{palette primary}{use=structure,fg=black,bg=structure.fg!20!white} \setbeamercolor{palette secondary}{use=structure,fg=black,bg=structure.fg!25!white} \setbeamercolor{palette tertiary}{use=structure,fg=black,bg=structure.fg!30!white} \setbeamercolor{palette quaternary}{use=structure,fg=black,bg=structure.fg!35!white} \setbeamercolor{sidebar}{use=structure,bg=structure.fg!20!white} \setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} \setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} \setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} \setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} \setbeamercolor*{titlelike}{parent=palette primary} \setbeamercolor*{separation line}{} \setbeamercolor*{fine separation line}{} \mode beamer/base/themes/color/beamercolorthemealbatross.sty0000644000175000017500000000431212050430504023160 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemealbatross.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \setbeamercolor*{normal text}{fg=yellow!50!white,bg=blue!50!black} \DeclareOption{overlystylish} { \def\beamer@cta@do{ \setbeamertemplate{background canvas}[vertical shading][bottom=black,top=black,middle=blue!50!black] } } \ProcessOptions \@ifundefined{beamer@cta@do}{}{\beamer@cta@do} \mode \setbeamercolor*{example text}{fg=green!65!black} \setbeamercolor*{structure}{fg=blue!25!white} \setbeamercolor{palette primary}{use={structure,normal text},fg=structure.fg,bg=normal text.bg!75!black} \setbeamercolor{palette secondary}{use={structure,normal text},fg=structure.fg,bg=normal text.bg!60!black} \setbeamercolor{palette tertiary}{use={structure,normal text},fg=structure.fg,bg=normal text.bg!45!black} \setbeamercolor{palette quaternary}{use={structure,normal text},fg=structure.fg,bg=normal text.bg!30!black} \setbeamercolor*{block body}{bg=normal text.bg!90!black} \setbeamercolor*{block body alerted}{bg=normal text.bg!90!black} \setbeamercolor*{block body example}{bg=normal text.bg!90!black} \setbeamercolor*{block title}{parent=structure,bg=normal text.bg!75!black} \setbeamercolor*{block title alerted}{use={normal text,alerted text},fg=alerted text.fg!75!normal text.fg,bg=normal text.bg!75!black} \setbeamercolor*{block title example}{use={normal text,example text},fg=example text.fg!75!normal text.fg,bg=normal text.bg!75!black} \setbeamercolor{item projected}{fg=black} \setbeamercolor*{sidebar}{parent=palette primary} \setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} \setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} \setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} \setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} \setbeamercolor*{separation line}{} \setbeamercolor*{fine separation line}{} \mode beamer/base/themes/color/beamercolorthemecrane.sty0000644000175000017500000000335512050430504022264 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemecrane.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \definecolor{craneorange}{RGB}{252,187,6} \definecolor{craneblue}{RGB}{4,6,76} \setbeamercolor{structure}{fg=craneblue} \setbeamercolor{palette primary}{fg=craneblue,bg=craneorange!70} \setbeamercolor{palette secondary}{fg=craneblue,bg=craneorange!80} \setbeamercolor{palette tertiary}{fg=craneblue,bg=craneorange!90} \setbeamercolor{palette quaternary}{fg=craneblue,bg=craneorange} \setbeamercolor{titlelike}{parent=palette quaternary} \setbeamercolor{block title}{fg=craneblue,bg=craneorange} \setbeamercolor{block title alerted}{use=alerted text,fg=craneblue,bg=alerted text.fg!75!bg} \setbeamercolor{block title example}{use=example text,fg=craneblue,bg=example text.fg!75!bg} \setbeamercolor{block body}{parent=normal text,use=block title,bg=block title.bg!25!bg} \setbeamercolor{block body alerted}{parent=normal text,use=block title alerted,bg=block title alerted.bg!25!bg} \setbeamercolor{block body example}{parent=normal text,use=block title example,bg=block title example.bg!25!bg} \setbeamercolor{sidebar}{bg=craneorange!70} \setbeamercolor{palette sidebar primary}{fg=craneblue} \setbeamercolor{palette sidebar secondary}{fg=craneblue!75} \setbeamercolor{palette sidebar tertiary}{fg=craneblue!75} \setbeamercolor{palette sidebar quaternary}{fg=craneblue} \setbeamercolor*{separation line}{} \setbeamercolor*{fine separation line}{} \mode beamer/base/themes/color/beamercolorthemewhale.sty0000644000175000017500000000222212050430504022264 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemewhale.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamercolor*{palette primary}{use=structure,fg=white,bg=structure.fg} \setbeamercolor*{palette secondary}{use=structure,fg=white,bg=structure.fg!75!black} \setbeamercolor*{palette tertiary}{use=structure,fg=white,bg=structure.fg!50!black} \setbeamercolor*{palette quaternary}{fg=white,bg=black} \setbeamercolor*{sidebar}{use=structure,bg=structure.fg} \setbeamercolor*{palette sidebar primary}{use=structure,fg=structure.fg!10} \setbeamercolor*{palette sidebar secondary}{fg=white} \setbeamercolor*{palette sidebar tertiary}{use=structure,fg=structure.fg!50} \setbeamercolor*{palette sidebar quaternary}{fg=white} \setbeamercolor*{titlelike}{parent=palette primary} \setbeamercolor*{separation line}{} \setbeamercolor*{fine separation line}{} \mode beamer/base/themes/color/beamercolorthememonarca.sty0000644000175000017500000000456612050430504022621 0ustar mohuramohura% Copyright 2012 by Till Tantau and Max Dohse % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. % % This theme is based on the crane theme by Till Tantau. % the OVERLYSTYLISH option is taken from the albatross theme % % The colors are those of the Monarca/Monarch butterfly. % http://en.wikipedia.org/wiki/Monarch_butterfly % The Monarch is famous for its southward migration % and northward return in summer from Canada to Mexico, % which spans the life of three to four generations of the butterfly. % \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthememonarca.sty,v c1fc5075f54a 2012/11/11 20:21:39 joseph $ \definecolor{craneorange}{RGB}{252,187,6} \definecolor{craneblue}{RGB}{4,6,76} \DeclareOption{overlystylish}{ \def\beamer@cta@do{\setbeamertemplate{background canvas}[vertical shading]% [bottom=craneorange,top=craneorange,middle=yellow] } } \ProcessOptions \@ifundefined{beamer@cta@do}{}{\beamer@cta@do} \mode \setbeamercolor{normal text}{fg=black,bg=craneorange} \setbeamercolor{structure}{fg=black} \setbeamercolor{palette primary}{fg=craneorange!75,bg=black} \setbeamercolor{palette secondary}{fg=black,bg=craneorange} \setbeamercolor{palette tertiary}{fg=craneorange!75,bg=black} \setbeamercolor{palette quaternary}{fg=black,bg=white} \setbeamercolor{titlelike}{parent=palette quaternary} \setbeamercolor{block title}{fg=black,bg=white} \setbeamercolor{block title alerted}{use=alerted text,fg=black,bg=alerted text.fg!75!bg} \setbeamercolor{block title example}{use=example text,fg=black,bg=example text.fg!75!bg} \setbeamercolor{block body}{parent=normal text,use=block title,bg=block title.bg!25!bg} \setbeamercolor{block body alerted}{parent=normal text,use=block title alerted,bg=block title alerted.bg!25!bg} \setbeamercolor{block body example}{parent=normal text,use=block title example,bg=block title example.bg!25!bg} \setbeamercolor{sidebar}{bg=craneorange!90}%70 \setbeamercolor{palette sidebar primary}{fg=black} \setbeamercolor{palette sidebar secondary}{fg=black!75} \setbeamercolor{palette sidebar tertiary}{fg=black!75} \setbeamercolor{palette sidebar quaternary}{fg=black} \setbeamercolor*{separation line}{} \setbeamercolor*{fine separation line}{} \mode beamer/base/themes/color/beamercolorthemerose.sty0000644000175000017500000000176112050430504022143 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemerose.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamercolor{block title}{use=structure,fg=structure.fg,bg=structure.fg!20!bg} \setbeamercolor{block title alerted}{use=alerted text,fg=alerted text.fg,bg=alerted text.fg!20!bg} \setbeamercolor{block title example}{use=example text,fg=example text.fg,bg=example text.fg!20!bg} \setbeamercolor{block body}{parent=normal text,use=block title,bg=block title.bg!50!bg} \setbeamercolor{block body alerted}{parent=normal text,use=block title alerted,bg=block title alerted.bg!50!bg} \setbeamercolor{block body example}{parent=normal text,use=block title example,bg=block title example.bg!50!bg} \mode beamer/base/themes/color/beamercolorthemesidebartab.sty0000644000175000017500000000156212050430504023272 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemesidebartab.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamercolor*{section in sidebar shaded}{parent=palette sidebar secondary} \setbeamercolor*{section in sidebar} {parent=section in sidebar shaded,use={sidebar,section in sidebar shaded},% bg=sidebar.bg!70!section in sidebar shaded.fg} \setbeamercolor*{subsection in sidebar shaded}{parent=palette sidebar primary} \setbeamercolor*{subsection in sidebar} {parent=subsection in sidebar shaded,use=section in sidebar,% bg=section in sidebar.bg} \mode beamer/base/themes/color/beamercolorthemespruce.sty0000644000175000017500000000313612050430504022472 0ustar mohuramohura\ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemespruce.sty,v adfc58636b1f 2012/03/07 18:35:25 amunn $ % Copyright 2012 by Alan Munn Modified for MSU colours % Copyright 2004 by Madhusudan Singh % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. % \mode \definecolor{MSUgreen}{RGB}{0,102,51} % Approximate match for Michigan State University; official colour appears too dark \setbeamercolor{alerted text}{fg=MSUgreen!80!white} \setbeamercolor*{palette primary}{fg=MSUgreen!60!black,bg=white!85!MSUgreen} \setbeamercolor*{palette secondary}{fg=MSUgreen!70!black,bg=white!60!MSUgreen} \setbeamercolor*{palette tertiary}{bg=MSUgreen!80!black,fg=white!50!MSUgreen} \setbeamercolor*{palette quaternary}{fg=MSUgreen,bg=white!20!MSUgreen} \setbeamercolor*{sidebar}{fg=MSUgreen,bg=MSUgreen!75!white} \setbeamercolor*{palette sidebar primary}{fg=MSUgreen!10!black} \setbeamercolor*{palette sidebar secondary}{fg=white} \setbeamercolor*{palette sidebar tertiary}{fg=MSUgreen!50!black} \setbeamercolor*{palette sidebar quaternary}{fg=white!10!MSUgreen} \setbeamercolor*{titlelike}{parent=palette primary} \setbeamercolor{frametitle}{bg=white!90!MSUgreen} \setbeamercolor{frametitle right}{bg=white!60!MSUgreen} \setbeamercolor*{separation line}{} \setbeamercolor*{fine separation line}{} \setbeamercolor{block body}{parent=normal text,use=block title,bg=red!0,fg=} \mode beamer/base/themes/color/beamercolorthemelily.sty0000644000175000017500000000134212050430504022137 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemelily.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamercolor*{block body}{} \setbeamercolor*{block body alerted}{} \setbeamercolor*{block body example}{} \setbeamercolor*{block title}{parent=structure} \setbeamercolor*{block title alerted}{parent=alerted text} \setbeamercolor*{block title example}{parent=example text} \setbeamercolor*{titlelike}{parent=structure} \mode beamer/base/themes/color/beamercolorthemebeetle.sty0000644000175000017500000000327712050430504022437 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemebeetle.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamercolor{normal text}{fg=black,bg=black!40} \setbeamercolor{structure}{fg=white} \setbeamercolor{alerted text}{fg=red!85!black} \setbeamercolor{item projected}{use=item,fg=black,bg=item.fg!75} \definecolor{beetle@other}{RGB}{64,80,127} \setbeamercolor*{palette primary}{fg=white,bg=beetle@other} \setbeamercolor*{palette secondary}{parent=palette primary,use=palette primary,bg=palette primary.bg!95!black} \setbeamercolor*{palette tertiary}{parent=palette primary,use=palette primary,bg=palette primary.bg!90!black} \setbeamercolor*{palette quaternary}{parent=palette primary,use=palette primary,bg=palette primary.bg!85!black} \setbeamercolor*{sidebar}{parent=palette primary} \setbeamercolor*{palette sidebar primary}{fg=white} \setbeamercolor*{palette sidebar secondary}{fg=black} \setbeamercolor*{palette sidebar tertiary}{fg=white} \setbeamercolor*{palette sidebar quaternary}{fg=black} \setbeamercolor{framesubtitle}{fg=black} \setbeamercolor*{subtitle}{fg=black} \setbeamercolor*{block title}{parent=structure} \setbeamercolor*{block title alerted}{parent=alerted text} \setbeamercolor*{block title example}{parent=example text} \setbeamercolor*{block body}{} \setbeamercolor*{block body alerted}{} \setbeamercolor*{block body example}{} \setbeamercolor*{titlelike}{parent=structure} \mode beamer/base/themes/color/beamercolorthemefly.sty0000644000175000017500000000276312050430504021770 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemefly.sty,v d02a7cf4d8ae 2010/06/17 09:11:41 rivanvx $ \mode \setbeamercolor{normal text}{fg=black,bg=black!40} \setbeamercolor{structure}{fg=white} \setbeamercolor{alerted text}{fg=red!85!black} \setbeamercolor{item projected}{use=item,fg=black,bg=item.fg!75} \setbeamercolor*{sidebar}{bg=black!50} \setbeamercolor*{palette primary}{use=structure,fg=structure.fg} \setbeamercolor*{palette secondary}{use=structure,fg=structure.fg!95!black} \setbeamercolor*{palette tertiary}{use=structure,fg=structure.fg!90!black} \setbeamercolor*{palette quaternary}{use=structure,fg=structure.fg!85!black} \setbeamercolor*{palette sidebar primary}{fg=white} \setbeamercolor*{palette sidebar secondary}{fg=black} \setbeamercolor*{palette sidebar tertiary}{fg=white} \setbeamercolor*{palette sidebar quaternary}{fg=black} \setbeamercolor*{framesubtitle}{fg=black} \setbeamercolor*{subtitle}{fg=black} \setbeamercolor*{block title}{parent=structure} \setbeamercolor*{block title alerted}{parent=alerted text} \setbeamercolor*{block title example}{parent=example text} \setbeamercolor*{block body}{} \setbeamercolor*{block body alerted}{} \setbeamercolor*{block body example}{} \mode beamer/base/themes/color/beamercolorthemedove.sty0000644000175000017500000000332512050430504022126 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemedove.sty,v 406bcaf3a3c7 2012/02/23 13:55:34 joseph $ \mode \setbeamercolor*{normal text}{fg=black,bg=white} \setbeamercolor*{alerted text}{fg=black} \setbeamercolor*{example text}{fg=black} \setbeamercolor*{structure}{fg=black} \providecommand*{\beamer@bftext@only}{% \relax \ifmmode \expandafter\beamer@bftext@warning \else \expandafter\bfseries \fi } \providecommand*{\beamer@bftext@warning}{% \ClassWarning{beamer} {Cannot use bold for alerted text in math mode}% } \setbeamerfont{alerted text}{series=\beamer@bftext@only} \setbeamercolor{palette primary}{fg=black,bg=white} \setbeamercolor{palette secondary}{fg=black,bg=white} \setbeamercolor{palette tertiary}{fg=black,bg=white} \setbeamercolor{palette quaternary}{fg=black,bg=white} \setbeamercolor{sidebar}{bg=black!20} \setbeamercolor{palette sidebar primary}{fg=black} \setbeamercolor{palette sidebar secondary}{fg=black} \setbeamercolor{palette sidebar tertiary}{fg=black} \setbeamercolor{palette sidebar quaternary}{fg=black} \setbeamercolor{item projected}{fg=black,bg=black!20} \setbeamercolor*{block body}{} \setbeamercolor*{block body alerted}{} \setbeamercolor*{block body example}{} \setbeamercolor*{block title}{parent=structure} \setbeamercolor*{block title alerted}{parent=alerted text} \setbeamercolor*{block title example}{parent=example text} \setbeamercolor*{titlelike}{parent=structure} \mode beamer/base/themes/color/beamercolorthemeseagull.sty0000644000175000017500000000351712050430504022630 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemeseagull.sty,v 406bcaf3a3c7 2012/02/23 13:55:34 joseph $ \mode \setbeamercolor*{normal text}{fg=black,bg=white} \setbeamercolor*{alerted text}{fg=black} \setbeamercolor*{example text}{fg=black} \setbeamercolor*{structure}{fg=black} \providecommand*{\beamer@bftext@only}{% \relax \ifmmode \expandafter\beamer@bftext@warning \else \expandafter\bfseries \fi } \providecommand*{\beamer@bftext@warning}{% \ClassWarning{beamer} {Cannot use bold for alerted text in math mode}% } \setbeamerfont{alerted text}{series=\beamer@bftext@only} \setbeamercolor*{palette primary}{fg=black,bg=black!20} \setbeamercolor*{palette secondary}{fg=black,bg=black!25} \setbeamercolor*{palette tertiary}{fg=black,bg=black!30} \setbeamercolor*{palette quaternary}{fg=black,bg=black!35} \setbeamercolor{sidebar}{bg=black!20} \setbeamercolor*{palette sidebar primary}{fg=black} \setbeamercolor*{palette sidebar secondary}{fg=black} \setbeamercolor*{palette sidebar tertiary}{fg=black} \setbeamercolor*{palette sidebar quaternary}{fg=black} \setbeamercolor*{item projected}{fg=black,bg=black!20} \setbeamercolor*{block title}{fg=black,bg=black!20} \setbeamercolor*{block title alerted}{fg=black,bg=black!20} \setbeamercolor*{block title example}{fg=black,bg=black!20} \setbeamercolor*{block body}{fg=black,bg=black!10} \setbeamercolor*{block body alerted}{fg=black,bg=black!10} \setbeamercolor*{block body example}{fg=black,bg=black!10} \setbeamercolor*{separation line}{} \setbeamercolor*{fine separation line}{} \mode beamer/base/beamerbaseoverlay.sty0000644000175000017500000006270112050430504017023 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % Copyright 2011 by Vedran Mileti\'c, Joseph Wright % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbaseoverlay.sty,v 6afbc49b1109 2012/11/11 20:09:38 joseph $ % % % Basic overlay commands % % \long\def\beamer@ifnextcharospec#1#2{% \def\reserved@a{#1}% \def\reserved@b{#2}% \futurelet\@let@token\beamer@ifnch} \def\beamer@ifnch{% \ifx\@let@token<% \let\reserved@c\reserved@a% \else% \let\reserved@c\reserved@b% \fi% \reserved@c} % % \only % \def\only{\@ifnextchar<{\beamer@only}{\beamer@@only}} \long\def\beamer@only<#1>#2{% \def\beamer@doifnotinframe{}\def\beamer@doifinframe{#2}% {\beamer@masterdecode{#1}}\beamer@donow} \long\def\beamer@@only#1{\beamer@ifnextcharospec{\beamer@@@only{#1}}{#1}} \long\def\beamer@@@only#1<#2>{% \def\beamer@doifnotinframe{}\def\beamer@doifinframe{#1}% {\beamer@masterdecode{#2}}\beamer@donow} % % \alt and \altenv % \def\alt{\@ifnextchar<{\beamer@alt}{\beamer@alttwo}} \long\def\beamer@alttwo#1#2{\beamer@ifnextcharospec{\beamer@altget{#1}{#2}}{#1}} \long\def\beamer@altget#1#2<#3>{% \def\beamer@doifnotinframe{#2}\def\beamer@doifinframe{#1}% {\beamer@masterdecode{#3}}\beamer@donow} \long\def\beamer@alt<#1>#2#3{% \def\beamer@doifnotinframe{#3}\def\beamer@doifinframe{#2}% {\beamer@masterdecode{#1}}\beamer@donow} \def\altenv{\@ifnextchar<{\beamer@altenv}{\beamer@@@altenv}} \def\beamer@altenv<#1>{\beamer@@altenv{<#1>}} \long\def\beamer@@@altenv#1#2#3#4{\beamer@ifnextcharospec{\beamer@altenvsort{#1}{#2}{#3}{#4}}{\beamer@@altenv{}{#1}{#2}{#3}{#4}}} \long\def\beamer@altenvsort#1#2#3#4<#5>{\beamer@@altenv{<#5>}{#1}{#2}{#3}{#4}} \long\def\beamer@@altenv#1#2#3#4#5{\alt#1{\long\def\beamer@eoenv{#3}#2}{\long\def\beamer@eoenv{#5}#4}} \def\endaltenv{\beamer@eoenv} % % \action and actionenv % \def\beamer@plus{+} \def\action{\@ifnextchar<{\beamer@parsedaction}{\expandafter\beamer@parsedaction\beamer@defaultospec}} \long\def\beamer@parsedaction<#1>#2{% \def\beamer@doifnotinframe{}\def\beamer@doifinframe{}% {{\beamer@masterdecode{#1}}}% \ifx\beamer@decodefound\beamer@plus% \long\def\beamer@todo{#2}% \else% \expandafter\long\expandafter\def\expandafter\beamer@todo% \expandafter{\expandafter\uncover\expandafter<\expandafter a\expandafter l\expandafter l\expandafter:\beamer@decodefound>{#2}}% \fi% \expandafter\beamer@processactions\beamer@decaction{}% \beamer@todo} \def\beamer@processactions#1{% \beamer@ifempty{#1}{}{% \expandafter\beamer@@processactions\expandafter{\beamer@todo}#1}} \long\def\beamer@@processactions#1#2<#3>{% \expandafter\long\expandafter\def\expandafter\beamer@todo\expandafter{% \csname#2\endcsname{#1}}% \beamer@processactions} \def\actionenv{\beamer@ifnextcharospec{\beamer@parsedactionenv}{\expandafter\beamer@parsedactionenv\beamer@defaultospec}} \def\beamer@parsedactionenv<#1>{% \def\beamer@doifnotinframe{}\def\beamer@doifinframe{}% {{\beamer@masterdecode{#1}}}% \ifx\beamer@decodefound\beamer@plus% \def\beamer@todobegin{}% \def\beamer@todoend{}% \else% \edef\beamer@todobegin{\noexpand\begin{uncoverenv}}% \def\beamer@todoend{\end{uncoverenv}}% \fi% \expandafter\beamer@processactionsbegin\beamer@decaction{}% \expandafter\beamer@processactionsend\beamer@decaction{}% \beamer@todobegin} \def\endactionenv{\beamer@todoend} \def\beamer@processactionsbegin#1{% \beamer@ifempty{#1}{}{% \expandafter\beamer@@processactionsbegin\expandafter{\beamer@todobegin}#1}} \long\def\beamer@@processactionsbegin#1#2<#3>{% \def\beamer@todobegin{\begin{#2env}#1}% \beamer@processactionsbegin} \def\beamer@processactionsend#1{% \beamer@ifempty{#1}{}{% \expandafter\beamer@@processactionsend\expandafter{\beamer@todoend}#1}} \long\def\beamer@@processactionsend#1#2<#3>{% \def\beamer@todoend{#1\end{#2env}}% \beamer@processactionsend} \def\beamer@defaultospec{<*>} \def\beamer@emptyospec{<*>} % % \temporal % \long\def\temporal<#1>#2#3#4{% past, present, future \def\beamer@doifnotinframe{\beamer@picked}\def\beamer@doifinframe{#3}% {\beamer@masterdecode{#1}% \ifbeamer@localanotherslide\gdef\beamer@picked{#2}\else\gdef\beamer@picked{#4}\fi}\beamer@donow} % % \newoverlaycommand % \def\beameroriginal#1{\csname @orig\string#1\endcsname} \newcount\beamer@argscount % % newenvironment extension % \let\beamer@orignewenvironment=\newenvironment \def\newenvironment{\@ifnextchar<{\beamer@newenv}{\beamer@orignewenvironment}} \def\beamer@newenv<>{\@star@or@long\beamer@new@environment} \def\beamer@new@environment#1{\@ifnextchar[{\beamer@@newenv{#1}}{\beamer@newenvnoopt{#1}{0}}} \def\beamer@@newenv#1[#2]{\@ifnextchar[{\beamer@newenvopt{#1}{#2}}{\beamer@newenvnoopt{#1}{#2}}} \long\def\beamer@newenvnoopt#1#2#3#4{% \expandafter\newcommand\expandafter<\expandafter>\csname#1\endcsname[#2]{#3}% \expandafter\long\expandafter\def\csname end#1\endcsname{#4}% } \long\def\beamer@newenvopt#1#2[#3]#4#5{% \expandafter\newcommand\expandafter<\expandafter>\csname#1\endcsname[#2][#3]{#4}% \expandafter\long\expandafter\def\csname end#1\endcsname{#5}% } \let\beamer@origrenewenvironment=\renewenvironment \def\renewenvironment{\@ifnextchar<{\beamer@renewenv}{\beamer@origrenewenvironment}} \def\beamer@renewenv<>#1{% \edef\beamer@do{\csname original#1\endcsname=\expandafter\noexpand\csname#1\endcsname} \expandafter\let\beamer@do% \edef\beamer@do{\csname endoriginal#1\endcsname=\expandafter\noexpand\csname end#1\endcsname} \expandafter\let\beamer@do% \newenvironment<>{#1}} % % newcommand extension % \let\beamer@orignewcommand=\newcommand \def\newcommand{\@ifnextchar<{\beamer@newcom}{\beamer@orignewcommand}} \def\beamer@newcom<>{\@star@or@long\beamer@new@command} \def\beamer@new@command#1{\@ifnextchar[{\beamer@@newcom{#1}}{\beamer@newcomnoopt{#1}{0}}} \def\beamer@@newcom#1[#2]{\@ifnextchar[{\beamer@newcomopt{#1}{#2}}{\beamer@newcomnoopt{#1}{#2}}} \long\def\beamer@newcomnoopt#1#2#3{% \ifnum#2=0\relax% \expandafter\def\expandafter#1\expandafter{\expandafter\beamer@sortzero\expandafter{\csname beamerx@\string#1\endcsname}}% \else \expandafter\def\expandafter#1\expandafter{\expandafter\beamer@sort\expandafter{\csname beamerx@\string#1\endcsname}{#2}}% \fi% \beamer@argscount=#2\relax% \advance\beamer@argscount by 1\relax% \expandafter\newcommand\csname beamerx@\string#1\endcsname[\beamer@argscount]{#3}% } \long\def\beamer@newcomopt#1#2[#3]#4{% \expandafter\def\expandafter#1\expandafter{\expandafter\beamer@presort\expandafter{\csname beamerx@\string#1\endcsname}{#2}{#3}}% \beamer@argscount=#2\relax% \advance\beamer@argscount by 1\relax% \expandafter\newcommand\csname beamerx@\string#1\endcsname[\beamer@argscount]{#4}% } \let\beamer@origrenewcommand=\renewcommand \def\renewcommand{\@ifnextchar<{\beamer@renewcom}{\beamer@origrenewcommand}} \def\beamer@renewcom<>#1{% \expandafter\def\expandafter\beamer@name\expandafter{\csname @orig\string#1\endcsname}% \expandafter\let\beamer@name=#1\relax% \expandafter\let\csname beamerx@\string#1\endcsname\@undefined \newcommand<>#1} \long\def\beamer@presort#1#2#3{% \long\def\beamer@todo{#1}% \def\beamer@ospec{}% \beamer@argscount=#2\relax% \beamer@prechecka{#3}} \long\def\beamer@prechecka#1{\@ifnextchar<{\beamer@preget{#1}}{\beamer@precheckb{#1}}} \long\def\beamer@preget#1<#2>{\def\beamer@ospec{<#2>}\beamer@precheckb{#1}} \long\def\beamer@precheckb#1{\@ifnextchar[{\beamer@pregetb}{\beamer@pregetb[{#1}]}} \long\def\beamer@pregetb[#1]{% \expandafter\long\expandafter\def\expandafter\beamer@todo\expandafter{\beamer@todo{#1}}% \advance\beamer@argscount by-1\relax% \beamer@parseargs% } \def\beamer@sortzero#1{\beamer@ifnextcharospec{\beamer@sortzeroread{#1}}{#1{}}} \def\beamer@sortzeroread#1<#2>{#1{<#2>}} \def\beamer@sort#1#2{% \long\def\beamer@todo{#1}% \def\beamer@ospec{}% \beamer@argscount=#2\relax% \beamer@parseargs} \def\beamer@parseargs{% \ifnum\beamer@argscount=0\relax% \let\next=\beamer@finalargscheck% \else% \let\next=\beamer@lookforarg% \fi% \next} \def\beamer@lookforarg{% \@ifnextchar<\beamer@foundspec\beamer@readarg} \def\beamer@foundspec<#1>{% \def\beamer@ospec{<#1>}% \beamer@lookforarg} \long\def\beamer@readarg#1{% \expandafter\long\expandafter\def\expandafter\beamer@todo\expandafter{\beamer@todo{#1}}% \advance\beamer@argscount by-1\relax% \beamer@parseargs% } \def\beamer@finalargscheck{\beamer@ifnextcharospec\beamer@finalspec\beamer@finalnospec} \def\beamer@finalspec<#1>{\def\beamer@ospec{<#1>}\beamer@finalnospec} \def\beamer@finalnospec{% \expandafter\beamer@todo\expandafter{\beamer@ospec}} \mode % commands for smuggling skips past \newskip\beamer@lastskipcover \def\beamer@smuggle#1{% {}% \beamer@lastskipcover=\lastskip% \edef\beamer@lastskiptext{\the\lastskip}% \ifx\beamer@lastskiptext\beamer@zeropt\else% \ifvmode\unskip\fi\ifhmode\unskip\fi\fi% #1% \ifx\beamer@lastskiptext\beamer@zeropt\else% \ifvmode\vskip\beamer@lastskipcover\fi\ifhmode\hskip\beamer@lastskipcover\fi\fi% } % % Uncovering management % \def\beamer@actions#1#2{% \gdef\beamer@do{#1% \expandafter\gdef\csname beamer@doafter% \the\beamer@coveringdepth\endcsname{#2}}} \def\beamer@startcovered{% \beamer@smuggle{% \global\advance\beamer@coveringdepth by 1\relax% \beamer@actions{\pgfsys@begininvisible\aftergroup\beamer@@spacingcover}{% \pgfsys@endinvisible\aftergroup\beamer@@spacingcover% }% \def\opaqueness<##1>##2{% \only<##1>{% \beamer@actions{% \expandafter\xdef\csname beamer@oldcolorhook% \the\beamer@coveringdepth\endcsname{\beamer@colorhook}% \expandafter\xdef\csname beamer@oldpgfextension% \the\beamer@coveringdepth\endcsname{\beamer@pgfextension}% {\globalcolorstrue\colorlet{beamer@freeze\the\beamer@coveringdepth}{bg}}% \xdef\beamer@colorhook{!##2!beamer@freeze% \the\beamer@coveringdepth\beamer@colorhook}% \gdef\beamer@pgfextension{!##2opaque}% \color{.}% }% {% \xdef\beamer@colorhook{\csname beamer@oldcolorhook% \the\beamer@coveringdepth\endcsname}% \xdef\beamer@pgfextension{\csname beamer@oldpgfextension% \the\beamer@coveringdepth\endcsname}% \color{.}% }}}% \ifnum\beamer@slideinframe<\beamer@minimum%ok, at beginning {% \beamer@saveanother% \advance\beamer@minimum by-\beamer@slideinframe% \beamer@slideinframe=\beamer@minimum% \beamer@uncoverbeforeactions% \beamer@restoreanother% }% \else% {% \beamer@saveanother% \advance\beamer@slideinframe by-\beamer@minimum% \beamer@uncoverafteractions% \beamer@restoreanother% }% \fi% \beamer@do% }% } \def\beamer@endcovered{% \beamer@smuggle{% \csname beamer@doafter\the\beamer@coveringdepth\endcsname% \global\advance\beamer@coveringdepth by -1\relax% }% }% \define@key{beamer@mixin}{still covered}{\def\beamer@uncoverbeforeactions{\ignorespaces#1}} \define@key{beamer@mixin}{again covered}{\def\beamer@uncoverafteractions{\ignorespaces#1}} \define@key{beamer@mixin}{invisible}[]{% \def\beamer@uncoverbeforeactions{\ignorespaces} \def\beamer@uncoverafteractions{\ignorespaces}} \define@key{beamer@mixin}{transparent}[15]{% \def\beamer@uncoverbeforeactions{\ignorespaces\opaqueness<1->{#1}} \def\beamer@uncoverafteractions{\ignorespaces\opaqueness<1->{#1}}} \define@key{beamer@mixin}{dynamic}[]{% \def\beamer@uncoverbeforeactions{\ignorespaces\opaqueness<1-2>{10}\opaqueness<3->{5}} \def\beamer@uncoverafteractions{\ignorespaces\opaqueness<1-2>{10}\opaqueness<3->{5}}} \define@key{beamer@mixin}{highly dynamic}[]{% \def\beamer@uncoverbeforeactions{\ignorespaces\opaqueness<1>{15}\opaqueness<2>{10}\opaqueness<3>{5}\opaqueness<4->{2}} \def\beamer@uncoverafteractions{\ignorespaces\opaqueness<1>{15}\opaqueness<2>{10}\opaqueness<3>{5}\opaqueness<4->{2}}} \def\setbeamercovered#1{% \setkeys{beamer@mixin}{invisible}% \setkeys{beamer@mixin}{#1}} \setbeamercovered{invisible} \newcolormixin\beamer@colorhook \def\pgfalternateextension{\colorcurrentmixin\beamer@pgfextension} \def\beamer@colorhook{} \def\beamer@pgfextension{} \beamer@coveringdepth=0\relax \mode
{ \let\setbeamercovered=\@gobble } % % Pausing % \newenvironment{beamer@framepauses}%internal {% \global\c@beamerpauses=1\relax% \gdef\beamer@endpause{}% } {\beamer@endpause} \newcommand{\beamer@@pause}[1][]{% \beamer@ifempty{#1}% {\global\advance\c@beamerpauses by1\relax}% {\global\c@beamerpauses=#1\relax}% \onslide<\c@beamerpauses->\relax% } \mode { \AtBeginDocument { \let\beamer@musixpause=\pause \let\pause=\beamer@@pause \let\beamer@music=\music \def\music{\let\beamerpause=\pause\let\pause\beamer@musixpause\beamer@music} } } \mode { \def\onslide{\@ifstar{\only}{\@ifnextchar+{\expandafter\beamer@visibleonslide\@gobble}{\beamer@mainonslide}}} \newcommand<>{\beamer@visibleonslide}{% \@ifnextchar\bgroup {\visible#1}% {\beamer@noargsvisibleonslide#1}} \newcommand<>{\beamer@mainonslide}{% \@ifnextchar\bgroup% {\uncover#1}% {\beamer@noargsonslide#1}% } } \newcommand<>{\beamer@noargsonslide}{% \beamer@endpause% \alt#1% {\beamer@spacingcover\gdef\beamer@endpause{\beamer@spacingcover}}% {\beamer@startcovered\gdef\beamer@endpause{\beamer@endcovered}}% } \newcommand<>{\beamer@noargsvisibleonslide}{% \beamer@endpause% \alt#1% {\beamer@spacingcover\gdef\beamer@endpause{\beamer@spacingcover}}% {\beamer@begininvisible\gdef\beamer@endpause{\beamer@endinvisible}}% } \mode
{ \newcommand\beamer@@pause[1][]{} \newcommand<>{\beamer@noargsonslide}{} \newcommand<>{\beamer@noargsvisibleonslide}{} } % % Make item overlays % \let\beamer@origitem=\item \def\beamer@callorigitem{\@ifnextchar[\beamer@@callorigitem{\beamer@origitem\kern0pt\ignorespaces}} \def\beamer@@callorigitem[#1]{\beamer@origitem[{#1}]\kern0pt\ignorespaces} \def\item{% \@ifnextchar\relax\beamer@origitem{% \ifhmode% \unskip\unskip\par% \fi% \beamer@closeitem\gdef\beamer@closeitem{}% \@ifnextchar<{\beamer@parseitem}{\beamer@itemcheckopt}}} \def\beamer@itemcheckopt{\@ifnextchar[{\beamer@itemcheckopta}{% \ifx\beamer@defaultospec\beamer@emptyospec% \let\next=\beamer@callorigitem% \else% \let\next=\beamer@defaultparse% \fi% \next% }} \def\beamer@defaultparse{\expandafter\beamer@parseitem\beamer@defaultospec} \long\def\beamer@itemcheckopta[#1]{\@ifnextchar<{\beamer@itemreverse[{#1}]}{% \ifx\beamer@defaultospec\beamer@emptyospec% \let\next=\beamer@callorigitem% \else% \let\next=\beamer@defaultparse% \fi% \next[{#1}]}} \long\def\beamer@itemreverse[#1]<#2>{\beamer@parseitem<#2>[{#1}]} \def\beamer@parseitem<#1>{% \gdef\beamer@closeitem{% %% Handle empty item as LaTeX would do \if@inlabel\indent\par\fi \end{actionenv}% %% Local change inside actionenv should survive, and should be %% always false \@noparitemfalse}% \begin{actionenv}<#1>\beamer@callorigitem} \def\beamerdefaultoverlayspecification#1{% \beamer@ifempty{#1}% {% \def\beamer@gdefaultospec{<*>}% \def\beamer@defaultospec{<*>}}% {% \def\beamer@gdefaultospec{#1}% \def\beamer@defaultospec{#1}% }% } \beamerdefaultoverlayspecification{} \newcount\beamer@trivlistdepth \beamer@trivlistdepth=0\relax \let\beamer@orig@trivlist=\@trivlist \def\@trivlist{% \global\advance\beamer@trivlistdepth by1\relax% \expandafter\global\expandafter\let\csname beamer@closeitem\the\beamer@trivlistdepth\endcsname=\beamer@closeitem% \gdef\beamer@closeitem{}% \beamer@orig@trivlist% } \let\beamer@origendtrivlist=\endtrivlist \def\endtrivlist{% \beamer@closeitem% \expandafter\global\expandafter\let\expandafter\beamer@closeitem\expandafter=\csname beamer@closeitem\the\beamer@trivlistdepth\endcsname% \global\advance\beamer@trivlistdepth by-1\relax% \beamer@origendtrivlist} \def\beamer@closeitem{} \let\beamer@list=\list \let\beamer@@trivlist=\@trivlist \mode
{ \AtBeginDocument{% \let\beamer@origitem=\item \def\item{\@ifnextchar<\beamer@@item\beamer@item} \def\beamer@@item<#1>{\beamer@item} \def\beamer@item{\@ifnextchar[\beamer@@@item\beamer@origitem} \def\beamer@@@item[#1]{\@ifnextchar<{\beamer@@@@item[{#1}]}{\beamer@origitem[{#1}]}} \def\beamer@@@@item[#1]<#2>{\beamer@origitem[{#1}]} } } % % Overlay commands % \mode { \newcommand\beamer@gobbleoptional[2][]{} \newcommand\beamer@gobbleoptionalinsp[2][]{\ignorespaces} } \def\beamer@@spacingcover{\beamer@smuggle{\pgfsys@begininvisible\pgfsys@endinvisible}} \def\beamer@spacingcover{\beamer@@spacingcover\aftergroup\beamer@@spacingcover} \def\beamer@begininvisible{\beamer@smuggle{\pgfsys@begininvisible\aftergroup\beamer@@spacingcover}} \def\beamer@endinvisible{\beamer@smuggle{\pgfsys@endinvisible\aftergroup\beamer@@spacingcover}} \long\def\beamer@fakeinvisible#1{\beamer@spacingcover#1\beamer@spacingcover} \long\def\beamer@makecovered#1{\beamer@startcovered#1\beamer@endcovered} \long\def\beamer@reallymakeinvisible#1{\beamer@begininvisible#1\beamer@endinvisible} \newcommand{\uncover}{\alt{\beamer@fakeinvisible}{\beamer@makecovered}} \newcommand{\visible}{\alt{\beamer@fakeinvisible}{\beamer@reallymakeinvisible}} \newcommand{\invisible}{\alt{\beamer@reallymakeinvisible}{\beamer@fakeinvisible}} \newenvironment{visibleenv}{\begin{altenv}{\beamer@spacingcover}{\beamer@spacingcover}{\beamer@begininvisible}{\beamer@endinvisible}}{\end{altenv}} \newenvironment{invisibleenv}{\begin{altenv}{\beamer@begininvisible}{\beamer@endinvisible}{\beamer@spacingcover}{\beamer@spacingcover}}{\end{altenv}} \newenvironment{uncoverenv}{\begin{altenv}{\beamer@spacingcover}{\beamer@spacingcover}{\beamer@startcovered}{\beamer@endcovered}}{\end{altenv}} \newenvironment{onlyenv}{\begin{altenv}{}{}{\begingroup\setbox0=\vbox\bgroup}{\egroup\endgroup}}{\end{altenv}} \renewcommand<>{\color}{\alt#1{\beameroriginal{\color}}{\beamer@gobbleoptionalinsp}} \mode
{ \newcommand{\uncover}{\alt{\@firstofone}{\@gobble}} \newcommand{\visible}{\alt{\@firstofone}{\@gobble}} \newcommand{\invisible}{\alt{\@gobble}{\@firstofone}} \newenvironment{onlyenv}{\begin{altenv}{}{}{\begingroup\setbox0=\vbox\bgroup}{\egroup\endgroup}}{\end{altenv}} \newenvironment{uncoverenv}{\begin{altenv}{}{}{\begingroup\setbox0=\vbox\bgroup}{\egroup\endgroup}}{\end{altenv}} \newenvironment{visibleenv}{\begin{altenv}{}{}{\begingroup\setbox0=\vbox\bgroup}{\egroup\endgroup}}{\end{altenv}} \newenvironment{invisibleenv}{\begin{altenv}{\begingroup\setbox0=\vbox\bgroup}{\egroup\endgroup}{}{}}{\end{altenv}} \AtBeginDocument{ % These have to be done late... \renewcommand<>{\color}{\alt#1{\beameroriginal{\color}}{\beamer@gobbleoptionalinsp}} } } \mode { \renewcommand<>{\textbf}{\only#1{\beameroriginal{\textbf}}} \renewcommand<>{\textit}{\only#1{\beameroriginal{\textit}}} \renewcommand<>{\textsl}{\only#1{\beameroriginal{\textsl}}} \renewcommand<>{\textsf}{\only#1{\beameroriginal{\textsf}}} \renewcommand<>{\textrm}{\only#1{\beameroriginal{\textrm}}} } \renewcommand<>{\hypertarget}[2]{\only#3{\beameroriginal{\hypertarget}{#1}{#2}}} \renewcommand<>{\hyperlink}[2]{\only#3{\beameroriginal{\hyperlink}{#1}{#2}}} \mode
{ \g@addto@macro\beamer@lastminutepatches{ % These have to be done late... \renewcommand<>{\hypertarget}[2]{\only#3{\beameroriginal{\hypertarget}{#1}{#2}}} \renewcommand<>{\hyperlink}[2]{\only#3{\beameroriginal{\hyperlink}{#1}{#2}}} } } \newcommand<>{\emph}[1]{{\only#2{\itshape}#1}} \mode
{ \renewcommand<>{\emph}{\only#1{\beameroriginal\emph}} } % % Insert area % \newenvironment{overlayarea}[2]{% \beamer@animht=#1\relax% \beamer@animwd=#2\relax% \setbox\beamer@areabox=\vbox to#2\bgroup% \strut\begin{minipage}[t]{#1}% % Make the minipage behave like the main part of the slide \normalfont \raggedright } {% \end{minipage}\vfil% \egroup% \wd\beamer@areabox=\beamer@animht% \ht\beamer@areabox=\beamer@animwd% \dp\beamer@areabox=0pt% \box\beamer@areabox% } \mode
{ \newenvironment{overlayarea}[2]{}{}% no effect } \newenvironment{overprint}[1][\textwidth]{% \let\beamer@noargsonslide=\beamer@onslide% \let\beamer@noargsvisibleonslide=\beamer@onslide% \beamer@animht=0pt% \beamer@animdp=0pt% \beamer@animwd=#1\relax% \setbox\beamer@animcurrent=\box\beamer@animshowbox% makes animshowbox empty \setbox\beamer@animcurrent=\hbox{}% \def\beamer@endaction{}% }{% \beamer@endaction% \ifvoid\beamer@animshowbox\setbox\beamer@animshowbox=\hbox{}\fi% \ht\beamer@animshowbox=\beamer@animht% \dp\beamer@animshowbox=\beamer@animdp% \wd\beamer@animshowbox=\beamer@animwd% \box\beamer@animshowbox% } \def\beamer@onslide<#1>{% \beamer@endaction% \alt<#1>{% \ifvoid\beamer@animshowbox\else\ClassError{beamer}{Overprints may not overlap}{}\fi% \def\beamer@endaction{% \end{minipage}% \egroup% \ifdim\beamer@animht<\ht\beamer@animcurrent\beamer@animht=\ht\beamer@animcurrent\fi% \ifdim\beamer@animdp<\dp\beamer@animcurrent\beamer@animdp=\dp\beamer@animcurrent\fi% \setbox\beamer@animshowbox=\copy\beamer@animcurrent} }% {\def\beamer@endaction{% \end{minipage}% \egroup% \ifdim\beamer@animht<\ht\beamer@animcurrent\beamer@animht=\ht\beamer@animcurrent\fi% \ifdim\beamer@animdp<\dp\beamer@animcurrent\beamer@animdp=\dp\beamer@animcurrent\fi}% }% \setbox\beamer@animcurrent=\vbox\bgroup\begin{minipage}[t]{\beamer@animwd}% } \mode
{ \newenvironment{overprint}[1][]% {% \let\beamer@noargsonslide=\beamer@onslide% \let\beamer@noargsvisibleonslide=\beamer@onslide% \begin{onlyenv}} {\end{onlyenv}} \def\beamer@onslide<#1>{\end{onlyenv}\begin{onlyenv}<#1>} } % % Transitions - DISTRACTING and to be used with CARE!!!! % \define@key{beamertrans}{direction}{\def\beamer@transdir{ /Di #1 }} \define@key{beamertrans}{duration}{\def\beamer@dur{ /D #1 }} \newcommand\beamer@dotrans[2][]{% \def\beamer@transdir{}% \def\beamer@dur{}% \setkeys{beamertrans}{#1}% \edef\beamer@temp{{pdfpagetransition={#2 \beamer@transdir\space\beamer@dur}}} \expandafter\hypersetup\beamer@temp} \mode
{ \newcommand\beamer@dotrans[2][]{} } \mode { \newcommand<>{\transblindshorizontal}[1][]{\only#2{\beamer@dotrans[{#1}]{Blinds /Dm /H}}} \newcommand<>{\transblindsvertical}[1][]{\only#2{\beamer@dotrans[{#1}]{Blinds /Dm /V}}} \newcommand<>{\transboxin}[1][]{\only#2{\beamer@dotrans[{#1}]{Box /M /I}}} \newcommand<>{\transboxout}[1][]{\only#2{\beamer@dotrans[{#1}]{Box /M /O}}} \newcommand<>{\transcover}[1][]{\only#2{\beamer@dotrans[{#1}]{Cover}}} \newcommand<>{\transdissolve}[1][]{\only#2{\beamer@dotrans[{#1}]{Dissolve}}} \newcommand<>{\transfade}[1][]{\only#2{\beamer@dotrans[{#1}]{Fade}}} \newcommand<>{\transglitter}[1][]{\only#2{\beamer@dotrans[{#1}]{Glitter}}} \newcommand<>{\transpush}[1][]{\only#2{\beamer@dotrans[{#1}]{Push}}} \newcommand<>{\transreplace}[1][]{\only#2{\beamer@dotrans[{#1}]{Replace}}} \newcommand<>{\transsplitverticalin}[1][]{\only#2{\beamer@dotrans[{#1}]{Split /Dm /V /M /I}}} \newcommand<>{\transsplitverticalout}[1][]{\only#2{\beamer@dotrans[{#1}]{Split /Dm /V /M /O}}} \newcommand<>{\transsplithorizontalin}[1][]{\only#2{\beamer@dotrans[{#1}]{Split /Dm /H /M /I}}} \newcommand<>{\transsplithorizontalout}[1][]{\only#2{\beamer@dotrans[{#1}]{Split /Dm /H /M /O}}} \newcommand<>{\transuncover}[1][]{\only#2{\beamer@dotrans[{#1}]{Uncover}}} \newcommand<>{\transwipe}[1][]{\only#2{\beamer@dotrans[{#1}]{Wipe}}} } \newcommand<>{\transduration}[1]{\only#2{\hypersetup{pdfpageduration={#1}}}} \mode
{ \newcommand<>{\transduration}[1]{} } % % Animation macros % \def\animate<#1>{\transduration<#1| handout:0| trans:0>{0}} \def\animatevalue<#1-#2>#3#4#5{% \only<#1-#2>{}% enforce these frames \ifnum\beamer@slideinframe<#1\relax% #3=#4\relax% \else% \ifnum\beamer@slideinframe<#2\relax% #3=#4\relax% #3=-#3\relax% \advance#3 by#5\relax% \beamer@animationtempa=#2\relax% \advance\beamer@animationtempa by-#1% \ifnum\beamer@animationtempa>0% \divide#3 by\beamer@animationtempa% \fi% \beamer@animationtempa=\beamer@slideinframe% \advance\beamer@animationtempa by-#1% \multiply#3 by\beamer@animationtempa% \advance#3 by#4% \else #3=#5\relax% \fi% \fi% } \mode
{ \def\animate<#1>{} \def\animatevalue<#1-#2>#3#4#5{#3=#4\relax} } % % Labels in overlays % \g@addto@macro\beamer@lastminutepatches{% \let\beamer@origlabel\label \def\label{\@ifnextchar<{\beamer@label}{\beamer@label<1>}} \let\beamer@origlabel@in@display\label@in@display \def\label@in@display{\@ifnextchar<{\beamer@label@in@display}{\beamer@label@in@display<1>}} } \def\beamer@label<#1>#2{\alt<#1>{\beamer@origlabel{#2}\beamer@nameslide{#2}}{\beamer@dummynameslide}} \def\beamer@label@in@display<#1>#2{\alt<#1>{\beamer@origlabel@in@display{#2}\beamer@nameslide{#2}}{\beamer@dummynameslide}} \mode
{ \g@addto@macro\beamer@lastminutepatches{ % Has to be done late... \renewcommand<>{\label}{\alt#1{\beameroriginal{\label}}{\@gobble}} \renewcommand<>{\label@in@display}{\alt#1{\beameroriginal{\label@in@display}}{\@gobble}} } } \AtBeginDocument { \let\beamer@origref=\ref \def\ref{% \@ifstar {\beamer@origref} {\beamer@ref}% } \long\def\beamer@ref#1{% \hyperlink{#1}{\beamer@origref{#1}}% } } \mode beamer/base/multimedia/0000755000175000017500000000000012050430504014716 5ustar mohuramohurabeamer/base/multimedia/multimedia.sty0000644000175000017500000002271212050430504017615 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % Copyright 2011 by Vedran Mileti\'c, Joseph Wright % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. % $Header: /Users/joseph/Documents/LaTeX/beamer/base/multimedia/multimedia.sty,v d8e49ee79bcf 2012/05/02 13:45:56 joseph $ \ProvidesPackage{multimedia}[2012/05/02 ver 0.02] \NeedsTeXFormat{LaTeX2e}[1995/12/01] \RequirePackage{keyval}[1997/11/10] \RequirePackage{ifpdf} \ifpdf \let\mm@psorpdf\@secondoftwo \else \let\mm@psorpdf\@firstoftwo \PassOptionsToPackage{pdfmark}{hyperref} \define@key{PDF}{Movie}{\pdf@addtoks{#1}{Movie}} \define@key{PDF}{T}{\pdf@addtoks{#1}{T}} \define@key{PDF}{Annotations}{\pdf@addtoks{#1}{A}} \fi \define@key{multimedia}{automute}[true]{\csname mm@autostop#1\endcsname} \define@key{multimedia}{autostart}[true]{\csname mm@autostart#1\endcsname} \define@key{multimedia}{bitspersample}{\def\mm@b{/B #1}} \define@key{multimedia}{borderwidth}{{\@tempdima=#1\relax\@tempdima=0.99626401\@tempdima\xdef\mm@bw{\strip@pt\@tempdima}}} \define@key{multimedia}{channels}{\def\mm@c{/C #1}} \define@key{multimedia}{depth}{\@tempdimc=#1\relax} \define@key{multimedia}{duration}{\mm@convert#1{\mm@duration}{/Duration}}% \define@key{multimedia}{encoding}{\def\mm@e{/E /#1}} \define@key{multimedia}{externalviewer}[]{\mm@externaltrue} \define@key{multimedia}{height}{\@tempdimb=#1\relax} \define@key{multimedia}{inlinesound}[true]{\csname mm@inline#1\endcsname} \define@key{multimedia}{label}{\def\mm@label{#1}} \define@key{multimedia}{loop}[]{\def\mm@playmode{/Mode /Repeat}\def\mm@repeat{/Repeat true}} \define@key{multimedia}{mixsound}[true]{\def\mm@mix{/Mix #1}} \define@key{multimedia}{once}[]{\def\mm@playmode{/Mode /Once}} \define@key{multimedia}{palindrome}[]{\def\mm@playmode{/Mode /Palindrome}} \define@key{multimedia}{pause}[]{\def\mm@do{/Operation /Pause}} \define@key{multimedia}{play}[]{\def\mm@do{/Operation /Play}} \define@key{multimedia}{poster}[true]{\def\mm@poster{/Poster #1}} \define@key{multimedia}{repeat}[]{\def\mm@playmode{/Mode /Repeat}\def\mm@repeat{/Repeat true}} \define@key{multimedia}{resume}[]{\def\mm@do{/Operation /Resume}} \define@key{multimedia}{samplingrate}{\def\mm@r{/R #1}} \define@key{multimedia}{showcontrols}[true]{\def\mm@controls{/ShowControls #1}} \define@key{multimedia}{start}{\mm@convert#1{\mm@start}{/Start}}% \define@key{multimedia}{stop}[]{\def\mm@do{/Operation /Stop}} \define@key{multimedia}{width}{\@tempdima=#1\relax} \define@key{multimedia}{open}[]{\def\mm@playmode{/Mode /Open}} \def\mm@convert#1s{\mm@@convert{#1}} \def\mm@@convert#1#2#3{% {\@tempdima=#1pt% \@tempcnta=\@tempdima% \divide\@tempcnta by 512% \xdef#2{#3 [\the\@tempcnta\space 128]}}} \newif\ifmm@autostart \newif\ifmm@autostop \newif\ifmm@external \newif\ifmm@inline \newcount\mm@movie \newcommand\movie[3][]{% \leavevmode% % Sanity check \IfFileExists{\@currdir #3}{}{% \PackageWarning{multimedia}{The movie file ``#3'' could not be found in the current directory, where it must reside for viewing.}% }% {% % Calculate size of the poster \setbox\@tempboxa=\hbox{#2}% \@tempdima=\wd\@tempboxa% \@tempdimb=\ht\@tempboxa% \@tempdimc=\dp\@tempboxa% \global\advance\mm@movie by1\relax% \edef\mm@label{mmdefaultlabel\the\mm@movie}% \def\mm@playmode{}% \def\mm@duration{}% \def\mm@start{}% \def\mm@poster{}% \def\mm@controls{}% \mm@autostartfalse% \mm@externalfalse% \def\mm@bw{0}% \setkeys{multimedia}{#1}% \wd\@tempboxa=\@tempdima% \ht\@tempboxa=\@tempdimb% \dp\@tempboxa=\@tempdimc% \ifmm@external% \href{run:#3}{\box\@tempboxa}% \else% \mm@psorpdf{% \pdfmark[{\box\@tempboxa}]{% pdfmark=/ANN,% Subtype=/Movie,% Movie=<< /F (#3) \mm@poster\space >>,% Annotations=<< \mm@start\space \mm@duration\space \mm@playmode\space \mm@controls\space>>,% T=(\mm@label), Border={0 0 \mm@bw}}% }{% \pdfannot width \@tempdima height \@tempdimb depth \@tempdimc { /Subtype /Movie /T (\mm@label) /Border [0 0 \mm@bw] /Movie << /F (#3) \mm@poster\space >> /A << \mm@start\space \mm@duration\space \mm@playmode\space \mm@controls\space >> }% }% \mm@psorpdf{}{\box\@tempboxa}% \ifmm@autostart% \mm@psorpdf% {% \pdfmark{pdfmark=/PUT,% Raw={{ThisPage} << /AA << /O << /S /Movie /T (\mm@label) /Operation /Play >> >> >>}% }}% {% \immediate\pdfobj {<< /S /Movie /T (\mm@label) /Operation /Play >>}% \pdfannot width 0pt height 0pt depth 0pt {% /Subtype/Widget /FT/Btn/Ff 65537 /T (wid@\mm@label) /AA <>% attention: /O --> /PO for Widget annots }% }% \fi% \fi% }% } \newcommand\hyperlinkmovie[3][]{% \leavevmode% {\def\mm@playmode{}\def\mm@start{}\def\mm@duration{}\def\mm@do{}\def\mm@controls{}% \setkeys{multimedia}{#1}% \mm@psorpdf{% \pdfmark[{#3}]{% Color=\@linkbordercolor,% linktype={link},% AcroHighlight=\@pdfhighlight,% Border=\@pdfborder,% pdfmark=/ANN,% Subtype=/Link,% Annotations=<< /S /Movie /T (#2) \mm@controls\space \mm@do\space \mm@start\space \mm@duration\space \mm@playmode\space >>% }}% {% \pdfstartlink attr{% /Border [\@pdfborder] /H \@pdfhighlight\space /C [\@menubordercolor]% }% user{ /Subtype /Link /A << /S /Movie /T (#2) \mm@controls\space \mm@do\space \mm@start\space \mm@duration\space \mm@playmode\space >> }% #3\pdfendlink}% }% } \newcommand\sound[3][]{% \mm@psorpdf{\movie[#1]{#2}{#3}}% no way of defining a stream object... {% \leavevmode% % Sanity check \IfFileExists{\@currdir #3}{}{% \PackageWarning{multimedia}{The movie file ``#3'' could not be found in the current directory, where it must reside for viewing.}% }% {% % Calculate size of the poster \setbox\@tempboxa=\hbox{#2}% \@tempdima=\wd\@tempboxa% \@tempdimb=\ht\@tempboxa% \@tempdimc=\dp\@tempboxa% \def\mm@label{mmdefaultlabel}% \def\mm@playmode{}% \def\mm@duration{}% \def\mm@start{}% \def\mm@repeat{}% \def\mm@mix{/Mix false}% \setkeys{multimedia}{samplingrate=44100,channels=1,bitspersample=16,encoding=muLaw}% \mm@autostartfalse% \mm@autostopfalse% \mm@externalfalse% \mm@inlinefalse% \def\mm@bw{0}% \setkeys{multimedia}{#1}% \wd\@tempboxa=\@tempdima% \ht\@tempboxa=\@tempdimb% \dp\@tempboxa=\@tempdimc% \ifmm@external% \href{run:#3}{\box\@tempboxa}% \else% \ifmm@inline% \pdfobj stream attr {/Type /Sound \mm@r\space \mm@c\space \mm@b\space} file {#3}% \pdfrefobj \pdflastobj% \else \pdfobj stream attr {\mm@r\space \mm@c\space \mm@b\space \mm@e\space /F (#3)} {}% \pdfrefobj \pdflastobj% \fi% \expandafter\xdef\csname mms@\mm@label\endcsname{\the\pdflastobj}% \def\@temp{#2}\ifx\@temp\@empty\else\hyperlinksound[#1]{\mm@label}{\box\@tempboxa}\fi% \ifmm@autostart% \pdfobj {<< /S /Sound /Sound \the\pdflastobj\space 0 R \mm@mix\space >>}% \pdfrefobj\pdflastobj% \xdef\mm@pdfpageadditionalaction{/O \the\pdflastobj\space 0 R }% \fi% \ifmm@autostop% \pdfobj {<< /S /Sound /Sound \mms@mute\space 0 R >>}% \pdfrefobj\pdflastobj% \xdef\mm@pdfpageadditionalaction{% \ifx\mm@pdfpageadditionalaction\relax\else\mm@pdfpageadditionalaction\fi\space /C \the\pdflastobj\space 0 R }% \fi% \fi% }% }% } \mm@psorpdf{}{% \pdfobj stream attr {/R 22050} {}% \pdfrefobj \pdflastobj% \edef\mms@mute{\the\pdflastobj} } \newcommand\hyperlinkmute[1]{\mm@psorpdf{#1}{\hyperlinksound{mute}{#1}}} \newcommand\hyperlinksound[3][]{% \mm@psorpdf{\hyperlinkmovie[#1]{#2}{#3}}% {% \@ifundefined{mms@#2}% {\PackageError{multimedia}{Sound labeled ``#2'' not defined}{}} {% \leavevmode% \def\mm@mix{/Mix false}% \def\mm@repeat{/Repeat false}% \setkeys{multimedia}{#1}% \pdfstartlink attr{% /Border [\@pdfborder] /H \@pdfhighlight\space /C [\@menubordercolor]% }% user{ /Subtype /Link /A << /S /Sound /Sound \csname mms@#2\endcsname\space 0 R \mm@mix\space \mm@repeat\space >> }% #3\pdfendlink}% }% } % Copyright Notice: The following code is based on code from hyperref.sty \def\mm@pageadditionalaction{% \ifx\mm@pdfpageadditionalaction\relax \else \expandafter\mm@RemoveAAPageAttr\the\pdfpageattr^^J/AA{}>>\END \ifx\mm@pdfpageadditionalaction\@empty \else \edef\@processme{% \global\pdfpageattr{% \the\pdfpageattr ^^J/AA << \mm@pdfpageadditionalaction\space >>% }% }% \@processme \fi \global\let\mm@pdfpageadditionalaction=\@empty% not on next page \fi } \gdef\mm@RemoveAAPageAttr#1^^J/AA#2#3>>#4\END{% \ifx\\#2\\% \global\pdfpageattr{#1}% \else \mm@RemoveAAPageAttr#1#4\END \fi } \let\mm@pdfpageadditionalaction=\relax % This is *not* the way to do it, but it'll have to do for now: \let\mm@orighyper@pagetransition=\hyper@pagetransition \AtBeginDocument{\def\hyper@pagetransition{\mm@orighyper@pagetransition\mm@pageadditionalaction}} beamer/base/multimedia/xmpmulti.sty0000644000175000017500000001477112050430504017350 0ustar mohuramohura% $Header: /Users/joseph/Documents/LaTeX/beamer/base/multimedia/xmpmulti.sty,v 14743c450e2c 2010/06/17 09:25:56 rivanvx $ % Copyright 2000 by Klaus Guntermann % Copyright 2004 by Till Tantau . % % This program can be redistributed and/or modified under the terms % of the GNU Public License, version 2. % % Copyright notices: Large parts of this file are identical to the % file mpmulti.sty from the ppower4 distribution. Unfortunately, no % clear copyright notice is given in the original file nor is even the % author indicated. The author appears to be Klaus Guntermann and the % license appears to be GPL, at least the whole package is distributed % under GPL, so I assume that also applies to the individual % files. % % % This file does the same as the original mpmulti.sty. The only % differences are that a) the package pause is not loaded (it's % provided automatically by beamer and it should be loaded ``by hand'' % when using ppower4) and b) a default overlay specification can be % given (as in \multiinclude[<+->][...]{...}), which will be the % argument to an actionenv that is put around each image. % %% mpmulti.sty 09 Sep 2002 %%------------------------------------------------------------ %% History: %% Initial version 14 Apr 2000 %% Introduced keyword parameters 12 Jun 2000 %% Introduced new parameters (start,format), changed the %% global code to take several file counting strings (eg %% bla-*.mps, foo-*.jpg, etc.), added compatibility with %% \graphicspath (Jean-Christophe Dubacq) 06 Dec 2001 %% Generalized the format option, added the end %% handling and documented extended features in here %% 09 Sep 2002 %% %% Purpose: %% include multiple metapost pictures and overlay them, %% inserting a transition effect between them %% %% Synopsis: %% %% \multiinclude[defaultoverlayspecification]% %% [pause=transitioncommand, %% graphics={option for includegraphics}, %% format=filenameformat, %% start=number, %% end=number]{basefilename} %% %% Include all metapost generated graphics found in %% files with the basename "filename", which %% have a number attached or in the extension. %% Insert the transitioncommand between the files (defaults %% to \pause). %% Further options allow to specify additional specifications %% for includegraphics, can change the number to start with %% (default 0) or the number to end with (default 1000000). %% By default the filenames are as created by mpost in the format %% "filename.n", where "n" represents the number. %% The option format with the values like "mps", "png" or "jpg" this %% can be changed to "filename-n.format", e.g. "example-0.mps" %% instead of "example.0". %% Complaints are only written, if the first file is not found. %% Otherwise including will silently stop. %% %% If a defaultoverlayspecification is given, each image is %% surrounded by an actionenv environment (defined by the beamer %% class) with this option as argument. An example usage might be %% %% \multiinclude[][graphics={height=4cm}]{myimage} %% %% Requires: %% The keyval package for options processing. %% %% %\RequirePackage{pause} \RequirePackage{keyval} %% %% The command should process the optional arguments. %% \def\multiinclude{% \def\@mpm@pause{\pause}\def\@mpm@ospec{}\def\@mpm@endospec{}% \@ifnextchar [\@mpmulti{\@@@mpmulti[]}} %% \newif\if@mpm@groptions\@mpm@groptionsfalse %% We describe the keys and their default values \define@key{mpm}{format}[\@mpm@defaultformat]{% \global\def\@mpm@format##1{##1-\the\@mpm@count.#1}} \define@key{mpm}{start}[0]{\global\def\@mpm@start{#1}\relax} \define@key{mpm}{end}[1000000]{\global\def\@mpm@end{#1}\relax} \define@key{mpm}{pause}[\pause]{\global\def\@mpm@pause{#1}\relax} \define@key{mpm}{graphics}{\@mpm@groptionstrue \global\def\@mpm@graphics{\string#1}} \def\@mpm@defaultformat#1{#1.\the\@mpm@count} \let\@mpm@format=\@mpm@defaultformat %% %% We need a local counter %% \newcount\@mpm@count %% %% Implement the basic functionality. %% Try to include the first file unconditionally. %% This will produce an error message, if no such file can be found. %% Afterwards we are going to check for more files and stop, when we %% do not find another file. As long as we find files, these are %% overlapped to the previous parts. %% \def\@mpmulti[{\@ifnextchar<{\@@mpmulti[}{\@@@mpmulti[}} \def\@@mpmulti[#1]{% \def\@mpm@pause{\relax}% \def\@mpm@ospec{\begin{actionenv}#1}% \def\@mpm@endospec{\end{actionenv}}% \@ifnextchar[{\@@@mpmulti}{\@@@mpmulti[]}} \def\@@@mpmulti[#1]#2{% %% reset the options \global\def\@mpm@graphics{}% \global\def\@mpm@start{0}% \global\def\@mpm@end{1000000}% %% get the arguments \setkeys{mpm}{#1}% %% Insert the first part of the figure %% and make sure we look also in other places according to path. \let\@mpm@oldinp@th\input@path\let\input@path\Ginput@path \@mpm@count=\@mpm@start \@mpm@ospec% \if@mpm@groptions% \edef\@mpm@do@include{\noexpand\includegraphics[\@mpm@graphics]{\@mpm@format{#2}}}% \@mpm@do@include% \else% \includegraphics{\@mpm@format{#2}}% \fi% \@mpm@endospec% \def\@mpmdoit{% Do it by conditional tail recursion. %% Select the next filename and advance counter \edef\@mpmfilename{\@mpm@format{#2}}% %% If the file exists, \IfFileExists{\@mpmfilename}{% %% insert the user defined transition (or the default), \@mpm@pause %% then process the next part and set up to try again. \llap{% \@mpm@ospec% \if@mpm@groptions \edef\@mpm@do@include{\noexpand \includegraphics[\@mpm@graphics]{\@mpmfilename}}% \@mpm@do@include \else \includegraphics{\@mpmfilename}% \fi% \@mpm@endospec% }% \ifnum\@mpm@count<\@mpm@end\relax \advance\@mpm@count by 1\relax \let\@mpmnext\@mpmdoit \else \let\@mpmnext\relax \fi }{% %% If no more files exist, set up to stop. \let\@mpmnext\relax }% %% Whatever we had to do (without nesting all the IfFileExists) \@mpmnext }% %% Finally we must start it once, if there is more than one file %% supposed to be available. \ifnum\@mpm@count<\@mpm@end\relax \advance\@mpm@count by 1\relax % start counting \@mpmdoit % and run the show \fi %% and reset the input path after all \let\input@path\@mpm@oldinp@th }% beamer/base/multimedia/multimediasymbols.sty0000644000175000017500000000255412050430504021230 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackage{multimediasymbols}[2004/04/10 ver 0.01] \NeedsTeXFormat{LaTeX2e}[1995/12/01] \RequirePackage{keyval} \RequirePackage{pgf} \define@key{multimediasym}{fill}[]{\def\mm@action{\pgfusepath{fill,stroke}}} \newcommand\speakersymbol[1][]{% \def\mm@action{}% \setkeys{multimediasym}{#1}% \begin{pgfpicture}{-.1ex}{0pt}{2.1ex}{1.5ex} \pgfsetroundjoin \pgfsetroundcap \pgfpathmoveto{\pgfpoint{0cm}{.5ex}} \pgfpathlineto{\pgfpoint{.5ex}{.5ex}} \pgfpathlineto{\pgfpoint{ex}{0pt}} \pgfpathlineto{\pgfpoint{ex}{1.5ex}} \pgfpathlineto{\pgfpoint{.5ex}{ex}} \pgfpathlineto{\pgfpoint{0pt}{ex}} \pgfpathclose \mm@action \pgfpathmoveto{\pgfpoint{1.25ex}{.5ex}} \pgfpathcurveto{\pgfpoint{1.4ex}{.6ex}}{\pgfpoint{1.4ex}{.9ex}}{\pgfpoint{1.25ex}{1ex}} \pgfpathmoveto{\pgfpoint{1.5ex}{.25ex}} \pgfpathcurveto{\pgfpoint{1.7ex}{.5ex}}{\pgfpoint{1.7ex}{1ex}}{\pgfpoint{1.5ex}{1.25ex}} \pgfpathmoveto{\pgfpoint{1.75ex}{0pt}} \pgfpathcurveto{\pgfpoint{2ex}{.25ex}}{\pgfpoint{2ex}{1.25ex}}{\pgfpoint{1.75ex}{1.5ex}} \pgfusepath{stroke} \end{pgfpicture}} beamer/base/beamerarticle.sty0000644000175000017500000000260212050430504016124 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \RequirePackage{beamerbasercs} \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerarticle.sty,v cc6557182d97 2012/04/15 14:37:19 rivanvx $ \RequirePackage{beamerbasemodes} % Setup modes and check for article option \DeclareOption{utf8}{\PassOptionsToPackage{utf8}{beamerbasearticle}} \DeclareOption{hyperref}{\PassOptionsToPackage{hyperref}{beamerbasearticle}} \DeclareOption{noxcolor}{\PassOptionsToPackage{noxcolor}{beamerbasearticle}} \DeclareOption{notheorems}{\PassOptionsToPackage{notheorems}{beamerbasearticle}} \DeclareOption{noamsthm}{\PassOptionsToPackage{noamsthm}{beamerbasearticle}} \DeclareOption{noamssymb}{\PassOptionsToPackage{noamssymb}{beamerbasearticle}} \DeclareOption{envcountsect}{\PassOptionsToPackage{envcountsect}{beamerbasearticle}} \DeclareOption{activeospeccharacters}{\PassOptionsToPackage{activeospeccharacters}{beamerbasearticle}} \ProcessOptions \def\beamer@slide#1#2{\expandafter\gdef\csname beamer@slide#1\endcsname{#2}} \beamer@inpresentationfalse \ifx\beamer@currentmode\@undefined \def\beamer@currentmode{article} \fi \mode \RequirePackage{beamerbasearticle} beamer/base/beamerbasenotes.sty0000644000175000017500000001176712050430504016500 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasenotes.sty,v efa082c6111d 2010/05/01 11:27:03 rivanvx $ \mode \newbox\beamer@frameboxcopy \newif\ifbeamer@twoscreensnotes % Notes options \defbeameroption{hide notes}[]% { \beamer@notesfalse } \defbeameroption{show notes}[]% { \beamer@notestrue } \defbeameroption{show notes on second screen}[right]% { \pgfpagesuselayout{two screens with optional second}[second #1] \beamer@twoscreensnotestrue \beamer@notestrue } \defbeameroption{show only notes}[]% { \beamer@notestrue \beamer@notesnormalsfalse \nofiles } % % Notes % \define@key{beamernotes}{enumerate}[true]{% \def\beamer@noteenvstart{\begin{enumerate}\itemsep=0pt\parskip=0pt}% \def\beamer@noteenvend{\end{enumerate}}} \define@key{beamernotes}{itemize}[true]{% \def\beamer@noteenvstart{\begin{itemize}\itemsep=0pt\parskip=0pt}% \def\beamer@noteenvend{\end{itemize}}} \newcommand\beamer@outsideframenote[2][]{% \beamer@savemode% \ifbeamer@inlecture% \def\beamer@noteenvstart{}% \def\beamer@noteenvend{}% \setkeys{beamernotes}{#1}% \ifbeamer@notes \begingroup \setbeamertemplate{itemize item}{\textbullet} \setbeamertemplate{itemize subitem}{--} \setbeamertemplate{enumerate item}{\insertenumlabel.} \setbeamertemplate{enumerate subitem}{\insertenumlabel.\insertsubenumlabel} \def\@oddhead{} \def\@oddfoot{} \let\@evenhead\@oddhead \let\@evenfoot\@oddfoot \def\beamer@backgroundtemplate{}% \setbeamercolor{item}{fg=black,bg=white} \color{black}% \nointerlineskip \hbox{\hskip-\Gm@lmargin\hskip1cm\vbox to\textheight{% %pretend to have ``standard'' margins \edef\beamer@origlmargin{\Gm@lmargin}% \edef\beamer@origrmargin{\Gm@rmargin}% \def\Gm@lmargin{1cm}% \def\Gm@rmargin{1cm}% \textwidth=10.8cm% \hsize=\textwidth% \vskip-\headheight% \def\insertnote{\vbox{}% \beamer@noteenvstart#2\beamer@noteenvend% }% \usebeamertemplate*{note page}% \vfil% \vskip-4pt% foot separator \vskip-\footheight}\hskip-\Gm@lmargin\hskip1cm}% \ifbeamer@twoscreensnotes% \pgfpagescurrentpagewillbelogicalpage{2}% \advance\c@page by-1\relax% \fi% \clearpage \endgroup \fi% \fi% \beamer@resumemode} % % Notes in frames % \def\beamer@itemtext{item} \newcommand<>{\beamer@inframenote}[2][]{% \ifbeamer@inlecture% \only#3{% \def\beamer@temp{#1}% \ifx\beamer@temp\beamer@itemtext% \expandafter\gdef\expandafter\beamer@noteitems% \expandafter{\beamer@noteitems\item#2}% \else \expandafter\gdef\expandafter\beamer@notes% \expandafter{\beamer@notes#2}% \fi% }% \fi% } \def\note{% \ifbeamer@inframe% \let\next=\beamer@inframenote% \else% \let\next=\beamer@outsideframenote% \fi% \next} \def\beamer@framenotesbegin{% at beginning of slide \gdef\beamer@noteitems{}% \gdef\beamer@notes{}% } \def\beamer@framenotesend {% at end of slide \global\setbox\beamer@frameboxcopy=\copy\beamer@framebox% \ifx\beamer@noteitems\@empty% \ifx\beamer@notes\@empty% % possibly suppress this slide \ifbeamer@frameswithnotesonly % suppress frame \global\setbox\beamer@framebox=\box\voidb@x% \fi% \ifbeamer@twoscreensnotes% \beamer@setupnote% \fi% \else% \beamer@setupnote% \fi \else% \beamer@setupnote% \fi \ifbeamer@notesnormals% \else% \global\setbox\beamer@framebox=\box\voidb@x% \fi% } \def\beamer@setupnote{% \gdef\beamer@notesactions{% \beamer@outsideframenote{% \beamer@atbeginnote% \beamer@notes% \ifx\beamer@noteitems\@empty\else \begin{enumerate}\itemsep=0pt\parskip=0pt% \beamer@noteitems% \end{enumerate}% \fi% \beamer@atendnote% }% \gdef\beamer@notesactions{}% } } \def\beamer@notesactions{} \newcommand\AtBeginNote[1]{\long\def\beamer@atbeginnote{#1}} \newcommand\AtEndNote[1]{\long\def\beamer@atendnote{#1}} \AtBeginNote{} \AtEndNote{} % % Note frame insert % \newcommand{\insertslideintonotes}[1]{{% \begin{pgfpicture}{0cm}{0cm}{#1\paperwidth}{#1\paperheight} \begin{pgflowlevelscope}{\pgftransformscale{#1}}% \color[gray]{0.8} \pgfpathrectangle{\pgfpointorigin}{\pgfpoint{\paperwidth}{\paperheight}} \pgfusepath{fill} \color{black} {\pgftransformshift{\pgfpoint{\beamer@origlmargin}{\footheight}}\pgftext[left,bottom]{\copy\beamer@frameboxcopy}} \end{pgflowlevelscope} \end{pgfpicture}% }} \mode
{ \newcommand<>\note[2][]{} } \mode beamer/base/beamerbasesection.sty0000644000175000017500000003024712050430504017006 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasesection.sty,v 0056eef6f17f 2012/11/11 21:00:02 joseph $ \mode { \def\beamer@secgobble{\beamer@savemode\@ifnextchar*{\beamer@secstargobble}{\beamer@sec@gobbleoptional}} \def\beamer@secstargobble*{\beamer@sec@gobbleoptional} \newcommand\beamer@sec@gobbleoptional[2][]{\beamer@resumemode} \def\secname{} \def\subsecname{} \def\subsubsecname{} } \mode % % Lecture Definitions % \newif\ifbeamer@inlecture \beamer@inlecturetrue \newcommand{\beamer@if@in@clist@TF}[2]{% \def\beamer@if@in@clist@aux##1,#2,{}% \expandafter\expandafter\expandafter\ifx \expandafter\expandafter\expandafter\@nil \expandafter\beamer@if@in@clist@aux\expandafter,#1,{}{},#2,\@nil \expandafter\@secondoftwo \else \expandafter\@firstoftwo \fi } \newcounter{lecture} \renewcommand\thelecture{\@arabic\c@lecture} \let\insertlecturenumber=\thelecture \newcommand\lecture{\@dblarg\beamer@lecture} \long\def\beamer@lecture[#1]#2#3{ \beamer@savemode \mode \refstepcounter{lecture} \def\beamer@currentlecturelabel{#3} \def\beamer@lecturename{#2} \def\beamer@shortlecturename{#1} \ifx\beamer@onlylecture\@empty \else \expandafter\beamer@if@in@clist@TF\expandafter\beamer@onlylecture \beamer@currentlecturelabel {\beamer@inlecturetrue} {\beamer@inlecturefalse} \fi \beamer@atbeginlecture \beamer@resumemode } \mode { \long\def\AtBeginLecture#1{% \def\beamer@atbeginlecture{#1}} \AtBeginLecture{} \newcommand\includeonlylecture[1]{% \def\beamer@onlylecture{#1}} \includeonlylecture{} } \newcommand\insertlecture{\beamer@lecturename} \newcommand\insertshortlecture[1][]{% {% \beamer@setupshort{#1}% \beamer@insertshort{\beamer@shortlecturename}% }} \mode
{ \newcommand\lecture[3][]{\def\insertlecture{#2}\def\insertshortlecture{#1}} } % % Part Definitions % \newcounter{part} \renewcommand\thepart{\@arabic\c@part} \beamer@partstartpage=1 \newcommand<>{\part}{\alt#1{\@dblarg\beamer@part}{\beamer@gobbleoptional}} \long\def\beamer@part[#1]#2{% \beamer@savemode% \mode% \ifbeamer@inlecture% \refstepcounter{part}% \def\beamer@partname{#2}% \def\beamer@partnameshort{#1}% \addtocontents{nav}{\protect\headcommand{\protect\partentry{#2}{\the\c@part}}}% \xdef\partlink{{Navigation\the\c@page}{\noexpand\beamer@partname}}% \xdef\partlinkshort{{Navigation\the\c@page}{\noexpand\beamer@partnameshort}}% \beamer@tempcount=\c@page\advance\beamer@tempcount by -1% \addtocontents{nav}{\protect\headcommand{% \protect\beamer@partpages{\the\beamer@partstartpage}{\the\beamer@tempcount}}}% \addtocontents{nav}{\protect\headcommand{% \protect\beamer@sectionpages{\the\beamer@sectionstartpage}{\the\beamer@tempcount}}}% \addtocontents{nav}{\protect\headcommand{% \protect\beamer@subsectionpages{\the\beamer@subsectionstartpage}{\the\beamer@tempcount}}}% \beamer@partstartpage=\c@page% \beamer@sectionstartpage=\c@page% \beamer@subsectionstartpage=\c@page% \setcounter{subsection}{0}% \def\insertsection{}% \def\insertsubsection{}% \def\insertsubsubsection{}% \def\insertsectionhead{}% \def\insertsubsectionhead{}% \def\insertsubsubsectionhead{}% \def\lastsubsection{}% \def\insertpart{\expandafter\hyperlink\partlink}% \Hy@writebookmark{\the\c@section}{#1}{Outline\the\c@part}{1}{toc}% \hyper@anchorstart{Outline\the\c@part}\hyper@anchorend% \beamer@atbeginpart% \fi% \beamer@resumemode}% \def\insertpart{} \def\partlinkshort{{Navigation1}{}} \def\insertromanpartnumber{\@Roman\c@part} \def\insertpartnumber{\@arabic\c@part} \newcommand\insertshortpart[1][]{% {% \beamer@setupshort{#1}% \beamer@insertshort{\expandafter\hyperlink\partlinkshort}% }} \mode { \long\def\AtBeginPart#1{% \def\beamer@atbeginpart{#1}} \AtBeginPart{} } \mode
{ \ifx\part\@undefined% \else \renewcommand<>{\part}{\alt#1{\beameroriginal\part}{\beamer@gobbleoptional}} \fi } % % Section Definitions % \def\sectionname{\translate{Section}} \newcounter{section} \renewcommand\thesection{\@arabic\c@section} \beamer@sectionstartpage=1\relax \beamer@tocsectionnumber=0\relax \newcommand<>{\section}{\alt#1{\@ifnextchar[\beamer@section\beamer@@section}{\beamer@secgobble}} \def\beamer@@section{\@ifnextchar*\beamer@@ssection\beamer@@@section} \long\def\beamer@@ssection*#1{\beamer@section[{#1}]{}} \long\def\beamer@@@section#1{\beamer@section[{#1}]{#1}} \long\def\beamer@section[#1]#2{% \beamer@savemode% \mode% \ifbeamer@inlecture \refstepcounter{section}% \beamer@ifempty{#2}% {\long\def\secname{#1}\long\def\lastsection{#1}}% {\global\advance\beamer@tocsectionnumber by 1\relax% \long\def\secname{#2}% \long\def\lastsection{#1}% \addtocontents{toc}{\protect\beamer@sectionintoc{\the\c@section}{#2}{\the\c@page}{\the\c@part}% {\the\beamer@tocsectionnumber}}}% {\let\\=\relax\xdef\sectionlink{{Navigation\the\c@page}{\noexpand\secname}}}% \beamer@tempcount=\c@page\advance\beamer@tempcount by -1% \beamer@ifempty{#1}{}{% \addtocontents{nav}{\protect\headcommand{\protect\sectionentry{\the\c@section}{#1}{\the\c@page}{\secname}{\the\c@part}}}% \addtocontents{nav}{\protect\headcommand{\protect\beamer@sectionpages{\the\beamer@sectionstartpage}{\the\beamer@tempcount}}}% \addtocontents{nav}{\protect\headcommand{\protect\beamer@subsectionpages{\the\beamer@subsectionstartpage}{\the\beamer@tempcount}}}% }% \beamer@sectionstartpage=\c@page% \beamer@subsectionstartpage=\c@page% \def\insertsection{\expandafter\hyperlink\sectionlink}% \def\insertsubsection{}% \def\insertsubsubsection{}% \def\insertsectionhead{\hyperlink{Navigation\the\c@page}{#1}}% \def\insertsubsectionhead{}% \def\insertsubsubsectionhead{}% \def\lastsubsection{}% \Hy@writebookmark{\the\c@section}{\secname}{Outline\the\c@part.\the\c@section}{2}{toc}% \hyper@anchorstart{Outline\the\c@part.\the\c@section}\hyper@anchorend% \beamer@ifempty{#2}{\beamer@atbeginsections}{\beamer@atbeginsection}% \fi% \beamer@resumemode}% \def\insertsection{} \def\lastsubsection{} \def\insertsectionnumber{\@arabic\c@section} \def\breakhere{\protect\beamer@breakhere} \def\beamer@breakhere{} \def\insertsectionhead{} \def\insertsubsectionhead{} \mode { \def\AtBeginSection{\@ifnextchar[{\beamer@AtBeginSection}{\beamer@@AtBeginSection}} \long\def\beamer@@AtBeginSection#1{\beamer@AtBeginSection[{#1}]{#1}} \long\def\beamer@AtBeginSection[#1]#2{% \def\beamer@atbeginsection{#2}% \def\beamer@atbeginsections{#1}% } \AtBeginSection{} } \mode
{ \renewcommand<>{\section}{\alt#1{\beameroriginal\section}{\beamer@secgobble}} } % % Subsection Definitions % \def\subsectionname{\translate{Subsection}} \newcounter{subsection}[section] \renewcommand\thesubsection{\@arabic\c@subsection} \beamer@subsectionstartpage=1 \newcommand<>{\subsection}{\alt#1{\@ifnextchar[\beamer@subsection\beamer@@subsection}{\beamer@secgobble}} \def\beamer@@subsection{\@ifnextchar*\beamer@@ssubsection\beamer@@@subsection} \long\def\beamer@@ssubsection*#1{\beamer@subsection[{#1}]{}} %\long\def\beamer@@ssubsection*#1{% % \beamer@ifempty{#1}{\beamer@untitledsubsection}{\beamer@subsection[{#1}]{}}} \def\beamer@@@subsection#1{\beamer@subsection[{#1}]{#1}} \def\beamer@subsection[#1]#2{% \beamer@savemode% \mode% \ifbeamer@inlecture% \refstepcounter{subsection}% \beamer@ifempty{#2}{\long\def\subsecname{#1}\long\def\lastsubsection{#1}} {% \long\def\subsecname{#2}% \long\def\lastsubsection{#1}% \addtocontents{toc}{\protect\beamer@subsectionintoc{\the\c@section}{\the\c@subsection}{#2}{\the\c@page}{\the\c@part}{\the\beamer@tocsectionnumber}}% }% \beamer@tempcount=\c@page\advance\beamer@tempcount by -1% \addtocontents{nav}{% \protect\headcommand{\protect\beamer@subsectionentry{\the\c@part}{\the\c@section}{\the\c@subsection}{\the\c@page}{\lastsubsection}}% \protect\headcommand{\protect\beamer@subsectionpages{\the\beamer@subsectionstartpage}{\the\beamer@tempcount}}% }% \beamer@subsectionstartpage=\c@page% \edef\subsectionlink{{Navigation\the\c@page}{\noexpand\subsecname}}% \def\insertsubsection{\expandafter\hyperlink\subsectionlink}% \def\insertsubsubsection{}% \def\insertsubsectionhead{\hyperlink{Navigation\the\c@page}{#1}}% \def\insertsubsubsectionhead{}% \Hy@writebookmark{\the\c@subsection}{#2}{Outline\the\c@part.\the\c@section.\the\c@subsection.\the\c@page}{3}{toc}% \hyper@anchorstart{Outline\the\c@part.\the\c@section.\the\c@subsection.\the\c@page}\hyper@anchorend% \beamer@ifempty{#2}{\beamer@atbeginsubsections}{\beamer@atbeginsubsection}% \fi% \beamer@resumemode} \def\insertsubsection{} \def\insertsubsectionnumber{\@arabic\c@subsection} \def\beamer@untitledsubsection{% \refstepcounter{subsection}% \def\insertsubsection{}% \def\lastsubsection{}} \mode { \def\AtBeginSubsection{\@ifnextchar[{\beamer@AtBeginSubsection}{\beamer@@AtBeginSubsection}} \long\def\beamer@@AtBeginSubsection#1{\beamer@AtBeginSubsection[{#1}]{#1}} \long\def\beamer@AtBeginSubsection[#1]#2{% \def\beamer@atbeginsubsection{#2}% \def\beamer@atbeginsubsections{#1}} \AtBeginSubsection{} } \mode
{ \renewcommand<>{\subsection}{\alt#1{\beameroriginal\subsection}{\beamer@secgobble}} } % % Subsubsection Definitions % \newcounter{subsubsection}[subsection] \renewcommand\thesubsubsection{\@arabic\c@subsubsection} \beamer@subsectionstartpage=1 \newcommand<>{\subsubsection}{\alt#1{\@ifnextchar[\beamer@subsubsection\beamer@@subsubsection}{\beamer@secgobble}} \def\beamer@@subsubsection{\@ifnextchar*\beamer@@ssubsubsection\beamer@@@subsubsection} \long\def\beamer@@ssubsubsection*#1{\beamer@subsubsection[{#1}]{}} \def\beamer@@@subsubsection#1{\beamer@subsubsection[{#1}]{#1}} \def\beamer@subsubsection[#1]#2{% \beamer@savemode% \mode% \ifbeamer@inlecture% \refstepcounter{subsubsection}% \beamer@ifempty{#2}{\long\def\subsubsecname{#1}\long\def\lastsubsubsection{#1}} {% \long\def\subsubsecname{#2}% \long\def\lastsubsubsection{#1}% \addtocontents{toc}{\protect\beamer@subsubsectionintoc% {\the\c@section}{\the\c@subsection}{\the\c@subsubsection}{#2}{\the\c@page}{\the\c@part}{\the\beamer@tocsectionnumber}}% }% \addtocontents{nav}{\protect\headcommand{\protect\beamer@subsubsectionentry% {\the\c@part}{\the\c@section}{\the\c@subsection}{\the\c@subsubsection}{\the\c@page}{\lastsubsubsection}}}% \edef\subsubsectionlink{{Navigation\the\c@page}{\noexpand\subsubsecname}}% \def\insertsubsubsection{\expandafter\hyperlink\subsubsectionlink}% \def\insertsubsubsectionhead{#1}% \Hy@writebookmark{\the\c@subsubsection}{#2}{Outline\the\c@part.\the\c@section.\the\c@subsection.\the\c@subsubsection.\the\c@page}{4}{toc}% \hyper@anchorstart{Outline\the\c@part.\the\c@section.\the\c@subsection.\the\c@subsubsection.\the\c@page}\hyper@anchorend% \beamer@ifempty{#2}{\beamer@atbeginsubsubsections}{\beamer@atbeginsubsubsection}% \fi% \beamer@resumemode} \def\insertsubsubsection{} \def\insertsubsubsectionhead{} \mode { \def\AtBeginSubsubsection{\@ifnextchar[{\beamer@AtBeginSubsubsection}{\beamer@@AtBeginSubsubsection}} \long\def\beamer@@AtBeginSubsubsection#1{\beamer@AtBeginSubsubsection[{#1}]{#1}} \long\def\beamer@AtBeginSubsubsection[#1]#2{% \def\beamer@atbeginsubsubsection{#2}% \def\beamer@atbeginsubsubsections{#1}} \AtBeginSubsubsection{} } \mode
{ \renewcommand<>{\subsubsection}{\alt#1{\beameroriginal\subsubsection}{\beamer@secgobble}} } % % Appendix stuff % \newcommand<>\appendix{% \only#1{\part{\appendixname} \addtocontents{nav}{\protect\headcommand{\protect\beamer@appendixpages{\the\c@page}}}}} \mode
{ \ifx\appendix\@undefined \else \renewcommand<>{\appendix}{\only#1{\beameroriginal\appendix}} \fi } \mode beamer/base/beamerbasedecode.sty0000644000175000017500000002000412050430504016553 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasedecode.sty,v efa082c6111d 2010/05/01 11:27:03 rivanvx $ \newcount\beamer@slideinframe \newcount\beamer@minimum \newif\ifbeamer@anotherslide \newif\ifbeamer@localanotherslide \newif\ifbeamer@plusencountered % % % Empty test % % \long\def\beamer@ifempty#1{\beamer@xifempty#1@@..\@nil} \long\def\beamer@xifempty#1#2@#3#4#5\@nil{% \ifx#3#4\expandafter\@firstoftwo\else\expandafter\@secondoftwo\fi} \let\beamer@ifnextchar=\@ifnextchar \def\beamer@stoptexts{| stop:0| } { \catcode`\|=13 \catcode`\:=13 \catcode`\,=13 \catcode`\.=13 \catcode`\+=13 \catcode`\-=13 \catcode`\(=13 \catcode`\)=13 \catcode`\ =13 \gdef\beamer@masterdecode#1{% must be called within a group \ifnum\catcode`\|=13\edef|{\string|}\fi% \ifnum\catcode`\:=13\edef:{\string:}\fi% \ifnum\catcode`\,=13\edef,{\string,}\fi% \ifnum\catcode`\.=13\edef.{\string.}\fi% \ifnum\catcode`\+=13\edef+{\string+}\fi% \ifnum\catcode`\-=13\edef-{\string-}\fi% \ifnum\catcode`\(=13\edef({\string(}\fi% \ifnum\catcode`\)=13\edef){\string)}\fi% \ifnum\catcode`\ =13\edef {\string }\fi% \edef\beamer@@@temp{#1\beamer@stoptexts}% \beamer@localanotherslidefalse% \setbox0=\hbox{% \expandafter\beamer@decode\beamer@@@temp% \ifbeamer@localanotherslide\global\beamer@localanotherslidetrue\fi}% }% } % Sets dowhat to doif, if \beamer@slideinframe is in the specified % interval. Example: 5-7,-3,9,11,13- would mean pages % 1,2,3,5,6,7,9,11,13,14,15,16,... % % As a side effect, \@another is called whenever the there is a number % in the list that is larger than the current serialnumber \def\beamer@allsign{*} \def\beamer@decode{% \beamer@plusencounteredfalse% \global\beamer@minimum=10000\relax% \gdef\beamer@decaction{}% \gdef\beamer@decactionrev{}% \global\let\beamer@decodefound=\beamer@allsign% \beamer@@decodefind} \def\beamer@@decodefind#1|{% \beamer@ifnextchar\@undefined% get rid of spaces {\beamer@@@decodefind#1:|}{\beamer@@@decodefind#1:|}} \def\beamer@@@decodefind#1:#2|{% \beamer@ifempty{#2}% {\beamer@decodefind beamer:#1:}% {\beamer@decodefind #1:#2}} \def\beamer@default{default} \def\beamer@articlemode{article} \def\beamer@secondmode{second} \def\beamer@beamermode{beamer} \def\beamer@presentationmode{presentation} \def\beamer@modeall{all} \def\beamer@ovmodestop{stop} \def\beamer@decodefind#1:#2:{% \def\beamer@ovmode{#1}% \beameratdecodeaction{#2}% \expandafter\futurelet\expandafter\next\expandafter\beamer@checkcat\beamer@spec:% \expandafter\beamer@decodeplus\beamer@spec+:% \expandafter\beamer@decodedot\beamer@spec.:% \ifx\beamer@ovmode\beamer@ovmodestop% \expandafter\beamer@@decode\beamer@decodefound,!% \let\beamer@next=\relax% \ifbeamer@plusencountered\global\advance\c@beamerpauses by1\relax\fi% \else \ifx\beamer@ovmode\beamer@currentmode% \beamer@@decodefound% \else% \ifx\beamer@ovmode\beamer@modeall% \beamer@@decodefound% \else% \ifx\beamer@ovmode\beamer@presentationmode% \ifx\beamer@currentmode\beamer@articlemode% \else% \beamer@@decodefound% \fi% \else% \ifx\beamer@ovmode\beamer@beamermode% \ifx\beamer@currentmode\beamer@secondmode% \beamer@@decodefound% \fi% \fi% \fi% \fi% \fi% \let\beamer@next=\beamer@@decodefind% \fi% \beamer@next} \def\beamer@checkcat#1:{% \ifcat\next a% \gdef\beamer@ovmode{#1}% \ifx\beamer@decodefound\beamer@allsign \gdef\beamer@decodefound{0}% \fi% \gdef\beamer@spec{1-}% \fi% } \def\beamer@@decodefound{% \ifx\beamer@action\beamer@default% \expandafter\gdef\expandafter\beamer@decodefound\expandafter{\beamer@spec}% \else \xdef\beamer@decaction{\beamer@decaction{\beamer@action<\beamer@spec>}} \xdef\beamer@decactionrev{{\beamer@action}\beamer@decactionrev} \fi} \def\beamer@currentaction{default} { \makeatother \gdef\beameratdecodeaction#1{% \beameratdecodeactionb#1@:} \gdef\beameratdecodeactionb#1@#2:{% \beameratdecodeactionc{#1}{#2}} \gdef\beameratgetridofat#1@{% \gdef\beameratspec{#1}% } } \def\beameratdecodeactionc#1#2{% \gdef\beamer@spec{#2}% \ifx\beamer@spec\@empty% \xdef\beamer@spec{#1}% \gdef\beamer@action{default}% \else% \xdef\beamer@action{#1}% \beameratgetridofat#2% \xdef\beamer@spec{\beameratspec} \fi% } \def\beamer@decodeplus{% \def\beamer@spec{}\beamer@@decodeplus} \def\beamer@@decodeplus#1+#2:{% \edef\beamer@spec{\beamer@spec#1}% everything up to first + \beamer@ifempty{#2}{} {% ok, check if followed by number: \beamer@plusencounteredtrue% \beamer@@@decodeplus#2:}} \def\beamer@@@decodeplus{% \beamer@ifnextchar({\beamer@relnumber}{\beamer@relnumber(0)}} \def\beamer@relnumber(#1){% \beamer@plusencounteredtrue% \beamer@tempcount=#1\relax \advance\beamer@tempcount by\c@beamerpauses\relax% \edef\beamer@spec{\beamer@spec\the\beamer@tempcount}% \beamer@@decodeplus} \def\beamer@decodedot{% \def\beamer@spec{}\beamer@@decodedot} \def\beamer@@decodedot#1.#2:{% \edef\beamer@spec{\beamer@spec#1}% everything up to first . \beamer@ifempty{#2}{}{\beamer@@@decodedot#2:}} \def\beamer@@@decodedot{% \beamer@ifnextchar({\beamer@relnumberdot}{\beamer@relnumberdot(0)}} \def\beamer@relnumberdot(#1){% \beamer@tempcount=#1\relax \advance\beamer@tempcount by\c@beamerpauses\relax% \advance\beamer@tempcount by-1\relax% \edef\beamer@spec{\beamer@spec\the\beamer@tempcount}% \beamer@@decodedot} \def\beamer@doifnotinframe{} \def\beamer@@decode{% \beamer@ifnextchar!% {\beamer@decodeend}% {% \beamer@ifnextchar*% {\beamer@decodeall}{% \beamer@ifnextchar-% {\beamer@decodeuntil}% {\beamer@decodenumber}}}} \def\beamer@decodeend!{} \def\beamer@decodeall*,{% \ifnum1<\beamer@minimum\global\beamer@minimum=1\fi% \ifnum1>\beamer@slideinframe% \global\beamer@anotherslidetrue% \beamer@localanotherslidetrue% \fi% \gdef\beamer@doifnotinframe{\beamer@doifinframe}\beamer@@decode} \def\beamer@decodeuntil-#1,{% \ifnum1<\beamer@minimum\global\beamer@minimum=1\fi% \ifnum#1>\beamer@slideinframe\global\beamer@anotherslidetrue\beamer@localanotherslidetrue\fi% \ifnum\beamer@slideinframe>#1\else\gdef\beamer@doifnotinframe{\beamer@doifinframe}\fi% \beamer@@decode} \def\beamer@decodenumber#1{% \beamer@ifnextchar,% {\beamer@decodeone{#1}}% {\beamer@ifnextchar-% {\beamer@decodenumberto{#1}}% {\beamer@decodegobble{#1}}}} \def\beamer@decodegobble#1#2{% \beamer@decodenumber{#1#2}} \def\beamer@decodenumberto#1-{ \beamer@ifnextchar,% {\beamer@decodeto{#1}}% {\beamer@decodebetween{#1}}} \def\beamer@decodeto#1,{% \ifnum#1<\beamer@minimum\global\beamer@minimum=#1\fi% \ifnum#1>\beamer@slideinframe\global\beamer@anotherslidetrue\beamer@localanotherslidetrue\fi% \ifnum#1>\beamer@slideinframe\else\gdef\beamer@doifnotinframe{\beamer@doifinframe}\fi% \beamer@@decode} \def\beamer@decodebetween#1#2,{% \ifnum#1<\beamer@minimum\global\beamer@minimum=#1\fi% \ifnum#1>\beamer@slideinframe\global\beamer@anotherslidetrue\beamer@localanotherslidetrue\fi% \ifnum#2>\beamer@slideinframe\global\beamer@anotherslidetrue\beamer@localanotherslidetrue\fi% \ifnum#1>\beamer@slideinframe\else\ifnum#2<\beamer@slideinframe\else\gdef\beamer@doifnotinframe{\beamer@doifinframe}\fi\fi% \beamer@@decode} \def\beamer@decodeone#1,{% \ifnum#1<\beamer@minimum\global\beamer@minimum=#1\fi% \ifnum#1>\beamer@slideinframe\global\beamer@anotherslidetrue\beamer@localanotherslidetrue\fi% \ifnum#1=\beamer@slideinframe\gdef\beamer@doifnotinframe{\beamer@doifinframe}\fi% \beamer@@decode} \def\beamer@donow{\beamer@doifnotinframe} \def\beamer@saveanother{\let\beamer@savedif=\ifbeamer@anotherslide} \def\beamer@restoreanother{\global\let\ifbeamer@anotherslide=\beamer@savedif} beamer/base/beamerbaseframecomponents.sty0000644000175000017500000002703112050430504020537 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % Copyright 2011 by Vedran Mileti\'c, Joseph Wright % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbaseframecomponents.sty,v dcd846607320 2012/09/13 20:41:01 joseph $ \mode % % Setting the left and right margin % % \beamer@leftmargin=1cm \beamer@rightmargin=1cm \newif\ifbeamer@dogeometry \define@key{beamer@margin}{text margin left}{\beamer@leftmargin=#1\beamer@dogeometrytrue} \define@key{beamer@margin}{text margin right}{\beamer@rightmargin=#1\beamer@dogeometrytrue} \define@key{beamer@margin}{sidebar width left}{\beamer@leftsidebar=#1\beamer@dogeometrytrue} \define@key{beamer@margin}{sidebar width right}{\beamer@rightsidebar=#1\beamer@dogeometrytrue} \newcommand{\setbeamersize}[1]{% \beamer@dogeometryfalse% \setkeys{beamer@margin}{#1}% \ifbeamer@dogeometry% % Reset left margin now \beamer@tempdim=\beamer@leftmargin% \advance\beamer@tempdim by\beamer@leftsidebar% \geometry{left=\the\beamer@tempdim}% % Reset right margin now \beamer@tempdim=\beamer@rightmargin% \advance\beamer@tempdim by\beamer@rightsidebar% \geometry{right=\the\beamer@tempdim}% \fi% } \mode
{ \newcommand{\setbeamersize}[1]{} } % Constructing a frame: \let\@mkboth\@gobbletwo \def\ps@navigation{ \def\@oddhead{% \begingroup% \setbox\beamer@tempbox=\hbox{\usebeamertemplate***{background canvas}\hyper@pagetransition\hyper@pageduration}% \beamer@tempdim=\ht\beamer@tempbox% \setbox\beamer@tempbox=\hbox{\lower\beamer@tempdim\hbox{\box\beamer@tempbox}}% \wd\beamer@tempbox=0pt\ht\beamer@tempbox=0pt\dp\beamer@tempbox=0pt% \setbox\@tempboxa=\hbox{\usebeamertemplate***{background}}% \beamer@tempdim=\ht\@tempboxa% \setbox\@tempboxa=\hbox{\lower\beamer@tempdim\hbox{\box\@tempboxa}}% \wd\@tempboxa=0pt\ht\@tempboxa=0pt\dp\@tempboxa=0pt% \vbox{\hbox{\hskip-\Gm@lmargin\box\beamer@tempbox\box\@tempboxa}% \hbox{% {% \setbox\beamer@tempbox=\hbox{\hskip-\Gm@lmargin% {\setbox\beamer@tempbox=\hbox{\vbox to \sidebarheight{% \usebeamercolor*{sidebar left}% \usebeamertemplate{sidebar canvas left}% \vss% }}% \wd\beamer@tempbox=0pt\ht\beamer@tempbox=0pt\dp\beamer@tempbox=0pt% \box\beamer@tempbox}% {% \vbox to \sidebarheight{% \usebeamertemplate***{sidebar left}% \vfil% }}}% \beamer@tempdim=\ht\beamer@tempbox% \setbox\beamer@tempbox=\hbox{{\lower\beamer@tempdim\hbox{\box\beamer@tempbox}}}% \wd\beamer@tempbox=0pt\ht\beamer@tempbox=0pt\dp\beamer@tempbox=0pt% \box\beamer@tempbox% }% {% print right sidebar first, since it should be overwritten by headline \setbox\beamer@tempbox=\hbox{\hskip\textwidth\hskip\beamer@rightmargin% {\setbox\beamer@tempbox=\hbox{\vbox to \sidebarheight{% \usebeamercolor*{sidebar right}% \usebeamertemplate{sidebar canvas right}% \vss% }}% \wd\beamer@tempbox=0pt\ht\beamer@tempbox=0pt\dp\beamer@tempbox=0pt% \box\beamer@tempbox}% {% \vbox to \sidebarheight{% \usebeamertemplate***{sidebar right}% \vfil% }}}% \beamer@tempdim=\ht\beamer@tempbox% \setbox\beamer@tempbox=\hbox{{\lower\beamer@tempdim\hbox{\box\beamer@tempbox}}}% \wd\beamer@tempbox=0pt\ht\beamer@tempbox=0pt\dp\beamer@tempbox=0pt% \box\beamer@tempbox% }% \beamer@typesetheadorfoot{headline}% }% \hfil}% \endgroup} \def\@oddfoot{\vbox{\offinterlineskip\hbox{\beamer@typesetheadorfoot{footline}% \hypertarget{Navigation\the\c@page}{}% \hypertarget{page.\the\c@page}{}\hfil}\hbox{}}\hfil} \let\@evenhead\@oddhead \let\@evenfoot\@oddfoot} \pagestyle{navigation} \def\beamer@typesetheadorfoot#1{% typeset the head or footline {\parskip0pt\offinterlineskip% \hbox{% \hskip-\Gm@lmargin% \hbox{% \vbox{% \@tempdima=\textwidth% \textwidth=\paperwidth% \hsize=\textwidth% \def\\{,}% \usebeamertemplate***{#1}% }}% \hskip-\Gm@rmargin% }}\hfil% } % % Patch empty page style, so that transitions and navigation still works % \def\ps@empty{% \let\@mkboth\@gobbletwo% \def\@oddhead{\begingroup% \setbox\beamer@tempbox=\hbox{\usebeamertemplate***{background canvas}\hyper@pagetransition\hyper@pageduration}% \beamer@tempdim=\ht\beamer@tempbox% \setbox\beamer@tempbox=\hbox{\lower\beamer@tempdim\hbox{\box\beamer@tempbox}}% \wd\beamer@tempbox=0pt\ht\beamer@tempbox=0pt\dp\beamer@tempbox=0pt% \setbox\@tempboxa=\hbox{\usebeamertemplate***{background}}% \beamer@tempdim=\ht\@tempboxa% \setbox\@tempboxa=\hbox{\lower\beamer@tempdim\hbox{\box\@tempboxa}}% \wd\@tempboxa=0pt\ht\@tempboxa=0pt\dp\@tempboxa=0pt% \vbox{\hbox{\hskip-\Gm@lmargin\raise\headheight\box\beamer@tempbox\box\@tempboxa}\hfil}% \endgroup% } \def\@oddfoot{\normalcolor{\hypertarget{Navigation\the\c@page}{}\hfil% \setbox\beamer@tempbox=\hbox{\usebeamertemplate***{navigation symbols}\hskip-\Gm@rmargin\hskip2pt}% \ht\beamer@tempbox=0pt% \dp\beamer@tempbox=0pt% \box\beamer@tempbox}} \let\@evenhead\@oddhead\let\@evenfoot\@oddfoot} \def\beamer@calculateheadfoot{% \setbox\beamer@tempbox=\hbox{{\beamer@typesetheadorfoot{footline}}}% \footheight=\ht\beamer@tempbox% \advance\footheight by \dp\beamer@tempbox% \advance\footheight by 4pt% \setbox\beamer@tempbox=\hbox{{\beamer@typesetheadorfoot{headline}}}% \headheight=\ht\beamer@tempbox% \headdp=\dp\beamer@tempbox% \advance\headheight by\headdp% \sidebarheight=\paperheight% \advance\sidebarheight by-\headheight% \advance\sidebarheight by\headdp% \advance\sidebarheight by-\footheight% \advance\sidebarheight by 4pt% \footskip=\footheight% \textheight=\paperheight% \advance\textheight by-\footheight% \advance\textheight by-\headheight% \@colht\textheight% \@colroom\textheight% \vsize\textheight% } \def\insertpagenumber{\thepage} % % % Columns % % \define@key{beamer@col}{onlytextwidth}[true]{% \def\beamer@colentrycode{\hbox to\textwidth\bgroup\ignorespaces}% \def\beamer@colexitcode{\unskip\egroup}} \define@key{beamer@col}{totalwidth}{% \def\beamer@colentrycode{\hbox to#1\bgroup\ignorespaces}% \def\beamer@colexitcode{\unskip\egroup}} \define@key{beamer@col}{c}[true]{\def\beamer@colmode{c}\def\beamer@colalign{c}\def\beamer@colheadskip{}} \define@key{beamer@col}{t}[true]{\def\beamer@colmode{t}\def\beamer@colalign{t}\def\beamer@colheadskip{}} \define@key{beamer@col}{T}[true]{\def\beamer@colmode{T}\def\beamer@colalign{t}\def\beamer@colheadskip{\vskip-1ex\nointerlineskip}} \define@key{beamer@col}{b}[true]{\def\beamer@colmode{b}\def\beamer@colalign{b}\def\beamer@colheadskip{}} \newenvironment<>{columns}[1][]{% \begin{actionenv}#2% \def\beamer@colentrycode{% \hbox to\textwidth\bgroup% \leavevmode% \hskip-\beamer@leftmargin% \nobreak% \beamer@tempdim=\textwidth% \advance\beamer@tempdim by\beamer@leftmargin% \advance\beamer@tempdim by\beamer@rightmargin% \hbox to\beamer@tempdim\bgroup% \hbox{}\hfill\ignorespaces}% \def\beamer@colexitcode{\egroup% \nobreak% \hskip-\beamer@rightmargin\egroup}% \ifbeamer@centered\setkeys{beamer@col}{c}\else\setkeys{beamer@col}{t}\fi% \setkeys{beamer@col}{#1}% \par% \beamer@colentrycode% \def\beamer@colclose{}\ignorespaces}% {\beamer@colclose\def\beamer@colclose{}\beamer@colexitcode\end{actionenv}}% \mode
{ % do sth. more intelligent in the future \newenvironment<>{columns}[1][]{}{} } % % % Column command/environment % % \mode { \def\beamer@columnname{column} \def\column{% \ifx\@currenvir\beamer@columnname% \let\beamer@next=\beamer@columnenv% \else% \let\beamer@next=\beamer@columncom% \fi% \beamer@next} } \newenvironment<>{beamer@columnenv}[2][\beamer@colmode]{% \beamer@colclose\def\beamer@colclose{}% \begin{actionenv}#3% \setkeys{beamer@col}{#1}% \begin{minipage}[\beamer@colalign]{#2}% \leavevmode\raggedright\beamer@colheadskip\ignorespaces} {\end{minipage}\hfill\end{actionenv}\@ignoretrue} \let\endcolumn\endbeamer@columnenv \newcommand<>\beamer@columncom[2][\beamer@colmode]{% \beamer@colclose% \def\beamer@colclose{\end{minipage}\hfill\end{actionenv}\ignorespaces}% \begin{actionenv}#3% \setkeys{beamer@col}{#1}% \begin{minipage}[\beamer@colalign]{#2}% \leavevmode\raggedright\beamer@colheadskip\ignorespaces} \mode
{ \newenvironment<>{beamer@columnenv}[2][]{}{} \newcommand<>{\beamer@columncom}[2][]{} } % % % Footnotes % % \def\@makefnmark{\hbox{\@textsuperscript{{\usebeamercolor[fg]{footnote mark}\usebeamerfont*{footnote mark}\@thefnmark}}}} \def\@makefntext#1{% \def\insertfootnotetext{#1}% \def\insertfootnotemark{\@makefnmark}% \usebeamertemplate***{footnote}} \newbox\beamer@footins \newcommand<>\beamer@framefootnotetext[1]{% \global\setbox\beamer@footins\vbox{% \hsize\framewidth \textwidth\hsize \columnwidth\hsize \unvbox\beamer@footins \reset@font\footnotesize \@parboxrestore \protected@edef\@currentlabel {\csname p@footnote\endcsname\@thefnmark}% \color@begingroup \uncover#2{\@makefntext{% \rule\z@\footnotesep\ignorespaces#1\@finalstrut\strutbox}}% \color@endgroup}} \renewcommand<>\@mpfootnotetext[1]{% \global\setbox\@mpfootins\vbox{% \unvbox\@mpfootins \reset@font\footnotesize \hsize0.85\paperwidth \@parboxrestore \protected@edef\@currentlabel {\csname p@mpfootnote\endcsname\@thefnmark}% \color@begingroup \uncover#2{\@makefntext{% \rule\z@\footnotesep\ignorespaces#1\@finalstrut\strutbox}}% \color@endgroup}} \let\@footnotetext=\beamer@framefootnotetext \define@key{beamerfootnote}{frame}[true]{% \let\beamer@footnotetext=\beamer@framefootnotetext% \def\beamer@mpfn{footnote}% \def\beamer@thempfn{\thefootnote}} \renewcommand<>{\footnote}[1][]{% \let\beamer@footnotetext=\@footnotetext% \let\beamer@mpfn=\@mpfn% \let\beamer@thempfn=\thempfn% \let\beamer@kvorig=\KV@errx% \def\beamer@footarg{}% \def\KV@errx##1{\edef\beamer@footarg{\@tempa}}% \setkeys{beamerfootnote}{#1}% \let\KV@errx=\beamer@kvorig% \ifx\beamer@footarg\@empty% \def\beamer@next{\stepcounter\beamer@mpfn \protected@xdef\@thefnmark{\beamer@thempfn}% \@footnotemark\beamer@footnotetext#2}% \else% \def\beamer@next{% \begingroup \csname c@\beamer@mpfn\endcsname\beamer@footarg\relax \unrestored@protected@xdef\@thefnmark{\beamer@thempfn}% \endgroup \@footnotemark\beamer@footnotetext#2}% \fi% \beamer@next} \mode
{ \define@key{beamerfootnote}{frame}[true]{} \let\beamer@origfootnote=\footnote \renewcommand\footnote[1][]{% \let\beamer@kvorig=\KV@errx% \def\beamer@footarg{}% \def\KV@errx##1{\edef\beamer@footarg{\@tempa}}% \setkeys{beamerfootnote}{#1}% \let\KV@errx=\beamer@kvorig% \ifx\beamer@footarg\@empty% \edef\beamer@next{\noexpand\beamer@origfootnote}% \else% \edef\beamer@next{\noexpand\beamer@origfootnote[\beamer@footarg]}% \fi% \beamer@next} } \mode beamer/base/translator/0000755000175000017500000000000012050430506014757 5ustar mohuramohurabeamer/base/translator/translator-language-mappings.tex0000644000175000017500000001171312050430504023270 0ustar mohuramohura% Copyright 2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the documentation file for more details. \def\trans@use@and@alias#1#2{% \uselanguage{#2}% \languagealias{#1}{#2}% } \DeclareOption{acadian} {\trans@use@and@alias{french} {Acadian,French}} \DeclareOption{afrikaans} {\trans@use@and@alias{afrikaans} {Afrikaans,Dutch}} \DeclareOption{american} {\trans@use@and@alias{american} {AmericanEnglish,English}} \DeclareOption{austrian} {\trans@use@and@alias{austrian} {Austrian1997,Austrian,German1997,German}} \DeclareOption{bahasa} {\trans@use@and@alias{bahasa} {Bahasa}} \DeclareOption{basque} {\trans@use@and@alias{basque} {Basque}} \DeclareOption{brazil} {\trans@use@and@alias{brazil} {Brazilian,Portuguese}} \DeclareOption{brazilian} {\trans@use@and@alias{brazilian} {Brazilian,Portuguese}} \DeclareOption{breton} {\trans@use@and@alias{breton} {Breton}} \DeclareOption{british} {\trans@use@and@alias{british} {BritishEnglish,English}} \DeclareOption{bulgarian} {\trans@use@and@alias{bulgarian} {Bulgarian}} \DeclareOption{canadian} {\trans@use@and@alias{canadian} {Canadian,English}} \DeclareOption{canadien} {\trans@use@and@alias{canadien} {Canadien,French}} \DeclareOption{catalan} {\trans@use@and@alias{catalan} {Catalan}} \DeclareOption{croatian} {\trans@use@and@alias{croatian} {Croatian}} \DeclareOption{czech} {\trans@use@and@alias{czech} {Czech}} \DeclareOption{danish} {\trans@use@and@alias{danish} {Danish}} \DeclareOption{dutch} {\trans@use@and@alias{dutch} {Dutch}} \DeclareOption{english} {\trans@use@and@alias{english} {English}} \DeclareOption{esperanto} {\trans@use@and@alias{esperaton} {Esperanto}} \DeclareOption{estonian} {\trans@use@and@alias{estonian} {Estonian}} \DeclareOption{finnish} {\trans@use@and@alias{finnish} {Finnish}} \DeclareOption{francais} {\trans@use@and@alias{french} {French}} \DeclareOption{frenchb} {\trans@use@and@alias{french} {French}} \DeclareOption{french} {\trans@use@and@alias{french} {French}} \DeclareOption{galician} {\trans@use@and@alias{galician} {Galician}} \DeclareOption{german} {\trans@use@and@alias{german} {German1997,German}} \DeclareOption{germanb} {\trans@use@and@alias{german} {German1997,German}} \DeclareOption{greek} {\trans@use@and@alias{greek} {Greek}} \DeclareOption{polutonikogreek}{\trans@use@and@alias{greek} {Polutoniko,Greek}} \DeclareOption{hebrew} {\trans@use@and@alias{hebrew} {Hebrew}} \DeclareOption{hungarian} {\trans@use@and@alias{hungarian} {Hungarian}} \DeclareOption{icelandic} {\trans@use@and@alias{icelandic} {Icelandic}} \DeclareOption{irish} {\trans@use@and@alias{irish} {Irish}} \DeclareOption{italian} {\trans@use@and@alias{italian} {Italian}} \DeclareOption{latin} {\trans@use@and@alias{latin} {Latin}} \DeclareOption{lowersorbian} {\trans@use@and@alias{lsorbian} {LowerSorbian,Sorbian}} \DeclareOption{magyar} {\trans@use@and@alias{magyar} {Magyar}} \DeclareOption{naustrian} {\trans@use@and@alias{naustrian} {Austrian,German}} \DeclareOption{ngerman} {\trans@use@and@alias{ngerman} {German}} \DeclareOption{norsk} {\trans@use@and@alias{norsk} {Norsk}} \DeclareOption{samin} {\trans@use@and@alias{samin} {Samin}} \DeclareOption{nynorsk} {\trans@use@and@alias{nynorsk} {Nynorsk,Norsk}} \DeclareOption{polish} {\trans@use@and@alias{polish} {Polish}} \DeclareOption{portuges} {\trans@use@and@alias{portuges} {Portuguese}} \DeclareOption{portuguese} {\trans@use@and@alias{portuguese}{portuguese}} \DeclareOption{romanian} {\trans@use@and@alias{romanian} {Romanian}} \DeclareOption{russian} {\trans@use@and@alias{russian} {Russian}} \DeclareOption{scottish} {\trans@use@and@alias{scottish} {Scottish}} \DeclareOption{serbian} {\trans@use@and@alias{serbian} {Serbian}} \DeclareOption{slovak} {\trans@use@and@alias{slovak} {Slovak}} \DeclareOption{slovene} {\trans@use@and@alias{slovene} {Slovene}} \DeclareOption{spanish} {\trans@use@and@alias{spanish} {Spanish}} \DeclareOption{swedish} {\trans@use@and@alias{swedish} {Swedish}} \DeclareOption{turkish} {\trans@use@and@alias{turkish} {Turkish}} \DeclareOption{ukrainian} {\trans@use@and@alias{ukrainian} {Ukrainian}} \DeclareOption{uppersorbian} {\trans@use@and@alias{usorbian} {UpperSorbian,Sorbian}} \DeclareOption{welsh} {\trans@use@and@alias{welsh} {Welsh}} \DeclareOption{UKenglish} {\trans@use@and@alias{UKenglish} {BritishEnglish,English}} \DeclareOption{USenglish} {\trans@use@and@alias{USenglish} {AmericanEnglish,English}} \ProcessOptions* beamer/base/translator/dicts/0000755000175000017500000000000012050430506016065 5ustar mohuramohurabeamer/base/translator/dicts/translator-months-dictionary/0000755000175000017500000000000012050430506023727 5ustar mohuramohura././@LongLink0000000000000000000000000000014600000000000011566 Lustar rootrootbeamer/base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Brazilian.dictbeamer/base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Brazilian.dic0000644000175000017500000000105212050430506034161 0ustar mohuramohura% translated by Miguel Frasson \ProvidesDictionary{translator-month-dictionary}{brazil} \providetranslation{January}{Janeiro} \providetranslation{February}{Fevereiro} \providetranslation{March}{Mar\c co} \providetranslation{April}{Abril} \providetranslation{May}{Maio} \providetranslation{June}{Junho} \providetranslation{July}{Julho} \providetranslation{August}{Agosto} \providetranslation{September}{Setembro} \providetranslation{October}{Outubro} \providetranslation{November}{Novembro} \providetranslation{December}{Dezembro} beamer/base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Nynorsk.dict0000644000175000017500000000247212050430506034104 0ustar mohuramohura\ProvidesDictionary{translator-months-dictionary}{Nynorsk} \providetranslation{January}{januar} \providetranslation{February}{februar} \providetranslation{March}{mars} \providetranslation{April}{april} \providetranslation{May}{mai} \providetranslation{June}{juni} \providetranslation{July}{juli} \providetranslation{August}{august} \providetranslation{September}{september} \providetranslation{October}{oktober} \providetranslation{November}{november} \providetranslation{December}{desember} \providetranslation{Jan}{jan} \providetranslation{Feb}{feb} \providetranslation{Mar}{mar} \providetranslation{Apr}{apr} \providetranslation{May}{mai} \providetranslation{Jun}{jun} \providetranslation{Jul}{jul} \providetranslation{Aug}{aug} \providetranslation{Sep}{sep} \providetranslation{Oct}{okt} \providetranslation{Nov}{nov} \providetranslation{Dec}{des} \providetranslation{Monday}{m{\aa}ndag} \providetranslation{Tuesday}{tysdag} \providetranslation{Wednesday}{onsdag} \providetranslation{Thursday}{torsdag} \providetranslation{Friday}{fredag} \providetranslation{Saturday}{laurdag} \providetranslation{Sunday}{s{\o}ndag} \providetranslation{Mon}{man} \providetranslation{Tue}{tys} \providetranslation{Wed}{ons} \providetranslation{Thu}{tor} \providetranslation{Fri}{fre} \providetranslation{Sat}{lau} \providetranslation{Sun}{s{\o}n} beamer/base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Norsk.dict0000644000175000017500000000247212050430506033535 0ustar mohuramohura\ProvidesDictionary{translator-months-dictionary}{Norsk} \providetranslation{January}{januar} \providetranslation{February}{februar} \providetranslation{March}{mars} \providetranslation{April}{april} \providetranslation{May}{mai} \providetranslation{June}{juni} \providetranslation{July}{juli} \providetranslation{August}{august} \providetranslation{September}{september} \providetranslation{October}{oktober} \providetranslation{November}{november} \providetranslation{December}{desember} \providetranslation{Jan}{jan} \providetranslation{Feb}{feb} \providetranslation{Mar}{mar} \providetranslation{Apr}{apr} \providetranslation{May}{mai} \providetranslation{Jun}{jun} \providetranslation{Jul}{jul} \providetranslation{Aug}{aug} \providetranslation{Sep}{sep} \providetranslation{Oct}{okt} \providetranslation{Nov}{nov} \providetranslation{Dec}{des} \providetranslation{Monday}{mandag} \providetranslation{Tuesday}{tirsdag} \providetranslation{Wednesday}{onsdag} \providetranslation{Thursday}{torsdag} \providetranslation{Friday}{fredag} \providetranslation{Saturday}{l{\o}rdag} \providetranslation{Sunday}{s{\o}ndag} \providetranslation{Mon}{man} \providetranslation{Tue}{tir} \providetranslation{Wed}{ons} \providetranslation{Thu}{tor} \providetranslation{Fri}{fre} \providetranslation{Sat}{l{\o}r} \providetranslation{Sun}{s{\o}n} beamer/base/translator/dicts/translator-months-dictionary/translator-months-dictionary-French.dict0000644000175000017500000000076112050430506033645 0ustar mohuramohura\ProvidesDictionary{translator-month-dictionary}{French} \providetranslation{January}{Janvier} \providetranslation{February}{F\'evrier} \providetranslation{March}{Mars} \providetranslation{April}{Avril} \providetranslation{May}{Mai} \providetranslation{June}{Juin} \providetranslation{July}{Juillet} \providetranslation{August}{Ao\^ut} \providetranslation{September}{Septembre} \providetranslation{October}{Octobre} \providetranslation{November}{Novembre} \providetranslation{December}{Decembre} beamer/base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Spanish.dict0000644000175000017500000000247212050430506034046 0ustar mohuramohura\ProvidesDictionary{translator-months-dictionary}{Spanish} \providetranslation{January}{Enero} \providetranslation{February}{Febrero} \providetranslation{March}{Marzo} \providetranslation{April}{Abril} \providetranslation{May}{Mayo} \providetranslation{June}{Junio} \providetranslation{July}{Julio} \providetranslation{August}{Agosto} \providetranslation{September}{Septiembre} \providetranslation{October}{Octubre} \providetranslation{November}{Noviembre} \providetranslation{December}{Diciembre} \providetranslation{Jan}{Ene} \providetranslation{Feb}{Feb} \providetranslation{Mar}{Mar} \providetranslation{Apr}{Abr} \providetranslation{May}{May} \providetranslation{Jun}{Jun} \providetranslation{Jul}{Jul} \providetranslation{Aug}{Ago} \providetranslation{Sep}{Sep} \providetranslation{Oct}{Oct} \providetranslation{Nov}{Nov} \providetranslation{Dec}{Dec} \providetranslation{Monday}{Lunes} \providetranslation{Tuesday}{Martes} \providetranslation{Wednesday}{Miércoles} \providetranslation{Thursday}{Jueves} \providetranslation{Friday}{Viernes} \providetranslation{Saturday}{Sábado} \providetranslation{Sunday}{Domingo} \providetranslation{Mon}{Lun} \providetranslation{Tue}{Mar} \providetranslation{Wed}{Mie} \providetranslation{Thu}{Jue} \providetranslation{Fri}{Vie} \providetranslation{Sat}{Sab} \providetranslation{Sun}{Dom} beamer/base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Greek.dict0000644000175000017500000000303512050430506033472 0ustar mohuramohura% Antonis Tsolomitis % University of the Aegean % Department of Mathematics % Laboratory of Digital Typography % and Mathematical Applications % 83200 Karlovassi, Samos % Greece \ProvidesDictionary{translator-months-dictionary}{Greek} \providetranslation{January}{Ianouar'iou} \providetranslation{February}{Febrouar'iou} \providetranslation{March}{Mart'iou} \providetranslation{April}{April'iou} \providetranslation{May}{Ma'"iou} \providetranslation{June}{Ioun'iou} \providetranslation{July}{Ioul'iou} \providetranslation{August}{Augo'ustou} \providetranslation{September}{Septembr'iou} \providetranslation{October}{Oktwbr'iou} \providetranslation{November}{Noembr'iou} \providetranslation{December}{Dekembr'iou} \providetranslation{Jan}{Ian} \providetranslation{Feb}{Feb} \providetranslation{Mar}{Mar} \providetranslation{Apr}{Apr} \providetranslation{May}{M'ai} \providetranslation{Jun}{Io'un} \providetranslation{Jul}{Io'ul} \providetranslation{Aug}{A'ug} \providetranslation{Sep}{Sep} \providetranslation{Oct}{Okt} \providetranslation{Nov}{Noe} \providetranslation{Dec}{Dek} \providetranslation{Monday}{Deut'era} \providetranslation{Tuesday}{Tr'ith} \providetranslation{Wednesday}{Tet'arth} \providetranslation{Thursday}{P'empth} \providetranslation{Friday}{Parasku'h} \providetranslation{Saturday}{S'abbato} \providetranslation{Sunday}{Kuriak'h} \providetranslation{Mon}{Deut} \providetranslation{Tue}{Tr} \providetranslation{Wed}{Tet} \providetranslation{Thu}{Pem} \providetranslation{Fri}{Par} \providetranslation{Sat}{Sab} \providetranslation{Sun}{Kur} beamer/base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Croatian.dict0000644000175000017500000000262112050430506034175 0ustar mohuramohura\ProvidesDictionary{translator-months-dictionary}{Croatian} %Translated by Vedran Mileti\'c \providetranslation{January}{sije\v{c}anj} \providetranslation{February}{velja\v{c}a} \providetranslation{March}{o\v{z}ujak} \providetranslation{April}{travanj} \providetranslation{May}{svibanj} \providetranslation{June}{lipanj} \providetranslation{July}{srpanj} \providetranslation{August}{kolovoz} \providetranslation{September}{rujan} \providetranslation{October}{listopad} \providetranslation{November}{studeni} \providetranslation{December}{prosinac} \providetranslation{Jan}{sij} \providetranslation{Feb}{velj} \providetranslation{Mar}{o\v zu} \providetranslation{Apr}{tra} \providetranslation{May}{svi} \providetranslation{Jun}{lip} \providetranslation{Jul}{srp} \providetranslation{Aug}{kol} \providetranslation{Sep}{ruj} \providetranslation{Oct}{lis} \providetranslation{Nov}{stu} \providetranslation{Dec}{pro} \providetranslation{Monday}{ponedjeljak} \providetranslation{Tuesday}{utorak} \providetranslation{Wednesday}{srijeda} \providetranslation{Thursday}{\v cetvrtak} \providetranslation{Friday}{petak} \providetranslation{Saturday}{subota} \providetranslation{Sunday}{nedjelja} \providetranslation{Mon}{pon} \providetranslation{Tue}{uto} \providetranslation{Wed}{sri} \providetranslation{Thu}{\v cet} \providetranslation{Fri}{pet} \providetranslation{Sat}{sub} \providetranslation{Sun}{ned} beamer/base/translator/dicts/translator-months-dictionary/translator-months-dictionary-German.dict0000644000175000017500000000246512050430506033654 0ustar mohuramohura\ProvidesDictionary{translator-months-dictionary}{German} \providetranslation{January}{Januar} \providetranslation{February}{Februar} \providetranslation{March}{M\"arz} \providetranslation{April}{April} \providetranslation{May}{Mai} \providetranslation{June}{Juni} \providetranslation{July}{Juli} \providetranslation{August}{August} \providetranslation{September}{September} \providetranslation{October}{Oktober} \providetranslation{November}{November} \providetranslation{December}{Dezember} \providetranslation{Jan}{Jan} \providetranslation{Feb}{Feb} \providetranslation{Mar}{M\"ar} \providetranslation{Apr}{Apr} \providetranslation{May}{Mai} \providetranslation{Jun}{Jun} \providetranslation{Jul}{Jul} \providetranslation{Aug}{Aug} \providetranslation{Sep}{Sep} \providetranslation{Oct}{Okt} \providetranslation{Nov}{Nov} \providetranslation{Dec}{Dez} \providetranslation{Monday}{Montag} \providetranslation{Tuesday}{Dienstag} \providetranslation{Wednesday}{Mittwoch} \providetranslation{Thursday}{Donnerstag} \providetranslation{Friday}{Freitag} \providetranslation{Saturday}{Samstag} \providetranslation{Sunday}{Sonntag} \providetranslation{Mon}{Mo} \providetranslation{Tue}{Di} \providetranslation{Wed}{Mi} \providetranslation{Thu}{Do} \providetranslation{Fri}{Fr} \providetranslation{Sat}{Sa} \providetranslation{Sun}{So} beamer/base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Polish.dict0000644000175000017500000000267312050430506033702 0ustar mohuramohura\ProvidesDictionary{translator-months-dictionary}{Polish} %Translated by Stanis\l{}aw Polak (http://www.icsr.agh.edu.pl/~polak/) \providetranslation{January}{Stycze\'{n}} \providetranslation{February}{Luty} \providetranslation{March}{Marzec} \providetranslation{April}{Kwiecie\'{n}} \providetranslation{May}{Maj} \providetranslation{June}{Czerwiec} \providetranslation{July}{Lipiec} \providetranslation{August}{Sierpie\'{n}} \providetranslation{September}{Wrzesie\'{n}} \providetranslation{October}{Pa\'{z}dziernik} \providetranslation{November}{Listopad} \providetranslation{December}{Grudzie\'{n}} \providetranslation{Jan}{Sty} \providetranslation{Feb}{Lut} \providetranslation{Mar}{Mar} \providetranslation{Apr}{Kwi} \providetranslation{May}{Maj} \providetranslation{Jun}{Cze} \providetranslation{Jul}{Lip} \providetranslation{Aug}{Sie} \providetranslation{Sep}{Wrz} \providetranslation{Oct}{Pa\'{z}} \providetranslation{Nov}{Lis} \providetranslation{Dec}{Gru} \providetranslation{Monday}{Poniedzia\l{}ek} \providetranslation{Tuesday}{Wtorek} \providetranslation{Wednesday}{\'{S}roda} \providetranslation{Thursday}{czwartek} \providetranslation{Friday}{Pi\k{a}tek} \providetranslation{Saturday}{Sobota} \providetranslation{Sunday}{Niedziela} \providetranslation{Mon}{Pon} \providetranslation{Tue}{Wto} \providetranslation{Wed}{\'{S}ro} \providetranslation{Thu}{Czw} \providetranslation{Fri}{Pi\k{a}} \providetranslation{Sat}{Sob} \providetranslation{Sun}{Nie} beamer/base/translator/dicts/translator-months-dictionary/translator-months-dictionary-English.dict0000644000175000017500000000247112050430506034031 0ustar mohuramohura\ProvidesDictionary{translator-months-dictionary}{English} \providetranslation{January}{January} \providetranslation{February}{February} \providetranslation{March}{March} \providetranslation{April}{April} \providetranslation{May}{May} \providetranslation{June}{June} \providetranslation{July}{July} \providetranslation{August}{August} \providetranslation{September}{September} \providetranslation{October}{October} \providetranslation{November}{November} \providetranslation{December}{December} \providetranslation{Jan}{Jan} \providetranslation{Feb}{Feb} \providetranslation{Mar}{Mar} \providetranslation{Apr}{Apr} \providetranslation{May}{May} \providetranslation{Jun}{Jun} \providetranslation{Jul}{Jul} \providetranslation{Aug}{Aug} \providetranslation{Sep}{Sep} \providetranslation{Oct}{Oct} \providetranslation{Nov}{Nov} \providetranslation{Dec}{Dec} \providetranslation{Monday}{Monday} \providetranslation{Tuesday}{Tuesday} \providetranslation{Wednesday}{Wednesday} \providetranslation{Thursday}{Thursday} \providetranslation{Friday}{Friday} \providetranslation{Saturday}{Saturday} \providetranslation{Sunday}{Sunday} \providetranslation{Mon}{Mon} \providetranslation{Tue}{Tue} \providetranslation{Wed}{Wed} \providetranslation{Thu}{Thu} \providetranslation{Fri}{Fri} \providetranslation{Sat}{Sat} \providetranslation{Sun}{Sun} beamer/base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Serbian.dict0000644000175000017500000000256412050430506034026 0ustar mohuramohura\ProvidesDictionary{translator-months-dictionary}{Serbian} %Translated by Zoran Filipovi\'c \providetranslation{January}{Januar} \providetranslation{February}{Februar} \providetranslation{March}{Mart} \providetranslation{April}{April} \providetranslation{May}{Maj} \providetranslation{June}{Jun} \providetranslation{July}{Jul} \providetranslation{August}{Avgust} \providetranslation{September}{Septembar} \providetranslation{October}{Oktobar} \providetranslation{November}{Novembar} \providetranslation{December}{Decembar} \providetranslation{Jan}{Jan} \providetranslation{Feb}{Feb} \providetranslation{Mar}{Mar} \providetranslation{Apr}{Apr} \providetranslation{May}{Maj} \providetranslation{Jun}{Jun} \providetranslation{Jul}{Jul} \providetranslation{Aug}{Avg} \providetranslation{Sep}{Sep} \providetranslation{Oct}{Okt} \providetranslation{Nov}{Nov} \providetranslation{Dec}{Dec} \providetranslation{Monday}{Ponedeljak} \providetranslation{Tuesday}{Utorak} \providetranslation{Wednesday}{Sreda} \providetranslation{Thursday}{\v Cetvrtak} \providetranslation{Friday}{Petak} \providetranslation{Saturday}{Subota} \providetranslation{Sunday}{Nedelja} \providetranslation{Mon}{Pon} \providetranslation{Tue}{Uto} \providetranslation{Wed}{Sre} \providetranslation{Thu}{\v Cet} \providetranslation{Fri}{Pet} \providetranslation{Sat}{Sub} \providetranslation{Sun}{Ned} beamer/base/translator/dicts/translator-bibliography-dictionary/0000755000175000017500000000000012050430506025072 5ustar mohuramohura././@LongLink0000000000000000000000000000015700000000000011570 Lustar rootrootbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-French.dictbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-F0000644000175000017500000000167112050430506034212 0ustar mohuramohura\ProvidesDictionary{translator-bibliography-dictionary}{French} \providetranslation{ed.}{ed.}%? \providetranslation{Editions}{\'Editions} \providetranslation{editions}{\'editions} \providetranslation{Edition}{\'Edition} \providetranslation{edition}{\'edition} \providetranslation{Editors}{\'Editeurs} \providetranslation{editors}{\'editeurs} \providetranslation{Editor}{\'Editeur} \providetranslation{editor}{\'editeur} \providetranslation{eds.}{eds.}%? \providetranslation{Extended edition}{\'Edition compl\'et\'ee}%? \providetranslation{extended edition}{\'edition compl\'et\'ee}%? \providetranslation{in (bibliography)}{dans} \providetranslation{In (bibliography)}{Dans} \providetranslation{Tech. Rep.}{Rap.\ Tech.} \providetranslation{Technical Reports}{Rapports techniques} \providetranslation{technical reports}{rapports technique} \providetranslation{Technical Report}{Rapport technique} \providetranslation{technical report}{rapport technique} ././@LongLink0000000000000000000000000000016000000000000011562 Lustar rootrootbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Serbian.dictbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-S0000644000175000017500000000174612050430506034232 0ustar mohuramohura\ProvidesDictionary{translator-bibliography-dictionary}{Serbian} %Translated by Zoran Filipovi\'c \providetranslation{ed.}{ed.} \providetranslation{Editions}{Edicije} \providetranslation{editions}{edicije} \providetranslation{Edition}{Edicija} \providetranslation{edition}{edicija} \providetranslation{Editors}{Urednici} \providetranslation{editors}{urednici} \providetranslation{Editor}{Urednik} \providetranslation{editor}{urednik} \providetranslation{eds.}{ur.} \providetranslation{Extended edition}{Produ\v zena edicija} \providetranslation{extended edition}{produ\v zena edicija} \providetranslation{in (bibliography)}{u} \providetranslation{In (bibliography)}{U} \providetranslation{Tech. Rep.}{Teh.\ Izv.} \providetranslation{Technical Reports}{Tehni\v cki Izve\v staji} \providetranslation{technical reports}{tehni\v cki izve\v staji} \providetranslation{Technical Report}{Tehni\v cki Izve\v staj} \providetranslation{technical report}{tehni\v cki izve\v staj} ././@LongLink0000000000000000000000000000015700000000000011570 Lustar rootrootbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-German.dictbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-G0000644000175000017500000000167012050430506034212 0ustar mohuramohura\ProvidesDictionary{translator-bibliography-dictionary}{German} \providetranslation{ed.}{Hrsg.} \providetranslation{Editions}{Auf"|lagen} \providetranslation{editions}{Auf"|lagen} \providetranslation{Edition}{Auf"|lage} \providetranslation{edition}{Auf"|lage} \providetranslation{Editors}{Herausgeber} \providetranslation{editors}{Herausgeber} \providetranslation{Editor}{Herausgeber} \providetranslation{editor}{Herausgeber} \providetranslation{eds.}{Hrsg.} \providetranslation{Extended edition}{Erweiterte Auf"|lage} \providetranslation{extended edition}{erweiterte Auf"|lage} \providetranslation{in (bibliography)}{in} \providetranslation{In (bibliography)}{In} \providetranslation{Tech. Rep.}{Tech.\ Bericht} \providetranslation{Technical Reports}{Technische Berichte} \providetranslation{technical reports}{Technische Berichte} \providetranslation{Technical Report}{Technischer Bericht} \providetranslation{technical report}{Technischer Bericht} ././@LongLink0000000000000000000000000000015600000000000011567 Lustar rootrootbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Greek.dictbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-G0000644000175000017500000000213512050430506034207 0ustar mohuramohura% Antonis Tsolomitis % University of the Aegean % Department of Mathematics % Laboratory of Digital Typography % and Mathematical Applications % 83200 Karlovassi, Samos % Greece \ProvidesDictionary{translator-bibliography-dictionary}{Greek} \providetranslation{ed.}{epim.} \providetranslation{Editions}{Ekd'oseic} \providetranslation{editions}{ekd'oseic} \providetranslation{Edition}{'Ekdosh} \providetranslation{edition}{'ekdosh} \providetranslation{Editors}{Epimelht'ec} \providetranslation{editors}{epimelht'ec} \providetranslation{Editor}{Epimelht'hc} \providetranslation{editor}{epimelht'hc} \providetranslation{eds.}{epim.} \providetranslation{Extended edition}{Epauxhm'enh 'ekdosh} \providetranslation{extended edition}{epauxhm'enh 'ekdosh} \providetranslation{in (bibliography)}{sto} \providetranslation{In (bibliography)}{Sto} \providetranslation{Tech. Rep.}{Teqn.\ Anaf.} \providetranslation{Technical Reports}{Teqnik'ec Anafor'ec} \providetranslation{technical reports}{teqnik'ec anafor'ec} \providetranslation{Technical Report}{Teqnik'h Anafor'a} \providetranslation{technical report}{teqnik'h anafor'a} ././@LongLink0000000000000000000000000000016200000000000011564 Lustar rootrootbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Brazilian.dictbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-B0000644000175000017500000000177012050430506034206 0ustar mohuramohura% translated by Miguel Frasson \ProvidesDictionary{translator-bibliography-dictionary}{brazil} \providetranslation{ed.}{ed.}%? \providetranslation{Editions}{Edi\c c\~oes} \providetranslation{editions}{edi\c c\~oes} \providetranslation{Edition}{Edi\c c\~ao} \providetranslation{edition}{edi\c c\~ao} \providetranslation{Editors}{Editores} \providetranslation{editors}{editores} \providetranslation{Editor}{Editor} \providetranslation{editor}{editor} \providetranslation{eds.}{eds.}%? \providetranslation{Extended edition}{Edi\c c\~ao estendida}%? \providetranslation{extended edition}{Edi\c c\~ao estendida}%? \providetranslation{in (bibliography)}{em} \providetranslation{In (bibliography)}{Em} \providetranslation{Tech. Rep.}{Relat. Tec.} \providetranslation{Technical Reports}{Relat\'orios T\'ecnicos} \providetranslation{technical reports}{relat\'orios t\'ecnicos} \providetranslation{Technical Report}{Relat\'orio T\'ecnico} \providetranslation{technical report}{relat\'orios t\'ecnicos} ././@LongLink0000000000000000000000000000016000000000000011562 Lustar rootrootbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-English.dictbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-E0000644000175000017500000000160712050430506034210 0ustar mohuramohura\ProvidesDictionary{translator-bibliography-dictionary}{English} \providetranslation{ed.}{ed.} \providetranslation{Editions}{Editions} \providetranslation{editions}{editions} \providetranslation{Edition}{Edition} \providetranslation{edition}{edition} \providetranslation{Editors}{Editors} \providetranslation{editors}{editors} \providetranslation{Editor}{Editor} \providetranslation{editor}{editor} \providetranslation{eds.}{eds.} \providetranslation{Extended edition}{Extended edition} \providetranslation{extended edition}{extended edition} \providetranslation{in (bibliography)}{in} \providetranslation{In (bibliography)}{In} \providetranslation{Tech. Rep.}{Tech.\ Rep.} \providetranslation{Technical Reports}{Technical Reports} \providetranslation{technical reports}{technical reports} \providetranslation{Technical Report}{Technical Report} \providetranslation{technical report}{technical report} ././@LongLink0000000000000000000000000000016000000000000011562 Lustar rootrootbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Spanish.dictbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-S0000644000175000017500000000162312050430506034224 0ustar mohuramohura\ProvidesDictionary{translator-bibliography-dictionary}{Spanish} \providetranslation{ed.}{ed.} \providetranslation{Editions}{Ediciones} \providetranslation{editions}{ediciones} \providetranslation{Edition}{Edición} \providetranslation{edition}{edición} \providetranslation{Editors}{Editores} \providetranslation{editors}{editores} \providetranslation{Editor}{Editor} \providetranslation{editor}{editor} \providetranslation{eds.}{eds.} \providetranslation{Extended edition}{Edición extendida} \providetranslation{extended edition}{edición extendida} \providetranslation{in (bibliography)}{en} \providetranslation{In (bibliography)}{En} \providetranslation{Tech. Rep.}{Inf.\ Téc.} \providetranslation{Technical Reports}{Informes Técnicos} \providetranslation{technical reports}{informes técnicos} \providetranslation{Technical Report}{Informe Técnico} \providetranslation{technical report}{informe técnico} ././@LongLink0000000000000000000000000000016100000000000011563 Lustar rootrootbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Croatian.dictbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-C0000644000175000017500000000175012050430506034205 0ustar mohuramohura\ProvidesDictionary{translator-bibliography-dictionary}{Croatian} %Translated by Vedran Mileti\'c \providetranslation{ed.}{izd.} \providetranslation{Editions}{Izdanja} \providetranslation{editions}{izdanja} \providetranslation{Edition}{Izdanje} \providetranslation{edition}{izdanje} \providetranslation{Editors}{Urednici} \providetranslation{editors}{urednici} \providetranslation{Editor}{Urednik} \providetranslation{editor}{urednik} \providetranslation{eds.}{ur.} \providetranslation{Extended edition}{Pro\v sireno izdanje} \providetranslation{extended edition}{pro\v sireno izdanje} \providetranslation{in (bibliography)}{u} \providetranslation{In (bibliography)}{U} \providetranslation{Tech. Rep.}{Tehn.\ Izv.} \providetranslation{Technical Reports}{Tehni\v cki Izvje\v staji} \providetranslation{technical reports}{tehni\v cki izvje\v staji} \providetranslation{Technical Report}{Tehni\v cki Izvje\v staj} \providetranslation{technical report}{tehni\v cki izvje\v staj} ././@LongLink0000000000000000000000000000015700000000000011570 Lustar rootrootbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Polish.dictbeamer/base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-P0000644000175000017500000000172712050430506034226 0ustar mohuramohura\ProvidesDictionary{translator-bibliography-dictionary}{Polish} %Translated by Stanis\l{}aw Polak (http://www.icsr.agh.edu.pl/~polak/) \providetranslation{ed.}{ed.} \providetranslation{Editions}{Edycje} \providetranslation{editions}{edycje} \providetranslation{Edition}{Edycja} \providetranslation{edition}{edycja} \providetranslation{Editors}{Redaktorzy} \providetranslation{editors}{redaktorzy} \providetranslation{Editor}{Redaktor} \providetranslation{editor}{redaktor} \providetranslation{eds.}{red.} \providetranslation{Extended edition}{Edycja rozszerzona} \providetranslation{extended edition}{edycja rozszerzona} \providetranslation{in (bibliography)}{w} \providetranslation{In (bibliography)}{W} \providetranslation{Tech. Rep.}{Rap.\ Tech.} \providetranslation{Technical Reports}{Raporty Techniczne} \providetranslation{technical reports}{raporty techniczne} \providetranslation{Technical Report}{Raport Techniczny} \providetranslation{technical report}{raport techniczny} beamer/base/translator/dicts/translator-numbers-dictionary/0000755000175000017500000000000012050430506024072 5ustar mohuramohura././@LongLink0000000000000000000000000000015000000000000011561 Lustar rootrootbeamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Brazilian.dictbeamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Brazilian.d0000644000175000017500000000355212050430506034162 0ustar mohuramohura% translated by Miguel Frasson \ProvidesDictionary{translator-numbers-dictionary}{brazil} \providetranslation{one}{um} \providetranslation{two}{dois} \providetranslation{three}{tr\^es} \providetranslation{four}{quatro} \providetranslation{five}{cinco} \providetranslation{six}{seis} \providetranslation{seven}{sete} \providetranslation{eight}{oito} \providetranslation{nine}{nove} \providetranslation{ten}{dez} \providetranslation{eleven}{onze} \providetranslation{twelve}{doze} \providetranslation{One}{Um} \providetranslation{Two}{Dois} \providetranslation{Three}{Tr\^es} \providetranslation{Four}{Quatro} \providetranslation{Five}{Cinco} \providetranslation{Six}{Seis} \providetranslation{Seven}{Sete} \providetranslation{Eight}{Oito} \providetranslation{Nine}{Nove} \providetranslation{Ten}{Dez} \providetranslation{Eleven}{Onze} \providetranslation{Twelve}{Doze} \providetranslation{first}{primeiro} \providetranslation{second}{segundo} \providetranslation{third}{terceiro} \providetranslation{fourth}{quarto} \providetranslation{fifth}{quinto} \providetranslation{sixth}{sexto} \providetranslation{seventh}{s\'etimo} \providetranslation{eight}{oitavo} \providetranslation{ninth}{nono} \providetranslation{tenth}{d\'ecimo} \providetranslation{eleventh}{d\'ecimo primeiro} \providetranslation{twelveth}{d\'ecimo segundo} \providetranslation{1st}{1\textordmasculine} \providetranslation{2nd}{2\textordmasculine} \providetranslation{3rd}{3\textordmasculine} \providetranslation{4th}{4\textordmasculine} \providetranslation{5th}{5\textordmasculine} \providetranslation{6th}{6\textordmasculine} \providetranslation{7th}{7\textordmasculine} \providetranslation{8th}{8\textordmasculine} \providetranslation{9th}{9\textordmasculine} \providetranslation{10th}{10\textordmasculine} \providetranslation{11th}{11\textordmasculine} \providetranslation{12th}{12\textordmasculine} beamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-German.dict0000644000175000017500000000314612050430506034157 0ustar mohuramohura\ProvidesDictionary{translator-numbers-dictionary}{German} \providetranslation{one}{eins} \providetranslation{two}{zwei} \providetranslation{three}{drei} \providetranslation{four}{vier} \providetranslation{five}{f\"unf} \providetranslation{six}{sechs} \providetranslation{seven}{sieben} \providetranslation{eight}{acht} \providetranslation{nine}{neun} \providetranslation{ten}{zehn} \providetranslation{eleven}{elf} \providetranslation{twelve}{zw\"olf} \providetranslation{One}{Eins} \providetranslation{Two}{Zwei} \providetranslation{Three}{Drei} \providetranslation{Four}{Vier} \providetranslation{Five}{F\"unf} \providetranslation{Six}{Sechs} \providetranslation{Seven}{Sieben} \providetranslation{Eight}{Acht} \providetranslation{Nine}{Neun} \providetranslation{Ten}{Zehn} \providetranslation{Eleven}{Elf} \providetranslation{Twelve}{Zw\"olf} \providetranslation{first}{erste} \providetranslation{second}{zweite} \providetranslation{third}{dritte} \providetranslation{fourth}{vierte} \providetranslation{fifth}{f\"unfte} \providetranslation{sixth}{sechste} \providetranslation{seventh}{siebte} \providetranslation{eight}{achte} \providetranslation{ninth}{neunte} \providetranslation{tenth}{zehnte} \providetranslation{eleventh}{elfte} \providetranslation{twelveth}{zw\"olfte} \providetranslation{1st}{1.} \providetranslation{2nd}{2.} \providetranslation{3rd}{3.} \providetranslation{4th}{4.} \providetranslation{5th}{5.} \providetranslation{6th}{6.} \providetranslation{7th}{7.} \providetranslation{8th}{8.} \providetranslation{9th}{9.} \providetranslation{10th}{10.} \providetranslation{11th}{11.} \providetranslation{12th}{12.} ././@LongLink0000000000000000000000000000014700000000000011567 Lustar rootrootbeamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Croatian.dictbeamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Croatian.di0000644000175000017500000000327112050430506034156 0ustar mohuramohura\ProvidesDictionary{translator-numbers-dictionary}{Croatian} %Translated by Vedran Mileti\'c \providetranslation{one}{jedan} \providetranslation{two}{dva} \providetranslation{three}{tri} \providetranslation{four}{\v cetiri} \providetranslation{five}{pet} \providetranslation{six}{\v sest} \providetranslation{seven}{sedam} \providetranslation{eight}{osam} \providetranslation{nine}{devet} \providetranslation{ten}{deset} \providetranslation{eleven}{jedanaest} \providetranslation{twelve}{dvanaest} \providetranslation{One}{Jedan} \providetranslation{Two}{Dva} \providetranslation{Three}{Tri} \providetranslation{Four}{\v Cetiri} \providetranslation{Five}{Pet} \providetranslation{Six}{\v Sest} \providetranslation{Seven}{Sedam} \providetranslation{Eight}{Osam} \providetranslation{Nine}{Devet} \providetranslation{Ten}{Deset} \providetranslation{Eleven}{Jedanaest} \providetranslation{Twelve}{Dvanaest} \providetranslation{first}{prvi} \providetranslation{second}{drugi} \providetranslation{third}{tre\'ci} \providetranslation{fourth}{\v cetvrti} \providetranslation{fifth}{peti} \providetranslation{sixth}{\v sesti} \providetranslation{seventh}{sedmi} \providetranslation{eight}{osmi} \providetranslation{ninth}{deveti} \providetranslation{tenth}{deseti} \providetranslation{eleventh}{jedanaesti} \providetranslation{twelveth}{dvanaesti} \providetranslation{1st}{1.} \providetranslation{2nd}{2.} \providetranslation{3rd}{3.} \providetranslation{4th}{4.} \providetranslation{5th}{5.} \providetranslation{6th}{6.} \providetranslation{7th}{7.} \providetranslation{8th}{8.} \providetranslation{9th}{9.} \providetranslation{10th}{10.} \providetranslation{11th}{11.} \providetranslation{12th}{12.} beamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Norsk.dict0000644000175000017500000000312212050430506034034 0ustar mohuramohura\ProvidesDictionary{translator-numbers-dictionary}{Norsk} \providetranslation{one}{en} \providetranslation{two}{to} \providetranslation{three}{tre} \providetranslation{four}{fire} \providetranslation{five}{fem} \providetranslation{six}{seks} \providetranslation{seven}{sju} \providetranslation{eight}{{\aa}tte} \providetranslation{nine}{ni} \providetranslation{ten}{ti} \providetranslation{eleven}{elleve} \providetranslation{twelve}{tolv} \providetranslation{One}{En} \providetranslation{Two}{To} \providetranslation{Three}{Tre} \providetranslation{Four}{Fire} \providetranslation{Five}{Fem} \providetranslation{Six}{Seks} \providetranslation{Seven}{Sju} \providetranslation{Eight}{{\AA}tte} \providetranslation{Nine}{Ni} \providetranslation{Ten}{Ti} \providetranslation{Eleven}{Elleve} \providetranslation{Twelve}{Tolv} \providetranslation{first}{f{\o}rste} \providetranslation{second}{andre} \providetranslation{third}{tredje} \providetranslation{fourth}{fjerde} \providetranslation{fifth}{femte} \providetranslation{sixth}{sjette} \providetranslation{seventh}{sjuende} \providetranslation{eight}{{\aa}ttende} \providetranslation{ninth}{niende} \providetranslation{tenth}{tiende} \providetranslation{eleventh}{ellevte} \providetranslation{twelveth}{tolvte} \providetranslation{1st}{1.} \providetranslation{2nd}{2.} \providetranslation{3rd}{3.} \providetranslation{4th}{4.} \providetranslation{5th}{5.} \providetranslation{6th}{6.} \providetranslation{7th}{7.} \providetranslation{8th}{8.} \providetranslation{9th}{9.} \providetranslation{10th}{10.} \providetranslation{11th}{11.} \providetranslation{12th}{12.} ././@LongLink0000000000000000000000000000014600000000000011566 Lustar rootrootbeamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Nynorsk.dictbeamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Nynorsk.dic0000644000175000017500000000312312050430506034220 0ustar mohuramohura\ProvidesDictionary{translator-numbers-dictionary}{Nynorsk} \providetranslation{one}{ein} \providetranslation{two}{to} \providetranslation{three}{tre} \providetranslation{four}{fire} \providetranslation{five}{fem} \providetranslation{six}{seks} \providetranslation{seven}{sju} \providetranslation{eight}{{\aa}tte} \providetranslation{nine}{ni} \providetranslation{ten}{ti} \providetranslation{eleven}{elleve} \providetranslation{twelve}{tolv} \providetranslation{One}{Ein} \providetranslation{Two}{To} \providetranslation{Three}{Tre} \providetranslation{Four}{Fire} \providetranslation{Five}{Fem} \providetranslation{Six}{Seks} \providetranslation{Seven}{Sju} \providetranslation{Eight}{{\AA}tte} \providetranslation{Nine}{Ni} \providetranslation{Ten}{Ti} \providetranslation{Eleven}{Elleve} \providetranslation{Twelve}{Tolv} \providetranslation{first}{fyrste} \providetranslation{second}{andre} \providetranslation{third}{tredje} \providetranslation{fourth}{fjerde} \providetranslation{fifth}{femte} \providetranslation{sixth}{sjette} \providetranslation{seventh}{sjuande} \providetranslation{eight}{{\aa}ttande} \providetranslation{ninth}{niande} \providetranslation{tenth}{tiande} \providetranslation{eleventh}{ellevte} \providetranslation{twelveth}{tolvte} \providetranslation{1st}{1.} \providetranslation{2nd}{2.} \providetranslation{3rd}{3.} \providetranslation{4th}{4.} \providetranslation{5th}{5.} \providetranslation{6th}{6.} \providetranslation{7th}{7.} \providetranslation{8th}{8.} \providetranslation{9th}{9.} \providetranslation{10th}{10.} \providetranslation{11th}{11.} \providetranslation{12th}{12.} beamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-French.dict0000644000175000017500000000327712050430506034160 0ustar mohuramohura\ProvidesDictionary{translator-numbers-dictionary}{French} \providetranslation{one}{un} \providetranslation{two}{deux} \providetranslation{three}{trois} \providetranslation{four}{quatre} \providetranslation{five}{cinq} \providetranslation{six}{six} \providetranslation{seven}{sept} \providetranslation{eight}{huit} \providetranslation{nine}{neuf} \providetranslation{ten}{dix} \providetranslation{eleven}{onze} \providetranslation{twelve}{douze} \providetranslation{One}{Un} \providetranslation{Two}{Deux} \providetranslation{Three}{Trois} \providetranslation{Four}{Quatre} \providetranslation{Five}{Cinq} \providetranslation{Six}{Six} \providetranslation{Seven}{Sept} \providetranslation{Eight}{Huit} \providetranslation{Nine}{Neuf} \providetranslation{Ten}{Dix} \providetranslation{Eleven}{Onze} \providetranslation{Twelve}{Douze} \providetranslation{first}{premier} \providetranslation{second}{deuxi\`eme} \providetranslation{third}{troisi\`eme} \providetranslation{fourth}{quatri\`eme} \providetranslation{fifth}{cinqui\`eme} \providetranslation{sixth}{sixi\`eme} \providetranslation{seventh}{septi\`eme} \providetranslation{eight}{huiti\`eme} \providetranslation{ninth}{neuvi\`eme} \providetranslation{tenth}{dixi\`eme} \providetranslation{eleventh}{onzi\`eme} \providetranslation{twelveth}{douzi\`eme} \providetranslation{1st}{1\up{er}} \providetranslation{2nd}{2\up{e}} \providetranslation{3rd}{3\up{e}} \providetranslation{4th}{4\up{e}} \providetranslation{5th}{5\up{e}} \providetranslation{6th}{6\up{e}} \providetranslation{7th}{7\up{e}} \providetranslation{8th}{8\up{e}} \providetranslation{9th}{9\up{e}} \providetranslation{10th}{10\up{e}} \providetranslation{11th}{11\up{e}} \providetranslation{12th}{12\up{e}} ././@LongLink0000000000000000000000000000014600000000000011566 Lustar rootrootbeamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-English.dictbeamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-English.dic0000644000175000017500000000314612050430506034153 0ustar mohuramohura\ProvidesDictionary{translator-numbers-dictionary}{English} \providetranslation{one}{one} \providetranslation{two}{two} \providetranslation{three}{three} \providetranslation{four}{four} \providetranslation{five}{five} \providetranslation{six}{six} \providetranslation{seven}{seven} \providetranslation{eight}{eight} \providetranslation{nine}{nine} \providetranslation{ten}{ten} \providetranslation{eleven}{eleven} \providetranslation{twelve}{twelve} \providetranslation{One}{One} \providetranslation{Two}{Two} \providetranslation{Three}{Three} \providetranslation{Four}{Four} \providetranslation{Five}{Five} \providetranslation{Six}{Six} \providetranslation{Seven}{Seven} \providetranslation{Eight}{Eight} \providetranslation{Nine}{Nine} \providetranslation{Ten}{Ten} \providetranslation{Eleven}{Eleven} \providetranslation{Twelve}{Twelve} \providetranslation{first}{first} \providetranslation{second}{second} \providetranslation{third}{third} \providetranslation{fourth}{fourth} \providetranslation{fifth}{fifth} \providetranslation{sixth}{sixth} \providetranslation{seventh}{seventh} \providetranslation{eight}{eigth} \providetranslation{ninth}{ninth} \providetranslation{tenth}{tenth} \providetranslation{eleventh}{eleventh} \providetranslation{twelveth}{twelveth} \providetranslation{1st}{1st} \providetranslation{2nd}{2nd} \providetranslation{3rd}{3rd} \providetranslation{4th}{4th} \providetranslation{5th}{5th} \providetranslation{6th}{6th} \providetranslation{7th}{7th} \providetranslation{8th}{8th} \providetranslation{9th}{9th} \providetranslation{10th}{10th} \providetranslation{11th}{11th} \providetranslation{12th}{12th} ././@LongLink0000000000000000000000000000014600000000000011566 Lustar rootrootbeamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Serbian.dictbeamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Serbian.dic0000644000175000017500000000327512050430506034150 0ustar mohuramohura\ProvidesDictionary{translator-numbers-dictionary}{Serbian} %Translated by Zoran Filipovi\'c \providetranslation{one}{jedan} \providetranslation{two}{dva} \providetranslation{three}{tri} \providetranslation{four}{\v cetiri} \providetranslation{five}{pet} \providetranslation{six}{\v sest} \providetranslation{seven}{sedam} \providetranslation{eight}{osam} \providetranslation{nine}{devet} \providetranslation{ten}{deset} \providetranslation{eleven}{jedanaest} \providetranslation{twelve}{dvanaest} \providetranslation{One}{Jedan} \providetranslation{Two}{Dva} \providetranslation{Three}{Tri} \providetranslation{Four}{\v Cetiri} \providetranslation{Five}{Pet} \providetranslation{Six}{\v Sest} \providetranslation{Seven}{Sedam} \providetranslation{Eight}{Osam} \providetranslation{Nine}{Devet} \providetranslation{Ten}{Deset} \providetranslation{Eleven}{Jedanaest} \providetranslation{Twelve}{Dvanaest} \providetranslation{first}{prvi} \providetranslation{second}{drugi} \providetranslation{third}{tre\'ci} \providetranslation{fourth}{\v cetvrti} \providetranslation{fifth}{peti} \providetranslation{sixth}{\v sesti} \providetranslation{seventh}{sedmi} \providetranslation{eight}{osmi} \providetranslation{ninth}{deveti} \providetranslation{tenth}{deseti} \providetranslation{eleventh}{jedanaesti} \providetranslation{twelveth}{dvanaesti} \providetranslation{1st}{1.} \providetranslation{2nd}{2.} \providetranslation{3rd}{3.} \providetranslation{4th}{4.} \providetranslation{5th}{5.} \providetranslation{6th}{6.} \providetranslation{7th}{7.} \providetranslation{8th}{8.} \providetranslation{9th}{9.} \providetranslation{10th}{10.} \providetranslation{11th}{11.} \providetranslation{12th}{12.} ././@LongLink0000000000000000000000000000014600000000000011566 Lustar rootrootbeamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Spanish.dictbeamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Spanish.dic0000644000175000017500000000316412050430506034167 0ustar mohuramohura\ProvidesDictionary{translator-numbers-dictionary}{Spanish} \providetranslation{one}{uno} \providetranslation{two}{dos} \providetranslation{three}{tres} \providetranslation{four}{cuatro} \providetranslation{five}{cinco} \providetranslation{six}{seis} \providetranslation{seven}{siete} \providetranslation{eight}{ocho} \providetranslation{nine}{nueve} \providetranslation{ten}{diez} \providetranslation{eleven}{once} \providetranslation{twelve}{doce} \providetranslation{One}{Uno} \providetranslation{Two}{Dos} \providetranslation{Three}{Tres} \providetranslation{Four}{Cuatro} \providetranslation{Five}{Cinco} \providetranslation{Six}{Seis} \providetranslation{Seven}{Siete} \providetranslation{Eight}{Ocho} \providetranslation{Nine}{Nueve} \providetranslation{Ten}{Diez} \providetranslation{Eleven}{Once} \providetranslation{Twelve}{Doce} \providetranslation{first}{primero} \providetranslation{second}{segundo} \providetranslation{third}{tercero} \providetranslation{fourth}{cuarto} \providetranslation{fifth}{quinto} \providetranslation{sixth}{sexto} \providetranslation{seventh}{séptimo} \providetranslation{eight}{octavo} \providetranslation{ninth}{noveno} \providetranslation{tenth}{décimo} \providetranslation{eleventh}{undécimo} \providetranslation{twelveth}{duocécimo} \providetranslation{1st}{1º} \providetranslation{2nd}{2º} \providetranslation{3rd}{3º} \providetranslation{4th}{4º} \providetranslation{5th}{5º} \providetranslation{6th}{6º} \providetranslation{7th}{7º} \providetranslation{8th}{8º} \providetranslation{9th}{9º} \providetranslation{10th}{10º} \providetranslation{11th}{11º} \providetranslation{12th}{12º} beamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Polish.dict0000644000175000017500000000351412050430506034203 0ustar mohuramohura\ProvidesDictionary{translator-numbers-dictionary}{Polish} %Translated by Stanis\l{}aw Polak (http://www.icsr.agh.edu.pl/~polak/) \providetranslation{one}{jeden} \providetranslation{two}{dwa} \providetranslation{three}{trzy} \providetranslation{four}{cztery} \providetranslation{five}{pi\k{e}\'{c}} \providetranslation{six}{sze\'{s}\'{c}} \providetranslation{seven}{siedem} \providetranslation{eight}{osiem} \providetranslation{nine}{dziewi\k{e}\'{c}} \providetranslation{ten}{dziesi\k{e}\'{c}} \providetranslation{eleven}{jedena\'{s}cie} \providetranslation{twelve}{dwana\'{s}cie} \providetranslation{One}{Jeden} \providetranslation{Two}{Dwa} \providetranslation{Three}{Trzy} \providetranslation{Four}{Cztery} \providetranslation{Five}{Pi\k{e}\'{c}} \providetranslation{Six}{Sze\'{s}\'{c}} \providetranslation{Seven}{Siedem} \providetranslation{Eight}{Osiem} \providetranslation{Nine}{Dziewi\k{e}\'{c}} \providetranslation{Ten}{Dziesi\k{e}\'{c}} \providetranslation{Eleven}{Jedena\'{s}cie} \providetranslation{Twelve}{Dwana\'{s}cie} \providetranslation{first}{pierwszy} \providetranslation{second}{drugi} \providetranslation{third}{trzeci} \providetranslation{fourth}{czwarty} \providetranslation{fifth}{pi\k{a}ry} \providetranslation{sixth}{sz\'{o}sty} \providetranslation{seventh}{si\'{o}dmy} \providetranslation{eight}{\'{o}smy} \providetranslation{ninth}{dziewi\k{a}ty} \providetranslation{tenth}{dziesi\k{a}ty} \providetranslation{eleventh}{jedenasty} \providetranslation{twelveth}{dwunasty} \providetranslation{1st}{1-y} \providetranslation{2nd}{2-i} \providetranslation{3rd}{3-i} \providetranslation{4th}{4-y} \providetranslation{5th}{5-y} \providetranslation{6th}{6-y} \providetranslation{7th}{7-y} \providetranslation{8th}{8-y} \providetranslation{9th}{9-y} \providetranslation{10th}{10-y} \providetranslation{11th}{11-y} \providetranslation{12th}{12-y} beamer/base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Greek.dict0000644000175000017500000000346612050430506034010 0ustar mohuramohura% Antonis Tsolomitis % University of the Aegean % Department of Mathematics % Laboratory of Digital Typography % and Mathematical Applications % 83200 Karlovassi, Samos % Greece \ProvidesDictionary{translator-numbers-dictionary}{Greek} \providetranslation{one}{'ena} \providetranslation{two}{d'up} \providetranslation{three}{tr'ia} \providetranslation{four}{t'essera} \providetranslation{five}{p'ente} \providetranslation{six}{'exi} \providetranslation{seven}{ept'a} \providetranslation{eight}{okt'w} \providetranslation{nine}{enn'ea} \providetranslation{ten}{d'eka} \providetranslation{eleven}{'enteka} \providetranslation{twelve}{d'wdeka} \providetranslation{One}{'Ena} \providetranslation{Two}{D'yo} \providetranslation{Three}{Tr'ia} \providetranslation{Four}{T'essera} \providetranslation{Five}{P'ente} \providetranslation{Six}{'Exi} \providetranslation{Seven}{Ept'a} \providetranslation{Eight}{Okt'w} \providetranslation{Nine}{Enn'ea} \providetranslation{Ten}{D'eka} \providetranslation{Eleven}{'Enteka} \providetranslation{Twelve}{D'wdeka} \providetranslation{first}{pr'wto} \providetranslation{second}{de'utero} \providetranslation{third}{tr'ito} \providetranslation{fourth}{t'etarto} \providetranslation{fifth}{p'empto} \providetranslation{sixth}{'ekto} \providetranslation{seventh}{'ebdomo} \providetranslation{eight}{'ogdoo} \providetranslation{ninth}{'enato} \providetranslation{tenth}{d'ekato} \providetranslation{eleventh}{end'ekato} \providetranslation{twelveth}{dwd'ekato} \providetranslation{1st}{1o} \providetranslation{2nd}{2o} \providetranslation{3rd}{3o} \providetranslation{4th}{4o} \providetranslation{5th}{5o} \providetranslation{6th}{6o} \providetranslation{7th}{7o} \providetranslation{8th}{8o} \providetranslation{9th}{9o} \providetranslation{10th}{10o} \providetranslation{11th}{11o} \providetranslation{12th}{12o} beamer/base/translator/dicts/translator-environment-dictionary/0000755000175000017500000000000012050430506024763 5ustar mohuramohura././@LongLink0000000000000000000000000000015500000000000011566 Lustar rootrootbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-French.dictbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Fre0000644000175000017500000000066012050430506034320 0ustar mohuramohura\ProvidesDictionary{translator-environment-dictionary}{French} \providetranslation{advantage}{avantage} \providetranslation{Advantage}{Avantage} \providetranslation{advantages}{avantages} \providetranslation{Advantages}{Avantages} \providetranslation{disadvantage}{d\'esavantage} \providetranslation{Disadvantage}{D\'esavantage} \providetranslation{disadvantages}{d\'esavantages} \providetranslation{disadvantages}{D\'esavantages} ././@LongLink0000000000000000000000000000015700000000000011570 Lustar rootrootbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Croatian.dictbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Cro0000644000175000017500000000073212050430506034327 0ustar mohuramohura\ProvidesDictionary{translator-environment-dictionary}{Croatian} %Translated by Vedran Mileti\'c \providetranslation{advantage}{prednost} \providetranslation{Advantage}{Prednost} \providetranslation{advantages}{prednosti} \providetranslation{Advantages}{Prednosti} \providetranslation{disadvantage}{nedostatak} \providetranslation{Disadvantage}{Nedostatak} \providetranslation{disadvantages}{nedostaci} \providetranslation{disadvantages}{Nedostaci} ././@LongLink0000000000000000000000000000015600000000000011567 Lustar rootrootbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Serbian.dictbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Ser0000644000175000017500000000074012050430506034334 0ustar mohuramohura\ProvidesDictionary{translator-environment-dictionary}{Serbian} %Translated by Zoran Filipovi\'c \providetranslation{advantage}{prednost} \providetranslation{Advantage}{Prednost} \providetranslation{advantages}{prednosti} \providetranslation{Advantages}{Prednosti} \providetranslation{disadvantage}{nedostatak} \providetranslation{Disadvantage}{Nedostatak} \providetranslation{disadvantages}{nedostatci} \providetranslation{disadvantages}{Nedostatci} ././@LongLink0000000000000000000000000000015600000000000011567 Lustar rootrootbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Spanish.dictbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Spa0000644000175000017500000000065512050430506034333 0ustar mohuramohura\ProvidesDictionary{translator-environment-dictionary}{Spanish} \providetranslation{advantage}{ventaja} \providetranslation{Advantage}{Ventaja} \providetranslation{advantages}{ventajas} \providetranslation{Advantages}{Ventajas} \providetranslation{disadvantage}{inconveniente} \providetranslation{Disadvantage}{Inconveniente} \providetranslation{disadvantages}{inconvenientes} \providetranslation{Disadvantages}{Inconvenientes} ././@LongLink0000000000000000000000000000015600000000000011567 Lustar rootrootbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-English.dictbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Eng0000644000175000017500000000066112050430506034316 0ustar mohuramohura\ProvidesDictionary{translator-environment-dictionary}{English} \providetranslation{advantage}{advantage} \providetranslation{Advantage}{Advantage} \providetranslation{advantages}{advantages} \providetranslation{Advantages}{Advantages} \providetranslation{disadvantage}{disadvantage} \providetranslation{Disadvantage}{Disadvantage} \providetranslation{disadvantages}{disadvantages} \providetranslation{Disadvantages}{Disadvantages} ././@LongLink0000000000000000000000000000015500000000000011566 Lustar rootrootbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Polish.dictbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Pol0000644000175000017500000000070712050430506034340 0ustar mohuramohura\ProvidesDictionary{translator-environment-dictionary}{Polish} %Translated by Stanis\l{}aw Polak (http://www.icsr.agh.edu.pl/~polak/) \providetranslation{advantage}{zaleta} \providetranslation{Advantage}{Zaleta} \providetranslation{advantages}{zalety} \providetranslation{Advantages}{Zalety} \providetranslation{disadvantage}{wada} \providetranslation{Disadvantage}{Wada} \providetranslation{disadvantages}{wady} \providetranslation{disadvantages}{Wady} ././@LongLink0000000000000000000000000000016000000000000011562 Lustar rootrootbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Brazilian.dictbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Bra0000644000175000017500000000073612050430506034314 0ustar mohuramohura% translated by Miguel Frasson \ProvidesDictionary{translator-environment-dictionary}{brazil} \providetranslation{advantage}{vantagem} \providetranslation{Advantage}{Vantagem} \providetranslation{advantages}{vantagens} \providetranslation{Advantages}{Vantagens} \providetranslation{disadvantage}{desvantagem} \providetranslation{Disadvantage}{Desvantagem} \providetranslation{disadvantages}{desvantagens} \providetranslation{Disadvantages}{Desvantagens} ././@LongLink0000000000000000000000000000015500000000000011566 Lustar rootrootbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-German.dictbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Ger0000644000175000017500000000063012050430506034316 0ustar mohuramohura\ProvidesDictionary{translator-environment-dictionary}{German} \providetranslation{advantage}{Vorteil} \providetranslation{Advantage}{Vorteil} \providetranslation{advantages}{Vorteile} \providetranslation{Advantages}{Vorteile} \providetranslation{disadvantage}{Nachteil} \providetranslation{Disadvantage}{Nachteil} \providetranslation{disadvantages}{Nachteile} \providetranslation{Disadvantages}{Nachteile} ././@LongLink0000000000000000000000000000015400000000000011565 Lustar rootrootbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Greek.dictbeamer/base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Gre0000644000175000017500000000116112050430506034316 0ustar mohuramohura% Antonis Tsolomitis % University of the Aegean % Department of Mathematics % Laboratory of Digital Typography % and Mathematical Applications % 83200 Karlovassi, Samos % Greece \ProvidesDictionary{translator-environment-dictionary}{Greek} \providetranslation{advantage}{pleon'ekthma} \providetranslation{Advantage}{Pleon'ekthma} \providetranslation{advantages}{pleonekt'hmata} \providetranslation{Advantages}{Pleonekt'hmata} \providetranslation{disadvantage}{meion'ekthma} \providetranslation{Disadvantage}{Meion'ekthma} \providetranslation{disadvantages}{meionekt'hmata} \providetranslation{Disadvantages}{Meionekt'hmata} beamer/base/translator/dicts/translator-theorem-dictionary/0000755000175000017500000000000012050430506024062 5ustar mohuramohura././@LongLink0000000000000000000000000000015000000000000011561 Lustar rootrootbeamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Brazilian.dictbeamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Brazilian.d0000644000175000017500000000774712050430506034154 0ustar mohuramohura% translated by Miguel Frasson \ProvidesDictionary{translator-theorem-dictionary}{brazil} \providetranslation{Comments}{Coment\'arios} \providetranslation{comments}{coment\'arios} \providetranslation{Comment}{Coment\'ario} \providetranslation{comment}{coment\'ario} \providetranslation{Corollaries}{Corol\'arios} \providetranslation{corollaries}{corol\'arios} \providetranslation{Corollary}{Corol\'ario} \providetranslation{corollary}{corol\'ario} \providetranslation{Definitions}{Defini\c c\~oes} \providetranslation{definitions}{defini\c c\~oes} \providetranslation{Definition}{Defini\c c\~ao} \providetranslation{definition}{defini\c c\~ao} \providetranslation{Examples}{Exemplos} \providetranslation{examples}{exemplos} \providetranslation{Example}{Exemplo} \providetranslation{example}{exemplo} \providetranslation{Exercises}{Exerc\'icios} \providetranslation{exercises}{exerc\'icios} \providetranslation{Exercise}{Exerc\'icio} \providetranslation{exercise}{exerc\'icio} \providetranslation{Facts}{Fatos} \providetranslation{facts}{fatos} \providetranslation{Fact}{Fato} \providetranslation{fact}{fato} \providetranslation{Key Lemmas}{Lemas Fundamentais} \providetranslation{key lemmas}{lemas fundamentais} \providetranslation{Key Lemma}{Lema Fundamental} \providetranslation{key lemma}{Lema fundamental} \providetranslation{Key Observations}{Observa\c c\~oes Importantes} \providetranslation{key observations}{observa\c c\~oes importantes} \providetranslation{Key Observation}{Observa\c c\~ao Importante} \providetranslation{key observation}{observa\c c\~ao importante} \providetranslation{Lemmas}{Lemas} \providetranslation{lemmas}{lemas} \providetranslation{Lemma}{Lema} \providetranslation{lemma}{lema} \providetranslation{Main Theorems}{Teoremas Principais} \providetranslation{main theorems}{teoremas principais} \providetranslation{Main Theorem}{Teorema Principal} \providetranslation{main theorem}{teorema principal} \providetranslation{Observations}{Observa\c c\~oes} \providetranslation{observations}{observa\c c\~oes} \providetranslation{Observation}{Observa\c c\~ao} \providetranslation{observation}{observa\c c\~ao} \providetranslation{Problems}{Problemas} \providetranslation{problems}{problemas} \providetranslation{Problem}{Problema} \providetranslation{problem}{problema} \providetranslation{Proofs}{Demonstra\c c\~oes} \providetranslation{proofs}{demonstra\c c\~oes} \providetranslation{Proof}{Demonstra\c c\~ao} \providetranslation{proof}{demonstra\c c\~ao} \providetranslation{Proof Sketch}{Demonstra\c c\~ao Esquem\'atica} \providetranslation{Proof sketch}{demonstra\c c\~ao esquem\'atica} \providetranslation{proof sketch}{demonstra\c c\~ao esquem\'atica} \providetranslation{Proof Sketches}{Demonstra\c c\~oes Esquem\'aticas} \providetranslation{Proof sketches}{demonstra\c c\~oes esquem\'aticas} \providetranslation{proof sketches}{demonstra\c c\~oes esquem\'aticas} \providetranslation{Sketch of Proof}{Esbo\c co da Demonstra\c c\~ao} \providetranslation{Sketch of Proofs}{Esbo\c co da demonstra\c c\~ao} \providetranslation{Sketch of proof}{esbo\c co da demonstra\c c\~ao} \providetranslation{Sketch of proofs}{Esbo\c cos das Demonstra\c c\~oes} \providetranslation{sketch of proof}{Esbo\c cos das demonstra\c c\~oes} \providetranslation{sketch of proofs}{esbo\c cos das demonstra\c c\~oes} \providetranslation{Propositions}{Proposi\c c\~oes} \providetranslation{propositions}{proposi\c c\~oes} \providetranslation{Proposition}{Proposi\c c\~ao} \providetranslation{proposition}{proposi\c c\~ao} \providetranslation{Remarks}{Observa\c c\~oes} \providetranslation{remarks}{observa\c c\~oes} \providetranslation{Remark}{Observa\c c\~ao} \providetranslation{remark}{observa\c c\~ao} \providetranslation{Solutions}{Solu\c c\~oes} \providetranslation{solutions}{solu\c c\~oes} \providetranslation{Solution}{Solu\c c\~ao} \providetranslation{solution}{solu\c c\~ao} \providetranslation{Theorems}{Teoremas} \providetranslation{theorems}{teoremas} \providetranslation{Theorem}{Teorema} \providetranslation{theorem}{teoremas} beamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Norsk.dict0000644000175000017500000000676112050430506034030 0ustar mohuramohura\ProvidesDictionary{translator-theorem-dictionary}{English} \providetranslation{Comments}{Kommentarer} \providetranslation{comments}{kommentarer} \providetranslation{Comment}{Kommentar} \providetranslation{comment}{kommentar} \providetranslation{Corollaries}{Corollaries} \providetranslation{corollaries}{corollaries} \providetranslation{Corollary}{Corollary} \providetranslation{corollary}{corollary} \providetranslation{Definitions}{Definisjoner} \providetranslation{definitions}{definisjoner} \providetranslation{Definition}{Definisjon} \providetranslation{definition}{definision} \providetranslation{Examples}{Eksempler} \providetranslation{examples}{eksempler} \providetranslation{Example}{Eksempel} \providetranslation{example}{eksempel} \providetranslation{Exercises}{Oppgaver} \providetranslation{exercises}{oppgaver} \providetranslation{Exercise}{Oppgave} \providetranslation{exercise}{oppgave} \providetranslation{Facts}{Fakta} \providetranslation{facts}{fakta} \providetranslation{Fact}{Faktum} \providetranslation{fact}{faktum} \providetranslation{Key Lemmas}{N\okkellemmaer} \providetranslation{key lemmas}{n\okkellemmaer} \providetranslation{Key Lemma}{N\okkellemma} \providetranslation{key lemma}{N\okkellemma} \providetranslation{Key Observations}{N\okkelobservasjoner} \providetranslation{key observations}{n\okkelobservasjoner} \providetranslation{Key Observation}{N\okkelobservasjon} \providetranslation{key observation}{n\okkelobservasjon} \providetranslation{Lemmas}{Lemmaer} \providetranslation{lemmas}{lemmaer} \providetranslation{Lemma}{Lemma} \providetranslation{lemma}{lemma} \providetranslation{Main Theorems}{Hovedteoremer} \providetranslation{main theorems}{hovedteoremer} \providetranslation{Main Theorem}{Hovedteorem} \providetranslation{main theorem}{hovedteorem} \providetranslation{Observations}{Observasjoner} \providetranslation{observations}{observasjoner} \providetranslation{Observation}{Observation} \providetranslation{observation}{observation} \providetranslation{Problems}{Problems} \providetranslation{problems}{problems} \providetranslation{Problem}{Problem} \providetranslation{problem}{problem} \providetranslation{Proofs}{Proofs} \providetranslation{proofs}{proofs} \providetranslation{Proof}{Proof} \providetranslation{proof}{proof} \providetranslation{Proof Sketch}{Proof Sketch} \providetranslation{Proof sketch}{Proof sketch} \providetranslation{proof sketch}{proof sketch} \providetranslation{Proof Sketches}{Proof Sketches} \providetranslation{Proof sketches}{Proof sketches} \providetranslation{proof sketches}{proof sketches} \providetranslation{Sketch of Proof}{Sketch of Proof} \providetranslation{Sketch of Proofs}{Sketch of Proofs} \providetranslation{Sketch of proof}{Sketch of proof} \providetranslation{Sketch of proofs}{Sketch of proofs} \providetranslation{sketch of proof}{sketch of proof} \providetranslation{sketch of proofs}{sketch of proofs} \providetranslation{Propositions}{Propositions} \providetranslation{propositions}{propositions} \providetranslation{Proposition}{Proposition} \providetranslation{proposition}{proposition} \providetranslation{Remarks}{Remarks} \providetranslation{remarks}{remarks} \providetranslation{Remark}{Remark} \providetranslation{remark}{remark} \providetranslation{Solutions}{Solutions} \providetranslation{solutions}{solutions} \providetranslation{Solution}{Solution} \providetranslation{solution}{solution} \providetranslation{Theorems}{Theorems} \providetranslation{theorems}{theorems} \providetranslation{Theorem}{Theorem} \providetranslation{theorem}{theorem} ././@LongLink0000000000000000000000000000014600000000000011566 Lustar rootrootbeamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Serbian.dictbeamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Serbian.dic0000644000175000017500000000704012050430506034122 0ustar mohuramohura\ProvidesDictionary{translator-theorem-dictionary}{Serbian} %Translated by Zoran Filipovi\'c \providetranslation{Comments}{Napomene} \providetranslation{comments}{napomene} \providetranslation{Comment}{Napomena} \providetranslation{comment}{napomena} \providetranslation{Corollaries}{Posledice} \providetranslation{corollaries}{posledice} \providetranslation{Corollary}{Posledica} \providetranslation{corollary}{posledica} \providetranslation{Definitions}{Definicije} \providetranslation{definitions}{definicije} \providetranslation{Definition}{Definicija} \providetranslation{definition}{definicija} \providetranslation{Examples}{Primeri} \providetranslation{examples}{primeri} \providetranslation{Example}{Primer} \providetranslation{example}{primer} \providetranslation{Exercises}{Ve\v zbe} \providetranslation{exercises}{ve\v zbe} \providetranslation{Exercise}{Ve\v zba} \providetranslation{exercise}{ve\v zba} \providetranslation{Facts}{\v Cinjenice} \providetranslation{facts}{\v cinjenice} \providetranslation{Fact}{\v Cinjenica} \providetranslation{fact}{\v cinjenica} \providetranslation{Key Lemmas}{Klj\v cne leme} \providetranslation{key lemmas}{klju\v cne leme} \providetranslation{Key Lemma}{Klju\v cna lema} \providetranslation{key lemma}{klju\v c lema} \providetranslation{Key Observations}{Klju\v cna posmatranja} \providetranslation{key observations}{klju\v cna posmatranja} \providetranslation{Key Observation}{Klju\v cno posmatranje} \providetranslation{key observation}{klju\v cno posmatranje} \providetranslation{Lemmas}{Lemma} \providetranslation{lemmas}{lemma} \providetranslation{Lemma}{Lemma} \providetranslation{lemma}{lemma} \providetranslation{Main Theorems}{Glavne teoreme} \providetranslation{main theorems}{glavne teoreme} \providetranslation{Main Theorem}{Glavna teorema} \providetranslation{main theorem}{glavna teorema} \providetranslation{Observations}{Posmatranja} \providetranslation{observations}{posmatranja} \providetranslation{Observation}{Posmatranje} \providetranslation{observation}{posmatranje} \providetranslation{Problems}{Problemi} \providetranslation{problems}{problemi} \providetranslation{Problem}{Problem} \providetranslation{problem}{problem} \providetranslation{Proofs}{Dokazi} \providetranslation{proofs}{dokazi} \providetranslation{Proof}{Dokaz} \providetranslation{proof}{dokaz} \providetranslation{Proof Sketch}{Skica dokaza} \providetranslation{Proof sketch}{Skica dokaza} \providetranslation{proof sketch}{skica dokaza} \providetranslation{Proof Sketches}{Skice dokaza} \providetranslation{Proof sketches}{Skice dokaza} \providetranslation{proof sketches}{skice dokaza} \providetranslation{Sketch of Proof}{Skica dokaza} \providetranslation{Sketch of Proofs}{Skica dokaza} \providetranslation{Sketch of proof}{Skica dokaza} \providetranslation{Sketch of proofs}{Skica dokaza} \providetranslation{sketch of proof}{skica dokaza} \providetranslation{sketch of proofs}{skica dokaza} \providetranslation{Propositions}{Tvrdnje} \providetranslation{propositions}{trvdnje} \providetranslation{Proposition}{Tvrdnja} \providetranslation{proposition}{tvrdnja} \providetranslation{Remarks}{Primedbe} \providetranslation{remarks}{primedbe} \providetranslation{Remark}{primedba} \providetranslation{remark}{primedba} \providetranslation{Solutions}{Re\v senja} \providetranslation{solutions}{re\v senja} \providetranslation{Solution}{Re\v senje} \providetranslation{solution}{re\v senje} \providetranslation{Theorems}{Teoreme} \providetranslation{theorems}{teoreme} \providetranslation{Theorem}{Teorema} \providetranslation{theorem}{teorema} ././@LongLink0000000000000000000000000000014700000000000011567 Lustar rootrootbeamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Croatian.dictbeamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Croatian.di0000644000175000017500000000700712050430506034137 0ustar mohuramohura\ProvidesDictionary{translator-theorem-dictionary}{Croatian} %Translated by Vedran Mileti\'c \providetranslation{Comments}{Komentari} \providetranslation{comments}{komentari} \providetranslation{Comment}{Komentar} \providetranslation{comment}{komentar} \providetranslation{Corollaries}{Korolari} \providetranslation{corollaries}{korolari} \providetranslation{Corollary}{Korolar} \providetranslation{corollary}{korolar} \providetranslation{Definitions}{Definicije} \providetranslation{definitions}{definicije} \providetranslation{Definition}{Definicija} \providetranslation{definition}{definicija} \providetranslation{Examples}{Primjeri} \providetranslation{examples}{primjeri} \providetranslation{Example}{Primjer} \providetranslation{example}{primjer} \providetranslation{Exercises}{Vje\v zbe} \providetranslation{exercises}{vje\v zbe} \providetranslation{Exercise}{Vje\v zba} \providetranslation{exercise}{vje\v zba} \providetranslation{Facts}{\v Cinjenice} \providetranslation{facts}{\v cinjenice} \providetranslation{Fact}{\v Cinjenica} \providetranslation{fact}{\v cinjenica} \providetranslation{Key Lemmas}{Osnovne leme} \providetranslation{key lemmas}{osnovne leme} \providetranslation{Key Lemma}{Osnovna lema} \providetranslation{key lemma}{osnovna lema} \providetranslation{Key Observations}{Osnovne primjedbe} \providetranslation{key observations}{osnovne primjedbe} \providetranslation{Key Observation}{Osnovna primjedba} \providetranslation{key observation}{osnovna primjedba} \providetranslation{Lemmas}{Leme} \providetranslation{lemmas}{leme} \providetranslation{Lemma}{Lema} \providetranslation{lemma}{lema} \providetranslation{Main Theorems}{Osnovni teoremi} \providetranslation{main theorems}{osnovni teoremi} \providetranslation{Main Theorem}{Osnovni teorem} \providetranslation{main theorem}{osnovni teorem} \providetranslation{Observations}{Primjedbe} \providetranslation{observations}{primjedbe} \providetranslation{Observation}{Primjedba} \providetranslation{observation}{primjedba} \providetranslation{Problems}{Zadaci} \providetranslation{problems}{zadaci} \providetranslation{Problem}{Zadatak} \providetranslation{problem}{zadatak} \providetranslation{Proofs}{Dokazi} \providetranslation{proofs}{dokazi} \providetranslation{Proof}{Dokaz} \providetranslation{proof}{dokaz} \providetranslation{Proof Sketch}{Skica dokaza} \providetranslation{Proof sketch}{Skica dokaza} \providetranslation{proof sketch}{skica dokaza} \providetranslation{Proof Sketches}{Skice dokaza} \providetranslation{Proof sketches}{Skice dokaza} \providetranslation{proof sketches}{skice dokaza} \providetranslation{Sketch of Proof}{Skica dokaza} \providetranslation{Sketch of Proofs}{Skice dokaza} \providetranslation{Sketch of proof}{Skica dokaza} \providetranslation{Sketch of proofs}{Skice dokaza} \providetranslation{sketch of proof}{skica dokaza} \providetranslation{sketch of proofs}{skice dokaza} \providetranslation{Propositions}{Propozicije} \providetranslation{propositions}{propozicije} \providetranslation{Proposition}{Propozicija} \providetranslation{proposition}{propozicija} \providetranslation{Remarks}{Napomene} \providetranslation{remarks}{napomene} \providetranslation{Remark}{Napomena} \providetranslation{remark}{napomena} \providetranslation{Solutions}{Rje\v senja} \providetranslation{solutions}{rje\v senja} \providetranslation{Solution}{Rje\v senje} \providetranslation{solution}{rje\v senje} \providetranslation{Theorems}{Teoremi} \providetranslation{theorems}{teoremi} \providetranslation{Theorem}{Teorem} \providetranslation{theorem}{teorem} beamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-German.dict0000644000175000017500000000721112050430506034134 0ustar mohuramohura\ProvidesDictionary{translator-theorem-dictionary}{German} \providetranslation{Comments}{Kommentare} \providetranslation{comments}{Kommentare} \providetranslation{Comment}{Kommentar} \providetranslation{comment}{Kommentar} \providetranslation{Corollaries}{Folgerungen} \providetranslation{corollaries}{Folgerungen} \providetranslation{Corollary}{Folgerung} \providetranslation{corollary}{Folgerung} \providetranslation{Definitions}{Definitionen} \providetranslation{definitions}{Definitionen} \providetranslation{Definition}{Definition} \providetranslation{definition}{Definition} \providetranslation{Examples}{Beispiele} \providetranslation{examples}{Beispiele} \providetranslation{Example}{Beispiel} \providetranslation{example}{Beispiel} \providetranslation{Exercises}{\"Ubungs\-auf\-gaben} \providetranslation{exercises}{\"Ubungs\-auf\-gaben} \providetranslation{Exercise}{\"Ubungs\-auf\-gabe} \providetranslation{exercise}{\"Ubungs\-auf\-gabe} \providetranslation{Facts}{Fakten} \providetranslation{facts}{Fakten} \providetranslation{Fact}{Fakt} \providetranslation{fact}{Fakt} \providetranslation{Key Lemmas}{Schl\"us\-sel\-lemmata} \providetranslation{key lemmas}{Schl\"us\-sel\-lemmata} \providetranslation{Key Lemma}{Schl\"us\-sel\-lemma} \providetranslation{key lemma}{Schl\"us\-sel\-lemma} \providetranslation{Key Observations}{Schl\"us\-sel\-beobach\-tungen} \providetranslation{key observations}{Schl\"us\-sel\-beobach\-tungen} \providetranslation{Key Observation}{Schl\"us\-sel\-beobach\-tung} \providetranslation{key observation}{Schl\"us\-sel\-beobach\-tung} \providetranslation{Lemmas}{Lemmata} \providetranslation{lemmas}{Lemmata} \providetranslation{Lemma}{Lemma} \providetranslation{lemma}{Lemma} \providetranslation{Main Theorems}{Haupt\-s\"atze} \providetranslation{main theorems}{Haupt\-s\"atze} \providetranslation{Main Theorem}{Hauptsatz} \providetranslation{main theorem}{Hauptsatz} \providetranslation{Observations}{Beobachtungen} \providetranslation{observations}{Beobachtungen} \providetranslation{Observation}{Beobachtung} \providetranslation{observation}{Beobachtung} \providetranslation{Problems}{Problemstellungen} \providetranslation{problems}{problemstellungen} \providetranslation{Problem}{Problemstellung} \providetranslation{problem}{problemstellung} \providetranslation{Proofs}{Beweise} \providetranslation{proofs}{Beweise} \providetranslation{Proof}{Beweis} \providetranslation{proof}{Beweis} \providetranslation{Proof Sketch}{Beweisskizze} \providetranslation{Proof sketch}{Beweisskizze} \providetranslation{proof sketch}{Beweisskizze} \providetranslation{Proof Sketches}{Beweisskizzen} \providetranslation{Proof sketches}{Beweisskizzen} \providetranslation{proof sketches}{Beweisskizzen} \providetranslation{Sketch of Proof}{Beweisskizze} \providetranslation{Sketch of Proofs}{Beweisskizzen} \providetranslation{Sketch of proof}{Beweisskizze} \providetranslation{Sketch of proofs}{Beweisskizzen} \providetranslation{sketch of proof}{Beweisskizze} \providetranslation{sketch of proofs}{Beweisskizzen} \providetranslation{Propositions}{Propositionen} \providetranslation{propositions}{Propositionen} \providetranslation{Proposition}{Proposition} \providetranslation{proposition}{Proposition} \providetranslation{Remarks}{Bemerkungen} \providetranslation{remarks}{Bemerkungen} \providetranslation{Remark}{Bemerkung} \providetranslation{remark}{Bemerkung} \providetranslation{Solutions}{L\"o\-sun\-gen} \providetranslation{solutions}{L\"o\-sun\-gen} \providetranslation{Solution}{L\"o\-sung} \providetranslation{solution}{L\"o\-sung} \providetranslation{Theorems}{S\"atze} \providetranslation{theorems}{S\"atze} \providetranslation{Theorem}{Satz} \providetranslation{theorem}{Satz} beamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-French.dict0000644000175000017500000000732212050430506034133 0ustar mohuramohura\ProvidesDictionary{translator-theorem-dictionary}{French} \providetranslation{Comments}{Commentaires} \providetranslation{comments}{commentaires} \providetranslation{Comment}{Commentaire} \providetranslation{comment}{commentaire} \providetranslation{Corollaries}{Corollaires} \providetranslation{corollaries}{corollaires} \providetranslation{Corollary}{Corollaire} \providetranslation{corollary}{corollaire} \providetranslation{Definitions}{D\'efinitions} \providetranslation{definitions}{d\'efinitions} \providetranslation{Definition}{D\'efinition} \providetranslation{definition}{d\'efinition} \providetranslation{Examples}{Exemples} \providetranslation{examples}{exemples} \providetranslation{Example}{Exemple} \providetranslation{example}{exemple} \providetranslation{Exercises}{Exercices} \providetranslation{exercises}{exercices} \providetranslation{Exercise}{Exercice} \providetranslation{exercise}{exercice} \providetranslation{Facts}{Faits} \providetranslation{facts}{faits} \providetranslation{Fact}{Fait} \providetranslation{fact}{fait} \providetranslation{Key Lemmas}{Lemmes fondamentaux} \providetranslation{key lemmas}{lemmes fondamentaux} \providetranslation{Key Lemma}{Lemme fondamental} \providetranslation{key lemma}{lemme fondamental} \providetranslation{Key Observations}{Observations d\'ecisives} \providetranslation{key observations}{observations d\'ecisives} \providetranslation{Key Observation}{Observation d\'ecisive} \providetranslation{key observation}{observation d\'ecisive} \providetranslation{Lemmas}{Lemmes} \providetranslation{lemmas}{lemmes} \providetranslation{Lemma}{Lemme} \providetranslation{lemma}{lemme} \providetranslation{Main Theorems}{Th\'eor\`emes Principaux} \providetranslation{main theorems}{th\'eor\`emes principaux} \providetranslation{Main Theorem}{Th\'eor\`eme Principal} \providetranslation{main theorem}{th\'eor\`eme principal} \providetranslation{Observations}{Observations} \providetranslation{observations}{observations} \providetranslation{Observation}{Observation} \providetranslation{observation}{observation} \providetranslation{Problems}{Probl\`emes} \providetranslation{problems}{probl\`emes} \providetranslation{Problem}{Probl\`eme} \providetranslation{problem}{probl\`eme} \providetranslation{Proofs}{D\'emonstrations} \providetranslation{proofs}{d\'emonstrations} \providetranslation{Proof}{D\'emonstration} \providetranslation{proof}{d\'emonstration} \providetranslation{Proof Sketch}{Preuve sch\'ematique} \providetranslation{Proof sketch}{Preuve sch\'ematique} \providetranslation{proof sketch}{preuve sch\'ematique} \providetranslation{Proof Sketches}{Preuve sch\'ematique} \providetranslation{Proof sketches}{Preuve sch\'ematique} \providetranslation{proof sketches}{preuve sch\'ematique} \providetranslation{Sketch of Proof}{Esquisse de preuve} \providetranslation{Sketch of Proofs}{Esquisse de preuves} \providetranslation{Sketch of proof}{Esquisse de preuve} \providetranslation{Sketch of proofs}{Esquisse de preuves} \providetranslation{sketch of proof}{esquisse de preuve} \providetranslation{sketch of proofs}{esquisse de preuves} \providetranslation{Propositions}{Propositions} \providetranslation{propositions}{propositions} \providetranslation{Proposition}{Proposition} \providetranslation{proposition}{proposition} \providetranslation{Remarks}{Remarques} \providetranslation{remarks}{remarques} \providetranslation{Remark}{Remarque} \providetranslation{remark}{remarque} \providetranslation{Solutions}{Solutions} \providetranslation{solutions}{solutions} \providetranslation{Solution}{Solution} \providetranslation{solution}{solution} \providetranslation{Theorems}{Th\'eor\`emes} \providetranslation{theorems}{th\'eor\`emes} \providetranslation{Theorem}{Th\'eor\`eme} \providetranslation{theorem}{th\'eor\`eme} ././@LongLink0000000000000000000000000000014600000000000011566 Lustar rootrootbeamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-English.dictbeamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-English.dic0000644000175000017500000000670312050430506034135 0ustar mohuramohura\ProvidesDictionary{translator-theorem-dictionary}{English} \providetranslation{Comments}{Comments} \providetranslation{comments}{comments} \providetranslation{Comment}{Comment} \providetranslation{comment}{comment} \providetranslation{Corollaries}{Corollaries} \providetranslation{corollaries}{corollaries} \providetranslation{Corollary}{Corollary} \providetranslation{corollary}{corollary} \providetranslation{Definitions}{Definitions} \providetranslation{definitions}{definitions} \providetranslation{Definition}{Definition} \providetranslation{definition}{definition} \providetranslation{Examples}{Examples} \providetranslation{examples}{examples} \providetranslation{Example}{Example} \providetranslation{example}{example} \providetranslation{Exercises}{Exercises} \providetranslation{exercises}{exercises} \providetranslation{Exercise}{Exercise} \providetranslation{exercise}{exercise} \providetranslation{Facts}{Facts} \providetranslation{facts}{facts} \providetranslation{Fact}{Fact} \providetranslation{fact}{fact} \providetranslation{Key Lemmas}{Key Lemmas} \providetranslation{key lemmas}{key lemmas} \providetranslation{Key Lemma}{Key Lemma} \providetranslation{key lemma}{key lemma} \providetranslation{Key Observations}{Key Observations} \providetranslation{key observations}{key observations} \providetranslation{Key Observation}{Key Observation} \providetranslation{key observation}{key observation} \providetranslation{Lemmas}{Lemmas} \providetranslation{lemmas}{lemmas} \providetranslation{Lemma}{Lemma} \providetranslation{lemma}{lemma} \providetranslation{Main Theorems}{Main Theorems} \providetranslation{main theorems}{main theorems} \providetranslation{Main Theorem}{Main Theorem} \providetranslation{main theorem}{main theorem} \providetranslation{Observations}{Observations} \providetranslation{observations}{observations} \providetranslation{Observation}{Observation} \providetranslation{observation}{observation} \providetranslation{Problems}{Problems} \providetranslation{problems}{problems} \providetranslation{Problem}{Problem} \providetranslation{problem}{problem} \providetranslation{Proofs}{Proofs} \providetranslation{proofs}{proofs} \providetranslation{Proof}{Proof} \providetranslation{proof}{proof} \providetranslation{Proof Sketch}{Proof Sketch} \providetranslation{Proof sketch}{Proof sketch} \providetranslation{proof sketch}{proof sketch} \providetranslation{Proof Sketches}{Proof Sketches} \providetranslation{Proof sketches}{Proof sketches} \providetranslation{proof sketches}{proof sketches} \providetranslation{Sketch of Proof}{Sketch of Proof} \providetranslation{Sketch of Proofs}{Sketch of Proofs} \providetranslation{Sketch of proof}{Sketch of proof} \providetranslation{Sketch of proofs}{Sketch of proofs} \providetranslation{sketch of proof}{sketch of proof} \providetranslation{sketch of proofs}{sketch of proofs} \providetranslation{Propositions}{Propositions} \providetranslation{propositions}{propositions} \providetranslation{Proposition}{Proposition} \providetranslation{proposition}{proposition} \providetranslation{Remarks}{Remarks} \providetranslation{remarks}{remarks} \providetranslation{Remark}{Remark} \providetranslation{remark}{remark} \providetranslation{Solutions}{Solutions} \providetranslation{solutions}{solutions} \providetranslation{Solution}{Solution} \providetranslation{solution}{solution} \providetranslation{Theorems}{Theorems} \providetranslation{theorems}{theorems} \providetranslation{Theorem}{Theorem} \providetranslation{theorem}{theorem} ././@LongLink0000000000000000000000000000014600000000000011566 Lustar rootrootbeamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Spanish.dictbeamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Spanish.dic0000644000175000017500000000725412050430506034153 0ustar mohuramohura\ProvidesDictionary{translator-theorem-dictionary}{Spanish} \providetranslation{Comments}{Comentarios} \providetranslation{comments}{comentarios} \providetranslation{Comment}{Comentario} \providetranslation{comment}{comentario} \providetranslation{Corollaries}{Corolarios} \providetranslation{corollaries}{corolarios} \providetranslation{Corollary}{Corolario} \providetranslation{corollary}{corolario} \providetranslation{Definitions}{Definiciones} \providetranslation{definitions}{definiciones} \providetranslation{Definition}{Definición} \providetranslation{definition}{definición} \providetranslation{Examples}{Ejemplos} \providetranslation{examples}{ejemplos} \providetranslation{Example}{Ejemplo} \providetranslation{example}{ejemplo} \providetranslation{Exercises}{Ejercicios} \providetranslation{exercises}{ejercicios} \providetranslation{Exercise}{Ejercicio} \providetranslation{exercise}{ejercicio} \providetranslation{Facts}{Hechos} \providetranslation{facts}{hechos} \providetranslation{Fact}{Hecho} \providetranslation{fact}{hecho} \providetranslation{Key Lemmas}{Lemas Clave} \providetranslation{key lemmas}{lemas clave} \providetranslation{Key Lemma}{Lema Clave} \providetranslation{key lemma}{lema clave} \providetranslation{Key Observations}{Observaciones Clave} \providetranslation{key observations}{observaciones clave} \providetranslation{Key Observation}{Observación Clave} \providetranslation{key observation}{observación clave} \providetranslation{Lemmas}{Lemas} \providetranslation{lemmas}{lemas} \providetranslation{Lemma}{Lema} \providetranslation{lemma}{lema} \providetranslation{Main Theorems}{Teoremas Principales} \providetranslation{main theorems}{teoremas principales} \providetranslation{Main Theorem}{Teorema Principal} \providetranslation{main theorem}{teorema principal} \providetranslation{Observations}{Observaciones} \providetranslation{observations}{observaciones} \providetranslation{Observation}{Observación} \providetranslation{observation}{observación} \providetranslation{Problems}{Problemas} \providetranslation{problems}{problemas} \providetranslation{Problem}{Problema} \providetranslation{problem}{problema} \providetranslation{Proofs}{Demostraciones} \providetranslation{proofs}{demostraciones} \providetranslation{Proof}{Demostración} \providetranslation{proof}{demostración} \providetranslation{Proof Sketch}{Esbozo de Demostración} \providetranslation{Proof sketch}{Esbozo de demostración} \providetranslation{proof sketch}{esbozo de demostración} \providetranslation{Proof Sketches}{Esbozos de Demostración} \providetranslation{Proof sketches}{esbozos de demostración} \providetranslation{proof sketches}{esbozos de demostración} \providetranslation{Sketch of Proof}{Esbozo de Demostración} \providetranslation{Sketch of Proofs}{Esbozo de Demostraciones} \providetranslation{Sketch of proof}{Esbozo de demostración} \providetranslation{Sketch of proofs}{Esbozo de demostraciones} \providetranslation{sketch of proof}{esbozo de demostración} \providetranslation{sketch of proofs}{esbozo de demostraciones} \providetranslation{Propositions}{Proposiciones} \providetranslation{propositions}{proposiciones} \providetranslation{Proposition}{Proposición} \providetranslation{proposition}{proposición} \providetranslation{Remarks}{Comentarios} \providetranslation{remarks}{comentarios} \providetranslation{Remark}{Comentario} \providetranslation{remark}{comentario} \providetranslation{Solutions}{Soluciones} \providetranslation{solutions}{soluciones} \providetranslation{Solution}{Solución} \providetranslation{solution}{solución} \providetranslation{Theorems}{Teoremas} \providetranslation{theorems}{teoremas} \providetranslation{Theorem}{Teorema} \providetranslation{theorem}{teorema} beamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Greek.dict0000644000175000017500000000760412050430506033766 0ustar mohuramohura% Antonis Tsolomitis % University of the Aegean % Department of Mathematics % Laboratory of Digital Typography % and Mathematical Applications % 83200 Karlovassi, Samos % Greece \ProvidesDictionary{translator-theorem-dictionary}{Greek} \providetranslation{Comments}{Sq'olia} \providetranslation{comments}{sq'olia} \providetranslation{Comment}{Sq'olio} \providetranslation{comment}{sq'olio} \providetranslation{Corollaries}{Por'ismata} \providetranslation{corollaries}{por'ismata} \providetranslation{Corollary}{P'orisma} \providetranslation{corollary}{p'orisma} \providetranslation{Definitions}{Orismo'i} \providetranslation{definitions}{orismo'i} \providetranslation{Definition}{Orism'oc} \providetranslation{definition}{orism'oc} \providetranslation{Examples}{Parade'igmata} \providetranslation{examples}{parade'igmata} \providetranslation{Example}{Par'adeigma} \providetranslation{example}{par'adeigma} \providetranslation{Exercises}{Ask'hseic} \providetranslation{exercises}{ask'hseic} \providetranslation{Exercise}{'Askhsh} \providetranslation{exercise}{'askhsh} \providetranslation{Facts}{Isq'uoun ta exe'ic:} \providetranslation{facts}{isq'uoun ta exe'ic:} \providetranslation{Fact}{Isq'uei to exe'ic:} \providetranslation{fact}{isq'uei to exe'ic:} \providetranslation{Key Lemmas}{Basik'a L'hmmata} \providetranslation{key lemmas}{basik'a l'hmmata} \providetranslation{Key Lemma}{Basik'o L'hmma} \providetranslation{key lemma}{basik'o l'hmma} \providetranslation{Key Observations}{Basik'ec Parathr'hseic} \providetranslation{key observations}{basik'ec parathr'hseic} \providetranslation{Key Observation}{Basik'h Parat'hrhsh} \providetranslation{key observation}{basik'h parat'hrhsh} \providetranslation{Lemmas}{L'hmmata} \providetranslation{lemmas}{l'hmmata} \providetranslation{Lemma}{L'hmma} \providetranslation{lemma}{l'hmma} \providetranslation{Main Theorems}{K'uria Jewr'hmata} \providetranslation{main theorems}{k'uria jewr'hmata} \providetranslation{Main Theorem}{K'urio Je'wrhma} \providetranslation{main theorem}{k'urio je'wrhma} \providetranslation{Observations}{Parathr'hseic} \providetranslation{observations}{parathr'hseic} \providetranslation{Observation}{Parat'hrhsh} \providetranslation{observation}{parat'hrhsh} \providetranslation{Problems}{Probl'hmata} \providetranslation{problems}{probl'hmata} \providetranslation{Problem}{Pr'oblhma} \providetranslation{problem}{pr'oblhma} \providetranslation{Proofs}{Apode'ixeic} \providetranslation{proofs}{apode'ixeic} \providetranslation{Proof}{Ap'odeixh} \providetranslation{proof}{ap'odeixh} \providetranslation{Proof Sketch}{Skiagr'afhsh Ap'odeixhc} \providetranslation{Proof sketch}{Skiagr'afhsh ap'odeixhc} \providetranslation{proof sketch}{skiagr'afhsh ap'odeixhc} \providetranslation{Proof Sketches}{Skiagraf'hmata Apode'ixewn} \providetranslation{Proof sketches}{Skiagraf'hmata apode'ixewn} \providetranslation{proof sketches}{skiagraf'hmata apode'ixewn} \providetranslation{Sketch of Proof}{Skiagr'afhsh Ap'odeixhc} \providetranslation{Sketch of Proofs}{Skiagr'afhsh Apode'ixewn} \providetranslation{Sketch of proof}{Skiagr'afhsh ap'odeixhc} \providetranslation{Sketch of proofs}{Skiagr'afhsh apode'ixewn} \providetranslation{sketch of proof}{skiagr'afhsh ap'odeixhc} \providetranslation{sketch of proofs}{skiagr'afhsh apode'ixewn} \providetranslation{Propositions}{Prot'aseic} \providetranslation{propositions}{prot'aseic} \providetranslation{Proposition}{Pr'otash} \providetranslation{proposition}{pr'otash} \providetranslation{Remarks}{Parathr'hseic} \providetranslation{remarks}{parathr'hseic} \providetranslation{Remark}{Parat'hrhsh} \providetranslation{remark}{parat'hrhsh} \providetranslation{Solutions}{L'useic} \providetranslation{solutions}{l'useic} \providetranslation{Solution}{L'ush} \providetranslation{solution}{l'ush} \providetranslation{Theorems}{Jewr'hmata} \providetranslation{theorems}{jewr'hmata} \providetranslation{Theorem}{Je'wrhma} \providetranslation{theorem}{je'wrhma} beamer/base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Polish.dict0000644000175000017500000000726312050430506034170 0ustar mohuramohura\ProvidesDictionary{translator-theorem-dictionary}{Polish} %Translated by Stanis\l{}aw Polak (http://www.icsr.agh.edu.pl/~polak/) \providetranslation{Comments}{Komentarze} \providetranslation{comments}{komentarze} \providetranslation{Comment}{Komentarz} \providetranslation{comment}{komentarz} \providetranslation{Corollaries}{Wnioski} \providetranslation{corollaries}{wnioski} \providetranslation{Corollary}{Wniosek} \providetranslation{corollary}{wniosek} \providetranslation{Definitions}{Definicje} \providetranslation{definitions}{definicje} \providetranslation{Definition}{Definicja} \providetranslation{definition}{definicja} \providetranslation{Examples}{Przyk\l{}ady} \providetranslation{examples}{przyk\l{}ady} \providetranslation{Example}{Przyk\l{}ad} \providetranslation{example}{przyk\l{}ad} \providetranslation{Exercises}{Przyk\l{}ady} \providetranslation{exercises}{przyk\l{}ady} \providetranslation{Exercise}{Przyk\l{}ad} \providetranslation{exercise}{przyk\l{}ad} \providetranslation{Facts}{Fakty} \providetranslation{facts}{fakty} \providetranslation{Fact}{Fakt} \providetranslation{fact}{fakt} \providetranslation{Key Lemmas}{Kluczowe Lematy} \providetranslation{key lemmas}{kluczowe lematy} \providetranslation{Key Lemma}{Kluczowy Lemat} \providetranslation{key lemma}{kluczowy lemat} \providetranslation{Key Observations}{Kluczowe Spostrze\.{z}enia} \providetranslation{key observations}{kluczowe spostrze\.{z}enia} \providetranslation{Key Observation}{Kluczowe Spostrze\.{z}enie} \providetranslation{key observation}{kluczowe spostrze\.{z}enie} \providetranslation{Lemmas}{Lematy} \providetranslation{lemmas}{lematy} \providetranslation{Lemma}{Lemat} \providetranslation{lemma}{lemat} \providetranslation{Main Theorems}{G\l{}\'{o}wne Twierdzenia} \providetranslation{main theorems}{g\l{}\'{o}wne twierdzenia} \providetranslation{Main Theorem}{G\l{}\'{o}wne Twierdzenie} \providetranslation{main theorem}{g\l{}\'{o}wne twierdzenie} \providetranslation{Observations}{Spostrze\.{z}enia} \providetranslation{observations}{spostrze\.{z}enia} \providetranslation{Observation}{Spostrze\.{z}enie} \providetranslation{observation}{spostrze\.{z}enie} \providetranslation{Problems}{Problemy} \providetranslation{problems}{problemy} \providetranslation{Problem}{Problem} \providetranslation{problem}{problem} \providetranslation{Proofs}{Dowody} \providetranslation{proofs}{dowody} \providetranslation{Proof}{Dow\'{o}d} \providetranslation{proof}{dow\'{o}d} \providetranslation{Proof Sketch}{Szkic Dowodu} \providetranslation{Proof sketch}{Szkic dowodu} \providetranslation{proof sketch}{szkic dowodu} \providetranslation{Proof Sketches}{Szkice Dowod\'{o}w} \providetranslation{Proof sketches}{Szkice dowod\'{o}w} \providetranslation{proof sketches}{szkice dowod\'{o}w} \providetranslation{Sketch of Proof}{Szkic Dowodu} \providetranslation{Sketch of Proofs}{Szkic Dowod\'{o}w} \providetranslation{Sketch of proof}{Szkic dowodu} \providetranslation{Sketch of proofs}{Szkic dowod\'{o}w} \providetranslation{sketch of proof}{szkic dowodu} \providetranslation{sketch of proofs}{szkic dowod\'{o}w} \providetranslation{Propositions}{Tezy} \providetranslation{propositions}{tezy} \providetranslation{Proposition}{Teza} \providetranslation{proposition}{teza} \providetranslation{Remarks}{Uwagi} \providetranslation{remarks}{uwagi} \providetranslation{Remark}{Uwaga} \providetranslation{remark}{uwaga} \providetranslation{Solutions}{Rozwi\k{a}zania} \providetranslation{solutions}{rozwi\k{a}zania} \providetranslation{Solution}{Rozwi\k{a}zanie} \providetranslation{solution}{rozwi\k{a}zanie} \providetranslation{Theorems}{Twierdzenia} \providetranslation{theorems}{twierdzenia} \providetranslation{Theorem}{Twierdzenie} \providetranslation{theorem}{twierdzenie} beamer/base/translator/dicts/translator-basic-dictionary/0000755000175000017500000000000012050430506023500 5ustar mohuramohurabeamer/base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Croatian.dict0000644000175000017500000000670112050430506033522 0ustar mohuramohura\ProvidesDictionary{translator-basic-dictionary}{Croatian} %Translated by Vedran Mileti\'c \providetranslation{Abstract}{Sa\v zetak} \providetranslation{Addresses}{Adrese} \providetranslation{addresses}{adrese} \providetranslation{Address}{Adresa} \providetranslation{address}{adresa} \providetranslation{and}{i} \providetranslation{Appendix}{Dodatak} \providetranslation{Authors}{Autori} \providetranslation{authors}{autori} \providetranslation{Author}{Autor} \providetranslation{author}{autor} \providetranslation{Bibliography}{Bibliografija} \providetranslation{cc}{Kopija} \providetranslation{Chapters}{Poglavlja} \providetranslation{chapters}{poglavlja} \providetranslation{Chapter}{Poglavlje} \providetranslation{chapter}{poglavlje} \providetranslation{Conclusion}{Zaklju\v cak} \providetranslation{conclusion}{zaklju\v cak} \providetranslation{Contents}{Sadr\v zaj} \providetranslation{Continuation}{Nastavak} \providetranslation{continuation}{nastavak} \providetranslation{cont}{nast} \providetranslation{encl (plural)}{Prilozi} \providetranslation{encl (singular)}{Prilog} \providetranslation{encl}{Prilog/zi} \providetranslation{Figures}{Slike} \providetranslation{figures}{slike} \providetranslation{Figure}{Slika} \providetranslation{figure}{slika} \providetranslation{From}{Od} \providetranslation{from}{od} \providetranslation{Glossary}{Rje\v cnik} \providetranslation{Index}{Indeks pojmova} \providetranslation{Introduction}{Uvod} \providetranslation{introduction}{uvod} \providetranslation{List of Figures and Tables}{Popis slika i tablica} \providetranslation{List of Figures}{Popis slika} \providetranslation{List of Tables}{Popis tablica} \providetranslation{or}{ili} \providetranslation{Outline}{Sadržaj} % FIXME: unsure \providetranslation{Overview}{Pregled} \providetranslation{Pages}{Stranice} \providetranslation{pages}{stranice} \providetranslation{Page}{Stranica} \providetranslation{page}{stranica} \providetranslation{Paragraphs}{Paragrafi} \providetranslation{paragraphs}{paragrafi} \providetranslation{Paragraph}{Paragraf} \providetranslation{paragraph}{paragraf} \providetranslation{Parts}{Dijelovi} \providetranslation{parts}{dijelovi} \providetranslation{Part}{Dio} \providetranslation{part}{dio} \providetranslation{Preface}{Predgovor} \providetranslation{Proofs}{Dokazi} \providetranslation{proofs}{dokazi} \providetranslation{Proof}{Dokaz} \providetranslation{proof}{dokaz} \providetranslation{References}{Literatura} \providetranslation{Related work}{Povezani radovi} \providetranslation{Related Work}{Povezani Radovi} \providetranslation{Sections}{Odjeljci} \providetranslation{sections}{odjeljci} \providetranslation{Section}{Odjeljak} \providetranslation{section}{odjeljak} \providetranslation{See also}{Vidjeti i} \providetranslation{see also}{vidjeti i} \providetranslation{See}{Vidjeti} \providetranslation{see}{vidjeti} \providetranslation{Sketch of Proofs}{Skica Dokaza} \providetranslation{Sketch of proofs}{Skica dokaza} \providetranslation{Sketch of Proof}{Skica Dokaza} \providetranslation{Sketch of proof}{Skica dokaza} \providetranslation{Subsections}{Pododjeljci} \providetranslation{subsections}{pododjeljci} \providetranslation{Subsection}{Pododjeljak} \providetranslation{subsection}{pododjeljak} \providetranslation{Summary}{Sa\v zetak} \providetranslation{Tables}{Tablice} \providetranslation{tables}{tablice} \providetranslation{Table}{Tablica} \providetranslation{table}{tablica} \providetranslation{To}{Za} \providetranslation{to}{za} beamer/base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-German.dict0000644000175000017500000000676112050430506033201 0ustar mohuramohura\ProvidesDictionary{translator-basic-dictionary}{German} \providetranslation{Abstract}{Zusammenfassung} \providetranslation{Addresses}{Adressen} \providetranslation{addresses}{Adressen} \providetranslation{Address}{Adresse} \providetranslation{address}{Adresse} \providetranslation{and}{und} \providetranslation{Appendix}{Anhang} \providetranslation{Authors}{Autoren} \providetranslation{authors}{Autoren} \providetranslation{Author}{Autor} \providetranslation{author}{Autor} \providetranslation{Bibliography}{Literaturverzeichnis} \providetranslation{cc}{Verteiler} \providetranslation{Chapters}{Kapitel} \providetranslation{chapters}{Kapitel} \providetranslation{Chapter}{Kapitel} \providetranslation{chapter}{Kapitel} \providetranslation{Conclusion}{Zusammenfassung} \providetranslation{conclusion}{Zusammenfassung} \providetranslation{Contents}{Inhaltsverzeichnis} \providetranslation{Continuation}{Fortsetzung} \providetranslation{continuation}{Fortsetzung} \providetranslation{cont}{Forts} \providetranslation{encl (plural)}{Anlagen} \providetranslation{encl (singular)}{Anlage} \providetranslation{encl}{Anlage(n)} \providetranslation{Figures}{Abbildungen} \providetranslation{figures}{Abbildungen} \providetranslation{Figure}{Abbildung} \providetranslation{figure}{Abbildung} \providetranslation{From}{Von} \providetranslation{from}{von} \providetranslation{Glossary}{Glossar} \providetranslation{Index}{Index} \providetranslation{Introduction}{Einleitung} \providetranslation{introduction}{Einleitung} \providetranslation{List of Figures and Tables}{Abbildungs- und Tabellenverzeichnis} \providetranslation{List of Figures}{Abbildungsverzeichnis} \providetranslation{List of Tables}{Tabellenverzeichnis} \providetranslation{or}{oder} \providetranslation{Outline}{Gliederung} \providetranslation{Overview}{\"Uber\-sicht} \providetranslation{Pages}{Seiten} \providetranslation{pages}{Seiten} \providetranslation{Page}{Seite} \providetranslation{page}{Seite} \providetranslation{Paragraphs}{Ab\-s\"at\-ze} \providetranslation{paragraphs}{Ab\-s\"at\-ze} \providetranslation{Paragraph}{Absatz} \providetranslation{paragraph}{Absatz} \providetranslation{Parts}{Teile} \providetranslation{parts}{Teile} \providetranslation{Part}{Teil} \providetranslation{part}{Teil} \providetranslation{Preface}{Vorwort} \providetranslation{Proofs}{Beweise} \providetranslation{proofs}{Beweise} \providetranslation{Proof}{Beweis} \providetranslation{proof}{Beweis} \providetranslation{References}{Literatur} \providetranslation{Related work}{Verwandte Arbeiten} \providetranslation{Related Work}{Verwandte Arbeiten} \providetranslation{Sections}{Abschnitte} \providetranslation{sections}{Abschnitte} \providetranslation{Section}{Abschnitt} \providetranslation{section}{Abschnitt} \providetranslation{See also}{Siehe auch} \providetranslation{see also}{siehe auch} \providetranslation{See}{Siehe} \providetranslation{see}{siehe} \providetranslation{Sketch of Proofs}{Beweisskizzen} \providetranslation{Sketch of proofs}{Beweisskizzen} \providetranslation{Sketch of Proof}{Beweisskizze} \providetranslation{Sketch of proof}{Beweisskizze} \providetranslation{Subsections}{Unterabschnitte} \providetranslation{subsections}{Unterabschnitte} \providetranslation{Subsection}{Unterabschnitt} \providetranslation{subsection}{Unterabschnitt} \providetranslation{Summary}{Zusammenfassung} \providetranslation{Tables}{Tabellen} \providetranslation{tables}{Tabellen} \providetranslation{Table}{Tabelle} \providetranslation{table}{Tabelle} \providetranslation{To}{An} \providetranslation{to}{an} beamer/base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Brazilian.dict0000644000175000017500000000502012050430506033666 0ustar mohuramohura% translated by Miguel Frasson \ProvidesDictionary{translator-basic-dictionary}{brazil} \providetranslation{Abstract}{Resumo} \providetranslation{Addresses}{Endere\c cos} \providetranslation{addresses}{endere\c cos} \providetranslation{Address}{Endere\c co} \providetranslation{address}{endere\c co} \providetranslation{and}{e} \providetranslation{Appendix}{Ap\^edice} \providetranslation{Authors}{Autorers} \providetranslation{authors}{autores} \providetranslation{Author}{Author} \providetranslation{author}{author} \providetranslation{Bibliography}{Bibliografia} \providetranslation{cc}{C\'opia a} \providetranslation{Chapters}{Cap\'itulos} \providetranslation{chapters}{cap\'itulos} \providetranslation{Chapter}{Cap\'itulo} \providetranslation{chapter}{cap\'itulos} \providetranslation{Conclusion}{Conclus\~ao} \providetranslation{conclusion}{conclus\~ao} \providetranslation{Contents}{Sum\'ario} \providetranslation{Continuation}{Continua\c c\~ao} \providetranslation{continuation}{continua\c c\~ao} \providetranslation{cont}{cont} \providetranslation{encl (plural)}{anexos}% ?? \providetranslation{encl (singular)}{anexo}% ?? \providetranslation{encl}{anexo}% ?? \providetranslation{Figures}{Figuras} \providetranslation{figures}{figuras} \providetranslation{Figure}{Figura} \providetranslation{figure}{figura} \providetranslation{From}{De} \providetranslation{from}{de} \providetranslation{Glossary}{Gloss\'ario} \providetranslation{Index}{\'Indice} \providetranslation{Introduction}{Introdu\c c\~ao} \providetranslation{introduction}{introdu\c c\~ao} \providetranslation{List of Figures and Tables}{Lista de Figuras e Tabelas} \providetranslation{List of Figures}{Lista de Figuras} \providetranslation{List of Tables}{Lista de Tabelas} \providetranslation{or}{ou} \providetranslation{Outline}{Rascunho} \providetranslation{Overview}{Vis\~ao geral}% ? \providetranslation{Pages}{P\'aginas} \providetranslation{pages}{p\'aginas} \providetranslation{Page}{P\'agina} \providetranslation{page}{p\'agina} \providetranslation{Paragraphs}{Par\'agrafos} \providetranslation{paragraphs}{par\'agrafos} \providetranslation{Paragraph}{Par\'agrafo} \providetranslation{paragraph}{par\'agrafo} \providetranslation{Parts}{Partes} \providetranslation{parts}{partes} \providetranslation{Part}{Parte} \providetranslation{part}{parte} \providetranslation{Preface}{Pref\'acio} \providetranslation{Proofs}{Demonstra\c c\~oes} \providetranslation{proofs}{demonstra\c c\~oes} \providetranslation{Proof}{Demonstra\c c\~ao} \providetranslation{proof}{demonstra\c c\~ao} beamer/base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-French.dict0000644000175000017500000000675012050430506033173 0ustar mohuramohura\ProvidesDictionary{translator-basic-dictionary}{French} \providetranslation{Abstract}{R\'esum\'e} \providetranslation{Addresses}{Adresses} \providetranslation{addresses}{adresses} \providetranslation{Address}{Adresse} \providetranslation{address}{adresse} \providetranslation{and}{et} \providetranslation{Appendix}{Annexe} \providetranslation{Authors}{Auteurs} \providetranslation{authors}{auteur} \providetranslation{Author}{Auteur} \providetranslation{author}{auteur} \providetranslation{Bibliography}{Bibliographie} \providetranslation{cc}{Copie \`a } \providetranslation{Chapters}{Chapitres} \providetranslation{chapters}{chapitres} \providetranslation{Chapter}{Chapitre} \providetranslation{chapter}{chapitre} \providetranslation{Conclusion}{Conclusion} \providetranslation{conclusion}{conclusion} \providetranslation{Contents}{Contenu} \providetranslation{Continuation}{Suite} \providetranslation{continuation}{suite} \providetranslation{cont}{suite} % FIXME: unsure \providetranslation{encl (plural)}{P.~J.} \providetranslation{encl (singular)}{P.~J.} \providetranslation{encl}{P.~J.} \providetranslation{Figures}{Figures} \providetranslation{figures}{figures} \providetranslation{Figure}{Figure} \providetranslation{figure}{figure} \providetranslation{From}{De} \providetranslation{from}{de} \providetranslation{Glossary}{Glossaire} \providetranslation{Index}{Index} \providetranslation{Introduction}{Introduction} \providetranslation{introduction}{introduction} \providetranslation{List of Figures and Tables}{Liste des figures et des tableaux} \providetranslation{List of Figures}{Liste des figures} \providetranslation{List of Tables}{Liste des tableaux} \providetranslation{or}{ou} \providetranslation{Outline}{Plan} \providetranslation{Overview}{Sommaire} \providetranslation{Pages}{Pages} \providetranslation{pages}{pages} \providetranslation{Page}{Page} \providetranslation{page}{page} \providetranslation{Paragraphs}{Paragraphes} \providetranslation{paragraphs}{paragraphes} \providetranslation{Paragraph}{Paragraphe} \providetranslation{paragraph}{paragraphe} \providetranslation{Parts}{Parties} \providetranslation{parts}{parties} \providetranslation{Part}{Partie} \providetranslation{part}{partie} \providetranslation{Preface}{Pr\'eface} \providetranslation{Proofs}{D\'emonstrations} \providetranslation{proofs}{d\'emonstrations} \providetranslation{Proof}{D\'emonstration} \providetranslation{proof}{d\'emonstration} \providetranslation{References}{R\'ef\'erences} \providetranslation{Related work}{travaux connexes} \providetranslation{Related Work}{Travaux connexes} \providetranslation{Sections}{Sections} \providetranslation{sections}{sections} \providetranslation{Section}{Section} \providetranslation{section}{section} \providetranslation{See also}{Voir aussi} \providetranslation{see also}{voir aussi} \providetranslation{See}{Voir} \providetranslation{see}{voir} \providetranslation{Sketch of Proofs}{Esquisse de preuves} \providetranslation{Sketch of proofs}{Esquisse de preuves} \providetranslation{Sketch of Proof}{Esquisse de preuve} \providetranslation{Sketch of proof}{Esquisse de preuve} \providetranslation{Subsections}{Sous-sections} \providetranslation{subsections}{sous-sections} \providetranslation{Subsection}{Sous-section} \providetranslation{subsection}{sous-section} \providetranslation{Summary}{R\'esum\'e} \providetranslation{Tables}{Tables} \providetranslation{tables}{tables} \providetranslation{Table}{Table} \providetranslation{table}{table} \providetranslation{To}{Vers}%?? \providetranslation{to}{vers}%?? beamer/base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Polish.dict0000644000175000017500000000704712050430506033224 0ustar mohuramohura\ProvidesDictionary{translator-basic-dictionary}{Polish} %Translated by Stanis\l{}aw Polak (http://www.icsr.agh.edu.pl/~polak/) \providetranslation{Abstract}{Streszczenie} \providetranslation{Addresses}{Adresy} \providetranslation{addresses}{adresy} \providetranslation{Address}{Adres} \providetranslation{address}{adres} \providetranslation{and}{i} \providetranslation{Appendix}{Dodatek} \providetranslation{Authors}{Autorzy} \providetranslation{authors}{autorzy} \providetranslation{Author}{Autor} \providetranslation{author}{autor} \providetranslation{Bibliography}{Bibliografia} \providetranslation{cc}{dw} \providetranslation{Chapters}{Rozdzia\l{}y} \providetranslation{chapters}{rozdzia\l{}y} \providetranslation{Chapter}{Rozdzia\l{}} \providetranslation{chapter}{rozdzia\l{}} \providetranslation{Conclusion}{Konkluzja} \providetranslation{conclusion}{konkluzja} \providetranslation{Contents}{zawarto\'{s}\'{c}} \providetranslation{Continuation}{Kontynuacja} \providetranslation{continuation}{kontynuacja} \providetranslation{cont}{kont} % FIXME: unsure \providetranslation{encl (plural)}{za\l{}} \providetranslation{encl (singular)}{za\l{}} \providetranslation{encl}{za\l{}} \providetranslation{Figures}{Rysunki} \providetranslation{figures}{rysunki} \providetranslation{Figure}{Rysunek} \providetranslation{figure}{rysunek} \providetranslation{From}{Od} \providetranslation{from}{od} \providetranslation{Glossary}{Glosariusz} \providetranslation{Index}{Indeks} \providetranslation{Introduction}{Wprowadzenie} \providetranslation{introduction}{wprowadzenie} \providetranslation{List of Figures and Tables}{Spis Rysunk\'{o}w i Tabel} \providetranslation{List of Figures}{Spis Rysunk\'{o}w} \providetranslation{List of Tables}{Spis Tabel} \providetranslation{or}{lub} \providetranslation{Outline}{Zarys} \providetranslation{Overview}{Przegl\k{a}d} \providetranslation{Pages}{Strony} \providetranslation{pages}{strony} \providetranslation{Page}{Strona} \providetranslation{page}{strona} \providetranslation{Paragraphs}{Akapity} \providetranslation{paragraphs}{akapity} \providetranslation{Paragraph}{Akapit} \providetranslation{paragraph}{akapit} \providetranslation{Parts}{Cz\k{e}\'{s}ci} \providetranslation{parts}{cz\k{e}\'{s}ci} \providetranslation{Part}{Cz\k{e}\'{s}\'{c}} \providetranslation{part}{cz\k{e}\'{s}\'{c}} \providetranslation{Preface}{Przedmowa} \providetranslation{Proofs}{Dowody} \providetranslation{proofs}{dowody} \providetranslation{Proof}{Dow\'{o}d} \providetranslation{proof}{dow\'{o}d} \providetranslation{References}{Literatura} \providetranslation{Related work}{Zwi\k{a}zane z prac\k{a}} \providetranslation{Related Work}{Zwi\k{a}zane z Prac\k{a}} \providetranslation{Sections}{Sekcje} \providetranslation{sections}{sekcje} \providetranslation{Section}{Sekcja} \providetranslation{section}{sekcja} \providetranslation{See also}{Zobacz tak\.{z}e} \providetranslation{see also}{zobacz tak\.{z}e} \providetranslation{See}{Zobacz} \providetranslation{see}{zobacz} \providetranslation{Sketch of Proofs}{Szkic Dowod\'{o}w} \providetranslation{Sketch of proofs}{Szkic dowod\'{o}w} \providetranslation{Sketch of Proof}{Szkic Dowodu} \providetranslation{Sketch of proof}{Szkic dowodu} \providetranslation{Subsections}{Podsekcje} \providetranslation{subsections}{podsekcje} \providetranslation{Subsection}{Podsekcja} \providetranslation{subsection}{podsekcja} \providetranslation{Summary}{Podsumowanie} \providetranslation{Tables}{Tabele} \providetranslation{tables}{tabele} \providetranslation{Table}{Tabela} \providetranslation{table}{tabela} \providetranslation{To}{Do} \providetranslation{to}{do} beamer/base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Nynorsk.dict0000644000175000017500000000640012050430506033421 0ustar mohuramohura\ProvidesDictionary{translator-basic-dictionary}{Nynorsk} \providetranslation{Abstract}{Samandrag} \providetranslation{Addresses}{Adresser} \providetranslation{addresses}{adresser} \providetranslation{Address}{Adresse} \providetranslation{address}{adresse} \providetranslation{and}{og} \providetranslation{Appendix}{Tillegg} \providetranslation{Authors}{Forfattarar} \providetranslation{authors}{forfattarar} \providetranslation{Author}{Forfattar} \providetranslation{author}{forfattar} \providetranslation{Bibliography}{Litteratur} \providetranslation{cc}{Kopi til} \providetranslation{Chapters}{Kapittel} \providetranslation{chapters}{kapittel} \providetranslation{Chapter}{Kapittel} \providetranslation{chapter}{kapittel} \providetranslation{Conclusion}{Konklusjon} \providetranslation{conclusion}{konklusjon} \providetranslation{Contents}{Innhald} \providetranslation{encl (plural)}{Vedlegg} \providetranslation{encl (singular)}{Vedlegg} \providetranslation{encl}{Vedlegg} \providetranslation{Figures}{Figurar} \providetranslation{figures}{figurar} \providetranslation{Figure}{Figur} \providetranslation{figure}{figur} \providetranslation{From}{Fr{\aa}} \providetranslation{from}{fr{\aa}} \providetranslation{Glossary}{Ordliste} \providetranslation{Index}{Register} \providetranslation{Introduction}{Innleiing} \providetranslation{introduction}{innleiing} \providetranslation{List of Figures and Tables}{Figurar og tabellar} \providetranslation{List of Figures}{Figurar} \providetranslation{List of Tables}{Tabellar} \providetranslation{or}{eller} \providetranslation{Outline}{Disposisjon} \providetranslation{Overview}{Oversyn} \providetranslation{Pages}{Sider} \providetranslation{pages}{sider} \providetranslation{Page}{Side} \providetranslation{page}{side} \providetranslation{Paragraphs}{Avsnitt} \providetranslation{paragraphs}{avsnitt} \providetranslation{Paragraph}{Avsnitt} \providetranslation{paragraph}{avsnitt} \providetranslation{Parts}{Delar} \providetranslation{parts}{delar} \providetranslation{Part}{Del} \providetranslation{part}{del} \providetranslation{Preface}{Forord} \providetranslation{Proofs}{Bevis} \providetranslation{proofs}{bevis} \providetranslation{Proof}{Bevis} \providetranslation{proof}{bevis} \providetranslation{References}{Referanser} \providetranslation{Related work}{Tilsvarande arbeid} \providetranslation{Related Work}{Tilsvarande arbeid} \providetranslation{Sections}{Avsnitt} \providetranslation{sections}{avsnitt} \providetranslation{Section}{Avsnitt} \providetranslation{section}{avsnitt} \providetranslation{See also}{Sj{\aa} \`{o}g} \providetranslation{see also}{sj{\aa} \`{o}g} \providetranslation{See}{Sj{\aa}} \providetranslation{see}{sj{\aa}} \providetranslation{Sketch of Proofs}{Bevisskisser} \providetranslation{Sketch of proofs}{Bevisskisser} \providetranslation{Sketch of Proof}{Bevisskisse} \providetranslation{Sketch of proof}{Bevisskisse} \providetranslation{Subsections}{Delavsnitt} \providetranslation{subsections}{delavsnitt} \providetranslation{Subsection}{Delavsnitt} \providetranslation{subsection}{delavsnitt} \providetranslation{Summary}{Oppsummering} \providetranslation{Tables}{Tabellar} \providetranslation{tables}{tabellar} \providetranslation{Table}{Tabell} \providetranslation{table}{tabell} \providetranslation{To}{Til} \providetranslation{to}{til} beamer/base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-English.dict0000644000175000017500000000655312050430506033360 0ustar mohuramohura\ProvidesDictionary{translator-basic-dictionary}{English} \providetranslation{Abstract}{Abstract} \providetranslation{Addresses}{Addresses} \providetranslation{addresses}{addresses} \providetranslation{Address}{Address} \providetranslation{address}{address} \providetranslation{and}{and} \providetranslation{Appendix}{Appendix} \providetranslation{Authors}{Authors} \providetranslation{authors}{authors} \providetranslation{Author}{Author} \providetranslation{author}{author} \providetranslation{Bibliography}{Bibliography} \providetranslation{cc}{cc} \providetranslation{Chapters}{Chapters} \providetranslation{chapters}{chapters} \providetranslation{Chapter}{Chapter} \providetranslation{chapter}{chapter} \providetranslation{Conclusion}{Conclusion} \providetranslation{conclusion}{conclusion} \providetranslation{Contents}{Contents} \providetranslation{Continuation}{Continuation} \providetranslation{continuation}{continuation} \providetranslation{cont}{cont} \providetranslation{encl (plural)}{encl} \providetranslation{encl (singular)}{encl} \providetranslation{encl}{encl} \providetranslation{Figures}{Figures} \providetranslation{figures}{figures} \providetranslation{Figure}{Figure} \providetranslation{figure}{figure} \providetranslation{From}{From} \providetranslation{from}{from} \providetranslation{Glossary}{Glossary} \providetranslation{Index}{Index} \providetranslation{Introduction}{Introduction} \providetranslation{introduction}{introduction} \providetranslation{List of Figures and Tables}{List of Figures and Tables} \providetranslation{List of Figures}{List of Figures} \providetranslation{List of Tables}{List of Tables} \providetranslation{or}{or} \providetranslation{Outline}{Outline} \providetranslation{Overview}{Overview} \providetranslation{Pages}{Pages} \providetranslation{pages}{pages} \providetranslation{Page}{Page} \providetranslation{page}{page} \providetranslation{Paragraphs}{Paragraphs} \providetranslation{paragraphs}{paragraphs} \providetranslation{Paragraph}{Paragraph} \providetranslation{paragraph}{paragraph} \providetranslation{Parts}{Parts} \providetranslation{parts}{parts} \providetranslation{Part}{Part} \providetranslation{part}{part} \providetranslation{Preface}{Preface} \providetranslation{Proofs}{Proofs} \providetranslation{proofs}{proofs} \providetranslation{Proof}{Proof} \providetranslation{proof}{proof} \providetranslation{References}{References} \providetranslation{Related work}{Related work} \providetranslation{Related Work}{Related Work} \providetranslation{Sections}{Sections} \providetranslation{sections}{sections} \providetranslation{Section}{Section} \providetranslation{section}{section} \providetranslation{See also}{See also} \providetranslation{see also}{see also} \providetranslation{See}{See} \providetranslation{see}{see} \providetranslation{Sketch of Proofs}{Sketch of Proofs} \providetranslation{Sketch of proofs}{Sketch of proofs} \providetranslation{Sketch of Proof}{Sketch of Proof} \providetranslation{Sketch of proof}{Sketch of proof} \providetranslation{Subsections}{Subsections} \providetranslation{subsections}{subsections} \providetranslation{Subsection}{Subsection} \providetranslation{subsection}{subsection} \providetranslation{Summary}{Summary} \providetranslation{Tables}{Tables} \providetranslation{tables}{tables} \providetranslation{Table}{Table} \providetranslation{table}{table} \providetranslation{To}{To} \providetranslation{to}{to} beamer/base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Serbian.dict0000644000175000017500000000661112050430506033345 0ustar mohuramohura\ProvidesDictionary{translator-basic-dictionary}{Serbian} %Translated by Zoran Filipovi\'c \providetranslation{Abstract}{Sa\v zetak} \providetranslation{Addresses}{Adrese} \providetranslation{addresses}{adrese} \providetranslation{Address}{Adresa} \providetranslation{address}{adresa} \providetranslation{and}{i} \providetranslation{Appendix}{Dodatak} \providetranslation{Authors}{Autori} \providetranslation{authors}{autori} \providetranslation{Author}{Autor} \providetranslation{author}{autor} \providetranslation{Bibliography}{Bibliografija} \providetranslation{cc}{Kopija} \providetranslation{Chapters}{Poglavlja} \providetranslation{chapters}{poglavlja} \providetranslation{Chapter}{Poglavlje} \providetranslation{chapter}{poglavlje} \providetranslation{Conclusion}{Zaklju\v cak} \providetranslation{conclusion}{zaklju\v cak} \providetranslation{Contents}{Sadr\v zaj} \providetranslation{Continuation}{Nastavak} \providetranslation{continuation}{nastavak} \providetranslation{cont}{nast} \providetranslation{encl (plural)}{Prilozi} \providetranslation{encl (singular)}{Prilog} \providetranslation{encl}{Prilog/zi} \providetranslation{Figures}{Slike} \providetranslation{figures}{slike} \providetranslation{Figure}{Slika} \providetranslation{figure}{slika} \providetranslation{From}{Iz} \providetranslation{from}{iz} \providetranslation{Glossary}{Mali re\v cnik} \providetranslation{Index}{Indeks pojmova} \providetranslation{Introduction}{Uvod} \providetranslation{introduction}{uvod} \providetranslation{List of Figures and Tables}{Spisak slika i tabela} \providetranslation{List of Figures}{Spisak slika} \providetranslation{List of Tables}{Spisak tabela} \providetranslation{or}{ili} \providetranslation{Outline}{Sadržaj} \providetranslation{Overview}{Pregled} \providetranslation{Pages}{Strane} \providetranslation{pages}{strane} \providetranslation{Page}{Strana} \providetranslation{page}{strana} \providetranslation{Paragraphs}{Pasusi} \providetranslation{paragraphs}{pasusi} \providetranslation{Paragraph}{Pasus} \providetranslation{paragraph}{pasus} \providetranslation{Parts}{Delovi} \providetranslation{parts}{delovi} \providetranslation{Part}{Deo} \providetranslation{part}{deo} \providetranslation{Preface}{Predgovor} \providetranslation{Proofs}{Dokazi} \providetranslation{proofs}{dokazi} \providetranslation{Proof}{Dokaz} \providetranslation{proof}{dokaz} \providetranslation{References}{Reference} \providetranslation{Related work}{Rad u vezi} \providetranslation{Related Work}{Rad u vezi} \providetranslation{Sections}{Odeljci} \providetranslation{sections}{odeljci} \providetranslation{Section}{Odeljak} \providetranslation{section}{odeljak} \providetranslation{See also}{Vidi tako\dj e} \providetranslation{see also}{vidi tako\dj e} \providetranslation{See}{Vidi} \providetranslation{see}{vidi} \providetranslation{Sketch of Proofs}{Skica Dokaza} \providetranslation{Sketch of proofs}{Skica dokaza} \providetranslation{Sketch of Proof}{Skica Dokaza} \providetranslation{Sketch of proof}{Skica dokaza} \providetranslation{Subsections}{Pododeljci} \providetranslation{subsections}{pododeljci} \providetranslation{Subsection}{Pododeljak} \providetranslation{subsection}{pododeljak} \providetranslation{Summary}{Rezime} \providetranslation{Tables}{Tabele} \providetranslation{tables}{tabele} \providetranslation{Table}{Tabela} \providetranslation{table}{tabela} \providetranslation{To}{U} \providetranslation{to}{u} beamer/base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Greek.dict0000644000175000017500000000735312050430506033023 0ustar mohuramohura% Antonis Tsolomitis % University of the Aegean % Department of Mathematics % Laboratory of Digital Typography % and Mathematical Applications % 83200 Karlovassi, Samos % Greece \ProvidesDictionary{translator-basic-dictionary}{Greek} \providetranslation{Abstract}{Per'ilhyh} \providetranslation{Addresses}{Diefj'unseic} \providetranslation{addresses}{diefj'unseic} \providetranslation{Address}{Di'efjunsh} \providetranslation{address}{di'efjunsh} \providetranslation{and}{kai} \providetranslation{Appendix}{Par'arthma} \providetranslation{Authors}{Suggrafe'ic} \providetranslation{authors}{suggrafe'ic} \providetranslation{Author}{Suggraf'eac} \providetranslation{author}{suggraf'eac} \providetranslation{Bibliography}{Bibliograf'ia} \providetranslation{cc}{koin.} \providetranslation{Chapters}{Kef'alaia} \providetranslation{chapters}{kef'alaia} \providetranslation{Chapter}{Kef'alaio} \providetranslation{chapter}{kef'alaio} \providetranslation{Conclusion}{Sump'erasma} \providetranslation{conclusion}{sump'erasma} \providetranslation{Contents}{Perieq'omena} \providetranslation{Continuation}{Sun'eqeia} \providetranslation{continuation}{sun'eqeia} \providetranslation{cont}{suneq} \providetranslation{encl (plural)}{sunhmm'ena} \providetranslation{encl (singular)}{sunhm'eno} \providetranslation{encl}{sunhm} \providetranslation{Figures}{Sq'hmata} \providetranslation{figures}{sq'hmata} \providetranslation{Figure}{Sq'hma} \providetranslation{figure}{sq'hma} \providetranslation{From}{Ap'o} \providetranslation{from}{ap'o} \providetranslation{Glossary}{Slwss'ari} \providetranslation{Index}{Euret'hrio} \providetranslation{Introduction}{Eisagwg'h} \providetranslation{introduction}{eisagwg'h} \providetranslation{List of Figures and Tables}{Kat'alogoc Sqhm'atwn kai Pin'akwn} \providetranslation{List of Figures}{Kat'alogoc Sqhm'atwn} \providetranslation{List of Tables}{Kat'alogoc Pin'akwn} \providetranslation{or}{'h} \providetranslation{Outline}{Perigraf'h} \providetranslation{Overview}{Episk'ophsh} \providetranslation{Pages}{Sel'idec} \providetranslation{pages}{sel'idec} \providetranslation{Page}{Sel'ida} \providetranslation{page}{sel'ida} \providetranslation{Paragraphs}{Par'agrafoi} \providetranslation{paragraphs}{par'agrafoi} \providetranslation{Paragraph}{Par'agrafoc} \providetranslation{paragraph}{par'agrafoc} \providetranslation{Parts}{M'erh} \providetranslation{parts}{m'erh} \providetranslation{Part}{M'eroc} \providetranslation{part}{m'eroc} \providetranslation{Preface}{Pr'ologoc} \providetranslation{Proofs}{Apode'ixeic} \providetranslation{proofs}{apode'ixeic} \providetranslation{Proof}{Ap'odeixh} \providetranslation{proof}{ap'odeixh} \providetranslation{References}{Anafor'ec} \providetranslation{Related work}{Sqetik'ec ergas'iec} \providetranslation{Related Work}{Sqetik'ec Ergas'iec} \providetranslation{Sections}{En'othtec} \providetranslation{sections}{en'othtec} \providetranslation{Section}{En'othta} \providetranslation{section}{en'othta} \providetranslation{See also}{De'ite ep'ishc} \providetranslation{see also}{de'ite ep'ishc} \providetranslation{See}{De'ite} \providetranslation{see}{de'ite} \providetranslation{Sketch of Proofs}{Skiagr'afhsh Apode'ixewn} \providetranslation{Sketch of proofs}{Skiagr'afhsh apode'ixewn} \providetranslation{Sketch of Proof}{Skiagr'afhsh Ap'odeixhc} \providetranslation{Sketch of proof}{Skiagr'afhsh ap'odeixhc} \providetranslation{Subsections}{Upoen'othtec} \providetranslation{subsections}{upoen'othtec} \providetranslation{Subsection}{Upoen'othta} \providetranslation{subsection}{upoen'othta} \providetranslation{Summary}{S'unoyh} \providetranslation{Tables}{P'inakec} \providetranslation{tables}{p'inakec} \providetranslation{Table}{P'inakac} \providetranslation{table}{p'inakac} \providetranslation{To}{Proc} \providetranslation{to}{proc} beamer/base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Norsk.dict0000644000175000017500000000635312050430506033061 0ustar mohuramohura\ProvidesDictionary{translator-basic-dictionary}{Norsk} \providetranslation{Abstract}{Sammendrag} \providetranslation{Addresses}{Adresser} \providetranslation{addresses}{adresser} \providetranslation{Address}{Adresse} \providetranslation{address}{adresse} \providetranslation{and}{og} \providetranslation{Appendix}{Tillegg} \providetranslation{Authors}{Forfattere} \providetranslation{authors}{forfattere} \providetranslation{Author}{Forfatter} \providetranslation{author}{forfatter} \providetranslation{Bibliography}{Bibliografi} \providetranslation{cc}{Kopi sendt} \providetranslation{Chapters}{Kapitler} \providetranslation{chapters}{kapitler} \providetranslation{Chapter}{Kapittel} \providetranslation{chapter}{kapittel} \providetranslation{Conclusion}{Konklusjon} \providetranslation{conclusion}{konklusjon} \providetranslation{Contents}{Innhold} \providetranslation{encl (plural)}{Vedlegg} \providetranslation{encl (singular)}{Vedlegg} \providetranslation{encl}{Vedlegg} \providetranslation{Figures}{Figurer} \providetranslation{figures}{figurer} \providetranslation{Figure}{Figur} \providetranslation{figure}{figur} \providetranslation{From}{Fra} \providetranslation{from}{fra} \providetranslation{Glossary}{Ordliste} \providetranslation{Index}{Register} \providetranslation{Introduction}{Innledning} \providetranslation{introduction}{innledning} \providetranslation{List of Figures and Tables}{Figurer og tabeller} \providetranslation{List of Figures}{Figurer} \providetranslation{List of Tables}{Tabeller} \providetranslation{or}{eller} \providetranslation{Outline}{Disposisjon} \providetranslation{Overview}{Oversikt} \providetranslation{Pages}{Sider} \providetranslation{pages}{sider} \providetranslation{Page}{Side} \providetranslation{page}{side} \providetranslation{Paragraphs}{Avsnitt} \providetranslation{paragraphs}{avsnitt} \providetranslation{Paragraph}{Avsnitt} \providetranslation{paragraph}{avsnitt} \providetranslation{Parts}{Deler} \providetranslation{parts}{deler} \providetranslation{Part}{Del} \providetranslation{part}{del} \providetranslation{Preface}{Forord} \providetranslation{Proofs}{Bevis} \providetranslation{proofs}{bevis} \providetranslation{Proof}{Bevis} \providetranslation{proof}{bevis} \providetranslation{References}{Referanser} \providetranslation{Related work}{Tilsvarende arbeid} \providetranslation{Related Work}{Tilsvarende arbeid} \providetranslation{Sections}{Avsnitt} \providetranslation{sections}{avsnitt} \providetranslation{Section}{Avsnitt} \providetranslation{section}{avsnitt} \providetranslation{See also}{Se ogs{\aa}} \providetranslation{see also}{se ogs{\aa}} \providetranslation{See}{Se} \providetranslation{see}{se} \providetranslation{Sketch of Proofs}{Bevisskisser} \providetranslation{Sketch of proofs}{Bevisskisser} \providetranslation{Sketch of Proof}{Bevisskisse} \providetranslation{Sketch of proof}{Bevisskisse} \providetranslation{Subsections}{Delavsnitt} \providetranslation{subsections}{delavsnitt} \providetranslation{Subsection}{Delavsnitt} \providetranslation{subsection}{delavsnitt} \providetranslation{Summary}{Oppsummering} \providetranslation{Tables}{Tabeller} \providetranslation{tables}{tabeller} \providetranslation{Table}{Tabell} \providetranslation{table}{tabell} \providetranslation{To}{Til} \providetranslation{to}{til} beamer/base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Spanish.dict0000644000175000017500000000677712050430506033404 0ustar mohuramohura\ProvidesDictionary{translator-basic-dictionary}{Spanish} \providetranslation{Abstract}{Resumen} \providetranslation{Addresses}{Direcciones} \providetranslation{addresses}{direcciones} \providetranslation{Address}{Dirección} \providetranslation{address}{dirección} \providetranslation{and}{y} \providetranslation{Appendix}{Apéndice} \providetranslation{Authors}{Autores} \providetranslation{authors}{autores} \providetranslation{Author}{Autor} \providetranslation{author}{autor} \providetranslation{Bibliography}{Bibliografía} \providetranslation{cc}{c.c.} \providetranslation{Chapters}{Capítulos} \providetranslation{chapters}{capítulos} \providetranslation{Chapter}{Capítulo} \providetranslation{chapter}{capítulo} \providetranslation{Conclusion}{Conclusión} \providetranslation{conclusion}{conclusión} \providetranslation{Contents}{Contenido} \providetranslation{Continuation}{Continuación} \providetranslation{continuation}{continuación} \providetranslation{cont}{cont} \providetranslation{encl (plural)}{adj.} \providetranslation{encl (singular)}{adj.} \providetranslation{encl}{adj.} \providetranslation{Figures}{Figuras} \providetranslation{figures}{figuras} \providetranslation{Figure}{Figura} \providetranslation{figure}{figura} \providetranslation{From}{Desde} \providetranslation{from}{desde} \providetranslation{Glossary}{Glosario} \providetranslation{Index}{Índice} \providetranslation{Introduction}{Introducción} \providetranslation{introduction}{introducción} \providetranslation{List of Figures and Tables}{Lista de Figuras y Tablas} \providetranslation{List of Figures}{Lista de Figuras} \providetranslation{List of Tables}{Lista de Tablas} \providetranslation{or}{o} \providetranslation{Outline}{Esbozo} \providetranslation{Overview}{Visión General} \providetranslation{Pages}{Páginas} \providetranslation{pages}{páginas} \providetranslation{Page}{Página} \providetranslation{page}{página} \providetranslation{Paragraphs}{Párrafos} \providetranslation{paragraphs}{párrafos} \providetranslation{Paragraph}{Párrafo} \providetranslation{paragraph}{párrafo} \providetranslation{Parts}{Partes} \providetranslation{parts}{partes} \providetranslation{Part}{Parte} \providetranslation{part}{parte} \providetranslation{Preface}{Prefacio} \providetranslation{Proofs}{Demostraciones} \providetranslation{proofs}{demostraciones} \providetranslation{Proof}{Demostración} \providetranslation{proof}{demostración} \providetranslation{References}{Referencias} \providetranslation{Related work}{Trabajo relacionado} \providetranslation{Related Work}{Trabajo Relacionado} \providetranslation{Sections}{Secciones} \providetranslation{sections}{secciones} \providetranslation{Section}{Sección} \providetranslation{section}{sección} \providetranslation{See also}{Ver también} \providetranslation{see also}{ver también} \providetranslation{See}{Ver} \providetranslation{see}{ver} \providetranslation{Sketch of Proofs}{Esbozo de Demostraciones} \providetranslation{Sketch of proofs}{Esbozo de demostraciones} \providetranslation{Sketch of Proof}{Esbozo de Demostración} \providetranslation{Sketch of proof}{Esbozo de demostración} \providetranslation{Subsections}{Subsecciones} \providetranslation{subsections}{subsecciones} \providetranslation{Subsection}{Subsección} \providetranslation{subsection}{subsección} \providetranslation{Summary}{Resumen} \providetranslation{Tables}{Tablas} \providetranslation{tables}{tablas} \providetranslation{Table}{Tabla} \providetranslation{table}{tabla} \providetranslation{To}{Hasta} \providetranslation{to}{hasta} beamer/base/translator/translator.sty0000644000175000017500000000730012050430504017707 0ustar mohuramohura% Copyright 2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the documentation file for more details. \def\translatorversion{1.10} \ProvidesPackage{translator}[2010/06/12 ver \translatorversion] \RequirePackage{keyval} \def\trans@languages{English} \newcommand\uselanguage[2][]{% \g@addto@macro\trans@languages{,#2}% } \newcommand\languagealias[2]{% \expandafter\def\csname tr@ml@#1\endcsname{#2}% } \input{translator-language-mappings} \newcommand\languagepath[1]{\def\trans@languagepath{#1}} \def\trans@languagepath{\languagename,English} \define@key{translator}{to}{\def\trans@to{#1}} \newcommand\iftranslationdefined[4][]{% \def\trans@to{\trans@defaultto}% \setkeys{translator}{#1}% \expandafter\ifx\csname tr@@@\trans@to @#2\endcsname\@undefined% \let\trans@next=\@firstoftwo% \else% \let\trans@next=\@secondoftwo% \fi% \trans@next{#3}{#4}% } \newcommand\deftranslation[3][]{% \def\trans@to{\trans@defaultto}% \setkeys{translator}{#1}% \expandafter\def\csname tr@@@\trans@to @#2\endcsname{#3}% } \newcommand\newtranslation[3][]{% \iftranslationdefined[#1]{#2}{% \PackageError{translator}{Translation of ``#2'' already defined.}{}% }% {% \deftranslation[#1]{#2}{#3}% }% } \newcommand\renewtranslation[3][]{% \iftranslationdefined[#1]{#2}{% \deftranslation[#1]{#2}{#3}% }% {% \PackageError{translator}{Translation of ``#2'' not defined.}{}% }% } \newcommand\providetranslation[3][]{% \iftranslationdefined[#1]{#2}{% }% {% \deftranslation[#1]{#2}{#3}% }% } \begingroup \lccode`\A=`\- % \lowercase{% \endgroup \def\trans@marker{-A}% } \newcommand\translatelet[3][]{% \edef\trans@to{\trans@languagepath}% \setkeys{translator}{#1}% \let\trans@trans\trans@marker% \let\trans@list\@empty% \@for\trans@lang:=\trans@to\do% {% \expandafter\ifx\csname tr@ml@\trans@lang\endcsname\relax% \else% \expandafter\let\expandafter\trans@lang\expandafter=\csname tr@ml@\trans@lang\endcsname% \fi% \edef\trans@list{\trans@list,\trans@lang}% }% \@for\trans@lang:=\trans@list\do% {% \expandafter\ifx\csname tr@@@\trans@lang @#3\endcsname\relax% \else% \ifx\trans@trans\trans@marker% \expandafter\expandafter\expandafter\def \expandafter\expandafter\expandafter\trans@trans \expandafter\expandafter\expandafter{\csname tr@@@\trans@lang @#3\endcsname}% \fi% \fi% }% \ifx\trans@trans\trans@marker% \def\trans@trans{#3}% \fi% \let#2=\trans@trans% } \DeclareRobustCommand\translate[2][]{% \translatelet[#1]\trans@temp{#2}% \trans@temp% } \def\trans@dictionaries{} \newcommand\usedictionary[1]{% \g@addto@macro\trans@dictionaries{\usedictionary{#1}}% } \def\trans@defaultto{English} \AtBeginDocument{% \renewcommand\usedictionary[1]{% \@for\trans@lang:=\trans@languages\do{% \ifx\trans@lang\@empty% \else% \expandafter\ifx\csname ver@#1-\trans@lang.dict\endcsname\relax% \edef\trans@temp{% \def\noexpand\trans@defaultto{\trans@lang}% \noexpand\InputIfFileExists{#1-\trans@lang.dict}{}{}% \def\noexpand\trans@defaultto{\trans@defaultto}% }% \trans@temp% \fi% \fi% }}% \trans@dictionaries% } \def\ProvidesDictionary#1#2{% \begingroup \catcode`\ 10 % \@makeother\/% \@ifnextchar[%] {\@providesdictionary{#1}{#2}}{\@providesdictionary{#1}{#2}[]}% } \def\@providesdictionary#1#2[#3]{% \wlog{Dictionary: #1, Language: #2 #3}% \expandafter\xdef\csname ver@#1-#2.dict\endcsname{#3}% \endgroup% } \endinput beamer/base/beamerbasethemes.sty0000644000175000017500000000227512050430504016627 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasethemes.sty,v efa082c6111d 2010/05/01 11:27:03 rivanvx $ % % Basic commands for including themes % \mode { \def\beamer@calltheme#1#2#3{% \def\beamer@themelist{#2} \@for\beamer@themename:=\beamer@themelist\do {\usepackage[{#1}]{#3\beamer@themename}}} \newcommand\usetheme[2][]{\beamer@calltheme{#1}{#2}{beamertheme}} \newcommand\usecolortheme[2][]{\beamer@calltheme{#1}{#2}{beamercolortheme}} \newcommand\usefonttheme[2][]{\beamer@calltheme{#1}{#2}{beamerfonttheme}} \newcommand\useoutertheme[2][]{\beamer@calltheme{#1}{#2}{beameroutertheme}} \newcommand\useinnertheme[2][]{\beamer@calltheme{#1}{#2}{beamerinnertheme}} } \mode
{ \newcommand\usetheme[2][]{} \newcommand\usecolortheme[2][]{} \newcommand\usefonttheme[2][]{} \newcommand\useoutertheme[2][]{} \newcommand\useinnertheme[2][]{} } \mode beamer/base/beamerbasetitle.sty0000644000175000017500000001271012050430504016456 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasetitle.sty,v f0446ed0b6ae 2010/09/21 17:49:40 joseph $ \mode % % % The \maketitle command (for compatibility with other classes) % % \def\maketitle{\ifbeamer@inframe\titlepage\else\frame{\titlepage}\fi} % % % The \titlepage and \partpage % % \def\titlepage{\usebeamertemplate*{title page}\@thanks} \def\partpage{\usebeamertemplate*{part page}} \def\sectionpage{\usebeamertemplate*{section page}} \def\subsectionpage{\usebeamertemplate*{subsection page}} \mode
{\providecommand\titlepage{} \renewcommand\titlepage{} \providecommand\partpage{} \providecommand\sectionpage{} \providecommand\subsectionpage{}} % % % The \title command % % \renewcommand{\title}{\@dblarg\beamer@title} \long\def\beamer@title[#1]#2{% \def\inserttitle{#2}% \def\beamer@shorttitle{#1}% } \title{} \newcommand\insertshorttitle[1][]{% \beamer@setupshort{#1}% \let\thanks=\@gobble% \ifnum\c@page=1% \hyperlinkpresentationend{\beamer@insertshort{\beamer@shorttitle}}% \else% \hyperlinkpresentationstart{\beamer@insertshort{\beamer@shorttitle}}% \fi} \mode
{ \let\beamer@origtitle=\title \renewcommand{\title}[2][]{\beamer@origtitle{#2}} } % % % The \subtitle command % % \newcommand{\subtitle}{\@dblarg\beamer@subtitle} \long\def\beamer@subtitle[#1]#2{% \def\insertsubtitle{#2}% \def\beamer@shortsubtitle{#1}% } \subtitle{} \newcommand\insertshortsubtitle[1][]{% \let\thanks=\@gobble% \beamer@setupshort{#1}% \ifnum\c@page=1% \hyperlinkpresentationend{\beamer@insertshort{\beamer@shortsubtitle}}% \else% \hyperlinkpresentationstart{\beamer@insertshort{\beamer@shortsubtitle}}% \fi} \ifbeamer@autopdfinfo% \g@addto@macro\beamer@firstminutepatches { \begingroup \let\beamer@saved@hook\pdfstringdefPreHook \pdfstringdefDisableCommands{% \let\\=\ \let\newline=\\% }% \let\thanks=\@gobble% \hypersetup{pdftitle={\inserttitle\ifx\insertsubtitle\@empty\else\ - \insertsubtitle\fi}} \global\let\pdfstringdefPreHook\beamer@saved@hook \endgroup } \fi% \mode
{ \providecommand{\subtitle}[2][]{\def\insertsubtitle{#2}\g@addto@macro\@title{\\
{\normalsize#2}}} } % % % The \date command % % \def\date{\@dblarg\beamer@date} \long\def\beamer@date[#1]#2{% \def\insertdate{#2}% \def\beamer@shortdate{#1}% } \date{\today} \newcommand\insertshortdate[1][]{% {% \let\thanks=\@gobble% \beamer@setupshort{#1}% \beamer@insertshort{\beamer@shortdate}% }} \mode
{ \let\beamer@origdate=\date \renewcommand{\date}[2][]{\beamer@origdate{#2}} } % % % The \author command % % \def\author{\@dblarg\beamer@author} \long\def\beamer@author[#1]#2{% \def\insertauthor{\def\inst{\beamer@insttitle}\def\and{\beamer@andtitle}#2}% \def\beamer@shortauthor{#1}% \ifbeamer@autopdfinfo% \def\beamer@andstripped{}% \beamer@stripands#2 \and\relax {\let\inst=\@gobble\let\thanks=\@gobble\def\and{, }\hypersetup{pdfauthor={\beamer@andstripped}}} \fi% } \def\beamer@stripands#1 \and#2\relax{% \def\beamer@temp{#2}% \ifx\beamer@temp\@empty \expandafter\def\expandafter\beamer@andstripped\expandafter{\beamer@andstripped#1} \else \expandafter\def\expandafter\beamer@andstripped\expandafter{\beamer@andstripped#1, } \beamer@stripands#2\relax% \fi } \author{} % Aux commands for \author \def\beamer@insttitle#1{{\donotcoloroutermaths$^{#1}$}} \def\beamer@andtitle{\quad} \def\beamer@instother#1{} \def\beamer@andother{\unskip, } \newcommand\insertshortauthor[1][]{% {% \def\inst{\beamer@instother}\def\and{\beamer@andother}\let\thanks=\@gobble% \beamer@setupshort{#1}% \beamer@insertshort{\beamer@shortauthor}% }} \mode
{ \let\beamer@origauthor=\author \renewcommand{\author}[2][]{\beamer@origauthor{#2}} } % % % The \titlegraphic command % % \mode { \newcommand\titlegraphic[1]{\def\inserttitlegraphic{#1}} \titlegraphic{} } % % % The \subject command % % \mode { \providecommand\subject[1]{\hypersetup{pdfsubject={#1}}} \providecommand\keywords[1]{\hypersetup{pdfkeywords={#1}}} } % % % The \institute command % % \def\institute{\@dblarg\beamer@institute} \long\def\beamer@institute[#1]#2{% \def\beamer@temp{#2}% \ifx\beamer@temp\@empty \def\insertinstitute{} \else \def\insertinstitute{\def\inst{\beamer@instinst}\def\and{\beamer@andinst}#2}% \fi \def\beamer@shortinstitute{#1}} \institute{} \def\beamer@instinst#1{{\donotcoloroutermaths$^{#1}$}\ignorespaces} \def\beamer@andinst{\\[1em]} \newcommand\insertshortinstitute[1][]{% {% \let\thanks=\@gobble% \def\inst{\beamer@instother}\def\and{\beamer@andother}% \beamer@setupshort{#1}% \beamer@insertshort{\beamer@shortinstitute}% }} \mode
{ \ifx\institute\@undefined \newcommand{\institute}[2][]{} \else \let\beamer@originstitute=\institute \renewcommand{\institute}[2][]{\beamer@originstitute{#2}} \fi \providecommand\and{\unskip, } \providecommand\inst[1]{$^{#1}$} } % % % The \logo command % % \def\logo{\setbeamertemplate{logo}} \def\insertlogo{\usebeamertemplate*{logo}} \mode
{ \providecommand\logo[1]{} } \mode beamer/base/beamerbasetranslator.sty0000644000175000017500000000141312050430504017524 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasetranslator.sty,v 85fd1cc7fc42 2010/06/11 14:40:11 rivanvx $ % % Load translator and it's dictionaries % \RequirePackage{translator} \usedictionary{translator-basic-dictionary} \usedictionary{translator-bibliography-dictionary} \usedictionary{translator-environment-dictionary} \usedictionary{translator-months-dictionary} \usedictionary{translator-numbers-dictionary} \usedictionary{translator-theorem-dictionary} \mode beamer/base/beamerbaserequires.sty0000644000175000017500000000335012050430504017174 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbaserequires.sty,v efa082c6111d 2010/05/01 11:27:03 rivanvx $ % % Beamer packages % \RequirePackage{beamerbasecompatibility} % Fixes other packages \RequirePackage{beamerbasefont} % Font stuff \RequirePackage{beamerbasetranslator} % Support for translations \RequirePackage{beamerbasemisc} % Miscellaneous commands \RequirePackage{beamerbasetwoscreens} % Stuff for using two screens \RequirePackage{beamerbaseoverlay} % Overlay stuff \RequirePackage{beamerbasetitle} % Commands for constructing the title page \RequirePackage{beamerbasesection} % Parts, sections, subsections, appendix \RequirePackage{beamerbaseframe} % Commands for constructing frames \RequirePackage{beamerbaseverbatim} % Commands for constructing frames \RequirePackage{beamerbaseframesize} % Commands for constructing frames \RequirePackage{beamerbaseframecomponents} % Headlines, sidebars, columns \RequirePackage{beamerbasecolor} % Color management \RequirePackage{beamerbasenotes} % Commands for adding notes \RequirePackage{beamerbasetoc} % Table of Contents Format \RequirePackage{beamerbasetemplates} % For default templates \RequirePackage{beamerbaselocalstructure} % Commands for local structure like alert, itemize, etc. \RequirePackage{beamerbasenavigation} % Navigation buttons \RequirePackage{beamerbasetheorems} % Theorems \RequirePackage{beamerbasethemes} % Commands for including and building themes \mode beamer/base/beamerbaseauxtemplates.sty0000644000175000017500000005171712050430504020063 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbaseauxtemplates.sty,v 67c48b3b652d 2012/05/01 07:25:30 joseph $ \mode \RequirePackage{beamerbaseboxes} % % declare some balls % \normalsize \pgfdeclareradialshading[bg,parent.bg]{tocsphere}{\pgfpoint{-0.5ex}{0.6ex}}% {% color(0cm)=(bg!35!white); color(0.44ex)=(bg!75!white); color(0.88ex)=(bg!70!black!90!parent.bg); color(1.2ex)=(bg!50!black!90!parent.bg); color(1.3ex)=(parent.bg)} \pgfdeclareradialshading[bg,parent.bg]{bigsphere}{\pgfpoint{-0.1849315ex}{.2260273ex}}% {% color(0cm)=(bg!15); color(0.1643835ex)=(bg!75); color(0.3287671ex)=(bg!70!black); color(0.4520547ex)=(bg!50!black); color(0.53ex)=(parent.bg)} \pgfdeclareradialshading[bg,parent.bg]{smallsphere}{\pgfpoint{-0.1479452ex}{0.18287671ex}}% {% color(0cm)=(bg!15); color(0.1315068ex)=(bg!75); color(0.2630136ex)=(bg!70!black); color(0.36164383ex)=(bg!50!black); color(0.427ex)=(parent.bg)} \def\beamer@usesphere#1#2{% \hbox{\usebeamercolor{#1}\normalsize\pgfuseshading{#2}}} % % Background templates % \define@key{beamer@backgroundgrid}{step}{\def\beamer@bggw{#1}} \define@key{beamer@backgroundgrid}{color}{\def\beamer@bggc{\color{#1}}} \defbeamertemplate{background}{grid}[1][] {% \setkeys{beamer@backgroundgrid}{step=0.5cm,color=fg!10!bg}% \setkeys{beamer@backgroundgrid}{#1}% \begin{pgfpicture}{0cm}{0cm}{\the\paperwidth}{\the\paperheight} \beamer@bggc \pgfpathgrid[stepx=\beamer@bggw,stepy=\beamer@bggw]{\pgfpointorigin}{\pgfpoint{\the\paperwidth}{\the\paperheight}} \pgfusepath{stroke} \end{pgfpicture}% } \define@key{beamer@backgroundshade}{top}{\def\beamer@bgst{#1}} \define@key{beamer@backgroundshade}{bottom}{\def\beamer@bgsb{#1}} \define@key{beamer@backgroundshade}{right}{\def\beamer@bgst{#1}} \define@key{beamer@backgroundshade}{left}{\def\beamer@bgsb{#1}} \define@key{beamer@backgroundshade}{middle}{\def\beamer@bgsm{#1}} \define@key{beamer@backgroundshade}{midpoint}{\def\beamer@bgsmp{#1}} \def\beamer@calcvertshading#1#2#3{% {\usebeamercolor{palette primary}} \usebeamercolor{normal text} \setkeys{beamer@backgroundshade}{top=palette primary.bg!25!bg,bottom=bg,middle={},midpoint=0.5}% \setkeys{beamer@backgroundshade}{#3} \ifx\beamer@bgsm\@empty \pgfdeclareverticalshading{#1}{#2}% {color(0cm)=(\beamer@bgsb); color(\the\paperheight)=(\beamer@bgst)} \colorlet{beamer@backgroundshadestart}{\beamer@bgsb}% \colorlet{beamer@backgroundshadeend}{\beamer@bgst}% \colorlet{beamer@average}{beamer@backgroundshadestart!50!beamer@backgroundshadeend}% \else \pgfdeclareverticalshading{#1}{#2}% {color(0cm)=(\beamer@bgsb); color(\beamer@bgsmp\paperheight)=(\beamer@bgsm); color(\the\paperheight)=(\beamer@bgst)} \colorlet{beamer@average}{\beamer@bgsm} \fi% } \def\beamer@calchorishading#1#2#3{% {\usebeamercolor{palette primary}} \usebeamercolor{normal text} \setkeys{beamer@backgroundshade}{left=palette primary.bg!25!bg,right=bg,middle={},midpoint=0.5}% \setkeys{beamer@backgroundshade}{#3} \ifx\beamer@bgsm\@empty \pgfdeclarehorizontalshading{#1}{\the\paperheight}% {color(0cm)=(\beamer@bgsb); color(#2)=(\beamer@bgst)} \colorlet{beamer@backgroundshadestart}{\beamer@bgsb}% \colorlet{beamer@backgroundshadeend}{\beamer@bgst}% \colorlet{beamer@average}{beamer@backgroundshadestart!50!beamer@backgroundshadeend}% \else \pgfdeclarehorizontalshading{#1}{\the\paperheight}% {color(0cm)=(\beamer@bgsb); color(\beamer@bgsmp#2)=(\beamer@bgsm); color(#2)=(\beamer@bgst)} \colorlet{beamer@average}{\beamer@bgsm} \fi% } \defbeamertemplate{background canvas}{vertical shading}[1][] {% \pgfuseshading{beamer@backgroundshading}% } [action] { \beamer@calcvertshading{beamer@backgroundshading}{\the\paperwidth}{#1} \colorlet{beamer@@average}{beamer@average} \setbeamercolor{normal text}{bg=beamer@@average} } % % Side bars % \defbeamertemplate{sidebar canvas left}{vertical shading}[1][] {% \pgfuseshading{beamer@sidebarcanvasleftshading}% } [action] { \beamer@calcvertshading{beamer@sidebarcanvasleftshading}{\the\beamer@leftsidebar}{#1} } \defbeamertemplate{sidebar canvas right}{vertical shading}[1][] {% \pgfuseshading{beamer@sidebarcanvasrightshading}% } [action] { \beamer@calcvertshading{beamer@sidebarcanvasrightshading}{\the\beamer@rightsidebar}{#1} } \defbeamertemplate{sidebar canvas left}{horizontal shading}[1][] {% \pgfuseshading{beamer@sidebarcanvasleftshading}% } [action] { \beamer@calchorishading{beamer@sidebarcanvasleftshading}{\beamer@leftsidebar}{#1} } \defbeamertemplate{sidebar canvas right}{horizontal shading}[1][] {% \pgfuseshading{beamer@sidebarcanvasrightshading}% } [action] { \beamer@calchorishading{beamer@sidebarcanvasrightshading}{\beamer@rightsidebar}{#1} } % (sub-)section in toc: sections numbered \defbeamertemplate{section in toc}{sections numbered} {\leavevmode\inserttocsectionnumber. \inserttocsection\par} \defbeamertemplate{subsection in toc}{sections numbered} {\leavevmode\leftskip=2.5em\inserttocsubsection\par} \defbeamertemplate{subsubsection in toc}{sections numbered} {\leavevmode\normalsize\usebeamerfont{subsection in toc}\leftskip=3.5em\usebeamerfont{subsubsection in toc}% \inserttocsubsubsection\par} % (sub-)section in toc: subsections numbered \defbeamertemplate{section in toc}{subsections numbered} {\leavevmode\leftskip=2em\inserttocsection\par} \defbeamertemplate{subsection in toc}{subsections numbered} {\leavevmode\leftskip=2em\rlap{\hskip-2em\inserttocsectionnumber.\inserttocsubsectionnumber}\inserttocsubsection\par} \defbeamertemplate{subsubsection in toc}{subsections numbered} {\leavevmode\normalsize\usebeamerfont{subsection in toc}\leftskip=3em\usebeamerfont{subsubsection in toc}% \inserttocsubsubsection\par} % (sub-)section in toc: circle \defbeamertemplate{section in toc}{circle} {\leavevmode\leftskip=2ex% \llap{% \usebeamerfont*{section number projected}% \usebeamercolor{section number projected}% \begin{pgfpicture}{-1ex}{0ex}{1ex}{2ex} \color{bg} \pgfpathcircle{\pgfpoint{0pt}{.75ex}}{1.2ex} \pgfusepath{fill} \pgftext[base]{\color{fg}\inserttocsectionnumber} \end{pgfpicture}\kern1.25ex% }% \inserttocsection\par} \defbeamertemplate{subsection in toc}{circle} {\leavevmode\leftskip=2em\inserttocsubsection\par} \defbeamertemplate{subsubsection in toc}{circle} {\leavevmode\normalsize\usebeamerfont{subsection in toc}\leftskip=3em\usebeamerfont{subsubsection in toc}% \inserttocsubsubsection\par} % (sub-)section in toc: square \defbeamertemplate{section in toc}{square} {\leavevmode\leftskip=1.75ex% \llap{% \usebeamerfont*{section number projected}% \usebeamercolor[bg]{section number projected}% \vrule width2.25ex height1.85ex depth.4ex% \hskip-2.25ex% \hbox to2.25ex{\hfil\color{fg}\inserttocsectionnumber\hfil}}% \kern1.25ex\inserttocsection\par} \defbeamertemplate{subsection in toc}{square} {\leavevmode\leftskip=5ex\llap{% \usebeamercolor[bg]{subsection number projected}% \vrule width1ex height1ex\kern1ex}\inserttocsubsection\par} \defbeamertemplate{subsubsection in toc}{square} {\leavevmode\normalsize\usebeamerfont{subsection in toc}\leftskip=7ex\usebeamerfont{subsubsection in toc}% \llap{% \usebeamercolor[bg]{subsubsection number projected}% \vrule width0.75ex height0.75ex\kern1ex}\inserttocsubsubsection\par} % (sub-)section in toc: ball \defbeamertemplate{section in toc}{ball unnumbered} {\leavevmode\raise0.1ex\beamer@usesphere{section number projected}{bigsphere}\kern1.25ex\inserttocsection\par} \defbeamertemplate{subsection in toc}{ball unnumbered} {\leavevmode\leftskip=1.5em\raise0.2ex\beamer@usesphere{subsection number projected}{smallsphere}% \kern1ex\inserttocsubsection\par} \defbeamertemplate{subsubsection in toc}{ball unnumbered} {\leavevmode\normalsize\usebeamerfont{subsection in toc}\leftskip=3em\usebeamerfont{subsubsection in toc}% \beamer@usesphere{subsubsection number projected}{smallsphere}% \kern0.75ex\inserttocsubsubsection\par} % (sub-)section in toc: ball numbered \defbeamertemplate{section in toc}{ball} {\leavevmode\leftskip=2.75ex% \llap{% \normalsize% \begin{pgfpicture}{-1ex}{-0.7ex}{1ex}{1ex} \pgftext{\beamer@usesphere{section number projected}{tocsphere}} \pgftext{% \usebeamerfont*{section number projected}% \usebeamercolor{section number projected}% \color{fg!90!bg}% \inserttocsectionnumber} \end{pgfpicture}% \kern1.25ex}% \inserttocsection\par } [action] {\setbeamerfont{section number projected}{size=\scriptsize}} \defbeamertemplate{subsection in toc}{ball} {\leavevmode\leftskip=5ex% \llap{\raise0.1ex\beamer@usesphere{subsection number projected}{bigsphere}\kern1ex}% \inserttocsubsection\par% } \defbeamertemplate{subsubsection in toc}{ball} {\leavevmode\normalsize\usebeamerfont{subsection in toc}\leftskip=7ex\usebeamerfont{subsubsection in toc}% \llap{\beamer@usesphere{subsubsection number projected}{bigsphere}\kern0.75ex}% \inserttocsubsubsection\par% } % Itemize items, circle \defbeamertemplatealias{itemize item}{triangle}{default} \defbeamertemplatealias{itemize subitem}{triangle}{default} \defbeamertemplatealias{itemize subsubitem}{triangle}{default} % Itemize items, circle \defbeamertemplate{itemize item}{circle}{\small\raise0.5pt\hbox{\textbullet}} \defbeamertemplate{itemize subitem}{circle}{\footnotesize\raise0.5pt\hbox{\textbullet}} \defbeamertemplate{itemize subsubitem}{circle}{\footnotesize\raise0.5pt\hbox{\textbullet}} % Itemize items, square \defbeamertemplate{itemize item}{square}{\hbox{\vrule width 1ex height 1ex}} \defbeamertemplate{itemize subitem}{square}{\small\hbox{\vrule width 1ex height 1ex}} \defbeamertemplate{itemize subsubitem}{square}{\small\hbox{\vrule width 1ex height 1ex}} % Itemize items, ball \defbeamertemplate{itemize item}{ball}{\raise0.2pt\beamer@usesphere{item projected}{bigsphere}} \defbeamertemplate{itemize subitem}{ball}{\raise0.2pt\beamer@usesphere{subitem projected}{smallsphere}} \defbeamertemplate{itemize subsubitem}{ball}{\raise0.2pt\beamer@usesphere{subsubitem projected}{smallsphere}} % Enumerate items, ball \defbeamertemplate{enumerate item}{ball} { \begin{pgfpicture}{-1ex}{-0.65ex}{1ex}{1ex} \usebeamercolor[fg]{item projected} {\pgftransformscale{1.75}\pgftext{\normalsize\pgfuseshading{bigsphere}}} {\pgftransformshift{\pgfpoint{0pt}{0.5pt}} \pgftext{\usebeamerfont*{item projected}\insertenumlabel}} \end{pgfpicture}% } \defbeamertemplate{enumerate subitem}{ball} { \begin{pgfpicture}{-1ex}{-0.55ex}{1ex}{1ex} \usebeamercolor[fg]{subitem projected} {\pgftransformscale{1.4}\pgftext{\normalsize\pgfuseshading{bigsphere}}} \pgftext{% \usebeamerfont*{subitem projected}% \insertsubenumlabel} \end{pgfpicture}% } \defbeamertemplate{enumerate subsubitem}{ball} { \begin{pgfpicture}{-1ex}{-0.55ex}{1ex}{1ex} \usebeamercolor[fg]{subsubitem projected} {\pgftransformscale{1.4}\pgftext{\normalsize\pgfuseshading{bigsphere}}} \pgftext{% \usebeamerfont*{subitem projected}% \insertsubsubenumlabel} \end{pgfpicture}% } \defbeamertemplate{enumerate mini template}{ball} { \begin{pgfpicture}{-1ex}{-0.65ex}{1ex}{1ex} \usebeamercolor[fg]{\beameritemnestingprefix item projected} {\pgftransformscale{1.75}\pgftext{\normalsize\pgfuseshading{bigsphere}}} {\pgftransformshift{\pgfpoint{0pt}{0.5pt}}% \usebeamerfont*{\beameritemnestingprefix item projected}% \pgftext{\insertenumlabel}} \end{pgfpicture} } % Enumerate items, square \defbeamertemplate{enumerate item}{square} { \hbox{% \usebeamerfont*{item projected}% \usebeamercolor[bg]{item projected}% \vrule width2.25ex height1.85ex depth.4ex% \hskip-2.25ex% \hbox to2.25ex{% \hfil% \color{fg}\insertenumlabel% \hfil}% }% } [action] {\setbeamerfont{item projected}{size=\scriptsize}} \defbeamertemplate{enumerate subitem}{square} { \hbox{% \usebeamerfont*{subitem projected}% \usebeamercolor[bg]{subitem projected}% \vrule width2.25ex height1.85ex depth.4ex% \hskip-2.25ex% \hbox to2.25ex{% \hfil% \color{fg}\insertsubenumlabel% \hfil}% }% } \defbeamertemplate{enumerate subsubitem}{square} { \hbox{% \usebeamerfont*{subitem projected}% \usebeamercolor[bg]{subsubitem projected}% \vrule width2.25ex height1.85ex depth.4ex% \hskip-2.25ex% \hbox to2.25ex{% \hfil% \color{fg}\insertsubsubenumlabel% \hfil}% }% } \defbeamertemplate{enumerate mini template}{square} { \hbox{% \usebeamerfont*{\beameritemnestingprefix item projected}% \usebeamercolor[bg]{\beameritemnestingprefix item projected}% \vrule width2.25ex height1.85ex depth.4ex% \hskip-2.25ex% \hbox to2.25ex{% \hfil% \color{fg}\insertenumlabel% \hfil}% }% } % Enumerate items, circle \defbeamertemplate{enumerate item}{circle} { \usebeamerfont*{item projected}% \usebeamercolor[bg]{item projected}% \begin{pgfpicture}{-1ex}{0ex}{1ex}{2ex} \pgfpathcircle{\pgfpoint{0pt}{.75ex}}{1.2ex} \pgfusepath{fill} \pgftext[base]{\color{fg}\insertenumlabel} \end{pgfpicture}% } [action] {\setbeamerfont{item projected}{size=\scriptsize}} \defbeamertemplate{enumerate subitem}{circle} { \usebeamerfont*{subitem projected}% \usebeamercolor[bg]{subitem projected}% \begin{pgfpicture}{-1ex}{0ex}{1ex}{2ex} \pgfpathcircle{\pgfpoint{0pt}{.75ex}}{1.2ex} \pgfusepath{fill} \pgftext[base]{\color{fg}\insertsubenumlabel} \end{pgfpicture}% } \defbeamertemplate{enumerate subsubitem}{circle} { \usebeamerfont*{subsubitem projected}% \usebeamercolor[bg]{subsubitem projected}% \begin{pgfpicture}{-1ex}{0ex}{1ex}{2ex} \pgfpathcircle{\pgfpoint{0pt}{.75ex}}{1.2ex} \pgfusepath{fill} \pgftext[base]{\color{fg}\insertsubsubenumlabel} \end{pgfpicture}% } \defbeamertemplate{enumerate mini template}{circle} { \usebeamerfont*{\beameritemnestingprefix item projected}% \usebeamercolor[bg]{\beameritemnestingprefix item projected}% \begin{pgfpicture}{-1ex}{0ex}{1ex}{2ex} \pgfpathcircle{\pgfpoint{0pt}{.75ex}}{1.2ex} \pgfusepath{fill} \pgftext[base]{\color{fg}\insertenumlabel} \end{pgfpicture}% } % % Frame title continutations % \defbeamertemplatealias{frametitle continuation}{roman}{default} \defbeamertemplate{frametitle continuation}{from second}[1][\insertcontinuationtext] {\expandafter\ifnum\insertcontinuationcount>1\relax#1\fi} % Bibliography items \defbeamertemplatealias{bibliography item}{article}{default} \defbeamertemplate{bibliography item}{book} {\lower2pt\hbox{\pgfuseimage{beamericonbook}}} \defbeamertemplate{bibliography item}{text} {\insertbiblabel} \defbeamertemplate{bibliography item}{triangle} {\scriptsize\raise1.25pt\hbox{\donotcoloroutermaths$\blacktriangleright$}} \defbeamertemplate{bibliography item}{online} {\lower3pt\hbox{\pgfuseimage{beamericononline}}} % Headline \defbeamertemplate{headline}{text line}[1] {\hskip\Gm@lmargin\hbox to\@tempdima{\textwidth=\@tempdima\hsize=\textwidth\relax#1\hfil}\hskip\Gm@rmargin} % Footline \defbeamertemplate{footline}{text line}[1] {\hskip\Gm@lmargin\hbox to\@tempdima{\textwidth=\@tempdima\hsize=\textwidth\relax#1\hfil}\hskip\Gm@rmargin} \defbeamertemplate{footline}{page number} {% \hfill% \usebeamercolor[fg]{page number in head/foot}% \usebeamerfont{page number in head/foot}% \insertpagenumber\,/\,\insertpresentationendpage\kern1em\vskip2pt% } \defbeamertemplate{footline}{frame number} { \hfill% \usebeamercolor[fg]{page number in head/foot}% \usebeamerfont{page number in head/foot}% \insertframenumber\,/\,\inserttotalframenumber\kern1em\vskip2pt% } % Mini frames \defbeamertemplate{mini frame}{box} {% \begin{pgfpicture}{0pt}{0pt}{.1cm}{.1cm} \pgfpathrectangle{\pgfpointorigin}{\pgfpoint{\the\beamer@boxsize}{\the\beamer@boxsize}} \pgfusepath{fill,stroke} \end{pgfpicture}% } [action] { \setbeamersize{mini frame size=.1cm,mini frame offset=.05cm} } \defbeamertemplate{mini frame in current subsection}{box} {% \begin{pgfpicture}{0pt}{0pt}{.1cm}{.1cm} \pgfpathrectangle{\pgfpointorigin}{\pgfpoint{\the\beamer@boxsize}{\the\beamer@boxsize}} \pgfusepath{stroke} \end{pgfpicture}% } \defbeamertemplate{mini frame}{tick} {% \hskip-0.4pt\vrule height\beamer@boxsize width1.2pt% } [action] { \setbeamersize{mini frame size=.1cm,mini frame offset=.05cm} } \defbeamertemplate{mini frame in current subsection}{tick} {% \vrule height\beamer@boxsize width0.4pt% } % % Captions % \defbeamertemplate{caption}{numbered} {% \raggedright {% \usebeamercolor[fg]{caption name}% \usebeamerfont*{caption name}% \insertcaptionname~\insertcaptionnumber \usebeamertemplate{caption label separator}% } \insertcaption\par } \defbeamertemplate*{caption label separator}{colon}{ : } \defbeamertemplate{caption}{caption name own line} {% \begin{minipage}{\textwidth} \raggedright {% \usebeamercolor[fg]{caption name}% \usebeamerfont*{caption name}% \insertcaptionname% }\\ \insertcaption \end{minipage} } % % Buttons % \newdimen\beamer@blockheadheight% \defbeamertemplate{navigation symbols}{only frame symbol} {\insertframenavigationsymbol} \defbeamertemplate{navigation symbols}{vertical} {% \vbox{% \hbox{\insertslidenavigationsymbol} \hbox{\insertframenavigationsymbol} \hbox{\insertsubsectionnavigationsymbol} \hbox{\insertsectionnavigationsymbol} \hbox{\insertdocnavigationsymbol} \hbox{\insertbackfindforwardnavigationsymbol}}% } \defbeamertemplatealias{navigation symbols}{horizontal}{default} % % Blocks % \defbeamertemplateparent{blocks}[rounded]{block begin,block end,% block alerted begin,block alerted end,% block example begin,block example end}[1][] {[#1]} \defbeamertemplate{block begin}{rounded}[1][shadow=false] { \par\vskip\medskipamount% \begin{beamerboxesrounded}[upper=block title,lower=block body,#1]% {\raggedright\usebeamerfont*{block title}\insertblocktitle}% \raggedright% \usebeamerfont{block body}% } \defbeamertemplate{block end}{rounded}[1][] {\end{beamerboxesrounded}\vskip\smallskipamount} \defbeamertemplate{block alerted begin}{rounded}[1][shadow=false] { \par\vskip\medskipamount% \begin{beamerboxesrounded}[upper=block title alerted,lower=block body alerted,#1]% {\raggedright\usebeamerfont*{block title alerted}\insertblocktitle}% \raggedright% \usebeamerfont{block body alerted}% }% \defbeamertemplate{block alerted end}{rounded}[1][] {\end{beamerboxesrounded}\vskip\smallskipamount} \defbeamertemplate{block example begin}{rounded}[1][shadow=false] { \par\vskip\medskipamount% \begin{beamerboxesrounded}[upper=block title example,lower=block body example,#1] {\raggedright\usebeamerfont*{block title example}\insertblocktitle}% \raggedright% \usebeamerfont{block body alerted}% }% \defbeamertemplate{block example end}{rounded}[1][] {\end{beamerboxesrounded}\vskip\smallskipamount} % % Note templates % \defbeamertemplate{note page}{plain} {\insertnote} \defbeamertemplate{note page}{compressed} {% {% \tiny \let\\=\relax% \insertvrule{0.125\paperheight}{white!90!black}% \vskip-0.125\paperheight \nointerlineskip \vbox{\hfill\insertslideintonotes{0.125}\hskip-\Gm@rmargin\hskip0pt% \vskip-0.125\paperheight\nointerlineskip}% \nointerlineskip \vbox to .125\paperheight{ \setbox\beamer@tempbox=\hbox{\hbox{\insertsection}}% \ht\beamer@tempbox=1em \box\beamer@tempbox \nointerlineskip \setbox\beamer@tempbox=\hbox{\hbox{\quad\insertsubsection}}% \ht\beamer@tempbox=1em \box\beamer@tempbox \nointerlineskip \setbox\beamer@tempbox=\hbox{\hbox{\quad\quad\insertshortframetitle}}% \ht\beamer@tempbox=1em \box\beamer@tempbox \vfil }\vskip0.5em } \nointerlineskip \insertnote } % % Theorem templates % \defbeamertemplate{theorem begin}{ams style} {% \begin{\inserttheoremblockenv} {% \inserttheoremheadfont \inserttheoremname \inserttheoremnumber \ifx\inserttheoremaddition\@empty\else\ (\inserttheoremaddition)\fi% \inserttheorempunctuation }% } \defbeamertemplate{theorem end}{ams style} {\end{\inserttheoremblockenv}} \defbeamertemplate{theorem begin}{numbered} {% \begin{\inserttheoremblockenv} {% \inserttheoremname \inserttheoremnumber \ifx\inserttheoremaddition\@empty\else\ (\inserttheoremaddition)\fi% }% } \defbeamertemplate{theorem end}{numbered} {\end{\inserttheoremblockenv}} \defbeamertemplate{theorem begin}{normal font} { \normalfont \begin{\inserttheoremblockenv} {% \inserttheoremname \ifx\inserttheoremaddition\@empty\else\ (\inserttheoremaddition)\fi% }% } \defbeamertemplate{theorem end}{normal font} {\end{\inserttheoremblockenv}} \mode beamer/base/beamerbasetemplates.sty0000644000175000017500000001335312050430504017337 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasetemplates.sty,v efa082c6111d 2010/05/01 11:27:03 rivanvx $ % % Template Installation Commands % \def\usebeamertemplate{\@ifstar{\beamer@usebeamertemplates}{\beamer@usebeamertemplatedo}} \def\beamer@usebeamertemplates{\@ifstar{\beamer@usebeamertemplatess}{\beamer@usebeamertemplatedos}} \def\beamer@usebeamertemplatess{\@ifstar{\beamer@usebeamertemplatedosss}{\beamer@usebeamertemplatedoss}} \def\beamer@usebeamertemplatedo#1{\csname beamer@@tmpl@#1\endcsname} \def\beamer@usebeamertemplatedos#1{{{\usebeamerfont{#1}\usebeamercolor[fg]{#1}\csname beamer@@tmpl@#1\endcsname}}} \def\beamer@usebeamertemplatedoss#1{{{\usebeamerfont*{#1}\usebeamercolor[fg]{#1}\csname beamer@@tmpl@#1\endcsname}}} \def\beamer@usebeamertemplatedosss#1{{{\usebeamerfont*{#1}\usebeamercolor*[fg]{#1}\csname beamer@@tmpl@#1\endcsname}}} \long\def\beamer@@empty{} \def\expandbeamertemplate#1{\csname beamer@@tmpl@#1\endcsname} \def\ifbeamertemplateempty#1#2#3{% \def\beamer@ifdo{#3}% \expandafter\ifx\csname beamer@@tmpl@#1\endcsname\relax\def\beamer@ifdo{#2}\fi% \expandafter\ifx\csname beamer@@tmpl@#1\endcsname\beamer@@empty\def\beamer@ifdo{#2}\fi% \beamer@ifdo} \mode
{ % the following do the same in article mode: \let\beamer@usebeamertemplatedosss=\beamer@usebeamertemplatedo \let\beamer@usebeamertemplatedoss=\beamer@usebeamertemplatedo \let\beamer@usebeamertemplatedos=\beamer@usebeamertemplatedo } \newif\ifbeamer@sbt \newtoks\beamer@sbttoks \newcommand<>\defbeamertemplate{ \beamer@ifempty{#1} {\def\beamer@@oar{}} {\def\beamer@@oar{#1}}\beamer@defbeamertemplate} \def\beamer@defbeamertemplate{\@ifstar{\beamer@sbttrue\beamer@sbtoo}{\beamer@sbtfalse\beamer@sbtoo}} \def\beamer@sbtoo#1#2{\@ifnextchar[{\beamer@sbto{#1}{#2}}{\beamer@sbto{#1}{#2}[0]}} \def\beamer@sbto#1#2[#3]{\@ifnextchar[{\beamer@@sbto{#1}{#2}[{#3}]}{\def\beamer@sbtotemp{}\beamer@@@sbto{#1}{#2}[{#3}]}} \long\def\beamer@@sbto#1#2[#3][#4]{\long\def\beamer@sbtotemp{[{#4}]}\beamer@@@sbto{#1}{#2}[{#3}]} \long\def\beamer@@@sbto#1#2[#3]#4{% \beamer@sbttoks={\beamer@@@@sbto{#1}{#2}[{#3}]{#4}}% \@ifnextchar[{\the\beamer@sbttoks}{\the\beamer@sbttoks[action]{}}% } \long\def\beamer@@@@sbto#1#2[#3]#4[#5]#6{% \edef\beamer@@sbtoarg{\expandafter\noexpand\csname beamer@@tmpop@#1@#2\endcsname[{#3}]}% \expandafter\expandafter\expandafter\newcommand\expandafter\beamer@@sbtoarg\beamer@sbtotemp{% \expandafter\long\expandafter\def\csname beamer@@tmpl@#1\endcsname{#4}#6}% \let\beamer@@next=\beamer@resetsbtoarg% \expandafter\mode\beamer@@oar{\let\beamer@@next=\relax}% \beamer@@next% \ifbeamer@sbt\setbeamertemplate{#1}[{#2}]\relax\relax\relax\relax\relax\relax\relax\relax\relax\fi% } \def\beamer@resetsbtoarg{% \expandafter\expandafter\expandafter\renewcommand\expandafter\beamer@@sbtoarg\beamer@sbtotemp{} } \def\defbeamertemplatealias#1#2#3{% \edef\beamer@@temp{\def\expandafter\noexpand\csname beamer@@tmpop@#1@#2\endcsname{\expandafter\noexpand\csname beamer@@tmpop@#1@#3\endcsname}}% \beamer@@temp} \def\defbeamertemplateparent#1{\@ifnextchar[{\beamer@sbtoparo{#1}}{\beamer@sbtoparo{#1}[*]}} \def\beamer@sbtoparo#1[#2]#3{\@ifnextchar[{\beamer@sbtopar{#1}[{#2}]{#3}}{\beamer@sbtopar{#1}[{#2}]{#3}[0]}} \def\beamer@sbtopar#1[#2]#3[#4]{\@ifnextchar[ {\beamer@@sbtopar{#1}[{#2}]{#3}[{#4}]} {\def\beamer@sbtotemp{}\beamer@@@sbtopar{#1}[{#2}]{#3}[{#4}]}} \long\def\beamer@@sbtopar#1[#2]#3[#4][#5]{\long\def\beamer@sbtotemp{[{#5}]}\beamer@@@sbtopar{#1}[{#2}]{#3}[{#4}]} \long\def\beamer@@@sbtopar#1[#2]#3[#4]#5{% \expandafter\def\csname beamer@@tmpgrp@#1\endcsname{#3}% \edef\beamer@@sbtoarg{\noexpand\newcommand\expandafter\noexpand\csname beamer@@tmpop@#1@#2\endcsname[{#4}]}% \expandafter\beamer@@sbtoarg\beamer@sbtotemp{% \def\beamer@sbtlist{#3}% \@for\beamer@templ:=\beamer@sbtlist\do {\expandafter\expandafter\expandafter\setbeamertemplate \expandafter\expandafter\expandafter{\expandafter\beamer@templ\expandafter}\expandafter[\beamer@@sbt@option]#5}}} \def\setbeamertemplate#1{% \@ifnextchar[{\beamer@sbtchoose{#1}}{\beamer@sbtexec{#1}}} \long\def\beamer@sbtexec#1#2{% \expandafter\long\expandafter\def\csname beamer@@tmpl@#1\endcsname{#2}% \expandafter\ifx\csname beamer@@tmpgrp@#1\endcsname\relax% \else% \expandafter\expandafter\expandafter\def \expandafter\expandafter\expandafter\beamer@sbt@group \expandafter\expandafter\expandafter{\csname beamer@@tmpgrp@#1\endcsname}% \@for\beamer@templ:=\beamer@sbt@group\do{\expandafter\setbeamertemplate\expandafter{\beamer@templ}{#2}}% \fi% } \long\def\beamer@sbtchoose#1[#2]{\def\beamer@@sbt@option{#2}% \expandafter\ifx\csname beamer@@tmpop@#1@#2\endcsname\relax% \expandafter\let\expandafter\beamer@@next\csname beamer@@tmpop@#1@*\endcsname% \else% \expandafter\let\expandafter\beamer@@next\csname beamer@@tmpop@#1@#2\endcsname% \fi% \beamer@@next% } \newcommand\addtobeamertemplate[3]{% \long\def\beamer@temp{#2}% \expandafter\def\expandafter\beamer@@temp\expandafter{\expandafter\long\expandafter\def\csname beamer@@tmpl@#1\endcsname}% \expandafter\expandafter\expandafter\long% \expandafter\expandafter\expandafter\def% \expandafter\expandafter\expandafter\beamer@@addtemplate% \expandafter\expandafter\expandafter{\csname beamer@@tmpl@#1\endcsname}% \expandafter\expandafter\expandafter\beamer@@temp% \expandafter\expandafter\expandafter{\expandafter\beamer@temp\beamer@@addtemplate#3}% } \RequirePackage{beamerbaseauxtemplates} \mode beamer/base/beamerbaseframe.sty0000644000175000017500000006052312050430504016434 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % Copyright 2011 by Vedran Mileti\'c, Joseph Wright % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbaseframe.sty,v dcd846607320 2012/09/13 20:41:01 joseph $ \mode \newbox\beamer@framebox \newbox\beamer@frametitlebox \newbox\beamer@zoombox \newcount\beamer@zoomcount \newcount\beamer@zoomframecount \newdimen\beamer@frametextheight \mode { \newif\ifbeamer@inframe \beamer@inframefalse % Save! \let\framelatex=\frame } \def\refcounter#1{\protected@edef\@currentlabel% {\csname p@#1\endcsname\csname the#1\endcsname}}% % % Slide Definitions % \newcounter{subsectionslide}[subsection] \renewcommand\thesubsectionslide{\@arabic\c@subsectionslide} \def\beamer@entrycode{} \def\beamer@exitcode{} \def\beamer@setuplinks{% {% \def\sectionentry##1##2##3##4##5{}% \def\slideentry##1##2##3##4##5##6{}% \dohead% }% } \newenvironment{beamer@frameslide}{% \ifbeamer@autobreak\else% \ifx\beamer@againname\@empty% {\let\@elt\beamer@restorecounter\beamer@overlaycounterresets}% \else% {\let\@elt\beamer@labelrestorecounter\beamer@overlaycounterresets}% \fi% \fi% \global\c@beamerpauses=1\relax% \expandafter\beamer@ifempty\expandafter{\beamer@framestartpage}{% \stepcounter{subsectionslide}% \xdef\beamer@framestartpage{\the\c@page}% only first time }{\clearpage\beamer@notesactions}% cleanup from previous slide \hypersetup{pdfpagetransition=R}% \hypersetup{pdfpageduration=}% \@ifundefined{thispdfpagelabel}{}{% \thispdfpagelabel{\insertframenumber}}% \xdef\beamer@frameendpage{\the\c@page}% every time \beamer@setuplinks% \beamer@displaybreak% \global\setbox\beamer@zoombox=\box\voidb@x% \def\beamer@zoomer{}% \beamer@slidehaszoomfalse% \gdef\insertframetitle{}% \gdef\insertframesubtitle{}% \gdef\beamer@frametitle{}% \gdef\beamer@shortframetitle{}% \gdef\beamer@framesubtitle{}% \let\beamer@startcomment=\beamer@startcommentinframe% % Start slide: \beamer@framenotesbegin% \global\setbox\beamer@framebox=\vbox\bgroup% \beamer@inframetrue% \let\frame=\framelatex% inside frames, use LaTeX's \frame command \begin{beamer@framepauses}% \refcounter{framenumber}%use frame number for \label \ifbeamer@shrink% \hsize=\beamer@shrinkfactorinv\hsize% \textwidth=\beamer@shrinkfactorinv\textwidth% \linewidth=\beamer@shrinkfactorinv\linewidth% \fi% % Insert labels if necessary: \ifx\beamer@againname\@empty\else% \nointerlineskip\vbox to0pt{\vss% \label<\the\beamer@slideinframe>{\beamer@againname<\the\beamer@slideinframe>}% \ifnum\beamer@slideinframe=1\relax% \label<1>{\beamer@againname}% \fi% }\nointerlineskip% \fi% \ifx\beamer@framehypertargets\@empty\else% \nointerlineskip\vbox to0pt{\vss% \beamer@framehypertargets% \global\let\beamer@framehypertargets\@empty% }\nointerlineskip% \fi% \vskip-\parskip\vbox{}% \beamer@initfirstlineunskip% \ifbeamer@plainframe\nointerlineskip\fi% \beamer@checkframetitle}% {\end{beamer@framepauses}% \egroup% \ifx\beamer@frametitle\@empty% \setbox\beamer@frametitlebox=\box\voidb@x% \else% \setbox\beamer@frametitlebox=\vbox{% \vbox{}% {\parskip0pt\usebeamertemplate***{frametitle}\vskip0.25em}% }% \fi% \ifbeamer@plainframe% \beamer@frametextheight=\paperheight% \else% \beamer@frametextheight=\textheight% \fi% \advance\beamer@frametextheight by-\ht\beamer@frametitlebox% \advance\beamer@frametextheight by-\dp\beamer@frametitlebox% \advance\beamer@frametextheight by-\beamer@frametopskip% \ifbeamer@shrink% \beamer@shrinkframebox% \fi% \ifx\beamer@zoomer\@empty \setbox\beamer@framebox=\vbox{% \nobreak\vbox{}\nobreak\par\nobreak\beamer@entrycode\nobreak% \nointerlineskip\unvbox\beamer@frametitlebox% \nobreak% \ifbeamer@autobreak% \vskip\beamer@frametopskipautobreak% \else% \vskip\beamer@frametopskip% \fi% \nobreak% \nointerlineskip\box\beamer@zoombox\nointerlineskip% \nobreak% \ifbeamer@slidehaszoom\box\beamer@framebox\else\unvbox\beamer@framebox\fi% % bottom skip is added in autobreakframebox }% \beamer@autobreakframebox% \else% \beamer@zoomer% \fi% \beamer@undolabels% \beamer@framenotesend% \box\beamer@framebox} \mode { \def\beamer@checkframetitle{\@ifnextchar\bgroup\beamer@inlineframetitle{}} \def\beamer@inlineframetitle#1{% \@ifnextchar\bgroup{\frametitle{#1}\framesubtitle}{\frametitle{#1}\relax}% } } % % Resetting counters % \def\resetcounteronoverlays#1{% \@cons\beamer@overlaycounterresets{{c@#1}}% } \def\resetcountonoverlays#1{% \@cons\beamer@overlaycounterresets{{#1}}% } \def\beamer@overlaycounterresets{} \resetcounteronoverlays{equation} \resetcounteronoverlays{parentequation} \resetcounteronoverlays{footnote} \resetcounteronoverlays{mpfootnote} \resetcounteronoverlays{figure} \resetcounteronoverlays{table} \resetcountonoverlays{beamer@zoomframecount} \resetcounteronoverlays{ExNo} \resetcounteronoverlays{SubExNo} \resetcounteronoverlays{SubSubExNo} \def\beamer@savecounter#1{% \@ifundefined{#1}{}% {\expandafter\xdef\csname saved@#1\endcsname% {\expandafter\the\csname #1\endcsname}}% } \def\beamer@restorecounter#1{% \@ifundefined{#1}{}% {\edef\temp{\csname saved@#1\endcsname}% \expandafter\global\csname #1\endcsname=\temp}% } \def\beamer@labelsavecounter#1{% \@ifundefined{#1}{}% {\expandafter\xdef\csname saved@\beamer@againname @#1\endcsname% {\expandafter\the\csname #1\endcsname}}% } \def\beamer@labelrestorecounter#1{% \@ifundefined{#1}{}% {\edef\temp{\csname saved@\beamer@againname @#1\endcsname}% \expandafter\global\csname #1\endcsname=\temp}% } % % Skips % \newskip\beamer@frametopskip \newskip\beamer@framebottomskip \newskip\beamer@frametopskipautobreak \newskip\beamer@framebottomskipautobreak % % Keys % \define@key{beamerframe}{label}{\def\beamer@againname{#1}% {\let\@elt\beamer@labelsavecounter\beamer@overlaycounterresets}% } \define@key{beamerframe}{relabel}{\def\beamer@againname{#1}% \def\beamer@undolabels{{\let\@elt\beamer@restorecounter\beamer@overlaycounterresets}}% } \define@key{beamerframe}{plain}[true]{% \beamer@plainframetrue% \def\beamer@frametemplate{\beamer@frametemplate@plain}} \define@key{beamerframe}{containsverbatim}[true]{\csname beamer@containsverbatim#1\endcsname} \define@key{beamerframe}{fragile}[true]{% \beamer@containsverbatimfalse% \beamer@isfragilefalse% \csname beamer@fragile#1\endcsname% } \def\beamer@fragilefalse{} \def\beamer@fragiletrue{\beamer@isfragiletrue} \def\beamer@fragilesingleslide{\beamer@containsverbatimtrue} \define@key{beamerframe}{c}[true]{% centered \beamer@frametopskip=0pt plus 1fill\relax% \beamer@framebottomskip=0pt plus 1.5fill\relax% \beamer@frametopskipautobreak=0pt plus .4\paperheight\relax% \beamer@framebottomskipautobreak=0pt plus .6\paperheight\relax% \def\beamer@initfirstlineunskip{}% } \define@key{beamerframe}{t}[true]{% top \beamer@frametopskip=.2cm plus .5\paperheight\relax% \beamer@framebottomskip=0pt plus 1fill\relax% \beamer@frametopskipautobreak=\beamer@frametopskip\relax% \beamer@framebottomskipautobreak=\beamer@framebottomskip\relax% \def\beamer@initfirstlineunskip{% \def\beamer@firstlineitemizeunskip{% \vskip-\partopsep\vskip-\topsep\vskip-\parskip% \global\let\beamer@firstlineitemizeunskip=\relax}% \everypar{\global\let\beamer@firstlineitemizeunskip=\relax}} } \define@key{beamerframe}{b}[true]{% bottom \beamer@frametopskip=0pt plus 1fill\relax% \beamer@framebottomskip=0pt\relax% \beamer@frametopskipautobreak=\beamer@frametopskip\relax% \beamer@framebottomskipautobreak=\beamer@framebottomskip\relax% \def\beamer@initfirstlineunskip{}% } \newif\ifbeamer@noframenumbering \beamer@noframenumberingfalse \define@key{beamerframe}{noframenumbering}[true]{\beamer@noframenumberingtrue} \define@key{beamerframe}{environment}{\def\beamer@frameenvironmentsubst{#1}} \define@key{beamerframe}{typeset second}[true]{\csname beamer@dosecondmode#1\endcsname} \newif\ifbeamer@containsverbatim \newif\ifbeamer@isfragile \newif\ifbeamer@autobreak \newif\ifbeamer@shrink \newif\ifbeamer@plainframe \newif\ifbeamer@slidehaszoom \let\beamer@firstlineitemizeunskip\relax % % The frame environment (a trifle ugly...) % % Copyright notice: the following code is adapted from code from the % amsmath package. \newtoks\beamer@envbody \def\beamer@frameenv{% \def\beamer@process@envbody{\endgroup% \expandafter\expandafter\expandafter\beamer@framecommand\expandafter\beamer@frameoptions\expandafter{\the\beamer@envbody}}% \global\beamer@envbody{}\def\beamer@begin@stack{b}% \begingroup \let\frame\beamer@collect@@body \def\beamer@process@envbody{\frame}% \beamer@process@envbody% } % Normally not executed; only in containsverbatim context: \def\endframe{\egroup\begingroup\def\@currenvir{frame}} \long\def\beamer@push@begins#1\begin#2{\ifx\end#2\else b\expandafter\beamer@push@begins\fi} \long\def\beamer@collect@@body#1\end#2{% \def\test{#1}% \edef\beamer@begin@stack{\beamer@push@begins#1\begin\end \expandafter\@gobble\beamer@begin@stack}% \ifx\@empty\beamer@begin@stack \global\beamer@envbody\expandafter{\the\beamer@envbody#1}% \def\reserved@a{#2} \ifx\reserved@a\beamer@frametext% \endgroup% \let\@next=\beamer@process@envbody % A little tricky! Note the grouping \@checkend{#2}% \else% % ok, just expand it, presumably it will generate the desired \end{frame} \let\@next=\beamer@process@expander% \fi \else \global\beamer@envbody\expandafter{\the\beamer@envbody#1\end{#2}}% \let\@next=\beamer@process@envbody% \fi \@next } \def\beamer@process@expander{% \def\beamer@begin@stack{b}% \expandafter\expandafter\expandafter\beamer@collect@@body\csname end\reserved@a\endcsname\endgroup} \mode {\def\beamer@frametext{frame}} \def\frame{% \ifx\@currenvir\beamer@frametext% \gdef\beamer@frameoptions{}% \let\beamer@next=\beamer@copewithframeenv% \else% \let\beamer@next=\beamer@framecommand% \fi% \beamer@next} \def\beamer@copewithframeenv{% \@ifnextchar<% {\beamer@@frameenvspec}% {% \@ifnextchar[% {\beamer@@frameenvopt}% {\expandafter\beamer@checkforverbatim\beamer@frameoptions containsverbatim\relax}}% } \def\beamer@@frameenvspec<#1>{% \expandafter\gdef\expandafter\beamer@frameoptions\expandafter{\beamer@frameoptions<#1>}% \beamer@copewithframeenv} \def\beamer@@frameenvopt[#1]{% \expandafter\gdef\expandafter\beamer@frameoptions\expandafter{\beamer@frameoptions[#1]}% \beamer@copewithframeenv} \def\beamer@checkforverbatim#1containsverbatim#2\relax{% \beamer@ifempty{#2}% {\beamer@checkforfragile#1fragile\relax} {% contains verbatim \endgroup% end environment \expandafter\beamer@framecommand\beamer@frameoptions\bgroup}% } \def\beamer@checkforfragile#1fragile#2\relax{% \beamer@ifempty{#2}% {\beamer@frameenv}% normal frame {% contains verbatim \endgroup% end environment \expandafter\beamer@framecommand\beamer@frameoptions\bgroup}% } % Check for old version: \def\beamer@framecommand{% \edef\beamer@defaultospec{\beamer@gdefaultospec}% \@ifnextchar<\beamer@frame\beamer@checkoldframe} \def\beamer@checkoldframe{\@ifnextchar[\beamer@@checkoldframe{\beamer@frame<*>}} \def\beamer@@checkoldframe[{\@ifnextchar<{\beamer@frame<*>[}{\beamer@@@checkoldframe[}} \def\beamer@@@checkoldframe[#1#2]{% \let\beamer@next=\beamer@newframesyntax% \ifcat#11% a number-like first letter in argument \let\beamer@next=\beamer@oldframesyntax% \else% \beamer@checkforcolon#2:.% \fi% \beamer@next{#1#2}} \def\beamer@checkforcolon#1:#2.{% \beamer@ifempty{#2}{}{\let\beamer@next=\beamer@oldframesyntax}} \def\beamer@newframesyntax#1{\beamer@@@frame<*>[#1]} \def\beamer@oldframesyntax#1{\beamer@@@frame<#1>[]} \def\beamer@framedefaultospec<#1>[#2]{% \def\beamer@defaultospec{#2}% \@ifnextchar[{\beamer@@@@frame<#1>}{\beamer@@@@frame<#1>[]}} \newdimen\framewidth \def\beamer@frame<#1>{ \@ifnextchar[{\beamer@@@frame<#1>}{\beamer@@@frame<#1>[]}} \def\beamer@@@frame<#1>[{\@ifnextchar<{\beamer@framedefaultospec<#1>[}{\beamer@@@@frame<#1>[}} \def\beamer@@@@frame<#1>[#2]{% \framewidth\textwidth \beamer@savemode% \def\beamer@mode{\mode}% \def\beamer@frametemplate{}% \def\beamer@againname{}% \def\beamer@undolabels{}% \def\beamer@cramped{}% \def\beamer@displaybreak{}% \setbox\beamer@footins=\box\voidb@x% \beamer@autobreakcount=0\relax% \beamer@autobreaklastheight=16000pt% \beamer@zoomcount=0\relax% \beamer@containsverbatimfalse% \beamer@isfragilefalse% \beamer@autobreakfalse% \beamer@shrinkfalse% \beamer@plainframefalse% \global\advance\beamer@zoomframecount by1\relax% \csname beamer@dosecondmode\beamer@defaultdosecondmode\endcsname% \ifbeamer@centered\setkeys{beamerframe}{c}\else\setkeys{beamerframe}{t}\fi% \setkeys{beamerframe}{environment=frame}% \setkeys{beamerframe}{#2}% \beamer@frametemplate% \ifbeamer@noframenumbering% \beamer@noframenumberingfalse% \else% \stepcounter{framenumber}%do not set \label here - it interferes with AtBegin* \fi% {\let\@elt\beamer@savecounter\beamer@overlaycounterresets} \gdef\beamer@framestartpage{}% \gdef\beamer@whichframes{#1}% \ifx\beamer@framerestriction\@undefined\else% restriction stuff \expandafter\beamer@checkifinlist\beamer@framerestriction\relax% \fi% \ifbeamer@inlecture% \else% \gdef\beamer@whichframes{all:0}% \fi% \ifx\beamer@againname\@empty% \beamer@slideinframe=0\relax% \beamer@anotherslidefalse% {\beamer@masterdecode{\beamer@whichframes}}% \ifbeamer@anotherslide% %% \beamer@slideinframe=2\relax% %% \def\beamer@doifnotinframe{}% %% \def\beamer@doifinframe{\let\beamer@howtotreatframe\beamer@doseveralframes}% %% \beamer@anotherslidefalse% %% {\beamer@masterdecode{\beamer@whichframes}}% %% \ifbeamer@anotherslide% \let\beamer@howtotreatframe\beamer@doseveralframes% %% \else% single slide in frame %% \let\beamer@howtotreatframe\beamer@dosingleframe% %% \fi% %% \beamer@donow% \ifbeamer@containsverbatim% \let\beamer@howtotreatframe\beamer@dosingleframe% \fi% \ifbeamer@autobreak% \let\beamer@howtotreatframe\beamer@autobreakframe% \fi% \ifbeamer@isfragile% \let\beamer@howtotreatframe\beamer@doexternalframe% \fi% \else% no slides in frame \let\beamer@howtotreatframe\beamer@donoframe% \fi% \else% again mode \let\beamer@howtotreatframe\beamer@doseveralframes% \ifbeamer@isfragile% \let\beamer@howtotreatframe\beamer@doexternalframe% \fi% \ifbeamer@containsverbatim \let\beamer@howtotreatframe\beamer@dosingleframe \fi \fi% \beamer@howtotreatframe} \long\def\beamer@donoframe{% \beamer@slideinframe=1\relax% \setbox\beamer@tempbox\vbox\bgroup% \beamer@inframetrue% \leavevmode% \def\pause{}% \def\onslide{}% \afterassignment\beamer@checknoslide\let\beamer@next} \def\beamer@checknoslide{% \ifcat\bgroup\noexpand\beamer@next% \let\beamer@do\relax% \aftergroup\beamer@reseteecodes% \else% \let\beamer@do\beamer@noframesingletoken% \fi% \beamer@do} \def\beamer@noframesingletoken{\beamer@next\egroup\beamer@reseteecodes} \long\def\beamer@doseveralframes#1{% \ifx\beamer@againname\@empty\else% % Again stuff \expandafter \gdef\csname beamer@again@\beamer@againname\endcsname{{#1}}% \fi% \beamer@slideinframe=1\relax% \loop% \beamer@anotherslidefalse% \def\beamer@doifnotinframe{}% \def\beamer@doifinframe{\begin{beamer@frameslide}% #1% \end{beamer@frameslide}}% {\beamer@masterdecode{\beamer@whichframes}}% \beamer@donow% \ifbeamer@twoscreenstext% \beamer@dosecondscreennow{#1}% two screen stuff \fi% \ifbeamer@anotherslide \advance\beamer@slideinframe by 1\relax \repeat% \beamer@writeslidentry% \beamer@reseteecodes} \def\beamer@dosingleframe{% \beamer@slideinframe=1\relax% \begin{beamer@frameslide}\relax% \bgroup\aftergroup\beamer@endslide\afterassignment\beamer@checkslide\let\beamer@next} \def\beamer@checkslide{% \ifcat\bgroup\noexpand\beamer@next% \let\beamer@do\beamer@checkframetitle% \else\let\beamer@do\beamer@singletoken\fi% \beamer@do} \def\beamer@endslide{\end{beamer@frameslide}\beamer@writeslidentry\beamer@reseteecodes} \def\beamer@singletoken{\beamer@next\egroup} \def\beamer@doexternalframe{% \edef\beamer@verbfilename{\jobname\ifx\beamer@againname\@empty\else.\insertframenumber\fi.vrb}% .vrb for `verbatim' \beamer@setupstoppers{\beamer@frameenvironmentsubst}% \immediate\openout\beamer@verbatimfileout=\beamer@verbfilename% \expandafter\beamer@checktitleverbatim\@gobble} \def\beamer@checktitleverbatim{\@ifnextchar\bgroup{\beamer@verbatim@frametitle}{\beamer@verbatimreadframe}} \def\beamer@verbatim@frametitle#1{% \@ifnextchar\bgroup{\beamer@verbatim@framesubtitle{#1}} {% \@temptokena{#1}% \edef\@tempa{\string\frametitle\string{\the\@temptokena\string}}% \@temptokena\expandafter{\@tempa}% \immediate\write\beamer@verbatimfileout{\the\@temptokena}% \beamer@verbatimreadframe }% } \def\beamer@verbatim@framesubtitle#1#2{\beamer@verbatimreadframe\frametitle{#1}\framesubtitle{#2}} % will return to following command with frame contents written to \beamer@verbfilename \def\beamer@afterexternalframe{% \ifx\beamer@frameenvironmentsubst\beamer@frametext% \else% \immediate\write\beamer@verbatimfileout{\noexpand\beamerclosesubstitutedenvironement{\beamer@frameenvironmentsubst}}% \fi% \immediate\closeout\beamer@verbatimfileout% \expandafter\beamer@doframeinput\beamer@frameoptions\relax} \def\beamer@doframeinput{\@ifnextchar<{\beamer@frameinput}{\beamer@frameinput<*>}} \def\beamer@frameinput<#1>{\@ifnextchar[{\beamer@@frameinput<#1>}{\beamer@@frameinput<#1>[]}} \def\beamer@@frameinput<#1>[{\@ifnextchar<{\beamer@@@@frameinput<#1>[}{\beamer@@@frameinput<#1>[<*>][}} \def\beamer@@@@frameinput<#1>[#2]{\@ifnextchar[{\beamer@@@frameinput<#1>[{#2}]}{\beamer@@@frameinput<#1>[{#2}][]}} \def\beamer@@@frameinput<#1>[#2][#3]{% \global\advance\c@framenumber by-1\relax% \edef\beamer@temp{\noexpand\frame<#1>[#2][{#3,fragile=false}]% {\begingroup\noexpand\input{\beamer@verbfilename}\endgroup}}% \beamer@temp% \ifx\beamer@frameenvironmentsubst\beamer@frametext% \else% \expandafter\endgroup% \fi% \beamer@reseteecodes} \def\beamerclosesubstitutedenvironement#1{ \let\end\beamer@specialend% \let\endframe\relax% \csname end#1\endcsname} \def\beamer@writeslidentry{% \expandafter\beamer@ifempty\expandafter{\beamer@framestartpage}{}% does not happen normally {%else \addtocontents{nav}% {\protect\headcommand{% \protect\slideentry{\the\c@section}{\the\c@subsection}{\the\c@subsectionslide}% {\beamer@framestartpage/\beamer@frameendpage}{\lastsubsection}{\the\c@part}}}% \addtocontents{nav}% {\protect\headcommand{% \protect\beamer@framepages{\beamer@framestartpage}{\beamer@frameendpage}}}% \clearpage\beamer@notesactions% } } \def\beamer@reseteecodes{\gdef\beamer@entrycode{}\gdef\beamer@exitcode{}% \beamer@slideinframe=1\relax\beamer@resumemode} \let\beamer@origend\end \def\beamer@specialend#1{% \def\beamer@temp{#1}% \ifx\beamer@temp\beamer@frametext% \def\beamer@next{}% \else% \def\beamer@next{\expandafter\beamer@origend\expandafter{\beamer@temp}% \let\end\beamer@specialend% \let\endframe\relax% } \fi% \beamer@next} % % \includeonlyframes % \def\beamer@checkifinlist#1,#2\relax{ \def\beamer@temp{#1}% \ifx\beamer@temp\beamer@againname\else \def\beamer@temp{#2}% \ifx\beamer@temp\@empty \gdef\beamer@whichframes{all:0}% \else% \beamer@checkifinlist#2\relax% \fi% \fi% } \def\includeonlyframes#1{\def\beamer@framerestriction{#1,}} % % Frames in article mode % \mode
{ \def\endframe{\egroup} \def\frame{\@ifnextchar<\beamer@frame{\beamer@frame<*>}} \def\beamer@frame<#1>{\@ifnextchar[{\beamer@@frame<#1>}{\beamer@@frame<#1>[]}} \long\def\beamer@@frame<#1>[#2]{% \global\let\insertframetitle=\@empty% \global\let\insertframesubtitle=\@empty% \beamer@slideinframe=1\relax% \refstepcounter{framenumber}% \beamer@slideinframe=0\relax% \beamer@anotherslidefalse% {\beamer@masterdecode{#1}}% \ifbeamer@anotherslide% \let\beamer@howtotreatframe\beamer@dosingleframe% \else% no slides in frame \let\beamer@howtotreatframe\beamer@donoframe% \fi% \beamer@slideinframe=1\relax% \beamer@howtotreatframe} \long\def\beamer@donoframe{% \setbox\beamer@tempbox\vbox\bgroup% \beamer@inframetrue% \let\frame=\framelatex \usebeamertemplate{frame begin}% \bgroup\aftergroup\beamer@endframe% \beamer@article@startframe}% \def\beamer@dosingleframe{% \bgroup% \beamer@inframetrue% \let\frame=\framelatex \usebeamertemplate{frame begin}% \bgroup\aftergroup\beamer@endframe% \beamer@article@startframe}% \def\beamer@endframe{% \usebeamertemplate{frame end}\egroup} \def\beamer@article@startframe{% \ifx\@currenvir\beamer@frametext% \let\beamer@next=\beamer@checkframetitle% \else% \let\beamer@next=\beamer@article@framecmd% \fi% \beamer@next}% \def\beamer@article@framecmd{% \afterassignment\beamer@checkframetitle \let\beamer@next=} \providecommand\includeonlyframes[1]{}% no effect } \mode { \beamer@slideinframe=1\relax% } % % Frame counter % \mode { \newcounter{framenumber} \def\insertframenumber{\@arabic\c@framenumber} } % % Pagebreak command % \mode { \renewcommand<>{\pagebreak}[1][4]{\only#2{\beameroriginal\pagebreak[{#1}]}} \renewcommand<>{\nopagebreak}[1][4]{\only#2{\beameroriginal\nopagebreak[{#1}]}} \def\framebreak{\pagebreak} \def\noframebreak{\nopagebreak} } % % Linebreak command % \renewcommand<>{\\}{\only#1{\beameroriginal\\}} \renewcommand<>{\@centercr}{\only#1{\beameroriginal\@centercr}} \renewcommand<>{\@normalcr}{\only#1{\beameroriginal\@normalcr}} \mode
{ \expandafter\let\expandafter\beamer@origbreak\expandafter=% \csname\expandafter\@gobble\string\\ \endcsname% evil trickery to add a space to the name \DeclareRobustCommand\\{\beamer@ifnextcharospec{\beamer@breaker}{\beamer@@breaker}} \def\beamer@breaker<#1>{\only<#1>{\beamer@origbreak}} \def\beamer@@breaker{\ifbeamer@inframe\else\expandafter\beamer@origbreak\fi} \let\beamer@origbreakcenter=\@centercr \def\@centercr{\beamer@ifnextcharospec{\beamer@breakercenter}{\beamer@@breakercenter}} \def\beamer@breakercenter<#1>{\only<#1>{\beamer@origbreakcenter}} \def\beamer@@breakercenter{\ifbeamer@inframe\else\expandafter\beamer@origbreakcenter\fi} } % % Plain frames % \def\beamer@frametemplate@plain{% \def\beamer@entrycode{\vspace*{-\headheight}}% \def\beamer@exitcode{\vspace*{-\footheight}\thispagestyle{empty}}} % % Again frame % \def\againframe{\@ifnextchar<{\beamer@againframe}{\beamer@againframe<*>}} \def\beamer@againframe<#1>{\@ifnextchar[{\beamer@@againframe<#1>}{\beamer@@againframe<#1>[]}} \def\beamer@@againframe<#1>[{\@ifnextchar<{\beamer@@@@againframe<#1>[}{\beamer@@@againframe<#1>[<*>][}} \def\beamer@@@@againframe<#1>[#2]{\@ifnextchar[{\beamer@@@againframe<#1>[{#2}]}{\beamer@@@againframe<#1>[{#2}][]}} \def\beamer@@@againframe<#1>[#2][#3]#4{% \@ifundefined{beamer@again@#4}% {\ClassError{beamer}{No frame has been designated to resume under the name "#4"}{}}% {% \def\beamer@temp{\frame<#1>[#2][{#3,relabel=#4}]}% \expandafter\let\expandafter\beamer@templet\csname beamer@again@#4\endcsname% \expandafter\beamer@temp\beamer@templet}% } \mode
{ \def\againframe{\@ifnextchar<{\beamer@againframe}{\beamer@againframe<>}} \def\beamer@againframe<#1>{\@ifnextchar[{\beamer@@againframe<#1>}{\beamer@@againframe<#1>[]}} \def\beamer@@againframe<#1>[{\@ifnextchar<{\beamer@@@@againframe<#1>[}{\beamer@@againframe<#1>[<*>][}} \def\beamer@@@@againframe<#1>[#2]{\@ifnextchar[{\beamer@@@againframe<#1>[{#2}]}{\beamer@@@againframe<#1>[{#2}][]}} \def\beamer@@@againframe<#1>[#2][#3]#4{} % do nothing } \mode beamer/base/beamerbaseexercise.sty0000644000175000017500000000204312050430504017142 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbaseexercise.sty,v efa082c6111d 2010/05/01 11:27:03 rivanvx $ \renewcommand{\exerSolnInput} {% \let\webnewpage=\relax \immediate\closeout\ex@solns \ifeq@nosolutions\else \iftherearesolutions% \eqsolutionshook \input{\jobname.sol}% \fi \fi } \renewcommand{\quizSolnInput} {% \let\webnewpage=\relax \immediate\closeout\quiz@solns \ifeq@noquizsolutions\else \iftherearequizsolutions% \input{\jobname.qsl}% \fi \fi } \def\eqEXt{\frame[containsverbatim]\bgroup} \def\endeqEXt{\egroup} \def\eqSQt{\frame[containsverbatim]\bgroup} \def\endeqSQt{\egroup} \def\eqQt{\frame[containsverbatim]\bgroup} \def\endeqQt{\egroup} beamer/base/beamerbasetheorems.sty0000644000175000017500000001106512050430504017165 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasetheorems.sty,v 7e7cc5e53e9d 2010/06/06 12:18:42 rivanvx $ \mode \ifbeamer@ams \RequirePackage{amsmath} \RequirePackage{amsthm} % For old versions of amsthm \providecommand\thm@space@setup{} \providecommand\pushQED[1]{\def\beamer@qed{#1}} \providecommand\popQED{\beamer@qed} \providecommand\qedhere{\qed} % Redfine certain amsthm internals: \def\@thm#1#2#3{% \ifhmode\unskip\unskip\par\fi \normalfont \let\thmheadnl\relax \let\thm@swap\@gobble \thm@headpunct{.}% add period after heading \thm@space@setup #1% style overrides \def\inserttheoremname{#3} \def\inserttheorempunctuation{\the\thm@headpunct} \def\@tempa{#2}% \ifx\@empty\@tempa \def\inserttheoremnumber{} \else \refstepcounter{#2}% \expandafter\def\expandafter\inserttheoremnumber\expandafter{ \csname the#2\endcsname} \fi \beamer@begintheorem% } \let\beamer@origxthm=\@xthm \def\@xthm#1{\resetcounteronoverlays{#1}\beamer@origxthm{#1}} \def\inserttheoremheadfont{\the\thm@headfont} \def\inserttheoremblockenv{block} \def\th@example{% \normalfont % body font \def\inserttheoremblockenv{exampleblock} } \newcommand<>\beamer@begintheorem[1][]{% \beamer@ifempty{#1} {\def\inserttheoremaddition{}} {\def\inserttheoremaddition{#1}} \usebeamertemplate{theorem begin}#2} \def\@endtheorem{\usebeamertemplate{theorem end}} \renewenvironment<>{proof}[1][\proofname]{% \par \def\insertproofname{#1\@addpunct{.}}% \pushQED{\qed} \usebeamertemplate{proof begin}#2} {\popQED\usebeamertemplate{proof end}} \fi \def\qedsymbol{\leavevmode\hbox{\usebeamertemplate*{qed symbol}}} \mode
{ \ifbeamer@ams \RequirePackage{amsmath} \RequirePackage{amsthm} \renewenvironment<>{proof}[1][\proofname] {\begin{actionenv}#2\begin{originalproof}[{#1}]}{\end{originalproof}\end{actionenv}} % Make new theorem overlay-specification-aware \let\beamer@origthm=\@thm \def\@thm#1#2#3{\def\beamer@store{{#1}{#2}{#3}}\beamer@readspec} \def\beamer@storeaction{\begin{actionenv}} \newcommand<>\beamer@readspec[1][]{\def\beamer@storeaction{\begin{actionenv}#2}% \expandafter\beamer@origthm\beamer@store[{#1}]} \let\beamer@origbegintheorem=\@begintheorem \def\@begintheorem{\beamer@storeaction\beamer@origbegintheorem} \let\beamer@origendtheorem=\@endtheorem \def\@endtheorem{\beamer@origendtheorem\end{actionenv}} \fi \def\th@example{\th@remark} \newcommand{\ExampleInline}[1]{\translate{Example}: \ignorespaces#1} % Compatiblity: \newcommand{\BeispielInline}[1]{Beispiel: \ignorespaces#1} } \mode { \ifbeamer@blocks \ifbeamer@countsect \newtheorem{theorem}{\translate{Theorem}}[section] \else \newtheorem{theorem}{\translate{Theorem}} \fi \newtheorem{corollary}[theorem]{\translate{Corollary}} \newtheorem{fact}[theorem]{\translate{Fact}} \newtheorem{lemma}[theorem]{\translate{Lemma}} \newtheorem{problem}[theorem]{\translate{Problem}} \newtheorem{solution}[theorem]{\translate{Solution}} \theoremstyle{definition} \newtheorem{definition}[theorem]{\translate{Definition}} \newtheorem{definitions}[theorem]{\translate{Definitions}} \theoremstyle{example} \newtheorem{example}[theorem]{\translate{Example}} \newtheorem{examples}[theorem]{\translate{Examples}} % Compatibility \newtheorem{Beispiel}[theorem]{Beispiel} \newtheorem{Beispiele}[theorem]{Beispiele} \theoremstyle{plain} \newtheorem{Loesung}[theorem]{L\"osung} \newtheorem{Satz}[theorem]{Satz} \newtheorem{Folgerung}[theorem]{Folgerung} \newtheorem{Fakt}[theorem]{Fakt} \newenvironment{Beweis}{\begin{proof}[Beweis.]}{\end{proof}} \newenvironment{Lemma}{\begin{lemma}}{\end{lemma}} \newenvironment{Proof}{\begin{proof}}{\end{proof}} \newenvironment{Theorem}{\begin{theorem}}{\end{theorem}} \newenvironment{Problem}{\begin{problem}}{\end{problem}} \newenvironment{Corollary}{\begin{corollary}}{\end{corollary}} \newenvironment{Example}{\begin{example}}{\end{example}} \newenvironment{Examples}{\begin{examples}}{\end{examples}} \newenvironment{Definition}{\begin{definition}}{\end{definition}} \fi } \mode beamer/base/beamerbaseboxes.sty0000644000175000017500000001773012050430504016464 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbaseboxes.sty,v 56972908a390 2012/05/13 13:45:08 joseph $ \def\beamerboxesdeclarecolorscheme#1#2#3{% scheme name, upper color, lower color \setbeamercolor{@scheme upper #1}{fg=white,bg={#2}} \setbeamercolor{@scheme lower #1}{bg={#3}} } \define@key{beamerboxes}{scheme}{\def\bmb@upper{@scheme upper #1}\def\bmb@lower{@scheme lower #1}} \define@key{beamerboxes}{upper}{\def\bmb@upper{#1}} \define@key{beamerboxes}{lower}{\def\bmb@lower{#1}} \define@key{beamerboxes}{width}{\edef\bmb@width{#1}} \define@key{beamerboxes}{shadow}[true]{\csname bmb@shadow#1\endcsname} \newif\ifbmb@shadow \newbox\bmb@box \newbox\bmb@colorbox \newbox\bmb@boxshadow \newbox\bmb@boxshadowball \newbox\bmb@boxshadowballlarge \newdimen\bmb@temp \newdimen\bmb@dima \newdimen\bmb@dimb \newdimen\bmb@prevheight \newcommand\beamerboxesrounded[2][]{% \global\let\beamer@firstlineitemizeunskip=\relax% \vbox\bgroup% \setkeys{beamerboxes}{upper=block title,lower=block body,width=\textwidth,shadow=false}% \setkeys{beamerboxes}{#1}% {% \usebeamercolor{\bmb@lower}% \globalcolorstrue% \colorlet{lower.bg}{bg}% }% {% \usebeamercolor{\bmb@upper}% \globalcolorstrue% \colorlet{upper.bg}{bg}% }% % % Typeset head % \vskip4bp \setbox\bmb@box=\hbox{% \begin{minipage}[b]{\bmb@width}% \usebeamercolor[fg]{\bmb@upper}% #2% \end{minipage}}% \ifdim\wd\bmb@box=0pt% \setbox\bmb@box=\hbox{}% \ht\bmb@box=1.5pt% \bmb@prevheight=-4.5pt% \else% \wd\bmb@box=\bmb@width% \bmb@temp=\dp\bmb@box% \ifdim\bmb@temp<1.5pt% \bmb@temp=1.5pt% \fi% \setbox\bmb@box=\hbox{\raise\bmb@temp\hbox{\box\bmb@box}}% \dp\bmb@box=0pt% \bmb@prevheight=\ht\bmb@box% \fi% \bmb@temp=\bmb@width% \bmb@dima=\bmb@temp\advance\bmb@dima by2.2bp% \bmb@dimb=\bmb@temp\advance\bmb@dimb by4bp% \hbox{% \begin{pgfpicture}{0bp}{+-\ht\bmb@box}{0bp}{+-\ht\bmb@box} \ifdim\wd\bmb@box=0pt% \color{lower.bg}% \else% \color{upper.bg}% \fi% \pgfpathqmoveto{-4bp}{-1bp} \pgfpathqcurveto{-4bp}{1.2bp}{-2.2bp}{3bp}{0bp}{3bp} \pgfpathlineto{\pgfpoint{\bmb@temp}{3bp}} \pgfpathcurveto% {\pgfpoint{\bmb@dima}{3bp}}% {\pgfpoint{\bmb@dimb}{1.2bp}}% {\pgfpoint{\bmb@dimb}{-1bp}}% \bmb@dima=-\ht\bmb@box% \advance\bmb@dima by-2pt% \pgfpathlineto{\pgfpoint{\bmb@dimb}{\bmb@dima}} \pgfpathlineto{\pgfpoint{-4bp}{\bmb@dima}} \pgfusepath{fill} \end{pgfpicture}% \copy\bmb@box% }% \nointerlineskip% \vskip-1pt% \ifdim\wd\bmb@box=0pt% \else% \hbox{% \begin{pgfpicture}{0pt}{0pt}{\bmb@width}{6pt} \bmb@dima=\bmb@width% \advance\bmb@dima by8bp% \pgfpathrectangle{\pgfpoint{-4bp}{-1bp}}{\pgfpoint{\bmb@dima}{8bp}} \pgfusepath{clip} {\pgftransformshift{\pgfpoint{-4bp}{0bp}}\pgftext[left,base]{\pgfuseshading{bmb@transition}}}% \end{pgfpicture}% }% \nointerlineskip% \vskip-0.5pt% \fi% \ifbmb@shadow% \setbox\bmb@boxshadow=\hbox{\pgfuseshading{bmb@shadow}}% \setbox\bmb@boxshadowball=\hbox{\pgfuseshading{bmb@shadowball}}% \setbox\bmb@boxshadowballlarge=\hbox{\pgfuseshading{bmb@shadowballlarge}}% \fi% \setbox\bmb@colorbox=\hbox{{\pgfpicturetrue\pgfsetcolor{lower.bg}}}% \setbox\bmb@box=\hbox\bgroup\begin{minipage}[b]{\bmb@width}% \vskip2pt% \usebeamercolor[fg]{\bmb@lower}% \colorlet{beamerstructure}{upper.bg}% \colorlet{structure}{upper.bg}% %\color{.}% } \def\endbeamerboxesrounded{% \end{minipage}\egroup% \wd\bmb@box=\bmb@width% \bmb@temp=\dp\bmb@box% \advance\bmb@temp by.5pt% \setbox\bmb@box=\hbox{\raise\bmb@temp\hbox{\box\bmb@box}}% \dp\bmb@box=0pt% \bmb@temp=\wd\bmb@box% \bmb@dima=\bmb@temp\advance\bmb@dima by2.2bp% \bmb@dimb=\bmb@temp\advance\bmb@dimb by4bp% \hbox{% \begin{pgfpicture}{0bp}{0bp}{0bp}{0bp} \ifbmb@shadow% {\pgftransformshift{\pgfpoint{4bp}{-3bp}}\pgftext{\copy\bmb@boxshadowball}} \begin{pgfscope} {% \advance\bmb@temp by-1bp% \pgfpathrectangle{\pgfpoint{\bmb@temp}{-7bp}}{\pgfpoint{9bp}{9bp}}% \pgfusepath{clip} }% {\pgftransformshift{\pgfpoint{\bmb@temp}{1bp}}\pgftext{\box\bmb@boxshadowballlarge}} \end{pgfscope} \begin{pgfscope} \advance\bmb@temp by-4bp% \pgfpathrectangle{\pgfpoint{4bp}{-7bp}}{\pgfpoint{\bmb@temp}{5bp}} \pgfusepath{clip} {\pgftransformshift{\pgfpoint{4bp}{-7bp}}\pgftext[left,base]{\copy\bmb@boxshadow}}% \end{pgfscope} \begin{pgfscope} \advance\bmb@temp by 4bp% \bmb@dima=\ht\bmb@box% \advance\bmb@dima by\bmb@prevheight% \advance\bmb@dima by 4bp% \pgfpathrectangle{\pgfpoint{\bmb@temp}{1bp}}{\pgfpoint{4bp}{\bmb@dima}} \pgfusepath{clip} \advance\bmb@dima by-4bp% {\pgftransformshift{\pgfpoint{\bmb@temp}{\bmb@dima}}\pgftext{\box\bmb@boxshadowball}} \advance\bmb@dima by-1bp% \pgfpathrectangle{\pgfpoint{\bmb@temp}{1bp}}{\pgfpoint{4bp}{\bmb@dima}} \pgfusepath{clip} \advance\bmb@temp by4bp% {\pgftransformshift{\pgfpoint{\bmb@temp}{-3bp}}% \pgftransformrotate{90}% \pgftext[left,base]{\box\bmb@boxshadow}}% \end{pgfscope} \fi% \unhbox\bmb@colorbox% \pgfpathqmoveto{-4bp}{1bp} \pgfpathqcurveto{-4bp}{-1.2bp}{-2.2bp}{-3bp}{0bp}{-3bp} \pgfpathlineto{\pgfpoint{\the\bmb@temp}{-3bp}} \pgfpathcurveto% {\pgfpoint{\the\bmb@dima}{-3bp}}% {\pgfpoint{\the\bmb@dimb}{-1.2bp}}% {\pgfpoint{\the\bmb@dimb}{1bp}}% { \bmb@dima=\ht\bmb@box% \pgfpathlineto{\pgfpoint{\bmb@dimb}{\bmb@dima}} \pgfpathlineto{\pgfpoint{-4bp}{\bmb@dima}} \pgfusepath{fill} } \ifbmb@shadow% { \color{black!50!bg} \pgfsetlinewidth{0pt} \pgfpathmoveto{\pgfpoint{\bmb@dimb}{-.5bp}} \bmb@dima=\ht\bmb@box% \advance\bmb@dima by\bmb@prevheight% \advance\bmb@dima by 1bp% \pgfpathlineto{\pgfpoint{\bmb@dimb}{\bmb@dima}} \pgfusepath{stroke} \bmb@temp=\bmb@dima \advance\bmb@dima by 1bp% \color{black!31!bg} \pgfpathmoveto{\pgfpoint{\bmb@dimb}{\bmb@temp}} \pgfpathlineto{\pgfpoint{\bmb@dimb}{\bmb@dima}} \pgfusepath{stroke} \advance\bmb@dima by 1bp% \advance\bmb@temp by 1bp% \color{black!19!bg} \pgfpathmoveto{\pgfpoint{\bmb@dimb}{\bmb@temp}} \pgfpathlineto{\pgfpoint{\bmb@dimb}{\bmb@dima}} \pgfusepath{stroke} \advance\bmb@dima by 1bp% \advance\bmb@temp by 1bp% \color{black!6!bg} \pgfpathmoveto{\pgfpoint{\bmb@dimb}{\bmb@temp}} \pgfpathlineto{\pgfpoint{\bmb@dimb}{\bmb@dima}} \pgfusepath{stroke} \advance\bmb@dima by 1.5bp% \advance\bmb@temp by 1bp% \color{bg} \pgfpathmoveto{\pgfpoint{\bmb@dimb}{\bmb@temp}} \pgfpathlineto{\pgfpoint{\bmb@dimb}{\bmb@dima}} \pgfusepath{stroke} } \fi \end{pgfpicture}% \box\bmb@box% }% \ifbmb@shadow% \vskip4bp minus 2bp% \else% \vskip2bp% \fi% \egroup% of \vbox\bgroup } % % Shadings % % Shadows \pgfdeclareradialshading[black,bg]{bmb@shadowball}{\pgfpointorigin}{% color(0bp)=(black!50!bg); color(4bp)=(bg)} \pgfdeclareradialshading[black,bg]{bmb@shadowballlarge}{\pgfpointorigin}{% color(0bp)=(black!50!bg); color(4bp)=(black!50!bg); color(8bp)=(bg)} \pgfdeclareverticalshading[black,bg]{bmb@shadow}{200cm}{% color(0bp)=(bg); color(4bp)=(black!50!bg); color(8bp)=(black!50!bg)} % Transition line \pgfdeclareverticalshading[lower.bg,upper.bg]{bmb@transition}{200cm}{% color(0pt)=(lower.bg); color(2pt)=(lower.bg); color(4pt)=(upper.bg)} beamer/base/beamerbasemodes.sty0000644000175000017500000002012012050430504016436 0ustar mohuramohura% Copyright 2003--2007 by Till Tantau % Copyright 2010 by Vedran Mileti\'c % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/beamerbasemodes.sty,v cc6557182d97 2012/04/15 14:37:19 rivanvx $ % % Global Declarations used by beamer in all modes % \newbox\beamer@tempbox \newif\ifbeamer@blocks \newif\ifbeamer@ams \newif\ifbeamer@amssymb \newif\ifbeamer@countsect \beamer@blockstrue \beamer@amstrue \beamer@amssymbtrue \beamer@countsectfalse \newcount\beamer@tempcount \newcounter{beamerpauses} \RequirePackage{beamerbasedecode} % % Presentation/article stuff % % Copyright notice: Part of the following code is taken from the % package comment.sty by Victor Eijkhout % % % Versioning stuff % \def\beamer@endinputifotherversion#1{% \let\beamer@next=\relax% \@tempdima=\beamer@version pt\relax% \ifdim\@tempdima<#1% \let\beamer@next=\endinput% \else% \ifdim\@tempdima>#1% \let\beamer@next=\endinput% \fi% \fi% \beamer@next} % % Comment stuff. This will also be needed, if we switch to another % class, so define it here already. % \newif\ifbeamer@inpresentation \beamer@inpresentationtrue \def\beamer@makeinnocent#1{\catcode`#1=12 } \def\beamer@startcomment{% \begingroup% \let\do\beamer@makeinnocent\dospecials% \beamer@makeinnocent\^^L% and whatever other special cases \endlinechar`\^^M \catcode`\^^M=12 \beamer@processline} {\catcode`\^^M=12\endlinechar=-1% \long\gdef\beamer@processline#1^^M{% \def\beamer@test{#1}% \ifx\beamer@test\beamer@stopmodestar% \let\next=\beamer@modeoutsideframe% \else% \ifx\beamer@test\beamer@stopmode% \let\next=\mode% \else% \ifx\beamer@test\beamer@stoparticle% \let\next=\article% \else% \ifx\beamer@test\beamer@stoppresentation% \let\next=\presentation% \else% \ifx\beamer@test\beamer@stopcommon% \let\next=\common% \else% \ifx\beamer@test\beamer@stopdocument% \let\next=\beamer@enddocument% \else \ifx\beamer@test\beamer@begindocument% \let\next=\beamer@startdocument% \else \let\next=\beamer@processline% \fi% \fi% \fi% \fi% \fi% \fi% \fi% \next} } \def\beamer@enddocument{\beamer@closer\end{document}} \def\beamer@startdocument{\beamer@closer\begin{document}\def\beamer@closer{}\common} \def\beamer@closer{} {\escapechar=-1\relax% \xdef\beamer@stopmode{\string\\mode} \xdef\beamer@stopmodestar{\string\\mode*} \xdef\beamer@stoparticle{\string\\article} \xdef\beamer@stoppresentation{\string\\presentation} \xdef\beamer@stopcommon{\string\\common} \xdef\beamer@stopdocument{\string\\end\string\{document\string\}} \xdef\beamer@begindocument{\string\\begin\string\{document\string\}} } \newbox\beamer@commentbox \def\beamer@startcommentinframe{% \begingroup% \edef\beamer@closer{\egroup\beamer@closer}% \setbox\beamer@commentbox=\vbox\bgroup\leavevmode} \def\beamer@outsidemode{\afterassignment\beamer@treat\let\beamer@nexttoken=} \def\beamer@treat{% \ifx\beamer@nexttoken\frame\let\next=\beamer@stopoutsidemode\fi% \ifx\beamer@nexttoken\lecture\let\next=\beamer@stopoutsidemode\fi% \ifx\beamer@nexttoken\note\let\next=\beamer@stopoutsidemode\fi% \ifx\beamer@nexttoken\appendix\let\next=\beamer@stopoutsidemode\fi% \ifx\beamer@nexttoken\againframe\let\next=\beamer@stopoutsidemode\fi% \ifx\beamer@nexttoken\section\let\next=\beamer@stopoutsidemode\fi% \ifx\beamer@nexttoken\subsection\let\next=\beamer@stopoutsidemode\fi% \ifx\beamer@nexttoken\subsubsection\let\next=\beamer@stopoutsidemode\fi% \ifx\beamer@nexttoken\part\let\next=\beamer@stopoutsidemode\fi% \ifx\beamer@nexttoken\article\let\next=\beamer@stopoutsidemode\fi% \ifx\beamer@nexttoken\mode\let\next=\beamer@stopoutsidemode\fi% \ifx\beamer@nexttoken\common\let\next=\beamer@stopoutsidemode\fi% \ifx\beamer@nexttoken\presentation\let\next=\beamer@stopoutsidemode\fi% \ifx\beamer@nexttoken\begin\let\next=\beamer@checkbeginframe\fi% \ifx\beamer@nexttoken\end\let\next=\beamer@checkenddoc\fi% \next} \def\beamer@stopoutsidemode{\beamer@nexttoken} \def\beamer@checkenddoc#1{% \def\beamer@temp{#1}% \ifx\beamer@temp\beamer@enddoc% \let\next=\beamer@enddocument% \else% \let\next=\beamer@outsidemode% \fi% \next} \def\beamer@enddoc{document} \def\beamer@checkbeginframe#1{% \def\beamer@temp{#1}% \ifx\beamer@temp\beamer@frametext% \let\next=\beamer@beginframeenv% \else% \let\next=\beamer@outsidemode% \fi% \next} \def\beamer@beginframeenv{\begin{frame}} \def\beamer@modeoutsideframe{% \beamer@closer% \gdef\beamer@mode{\beamer@modeoutsideframe}% \ifbeamer@inpresentation% \let\next=\beamer@outsidemode% \gdef\beamer@closer{}% \else% \let\next=\relax% \gdef\beamer@closer{}% \fi% \next} %obsolete, do note use: \def\presentation{\mode} \def\article{\mode
} \def\common{\mode} % % Mode command % \def\mode{\@ifstar\beamer@modeoutsideframe\beamer@@@mode} \def\beamer@@@mode<#1>{\beamer@closer\@ifnextchar\bgroup{\beamer@modeinline<#1>}{\beamer@switchmode<#1>}} \long\def\beamer@modeinline<#1>#2{% \gdef\beamer@closer{}% \def\beamer@doifnotinframe{\@gobble}\def\beamer@doifinframe{\@firstofone}% {\beamer@saveanother\beamer@slideinframe=1\relax% \beamer@masterdecode{#1}% \beamer@restoreanother}\beamer@donow{#2}% \beamer@mode\par} \def\beamer@switchmode<#1>{% \gdef\beamer@mode{\beamer@switchmode<#1>}% \def\beamer@doifnotinframe{% \let\next=\beamer@startcomment% \gdef\beamer@closer{\endgroup}% }% \def\beamer@doifinframe{% \let\next=\relax% \gdef\beamer@closer{}% }% {\beamer@saveanother\beamer@slideinframe=1\relax% \beamer@masterdecode{#1}% \beamer@restoreanother}\beamer@donow% \next} \mode \newcount\beamer@modecount \def\beamer@pushmode#1{% \expandafter\gdef\csname beamer@savedmode@\the\beamer@modecount\endcsname{#1}% \global\advance\beamer@modecount by1\relax} \def\beamer@popmode{ \global\advance\beamer@modecount by-1\relax% \csname beamer@savedmode@\the\beamer@modecount\endcsname} \def\beamer@savemode{\expandafter\beamer@pushmode\expandafter{\beamer@mode}} \def\beamer@resumemode{\beamer@popmode} % % Stuff needed in both article and presentation version % \def\jobnamebeamerversion{}% \def\includeslide{\@ifnextchar[{\@includeslide}{\@includeslide[]}} \def\@includeslide[#1]#2{% \ifx\jobnamebeamerversion\@empty% \ClassError{beamer}{Invoke macro "setjobnamebeamerversion" first}{}% \else% \edef\beamer@args{[{#1,page=\csname beamer@slide#2\endcsname}]{\jobnamebeamerversion}} \expandafter\pgfimage\beamer@args% \fi} \def\setjobnamebeamerversion#1{% \def\jobnamebeamerversion{#1}% {\makeatletter \@input{\jobnamebeamerversion.snm}} } % % Check whether we should initiate transfer to another class (obsolete) % % Extract class name, if present \def\beamer@classname{} \def\beamer@classoptions{} \def\beamer@classnamename{class} \def\beamer@eq{=,} \def\beamer@findclassname#1=#2,#3!{ \def\beamer@temp{#1} \ifx\beamer@temp\beamer@classnamename \def\beamer@classname{#2} \beamer@stripsign#3! \fi} \def\beamer@stripsign#1!{% \def\beamer@temp{#1} \ifx\beamer@temp\beamer@eq % nothing to do \else \beamer@@stripsign#1! \fi } \def\beamer@@stripsign#1,=,!{ \def\beamer@classoptions{#1} } \def\beamer@transfer{% % Prepare... \def\beamer@slide##1##2{\expandafter\gdef\csname beamer@slide##1\endcsname{##2}} \beamer@inpresentationfalse \def\beamer@currentmode{article} \common \edef\beamer@classwhat{[\beamer@classoptions]{\beamer@classname}} \expandafter\LoadClass\beamer@classwhat \endinput } \expandafter\beamer@findclassname\@classoptionslist,=,! \ifx\beamer@classname\@empty \let\beamer@transferifnecessary=\relax \else % Need to transfer to another class soon \let\beamer@transferifnecessary=\beamer@transfer \fi \endinput beamer/solutions/0000755000175000017500000000000012050430506013713 5ustar mohuramohurabeamer/solutions/generic-talks/0000755000175000017500000000000012050430506016443 5ustar mohuramohurabeamer/solutions/generic-talks/generic-ornate-15min-45min.de.tex0000644000175000017500000001302212050430506024335 0ustar mohuramohura% $Header: /Users/joseph/Documents/LaTeX/beamer/solutions/generic-talks/generic-ornate-15min-45min.de.tex,v 90e850259b8b 2007/01/28 20:48:30 tantau $ \documentclass{beamer} % Diese Datei enthlt eine Lsungsvorlage fr: % - Vortrge ber ein beliebiges Thema. % - Vortragslnge zwischen 15 und 45 Minuten. % - Aussehen des Vortrags ist verschnrkelt/dekorativ. % Copyright 2004 by Till Tantau . % % In principle, this file can be redistributed and/or modified under % the terms of the GNU Public License, version 2. % % However, this file is supposed to be a template to be modified % for your own needs. For this reason, if you use this file as a % template and not specifically distribute it as part of a another % package/program, I grant the extra permission to freely copy and % modify this file as you see fit and even to delete this copyright % notice. \mode { \usetheme{Warsaw} % oder ... \setbeamercovered{transparent} % oder auch nicht } \usepackage[german]{babel} % oder was auch immer \usepackage[latin1]{inputenc} % oder was auch immer \usepackage{times} \usepackage[T1]{fontenc} % Oder was auch immer. Zu beachten ist, das Font und Encoding passen % mssen. Falls T1 nicht funktioniert, kann man versuchen, die Zeile % mit fontenc zu lschen. \title[Kurzversion des Titels] % (optional, nur bei langen Titeln ntig) {Titel} \subtitle {Untertitel} % (optional) \author[Autor, Anders] % (optional, nur bei vielen Autoren) {F.~Autor\inst{1} \and S.~Anders\inst{2}} % - Der \inst{?} Befehl sollte nur verwendet werden, wenn die Autoren % unterschiedlichen Instituten angehren. \institute[Universitten Hier und Dort] % (optional, aber oft ntig) { \inst{1}% Institut fr Informatik\\ Universitt Hier \and \inst{2}% Institut fr theoretische Philosophie\\ Universitt Dort} % - Der \inst{?} Befehl sollte nur verwendet werden, wenn die Autoren % unterschiedlichen Instituten angehren. % - Keep it simple, niemand interessiert sich fr die genau Adresse. \date[Kurzversion des Anlass] % (optional) {Datum / Anlass} \subject{Informatik} % Dies wird lediglich in den PDF Informationskatalog einfgt. Kann gut % weggelassen werden. % Falls eine Logodatei namens "university-logo-filename.xxx" vorhanden % ist, wobei xxx ein von latex bzw. pdflatex lesbares Graphikformat % ist, so kann man wie folgt ein Logo einfgen: % \pgfdeclareimage[height=0.5cm]{university-logo}{university-logo-filename} % \logo{\pgfuseimage{university-logo}} % Folgendes sollte gelscht werden, wenn man nicht am Anfang jedes % Unterabschnitts die Gliederung nochmal sehen mchte. \AtBeginSubsection[] { \begin{frame}{Gliederung} \tableofcontents[currentsection,currentsubsection] \end{frame} } % Falls Aufzhlungen immer schrittweise gezeigt werden sollen, kann % folgendes Kommando benutzt werden: %\beamerdefaultoverlayspecification{<+->} \begin{document} \begin{frame} \titlepage \end{frame} \begin{frame}{Gliederung} \tableofcontents % Die Option [pausesections] knnte ntzlich sein. \end{frame} % Da dies ein Vorlage fr beliebige Vortrge ist, lassen sich kaum % allgemeine Regeln zur Strukturierung angeben. Da die Vorlage fr % einen Vortrag zwischen 15 und 45 Minuten gedacht ist, fhrt man aber % mit folgenden Regeln oft gut. % - Es sollte genau zwei oder drei Abschnitte geben (neben der % Zusammenfassung). % - *Hchstens* drei Unterabschnitte pro Abschnitt. % - Pro Rahmen sollte man zwischen 30s und 2min reden. Es sollte also % 15 bis 30 Rahmen geben. \section{Einleitung} \subsection[Kurzversion des ersten Unterabschnittstitels] {Erster Unterabschnittstitel} \begin{frame}{berschriften mssen informativ sein.\\ Korrekte Gro-/Kleinschreibung beachten.}{Untertitel sind optional.} % - Eine berschrift fasst einen Rahmen verstndlich zusammen. Man % muss sie verstehen knnen, selbst wenn man nicht den Rest des % Rahmens versteht. \begin{itemize} \item Viel \texttt{itemize} benutzen. \item Sehr kurze Stze oder Satzglieder verwenden. \end{itemize} \end{frame} \begin{frame}{berschriften mssen informativ sein.} Man kann Overlays erzeugen\dots \begin{itemize} \item mit dem \texttt{pause}-Befehl: \begin{itemize} \item Erster Punkt. \pause \item Zweiter Punkt. \end{itemize} \item mittels Overlay-Spezifikationen: \begin{itemize} \item<3-> Erster Punkt. \item<4-> Zweiter Punkt. \end{itemize} \item mit dem allgemeinen \texttt{uncover}-Befehl: \begin{itemize} \uncover<5->{\item Erster Punkt.} \uncover<6->{\item Zweiter Punkt.} \end{itemize} \end{itemize} \end{frame} \subsection{Zweiter Unterabschnittstitel} \begin{frame}{berschriften mssen informativ sein.} \end{frame} \begin{frame}{berschriften mssen informativ sein.} \end{frame} \section*{Zusammenfassung} \begin{frame}{Zusammenfassung} % Die Zusammenfassung sollte sehr kurz sein. \begin{itemize} \item Die \alert{erste Hauptbotschaft} des Vortrags in ein bis zwei Zeilen. \item Die \alert{zweite Hauptbotschaft} des Vortrags in ein bis zwei Zeilen. \item Eventuell noch eine \alert{dritte Botschaft}, aber nicht noch mehr. \end{itemize} % Der folgende Ausblick ist optional. \vskip0pt plus.5fill \begin{itemize} \item Ausblick \begin{itemize} \item Etwas, was wir noch nicht lsen konnten. \item Nochwas, das wir noch nicht lsen konnten. \end{itemize} \end{itemize} \end{frame} \end{document} beamer/solutions/generic-talks/generic-ornate-15min-45min.en.tex0000644000175000017500000001215712050430506024357 0ustar mohuramohura% $Header: /Users/joseph/Documents/LaTeX/beamer/solutions/generic-talks/generic-ornate-15min-45min.en.tex,v 90e850259b8b 2007/01/28 20:48:30 tantau $ \documentclass{beamer} % This file is a solution template for: % - Giving a talk on some subject. % - The talk is between 15min and 45min long. % - Style is ornate. % Copyright 2004 by Till Tantau . % % In principle, this file can be redistributed and/or modified under % the terms of the GNU Public License, version 2. % % However, this file is supposed to be a template to be modified % for your own needs. For this reason, if you use this file as a % template and not specifically distribute it as part of a another % package/program, I grant the extra permission to freely copy and % modify this file as you see fit and even to delete this copyright % notice. \mode { \usetheme{Warsaw} % or ... \setbeamercovered{transparent} % or whatever (possibly just delete it) } \usepackage[english]{babel} % or whatever \usepackage[latin1]{inputenc} % or whatever \usepackage{times} \usepackage[T1]{fontenc} % Or whatever. Note that the encoding and the font should match. If T1 % does not look nice, try deleting the line with the fontenc. \title[Short Paper Title] % (optional, use only with long paper titles) {Presentation Title} \subtitle {Presentation Subtitle} % (optional) \author[Author, Another] % (optional, use only with lots of authors) {F.~Author\inst{1} \and S.~Another\inst{2}} % - Use the \inst{?} command only if the authors have different % affiliation. \institute[Universities of Somewhere and Elsewhere] % (optional, but mostly needed) { \inst{1}% Department of Computer Science\\ University of Somewhere \and \inst{2}% Department of Theoretical Philosophy\\ University of Elsewhere} % - Use the \inst command only if there are several affiliations. % - Keep it simple, no one is interested in your street address. \date[Short Occasion] % (optional) {Date / Occasion} \subject{Talks} % This is only inserted into the PDF information catalog. Can be left % out. % If you have a file called "university-logo-filename.xxx", where xxx % is a graphic format that can be processed by latex or pdflatex, % resp., then you can add a logo as follows: % \pgfdeclareimage[height=0.5cm]{university-logo}{university-logo-filename} % \logo{\pgfuseimage{university-logo}} % Delete this, if you do not want the table of contents to pop up at % the beginning of each subsection: \AtBeginSubsection[] { \begin{frame}{Outline} \tableofcontents[currentsection,currentsubsection] \end{frame} } % If you wish to uncover everything in a step-wise fashion, uncomment % the following command: %\beamerdefaultoverlayspecification{<+->} \begin{document} \begin{frame} \titlepage \end{frame} \begin{frame}{Outline} \tableofcontents % You might wish to add the option [pausesections] \end{frame} % Since this a solution template for a generic talk, very little can % be said about how it should be structured. However, the talk length % of between 15min and 45min and the theme suggest that you stick to % the following rules: % - Exactly two or three sections (other than the summary). % - At *most* three subsections per section. % - Talk about 30s to 2min per frame. So there should be between about % 15 and 30 frames, all told. \section{Introduction} \subsection[Short First Subsection Name]{First Subsection Name} \begin{frame}{Make Titles Informative. Use Uppercase Letters.}{Subtitles are optional.} % - A title should summarize the slide in an understandable fashion % for anyone how does not follow everything on the slide itself. \begin{itemize} \item Use \texttt{itemize} a lot. \item Use very short sentences or short phrases. \end{itemize} \end{frame} \begin{frame}{Make Titles Informative.} You can create overlays\dots \begin{itemize} \item using the \texttt{pause} command: \begin{itemize} \item First item. \pause \item Second item. \end{itemize} \item using overlay specifications: \begin{itemize} \item<3-> First item. \item<4-> Second item. \end{itemize} \item using the general \texttt{uncover} command: \begin{itemize} \uncover<5->{\item First item.} \uncover<6->{\item Second item.} \end{itemize} \end{itemize} \end{frame} \subsection{Second Subsection} \begin{frame}{Make Titles Informative.} \end{frame} \begin{frame}{Make Titles Informative.} \end{frame} \section*{Summary} \begin{frame}{Summary} % Keep the summary *very short*. \begin{itemize} \item The \alert{first main message} of your talk in one or two lines. \item The \alert{second main message} of your talk in one or two lines. \item Perhaps a \alert{third message}, but not more than that. \end{itemize} % The following outlook is optional. \vskip0pt plus.5fill \begin{itemize} \item Outlook \begin{itemize} \item Something you haven't solved. \item Something else you haven't solved. \end{itemize} \end{itemize} \end{frame} \end{document} beamer/solutions/generic-talks/generic-ornate-15min-45min.fr.tex0000644000175000017500000001365212050430506024365 0ustar mohuramohura% /solutions/conference-talks/conference-ornate-20min.fr.tex, 22/02/2006 De Sousa \documentclass{beamer} % Ce fichier est un exemple-type pour : % - donner un expos sur un certain sujet % - une dure variant de 15 45 minutes % - un style ornemental. % Copyright 2004 by Till Tantau . % % Traduction de Philippe De Sousa % % En principe, ce fichier peut tre redistribu et/ou modifi conformment % aux termes de la GNU Public License, version 2. % % Cependant, ce fichier est suppos comme tant un "exemple-type" qui % peut tre modifi selon vos propres besoins. Pour cette raison, si % vous utilisez ce fichier en tant qu' "exemple-type" et non % spcifiquement pour le distribuer en tant que partie d'un package ou % programme, je vous donne la permission exceptionnelle de copier % librement et de modifier ce fichier et mme d'effacer ce message de % copyright. \mode { \usetheme{Warsaw} % ou autre ... \setbeamercovered{transparent} % ou autre chose (il est galement possible de supprimer cette ligne) } \usepackage[french]{babel} % or autre comme par exemple \usepackage[english]{babel} \usepackage[latin1]{inputenc} % or autre \usepackage{times} \usepackage[T1]{fontenc} % Or autre. Notez que le codage et la fonte doivent tre assortis. Si T1 % ne parat pas trs esthtique, essayer d'effacer la ligne contenant fontenc. \title[Titre court] % (facultatif, utiliser uniquement si le titre de l'article est trop long) {Trs long titre qui prend de la place} \subtitle {Sous-titre de la prsentation} \author[Auteur, Lautre] % (facultatif, utiliser seulement avec plusieurs auteurs) {F.~Auteur\inst{1} \and S.~Lautre\inst{2}} % - Composez les noms dans l'ordre dans lequel ils apparatrons dans l'article % - Utilisez la commande \inst{?} uniquement si les auteurs ont des affiliations % diffrentes. \institute[Universits de Quelque Part et d'Ailleurs] % (facultatif mais gnralement ncessaire) { \inst{1}% Dpartement d'Informatique\\ Universit de Quelque Part \and \inst{2}% Dpartement de Philosophie Thorique\\ Universit d'Ailleurs} % - Utilisez la commande \inst uniquement s'il y a plusieurs affectations % - Fates quelque chose de simple, personne ne s'intresse votre adresse. \date[Version courte] % (facultatif) {Date / Occasion} \subject{Expos} % Insr uniquement dans la page d'information du fichier PDF. Peut tre % supprim. % Si vous avez un fichier nomm "universit-logo-nomfichier.xxx", o xxx % est un format graphique accept par latex ou pdflatex (comme par exemple .png), % alors vous pouvez insrer votre logo ainsi : % \pgfdeclareimage[height=0.5cm]{le-logo}{universit-logo-nomfichier} % \logo{\pgfuseimage{le-logo}} % supprimer si vous ne voulez pas que la table des matires apparaisse % au dbut de chaque sous-section : \AtBeginSubsection[] { \begin{frame}{Lignes directrices} \tableofcontents[currentsection,currentsubsection] \end{frame} } % Si vous souhaitez recouvrir vos transparents un un, % utilisez la commande suivante (pour plus d'info, voir la page 74 du manuel % d'utilisation de Beamer (version 3.06) par Till Tantau) : %\beamerdefaultoverlayspecification{<+->} \begin{document} \begin{frame} \titlepage \end{frame} \begin{frame}{Lignes directrices} \tableofcontents % Vous pouvez, si vous le souhaiter ajouter l'option [pausesections] \end{frame} % Puisqu'il s'agit d'un exemple-type pour un expos d'ordre gnral, peu de choses % peuvent tre dites concernant sa structure. Cependant, la dure varie de 15 minutes % 45 minutes et le thme vous suggre de suivre les rgles suivantes : % - Avoir exactement deux ou trois sections (autre que la table des matires). % - Tout au plus trois sous-sections par section % - Parlez approximativement entre 30 secondes et 2 minutes par transparent. Il % devrait donc y avoir entre 15 et 30 transparents, tous ayant t comments. \section{Introduction} \subsection[Court titre s-section]{Un trs long titre de sous-section.} \begin{frame}{Fates des titres qui informent.}{Les sous-titres sont facultatifs.} % - Le titre doit rsumer le transparent dans un langage comprhensible % par tous ceux qui ne suivront rien de ce qu'il y a sur ce transparent. \begin{itemize} \item Utilisez \texttt{itemize} volont. \item Utilisez des phrases trs courtes et de courtes expressions. \end{itemize} \end{frame} \begin{frame}{Fates des titres qui informent} Vous pouvez crer des recouvrements\dots \begin{itemize} \item en utilisant la commande \texttt{pause} : \begin{itemize} \item Premier item. \pause \item Second item. \end{itemize} \item en utilisant les spcifications des recouvrements \begin{itemize} \item<3-> Premier item. \item<4-> Second item. \end{itemize} \item en utilisant en gnral la commande \texttt{uncover} : \begin{itemize} \uncover<5->{\item Premier item.} \uncover<6->{\item Second item.} \end{itemize} \end{itemize} \end{frame} \subsection{Deuxime sous-section} \begin{frame}{Fates des titres qui informent.} {\scshape Beamer}, c'est vraiment super ! \end{frame} \begin{frame}{Fates des titres qui informent.} {\scshape Beamer}, c'est vraiment gnial ! \end{frame} \section*{Rsum} \begin{frame}{Rsum} % Fates un rsum *trs court*. \begin{itemize} \item Le \alert{premier message principal} de l'expos en une ligne ou deux. \item Le \alert{deuxime message principal} de l'expos en une ligne ou deux. \item Peut-tre un \alert{troisime message}, mais pas plus que a. \end{itemize} % Les perspectives suivantes sont facultatives. \vskip0pt plus.5fill \begin{itemize} \item Perspectives \begin{itemize} \item Problme non rsolu. \item Autre problme non rsolu. \end{itemize} \end{itemize} \end{frame} \end{document} beamer/solutions/generic-talks/generic-ornate-15min-45min.de.lyx0000644000175000017500000002345012050430506024357 0ustar mohuramohura#LyX 1.3 created this file. For more info see http://www.lyx.org/ \lyxformat 221 \textclass beamer \begin_preamble \usetheme{Warsaw} % oder ... \setbeamercovered{transparent} % oder auch nicht \end_preamble \language ngerman \inputencoding auto \fontscheme default \graphics default \paperfontsize default \spacing single \papersize Default \paperpackage a4 \use_geometry 0 \use_amsmath 1 \use_natbib 0 \use_numerical_citations 0 \paperorientation portrait \secnumdepth 2 \tocdepth 2 \paragraph_separation indent \defskip medskip \quotes_language danish \quotes_times 2 \papercolumns 1 \papersides 1 \paperpagestyle default \layout Standard \begin_inset Note collapsed false \layout Standard Diese Datei enthlt eine Lsungsvorlage fr: \layout Standard - Vortrge ber ein beliebiges Thema. \layout Standard - Vortragslnge zwischen 15 und 45 Minuten. \layout Standard - Aussehen des Vortrags ist verschnrkelt/dekorativ. \end_inset \layout Standard \begin_inset Note collapsed true \layout Standard Copyright 2004 by Till Tantau . \layout Standard In principle, this file can be redistributed and/or modified under the terms of the GNU Public License, version 2. However, this file is supposed to be a template to be modified for your own needs. For this reason, if you use this file as a template and not specifically distribute it as part of a another package/program, the author grants the extra permission to freely copy and modify this file as you see fit and even to delete this copyright notice. \end_inset \layout Title Titel \begin_inset OptArg collapsed false \layout Standard Kurzversion des Titels \begin_inset Note collapsed false \layout Standard optional, nur bei langen Titeln ntig \end_inset \end_inset \layout Subtitle Untertitel \begin_inset Note collapsed false \layout Standard optional \end_inset \layout Author F.\SpecialChar ~ Autor \begin_inset ERT status Collapsed \layout Standard \backslash inst{1} \end_inset \begin_inset ERT status Collapsed \layout Standard \backslash and \end_inset S.\SpecialChar ~ Anders \begin_inset ERT status Collapsed \layout Standard \backslash inst{2} \end_inset \begin_inset Note collapsed false \layout Standard - Der \backslash inst{?} Befehl sollte nur verwendet werden, wenn die Autoren unterschiedlichen Instituten angehren. \end_inset \begin_inset OptArg collapsed false \layout Standard Author, Another \begin_inset Note collapsed false \layout Standard - optional, nur bei vielen Autoren \layout Standard - wenn es wirklich viele Autoren gibt, \begin_inset Quotes ald \end_inset Autor et al. \begin_inset Quotes ard \end_inset \end_inset \end_inset \layout Date \begin_inset ERT status Collapsed \layout Standard \backslash inst{1} \end_inset Institut fr Informatik \newline Universitt Hier \begin_inset ERT status Collapsed \layout Standard \backslash and \end_inset \begin_inset ERT status Collapsed \layout Standard \backslash inst{2} \end_inset Institut fr theoretische Philosophie \newline Universitt Dort \begin_inset Note collapsed false \layout Standard - Der \backslash inst{?} Befehl sollte nur verwendet werden, wenn die Autoren unterschiedlichen Instituten angehren. \layout Standard - Keep it simple, niemand interessiert sich fr die genau Adresse. \end_inset \begin_inset OptArg collapsed false \layout Standard Universitten Hier und Dort \begin_inset Note collapsed false \layout Standard optional, aber oft ntig \end_inset \end_inset \layout Date Datum / Anlass fr den Vortrag \begin_inset OptArg collapsed false \layout Standard Kurzversion des Anlass. \end_inset \layout TitleGraphic Titelgraphik \layout Standard \begin_inset Note collapsed false \layout Standard Falls eine Logodatei namens "university-logo-filename.xxx" vorhanden ist, wobei xxx ein von latex bzw. pdflatex lesbares Graphikformat ist, so kann man wie folgt ein Logo einfgen: \end_inset \layout Standard \begin_inset ERT status Open \layout Standard % \backslash pgfdeclareimage[height=0.5cm]{institution-logo}{institution-logo-filename} \layout Standard % \backslash logo{ \backslash pgfuseimage{institution-logo}} \end_inset \layout Standard \begin_inset Note collapsed false \layout Standard Folgendes sollte gelscht werden, wenn man nicht am Anfang jedes Unterabschnitts die Gliederung nochmal sehen mchte. \end_inset \layout Standard \begin_inset ERT status Open \layout Standard \backslash AtBeginSubsection[]{ \layout Standard \backslash frame{ \layout Standard \backslash frametitle{Gliederung} \layout Standard \backslash tableofcontents[currentsection,currentsubsection] \layout Standard } \layout Standard } \end_inset \layout Standard \begin_inset Note collapsed false \layout Standard Falls Aufzhlungen immer schrittweise gezeigt werden sollen, kann folgendes Kommando benutzt werden: \end_inset \layout Standard \begin_inset ERT status Open \layout Standard % \backslash beamerdefaultoverlayspecification{<+->} \end_inset \layout BeginFrame Gliederung \layout Standard \begin_inset LatexCommand \tableofcontents{} \end_inset \layout Standard \begin_inset Note collapsed false \layout Standard Da dies ein Vorlage fr beliebige Vortrge ist, lassen sich kaum allgemeine Regeln zur Strukturierung angeben. Da die Vorlage fr einen Vortrag zwischen 15 und 45 Minuten gedacht ist, fhrt man aber mit folgenden Regeln oft gut. \layout Standard - Es sollte genau zwei oder drei Abschnitte geben (neben der Zusammenfassung). \layout Standard - *Hchstens* drei Unterabschnitte pro Abschnitt. \layout Standard - Pro Rahmen sollte man zwischen 30s und 2min reden. Es sollte also 15 bis 30 Rahmen geben. \layout Standard - In 20 Minuten ist es schon schwer genug, die Hauptbotschaft zu vermitteln. Deshalb sollten Details ausgelassen werden, selbst wenn dies zu Ungenauigkeiten oder Halbwahrheiten fhrt. \end_inset \layout Section Einleitung \layout Subsection Erster Unterabschnitt \layout BeginFrame berschriften sollten informativ sein. \newline Korrekte Gro-/Kleinschreibung beachten. \layout FrameSubtitle Untertitel sind optional. \begin_inset Note collapsed false \layout Standard - Eine berschrift fasst einen Rahmen verstndlich zusammen. Man muss sie verstehen knnen, selbst wenn man nicht den Rest des Rahmens versteht. \end_inset \layout Itemize Viel Itemize benutzen. \begin_deeper \layout Pause \end_deeper \layout Itemize Sehr kurze Stze oder Satzglieder verwenden. \begin_deeper \layout Pause \end_deeper \layout Itemize Diese Overlays werden mit dem Pause Stil erzeugt. \layout BeginFrame berschriften mssen informativ sein. \layout Itemize \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset Man kann auch Overlay-Spezifikationen benutzen, um Overlays zu erzeugen. \layout Itemize \begin_inset ERT status Collapsed \layout Standard <3-> \end_inset Hiermit knnen, Punkte in beliebiger Reihenfolge prsentiert werden. \layout Itemize \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset Dies wird als zweites gezeigt. \layout BeginFrame berschriften mssen informativ sein. \layout Block \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset \begin_inset ERT status Collapsed \layout Standard { \end_inset \begin_inset ERT status Collapsed \layout Standard } \end_inset \begin_deeper \layout Itemize Block ohne berschrift. \layout Itemize Wird auf allen Overlays angezeigt. \end_deeper \layout ExampleBlock \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset \begin_inset ERT status Collapsed \layout Standard { \end_inset Ein Beispielblocktitel \begin_inset ERT status Collapsed \layout Standard } \end_inset \begin_deeper \layout Itemize \begin_inset Formula $e^{i\pi}=-1$ \end_inset . \layout Itemize \begin_inset Formula $e^{i\pi/2}=i$ \end_inset . \end_deeper \layout Subsection Zweiter Unterabschnitt \layout BeginFrame berschriften mssen informativ sein. \layout Example \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset Auf dem ersten Overlay. \layout Separator \layout Example \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset Auf dem zweiten Overlay. \layout Section Erster Hauptteil \layout Subsection Unterabschnitt \layout BeginFrame berschriften mssen informativ sein. \layout Theorem Auf dem ersten Overlay. \layout Pause \layout Corollary Auf dem zweiten Overlay. \layout BeginFrame berschriften mssen informativ sein. \layout ColumnsTopAligned \begin_deeper \layout Column 5cm \layout Theorem \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset In der linken Spalte. \layout Column 5cm \layout Corollary \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset In der rechten Spalte. \newline Neue Zeile. \end_deeper \layout Section* Zusammenfassung \layout BeginFrame Zusammenfassung \layout Standard \begin_inset Note collapsed false \layout Standard Die Zusammenfassung sollte sehr kurz sein. \end_inset \layout Itemize Die \color red erste Hauptbotschaft \color default des Vortrags in ein bis zwei Zeilen. \layout Itemize Die \color red zweite Hauptbotschaft \color default des Vortrags in ein bis zwei Zeilen. \layout Itemize Eventuell noch eine \color red dritte Botschaft \color default , aber nicht noch mehr. \layout Standard \begin_inset Note collapsed false \layout Standard Der folgende Ausblick ist optional. \end_inset \layout Standard \begin_inset ERT status Collapsed \layout Standard \backslash vskip0pt plus.5fill \end_inset \layout Itemize Ausblick \begin_deeper \layout Itemize Etwas, was wir noch nicht lsen konnten. \layout Itemize Nochwas, das wir noch nicht lsen konnten. \end_deeper \layout EndFrame \the_end beamer/solutions/generic-talks/generic-ornate-15min-45min.en.lyx0000644000175000017500000002222712050430506024372 0ustar mohuramohura#LyX 1.3 created this file. For more info see http://www.lyx.org/ \lyxformat 221 \textclass beamer \begin_preamble \usetheme{Warsaw} % or ... \setbeamercovered{transparent} % or whatever (possibly just delete it) \end_preamble \language english \inputencoding auto \fontscheme default \graphics default \paperfontsize default \spacing single \papersize Default \paperpackage a4 \use_geometry 0 \use_amsmath 1 \use_natbib 0 \use_numerical_citations 0 \paperorientation portrait \secnumdepth 2 \tocdepth 2 \paragraph_separation indent \defskip medskip \quotes_language english \quotes_times 2 \papercolumns 1 \papersides 1 \paperpagestyle default \layout Standard \begin_inset Note collapsed false \layout Standard This file is a solution template for: \layout Standard - Giving a talk on some subject. \layout Standard - The talk is between 15min and 45min long. \layout Standard - Style is ornate. \end_inset \layout Standard \begin_inset Note collapsed true \layout Standard Copyright 2004 by Till Tantau . \layout Standard In principle, this file can be redistributed and/or modified under the terms of the GNU Public License, version 2. However, this file is supposed to be a template to be modified for your own needs. For this reason, if you use this file as a template and not specifically distribute it as part of a another package/program, the author grants the extra permission to freely copy and modify this file as you see fit and even to delete this copyright notice. \end_inset \layout Title Presentation Title \begin_inset OptArg collapsed false \layout Standard Short Title \begin_inset Note collapsed false \layout Standard optional, use only with long paper titles \end_inset \end_inset \layout Subtitle Presentation Subtitle \begin_inset Note collapsed false \layout Standard optional \end_inset \layout Author F.\SpecialChar ~ Author \begin_inset ERT status Collapsed \layout Standard \backslash inst{1} \end_inset \begin_inset ERT status Collapsed \layout Standard \backslash and \end_inset S.\SpecialChar ~ Another \begin_inset ERT status Collapsed \layout Standard \backslash inst{2} \end_inset \begin_inset Note collapsed false \layout Standard - Use the \backslash inst{?} command only if the authors have different affiliations. \end_inset \begin_inset OptArg collapsed false \layout Standard Author, Another \begin_inset Note collapsed false \layout Standard - optional, use only with lots of authors \layout Standard - if there are reallylots of authors, use \begin_inset Quotes eld \end_inset Author et al. \begin_inset Quotes erd \end_inset \end_inset \end_inset \layout Date \begin_inset ERT status Collapsed \layout Standard \backslash inst{1} \end_inset Department of Computer Science \layout Date University of Somewhere \begin_inset ERT status Collapsed \layout Standard \backslash and \end_inset \begin_inset ERT status Collapsed \layout Standard \backslash inst{2} \end_inset Department of Theoretical Philosophy \layout Date University of Elsewhere \begin_inset Note collapsed false \layout Standard - Use the \backslash inst command only if there are several affiliations. \layout Standard - Keep it simple, no one is interested in your street address. \end_inset \begin_inset OptArg collapsed false \layout Standard Universities of Somewhere and Elsewhere \begin_inset Note collapsed false \layout Standard optional, but mostly needed \end_inset \end_inset \layout Date Date/Occasion \begin_inset OptArg collapsed false \layout Standard Short Occasion \end_inset \layout TitleGraphic Title Graphic \layout Standard \begin_inset Note collapsed false \layout Standard If you have a file called "institution-logo-filename.xxx", where xxx is a graphic format that can be processed by latex or pdflatex, resp., then you can add a logo by uncommenting the following: \end_inset \layout Standard \begin_inset ERT status Open \layout Standard % \backslash pgfdeclareimage[height=0.5cm]{institution-logo}{institution-logo-filename} \layout Standard % \backslash logo{ \backslash pgfuseimage{institution-logo}} \end_inset \layout Standard \begin_inset Note collapsed false \layout Standard The following causes the table of contents to be shown at the beginning of every subsection. Delete this, if you do not want it. \end_inset \layout Standard \begin_inset ERT status Open \layout Standard \backslash AtBeginSubsection[]{ \layout Standard \backslash frame{ \layout Standard \backslash frametitle{Outline} \layout Standard \backslash tableofcontents[currentsection,currentsubsection] \layout Standard } \layout Standard } \end_inset \layout Standard \begin_inset Note collapsed false \layout Standard If you wish to uncover everything in a step-wise fashion, uncomment the following command: \end_inset \layout Standard \begin_inset ERT status Open \layout Standard % \backslash beamerdefaultoverlayspecification{<+->} \end_inset \layout BeginFrame Outline \layout Standard \begin_inset LatexCommand \tableofcontents{} \end_inset \layout Standard \begin_inset Note collapsed false \layout Standard Since this a solution template for a generic talk, very little can be said about how it should be structured. However, the talk length of between 15min and 45min and the theme suggest that you stick to the following rules: \layout Standard - Exactly two or three sections (other than the summary). \layout Standard - At *most* three subsections per section. \layout Standard - Talk about 30s to 2min per frame. So there should be between about% 15 and 30 frames, all told. \end_inset \layout Section Introduction \layout Subsection First Subsection Name \begin_inset OptArg collapsed false \layout Standard Short First Subsection Name (Optional) \end_inset \layout BeginFrame Make Titles Informative. Use Uppercase Letters. \layout FrameSubtitle Frame subtitles are optional. Use upper- or lowercase letters. \begin_inset Note collapsed false \layout Standard - A title should summarize the slide in an understandable fashion for anyone how does not follow everything on the slide itself. \end_inset \layout Itemize Use Itemize a lot. \begin_deeper \layout Pause \end_deeper \layout Itemize Use very short sentences or short phrases. \begin_deeper \layout Pause \end_deeper \layout Itemize These overlays are created using the Pause style. \layout BeginFrame Make Titles Informative. \layout Itemize \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset You can also use overlay specifications to create overlays. \layout Itemize \begin_inset ERT status Collapsed \layout Standard <3-> \end_inset This allows you to present things in any order. \layout Itemize \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset This is shown second. \layout BeginFrame Make Titles Informative. \layout Block \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset \begin_inset ERT status Collapsed \layout Standard { \end_inset \begin_inset ERT status Collapsed \layout Standard } \end_inset \begin_deeper \layout Itemize Untitled block. \layout Itemize Shown on all slides. \end_deeper \layout ExampleBlock \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset \begin_inset ERT status Collapsed \layout Standard { \end_inset Some Example Block Title \begin_inset ERT status Collapsed \layout Standard } \end_inset \begin_deeper \layout Itemize \begin_inset Formula $e^{i\pi}=-1$ \end_inset . \layout Itemize \begin_inset Formula $e^{i\pi/2}=i$ \end_inset . \end_deeper \layout Subsection Second Subsection Name \layout BeginFrame Make Titles Informative. \layout Example \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset On first slide. \layout Separator \layout Example \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset On second slide. \layout BeginFrame Make Titles Informative. \layout Theorem On first slide. \layout Pause \layout Corollary On second slide. \layout BeginFrame Make Titles Informative. \layout ColumnsTopAligned \begin_deeper \layout Column 5cm \layout Theorem \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset In left column. \layout Column 5cm \layout Corollary \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset In right column. \newline New line \end_deeper \layout Section* Summary \layout BeginFrame Summary \layout Itemize The \color red first main message \color default of your talk in one or two lines. \layout Itemize The \color red second main message \color default of your talk in one or two lines. \layout Itemize Perhaps a \color red third message \color default , but not more than that. \layout Standard \begin_inset Note collapsed false \layout Standard An outlook is always optional. \end_inset \layout Standard \begin_inset ERT status Collapsed \layout Standard \backslash vskip0pt plus.5fill \end_inset \layout Itemize Outlook \begin_deeper \layout Itemize What we have not done yet. \layout Itemize Even more stuff. \end_deeper \layout EndFrame \the_end beamer/solutions/short-talks/0000755000175000017500000000000012050430506016166 5ustar mohuramohurabeamer/solutions/short-talks/speaker_introduction-ornate-2min.de.tex0000644000175000017500000000606312050430506025670 0ustar mohuramohura% $Header: /Users/joseph/Documents/LaTeX/beamer/solutions/short-talks/speaker_introduction-ornate-2min.de.tex,v 90e850259b8b 2007/01/28 20:48:30 tantau $ \documentclass{beamer} % Diese Datei enthlt eine Lsungsvorlage fr: % - Das Vorstellen des nchsten Sprechers. % - Vortragslnge von ca. zwei Minuten. % - Aussehen des Vortrags ist verschnrkelt/dekorativ. % Copyright 2004 by Till Tantau . % % In principle, this file can be redistributed and/or modified under % the terms of the GNU Public License, version 2. % % However, this file is supposed to be a template to be modified % for your own needs. For this reason, if you use this file as a % template and not specifically distribute it as part of a another % package/program, I grant the extra permission to freely copy and % modify this file as you see fit and even to delete this copyright % notice. \setbeamertemplate{background canvas}[vertical shading][bottom=white,top=structure.fg!25] % Oder was auch immer. \usetheme{Warsaw} \setbeamertemplate{headline}{} \setbeamertemplate{footline}{} \setbeamersize{text margin left=0.5cm} \usepackage[german]{babel} % Oder was auch immer \usepackage[latin1]{inputenc} % Oder was auch immer \usepackage{times} \usepackage[T1]{fontenc} % Oder was auch immer. Zu beachten ist, das Font und Encoding passen % mssen. Falls T1 nicht funktioniert, kann man versuchen, die Zeile % mit fontenc zu lschen. \begin{document} \begin{frame}{Name der/des Vortragenden}{ber unsere(n) nchste(n) Vortragende(n)} \begin{itemize} \item Derzeitige Stellung(en) von Name der/des Vortragenden % Beispiele: \begin{itemize} \item Professor fr Mathematik, Universitt Irgendwo. \item Juniorpartner bei Firma X. \item Sprecher der Organisation X / des Projekts X. \end{itemize} \item Erfahrungen und Erfolge % Optional. Sollte nur gebracht werden, wenn es angemessen % erscheint, dem Vortragenden leicht zu schmeicheln; was % beispielsweise bei eingeladenen Vortragenden der Fall ist. % Die Unterpunkte sollten den Sprecher interessant und kompetent % erscheinen lassen. % Beispiele: \begin{itemize} \item Falls passend, akademischer Grad \item Derzeitige und/oder vorherige Stellungen, eventuell mit Daten \item Publikationen (eventuell lediglich die Anzahl) \item Auszeichnungen, Preise \end{itemize} \item In Bezug auf den heutigen Vortrag % Optional. Sollte benutzt werden, um spezielle Erfahrungen / % spezielles Wissen des Vortragenen speziell in Bezug auf den % Vortrag aufzuzeigen -- falls diese Erfahrungen sich nicht % bereits aus obigen Punkten ableiten lassen. % Beispiele: \begin{itemize} \item Expertin/Experte, die/der seit X Monaten/Jahren in dem Gebiet/Projekt arbeitet. \item Wird ihre/seine Forschung / die Forschung der Gruppe/Firma vorstellen. \item Wird einen Projektbericht/Projektstatus vorstellen. \end{itemize} \end{itemize} \end{frame} \end{document} beamer/solutions/short-talks/speaker_introduction-ornate-2min.fr.tex0000644000175000017500000000602312050430506025703 0ustar mohuramohura% /solutions/conference-talks/conference-ornate-20min.fr.tex, 22/02/2006 De Sousa \documentclass{beamer} % Ce fichier est un exemple-type pour : % - Introduire un autre confrencier % - une dure de parole d'approximativement 2 minutes % - un style ornemental % Copyright 2004 by Till Tantau . % % Traduction de Philippe De Sousa % % En principe, ce fichier peut tre redistribu et/ou modifi conformment % aux termes de la GNU Public License, version 2. % % Cependant, ce fichier est suppos comme tant un "exemple-type" qui peut tre modifi % selon vos propres besoins. Pour cette raison, si vous utilisez ce fichier en tant qu' % "exemple-type" et non spcifiquement pour le distribuer en tant que partie d'un % package ou programme, je vous donne la permission exceptionnelle de copier librement et % de modifier ce fichier et mme d'effacer ce message de copyright. \setbeamertemplate{background canvas}[vertical shading][bottom=white,top=structure.fg!25] % ou autre \usetheme{Warsaw} \setbeamertemplate{headline}{} \setbeamertemplate{footline}{} \setbeamersize{text margin left=0.5cm} \usepackage[french]{babel} % or autre comme par exemple \usepackage[english]{babel} \usepackage[latin1]{inputenc} % or autre \usepackage{times} \usepackage[T1]{fontenc} % Or autre. Notez que le codage et la fonte doivent tre assortis. Si T1 % ne parat pas trs esthtique, essayer d'effacer la ligne contenant fontenc. \begin{document} \begin{frame}{Nom du confrencier}{ propos du confrencier suivant} \begin{itemize} \item Affiliation actuelle du confrencier % Exemples: \begin{itemize} \item Professeur de Mathmatiques, Universit de Quelque Part. \item Partenaire Junior de la Compagnie X \item Confrencier pour l'organisation/le projet X. \end{itemize} \item Exprience et ralisation % Facultatif. Utilisez ceci s'il est appropri de flatt lgrement le % confrencier ; par exemple, s'il s'agit d'un invit. % En utilisant des sous-item, la liste des choses faites par le confrencier % parat intressante et suffisante. % Exemples: \begin{itemize} \item Diplme d'Acadmie, mais uniquement si c'est appropri \item Positions actuelles ou futures, ventuellement avec les dates \item Publications (ventuellement juste le nombre de publications) \item Rcompenses, prix \end{itemize} \item Concernant le sujet d'aujourd'hui % Facultatif. Il est important pour l'expos d'utiliser ce point en dehors des toutes % expriences/connaissances spcifiques du confrencier et de ne pas poursuivre ce qui % a t indiqu plus haut. % Exemples: \begin{itemize} \item Expert qui a travaill sur le projet durant X mois/anne. \item Va prsenter les recherches de son groupe/sa compagnie sur le sujet. \item Va rsumer le rapport du projet ou le statut actuel du projet. \end{itemize} \end{itemize} \end{frame} \end{document} beamer/solutions/short-talks/speaker_introduction-ornate-2min.en.tex0000644000175000017500000000534512050430506025704 0ustar mohuramohura% $Header: /Users/joseph/Documents/LaTeX/beamer/solutions/short-talks/speaker_introduction-ornate-2min.en.tex,v 90e850259b8b 2007/01/28 20:48:30 tantau $ \documentclass{beamer} % This file is a solution template for: % - Introducing another speaker. % - Talk length is about 2min. % - Style is ornate. % Copyright 2004 by Till Tantau . % % In principle, this file can be redistributed and/or modified under % the terms of the GNU Public License, version 2. % % However, this file is supposed to be a template to be modified % for your own needs. For this reason, if you use this file as a % template and not specifically distribute it as part of a another % package/program, the author grants the extra permission to freely % copy and modify this file as you see fit and even to delete this % copyright notice. \setbeamertemplate{background canvas}[vertical shading][bottom=white,top=structure.fg!25] % or whatever \usetheme{Warsaw} \setbeamertemplate{headline}{} \setbeamertemplate{footline}{} \setbeamersize{text margin left=0.5cm} \usepackage[english]{babel} % or whatever \usepackage[latin1]{inputenc} % or whatever \usepackage{times} \usepackage[T1]{fontenc} % Or whatever. Note that the encoding and the font should match. If T1 % does not look nice, try deleting the line with the fontenc. \begin{document} \begin{frame}{Speaker's Name}{About Our Next Speaker} \begin{itemize} \item Current affiliation of Speaker's Name % Examples: \begin{itemize} \item Professor of mathematics, University of Wherever. \item Junior partner at company X. \item Speaker for organization/project X. \end{itemize} \item Experience and achievements % Optional. Use this if it is appropriate to slightly flatter the % speaker, for example if the speaker has been invited. % Using subitems, list things that make the speaker look % interesting and competent. % Examples: \begin{itemize} \item Academic degree, but only if appropriate \item Current and/or previous positions, possibly with dates \item Publications (possibly just number of publications) \item Awards, prizes \end{itemize} \item Concerning today's talk % Optional. Use this to point out specific experiences/knowledge % of the speaker that are important for the talk and that do not % follow from the above. % Examples: \begin{itemize} \item Expert who has worked in the field/project for X month/years. \item Will present his/her/group's/company's research on the subject. \item Will summarize project report or current project status. \end{itemize} \end{itemize} \end{frame} \end{document} beamer/solutions/short-talks/speaker_introduction-ornate-2min.en.lyx0000644000175000017500000000606112050430506025714 0ustar mohuramohura#LyX 1.3 created this file. For more info see http://www.lyx.org/ \lyxformat 221 \textclass beamer \begin_preamble \setbeamertemplate{background canvas}[vertical shading][bottom=white,top=structure.fg!25] % or whatever \usetheme{Warsaw} \setbeamertemplate{headline}{} \setbeamertemplate{footline}{} \setbeamersize{text margin left=0.5cm} \end_preamble \language english \inputencoding auto \fontscheme times \graphics default \paperfontsize default \spacing single \papersize Default \paperpackage a4 \use_geometry 0 \use_amsmath 1 \use_natbib 0 \use_numerical_citations 0 \paperorientation portrait \secnumdepth 3 \tocdepth 3 \paragraph_separation indent \defskip medskip \quotes_language english \quotes_times 2 \papercolumns 1 \papersides 1 \paperpagestyle default \layout Standard \begin_inset Note collapsed false \layout Standard This file is a solution template for: \layout Standard - Introducing another speaker. \layout Standard - Talk length is about 2min. \layout Standard - Style is ornate. \end_inset \layout Standard \begin_inset Note collapsed true \layout Standard Copyright 2004 by Till Tantau . \layout Standard In principle, this file can be redistributed and/or modified under the terms of the GNU Public License, version 2. However, this file is supposed to be a template to be modified for your own needs. For this reason, if you use this file as a template and not specifically distribute it as part of a another package/program, the author grants the extra permission to freely copy and modify this file as you see fit and even to delete this copyright notice. \end_inset \layout BeginFrame Speaker's Name \layout FrameSubtitle About Our Next Speaker \layout Itemize Current affiliation of Speaker's Name \begin_deeper \layout Itemize Professor or mathematics, University of Wherever. \layout Itemize Junior partner at company X. \layout Itemize Speaker for organization/project X. \end_deeper \layout Itemize Experience and achievements \begin_inset Note collapsed false \layout Standard Optional. Use this if it is appropriate to slightly flatter the speaker, for example if the speaker has been invited. Using subitems, list things that make the speaker look interesting and competent. \end_inset \begin_deeper \layout Itemize Academic degree, but only if appropriate \layout Itemize Current and/or previous positions, possibly with dates \layout Itemize Publications (possibly just number of publications) \layout Itemize Awards, prizes \end_deeper \layout Itemize Concerning today's talk \begin_inset Note collapsed false \layout Standard Optional. Use this to point out specific experiences/knowledge of the speaker that are important for the talk and that do not follow from the above. \end_inset \begin_deeper \layout Itemize Expert who has worked in the field/project for X month/years. \layout Itemize Will present his/her/group's/company's research on the subject. \layout Itemize Will summarize project report or current project status. \end_deeper \layout EndFrame \the_end beamer/solutions/short-talks/speaker_introduction-ornate-2min.de.lyx0000644000175000017500000000652612050430506025710 0ustar mohuramohura#LyX 1.3 created this file. For more info see http://www.lyx.org/ \lyxformat 221 \textclass beamer \begin_preamble \setbeamertemplate{background canvas}[vertical shading][bottom=white,top=structure.fg!25] % Oder was auch immer. \usetheme{Warsaw} \setbeamertemplate{headline}{} \setbeamertemplate{footline}{} \setbeamersize{text margin left=0.5cm} % or whatever \end_preamble \language ngerman \inputencoding auto \fontscheme times \graphics default \paperfontsize default \spacing single \papersize Default \paperpackage a4 \use_geometry 0 \use_amsmath 1 \use_natbib 0 \use_numerical_citations 0 \paperorientation portrait \secnumdepth 3 \tocdepth 3 \paragraph_separation indent \defskip medskip \quotes_language danish \quotes_times 2 \papercolumns 1 \papersides 1 \paperpagestyle default \layout Standard \begin_inset Note collapsed false \layout Standard Diese Datei enthlt eine Lsungsvorlage fr: \layout Standard - Das Vorstellen des nchsten Sprechers. \layout Standard - Vortragslnge von ca. zwei Minuten. \layout Standard - Aussehen des Vortrags ist verschnrkelt/dekorativ. \end_inset \layout Standard \begin_inset Note collapsed true \layout Standard Copyright 2004 by Till Tantau . \layout Standard In principle, this file can be redistributed and/or modified under the terms of the GNU Public License, version 2. However, this file is supposed to be a template to be modified for your own needs. For this reason, if you use this file as a template and not specifically distribute it as part of a another package/program, the author grants the extra permission to freely copy and modify this file as you see fit and even to delete this copyright notice. \end_inset \layout BeginFrame Name der/des Vortragenden \layout FrameSubtitle ber unsere(n) nchste(n) Vortragende(n) \layout Itemize Derzeitige Stellung(en) von Name der/des Vortragenden \begin_deeper \layout Itemize Professor fr Mathematik, Universitt Irgendwo. \layout Itemize Juniorpartner bei Firma X. \layout Itemize Sprecher der Organisation X / des Projekts X. \end_deeper \layout Itemize Erfahrungen und Erfolge \begin_inset Note collapsed false \layout Standard Optional. Sollte nur gebracht werden, wenn es angemessen erscheint, dem Vortragenden leicht zu schmeicheln; was beispielsweise bei eingeladenen Vortragenden der Fall ist. Die Unterpunkte sollten den Sprecher interessant und kompetent erscheinen lassen. \end_inset \begin_deeper \layout Itemize Falls passend, akademischer Grad \layout Itemize Derzeitige und/oder vorherige Stellungen, eventuell mit Daten \layout Itemize Publikationen (eventuell lediglich die Anzahl) \layout Itemize Auszeichnungen, Preise \end_deeper \layout Itemize In Bezug auf den heutigen Vortrag \begin_inset Note collapsed false \layout Standard Optional. Sollte benutzt werden, um spezielle Erfahrungen / spezielles Wissen des Vortragenen speziell in Bezug auf den Vortrag aufzuzeigen -- falls diese Erfahrungen sich nicht bereits aus obigen Punkten ableiten lassen. \end_inset \begin_deeper \layout Itemize Expertin/Experte, die/der seit X Monaten/Jahren in dem Gebiet/Projekt arbeitet. \layout Itemize Wird ihre/seine Forschung / die Forschung der Gruppe/Firma vorstellen. \layout Itemize Wird einen Projektbericht/Projektstatus vorstellen. \end_deeper \layout EndFrame \the_end beamer/solutions/conference-talks/0000755000175000017500000000000012050430506017136 5ustar mohuramohurabeamer/solutions/conference-talks/conference-ornate-20min.de.tex0000644000175000017500000001704412050430506024575 0ustar mohuramohura% $Header: /Users/joseph/Documents/LaTeX/beamer/solutions/conference-talks/conference-ornate-20min.de.tex,v 90e850259b8b 2007/01/28 20:48:30 tantau $ \documentclass{beamer} % Diese Datei enthlt eine Lsungsvorlage fr: % - Vortrge bei einer (deutschsprachigen) Konferenz/einem Kolloquium. % - Vortragslnge von etwa 20 Minuten. % - Aussehen des Vortrags ist verschnrkelt/dekorativ. % Copyright 2004 by Till Tantau . % % In principle, this file can be redistributed and/or modified under % the terms of the GNU Public License, version 2. % % However, this file is supposed to be a template to be modified % for your own needs. For this reason, if you use this file as a % template and not specifically distribute it as part of a another % package/program, I grant the extra permission to freely copy and % modify this file as you see fit and even to delete this copyright % notice. \mode { \usetheme{Warsaw} % oder ... \setbeamercovered{transparent} % oder auch nicht } \usepackage[german]{babel} % oder was auch immer \usepackage[latin1]{inputenc} % oder was auch immer \usepackage{times} \usepackage[T1]{fontenc} % Oder was auch immer. Zu beachten ist, das Font und Encoding passen % mssen. Falls T1 nicht funktioniert, kann man versuchen, die Zeile % mit fontenc zu lschen. \title[Kurzversion des Titels] % (optional, nur bei langen Titeln ntig) {Titel wie im Tagunsband angegeben\\ (u.U.\ also englisch)} \subtitle {Untertitel nur angeben, wenn es einen im Tagungsband gibt} \author[Autor, Anders] % (optional, nur bei vielen Autoren) {F.~Autor\inst{1} \and S.~Anders\inst{2}} % - Namen mssen in derselben Reihenfolge wie im Papier erscheinen. % - Der \inst{?} Befehl sollte nur verwendet werden, wenn die Autoren % unterschiedlichen Instituten angehren. \institute[Universitten Hier und Dort] % (optional, aber oft ntig) { \inst{1}% Institut fr Informatik\\ Universitt Hier \and \inst{2}% Institut fr theoretische Philosophie\\ Universitt Dort} % - Der \inst{?} Befehl sollte nur verwendet werden, wenn die Autoren % unterschiedlichen Instituten angehren. % - Keep it simple, niemand interessiert sich fr die genau Adresse. \date[KPT 2003] % (optional, sollte der abgekrzte Konferenzname sein) {Konferenz ber Prsentationstechniken, 2004} % - Vollee oder abgekrzter Name sind mglich. % - Dieser Eintrag ist nicht fr das Publikum gedacht (das wei % nmlich, bei welcher Konferenz es ist), sondern fr Leute, die die % Folien spter lesen. \subject{Informatik} % Dies wird lediglich in den PDF Informationskatalog einfgt. Kann gut % weggelassen werden. % Falls eine Logodatei namens "university-logo-filename.xxx" vorhanden % ist, wobei xxx ein von latex bzw. pdflatex lesbares Graphikformat % ist, so kann man wie folgt ein Logo einfgen: % \pgfdeclareimage[height=0.5cm]{university-logo}{university-logo-filename} % \logo{\pgfuseimage{university-logo}} % Folgendes sollte gelscht werden, wenn man nicht am Anfang jedes % Unterabschnitts die Gliederung nochmal sehen mchte. \AtBeginSubsection[] { \begin{frame}{Gliederung} \tableofcontents[currentsection,currentsubsection] \end{frame} } % Falls Aufzhlungen immer schrittweise gezeigt werden sollen, kann % folgendes Kommando benutzt werden: %\beamerdefaultoverlayspecification{<+->} \begin{document} \begin{frame} \titlepage \end{frame} \begin{frame}{Gliederung} \tableofcontents % Die Option [pausesections] knnte ntzlich sein. \end{frame} % Einen Vortrag zu strukturieren ist nicht immer einfach. Die % nachfolgende Struktur kann unangemessen sein. Hier ein paar Regeln, % die fr diese Lsungsvorlage gelten: % - Es sollte genau zwei oder drei Abschnitte geben (neben der % Zusammenfassung). % - *Hchstens* drei Unterabschnitte pro Abschnitt. % - Pro Rahmen sollte man zwischen 30s und 2min reden. Es sollte also % 15 bis 30 Rahmen geben. % - Konferenzteilnehmer wissen oft wenig von der Materie des % Vortrags. Deshalb: vereinfachen! % - In 20 Minuten ist es schon schwer genug, die Hauptbotschaft zu % vermitteln. Deshalb sollten Details ausgelassen werden, selbst % wenn dies zu Ungenauigkeiten oder Halbwahrheiten fhrt. % - Falls man Details weglsst, die eigentlich wichtig fr einen % Beweis/Implementation sind, so sagt man dies einmal nchtern. Alle % werden damit glcklich sein. \section{Motivation} \subsection{Das behandelte Problem} \begin{frame}{berschriften mssen informativ sein.\\ Korrekte Gro-/Kleinschreibung beachten.}{Untertitel sind optional.} % - Eine berschrift fasst einen Rahmen verstndlich zusammen. Man % muss sie verstehen knnen, selbst wenn man nicht den Rest des % Rahmens versteht. \begin{itemize} \item Viel \texttt{itemize} benutzen. \item Sehr kurze Stze oder Satzglieder verwenden. \end{itemize} \end{frame} \begin{frame}{berschriften mssen informativ sein.} Man kann Overlays erzeugen\dots \begin{itemize} \item mit dem \texttt{pause}-Befehl: \begin{itemize} \item Erster Punkt. \pause \item Zweiter Punkt. \end{itemize} \item mittels Overlay-Spezifikationen: \begin{itemize} \item<3-> Erster Punkt. \item<4-> Zweiter Punkt. \end{itemize} \item mit dem allgemeinen \texttt{uncover}-Befehl: \begin{itemize} \uncover<5->{\item Erster Punkt.} \uncover<6->{\item Zweiter Punkt.} \end{itemize} \end{itemize} \end{frame} \subsection{Frhere Arbeiten} \begin{frame}{berschriften mssen informativ sein.} \end{frame} \begin{frame}{berschriften mssen informativ sein.} \end{frame} \section{Unsere Resultate/Beitrag} \subsection{Hauptresultate} \begin{frame}{berschriften mssen informativ sein.} \end{frame} \begin{frame}{berschriften mssen informativ sein.} \end{frame} \begin{frame}{berschriften mssen informativ sein.} \end{frame} \subsection{Beweis-/Implementationsideen} \begin{frame}{berschriften mssen informativ sein.} \end{frame} \begin{frame}{berschriften mssen informativ sein.} \end{frame} \begin{frame}{berschriften mssen informativ sein.} \end{frame} \section*{Zusammenfassung} \begin{frame}{Zusammenfassung} % Die Zusammenfassung sollte sehr kurz sein. \begin{itemize} \item Die \alert{erste Hauptbotschaft} des Vortrags in ein bis zwei Zeilen. \item Die \alert{zweite Hauptbotschaft} des Vortrags in ein bis zwei Zeilen. \item Eventuell noch eine \alert{dritte Botschaft}, aber nicht noch mehr. \end{itemize} % Der folgende Ausblick ist optional. \vskip0pt plus.5fill \begin{itemize} \item Ausblick \begin{itemize} \item Etwas, was wir noch nicht lsen konnten. \item Nochwas, das wir noch nicht lsen konnten. \end{itemize} \end{itemize} \end{frame} % Alles nachfolgende ist optional und typischerweise nicht ntig. \appendix \section*{\appendixname} \subsection*{Weiterfhrende Literatur} \begin{frame}[allowframebreaks] \frametitle{Weiterfhrende Literatur} \begin{thebibliography}{10} \beamertemplatebookbibitems % Anfangen sollte man mit bersichtswerken. \bibitem{Autor1990} A.~Autor. \newblock {\em Einfhrung in das Prsentationswesen}. \newblock Klein-Verlag, 1990. \beamertemplatearticlebibitems % Vertiefende Literatur kommt spter. Die Liste sollte kurz sein. \bibitem{Jemand2000} S.~Jemand. \newblock On this and that. \newblock {\em Journal of This and That}, 2(1):50--100, 2000. \end{thebibliography} \end{frame} \end{document} beamer/solutions/conference-talks/conference-ornate-20min.en.lyx0000644000175000017500000002666612050430506024635 0ustar mohuramohura#LyX 1.3 created this file. For more info see http://www.lyx.org/ \lyxformat 221 \textclass beamer \begin_preamble \usetheme{Warsaw} % or ... \setbeamercovered{transparent} % or whatever (possibly just delete it) \end_preamble \language english \inputencoding auto \fontscheme times \graphics default \paperfontsize default \spacing single \papersize Default \paperpackage a4 \use_geometry 0 \use_amsmath 1 \use_natbib 0 \use_numerical_citations 0 \paperorientation portrait \secnumdepth 2 \tocdepth 2 \paragraph_separation indent \defskip medskip \quotes_language english \quotes_times 2 \papercolumns 1 \papersides 1 \paperpagestyle default \layout Standard \begin_inset Note collapsed false \layout Standard This file is a solution template for: \layout Standard - Talk at a conference/colloquium. \layout Standard - Talk length is about 20min. \layout Standard - Style is ornate. \end_inset \layout Standard \begin_inset Note collapsed true \layout Standard Copyright 2004 by Till Tantau . \layout Standard In principle, this file can be redistributed and/or modified under the terms of the GNU Public License, version 2. However, this file is supposed to be a template to be modified for your own needs. For this reason, if you use this file as a template and not specifically distribute it as part of a another package/program, the author grants the extra permission to freely copy and modify this file as you see fit and even to delete this copyright notice. \end_inset \layout Title Title As It Is In the Proceedings \begin_inset OptArg collapsed false \layout Standard Short Paper Title \begin_inset Note collapsed false \layout Standard optional, use only with long paper titles \end_inset \end_inset \layout Subtitle Include Only If Paper Has a Subtitle \layout Author F.\SpecialChar ~ Author \begin_inset ERT status Collapsed \layout Standard \backslash inst{1} \end_inset \begin_inset ERT status Collapsed \layout Standard \backslash and \end_inset S.\SpecialChar ~ Another \begin_inset ERT status Collapsed \layout Standard \backslash inst{2} \end_inset \begin_inset Note collapsed false \layout Standard - Give the names in the same order as the appear in the paper. \layout Standard - Use the \backslash inst{?} command only if the authors have different affiliations. \end_inset \begin_inset OptArg collapsed false \layout Standard Author, Another \begin_inset Note collapsed false \layout Standard - optional, use only with lots of authors \layout Standard - if there are reallylots of authors, use \begin_inset Quotes eld \end_inset Author et al. \begin_inset Quotes erd \end_inset \end_inset \end_inset \layout Date \begin_inset ERT status Collapsed \layout Standard \backslash inst{1} \end_inset Department of Computer Science \layout Date University of Somewhere \begin_inset ERT status Collapsed \layout Standard \backslash and \end_inset \begin_inset ERT status Collapsed \layout Standard \backslash inst{2} \end_inset Department of Theoretical Philosophy \layout Date University of Elsewhere \begin_inset Note collapsed false \layout Standard - Use the \backslash inst command only if there are several affiliations. \layout Standard - Keep it simple, no one is interested in your street address. \end_inset \begin_inset OptArg collapsed false \layout Standard Universities of Somewhere and Elsewhere \begin_inset Note collapsed false \layout Standard optional, but mostly needed \end_inset \end_inset \layout Date Conference on Fabulous Presentations, 2003 \begin_inset Note collapsed false \layout Standard - Either use conference name or its abbreviation. \layout Standard - Not really informative to the audience, more for people (including yourself) who are reading the slides online \end_inset \begin_inset OptArg collapsed false \layout Standard CFP 2003 \layout Standard \begin_inset Note collapsed false \layout Standard optional, should be abbreviation of conference name \end_inset \end_inset \layout Standard \begin_inset Note collapsed false \layout Standard If you have a file called "institution-logo-filename.xxx", where xxx is a graphic format that can be processed by latex or pdflatex, resp., then you can add a logo by uncommenting the following: \end_inset \layout Standard \begin_inset ERT status Open \layout Standard % \backslash pgfdeclareimage[height=0.5cm]{institution-logo}{institution-logo-filename} \layout Standard % \backslash logo{ \backslash pgfuseimage{institution-logo}} \end_inset \layout Standard \begin_inset Note collapsed false \layout Standard The following causes the table of contents to be shown at the beginning of every subsection. Delete this, if you do not want it. \end_inset \layout Standard \begin_inset ERT status Open \layout Standard \backslash AtBeginSubsection[]{ \layout Standard \backslash frame{ \layout Standard \backslash frametitle{Outline} \layout Standard \backslash tableofcontents[currentsection,currentsubsection] \layout Standard } \layout Standard } \end_inset \layout Standard \begin_inset Note collapsed false \layout Standard If you wish to uncover everything in a step-wise fashion, uncomment the following command: \end_inset \layout Standard \begin_inset ERT status Open \layout Standard % \backslash beamerdefaultoverlayspecification{<+->} \end_inset \layout BeginFrame Outline \layout Standard \begin_inset LatexCommand \tableofcontents{} \end_inset \layout Standard \begin_inset Note collapsed false \layout Standard Structuring a talk is a difficult task and the following structure may not be suitable. Here are some rules that apply for this solution: \layout Standard - Exactly two or three sections (other than the summary). \layout Standard - At *most* three subsections per section. \layout Standard - Talk about 30s to 2min per frame. So there should be between about 15 and 30 frames, all told. \layout Standard - A conference audience is likely to know very little of what you are going to talk about. So *simplify*! \layout Standard - In a 20min talk, getting the main ideas across is hard enough. Leave out details, even if it means being less precise than you think necessary. \layout Standard - If you omit details that are vital to the proof/implementation, just say so once. Everybody will be happy with that. \end_inset \layout Section Motivation \layout Subsection The Basic Problem That We Studied \begin_inset OptArg collapsed false \layout Standard Basic Problem \end_inset \layout BeginFrame Make Titles Informative. Use Uppercase Letters. \layout FrameSubtitle Frame subtitles are optional. Use upper- or lowercase letters. \begin_inset Note collapsed false \layout Standard - A title should summarize the slide in an understandable fashion for anyone how does not follow everything on the slide itself. \end_inset \layout Itemize Use Itemize a lot. \begin_deeper \layout Pause \end_deeper \layout Itemize Use very short sentences or short phrases. \begin_deeper \layout Pause \end_deeper \layout Itemize These overlays are created using the Pause style. \layout BeginFrame Make Titles Informative. \layout Itemize \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset You can also use overlay specifications to create overlays. \layout Itemize \begin_inset ERT status Collapsed \layout Standard <3-> \end_inset This allows you to present things in any order. \layout Itemize \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset This is shown second. \layout BeginFrame Make Titles Informative. \layout Block \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset \begin_inset ERT status Collapsed \layout Standard { \end_inset \begin_inset ERT status Collapsed \layout Standard } \end_inset \begin_deeper \layout Itemize Untitled block. \layout Itemize Shown on all slides. \end_deeper \layout ExampleBlock \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset \begin_inset ERT status Collapsed \layout Standard { \end_inset Some Example Block Title \begin_inset ERT status Collapsed \layout Standard } \end_inset \begin_deeper \layout Itemize \begin_inset Formula $e^{i\pi}=-1$ \end_inset . \layout Itemize \begin_inset Formula $e^{i\pi/2}=i$ \end_inset . \end_deeper \layout Subsection Previous Work \layout BeginFrame Make Titles Informative. \layout Example \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset On first slide. \layout Separator \layout Example \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset On second slide. \layout Section Our Results/Contribution \layout Subsection Main Results \layout BeginFrame Make Titles Informative. \layout Theorem On first slide. \layout Pause \layout Corollary On second slide. \layout BeginFrame Make Titles Informative. \layout ColumnsTopAligned \begin_deeper \layout Column 5cm \layout Theorem \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset In left column. \layout Column 5cm \layout Corollary \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset In right column. \newline New line \end_deeper \layout Subsection Basic Ideas for Proofs/Implementations \layout Section* Summary \layout BeginFrame Summary \layout Itemize The \color red first main message \color default of your talk in one or two lines. \layout Itemize The \color red second main message \color default of your talk in one or two lines. \layout Itemize Perhaps a \color red third message \color default , but not more than that. \layout Standard \begin_inset Note collapsed false \layout Standard An outlook is always optional. \end_inset \layout Standard \begin_inset ERT status Collapsed \layout Standard \backslash vskip0pt plus.5fill \end_inset \layout Itemize Outlook \begin_deeper \layout Itemize What we have not done yet. \layout Itemize Even more stuff. \end_deeper \layout EndFrame \layout Section* \start_of_appendix \begin_inset Note collapsed false \layout Standard All of the following is optional and typically not needed. \end_inset Appendix \layout Subsection* For Further Reading \layout BeginFrame \begin_inset ERT status Collapsed \layout Standard [allowframebreaks] \end_inset For Further Reading \layout Standard \begin_inset ERT status Collapsed \layout Standard \backslash beamertemplatebookbibitems \end_inset \begin_inset Note collapsed false \layout Standard Start with overview books. \end_inset \layout Bibliography \bibitem {Author1990} A. Author. \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset \emph on Handbook of Everything \emph default . \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset Some Press, 1990. \begin_inset ERT status Collapsed \layout Standard \backslash beamertemplatearticlebibitems \end_inset \begin_inset Note collapsed false \layout Standard Followed by interesting articles. Keep the list short. \end_inset \layout Bibliography \bibitem {Someone2002} S. Someone. \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset On this and that \emph on . \emph default \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset \emph on Journal on This and That \emph default . 2(1):50--100, 2000. \layout EndFrame \the_end beamer/solutions/conference-talks/conference-ornate-20min.en.tex0000644000175000017500000001555012050430506024607 0ustar mohuramohura% $Header: /Users/joseph/Documents/LaTeX/beamer/solutions/conference-talks/conference-ornate-20min.en.tex,v 90e850259b8b 2007/01/28 20:48:30 tantau $ \documentclass{beamer} % This file is a solution template for: % - Talk at a conference/colloquium. % - Talk length is about 20min. % - Style is ornate. % Copyright 2004 by Till Tantau . % % In principle, this file can be redistributed and/or modified under % the terms of the GNU Public License, version 2. % % However, this file is supposed to be a template to be modified % for your own needs. For this reason, if you use this file as a % template and not specifically distribute it as part of a another % package/program, I grant the extra permission to freely copy and % modify this file as you see fit and even to delete this copyright % notice. \mode { \usetheme{Warsaw} % or ... \setbeamercovered{transparent} % or whatever (possibly just delete it) } \usepackage[english]{babel} % or whatever \usepackage[latin1]{inputenc} % or whatever \usepackage{times} \usepackage[T1]{fontenc} % Or whatever. Note that the encoding and the font should match. If T1 % does not look nice, try deleting the line with the fontenc. \title[Short Paper Title] % (optional, use only with long paper titles) {Title As It Is In the Proceedings} \subtitle {Include Only If Paper Has a Subtitle} \author[Author, Another] % (optional, use only with lots of authors) {F.~Author\inst{1} \and S.~Another\inst{2}} % - Give the names in the same order as the appear in the paper. % - Use the \inst{?} command only if the authors have different % affiliation. \institute[Universities of Somewhere and Elsewhere] % (optional, but mostly needed) { \inst{1}% Department of Computer Science\\ University of Somewhere \and \inst{2}% Department of Theoretical Philosophy\\ University of Elsewhere} % - Use the \inst command only if there are several affiliations. % - Keep it simple, no one is interested in your street address. \date[CFP 2003] % (optional, should be abbreviation of conference name) {Conference on Fabulous Presentations, 2003} % - Either use conference name or its abbreviation. % - Not really informative to the audience, more for people (including % yourself) who are reading the slides online \subject{Theoretical Computer Science} % This is only inserted into the PDF information catalog. Can be left % out. % If you have a file called "university-logo-filename.xxx", where xxx % is a graphic format that can be processed by latex or pdflatex, % resp., then you can add a logo as follows: % \pgfdeclareimage[height=0.5cm]{university-logo}{university-logo-filename} % \logo{\pgfuseimage{university-logo}} % Delete this, if you do not want the table of contents to pop up at % the beginning of each subsection: \AtBeginSubsection[] { \begin{frame}{Outline} \tableofcontents[currentsection,currentsubsection] \end{frame} } % If you wish to uncover everything in a step-wise fashion, uncomment % the following command: %\beamerdefaultoverlayspecification{<+->} \begin{document} \begin{frame} \titlepage \end{frame} \begin{frame}{Outline} \tableofcontents % You might wish to add the option [pausesections] \end{frame} % Structuring a talk is a difficult task and the following structure % may not be suitable. Here are some rules that apply for this % solution: % - Exactly two or three sections (other than the summary). % - At *most* three subsections per section. % - Talk about 30s to 2min per frame. So there should be between about % 15 and 30 frames, all told. % - A conference audience is likely to know very little of what you % are going to talk about. So *simplify*! % - In a 20min talk, getting the main ideas across is hard % enough. Leave out details, even if it means being less precise than % you think necessary. % - If you omit details that are vital to the proof/implementation, % just say so once. Everybody will be happy with that. \section{Motivation} \subsection{The Basic Problem That We Studied} \begin{frame}{Make Titles Informative. Use Uppercase Letters.}{Subtitles are optional.} % - A title should summarize the slide in an understandable fashion % for anyone how does not follow everything on the slide itself. \begin{itemize} \item Use \texttt{itemize} a lot. \item Use very short sentences or short phrases. \end{itemize} \end{frame} \begin{frame}{Make Titles Informative.} You can create overlays\dots \begin{itemize} \item using the \texttt{pause} command: \begin{itemize} \item First item. \pause \item Second item. \end{itemize} \item using overlay specifications: \begin{itemize} \item<3-> First item. \item<4-> Second item. \end{itemize} \item using the general \texttt{uncover} command: \begin{itemize} \uncover<5->{\item First item.} \uncover<6->{\item Second item.} \end{itemize} \end{itemize} \end{frame} \subsection{Previous Work} \begin{frame}{Make Titles Informative.} \end{frame} \begin{frame}{Make Titles Informative.} \end{frame} \section{Our Results/Contribution} \subsection{Main Results} \begin{frame}{Make Titles Informative.} \end{frame} \begin{frame}{Make Titles Informative.} \end{frame} \begin{frame}{Make Titles Informative.} \end{frame} \subsection{Basic Ideas for Proofs/Implementation} \begin{frame}{Make Titles Informative.} \end{frame} \begin{frame}{Make Titles Informative.} \end{frame} \begin{frame}{Make Titles Informative.} \end{frame} \section*{Summary} \begin{frame}{Summary} % Keep the summary *very short*. \begin{itemize} \item The \alert{first main message} of your talk in one or two lines. \item The \alert{second main message} of your talk in one or two lines. \item Perhaps a \alert{third message}, but not more than that. \end{itemize} % The following outlook is optional. \vskip0pt plus.5fill \begin{itemize} \item Outlook \begin{itemize} \item Something you haven't solved. \item Something else you haven't solved. \end{itemize} \end{itemize} \end{frame} % All of the following is optional and typically not needed. \appendix \section*{\appendixname} \subsection*{For Further Reading} \begin{frame}[allowframebreaks] \frametitle{For Further Reading} \begin{thebibliography}{10} \beamertemplatebookbibitems % Start with overview books. \bibitem{Author1990} A.~Author. \newblock {\em Handbook of Everything}. \newblock Some Press, 1990. \beamertemplatearticlebibitems % Followed by interesting articles. Keep the list short. \bibitem{Someone2000} S.~Someone. \newblock On this and that. \newblock {\em Journal of This and That}, 2(1):50--100, 2000. \end{thebibliography} \end{frame} \end{document} beamer/solutions/conference-talks/conference-ornate-20min.fr.tex0000644000175000017500000002017712050430506024615 0ustar mohuramohura% /solutions/conference-talks/conference-ornate-20min.fr.tex, 22/02/2006 De Sousa \documentclass{beamer} % Ce fichier est un exemple d'expos % - pour des confrences, % - d'une dure approximative de 20 minutes, % - avec un style ornemental. % Copyright 2004 by Till Tantau . % % Traduction de Philippe De Sousa % % En principe, ce fichier peut tre redistribu et/ou modifi conformment % aux termes de la GNU Public License, version 2. % % Cependant, ce fichier est suppos comme tant un "exemple-type" qui peut tre modifi % selon vos propres besoins. Pour cette raison, si vous utilisez ce fichier en tant qu' % "exemple-type" et non spcifiquement pour le distribuer en tant que partie d'un % package ou programme, je vous donne la permission exceptionnelle de copier librement et % de modifier ce fichier et mme d'effacer ce message de copyright. \mode { \usetheme{Warsaw} % ou autre ... \setbeamercovered{transparent} % ou autre chose (il est galement possible de supprimer cette ligne) } \usepackage[french]{babel} % or autre comme par exemple \usepackage[english]{babel} \usepackage[latin1]{inputenc} % or autre \usepackage{times} \usepackage[T1]{fontenc} % Or autre. Notez que le codage et la fonte doivent tre assortis. Si T1 % ne parat pas trs esthtique, essayer d'effacer la ligne contenant fontenc. \title[Titre court] % (facultatif, utiliser uniquement si le titre de l'article est trop long) {Trs long titre qui prend de la place} \subtitle {ne complter que si l'article possde un sous-titre} \author[Auteur, Lautre] % (facultatif, utiliser seulement avec plusieurs auteurs) {F.~Auteur\inst{1} \and S.~Lautre\inst{2}} % - Composez les noms dans l'ordre dans lequel ils apparatrons dans l'article % - Utilisez la commande \inst{?} uniquement si les auteurs ont des affiliations % diffrentes. \institute[Universits de Quelque Part et d'Ailleurs] % (facultatif mais gnralement ncessaire) { \inst{1}% Dpartement d'Informatique\\ Universit de Quelque Part \and \inst{2}% Dpartement de Philosophie Thorique\\ Universit d'Ailleurs} % - Utilisez la commande \inst uniquement s'il y a plusieurs affectations % - Fates quelque chose de simple, personne ne s'intresse votre adresse \date[CFP 2006] % (facultatif, peut tre une abrviation du nom de la confrence) {Confrence sur les Fantastiques Prsentations, 2006} % - Utilisez la fois le nom de la confrence et son abrviation. % - N'a pas rellement d'importance pour l'assistance qui sera prsente lors de la confrence, % mais en a surtout pour les personnes (y compris vous-mme) qui liront les transparents en ligne. \subject{La thorie de l'Informatique} % Insr uniquement dans la page d'information du fichier PDF. Peut tre % supprim. % Si vous avez un fichier nomm "universit-logo-nomfichier.xxx", o xxx % est un format graphique accept par latex ou pdflatex (comme par exemple .png), % alors vous pouvez insrer votre logo ainsi : % \pgfdeclareimage[height=0.5cm]{le-logo}{universit-logo-nomfichier} % \logo{\pgfuseimage{le-logo}} % supprimer si vous ne voulez pas que la table des matires apparaisse % au dbut de chaque sous-section : \AtBeginSubsection[] { \begin{frame}{Lignes directrices} \tableofcontents[currentsection,currentsubsection] \end{frame} } % Si vous souhaitez recouvrir vos transparents un un, % utilisez la commande suivante (pour plus d'info, voir la page 74 du manuel % d'utilisation de Beamer (version 3.06) par Till Tantau) : %\beamerdefaultoverlayspecification{<+->} \begin{document} \begin{frame} \titlepage \end{frame} \begin{frame}{Lignes directrices} \tableofcontents % Vous pouvez, si vous le souhaiter ajouter l'option [pausesections] \end{frame} % Structurer l'entretien est une tche difficile et la structure suivante % pourrait ne pas convenir. Voici quelques rgles appliquer pour cet % exemple ci : % - Avoir exactement deux ou trois sections (autre que la table des matires). % - Tout au plus trois sous-sections par section % - Parlez approximativement entre 30 secondes et 2 minutes par transparent. Il % devrait donc y avoir entre 15 et 30 transparents, tous ayant t comments. % - Le public d'une confrence connatra probablement peu de chose sur le sujet % que vous serez en train de traiter. Donc, *simplifiez* ! % - Dans un expos de 20 minutes, garder l'esprit les ides principales est largement % suffisant pour votre assistance. Laissez tomber certains dtails, mme s'ils vous % semblent ncessaires. % - Si vous omettez un dtail qui est vital pour une preuve/mise en oeuvre, % dites le simplement une fois. Ce sera suffisant pour tout le monde. \section{Motivation} \subsection{Le problme tudi} \begin{frame}{Fates des titres qui informent.}{Les sous-titres sont facultatifs.} % - Le titre doit rsumer le transparent dans un langage comprhensible % par tous ceux qui ne suivront rien de ce qu'il y a sur ce transparent. \begin{itemize} \item Utilisez \texttt{itemize} volont. \item Utilisez des phrases trs courtes et de courtes expressions. \end{itemize} \end{frame} \begin{frame}{Fates des titres qui informent} Vous pouvez crer des recouvrements\dots \begin{itemize} \item en utilisant la commande \texttt{pause} : \begin{itemize} \item Premier item. \pause \item Second item. \end{itemize} \item en utilisant les spcifications des recouvrements \begin{itemize} \item<3-> Premier item. \item<4-> Second item. \end{itemize} \item en utilisant en gnral la commande \texttt{uncover} : \begin{itemize} \uncover<5->{\item Premier item.} \uncover<6->{\item Second item.} \end{itemize} \end{itemize} \end{frame} \subsection{Travail pralable} \begin{frame}{Fates des titres qui informent.} {\scshape Beamer}, c'est vraiment super ! \end{frame} \begin{frame}{Fates des titres qui informent.} {\scshape Beamer}, c'est vraiment gnial ! \end{frame} \section{Nos rsultats/contribution} \subsection{Principaux rsultats} \begin{frame}{Fates des titres qui informent.} {\scshape Beamer} possdent plusieurs thmes diffrents... \end{frame} \begin{frame}{Fates des titres qui informent.} Merci Till Tantau pour {\scshape Beamer} et son manuel. \end{frame} \begin{frame}{Fates des titres qui informent.} Toute la puissance de \LaTeX{} pour crer des prsentations. \end{frame} \subsection{Ides de bases pour les preuves} \begin{frame}{Fates des titres qui informent.} Une ide... \end{frame} \begin{frame}{Fates des titres qui informent.} Une autre... \end{frame} \begin{frame}{Fates des titres qui informent.} Et une dernire... \end{frame} \section*{Rsum} \begin{frame}{Rsum} % Fates un rsum *trs court*. \begin{itemize} \item Le \alert{premier message principal} de l'expos en une ligne ou deux. \item Le \alert{deuxime message principal} de l'expos en une ligne ou deux. \item Peut-tre un \alert{troisime message}, mais pas plus que a. \end{itemize} % Les perspectives suivantes sont facultatives. \vskip0pt plus.5fill \begin{itemize} \item Perspectives \begin{itemize} \item Problme non rsolu. \item Autre problme non rsolu. \end{itemize} \end{itemize} \end{frame} % Tout ce qui suit est facultatif et n'est typiquement pas ncessaire. \appendix \section*{\appendixname} \subsection*{Lectures complmentaires} \begin{frame}[allowframebreaks] \frametitle{Lectures complmentaires} \begin{thebibliography}{10} \beamertemplatebookbibitems % Commencer avec des livres (image d'un livre insre) \bibitem{Auteur1990} A.~Auteur. \newblock {\em Livre de quelque chose}. \newblock Une Edition, 1990. \beamertemplatearticlebibitems % Et continuer avec les articles (image d'un article incluse). Fates une liste brve. \bibitem{Quelqu'un2000} S.~Quelqu'un. \newblock Et ceci et cela. \newblock {\em Journal de ceci et cela}, 2(1):50--100, 2000. \end{thebibliography} \end{frame} \end{document} beamer/solutions/conference-talks/conference-ornate-20min.de.lyx0000644000175000017500000003007212050430506024605 0ustar mohuramohura#LyX 1.3 created this file. For more info see http://www.lyx.org/ \lyxformat 221 \textclass beamer \begin_preamble \usetheme{Warsaw} % oder ... \setbeamercovered{transparent} % oder auch nicht \end_preamble \language ngerman \inputencoding auto \fontscheme times \graphics default \paperfontsize default \spacing single \papersize Default \paperpackage a4 \use_geometry 0 \use_amsmath 1 \use_natbib 0 \use_numerical_citations 0 \paperorientation portrait \secnumdepth 2 \tocdepth 2 \paragraph_separation indent \defskip medskip \quotes_language danish \quotes_times 2 \papercolumns 1 \papersides 1 \paperpagestyle default \layout Standard \begin_inset Note collapsed false \layout Standard Diese Datei enthlt eine Lsungsvorlage fr: \layout Standard - Vortrge bei einer (deutschsprachigen) Konferenz/einem Kolloquium. \layout Standard - Vortragslnge von etwa 20 Minuten. \layout Standard - Aussehen des Vortrags ist verschnrkelt/dekorativ. \end_inset \layout Standard \begin_inset Note collapsed true \layout Standard Copyright 2004 by Till Tantau . \layout Standard In principle, this file can be redistributed and/or modified under the terms of the GNU Public License, version 2. However, this file is supposed to be a template to be modified for your own needs. For this reason, if you use this file as a template and not specifically distribute it as part of a another package/program, the author grants the extra permission to freely copy and modify this file as you see fit and even to delete this copyright notice. \end_inset \layout Title Titel wie im Tagunsband angegeben \newline (u.U. also englisch) \begin_inset OptArg collapsed false \layout Standard Kurzversion des Titels \begin_inset Note collapsed false \layout Standard optional, nur bei langen Titeln ntig \end_inset \end_inset \layout Subtitle Untertitel nur angeben, wenn es einen im Tagungsband gibt \layout Author F.\SpecialChar ~ Autor \begin_inset ERT status Collapsed \layout Standard \backslash inst{1} \end_inset \begin_inset ERT status Collapsed \layout Standard \backslash and \end_inset S.\SpecialChar ~ Anders \begin_inset ERT status Collapsed \layout Standard \backslash inst{2} \end_inset \begin_inset Note collapsed false \layout Standard - Namen mssen in derselben Reihenfolge wie im Papier erscheinen. \layout Standard - Der \backslash inst{?} Befehl sollte nur verwendet werden, wenn die Autoren unterschiedlichen Instituten angehren. \end_inset \begin_inset OptArg collapsed false \layout Standard Author, Another \begin_inset Note collapsed false \layout Standard - optional, nur bei vielen Autoren \layout Standard - wenn es wirklich viele Autoren gibt, \begin_inset Quotes ald \end_inset Autor et al. \begin_inset Quotes ard \end_inset \end_inset \end_inset \layout Date \begin_inset ERT status Collapsed \layout Standard \backslash inst{1} \end_inset Institut fr Informatik \newline Universitt Hier \begin_inset ERT status Collapsed \layout Standard \backslash and \end_inset \begin_inset ERT status Collapsed \layout Standard \backslash inst{2} \end_inset Institut fr theoretische Philosophie \newline Universitt Dort \begin_inset Note collapsed false \layout Standard - Der \backslash inst{?} Befehl sollte nur verwendet werden, wenn die Autoren unterschiedlichen Instituten angehren. \layout Standard - Keep it simple, niemand interessiert sich fr die genau Adresse. \end_inset \begin_inset OptArg collapsed false \layout Standard Universitten Hier und Dort \begin_inset Note collapsed false \layout Standard optional, aber oft ntig \end_inset \end_inset \layout Date Konferenz ber Prsentationstechniken, 2004 \begin_inset Note collapsed false \layout Standard - Voller oder abgekrzter Name sind mglich. \layout Standard - Dieser Eintrag ist nicht fr das Publikum gedacht (das wei nmlich, bei welcher Konferenz es ist), sondern fr Leute, die die Folien spter lesen. \end_inset \begin_inset OptArg collapsed false \layout Standard KPT 2004 \layout Standard \begin_inset Note collapsed false \layout Standard optional, should be abbreviation of conference name \end_inset \end_inset \layout Standard \begin_inset Note collapsed false \layout Standard Falls eine Logodatei namens "university-logo-filename.xxx" vorhanden ist, wobei xxx ein von latex bzw. pdflatex lesbares Graphikformat ist, so kann man wie folgt ein Logo einfgen: \end_inset \layout Standard \begin_inset ERT status Open \layout Standard % \backslash pgfdeclareimage[height=0.5cm]{institution-logo}{institution-logo-filename} \layout Standard % \backslash logo{ \backslash pgfuseimage{institution-logo}} \end_inset \layout Standard \begin_inset Note collapsed false \layout Standard Folgendes sollte gelscht werden, wenn man nicht am Anfang jedes Unterabschnitts die Gliederung nochmal sehen mchte. \end_inset \layout Standard \begin_inset ERT status Open \layout Standard \backslash AtBeginSubsection[]{ \layout Standard \backslash frame{ \layout Standard \backslash frametitle{Gliederung} \layout Standard \backslash tableofcontents[currentsection,currentsubsection] \layout Standard } \layout Standard } \end_inset \layout Standard \begin_inset Note collapsed false \layout Standard Falls Aufzhlungen immer schrittweise gezeigt werden sollen, kann folgendes Kommando benutzt werden: \end_inset \layout Standard \begin_inset ERT status Open \layout Standard % \backslash beamerdefaultoverlayspecification{<+->} \end_inset \layout BeginFrame Gliederung \layout Standard \begin_inset LatexCommand \tableofcontents{} \end_inset \layout Standard \begin_inset Note collapsed false \layout Standard Einen Vortrag zu strukturieren ist nicht immer einfach. Die nachfolgende Struktur kann unangemessen sein. Hier ein paar Regeln, die fr diese Lsungsvorlage gelten: \layout Standard - Es sollte genau zwei oder drei Abschnitte geben (neben der % Zusammenfassung). \layout Standard - *Hchstens* drei Unterabschnitte pro Abschnitt. \layout Standard - Pro Rahmen sollte man zwischen 30s und 2min reden. Es sollte also 15 bis 30 Rahmen geben. \layout Standard - Konferenzteilnehmer wissen oft wenig von der Materie des Vortrags. Deshalb: vereinfachen! \layout Standard - In 20 Minuten ist es schon schwer genug, die Hauptbotschaft zu vermitteln. Deshalb sollten Details ausgelassen werden, selbst wenn dies zu Ungenauigkeiten oder Halbwahrheiten fhrt. \layout Standard - Falls man Details weglsst, die eigentlich wichtig fr einen Beweis/Implementa tion sind, so sagt man dies einmal nchtern. Alle werden damit glcklich sein. \end_inset \layout Section Motivation \layout Subsection Das behandelte Problem \layout BeginFrame berschriften sollten informativ sein. \newline Korrekte Gro-/Kleinschreibung beachten. \layout FrameSubtitle Untertitel sind optional. \begin_inset Note collapsed false \layout Standard - Eine berschrift fasst einen Rahmen verstndlich zusammen. Man muss sie verstehen knnen, selbst wenn man nicht den Rest des Rahmens versteht. \end_inset \layout Itemize Viel Itemize benutzen. \begin_deeper \layout Pause \end_deeper \layout Itemize Sehr kurze Stze oder Satzglieder verwenden. \begin_deeper \layout Pause \end_deeper \layout Itemize Diese Overlays werden mit dem Pause Stil erzeugt. \layout BeginFrame berschriften mssen informativ sein. \layout Itemize \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset Man kann auch Overlay-Spezifikationen benutzen, um Overlays zu erzeugen. \layout Itemize \begin_inset ERT status Collapsed \layout Standard <3-> \end_inset Hiermit knnen, Punkte in beliebiger Reihenfolge prsentiert werden. \layout Itemize \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset Dies wird als zweites gezeigt. \layout BeginFrame berschriften mssen informativ sein. \layout Block \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset \begin_inset ERT status Collapsed \layout Standard { \end_inset \begin_inset ERT status Collapsed \layout Standard } \end_inset \begin_deeper \layout Itemize Block ohne berschrift. \layout Itemize Wird auf allen Overlays angezeigt. \end_deeper \layout ExampleBlock \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset \begin_inset ERT status Collapsed \layout Standard { \end_inset Ein Beispielblocktitel \begin_inset ERT status Collapsed \layout Standard } \end_inset \begin_deeper \layout Itemize \begin_inset Formula $e^{i\pi}=-1$ \end_inset . \layout Itemize \begin_inset Formula $e^{i\pi/2}=i$ \end_inset . \end_deeper \layout Subsection Frhere Arbeiten \layout BeginFrame berschriften mssen informativ sein. \layout Example \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset Auf dem ersten Overlay. \layout Separator \layout Example \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset Auf dem zweiten Overlay. \layout Section Unsere Resultate/Beitrag \layout Subsection Hauptresultate \layout BeginFrame berschriften mssen informativ sein. \layout Theorem Auf dem ersten Overlay. \layout Pause \layout Corollary Auf dem zweiten Overlay. \layout BeginFrame berschriften mssen informativ sein. \layout ColumnsTopAligned \begin_deeper \layout Column 5cm \layout Theorem \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset In der linken Spalte. \layout Column 5cm \layout Corollary \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset In der rechten Spalte. \newline Neue Zeile. \end_deeper \layout Subsection Beweis-/Implementationsideen \layout Section* Zusammenfassung \layout BeginFrame Zusammenfassung \layout Standard \begin_inset Note collapsed false \layout Standard Die Zusammenfassung sollte sehr kurz sein. \end_inset \layout Itemize Die \color red erste Hauptbotschaft \color default des Vortrags in ein bis zwei Zeilen. \layout Itemize Die \color red zweite Hauptbotschaft \color default des Vortrags in ein bis zwei Zeilen. \layout Itemize Eventuell noch eine \color red dritte Botschaft \color default , aber nicht noch mehr. \layout Standard \begin_inset Note collapsed false \layout Standard Der folgende Ausblick ist optional. \end_inset \layout Standard \begin_inset ERT status Collapsed \layout Standard \backslash vskip0pt plus.5fill \end_inset \layout Itemize Ausblick \begin_deeper \layout Itemize Etwas, was wir noch nicht lsen konnten. \layout Itemize Nochwas, das wir noch nicht lsen konnten. \end_deeper \layout EndFrame \layout Section* \start_of_appendix \begin_inset Note collapsed false \layout Standard Alles nachfolgende ist optional und typischerweise nicht ntig. \end_inset Anhang \layout Subsection* Weiterfhrende Literatur \layout BeginFrame \begin_inset ERT status Collapsed \layout Standard [allowframebreaks] \end_inset Weiterfhrende Literatur \layout Standard \begin_inset ERT status Collapsed \layout Standard \backslash beamertemplatebookbibitems \end_inset \begin_inset Note collapsed false \layout Standard Anfangen sollte man mit bersichtswerken. \end_inset \layout Bibliography \bibitem {Autor1990} A. Autor. \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset \emph on Einfhrung in das Prsentationswese \emph default . \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset Klein-Verlag, 1990. \begin_inset ERT status Collapsed \layout Standard \backslash beamertemplatearticlebibitems \end_inset \begin_inset Note collapsed false \layout Standard Vertiefende Literatur kommt spter. Die Liste sollte kurz sein. \end_inset \layout Bibliography \bibitem {Jemand2002} S. Jemand. \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset On this and that \emph on . \emph default \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset \emph on Journal on This and That \emph default . 2(1):50--100, 2000. \layout EndFrame \the_end beamer/AUTHORS0000644000175000017500000000172612050430504012730 0ustar mohuramohuraMain development: Till Tantau Joseph Wright Vedran Mileti\'c Patch contributions: Daniel Arteaga (documentation fixes) Tim Bell (documentation fixes) Karl Berry (fix for geometry 5.0) Kanru Chen (fix for subfig) Sergiu Dotenco (fix for pdfpagelabels option) Vladimir Lomov (original fix for geometry 5.0) Heiko Oberdiek (fix for hyperref (sub)section*) Martin Quinson (add option to style subsubsection) Andreas Scherer (documentation fixes) Theme contributors: Paul Gomme (compress option for beamerthemesplit) Manuel Carro (Madrid theme) Emacs style: Thomas Baumann beamer/FILES0000644000175000017500000001762612050430504012453 0ustar mohuramohura.: AUTHORS base/ ChangeLog doc/ emacs/ examples/ FILES INSTALL README solutions/ TODO ./base: art/ beamerarticle.sty beamerbasearticle.sty beamerbaseauxtemplates.sty beamerbaseboxes.sty beamerbasecolor.sty beamerbasecompatibility.sty beamerbasedecode.sty beamerbaseexercise.sty beamerbasefont.sty beamerbaseframecomponents.sty beamerbaseframesize.sty beamerbaseframe.sty beamerbaselocalstructure.sty beamerbasemisc.sty beamerbasemodes.sty beamerbasenavigation.sty beamerbasenotes.sty beamerbaseoptions.sty beamerbaseoverlay.sty beamerbasercs.sty beamerbaserequires.sty beamerbasesection.sty beamerbasetemplates.sty beamerbasethemes.sty beamerbasetheorems.sty beamerbasetitle.sty beamerbasetoc.sty beamerbasetranslator.sty beamerbasetwoscreens.sty beamerbaseverbatim.sty beamer.cls emulation/ multimedia/ themes/ translator/ ./base/art: beamericonarticle.20.eps beamericonarticle.20.pdf beamericonarticle.eps beamericonarticle.pdf beamericonarticle.tex beamericonbook.20.eps beamericonbook.20.pdf beamericonbook.eps beamericonbook.pdf beamericonbook.tex ./base/emulation: beamerfoils.sty beamerprosper.sty beamerseminar.sty beamertexpower.sty examples/ ./base/emulation/examples: beamerexample-foils.tex beamerexample-prosper.tex beamerexample-seminar.tex beamerexample-texpower.tex ./base/multimedia: multimedia.sty multimediasymbols.sty xmpmulti.sty ./base/themes: color/ font/ inner/ outer/ theme/ ./base/themes/color: beamercolorthemealbatross.sty beamercolorthemebeaver.sty beamercolorthemebeetle.sty beamercolorthemecrane.sty beamercolorthemedefault.sty beamercolorthemedolphin.sty beamercolorthemedove.sty beamercolorthemefly.sty beamercolorthemelily.sty beamercolorthemeorchid.sty beamercolorthemerose.sty beamercolorthemeseagull.sty beamercolorthemeseahorse.sty beamercolorthemesidebartab.sty beamercolorthemestructure.sty beamercolorthemewhale.sty beamercolorthemewolverine.sty ./base/themes/font: beamerfontthemedefault.sty beamerfontthemeprofessionalfonts.sty beamerfontthemeserif.sty beamerfontthemestructurebold.sty beamerfontthemestructureitalicserif.sty beamerfontthemestructuresmallcapsserif.sty ./base/themes/inner: beamerinnerthemecircles.sty beamerinnerthemedefault.sty beamerinnerthemeinmargin.sty beamerinnerthemerectangles.sty beamerinnerthemerounded.sty ./base/themes/outer: beamerouterthemedefault.sty beamerouterthemeinfolines.sty beamerouterthememiniframes.sty beamerouterthemeshadow.sty beamerouterthemesidebar.sty beamerouterthemesmoothbars.sty beamerouterthemesmoothtree.sty beamerouterthemesplit.sty beamerouterthemetree.sty ./base/themes/theme: beamerthemeAnnArbor.sty beamerthemeAntibes.sty beamerthemeBergen.sty beamerthemeBerkeley.sty beamerthemeBerlin.sty beamerthemeBoadilla.sty beamerthemeboxes.sty beamerthemeCambridgeUS.sty beamerthemeCopenhagen.sty beamerthemeDarmstadt.sty beamerthemedefault.sty beamerthemeDresden.sty beamerthemeFrankfurt.sty beamerthemeGoettingen.sty beamerthemeHannover.sty beamerthemeIlmenau.sty beamerthemeJuanLesPins.sty beamerthemeLuebeck.sty beamerthemeMadrid.sty beamerthemeMalmoe.sty beamerthemeMarburg.sty beamerthemeMontpellier.sty beamerthemePaloAlto.sty beamerthemePittsburgh.sty beamerthemeRochester.sty beamerthemeSingapore.sty beamerthemeSzeged.sty beamerthemeWarsaw.sty compatibility/ ./base/themes/theme/compatibility: beamerthemebars.sty beamerthemeclassic.sty beamerthemecompatibility.sty beamerthemelined.sty beamerthemeplain.sty beamerthemeshadow.sty beamerthemesidebar.sty beamerthemesplit.sty beamerthemetree.sty ./base/translator: dicts/ translator-language-mappings.tex translator.sty ./base/translator/dicts: translator-basic-dictionary/ translator-bibliography-dictionary/ translator-environment-dictionary/ translator-months-dictionary/ translator-numbers-dictionary/ translator-theorem-dictionary/ ./base/translator/dicts/translator-basic-dictionary: translator-basic-dictionary-Croatian.dict translator-basic-dictionary-English.dict translator-basic-dictionary-French.dict translator-basic-dictionary-German.dict translator-basic-dictionary-Polish.dict translator-basic-dictionary-Serbian.dict ./base/translator/dicts/translator-bibliography-dictionary: translator-bibliography-dictionary-Croatian.dict translator-bibliography-dictionary-English.dict translator-bibliography-dictionary-French.dict translator-bibliography-dictionary-German.dict translator-bibliography-dictionary-Polish.dict translator-bibliography-dictionary-Serbian.dict ./base/translator/dicts/translator-environment-dictionary: translator-environment-dictionary-Croatian.dict translator-environment-dictionary-English.dict translator-environment-dictionary-French.dict translator-environment-dictionary-German.dict translator-environment-dictionary-Polish.dict translator-environment-dictionary-Serbian.dict ./base/translator/dicts/translator-months-dictionary: translator-months-dictionary-Croatian.dict translator-months-dictionary-English.dict translator-months-dictionary-French.dict translator-months-dictionary-German.dict translator-months-dictionary-Polish.dict translator-months-dictionary-Serbian.dict ./base/translator/dicts/translator-numbers-dictionary: translator-numbers-dictionary-Croatian.dict translator-numbers-dictionary-English.dict translator-numbers-dictionary-French.dict translator-numbers-dictionary-German.dict translator-numbers-dictionary-Polish.dict translator-numbers-dictionary-Serbian.dict ./base/translator/dicts/translator-theorem-dictionary: translator-theorem-dictionary-Croatian.dict translator-theorem-dictionary-English.dict translator-theorem-dictionary-French.dict translator-theorem-dictionary-German.dict translator-theorem-dictionary-Polish.dict translator-theorem-dictionary-Serbian.dict ./doc: beamercolorthemeexample.tex beamerfontthemeexample.tex beamerinnerthemeexample.tex beamerlogo.pdf beamerouterthemeexample.tex beamerthemeexamplebase.tex beamerthemeexample.tex beamerug-animations.tex beamerug-color.tex beamerug-compatibility.tex beamerug-elements.tex beamerug-emulation.tex beamerug-fonts.tex beamerug-frames.tex beamerug-globalstructure.tex beamerug-graphics.tex beamerug-guidelines.tex beamerug-installation.tex beamerug-interaction.tex beamerug-introduction.tex beamerug-license.tex beamerug-localstructure.tex beamerug-macros.tex beamerug-nonpresentation.tex beamerug-notes.tex beamerug-overlays.tex beamerug-solutions.tex beamerug-themes.tex beamerug-translator.tex beamerug-transparencies.tex beamerug-tricks.tex beamerug-tutorial.tex beamerug-twoscreens.tex beamerug-workflow.tex beameruserguide.pdf beameruserguide.tex licenses/ Makefile themeexamples/ ./doc/licenses: LICENSE ./doc/themeexamples: beamerthemeexample.tex beamerthememakeexamples.sh ./emacs: beamer.el ./examples: a-conference-talk/ a-lecture/ beamerexample-conference-talk.pdf beamerexample-lecture-beamer-version.pdf beamerexample-lecture-print-version.pdf lyx-based-presentation/ Makefile ./examples/a-conference-talk: beamerexample-conference-talk.tex ./examples/a-lecture: beamerexample-lecture-beamer-version.tex beamerexample-lecture-body.tex beamerexample-lecture-logo.pdf beamerexample-lecture-pic1.jpg beamerexample-lecture-pic2.jpg beamerexample-lecture-pic3.jpg beamerexample-lecture-pic4.jpg beamerexample-lecture-pic5.jpg beamerexample-lecture-pic6.jpg beamerexample-lecture-print-version.tex beamerexample-lecture-style.tex ./examples/lyx-based-presentation: beamerexample-lyx.lyx ./solutions: conference-talks/ generic-talks/ short-talks/ ./solutions/conference-talks: conference-ornate-20min.de.lyx conference-ornate-20min.de.tex conference-ornate-20min.en.lyx conference-ornate-20min.en.tex conference-ornate-20min.fr.tex ./solutions/generic-talks: generic-ornate-15min-45min.de.lyx generic-ornate-15min-45min.de.tex generic-ornate-15min-45min.en.lyx generic-ornate-15min-45min.en.tex generic-ornate-15min-45min.fr.tex ./solutions/short-talks: speaker_introduction-ornate-2min.de.lyx speaker_introduction-ornate-2min.de.tex speaker_introduction-ornate-2min.en.lyx speaker_introduction-ornate-2min.en.tex speaker_introduction-ornate-2min.fr.tex beamer/ChangeLog0000644000175000017500000036040512050430504013434 0ustar mohuramohurachangeset: 569:ddfba79dac19 tag: tip user: Joseph Wright date: Tue Nov 13 20:36:32 2012 +0000 summary: Add a safety-\relax between overlay spec and content of \alert, etc. changeset: 568:e1339c0f83a7 user: Joseph Wright date: Sun Nov 11 22:30:24 2012 +0000 summary: Add example for incremental overylays (fixes issue #137) changeset: 567:0056eef6f17f user: Joseph Wright date: Sun Nov 11 21:00:02 2012 +0000 summary: Extend \includeonlylecture to acept a comma-list (fixes issue #37) changeset: 566:f4ccf0a285e3 user: Joseph Wright date: Sun Nov 11 20:35:24 2012 +0000 summary: Document that overlay commands are fragile (fixes issue #222) changeset: 565:c1fc5075f54a user: Joseph Wright date: Sun Nov 11 20:21:39 2012 +0000 summary: Add monarca color teme (fixes issue #223) changeset: 564:6afbc49b1109 user: Joseph Wright date: Sun Nov 11 20:09:38 2012 +0000 summary: Handle item labels in action situations (fixes issue #224) changeset: 563:34641e5d32e8 user: Joseph Wright date: Mon Nov 05 22:13:57 2012 +0000 summary: Update ChangeLog changeset: 562:097671e65ade user: Joseph Wright date: Sun Oct 28 15:23:56 2012 +0000 summary: Added tag version-3-23 for changeset c011175e662f changeset: 561:c011175e662f tag: version-3-23 user: Joseph Wright date: Sun Oct 28 15:23:45 2012 +0000 summary: Step version changeset: 560:51a8c72084af user: Joseph Wright date: Tue Oct 16 21:17:59 2012 +0100 summary: Increase headline spacing (fixes issue #221) changeset: 559:24853e6b98cf user: Joseph Wright date: Mon Oct 15 20:48:15 2012 +0100 summary: Allow amssymb to be skipped (fixes issue #219) changeset: 558:8400aa840c30 user: Joseph Wright date: Tue Oct 02 07:17:10 2012 +0100 summary: Increase depth of header space in infolines theme (fixes issue #173) changeset: 557:5ed0f4010e8a user: Joseph Wright date: Tue Oct 02 07:08:21 2012 +0100 summary: Show subsections for current section in TOC (fixes issue #220) changeset: 556:3048019c8248 user: Joseph Wright date: Wed Sep 19 20:59:23 2012 +0100 summary: Added tag version-3-22 for changeset 9cdb60d8ebed changeset: 555:9cdb60d8ebed tag: version-3-22 user: Joseph Wright date: Wed Sep 19 20:56:07 2012 +0100 summary: Step version changeset: 554:733629cd0c6c user: Joseph Wright date: Wed Sep 19 20:55:31 2012 +0100 summary: For the moment, don't load sansmathaccent automatically changeset: 553:69886c9088ce user: Joseph Wright date: Wed Sep 19 18:53:32 2012 +0100 summary: Typo in manual changeset: 552:a0b55199b226 user: Joseph Wright date: Tue Sep 18 21:19:03 2012 +0100 summary: Update theme Makefile (fixes issue #217) changeset: 551:dcd846607320 user: Joseph Wright date: Thu Sep 13 21:41:01 2012 +0100 summary: Restore frame width for footnote box (fixes issue #216) changeset: 550:208d2af791ba user: Rafael Luque date: Wed Sep 12 17:53:35 2012 +0200 summary: Added Spanish dictionaries. changeset: 549:c77c33993a9c user: Joseph Wright date: Fri Aug 31 08:49:51 2012 +0100 summary: Added tag version-3-21 for changeset efcce0278bdb changeset: 548:efcce0278bdb tag: version-3-21 user: Joseph Wright date: Fri Aug 31 08:46:27 2012 +0100 summary: Step version changeset: 547:dfdb135076b3 user: Joseph Wright date: Thu Aug 30 17:03:43 2012 +0100 summary: Detect blank line read as \par when first line of verbatim frame changeset: 546:73834bc85e0c user: Joseph Wright date: Wed Aug 29 20:05:49 2012 +0100 summary: Load accent-kerned CMSS directly (fixes issue #213) changeset: 545:97e5b36b376b user: Joseph Wright date: Sun Aug 12 17:59:13 2012 +0100 summary: Missing "show" in docs (fixes issue #211) changeset: 544:019ce036aea7 user: Joseph Wright date: Mon Jul 02 09:26:41 2012 +0100 summary: Use a special internal marker for unknown translations (fixes issue #210) changeset: 543:bea5adcbd220 user: Joseph Wright date: Fri Jun 01 21:16:48 2012 +0100 summary: Update links for bug reports, etc. changeset: 542:d9fe040e2f0c user: Joseph Wright date: Fri Jun 01 08:29:16 2012 +0100 summary: Added tag version-3-20 for changeset 352157baec3a changeset: 541:352157baec3a tag: version-3-20 user: Joseph Wright date: Fri Jun 01 08:22:53 2012 +0100 summary: Step version changeset: 540:5fc3b3dbfeba user: Joseph Wright date: Thu May 31 13:09:20 2012 +0100 summary: Restore LaTeX \frame defintion inside frames in article mode changeset: 539:22ff49def670 user: Joseph Wright date: Wed May 30 22:50:05 2012 +0100 summary: Save/restore mode with sections when gobbling (fixes issue #199) changeset: 538:cbdb60c45607 user: Joseph Wright date: Wed May 30 22:08:49 2012 +0100 summary: Use a working test for short titles (fixes issue #195) changeset: 537:bf7862388e78 user: Joseph Wright date: Wed May 30 21:34:48 2012 +0100 summary: Add Nynorsk patch (fixes issue #194) changeset: 536:5ff5e8ed7c0e user: Joseph Wright date: Fri May 25 10:30:46 2012 +0100 summary: Further updates to biblatex colour code to avoid extra spaces in some cases changeset: 535:2583c6a82de3 user: Joseph Wright date: Sun May 13 14:54:30 2012 +0100 summary: Added tag version-3-19 for changeset dbbb17cd1fba changeset: 534:dbbb17cd1fba tag: version-3-19 user: Joseph Wright date: Sun May 13 14:54:24 2012 +0100 summary: Step version changeset: 533:25b40c337383 parent: 531:3abe762d3a12 parent: 532:56972908a390 user: Joseph Wright date: Sun May 13 14:51:01 2012 +0100 summary: Back out use of real transparency of shadows changeset: 532:56972908a390 parent: 529:26d0d93c02e9 user: Joseph Wright date: Sun May 13 14:45:08 2012 +0100 summary: Backout changeset 26d0d93c02e90c677309ade4feeeaf69c8bcc476 changeset: 531:3abe762d3a12 user: Joseph Wright date: Thu May 10 16:32:14 2012 +0100 summary: Added tag version-3-18 for changeset b3cd3cd02c66 changeset: 530:b3cd3cd02c66 tag: version-3-18 user: Joseph Wright date: Thu May 10 16:28:47 2012 +0100 summary: Step version changeset: 529:26d0d93c02e9 user: Joseph Wright date: Thu May 10 16:27:30 2012 +0100 summary: Use real transparency for box shadows (fixes issue #161) changeset: 528:a0b4f9f91ee9 user: Joseph Wright date: Thu May 10 16:09:27 2012 +0100 summary: Load sansmathaccent package if available (fixes issue #97) changeset: 527:d8e49ee79bcf user: Joseph Wright date: Wed May 02 14:45:56 2012 +0100 summary: Ensure movie autostart works with pdfTeX (fixes issue #188) changeset: 526:67c48b3b652d user: Joseph Wright date: Tue May 01 08:25:30 2012 +0100 summary: "online" is better than "internet" changeset: 525:158c924f2f2d user: Joseph Wright date: Tue May 01 07:17:12 2012 +0100 summary: Add 'internet' bibliography template (fixes issue #190) changeset: 524:cc6557182d97 user: Vedran Miletić date: Sun Apr 15 16:37:19 2012 +0200 summary: Remove manual RCS info, it's meant to be maintained by hg kwexpand. changeset: 523:271494ece922 user: Joseph Wright date: Sun Apr 15 14:07:04 2012 +0100 summary: Added tag version-3-17 for changeset ec47c34b914b changeset: 522:ec47c34b914b tag: version-3-17 user: Joseph Wright date: Sun Apr 15 14:03:56 2012 +0100 summary: Step version changeset: 521:eb80bc2d0e53 user: Juergen Spitzmueller date: Sun Apr 15 13:03:09 2012 +0200 summary: Fix for issue #180: Add an option (to beamerarticle only) to disable auto-loeading of amssymb package. changeset: 520:42a0f21a412d user: Joseph Wright date: Tue Apr 03 06:51:09 2012 +0100 summary: Draw 'real' content for empty linkes with XeTeX (fixes issue #136) changeset: 519:45744d9ae88b user: Joseph Wright date: Tue Apr 03 06:30:29 2012 +0100 summary: Check for star argument to \ref fixes issue #186) changeset: 518:e6a26ac54db6 user: Joseph Wright date: Sun Apr 01 10:39:38 2012 +0100 summary: Remove spurious "?" (fixes issue #185) changeset: 517:aab6be3b9748 user: Joseph Wright date: Thu Mar 29 22:31:44 2012 +0100 summary: Added tag version-3-16 for changeset d945f8a06d90 changeset: 516:d945f8a06d90 tag: version-3-16 user: Joseph Wright date: Thu Mar 29 22:27:46 2012 +0100 summary: Step version changeset: 515:d2ec5e193e97 user: Joseph Wright date: Thu Mar 29 22:27:08 2012 +0100 summary: Some files missing from CTAN build (fixes issue #184) changeset: 514:38dfbd395d7c user: Joseph Wright date: Sun Mar 25 14:15:29 2012 +0100 summary: Typos/old information (fixes issue #182) changeset: 513:e172a8ead951 user: Joseph Wright date: Tue Mar 13 08:04:20 2012 +0000 summary: Add a template for caption label separator (fixes issue #178) changeset: 512:96ee3b332f84 parent: 510:45882a117777 parent: 511:c7c9e294081d user: Joseph Wright date: Sun Mar 11 08:21:04 2012 +0000 summary: Merge in better patch fr biblatex support changeset: 511:c7c9e294081d parent: 501:0db9e813368d user: Alan Munn date: Sat Mar 10 21:26:52 2012 -0500 summary: Added corrections to bibliography item handling based on discussion here: http://tex.stackexchange.com/q/47540/2693. Code provided by Audrey. changeset: 510:45882a117777 user: Joseph Wright date: Sat Mar 10 17:52:33 2012 +0000 summary: Added tag version-3-15 for changeset 5734227eeb21 changeset: 509:5734227eeb21 tag: version-3-15 user: Joseph Wright date: Sat Mar 10 17:52:18 2012 +0000 summary: Step version changeset: 508:bd58fb83d145 user: Joseph Wright date: Sat Mar 10 17:47:59 2012 +0000 summary: Unneeded punctuation removed when working with biblatex changeset: 507:0064b7fe9b39 user: Joseph Wright date: Sat Mar 10 08:26:10 2012 +0000 summary: *nix permission issues changeset: 506:e20dc5d090df user: Joseph Wright date: Thu Mar 08 08:34:09 2012 +0000 summary: Correct for short section titles with long nav. symbol lists (fixes issue #80) changeset: 505:9f094699ce15 user: Joseph Wright date: Wed Mar 07 21:32:27 2012 +0000 summary: Don't hard-code width of footnotes (fixes issue #95) changeset: 504:26436727c287 user: Joseph Wright date: Wed Mar 07 20:13:15 2012 +0000 summary: Added tag version-3-14 for changeset 2c18709f48d0 changeset: 503:2c18709f48d0 tag: version-3-14 user: Joseph Wright date: Wed Mar 07 20:13:09 2012 +0000 summary: Step version changeset: 502:994f02b27018 user: Joseph Wright date: Wed Mar 07 20:12:59 2012 +0000 summary: Added tag version-3-14 for changeset 0db9e813368d changeset: 501:0db9e813368d user: Alan Munn date: Wed Mar 07 14:57:56 2012 -0500 summary: Added documentation for spruce colortheme. Removed 'the' from MIT (English fixup) changeset: 500:16d5b008f009 user: Alan Munn date: Wed Mar 07 14:48:38 2012 -0500 summary: Added documentation of the EastLansing theme. Removed 'the' from MIT. (English fixup) changeset: 499:01feb171607c user: Alan Munn date: Wed Mar 07 14:47:36 2012 -0500 summary: Added EastLansing theme and spruce colortheme to the makefile. changeset: 498:adfc58636b1f user: Alan Munn date: Wed Mar 07 13:35:25 2012 -0500 summary: Added one new colour theme and one new main theme, based on Michigan State University colours, but generic enough for general use. changeset: 497:138681b92320 user: Joseph Wright date: Tue Feb 28 20:40:40 2012 +0000 summary: Document subsubsectionstyle (fixes issue #51) changeset: 496:2ff5461be705 user: Joseph Wright date: Fri Feb 24 19:44:11 2012 +0000 summary: Allow for starred form of \includegraphics (fixes issue #152) changeset: 495:546f0403b441 user: Joseph Wright date: Fri Feb 24 19:35:43 2012 +0000 summary: Add examples to Makefile: changeset: 494:71c3e73b2383 user: Joseph Wright date: Fri Feb 24 19:27:16 2012 +0000 summary: Remove setting of paper size changeset: 493:406bcaf3a3c7 user: Joseph Wright date: Thu Feb 23 13:55:34 2012 +0000 summary: Do not use \bfseries in math mode! (fixes issue #101) changeset: 492:06d121c392f9 user: Joseph Wright date: Thu Feb 23 07:11:25 2012 +0000 summary: Document behaviour of skips in beamercolorbox (fixes issue #1) changeset: 491:24107e883a1d user: Joseph Wright date: Wed Feb 22 20:52:22 2012 +0000 summary: Added tag version-3-13 for changeset 46e1bc9c9b76 changeset: 490:46e1bc9c9b76 tag: version-3-13 user: Joseph Wright date: Wed Feb 22 20:52:13 2012 +0000 summary: Step version changeset: 489:16a7aed8b69c user: Joseph Wright date: Wed Feb 22 20:50:00 2012 +0000 summary: Add MakeIndex to doc run (fixes issue #81) changeset: 488:9ec014de75d7 user: Joseph Wright date: Wed Feb 22 20:39:41 2012 +0000 summary: A basic Makefile changeset: 487:2ae76965ffee user: Joseph Wright date: Wed Feb 22 19:45:37 2012 +0000 summary: Define \newblock in all cases (fixes issue #166) changeset: 486:1e3e174835fb user: Joseph Wright date: Wed Feb 22 13:06:49 2012 +0000 summary: Add \transreplace (fixes issue #164) changeset: 485:f8ae4b309404 user: Joseph Wright date: Wed Feb 22 11:18:26 2012 +0000 summary: Document need to set "subsection = false" if there are no subsections with the miniframes outer theme changeset: 484:f102fc5026b5 user: Joseph Wright date: Wed Feb 22 08:51:00 2012 +0000 summary: Shade \subsubsections in TOC (fixes issue #94) changeset: 483:9a2581f9efb6 user: Joseph Wright date: Wed Feb 22 08:31:04 2012 +0000 summary: Treat short name of \subsubsection in same way as for \subsection and \section changeset: 482:4a510a8c7341 user: Vedran Miletić date: Sat Oct 22 14:18:43 2011 +0200 summary: Make framesubtitle appear in nicer way when using article mode. changeset: 481:d0f82b1bf4b7 user: Joseph Wright date: Mon Oct 17 12:58:10 2011 +0100 summary: New Greek translator dictionaries: thanks to Antonis Tsolomitis changeset: 480:ef3a8ff9db6a user: Joseph Wright date: Tue Oct 04 21:49:41 2011 +0100 summary: Add Brazilian dictionaries changeset: 479:17e820568435 user: Joseph Wright date: Sat Sep 24 14:18:04 2011 +0100 summary: Alternative method to restore \Hy@writebookmarks changeset: 478:041ad6efd1d5 user: Joseph Wright date: Wed Sep 21 20:43:40 2011 +0100 summary: Added tag version-3-12 for changeset 19e4c3c6fe54 changeset: 477:19e4c3c6fe54 tag: version-3-12 user: Joseph Wright date: Wed Sep 21 20:42:25 2011 +0100 summary: Another version number to step changeset: 476:42a2c9debdc3 user: Joseph Wright date: Wed Sep 21 20:30:30 2011 +0100 summary: Step version number changeset: 475:bf4ebb9e94c1 user: Joseph Wright date: Wed Sep 21 20:29:57 2011 +0100 summary: The order of the branches is wrong after the change to using \ifpdf changeset: 474:7e14406098dd user: Joseph Wright date: Tue Sep 13 19:12:51 2011 +0100 summary: Update copyrights changeset: 473:f912af4cb1b6 user: Joseph Wright date: Tue Sep 13 19:07:54 2011 +0100 summary: Typo (fixes issue #154) changeset: 472:f5b5e69bd3df user: Joseph Wright date: Tue Sep 13 19:07:29 2011 +0100 summary: Typo (fixes issue #153) changeset: 471:b202c2d6d8e7 user: Joseph Wright date: Mon Sep 12 20:24:02 2011 +0100 summary: Added tag version-3-11 for changeset 70f9d8411e54 changeset: 470:70f9d8411e54 tag: version-3-11 user: Joseph Wright date: Mon Sep 12 19:58:34 2011 +0100 summary: Update copyright statements where appropriate changeset: 469:fcbcf9b6978d user: Joseph Wright date: Mon Sep 12 19:54:31 2011 +0100 summary: Step version number changeset: 468:584198e9353f user: Joseph Wright date: Sun Sep 11 19:56:31 2011 +0100 summary: Fix Euclid's proof :-) (Fixes issue #96) changeset: 467:c8fca43b9eab user: Joseph Wright date: Sun Sep 11 09:24:51 2011 +0100 summary: Allow for single-frame verbatim when label is given (fixes issue #110) changeset: 466:6f3c10d5ac99 user: Joseph Wright date: Sun Sep 11 08:16:30 2011 +0100 summary: Load ifpdf and use it for PDF mode detection, rather than fiddling changeset: 465:1a3bb024d312 user: Joseph Wright date: Sun Sep 11 08:08:28 2011 +0100 summary: Use correct lables \AtBegin* (fixes issue #118) changeset: 464:e0c5bfea8593 parent: 462:5127b79bd92d parent: 463:20e2c886720f user: Joseph Wright date: Sun Sep 11 07:29:23 2011 +0100 summary: Merge Kjell Magne Fauske's Norwegan translations in beamer core changeset: 463:20e2c886720f parent: 443:306d55f66f5b user: Kjell Magne Fauske date: Sun Jul 25 12:42:47 2010 +0200 summary: Added dictionary files copied from the obsolete translator-norsk repository changeset: 462:5127b79bd92d user: Joseph Wright date: Sat Sep 10 23:39:11 2011 +0100 summary: Group footnote colour (fixes issue #127) changeset: 461:c68b4f3960f8 user: Joseph Wright date: Sat Sep 10 23:28:25 2011 +0100 summary: Correctly step counter for subsections (fixes issue #117) changeset: 460:1d53da7ebc8b user: Joseph Wright date: Thu Mar 17 21:13:40 2011 +0000 summary: Remove internal macro when using \renewcommand<> (fixes issue #119) changeset: 459:86ed42e273fa user: Joseph Wright date: Tue Jan 11 08:36:20 2011 +0000 summary: Ignore babel's French-style footnotes (~fixes #95) changeset: 458:6db5df086331 user: Joseph Wright date: Tue Jan 11 08:21:15 2011 +0000 summary: Sanitize first token of frame when reading verbatim (fixes #93) changeset: 457:f39336aafb3c user: Vedran Miletić date: Tue Oct 26 20:09:31 2010 +0200 summary: Add kpfonts to list of professionalfonts, fixes #85 Wrong interaction with kpfonts changeset: 456:d95ff3f330c8 parent: 455:f690789b5247 parent: 454:f0446ed0b6ae user: Vedran Miletić date: Tue Oct 26 19:39:03 2010 +0200 summary: Merge. changeset: 455:f690789b5247 parent: 453:9224c5f3ce70 user: Vedran Miletić date: Tue Oct 26 19:38:13 2010 +0200 summary: Fix issue #86 Little typo p.102 in beamer user guide (version 3.10). changeset: 454:f0446ed0b6ae user: Joseph Wright date: Tue Sep 21 18:49:40 2010 +0100 summary: Ensure that \titlepage exists before renewing (fixes #79) changeset: 453:9224c5f3ce70 user: Joseph Wright date: Sun Sep 19 21:49:53 2010 +0100 summary: Hmm, accidently removed some biblatex stuff in that last committ: restored changeset: 452:590a94c2bb06 user: Joseph Wright date: Sun Sep 19 21:46:35 2010 +0100 summary: Use enumerate package in article mode changeset: 451:8bf396c8c4d9 user: Joseph Wright date: Thu Sep 16 21:21:07 2010 +0100 summary: Oops, some code from earlier testing left over: removed changeset: 450:06980b083c2f user: Joseph Wright date: Thu Sep 16 20:56:26 2010 +0100 summary: Some basic support for biblatex icons changeset: 449:df29f9236be1 user: Vedran Miletić date: Sun Aug 29 16:18:21 2010 +0200 summary: Fix #61 bibliography entry journal -> location. changeset: 448:f991535bc60d user: Vedran Miletić date: Sun Aug 29 15:56:19 2010 +0200 summary: Add Sergiu Dotenco to list of patch contributors. changeset: 447:e07e85b4cd4a user: Vedran Miletić date: Sun Aug 29 15:23:56 2010 +0200 summary: Define secname, subsecname and subsubsecname early (even before {,sub,subsub}section is put) so user-defined commands that include them work. changeset: 446:a5daeeda0058 user: Vedran Miletić date: Sun Aug 29 15:06:07 2010 +0200 summary: "beamer didn't honor hyperref's pdfpagelabels option" patch by Sergiu Dotenco. changeset: 445:c21b5df19f9e user: Vedran Miletić date: Sat Aug 07 15:06:21 2010 +0200 summary: Fix #54 Wrong name of a package in an example at page 18. changeset: 444:5ac9c9444ac7 user: Vedran Miletić date: Sat Aug 07 15:04:58 2010 +0200 summary: Fix #53. Thanks for catching that, Stanislaw Polak. changeset: 443:306d55f66f5b user: Vedran Miletić date: Mon Jul 12 19:49:46 2010 +0200 summary: Added tag version-3-10 for changeset 213fd269d3ef changeset: 442:213fd269d3ef tag: version-3-10 user: Vedran Miletić date: Mon Jul 12 19:39:08 2010 +0200 summary: Update ChangeLog. changeset: 441:208bcd589060 tag: tip user: Vedran Miletić date: Mon Jul 12 19:35:36 2010 +0200 files: FILES description: Reflect new file and folder structure in FILES. changeset: 440:9e7fa0505fbf user: Vedran Miletić date: Mon Jul 12 19:33:32 2010 +0200 files: examples/Makefile description: Fix Makefile for examples. changeset: 439:ca2315a97e66 user: Vedran Miletić date: Mon Jul 12 19:10:04 2010 +0200 files: doc/beamerug-animations.tex doc/beamerug-compatibility.tex doc/beamerug-elements.tex doc/beamerug-emulation.tex doc/beamerug-fonts.tex doc/beamerug-frames.tex doc/beamerug-globalstructure.tex doc/beamerug-guidelines.tex doc/beamerug-installation.tex doc/beamerug-interaction.tex doc/beamerug-introduction.tex doc/beamerug-license.tex doc/beamerug-localstructure.tex doc/beamerug-nonpresentation.tex doc/beamerug-notes.tex doc/beamerug-overlays.tex doc/beamerug-themes.tex doc/beamerug-transparancies.tex doc/beamerug-transparencies.tex doc/beamerug-tricks.tex doc/beamerug-tutorial.tex doc/beamerug-twoscreens.tex doc/beameruserguide.tex description: Fixed issues #25, #39, #41, #43, #45. Thanks a lot to Ulrich for going thru the guide and finding errors. changeset: 438:09e82992d9b1 user: Vedran Miletić date: Mon Jul 12 17:00:09 2010 +0200 files: base/beamerbaseframecomponents.sty description: Fix issue #31 \footnote[frame]{} wraps text at column width. Perhaps not the cleanest one, but it works :-) changeset: 437:6648c3177e4e user: Vedran Miletić date: Mon Jul 12 16:35:05 2010 +0200 files: base/beamerbasecompatibility.sty description: Fixed a typo in horizontal shading option. Good catch, hakante. changeset: 436:445340293dde user: Vedran Miletić date: Sat Jul 10 14:51:34 2010 +0200 files: base/themes/outer/beamerouterthemeinfolines.sty description: Fix #20 Latex Beamer Problem with footnote author(). changeset: 435:6baa2d92e6f1 user: Vedran Miletić date: Sun Jun 27 13:07:36 2010 +0200 files: base/beamerbaseframesize.sty base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Croatian.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-English.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-French.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-German.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Polish.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Serbian.dict description: Add support for translating frame continuation string and translate it. Did my best at Polish and French translation. changeset: 434:8520d1e04ba2 user: Vedran Miletić date: Thu Jun 24 11:21:11 2010 +0200 files: doc/Makefile description: Fix doc Makefile to match new folder structure. changeset: 433:ab4f937d5b77 user: Vedran Miletić date: Thu Jun 24 10:37:23 2010 +0200 files: doc/beamerug-globalstructure.tex doc/beamerug-translator.tex description: Describe sectionpage and subsectionpage in manual. changeset: 432:a6b1a8434d30 user: Vedran Miletić date: Mon Jun 21 11:34:49 2010 +0200 files: base/beamer.cls description: Patch from Sergiu Dotenco which I forgot to apply (thanks, Axel Berger). changeset: 431:15b00f5ea478 user: Vedran Miletić date: Thu Jun 17 13:06:20 2010 +0200 files: base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Croatian.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Serbian.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Croatian.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Serbian.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Croatian.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Croatian.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Serbian.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Croatian.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Serbian.dict description: Fixes for Croatian and Serbian translation. changeset: 430:d9eb22128ac3 user: Vedran Miletić date: Thu Jun 17 12:41:43 2010 +0200 files: base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Croatian.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Polish.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Serbian.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Polish.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Serbian.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Croatian.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Polish.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Serbian.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Croatian.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Polish.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Serbian.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Croatian.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Polish.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Serbian.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Croatian.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Polish.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Serbian.dict description: Add Polish dictionary for translator. Add "Translated by" to Serbian and Croatian. changeset: 429:e0d9401bb743 user: Vedran Miletić date: Thu Jun 17 12:06:51 2010 +0200 files: base/beamerbasesection.sty description: Add lastsection per issue #38. changeset: 428:d421949afaa3 user: Vedran Miletić date: Thu Jun 17 11:49:24 2010 +0200 files: doc/beamerug-installation.tex doc/beamerug-themes.tex description: Fix issue #39 typing errors in Beamer User Guide. changeset: 427:14743c450e2c user: Vedran Miletić date: Thu Jun 17 11:25:56 2010 +0200 files: base/art/beamericonarticle.tex base/art/beamericonbook.tex base/emulation/beamerprosper.sty base/emulation/beamertexpower.sty base/multimedia/multimedia.sty base/multimedia/xmpmulti.sty base/translator/translator.sty doc/beamerug-color.tex doc/beamerug-graphics.tex doc/beamerug-license.tex doc/beamerug-macros.tex doc/beamerug-translator.tex doc/licenses/LICENSE doc/themeexamples/beamerthememakeexamples.sh description: Remove some trailing whitespace. changeset: 426:d02a7cf4d8ae user: Vedran Miletić date: Thu Jun 17 11:11:41 2010 +0200 files: base/emulation/beamerfoils.sty base/emulation/beamerprosper.sty base/emulation/beamerseminar.sty base/emulation/beamertexpower.sty base/emulation/examples/beamerexample-foils.tex base/emulation/examples/beamerexample-prosper.tex base/emulation/examples/beamerexample-seminar.tex base/emulation/examples/beamerexample-texpower.tex base/multimedia/multimedia.sty base/multimedia/multimediasymbols.sty base/multimedia/xmpmulti.sty base/themes/color/beamercolorthemealbatross.sty base/themes/color/beamercolorthemebeaver.sty base/themes/color/beamercolorthemebeetle.sty base/themes/color/beamercolorthemecrane.sty base/themes/color/beamercolorthemedefault.sty base/themes/color/beamercolorthemedolphin.sty base/themes/color/beamercolorthemedove.sty base/themes/color/beamercolorthemefly.sty base/themes/color/beamercolorthemelily.sty base/themes/color/beamercolorthemeorchid.sty base/themes/color/beamercolorthemerose.sty base/themes/color/beamercolorthemeseagull.sty base/themes/color/beamercolorthemeseahorse.sty base/themes/color/beamercolorthemesidebartab.sty base/themes/color/beamercolorthemestructure.sty base/themes/color/beamercolorthemewhale.sty base/themes/color/beamercolorthemewolverine.sty base/themes/font/beamerfontthemedefault.sty base/themes/font/beamerfontthemeprofessionalfonts.sty base/themes/font/beamerfontthemeserif.sty base/themes/font/beamerfontthemestructurebold.sty base/themes/font/beamerfontthemestructureitalicserif.sty base/themes/font/beamerfontthemestructuresmallcapsserif.sty base/themes/inner/beamerinnerthemecircles.sty base/themes/inner/beamerinnerthemedefault.sty base/themes/inner/beamerinnerthemeinmargin.sty base/themes/inner/beamerinnerthemerectangles.sty base/themes/inner/beamerinnerthemerounded.sty base/themes/outer/beamerouterthemedefault.sty base/themes/outer/beamerouterthemeinfolines.sty base/themes/outer/beamerouterthememiniframes.sty base/themes/outer/beamerouterthemeshadow.sty base/themes/outer/beamerouterthemesidebar.sty base/themes/outer/beamerouterthemesmoothbars.sty base/themes/outer/beamerouterthemesmoothtree.sty base/themes/outer/beamerouterthemesplit.sty base/themes/outer/beamerouterthemetree.sty base/themes/theme/beamerthemeAnnArbor.sty base/themes/theme/beamerthemeAntibes.sty base/themes/theme/beamerthemeBergen.sty base/themes/theme/beamerthemeBerkeley.sty base/themes/theme/beamerthemeBerlin.sty base/themes/theme/beamerthemeBoadilla.sty base/themes/theme/beamerthemeCambridgeUS.sty base/themes/theme/beamerthemeCopenhagen.sty base/themes/theme/beamerthemeDarmstadt.sty base/themes/theme/beamerthemeDresden.sty base/themes/theme/beamerthemeFrankfurt.sty base/themes/theme/beamerthemeGoettingen.sty base/themes/theme/beamerthemeHannover.sty base/themes/theme/beamerthemeIlmenau.sty base/themes/theme/beamerthemeJuanLesPins.sty base/themes/theme/beamerthemeLuebeck.sty base/themes/theme/beamerthemeMadrid.sty base/themes/theme/beamerthemeMalmoe.sty base/themes/theme/beamerthemeMarburg.sty base/themes/theme/beamerthemeMontpellier.sty base/themes/theme/beamerthemePaloAlto.sty base/themes/theme/beamerthemePittsburgh.sty base/themes/theme/beamerthemeRochester.sty base/themes/theme/beamerthemeSingapore.sty base/themes/theme/beamerthemeSzeged.sty base/themes/theme/beamerthemeWarsaw.sty base/themes/theme/beamerthemeboxes.sty base/themes/theme/beamerthemedefault.sty base/themes/theme/compatibility/beamerthemebars.sty base/themes/theme/compatibility/beamerthemeclassic.sty base/themes/theme/compatibility/beamerthemecompatibility.sty base/themes/theme/compatibility/beamerthemelined.sty base/themes/theme/compatibility/beamerthemeplain.sty base/themes/theme/compatibility/beamerthemeshadow.sty base/themes/theme/compatibility/beamerthemesidebar.sty base/themes/theme/compatibility/beamerthemesplit.sty base/themes/theme/compatibility/beamerthemetree.sty base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Croatian.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-English.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-French.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-German.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Serbian.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Croatian.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-English.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-French.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-German.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Serbian.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Croatian.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-English.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-French.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-German.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Serbian.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Croatian.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-English.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-French.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-German.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Serbian.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Croatian.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-English.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-French.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-German.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Serbian.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Croatian.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-English.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-French.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-German.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Serbian.dict base/translator/translator-language-mappings.tex base/translator/translator.sty emulation/beamerfoils.sty emulation/beamerprosper.sty emulation/beamerseminar.sty emulation/beamertexpower.sty emulation/examples/beamerexample-foils.tex emulation/examples/beamerexample-prosper.tex emulation/examples/beamerexample-seminar.tex emulation/examples/beamerexample-texpower.tex extensions/multimedia/multimedia.sty extensions/multimedia/multimediasymbols.sty extensions/multimedia/xmpmulti.sty extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Croatian.dict extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-English.dict extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-French.dict extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-German.dict extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Serbian.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Croatian.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-English.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-French.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-German.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Serbian.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Croatian.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-English.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-French.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-German.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Serbian.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-Croatian.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-English.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-French.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-German.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-Serbian.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Croatian.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-English.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-French.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-German.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Serbian.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Croatian.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-English.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-French.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-German.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Serbian.dict extensions/translator/translator-language-mappings.tex extensions/translator/translator.sty themes/color/beamercolorthemealbatross.sty themes/color/beamercolorthemebeaver.sty themes/color/beamercolorthemebeetle.sty themes/color/beamercolorthemecrane.sty themes/color/beamercolorthemedefault.sty themes/color/beamercolorthemedolphin.sty themes/color/beamercolorthemedove.sty themes/color/beamercolorthemefly.sty themes/color/beamercolorthemelily.sty themes/color/beamercolorthemeorchid.sty themes/color/beamercolorthemerose.sty themes/color/beamercolorthemeseagull.sty themes/color/beamercolorthemeseahorse.sty themes/color/beamercolorthemesidebartab.sty themes/color/beamercolorthemestructure.sty themes/color/beamercolorthemewhale.sty themes/color/beamercolorthemewolverine.sty themes/font/beamerfontthemedefault.sty themes/font/beamerfontthemeprofessionalfonts.sty themes/font/beamerfontthemeserif.sty themes/font/beamerfontthemestructurebold.sty themes/font/beamerfontthemestructureitalicserif.sty themes/font/beamerfontthemestructuresmallcapsserif.sty themes/inner/beamerinnerthemecircles.sty themes/inner/beamerinnerthemedefault.sty themes/inner/beamerinnerthemeinmargin.sty themes/inner/beamerinnerthemerectangles.sty themes/inner/beamerinnerthemerounded.sty themes/outer/beamerouterthemedefault.sty themes/outer/beamerouterthemeinfolines.sty themes/outer/beamerouterthememiniframes.sty themes/outer/beamerouterthemeshadow.sty themes/outer/beamerouterthemesidebar.sty themes/outer/beamerouterthemesmoothbars.sty themes/outer/beamerouterthemesmoothtree.sty themes/outer/beamerouterthemesplit.sty themes/outer/beamerouterthemetree.sty themes/theme/beamerthemeAnnArbor.sty themes/theme/beamerthemeAntibes.sty themes/theme/beamerthemeBergen.sty themes/theme/beamerthemeBerkeley.sty themes/theme/beamerthemeBerlin.sty themes/theme/beamerthemeBoadilla.sty themes/theme/beamerthemeCambridgeUS.sty themes/theme/beamerthemeCopenhagen.sty themes/theme/beamerthemeDarmstadt.sty themes/theme/beamerthemeDresden.sty themes/theme/beamerthemeFrankfurt.sty themes/theme/beamerthemeGoettingen.sty themes/theme/beamerthemeHannover.sty themes/theme/beamerthemeIlmenau.sty themes/theme/beamerthemeJuanLesPins.sty themes/theme/beamerthemeLuebeck.sty themes/theme/beamerthemeMadrid.sty themes/theme/beamerthemeMalmoe.sty themes/theme/beamerthemeMarburg.sty themes/theme/beamerthemeMontpellier.sty themes/theme/beamerthemePaloAlto.sty themes/theme/beamerthemePittsburgh.sty themes/theme/beamerthemeRochester.sty themes/theme/beamerthemeSingapore.sty themes/theme/beamerthemeSzeged.sty themes/theme/beamerthemeWarsaw.sty themes/theme/beamerthemeboxes.sty themes/theme/beamerthemedefault.sty themes/theme/compatibility/beamerthemebars.sty themes/theme/compatibility/beamerthemeclassic.sty themes/theme/compatibility/beamerthemecompatibility.sty themes/theme/compatibility/beamerthemelined.sty themes/theme/compatibility/beamerthemeplain.sty themes/theme/compatibility/beamerthemeshadow.sty themes/theme/compatibility/beamerthemesidebar.sty themes/theme/compatibility/beamerthemesplit.sty themes/theme/compatibility/beamerthemetree.sty description: Rearrange the folders in TL-consistent way. changeset: 425:0677185e52f6 user: Vedran Miletić date: Sat Jun 12 23:22:22 2010 +0200 files: base/beamer.cls base/beamerbasearticle.sty description: Should be Beamer, not beamer. (Both are fine, but since we put Beamer almost everywhere, let's try to be consistent now...) changeset: 424:c3821710bb40 user: Vedran Miletić date: Sat Jun 12 14:24:31 2010 +0200 files: base/beamerbasercs.sty doc/beameruserguide.tex extensions/translator/translator.sty description: Bump all version numbers. changeset: 423:f0a403f6578e user: Vedran Miletić date: Sat Jun 12 14:12:56 2010 +0200 files: .hgtags description: Added tag version-3-09 for changeset f4a1dee0d1b1 changeset: 422:f4a1dee0d1b1 tag: version-3-09 user: Vedran Miletić date: Sat Jun 12 14:12:32 2010 +0200 files: ChangeLog FILES description: Update ChangeLog and FILES. This is 3.09. changeset: 421:9b206f1826ae tag: tip user: Vedran Miletić date: Sat Jun 12 14:07:34 2010 +0200 files: doc/beamerlogo.pdf doc/beamerug-beamerlogo.pdf doc/beameruserguide.tex description: Give better name for a logo, one that Makefile won't destroy on make clean. changeset: 420:277e4f0e84c2 user: Vedran Miletić date: Sat Jun 12 14:05:25 2010 +0200 files: doc/beamerug-beamerlogo.pdf doc/beamerug-translator.tex doc/beameruserguide.tex description: Add logo and improve user guide. changeset: 419:717e481ca47a user: Vedran Miletić date: Sat Jun 12 13:33:01 2010 +0200 files: base/beamerbasesection.sty base/beamerbasetitle.sty themes/color/beamercolorthemedefault.sty themes/font/beamerfontthemedefault.sty themes/inner/beamerinnerthemedefault.sty description: Add real support for section page and subsection page. They can be styled independantly of part page now. changeset: 418:242ecaa6783b user: Vedran Miletić date: Fri Jun 11 17:21:47 2010 +0200 files: base/beamerbasesection.sty base/beamerbasetoc.sty description: This should fix issue #34 problem with subsubsection code. changeset: 417:85fd1cc7fc42 user: Vedran Miletić date: Fri Jun 11 16:40:11 2010 +0200 files: ChangeLog README base/beamerbasetranslator.sty doc/beamerug-macros.tex doc/beamerug-translator.tex doc/beameruserguide.tex extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Croatian.dict extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-English.dict extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-French.dict extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-German.dict extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Serbian.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Croatian.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-English.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-French.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-German.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Serbian.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Croatian.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-English.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-French.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-German.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Serbian.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-Croatian.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-English.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-French.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-German.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-Serbian.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Croatian.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-English.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-French.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-German.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Serbian.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Croatian.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-English.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-French.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-German.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Serbian.dict extensions/translator/translator-language-mappings.tex extensions/translator/translator.sty description: Initial import of Translator into Beamer, hopefully not too broken. Bump version to 3.09 and translator to 1.09. They will be kept in sync. changeset: 416:b1443623133d user: Vedran Miletić date: Sun Jun 06 14:32:35 2010 +0200 files: .hgtags description: Added tag version-3-08 for changeset 034830dd53d9 changeset: 415:034830dd53d9 tag: version-3-08 user: Vedran Miletić date: Sun Jun 06 14:31:10 2010 +0200 files: ChangeLog description: Update ChangeLog. This is 3.08. changeset: 414:73413e8124bd tag: tip tag: master user: Vedran Miletić date: Sun Jun 06 14:25:17 2010 +0200 files: FILES description: Update FILES. changeset: 413:809d38e3c3aa user: Vedran Miletić date: Sun Jun 06 14:20:56 2010 +0200 files: examples/a-lecture/beamerexample-lecture-logo.pdf description: Add a logo that was missing in a-lecture. changeset: 412:7e7cc5e53e9d user: Vedran Miletić date: Sun Jun 06 14:18:42 2010 +0200 files: base/beamerbasetheorems.sty description: Fix that makes beamerexample-lecture-print-version compile. changeset: 411:fa7ec00e7b95 user: Vedran Miletić date: Sun Jun 06 13:53:12 2010 +0200 files: doc/Makefile description: Make Makefile a bit more useful. changeset: 410:d1a9b48be06d user: Vedran Miletić date: Sun Jun 06 13:34:07 2010 +0200 files: base/beamerbasecolor.sty description: Really fix issue #1 beamercolorbox: unexpected behavior. changeset: 409:bff0a9294b45 user: Vedran Miletić date: Sun Jun 06 13:23:19 2010 +0200 files: base/beamer.cls base/beamerbaseframe.sty base/beamerbasemisc.sty description: Hopefully fix #8 beamer should generate pdf page labels using hyperref. changeset: 408:8ad93b65b084 user: Vedran Miletić date: Sun Jun 06 13:05:23 2010 +0200 files: base/beamerbasetoc.sty description: Fix issue #27 Page numbers when using \addcontentsline. changeset: 407:4bbb4d4d3157 user: Vedran Miletić date: Sun Jun 06 13:00:01 2010 +0200 files: doc/beamerug-compatibility.tex doc/beamerug-emulation.tex doc/beamerug-fonts.tex doc/beamerug-graphics.tex doc/beamerug-introduction.tex doc/beamerug-tutorial.tex doc/beamerug-workflow.tex doc/licenses/LICENSE description: More documentation updates: mention luatex and xetex in places where they are relevant. Fix some more incorrect new paragraphs. changeset: 406:1c2022836935 user: Vedran Miletić date: Sun Jun 06 12:59:07 2010 +0200 files: AUTHORS description: Add Daniel Arteaga to patch contributors. changeset: 405:3875786488eb user: Vedran Miletić date: Sun Jun 06 11:31:13 2010 +0200 files: doc/beamerug-license.tex doc/beameruserguide.tex description: Update GFDL license 1.3. changeset: 404:cb13b61d2456 user: Vedran Miletić date: Fri Jun 04 18:12:49 2010 +0200 files: doc/beamerug-license.tex doc/beameruserguide.tex description: Minor cosmetic fixes for documentation. changeset: 403:d4ffbef1def7 user: Joseph Wright date: Wed Jun 02 19:10:54 2010 +0100 files: doc/beamerug-installation.tex doc/beamerug-tutorial.tex description: Doc fixes from Daniel Arteaga changeset: 402:81f9e33f7cc2 user: Joseph Wright date: Tue Jun 01 20:03:53 2010 +0100 files: base/beamerbaselocalstructure.sty description: Do not gobble optional arguments for lists in article mode (fixes #24) changeset: 401:d7f4e7c9b001 user: Vedran Miletić date: Mon May 31 16:17:18 2010 +0200 files: base/beamerbasecolor.sty description: (Hopefully) fix issue #21 blocks with [default] corners not placed properly in columns env. changeset: 400:67558c7682d2 user: Vedran Miletić date: Mon May 31 15:54:08 2010 +0200 files: doc/beamerug-compatibility.tex description: Fix issue #17 corrections and wishes. changeset: 399:0eb40b9b455f user: Vedran Miletić date: Mon May 31 15:25:47 2010 +0200 files: doc/beamerug-animations.tex doc/beamerug-color.tex doc/beamerug-emulation.tex doc/beamerug-fonts.tex doc/beamerug-frames.tex doc/beamerug-globalstructure.tex doc/beamerug-guidelines.tex doc/beamerug-introduction.tex doc/beamerug-localstructure.tex doc/beamerug-nonpresentation.tex doc/beamerug-solutions.tex doc/beamerug-themes.tex doc/beamerug-twoscreens.tex doc/beamerug-workflow.tex description: Documentation fixes: I-->Till or I-->we. changeset: 398:1b0256162842 user: Vedran Miletić date: Sat May 22 09:46:44 2010 +0200 files: base/beamer.cls description: Fix fontsize breakage. changeset: 397:6f7b78175593 user: Vedran Miletić date: Tue May 11 21:18:26 2010 +0200 files: doc/beamerug-fonts.tex doc/beamerug-installation.tex doc/beamerug-introduction.tex doc/beamerug-tutorial.tex description: More documentation fixes. changeset: 396:9d58995b9c4d user: Vedran Miletić date: Tue May 11 20:31:20 2010 +0200 files: doc/beamerug-animations.tex doc/beamerug-color.tex doc/beamerug-compatibility.tex doc/beamerug-elements.tex doc/beamerug-emulation.tex doc/beamerug-fonts.tex doc/beamerug-frames.tex doc/beamerug-globalstructure.tex doc/beamerug-graphics.tex doc/beamerug-guidelines.tex doc/beamerug-installation.tex doc/beamerug-interaction.tex doc/beamerug-introduction.tex doc/beamerug-license.tex doc/beamerug-localstructure.tex doc/beamerug-nonpresentation.tex doc/beamerug-notes.tex doc/beamerug-overlays.tex doc/beamerug-solutions.tex doc/beamerug-themes.tex doc/beamerug-transparancies.tex doc/beamerug-tricks.tex doc/beamerug-tutorial.tex doc/beamerug-twoscreens.tex doc/beamerug-workflow.tex description: Documentation fixes part 4 (mostly ready for release now): -- add a comma. -- Fedora aptitude->yum. -- indentation and newlines. changeset: 395:cd36e8a33c6b user: Vedran Miletić date: Mon May 10 10:36:07 2010 +0200 files: base/beamerbasefont.sty description: Alphabetical ordering of fonts in beamerbasefonts.sty changeset: 394:9c8df196cc46 user: Vedran Miletić date: Mon May 10 10:33:56 2010 +0200 files: base/beamerbasefont.sty doc/beamerug-fonts.tex description: Add arev to professional fonts support and document it. changeset: 393:0706bb3e61a2 user: Vedran Miletić date: Sun May 09 21:21:02 2010 +0200 files: AUTHORS INSTALL README TODO doc/beamerug-emulation.tex doc/beamerug-graphics.tex doc/beamerug-guidelines.tex doc/beamerug-installation.tex doc/beamerug-interaction.tex doc/beamerug-introduction.tex doc/beamerug-license.tex doc/beamerug-localstructure.tex doc/beamerug-nonpresentation.tex doc/licenses/LICENSE description: More documentation fixes. Fix non-TeX doc files that come with beamer. changeset: 392:5791bac97c15 user: Vedran Miletić date: Sun May 09 11:15:37 2010 +0200 files: doc/beamerug-introduction.tex description: Add note about fourth part in introduction that was missing. changeset: 391:6abdefb5f79f parent: 389:647d08b36bfb parent: 390:9cd0dc417be7 user: Vedran Miletić date: Sun May 09 11:06:41 2010 +0200 description: Merge. changeset: 390:9cd0dc417be7 parent: 387:26a58c6f1267 user: Joseph Wright date: Sat May 08 22:13:22 2010 +0100 files: doc/beamerug-introduction.tex description: Add a few thanks (especially to Vedran: he's taking the lead, so I don't have to!) changeset: 389:647d08b36bfb user: Vedran Miletić date: Sun May 09 11:05:11 2010 +0200 files: base/beamer.cls doc/beamerug-frames.tex doc/beameruserguide.tex description: Change 3:2 aspect ratio to be 135x90 instead of 150x100. Document this. changeset: 388:1d6e4de28728 user: Vedran Miletić date: Sun May 09 11:02:15 2010 +0200 files: base/beamerbasearticle.sty description: Add some options to hyperref in beamerarticle. changeset: 387:26a58c6f1267 user: Vedran Miletić date: Sat May 08 22:02:43 2010 +0200 files: base/beamer.cls doc/beamerug-fonts.tex doc/beamerug-frames.tex doc/beamerug-installation.tex doc/beamerug-license.tex doc/beamerug-twoscreens.tex doc/beamerug-workflow.tex doc/beameruserguide.tex description: Rename screenratio option to aspectratio and document it. Add 3:2 ratio support. Change "GNU Public License" in documentation to "GNU General Public License". Add "or any later version" for consistency. Return \input{beamerug-compatibility} where it belongs. changeset: 386:4ee5c6a4781a user: Vedran Miletić date: Sat May 08 20:54:05 2010 +0200 files: doc/beamerug-animations.tex doc/beamerug-color.tex doc/beamerug-compatibility.tex doc/beamerug-elements.tex doc/beamerug-emulation.tex doc/beamerug-fonts.tex doc/beamerug-frames.tex doc/beamerug-globalstructure.tex doc/beamerug-graphics.tex doc/beamerug-guidelines.tex doc/beamerug-installation.tex doc/beamerug-interaction.tex doc/beamerug-license.tex doc/beamerug-localstructure.tex doc/beamerug-macros.tex doc/beamerug-nonpresentation.tex doc/beamerug-notes.tex doc/beamerug-overlays.tex doc/beamerug-solutions.tex doc/beamerug-transparancies.tex doc/beamerug-tricks.tex doc/beamerug-tutorial.tex doc/beamerug-twoscreens.tex doc/beamerug-workflow.tex doc/beameruserguide.tex description: Documentation fixes, part 2. -- add notes about |poppler| and evince/okular. -- fix linebreaks. -- add FIXME note to a place where explanation for option for slide layout should be. changeset: 385:161eaf4bc28c user: Vedran Miletić date: Sat May 08 14:41:37 2010 +0200 files: AUTHORS doc/beamercolorthemeexample.tex doc/beamerfontthemeexample.tex doc/beamerouterthemeexample.tex doc/beamerthemeexample.tex doc/beamerthemeexamplebase.tex doc/beamerug-animations.tex doc/beamerug-compatibility.tex doc/beamerug-fonts.tex doc/beamerug-installation.tex doc/beamerug-introduction.tex doc/beamerug-themes.tex doc/beamerug-twoscreens.tex doc/beameruserguide.tex description: Updating documentation for version 3.08, part 1 (more to follow). Short changelog: -- remove linebreaks in paragraphs (they are very inconsisent anyway) -- mention Debian and Ubuntu in "installation" instead of just Debian, mention versions -- mention Fedora -- put TeX Live and MacTeX vs. MikTeX and proTeXt -- replace "my" with "our" and "I" with "we" -- put Till's thanks into quotation, add mine, and put placeholder for Joseph's -- convert all documents to plain ASCII, and put utf8 inputenc instead of latin1 (just in case) -- use lmodern and T1 fontenc -- mention utf8 vs utf8x in presentation and article mode and hyperref in article mode changeset: 384:9a9b38bd58b5 user: Vedran Miletić date: Sat May 08 14:19:49 2010 +0200 files: base/beamerbasefont.sty description: Revert "use lmodern if available". This produced weird results on some older presentations due to slightly different metrics. changeset: 383:5584dad462a9 user: Joseph Wright date: Fri May 07 09:01:43 2010 +0100 files: base/beamerbaseoverlay.sty description: Reset fonts and justification inside overlayarea (fixes bug #11) changeset: 382:6feac3ddebc1 user: Joseph Wright date: Thu May 06 17:54:55 2010 +0100 files: base/beamerbasesection.sty description: Make setting \beamer@tocsectionnumber global, to fix bug #12 changeset: 381:1cbf4232a7a9 user: Vedran Miletić date: Sun May 02 10:21:05 2010 +0200 files: base/beamerbasecolor.sty description: Backed out changeset 939cbc288417, breaks a lot of things. changeset: 380:939cbc288417 user: Vedran Miletić date: Sat May 01 20:10:53 2010 +0200 files: base/beamerbasecolor.sty description: Fix #1 beamercolorbox: unexpected behavior. changeset: 379:d0b34a51204f user: Vedran Miletić date: Sat May 01 19:43:54 2010 +0200 files: base/beamer.cls description: Add screensize option (1610, 169, 149, 54, 43; default 43). Remove 169layout and 1610layout that were experimental implementation of same thing. changeset: 378:7063f09e9019 user: Vedran Miletić date: Sat May 01 18:39:27 2010 +0200 files: base/beamer.cls base/beamerarticle.sty base/beamerbasearticle.sty description: Add support for option 'utf8' also to article mode. Pass unicode to hyperref if utf8 is specified. changeset: 377:751dcaeea5e0 user: Vedran Miletić date: Sat May 01 18:18:32 2010 +0200 files: base/beamer.cls description: Fix the utf8 option: utf8x with inputenc is intended for ucs, while utf8 with inputenc works without ucs. This has to be documented. changeset: 376:052a1dd6382c user: Vedran Miletić date: Sat May 01 17:36:28 2010 +0200 files: base/beamerbasefont.sty description: Also use lmodern in article mode. changeset: 375:fe10ecea5804 user: Vedran Miletić date: Sat May 01 17:30:03 2010 +0200 files: base/beamerbasefont.sty description: Use lmodern by default (instead of cmr) if available. changeset: 374:dea7546469ce user: Vedran Miletić date: Sat May 01 14:10:34 2010 +0200 files: base/beamerbasesection.sty description: Fixed issue #7 Broken hyperlinks in header. changeset: 373:d5368d515366 user: Vedran Miletić date: Sat May 01 13:54:34 2010 +0200 files: base/beamerbaseframe.sty description: Fix #6 Add option to stop frame numbering after a slide. The key is noframenumbering, but it might change for consistency before release happens. changeset: 372:efa082c6111d user: Vedran Miletić date: Sat May 01 13:27:03 2010 +0200 files: AUTHORS base/beamer.cls base/beamerarticle.sty base/beamerbasearticle.sty base/beamerbaseauxtemplates.sty base/beamerbaseboxes.sty base/beamerbasecolor.sty base/beamerbasecompatibility.sty base/beamerbasedecode.sty base/beamerbaseexercise.sty base/beamerbasefont.sty base/beamerbaseframe.sty base/beamerbaseframecomponents.sty base/beamerbaseframesize.sty base/beamerbaselocalstructure.sty base/beamerbasemodes.sty base/beamerbasenavigation.sty base/beamerbasenotes.sty base/beamerbaseoverlay.sty base/beamerbasercs.sty base/beamerbaserequires.sty base/beamerbasesection.sty base/beamerbasetemplates.sty base/beamerbasethemes.sty base/beamerbasetheorems.sty base/beamerbasetitle.sty base/beamerbasetoc.sty base/beamerbasetranslator.sty base/beamerbasetwoscreens.sty base/beamerbaseverbatim.sty themes/font/beamerfontthemedefault.sty description: \mode<> code consistency fixes. Remove newlines at the ends of files. changeset: 371:a5badc796104 user: Vedran Miletić date: Sat May 01 12:36:41 2010 +0200 files: base/beamerbasetitle.sty description: Fix issue #3 article mode: \titlepage resets page counter. changeset: 370:c9cd35db708e user: Vedran Miletić date: Sat May 01 11:54:37 2010 +0200 files: doc/beamerug-compatibility.tex doc/beamerug-installation.tex doc/beameruserguide.tex description: Documentation fixes by Andreas Scherer (part 2). changeset: 369:f9755262cad5 user: Vedran Miletić date: Sat May 01 11:49:56 2010 +0200 files: AUTHORS doc/beamerug-introduction.tex description: Documentation fixes by Andreas Scherer (part 1). changeset: 368:14718f68e732 user: Vedran Miletić date: Sat May 01 11:43:08 2010 +0200 files: AUTHORS base/beamerbasetoc.sty description: subsubsectionstyle support (patch by Martin Quinson). changeset: 367:79a97133a1e1 user: Vedran Miletić date: Sat May 01 11:28:02 2010 +0200 files: doc/beamerug-animations.tex.rej doc/beamerug-color.tex.rej doc/beamerug-elements.tex.rej doc/beamerug-emulation.tex.rej doc/beamerug-fonts.tex.rej doc/beamerug-frames.tex.rej doc/beamerug-globalstructure.tex doc/beamerug-globalstructure.tex.rej doc/beamerug-guidelines.tex doc/beamerug-guidelines.tex.rej doc/beamerug-interaction.tex doc/beamerug-interaction.tex.rej doc/beamerug-localstructure.tex doc/beamerug-localstructure.tex.rej doc/beamerug-nonpresentation.tex.rej doc/beamerug-themes.tex doc/beamerug-themes.tex.rej doc/beamerug-tutorial.tex doc/beamerug-tutorial.tex.rej doc/beamerug-workflow.tex doc/beamerug-workflow.tex.rej description: Manually merge rejected documentation fixes done by Tim Bell. changeset: 366:b288180510af user: Vedran Miletić date: Fri Apr 30 10:04:38 2010 +0200 files: AUTHORS doc/beamerug-animations.tex doc/beamerug-animations.tex.rej doc/beamerug-color.tex doc/beamerug-color.tex.rej doc/beamerug-elements.tex doc/beamerug-elements.tex.rej doc/beamerug-emulation.tex doc/beamerug-emulation.tex.rej doc/beamerug-fonts.tex doc/beamerug-fonts.tex.rej doc/beamerug-frames.tex doc/beamerug-frames.tex.rej doc/beamerug-globalstructure.tex doc/beamerug-globalstructure.tex.rej doc/beamerug-graphics.tex doc/beamerug-guidelines.tex doc/beamerug-guidelines.tex.rej doc/beamerug-interaction.tex doc/beamerug-interaction.tex.rej doc/beamerug-introduction.tex doc/beamerug-localstructure.tex doc/beamerug-localstructure.tex.rej doc/beamerug-nonpresentation.tex doc/beamerug-nonpresentation.tex.rej doc/beamerug-overlays.tex doc/beamerug-themes.tex doc/beamerug-themes.tex.rej doc/beamerug-tricks.tex doc/beamerug-tutorial.tex doc/beamerug-tutorial.tex.rej doc/beamerug-workflow.tex doc/beamerug-workflow.tex.rej doc/beameruserguide.tex description: Import doc fixes by Tim Bell (wip). changeset: 365:9d2103924578 parent: 364:b811d0060c52 parent: 363:dd2ef3616c35 user: Vedran Miletić date: Wed Apr 28 23:56:57 2010 +0200 files: base/beamerbasecompatibility.sty base/beamerbasedecode.sty base/beamerbaseframe.sty base/beamerbaseframecomponents.sty base/beamerbaseframesize.sty base/beamerbaselocalstructure.sty base/beamerbasemisc.sty base/beamerbasemodes.sty base/beamerbasenavigation.sty base/beamerbaseoverlay.sty base/beamerbasetoc.sty emulation/beamerprosper.sty emulation/beamerseminar.sty description: Eliminate other head (hint to myself: try the code before you push). changeset: 364:b811d0060c52 parent: 362:6dd151388527 user: Vedran Miletić date: Wed Apr 28 23:49:50 2010 +0200 files: doc/beamerug-introduction.tex emulation/beamerfoils.sty emulation/beamerprosper.sty emulation/beamerseminar.sty emulation/beamertexpower.sty extensions/multimedia/multimedia.sty extensions/multimedia/multimediasymbols.sty description: Update copyrights. Fix a typo in documentation. changeset: 363:dd2ef3616c35 user: Vedran Miletić date: Wed Apr 28 23:38:22 2010 +0200 files: base/beamerbasecompatibility.sty base/beamerbasedecode.sty base/beamerbaseframe.sty base/beamerbaseframecomponents.sty base/beamerbaseframesize.sty base/beamerbaselocalstructure.sty base/beamerbasemisc.sty base/beamerbasemodes.sty base/beamerbasenavigation.sty base/beamerbaseoverlay.sty base/beamerbasetoc.sty emulation/beamerfoils.sty emulation/beamerprosper.sty emulation/beamerseminar.sty emulation/beamertexpower.sty extensions/multimedia/multimedia.sty extensions/multimedia/multimediasymbols.sty description: Change all occurences of =#n to ={#n}. Update copyrights. changeset: 362:6dd151388527 user: Vedran Miletić date: Tue Apr 27 15:35:46 2010 +0200 files: base/beamer.cls description: Implement 16:9 (169layout) and 16:10 (1610layout). The interface for calling these will probably change before the final release. changeset: 361:982469101dd6 user: Vedran Miletić date: Tue Apr 27 14:45:50 2010 +0200 files: base/beamer.cls base/beamerarticle.sty base/beamerbasearticle.sty base/beamerbasecolor.sty base/beamerbasecompatibility.sty base/beamerbasedecode.sty base/beamerbasefont.sty base/beamerbaseframe.sty base/beamerbaseframecomponents.sty base/beamerbaseframesize.sty base/beamerbaselocalstructure.sty base/beamerbasemisc.sty base/beamerbasemodes.sty base/beamerbasenavigation.sty base/beamerbasenotes.sty base/beamerbaseoptions.sty base/beamerbaseoverlay.sty base/beamerbasercs.sty base/beamerbaserequires.sty base/beamerbasesection.sty base/beamerbasethemes.sty base/beamerbasetheorems.sty base/beamerbasetitle.sty base/beamerbasetoc.sty base/beamerbasetranslator.sty base/beamerbasetwoscreens.sty base/beamerbaseverbatim.sty doc/beamerug-animations.tex doc/beamerug-color.tex doc/beamerug-compatibility.tex doc/beamerug-elements.tex doc/beamerug-emulation.tex doc/beamerug-fonts.tex doc/beamerug-frames.tex doc/beamerug-globalstructure.tex doc/beamerug-graphics.tex doc/beamerug-guidelines.tex doc/beamerug-installation.tex doc/beamerug-interaction.tex doc/beamerug-introduction.tex doc/beamerug-license.tex doc/beamerug-localstructure.tex doc/beamerug-macros.tex doc/beamerug-nonpresentation.tex doc/beamerug-notes.tex doc/beamerug-overlays.tex doc/beamerug-themes.tex doc/beamerug-transparancies.tex doc/beamerug-tricks.tex doc/beamerug-tutorial.tex doc/beamerug-twoscreens.tex emulation/beamerfoils.sty emulation/beamerprosper.sty emulation/beamerseminar.sty emulation/beamertexpower.sty emulation/examples/beamerexample-texpower.tex extensions/multimedia/multimedia.sty extensions/multimedia/multimediasymbols.sty themes/inner/beamerinnerthemerectangles.sty themes/inner/beamerinnerthemerounded.sty themes/outer/beamerouterthemesidebar.sty themes/theme/beamerthemeBerkeley.sty themes/theme/beamerthemePaloAlto.sty description: Remove useless (and most of the time wrong) %%% lines at the end of many files. changeset: 360:5a25f58600c3 user: Vedran Miletić date: Tue Apr 27 14:17:50 2010 +0200 files: base/beamer.cls base/beamerarticle.sty base/beamerbasearticle.sty base/beamerbaseauxtemplates.sty base/beamerbaseboxes.sty base/beamerbasecolor.sty base/beamerbasecompatibility.sty base/beamerbasedecode.sty base/beamerbasefont.sty base/beamerbaseframe.sty base/beamerbaseframecomponents.sty base/beamerbaseframesize.sty base/beamerbaselocalstructure.sty base/beamerbasemisc.sty base/beamerbasemodes.sty base/beamerbasenavigation.sty base/beamerbasenotes.sty base/beamerbaseoptions.sty base/beamerbaseoverlay.sty base/beamerbasercs.sty base/beamerbaserequires.sty base/beamerbasesection.sty base/beamerbasetemplates.sty base/beamerbasethemes.sty base/beamerbasetheorems.sty base/beamerbasetitle.sty base/beamerbasetoc.sty base/beamerbasetranslator.sty base/beamerbasetwoscreens.sty base/beamerbaseverbatim.sty doc/beamercolorthemeexample.tex doc/beamerfontthemeexample.tex doc/beamerinnerthemeexample.tex doc/beamerouterthemeexample.tex doc/beamerthemeexample.tex doc/beamerthemeexamplebase.tex doc/beamerug-animations.tex doc/beamerug-color.tex doc/beamerug-compatibility.tex doc/beamerug-elements.tex doc/beamerug-emulation.tex doc/beamerug-fonts.tex doc/beamerug-frames.tex doc/beamerug-globalstructure.tex doc/beamerug-graphics.tex doc/beamerug-guidelines.tex doc/beamerug-installation.tex doc/beamerug-interaction.tex doc/beamerug-introduction.tex doc/beamerug-license.tex doc/beamerug-localstructure.tex doc/beamerug-macros.tex doc/beamerug-nonpresentation.tex doc/beamerug-notes.tex doc/beamerug-overlays.tex doc/beamerug-solutions.tex doc/beamerug-themes.tex doc/beamerug-transparancies.tex doc/beamerug-tricks.tex doc/beamerug-tutorial.tex doc/beamerug-twoscreens.tex doc/beamerug-workflow.tex doc/beameruserguide.tex doc/themeexamples/beamerthemeexample.tex scripts/commentProvidePackageRCS.pl description: Add files that were missing in previous commit. Cleanup whitespace. Update copyright in documentation. Remove perl script, not necessary anymore as KeywordExtension for Mercurial works nice. changeset: 359:41b5745e061e user: Vedran Miletić date: Tue Apr 27 13:12:37 2010 +0200 files: base/beamer.cls base/beamerarticle.sty base/beamerbasearticle.sty base/beamerbaseboxes.sty base/beamerbasefont.sty base/beamerbasemisc.sty base/beamerbaseoptions.sty base/beamerbasercs.sty base/beamerbasesection.sty base/beamerbasethemes.sty base/beamerbasetheorems.sty description: Initial attempt at merging required packages by presentation and article mode. Attempt to include translator if exists; currently automatically loads all dictionaries. Fix lots of indentation, spaces, etc. changeset: 358:44025e1f75aa user: Vedran Miletić date: Tue Apr 27 10:34:48 2010 +0200 files: TODO base/beamerbasemisc.sty description: More translations. Will soon move translator check into a separate file. Add a reminder about beamerposter. changeset: 357:fb0213df2be8 user: Vedran Miletić date: Mon Apr 26 22:33:24 2010 +0200 files: TODO description: Update TODO. changeset: 356:165210fa3865 user: Vedran Miletić date: Mon Apr 26 22:25:00 2010 +0200 files: AUTHORS INSTALL README TODO base/beamer.cls base/beamerarticle.sty base/beamerbasearticle.sty base/beamerbaseauxtemplates.sty base/beamerbaseboxes.sty base/beamerbasecolor.sty base/beamerbasecompatibility.sty base/beamerbasedecode.sty base/beamerbaseexercise.sty base/beamerbasefont.sty base/beamerbaseframe.sty base/beamerbaseframecomponents.sty base/beamerbaseframesize.sty base/beamerbaselocalstructure.sty base/beamerbasemisc.sty base/beamerbasemodes.sty base/beamerbasenavigation.sty base/beamerbasenotes.sty base/beamerbaseoptions.sty base/beamerbaseoverlay.sty base/beamerbasercs.sty base/beamerbasesection.sty base/beamerbasetemplates.sty base/beamerbasethemes.sty base/beamerbasetheorems.sty base/beamerbasetitle.sty base/beamerbasetoc.sty base/beamerbasetwoscreens.sty base/beamerbaseverbatim.sty description: Cosmetic fixes to README, INSTALL, AUTHORS. Update copyright in base/. changeset: 355:49c1487b9540 user: Vedran Miletić date: Sat Apr 24 10:53:35 2010 +0200 files: base/beamerbasesection.sty description: Add translator support to beamerbasesection.sty. Hopefully, at some point code will be reorganized so same check will not need to be in many locations. changeset: 354:6d1611720086 user: Vedran Miletić date: Sat Apr 24 09:33:35 2010 +0200 files: base/beamerbasecompatibility.sty description: Make Heiko's fix really work this time. changeset: 353:08e824c02526 user: Vedran Miletić date: Fri Apr 23 19:10:37 2010 +0200 files: base/beamerbasecompatibility.sty base/beamerbasesection.sty description: Attempt to fix empty subsection. Add a note about sectionname. changeset: 352:2c581c4899a6 user: Vedran Miletić date: Fri Apr 23 18:05:28 2010 +0200 files: base/beamerbasecompatibility.sty description: Integrate Heiko's fix. Comment phantomsection. changeset: 351:d428f2b0d290 user: Vedran Miletić date: Fri Apr 23 17:49:02 2010 +0200 files: base/beamerarticle.sty base/beamerbasearticle.sty description: Fix hyperref in beamerarticle and add option nohyperref. changeset: 350:25f85d59db1e user: Vedran Miletić date: Fri Apr 23 17:12:41 2010 +0200 files: base/beamer.cls base/beamerarticle.sty base/beamerbasearticle.sty base/beamerbaseauxtemplates.sty base/beamerbaseboxes.sty base/beamerbasecolor.sty base/beamerbasecompatibility.sty base/beamerbasedecode.sty base/beamerbaseexercise.sty base/beamerbasefont.sty base/beamerbaseframe.sty base/beamerbaseframecomponents.sty base/beamerbaseframesize.sty base/beamerbaselocalstructure.sty base/beamerbasemisc.sty base/beamerbasemodes.sty base/beamerbasenavigation.sty base/beamerbasenotes.sty base/beamerbaseoptions.sty base/beamerbaseoverlay.sty base/beamerbasercs.sty base/beamerbasesection.sty base/beamerbasetemplates.sty base/beamerbasethemes.sty base/beamerbasetheorems.sty base/beamerbasetitle.sty base/beamerbasetoc.sty base/beamerbasetwoscreens.sty base/beamerbaseverbatim.sty emulation/beamerfoils.sty emulation/beamerprosper.sty emulation/beamerseminar.sty emulation/beamertexpower.sty themes/color/beamercolorthemealbatross.sty themes/color/beamercolorthemebeaver.sty themes/color/beamercolorthemebeetle.sty themes/color/beamercolorthemecrane.sty themes/color/beamercolorthemedefault.sty themes/color/beamercolorthemedolphin.sty themes/color/beamercolorthemedove.sty themes/color/beamercolorthemefly.sty themes/color/beamercolorthemelily.sty themes/color/beamercolorthemeorchid.sty themes/color/beamercolorthemerose.sty themes/color/beamercolorthemeseagull.sty themes/color/beamercolorthemeseahorse.sty themes/color/beamercolorthemesidebartab.sty themes/color/beamercolorthemestructure.sty themes/color/beamercolorthemewhale.sty themes/color/beamercolorthemewolverine.sty themes/font/beamerfontthemedefault.sty themes/font/beamerfontthemeprofessionalfonts.sty themes/font/beamerfontthemeserif.sty themes/font/beamerfontthemestructurebold.sty themes/font/beamerfontthemestructureitalicserif.sty themes/font/beamerfontthemestructuresmallcapsserif.sty themes/inner/beamerinnerthemecircles.sty themes/inner/beamerinnerthemedefault.sty themes/inner/beamerinnerthemeinmargin.sty themes/inner/beamerinnerthemerectangles.sty themes/inner/beamerinnerthemerounded.sty themes/outer/beamerouterthemedefault.sty themes/outer/beamerouterthemeinfolines.sty themes/outer/beamerouterthememiniframes.sty themes/outer/beamerouterthemeshadow.sty themes/outer/beamerouterthemesidebar.sty themes/outer/beamerouterthemesmoothbars.sty themes/outer/beamerouterthemesmoothtree.sty themes/outer/beamerouterthemesplit.sty themes/outer/beamerouterthemetree.sty themes/theme/beamerthemeAnnArbor.sty themes/theme/beamerthemeAntibes.sty themes/theme/beamerthemeBergen.sty themes/theme/beamerthemeBerkeley.sty themes/theme/beamerthemeBerlin.sty themes/theme/beamerthemeBoadilla.sty themes/theme/beamerthemeCambridgeUS.sty themes/theme/beamerthemeCopenhagen.sty themes/theme/beamerthemeDarmstadt.sty themes/theme/beamerthemeDresden.sty themes/theme/beamerthemeFrankfurt.sty themes/theme/beamerthemeGoettingen.sty themes/theme/beamerthemeHannover.sty themes/theme/beamerthemeIlmenau.sty themes/theme/beamerthemeJuanLesPins.sty themes/theme/beamerthemeLuebeck.sty themes/theme/beamerthemeMadrid.sty themes/theme/beamerthemeMalmoe.sty themes/theme/beamerthemeMarburg.sty themes/theme/beamerthemeMontpellier.sty themes/theme/beamerthemePaloAlto.sty themes/theme/beamerthemePittsburgh.sty themes/theme/beamerthemeRochester.sty themes/theme/beamerthemeSingapore.sty themes/theme/beamerthemeSzeged.sty themes/theme/beamerthemeWarsaw.sty themes/theme/beamerthemeboxes.sty themes/theme/beamerthemedefault.sty themes/theme/compatibility/beamerthemebars.sty themes/theme/compatibility/beamerthemeclassic.sty themes/theme/compatibility/beamerthemecompatibility.sty themes/theme/compatibility/beamerthemelined.sty themes/theme/compatibility/beamerthemeplain.sty themes/theme/compatibility/beamerthemeshadow.sty themes/theme/compatibility/beamerthemesidebar.sty themes/theme/compatibility/beamerthemesplit.sty themes/theme/compatibility/beamerthemetree.sty description: Uncomment RCS again. Mercurial KeywordExtension provides necessary keywords. changeset: 349:c1c2e9d829c2 parent: 348:d8963a755aa7 parent: 1:10c7a1de136c user: Vedran Miletić date: Fri Apr 23 16:57:02 2010 +0200 description: Merge empty vendor branch. changeset: 348:d8963a755aa7 user: Vedran Miletić date: Fri Apr 23 09:46:02 2010 +0200 files: base/beamer.cls base/beamerarticle.sty base/beamerbasearticle.sty base/beamerbaseauxtemplates.sty base/beamerbaseboxes.sty base/beamerbasecolor.sty base/beamerbasecompatibility.sty base/beamerbasedecode.sty base/beamerbaseexercise.sty base/beamerbasefont.sty base/beamerbaseframe.sty base/beamerbaseframecomponents.sty base/beamerbaseframesize.sty base/beamerbaselocalstructure.sty base/beamerbasemisc.sty base/beamerbasemodes.sty base/beamerbasenavigation.sty base/beamerbasenotes.sty base/beamerbaseoptions.sty base/beamerbaseoverlay.sty base/beamerbasercs.sty base/beamerbasesection.sty base/beamerbasetemplates.sty base/beamerbasethemes.sty base/beamerbasetheorems.sty base/beamerbasetitle.sty base/beamerbasetoc.sty base/beamerbasetwoscreens.sty base/beamerbaseverbatim.sty emulation/beamerfoils.sty emulation/beamerprosper.sty emulation/beamerseminar.sty emulation/beamertexpower.sty scripts/commentProvidePackageRCS.pl themes/color/beamercolorthemealbatross.sty themes/color/beamercolorthemebeaver.sty themes/color/beamercolorthemebeetle.sty themes/color/beamercolorthemecrane.sty themes/color/beamercolorthemedefault.sty themes/color/beamercolorthemedolphin.sty themes/color/beamercolorthemedove.sty themes/color/beamercolorthemefly.sty themes/color/beamercolorthemelily.sty themes/color/beamercolorthemeorchid.sty themes/color/beamercolorthemerose.sty themes/color/beamercolorthemeseagull.sty themes/color/beamercolorthemeseahorse.sty themes/color/beamercolorthemesidebartab.sty themes/color/beamercolorthemestructure.sty themes/color/beamercolorthemewhale.sty themes/color/beamercolorthemewolverine.sty themes/font/beamerfontthemedefault.sty themes/font/beamerfontthemeprofessionalfonts.sty themes/font/beamerfontthemeserif.sty themes/font/beamerfontthemestructurebold.sty themes/font/beamerfontthemestructureitalicserif.sty themes/font/beamerfontthemestructuresmallcapsserif.sty themes/inner/beamerinnerthemecircles.sty themes/inner/beamerinnerthemedefault.sty themes/inner/beamerinnerthemeinmargin.sty themes/inner/beamerinnerthemerectangles.sty themes/inner/beamerinnerthemerounded.sty themes/outer/beamerouterthemedefault.sty themes/outer/beamerouterthemeinfolines.sty themes/outer/beamerouterthememiniframes.sty themes/outer/beamerouterthemeshadow.sty themes/outer/beamerouterthemesidebar.sty themes/outer/beamerouterthemesmoothbars.sty themes/outer/beamerouterthemesmoothtree.sty themes/outer/beamerouterthemesplit.sty themes/outer/beamerouterthemetree.sty themes/theme/beamerthemeAnnArbor.sty themes/theme/beamerthemeAntibes.sty themes/theme/beamerthemeBergen.sty themes/theme/beamerthemeBerkeley.sty themes/theme/beamerthemeBerlin.sty themes/theme/beamerthemeBoadilla.sty themes/theme/beamerthemeCambridgeUS.sty themes/theme/beamerthemeCopenhagen.sty themes/theme/beamerthemeDarmstadt.sty themes/theme/beamerthemeDresden.sty themes/theme/beamerthemeFrankfurt.sty themes/theme/beamerthemeGoettingen.sty themes/theme/beamerthemeHannover.sty themes/theme/beamerthemeIlmenau.sty themes/theme/beamerthemeJuanLesPins.sty themes/theme/beamerthemeLuebeck.sty themes/theme/beamerthemeMadrid.sty themes/theme/beamerthemeMalmoe.sty themes/theme/beamerthemeMarburg.sty themes/theme/beamerthemeMontpellier.sty themes/theme/beamerthemePaloAlto.sty themes/theme/beamerthemePittsburgh.sty themes/theme/beamerthemeRochester.sty themes/theme/beamerthemeSingapore.sty themes/theme/beamerthemeSzeged.sty themes/theme/beamerthemeWarsaw.sty themes/theme/beamerthemeboxes.sty themes/theme/beamerthemedefault.sty themes/theme/compatibility/beamerthemebars.sty themes/theme/compatibility/beamerthemeclassic.sty themes/theme/compatibility/beamerthemecompatibility.sty themes/theme/compatibility/beamerthemelined.sty themes/theme/compatibility/beamerthemeplain.sty themes/theme/compatibility/beamerthemeshadow.sty themes/theme/compatibility/beamerthemesidebar.sty themes/theme/compatibility/beamerthemesplit.sty themes/theme/compatibility/beamerthemetree.sty description: Comment all \ProvidePackageRCS (thanks Lucia) and also a \ProvideClassRCS in beamer.cls. Need to redo these two for Mercurial eventually. changeset: 347:eabeb2bfd1f2 user: Vedran Miletić date: Thu Apr 22 19:44:22 2010 +0200 files: scripts/commentProvidePackageRCS.pl description: Added Perl script written by Lucia Načinović that automatically comments or uncomments \ProvidePackageRCS $Header$ lines. changeset: 346:ec8ab8469dca user: Vedran Miletić date: Thu Apr 22 18:58:35 2010 +0200 files: base/beamerarticle.sty base/beamerbasearticle.sty description: Two minor cosmetic fixes for beamerarticle. changeset: 345:23a715253d39 user: Vedran Miletić date: Thu Apr 22 18:52:02 2010 +0200 files: base/beamer.cls base/beamerbasearticle.sty description: Initial work on making beamerarticle more robust (i.e. using same package set that presentation mode includes so it doesn't fail in weird ways). Minor fix to make \beamer@version definition more consistent. It would probably be a good idea to define it in one place instead of two. Will think about it. changeset: 344:9643d7015401 user: Vedran Miletić date: Tue Apr 20 22:51:12 2010 +0200 files: base/beamerbasecompatibility.sty description: Import fix for subfig by Kanru Chen. changeset: 343:8b34d0c9f803 user: Vedran Miletić date: Tue Apr 20 22:48:18 2010 +0200 files: base/beamer.cls base/beamerarticle.sty base/beamerbasesection.sty base/beamerbasetitle.sty themes/inner/beamerinnerthemedefault.sty description: Bump version to 3.08, just to differ it from 3.07 floating around. Initial work on sectionpage in style of partpage. TODO: -- redesign and make separate styles in same way partpage has. -- fix compatibility with babel (it's Section regardless of babel language; not so with Part). changeset: 342:4a40d0469958 user: Vedran Miletić date: Fri Apr 16 12:05:28 2010 +0200 files: base/beamerbasecompatibility.sty base/beamerbasetwoscreens.sty description: Import of geometry 5.0 compatibility fix by Karl Berry and Vladimir Lomov done in February 2010. More info: http://tug.org/pipermail/tex-live/2010-February/024834.html changeset: 341:11950b16aa05 user: Vedran Miletić date: Fri Apr 16 11:57:19 2010 +0200 files: base/beamerbasetwoscreens.sty description: Import bugfix for \pgfpagescurrentpagewillbelogicalpage by herbert (hv) done one 2009-06-14. changeset: 340:8cb030d7c7ac user: Vedran Miletić date: Fri Apr 16 11:28:27 2010 +0200 files: themes/color/beamercolorthemebeaver.sty description: Import of "Fixed syntax error in themes/color/beamercolorthemebeaver.sty (Ubuntu Launchpad: #232452)." by Tan Rui Boon changeset: 19:0de0019820ec tag: tip user: Vedran Miletić date: Fri Jun 04 18:18:14 2010 +0200 files: dicts/translator-environment-dictionary/translator-environment-dictionary-English.dict description: Fix translator issue #1. Thanks for catching that! changeset: 18:bd6674cf59b3 user: Vedran Miletić date: Fri Jun 04 18:16:27 2010 +0200 files: README base/translator-language-mappings.tex base/translator.sty doc/English/translator-manual-en-macros.tex doc/English/translator-manual-en.tex description: Update documentation. Update copyrights. changeset: 17:87850b924d63 user: Vedran Miletić date: Fri Jun 04 17:40:28 2010 +0200 files: dicts/translator-basic-dictionary/translator-basic-dictionary-Serbian.dict dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Serbian.dict dicts/translator-environment-dictionary/translator-environment-dictionary-Serbian.dict dicts/translator-months-dictionary/translator-months-dictionary-Serbian.dict dicts/translator-numbers-dictionary/translator-numbers-dictionary-Serbian.dict dicts/translator-theorem-dictionary/translator-theorem-dictionary-Serbian.dict description: Added Serbian translation by Zoran T. Filipovic. changeset: 16:f611ef1312f7 user: Vedran Miletić date: Mon Apr 26 22:28:12 2010 +0200 files: base/translator-language-mappings.tex base/translator.sty description: Bump version to 1.01, to differ it from Till's. Update copyright. changeset: 15:d70141dcd115 user: Vedran Miletić date: Sat Apr 24 16:52:54 2010 +0200 files: dicts/translator-basic-dictionary/translator-basic-dictionary-Croatian.dict dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Croatian.dict dicts/translator-environment-dictionary/translator-environment-dictionary-Croatian.dict dicts/translator-months-dictionary/translator-months-dictionary-Croatian.dict dicts/translator-numbers-dictionary/translator-numbers-dictionary-Croatian.dict dicts/translator-theorem-dictionary/translator-theorem-dictionary-Croatian.dict description: Added complete support for Croatian language. changeset: 14:cd0ceaef9a09 user: Vedran Miletić date: Sat Apr 24 10:44:41 2010 +0200 files: base/translator-language-mappings.tex description: Fix a typo (crotian->croatian). 2007-03-13 Till Tantau CVS: - Added French translations by Jean-Pierre Chretien et Fabien Dagnat 2007-03-11 Till Tantau Version 1.00: - Initial version. 2007-07-04 Till Tantau - Fixed missing guards in optional arguments. (like \item[{hi[]}]) 2007-03-20 Till Tantau - Fixed superfluous entry in FILES - Added "open" option in multimedia.sty. - Fixed sound player problem. - Fixed manifest files. - Added handling of professional fonts mtpro2 and lucimatx. 2007-03-11 Till Tantau Version 3.07: - LyX layout removed since it is now part of the LyX development tree. - Cleaned up documentation. - Cleaned up license chaos and removed all possibly copyrighted material. - Fixed incorrect subsubsections in vertical navigation bars. - Fixed problem with overlay specifications in amsmath environments. - Fixed superfluous \show in beamerthemeshadow.sty - Fixed color problem in beamer boxes with rounded corners. - Fixed problem with frametitle syntax in fragile frames. - Fixed missing frame subtitles in article mode. - Added french solution translations (due to Philippe De Sousa). 2005-06-16 Till Tantau Version 3.06: - Fixed bug in drawing of buttons. - Version for use with pgf version 1.00. 2005-06-12 Till Tantau Version 3.05: - Added color theme wolverine and presentation theme AnnArbor, submitted by Madhusudan Singh . - Added two screen options. - Added subsubsections (evil!). - Added \begin{frame}{Title}{Subtitle} syntax. - Switched to pgf version 0.95 Changes: - \setbeamercovered is now scoped. Bugfixes: - Fixed location of navigation symbols on plain frames. - Fixed wrong frame number in conjunction with fragile option. - Fixed compatibility definitions like \beamertemplateballtoc. - Fixed compatibility definitions for \beamersetleftmargin. - Fixed wobbling height of frametitle in default theme. - Fixed problem with serif theme and "onlymath" option. - Fixed problem with >127 characters and fragile option. - Fixed problem with activation of Chinese characters - Fixed problem with spaces in semiverbatim. 2004-10-11 Till Tantau Version 3.01: Added: - Option "fragile" that allows the use of overlays together with verbatims. *Extremely* useful. - Added option "T" to columns command/environment for alignment of top of first lines instead of baselines of first lines. - Added a color theme (dolphin) and a presentation theme (Boadilla) due to Manuel Carro. Bugfixes: - Fixed "fotoline" in beamerbasecompatibility.sty and beamerthemeboxes.sty. - Fixed vertical spacing problem having to do with the use of \trivlist. - Fixed problem with wrong short forms of section/subsection in certain outer themes in headline. - Fixed bug causing "unknown command \insertblockname" in article mode. - Changed definition of \normalcolor so that it works inside color mixins. - Fixed problems with autoframebreak and unwanted breaks. - Fixed problem with problem with vertical mode after \item. - "Smoothed" the rendering of the right side of boxes with shadows. - Fixed "descriptionwidth" to "description width". - Fixed problem with labels outside frames creating empty frames. - Applied lot's of spelling patches to user guide. - Fixed \thanks. - Navigation symbols are no longer shown in handout and trans modes, by default (write \setbeamertemplate{navigation symbols}[default] to get them back). 2004-09-27 Till Tantau Version 3.00: Added: - Added inmargin and Bergen themes. - Added beamerbasercs.sty. Bugfixes: - Fixed problem with displayed math formulas are message "improper halign..." - Fixed wrong positioning of mini frames on notes pages. - Fixed bugs in outer theme miniframes. - Fixed foreground coloring problem in beamerboxesrounded. - Fixed \alert in article mode problem. - Fixed \temporal problem. - Fixed vertical mode after \item problem. - Applied patch with typo fixed submitted by Ohura Makoto. - Fixed warnings concerning it/sl substitution for cmss. - Renamed "ternary" to "tertiary" and "fourth" to "quaternary". - Changed parent of color "frametitle" to "titlelike". - Fixed problem with \note in lectures that are excluded. 2004-09-23 Till Tantau Version 2.99 Release notes: - This is a pretest version. Version 3.00 will be the next "real" release. The present version should not be distributed as bundles or suchlike. - You need pgf 0.63 and xcolor 2.00 for this version. - Quite a lot has changed. However, old presentations should compile just fine, except if really wicked things have been done. If a reasonably normal old presentation no longer compiles, please drop me a line. - Some small color and spacing changes in the old themes may occur. Themes: - Completely new theme management. - Lot's of new variations of themes. - Font/element/layout/color themes are orthogonal and can be freely combined. - Old themes obsolete, but supported for compatibility. - Original default theme is now in "beamerthemecompatibility.sty". New default is more minimalistic. + Presentation themes: - There are now 24 ready-to-use presentation themes. - Manuel Carro has send me a theme that I slightly adapted and added as the Madrid theme. + Layout and element Themes: - There are 9 different layouts themes, including three new ones that were not available in the previous version. - There are 4 different element themes (which dictate things like how items are typeset). + Color themes: - There are 10 color themes, including a yellow-on-blue theme. - The seahorse and rose theme allow you to change the colors of headlines and footlines easily to much less "aggressive" versions. - You can now dictate the color of every minute detail of a presentation individually, (including math!). + Font themes: - 6 font themes. Change the fonts of titles to, say, small caps just by using the smallcaps theme; no need to meddle with templates. - Just like colors, you can individually change all fonts in minute detail without touching any templates. Documentation: - Split documentation into multiple files. - Reorganized and reworked large parts of the documention. - Added a small tutorial to help new users. - Extracted all "guidelines" and "recommendations" and put them in a "guidelines" section. Also added lots of guidelines on fonts. - Added an index (though it's pretty poor, still). Solutions: - Added a solutions directory. It contains ready-to-use solutions for common problems (like a template for a conference talk). - Help appreciated (see the documentation). Added: - Added frame environment (finally!). - Added the dot notation to overlay specifications. If a dot is used instead of a plus, the beamerpauses counter is not incremented. - Added xmpmulti.sty. Very useful for including Multi Metapost graphics. - Added some functionality to \onslide to get it more in sync with ha-prosper. - Made \beamerdefaultoverlayspecification work also outside frames. - Added new version of beamer.el by Thomas Baumann. - \footnote now takes an overlay specification. - Added beamercolorbox environment. - Characters like : may now be active (nice for french style). Only exceptions are < and >. - Added a note on how to use msc.sty with beamer. - TOCs in sidebar will now do line breaking (finally!). - Powerful object-oriented new font management. - Powerful object-oriented new color management. - \tableofcontents now has more options for showing/not showing entries. - Same is true for the toc in sidebars. - Added \keywords command (like \subject). - Added a patch to make beamer work together with musixtex. \pause will be redeclared inside music environments. - Added \insert's for inserting the start and end pages of the current frame, subsection, section, part, presentation, appendix. Changed: - Reordered directories. - beamerboxesrounded now works differently. color schemes no longer needed. - Option class=xxxx onsolete. Use document class xxxx directly instead and load new style beamerarticle. - Cleaned up lot's of internals. - Slight changes to vertical spacing. - slidestop is now called "t" and slidescentered is called "c". - \beamersetleftmargin and \beamersetrightmargin obsolete. Use \setbeamersize instead. - Old themes are now mapped to new internal mechanisms. Slight color and vertical spacing changes may occur. Bugfixes: - Fixed incompatibility with czech.sty. - Fixed some spacing problems with \label. - Fixed bug that could cause endless loop if more than two pages resulted from an allowframebreaks. - Fixed bug that caused incorrect counter resets in conjunction with allowframebreaks. - Fixed bug that caused footnotes of suppressed frames to spill over to the next frame. - Fixed bug with \AtBeginSection + \lecture + \mode* - Fixed \label bug in article mode in conjunction with amstex - Fixed spacing problems when \pause is used in equations - Fixed spacing problem with slides that start with an itemize. - Fixed color problem in itemize in conjunction with evil use of \everymath. - Fixed failure of action environment in handout and trans modes. - Fixed bug with shrink + t options. - Fixed lot's of other small things. 2004-07-06 Till Tantau Version 2.21 - Switched to xcolor 2.00. 2004-04-19 Till Tantau Version 2.20 Added: - Added style "Separator" in LyX. - Added multimedia.sty for movie and sound inclusion. - Added evil allowframebreaks option to frames for automatic frame breaking. - Added evil shrink option for automatic frame text shrinking. - Added squeeze option to frames for squeezing more on a frame. - Added \framesubtitle command. - Added \subtitle command. - Added \subject command. - Added option usepdftitle=false to suppress automatic generation of author and title entries in pdf document info. - Added \framezoom command. - Added new version of beamer.el, due to Thomas Baumann. Changes: - FoilTeX emulation will now do automatic page breaking. - Empty lines in "Standard" lyx style will no longer be kept, use an empty Separator line instead. - Changed the qed symbol to an open rectangle. - The way frame titles are typeset is completely different now, internally. Under normal circumstance you should not notice any differences, but if you do wicked things with the frame titles, problems might arise. Bugfixes: - Fixed definition of overlayarea to give better spacing. - Fixed problem with persisting background color and dvips. - Fixed zillions of typos in the user's guide spotted by Xavier Noria and Uwe Stoer. - Fixed unrobust definition of \\. 2004-04-07 Till Tantau Version 2.11 - Added t, b, c options to \frame. - Fixed esoteric bug in beamerbaseoptions. - Fixed problem with \againframe and counters. - Added (small part of) texpower emulation and foils emulation. - Changed the examples for emulation of prosper. - Now works with xcolor 1.10 (and only 1.10). - Fixed a PostScript related problems in bibliographies. - Fixed lyx default template. - Fixed bug that caused option CJK to be broken (though cjk worked). - Added inserts for section numbers for navigation bars. - Fixed problem with spacing inside itemize after equations. 2004-03-10 Till Tantau Version 2.10 - Fixed some spacing problems in uncover and invisible, itemize and pause. - Moved head/footline calculation after beginning of document. This fixes all sorts of problems. - Added utf8 encoding support. - Added a (HA-)Prosper emulation layer. - Added a seminar emulation layer. - Added third level of itemize/enumerate nesting (I don't like it, but some people do). - Added the \onslide command for use outside overprint environments. It generalises \pause in a simple, easy-to-use way. - Added incremental overlay specifications (very useful). - Added beamer.el emacs plug-in, contributed by Thomas Baumann. - Fixed problem that caused empty columns to disappear. - \ref will now create hyperjumps. - Switched to amsthm for theorems. Theorems now accept optional arguments (amsthm like). - Added \newtheorem support. 2004-02-23 Till Tantau Version 2.01 - Fixed bug with class options containing braces - Fixed bug in beamerbasecolor.sty - Fixed bug that caused footnotes not to be shown. - Fixed bug that caused \normalcolor to ignore mixins. - Fixed bug with french and spanish babel in article mode. - Fixed bugs in \cite and \bibitem commands. Will now correctly handle spaces in conjunction with babel. - Fixed bugs in beamerpresentation.lyx. - Fixed bug with \@centercr in article mode. - \cite now hyperlinks - \beamertemplateballitems will now also project mini templates on balls. Write \useenumerateitemminitemplate{\color{beamercolor}\insertenumlabel} to get the old behaviour. - \footnote now takes an extra optional argument. 2004-02-18 Till Tantau Version 2.00 Added: - Added placement options to columns and column commands. - Added \column command. - Added label option to frames. - Added \againframe command for showing a frame again later on (very useful!). - Added \includeonlyframe command for typesetting only specific frames. - Added \AtBeginSection, \AtBeginSubsection, and \AtBeginPart commands (very useful!). - Added \visible command (opposite of \invisible). - Added verse, quotation, and quote environments. - Added abstract environment (not very useful in my opinion). - Added colored option to \defverbatim for use with lstlisting. - Added grid density option to grid background. - Added professionalfont option. - Added automatic support of serif math minion fonts. - Added option to \pause command to pause only from a specific slide on. - Added \unpause to stop the last \pause. - Includes enumerate.sty by default and allows one to use its functionality in beamer. - Added dark and tab options to beamerthemesidebar. Other sidebar themes no longer needed. - Made \note work also inside frames. - Added templates for notes. - Added notes=onlyframeswithnotes option for generating only frames that contain a note. - Added options to all \insertshortxxx commands. - Added option for passing arguments to color, xcolor, pgf, and hyperref. - Added \action and actionenv environments. - Added the concept of actions to overlay specifications. For example, \item will alert the item on the second slide and \item<2-| alert@2> will furthermore have the item covered before that. - Added <> option to \newcommand and \newenvironment to make the defined commands overlay-specification aware. - \only and \alt will now also accept an overlay specification "at the end". - Block environments now accept overlay specification also before the argument. - Added \mode command - Added beamerbasearticle.sty -> makes nearly all beamer commands available in article mode in a sensible way. - Added mode specifications to \section and \subsection commands (useful for the article version). - Started adding some templates for rendering frames in article mode. - Added \lecture command and \includeonlylecture (useful for lecture notes). - Added a containsverbatim option to the \frame command. Should be used instead of the old \frame (which is, however, still supported). - Made \includegraphics, \pgfimage, and \pgfuseimage overlay-specification-aware. (useful for pseudo-animations) Changed: - Every frame is now put into a box internally. Slides will never be split over two pages. - \pause commands now transcends blocks (very useful, but not compatible!) - Balls are now also used for enumerations, not just for itemize in shadow theme. Use \beamertemplateenumeratealpha to get old behaviour. - Changed syntax of alert and structure templates. - Reworked internals of overlay management. Should produce slightly shorter files. - Changed file names of .jpg and .png images to start with "beamer-" to avoid name clashes. - Renamed \original to \beameroriginal because of clash with lucidia font styles. - "Streamlined" themes to use the same basic templates. - \noteitems replaced by \note[enumerate]. - \nameslide command is now obsolete. Use the label= option instead. - Removed notesonly option. Use notes=only. - Themes beamerthemesidebartab, beamerthemesidebardark, and beamerthemesidebardarktab are now obsolete. Use beamerthesesidebar will appropriate options instead. - Theme beamerthemetreebars obsolete. Use beamerthemetree with option bars instead. - Removed compressnotes option. Use \beamertemplatenotecompress instead. Removed: - Removed pauses environment (no longer needed). - Improved pgf makes \pgfonly superfluous. Use \only instead. - Removed reproducable .pdf example files from repository for faster cvs checkout/checkin. - Removed \invisibleon command (was superfluous anyway). - Removed \mixinon command (was not very useful and clashes with new \pause command; use \opaqueness instead). - Removed \newoverlaycommand and \renewoverlaycommand. Can be better implemented using \newcommand<>. - Removed \article, \presentation, and \common commands (still quietly tolerated). Should be replaced by \mode
, \mode, and \mode. - Removed beamer/lyx/doc. Documentation is now incorporated in the main user's guide. LyX: - Added a big example file beamerlyxexample1.lyx. - Changed \tableofcontents command so that options can be given in LyX. - Changed \frame command in LyX so that options can be given. - Added overprint and overlayarea environments. - Added \againframe command. - Changed beamer.layout to use new command \column. Old environment no longer supported in lyx. - A new frame and a section or subsection will automatically close the previous frame. EndFrame is only needed before the end of the document, before the appendix, and before "out-of-frame" material. - Added TitleGraphic command. - Documented the LyX interface in beameruserguide.pdf. Bugfixes: - Fixed bugs with "jumping" blocks in overlays. - Fixed bug with tabbing in beamerbaseboxes. - Added work-around for problem with black background in older versions of acroread. - Fixed problems with linebreak in short title and short author in sidebar themes. 2004-01-19 Till Tantau Version 1.21 - Fixed bug in \insertverticalnavigation that made sidebar themes unusable. 2004-01-16 Till Tantau Version 1.20 - Reorganzed directory structure: new directories base and themes - Added some explanations in user guide on font encodings and graphic file formats. - T1 encoding is fully supported now. - lmodern and fourier fonts are supported now. - \mathrm will always produce roman text now. - \mathbf will produced boldface serif or sans-serif text, depending on the math font selection. - Added options to include only certain sections in the table of contents. - Added option to hilight only the current subsection in the table of contents. - Added inserts for numbering sections in the table of contents. - Added predefined templates for more fancyful table of contents. - Shadow theme now uses a numbered table of contents by default. Use \beamertemplateplaintoc to get the old behaviour. - Changed the syntax of \frame. Overlay specification must now be given in pointed brackets. (Old syntax is quietly tolerated.) - Command \plainframe has been replaced by \frame[plain]. (Old syntax is quietly tolerated.) - Renamed beamerboxes to beamerbaseboxes and beamertemplates to beamerbasetemplate. They are included automatically, so simply delete an inclusion of the old packages). - Fixed bug in beamerbaseboxes. - Uncover now also works for whole lines or passages in tables and alignments, both for completely invisible covered and transparent covered text. - Item balls/icons now change color inside beamerboxes according to the color scheme. - Added versioning system for head and toc entries. Will no longer do weird things when left over files from an old version are encountered. (Makes updating a lot easier.) - Slightly changed LyX stuff to work together with the syntax changes. Still no real documentation. - Uses version 1.06 of xcolor now. - Uses pgf 0.50 now. - Mechanism for alternate selection of images and shading is slightly changed and incompatible with the old one. - pgf's cvs is now also on SourceForge next to the beamer class. 2003-12-09 Till Tantau Version 1.10: - Started implementing a LyX interface, see the lyx directory (not yet documented very well). - Fixed bug with navigation symbols and dvips, ps2pdf. - Fixed bug with navigation symbols and missing \logo. - Added more size options. - Fixed bug in parts with superfluous frame symbols in navigation bars. 2003-11-25 Till Tantau Version 1.04: - Fixed problem with Spanish style. - Fixed problem with compress in beamerthemesplit. - Fixed bug that made beamerthemeclassic useless. - Fixed incompatibility with deluxetabular. - Fixed bug with "gray" option. Renamed to "blackandwhite". - Fixed bug that caused columns in slidetop mode to be centered. 2003-11-20 Till Tantau Version 1.03: - Documented beamerboxes.sty - Added animation example. 2003-11-20 Till Tantau Version 1.02: - Added missing shadow theme file. - Documented changes of syntax of \transxxxx commands. 2003-11-15 Till Tantau Version 1.01: - Added shadow theme. - Added masked versions of images. - Added shadow blocks. - Added another example. 2003-11-12 Till Tantau Version 1.00: - Added part managment and documented it. - Changed \appendix to use \part internally. Appendix can now contain numerous sections. - Added \nameslide commands for inserting slides into the article version. - Added draft option. - Fixed bug with \pause and notesonly. - Added CJK option for Chinese fonts in navigation bars. - Added \includeslide command. - Needs pgf 0.40 now. - Added \beamertemplateroundedblocks (quite cute). - Added three examples. - Added compressnotes option. 2003-11-04 Till Tantau Version 0.93: - Added \article, \common, \presentation macros for creating an article version of a presentation from the same file. - Corrected several examples in the user guide. - Added additional hyperlink commands. - Added button management. - Reworked the formatting of the user's guide. - Added new navigation symbols. - Replaced inrow option and theme splitcondensed by compress option. 2003-10-28 Till Tantau Version 0.92: - Added figure and table environments. - Color management switch over to xxcolor. - Implemented transparency effects for covered items. - Fixed problem with \label. - Made \bibitem overlay-specification-aware. - Added \transduration command. - Added animation commands. - Added pauses environment. - Added pausing options to \tableofcontents. - Moved hidesubsections and shadedsubsections options to parameters of \tableofcontents. 2003-10-23 Till Tantau Version 0.91: - Documented side bar templates. - Fixed bug that did not suppress head and foot lines for notes. - Fixed bug that disabled transition effects. 2003-10-16 Till Tantau Version 0.90: - Improved the installation procedure documentation. - Added a \plainframe command for creating frames that are completely filled with a picture. Navigation bars are suppressed. - Clicking on the current frame icon will advance to last slide of the frame. - Added nicer icons for the bibliography. These are now vector graphics that work nicely together with a background shading and can be zoomed arbitrarily. - Fixed bug in overwritten \document. - Added \appendix command. - Fixed bug when using color options like "red". - Added theme beamerthemesplitcondensed, adapted from a submission by Paul Gomme - Added command \insertframenumber - Added several new themes - Fixed behaviour of split theme: optional arguments of \section and \subsection are now shown in navigation bars. - Added side bar management. 2003-10-13 Till Tantau Version 0.82: - Short versions of title, authors, institute can now be specified as optional parameters. - Fixed problem with the usage of commands (like \LaTeX) in \section and \subsection commands. 2003-10-09 Till Tantau Version 0.81: - Fixed problems with french babel styles. - Fixed problems with pdfmark.def - Fixed bugs in user guide - Fixed problem with using commands inside overlay specifications (you can now write \uncover<\value{xxx}>{something}) - Changed version numbering to become compatible with debian package manager 2003-10-01 Till Tantau Version 0.80: - Renamed \line to \beamerline to avoid clash with LaTeX standard \line - Added transition effects. - Expanded documentation. 2003-09-30 Till Tantau Version 0.71: - Added bibliography environment and appropriate templates. - Added \temporal command. 2003-09-26 Till Tantau Version 0.70: - Added per-frame resets for counters. Fixed a problem with wrong numbers in equations in overlays. - Fonts can now easily be changed. 2003-09-23 Till Tantau Version 0.62: - Added a description environment. 2003-09-22 Till Tantau Version 0.61: - Bugfix to make the class work with both old and new versions of geometry.sty. 2003-09-19 Till Tantau Version 0.60: - Bugfix for overlays and environments that internally use trivlists. - Bugfix for overlays and lists - no more whobbling. - Added overprint environment and overlayarea environment. 2003-09-18 Till Tantau Version 0.52: - Left and right margins can now be changed. - In \section commands, you can now use formulas and line breaks. - More documentation, especially on how to put several slides on one page. - Workflow documentation. - Two new themes. One of them needs version 0.11 of pgfshade.sty to work. 2003-08-31 Till Tantau Version 0.50: - Added options handout and trans. - Moved predefined templates to new file beamertemplates.sty - \titlepage must be put into a frame now - Added notes management. 2003-08-21 Till Tantau Version 0.40: - Created Change log. - New overlay management. beamer/INSTALL0000644000175000017500000000140212050430504012700 0ustar mohuramohuraInstalling the Beamer class =========================== * TeX stuff: + For the impatient: Put all files somewhere where TeX can find them. Also install the following packages somewhere where TeX can find them: - pgf, version >= 1.00 - xcolor, version >= 2.00 + Long version: In the users guide, which you can find in the file doc/beameruserguide.pdf, you will find a detailed explanation on how to install the beamer class. * LyX Stuff: The LyX documentation is part of the users guide doc/beameruserguide.pdf. It also explains how to install the LyX-related files. * Emacs Stuff: There is a file emacs/beamer.el that adds some beamer stuff to emacs' AucTeX mode. Read the instructions in that file on how to install it. beamer/examples/0000755000175000017500000000000012050430654013476 5ustar mohuramohurabeamer/examples/lyx-based-presentation/0000755000175000017500000000000012050430506020073 5ustar mohuramohurabeamer/examples/lyx-based-presentation/beamerexample-lyx.lyx0000644000175000017500000014574412050430506024271 0ustar mohuramohura#LyX 1.3 created this file. For more info see http://www.lyx.org/ \lyxformat 221 \textclass beamer \begin_preamble \beamertemplateshadingbackground{red!5}{structure!5} \usepackage{beamerthemeshadow} \usepackage{pgfnodes,pgfarrows,pgfheaps} \beamertemplatetransparentcovereddynamicmedium \pgfdeclareimage[width=0.6cm]{icsi-logo}{beamer-icsi-logo} \logo{\pgfuseimage{icsi-logo}} \newcommand{\Class}[1]{\operatorname{\mathchoice {\text{\small #1}} {\text{\small #1}} {\text{#1}} {\text{#1}}}} \newcommand{\Lang}[1]{\operatorname{\text{\textsc{#1}}}} \newcommand{\tape}[3]{% \color{structure!30!averagebackgroundcolor} \pgfmoveto{\pgfxy(-0.5,0)} \pgflineto{\pgfxy(-0.6,0.1)} \pgflineto{\pgfxy(-0.4,0.2)} \pgflineto{\pgfxy(-0.6,0.3)} \pgflineto{\pgfxy(-0.4,0.4)} \pgflineto{\pgfxy(-0.5,0.5)} \pgflineto{\pgfxy(4,0.5)} \pgflineto{\pgfxy(4.1,0.4)} \pgflineto{\pgfxy(3.9,0.3)} \pgflineto{\pgfxy(4.1,0.2)} \pgflineto{\pgfxy(3.9,0.1)} \pgflineto{\pgfxy(4,0)} \pgfclosepath \pgffill \color{structure} \pgfputat{\pgfxy(0,0.7)}{\pgfbox[left,base]{#1}} \pgfputat{\pgfxy(0,-0.1)}{\pgfbox[left,top]{#2}} \color{black} \pgfputat{\pgfxy(-.1,0.25)}{\pgfbox[left,center]{\texttt{#3}}}% } \newcommand{\shorttape}[3]{% \color{structure!30!averagebackgroundcolor} \pgfmoveto{\pgfxy(-0.5,0)} \pgflineto{\pgfxy(-0.6,0.1)} \pgflineto{\pgfxy(-0.4,0.2)} \pgflineto{\pgfxy(-0.6,0.3)} \pgflineto{\pgfxy(-0.4,0.4)} \pgflineto{\pgfxy(-0.5,0.5)} \pgflineto{\pgfxy(1,0.5)} \pgflineto{\pgfxy(1.1,0.4)} \pgflineto{\pgfxy(0.9,0.3)} \pgflineto{\pgfxy(1.1,0.2)} \pgflineto{\pgfxy(0.9,0.1)} \pgflineto{\pgfxy(1,0)} \pgfclosepath \pgffill \color{structure} \pgfputat{\pgfxy(0.25,0.7)}{\pgfbox[center,base]{#1}} \pgfputat{\pgfxy(0.25,-0.1)}{\pgfbox[center,top]{#2}} \color{black} \pgfputat{\pgfxy(-.1,0.25)}{\pgfbox[left,center]{\texttt{#3}}}% } \pgfdeclareverticalshading{heap1}{\the\paperwidth}% {color(0pt)=(black); color(1cm)=(structure!65!white)} \pgfdeclareverticalshading{heap2}{\the\paperwidth}% {color(0pt)=(black); color(1cm)=(structure!55!white)} \pgfdeclareverticalshading{heap3}{\the\paperwidth}% {color(0pt)=(black); color(1cm)=(structure!45!white)} \pgfdeclareverticalshading{heap4}{\the\paperwidth}% {color(0pt)=(black); color(1cm)=(structure!35!white)} \pgfdeclareverticalshading{heap5}{\the\paperwidth}% {color(0pt)=(black); color(1cm)=(structure!25!white)} \pgfdeclareverticalshading{heap6}{\the\paperwidth}% {color(0pt)=(black); color(1cm)=(red!35!white)} \newcommand{\heap}[5]{% \begin{pgfscope} \color{#4} \pgfheappath{\pgfxy(0,#1)}{\pgfxy(-#2,0)}{\pgfxy(#2,0)} \pgfclip \begin{pgfmagnify}{1}{#1} \pgfputat{\pgfpoint{-.5\paperwidth}{0pt}}{\pgfbox[left,base]{\pgfuseshading{heap#5}}} \end{pgfmagnify} \end{pgfscope} %\pgffill \color{#4} \pgfheappath{\pgfxy(0,#1)}{\pgfxy(-#2,0)}{\pgfxy(#2,0)} \pgfstroke \color{white} \pgfheaplabel{\pgfxy(0,#1)}{#3}% } \newcommand{\langat}[2]{% \color{black!30!beamerexample} \pgfsetlinewidth{0.6pt} \pgfsetendarrow{\pgfarrowdot} \pgfline{\pgfxy(-3.5,#1)}{\pgfxy(0.05,#1)} \color{beamerexample} \pgfputat{\pgfxy(-3.6,#1)}{\pgfbox[right,center]{#2}}% } \newcommand{\langatother}[2]{% \color{black!30!beamerexample} \pgfsetlinewidth{0.6pt} \pgfsetendarrow{\pgfarrowdot} \pgfline{\pgfxy(3.5,#1)}{\pgfxy(-0.05,#1)} \color{beamerexample} \pgfputat{\pgfxy(3.6,#1)}{\pgfbox[left,center]{#2}}% } \pgfdeclaremask{knight1-mask}{beamer-knight1-mask} \pgfdeclareimage[height=2cm,mask=knight1-mask]{knight1}{beamer-knight1} \pgfdeclaremask{knight2-mask}{beamer-knight2-mask} \pgfdeclareimage[height=2cm,mask=knight2-mask]{knight2}{beamer-knight2} \pgfdeclaremask{knight3-mask}{beamer-knight3-mask} \pgfdeclareimage[height=2cm,mask=knight3-mask,interpolate=true]{knight3}{beamer-knight3} \pgfdeclaremask{knight4-mask}{beamer-knight4-mask} \pgfdeclareimage[height=2cm,mask=knight4-mask,interpolate=true]{knight4}{beamer-knight4} \pgfdeclareradialshading{graphnode} {\pgfpoint{-3pt}{3.6pt}}% {color(0cm)=(beamerexample!15); color(2.63pt)=(beamerexample!75); color(5.26pt)=(beamerexample!70!black); color(7.6pt)=(beamerexample!50!black); color(8pt)=(beamerexample!10!averagebackgroundcolor)} \newcommand{\graphnode}[2]{ \pgfnodecircle{#1}[virtual]{#2}{8pt} \pgfputat{#2}{\pgfbox[center,center]{\pgfuseshading{graphnode}}} } \end_preamble \options notes=show \language english \inputencoding auto \fontscheme times \graphics default \paperfontsize default \spacing single \papersize Default \paperpackage a4 \use_geometry 0 \use_amsmath 1 \use_natbib 0 \use_numerical_citations 0 \paperorientation portrait \secnumdepth 2 \tocdepth 2 \paragraph_separation indent \defskip medskip \quotes_language english \quotes_times 2 \papercolumns 1 \papersides 1 \paperpagestyle default \layout Title The Complexity of \newline Finding Paths in Tournaments \layout Author Till Tantau \layout Institute International Computer Schience Institute \newline Berkeley, California \begin_inset OptArg collapsed true \layout Standard ICSI \end_inset \layout Date January 30th, 2004 \layout BeginFrame Outline \layout Standard \begin_inset LatexCommand \tableofcontents{} \end_inset \begin_inset ERT status Collapsed \layout Standard [pausesections] \end_inset \layout EndFrame \layout Standard \begin_inset ERT status Collapsed \layout Standard % Show the table of contents at the beginning \layout Standard % of every subsection. \layout Standard \backslash AtBeginSubsection[]{ \layout Standard \backslash frame{ \layout Standard \backslash frametitle{Outline} \layout Standard \backslash tableofcontents[current,currentsubsection] \layout Standard } \layout Standard } \end_inset \layout Section Introduction \layout Subsection What are Tournaments? \layout BeginFrame Tournaments Consist of Jousts Between Knights \layout Columns \begin_deeper \layout Column 5.75cm \layout Standard \begin_inset ERT status Inlined \layout Standard \backslash begin{pgfpicture}{1.25cm}{-1cm}{7cm}{4cm} \layout Standard \backslash pgfnodebox{A}[virtual]{ \backslash pgfxy(2,1)}{ \backslash pgfuseimage{knight1}}{2pt}{2pt} \layout Standard \backslash pgfnodebox{B}[virtual]{ \backslash pgfxy(6,1)}{ \backslash pgfuseimage{knight2}}{2pt}{2pt} \layout Standard \backslash pgfnodebox{C}[virtual]{ \backslash pgfxy(4,-1)}{ \backslash pgfuseimage{knight3}}{2pt}{2pt} \layout Standard \backslash pgfnodebox{D}[virtual]{ \backslash pgfxy(4,3)}{ \backslash pgfuseimage{knight4}}{2pt}{2pt} \layout Standard \layout Standard \backslash color{beamerexample} \layout Standard \backslash only<3->{ \backslash pgfsetendarrow{ \backslash pgfarrowto}} \layout Standard \backslash only<2->{ \layout Standard \backslash pgfsetlinewidth{0.6pt} \layout Standard \backslash pgfnodeconnline{A}{B} \layout Standard \backslash pgfnodeconnline{A}{C} \layout Standard \backslash pgfnodeconnline{D}{A} \layout Standard \backslash pgfnodeconnline{C}{B} \layout Standard \backslash pgfnodeconnline{B}{D} \layout Standard \backslash pgfnodeconnline{C}{D}} \layout Standard \backslash end{pgfpicture} \end_inset \layout Column 6cm \layout Block \begin_inset ERT status Inlined \layout Standard {What is a Tournament?} \end_inset \begin_deeper \layout Itemize \begin_inset ERT status Collapsed \layout Standard <1-> \end_inset A group of knights. \layout Itemize \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset Every pair has a joust. \layout Itemize \begin_inset ERT status Collapsed \layout Standard <3-> \end_inset In every joust one knight wins. \end_deeper \end_deeper \layout BeginFrame Tournaments are Complete Directed Graphs \layout Columns \begin_deeper \layout Column 5cm \layout Standard \begin_inset ERT status Inlined \layout Standard \backslash begin{pgfpicture}{1.5cm}{-1cm}{6.5cm}{4cm} \layout Standard \backslash color{beamerexample} \layout Standard \backslash pgfsetlinewidth{0.6pt} \layout Standard \backslash graphnode{A}{ \backslash pgfxy(2.5,1)} \layout Standard \backslash graphnode{B}{ \backslash pgfxy(5.5,1)} \layout Standard \backslash graphnode{C}{ \backslash pgfxy(4,-0.5)} \layout Standard \backslash graphnode{D}{ \backslash pgfxy(4,2.5)} \layout Standard \layout Standard \backslash color{white} \layout Standard \backslash pgfputat{ \backslash pgfnodecenter{A}}{ \backslash pgfbox[center,center]{$v_2$}} \layout Standard \backslash pgfputat{ \backslash pgfnodecenter{B}}{ \backslash pgfbox[center,center]{$v_3$}} \layout Standard \backslash pgfputat{ \backslash pgfnodecenter{C}}{ \backslash pgfbox[center,center]{$v_4$}} \layout Standard \backslash pgfputat{ \backslash pgfnodecenter{D}}{ \backslash pgfbox[center,center]{$v_1$}} \layout Standard \layout Standard \backslash color{beamerexample} \layout Standard \backslash pgfsetendarrow{ \backslash pgfarrowto} \layout Standard \backslash pgfnodesetsepstart{2pt} \layout Standard \backslash pgfnodesetsepend{4pt} \layout Standard \backslash pgfnodeconnline{A}{B} \layout Standard \backslash pgfnodeconnline{A}{C} \layout Standard \backslash pgfnodeconnline{D}{A} \layout Standard \backslash pgfnodeconnline{C}{B} \layout Standard \backslash pgfnodeconnline{B}{D} \layout Standard \backslash pgfnodeconnline{D}{C} \layout Standard \backslash end{pgfpicture} \end_inset \layout Column 6cm \layout Definition \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset A \color red tournament \color default is a \begin_deeper \layout Enumerate directed graphs, \layout Enumerate with exactly one edge between \newline any two different vertices. \end_deeper \end_deeper \layout BeginFrame \begin_inset ERT status Collapsed \layout Standard [<+>] \end_inset Tournaments Arise Naturally in Different Situations \layout ExampleBlock \begin_inset ERT status Inlined \layout Standard {Applicatins in Ordering Theory} \end_inset \begin_deeper \layout Standard Elements in a set need to be sorted. \newline The comparison relation may be cyclic, however. \end_deeper \layout Separator \layout ExampleBlock \begin_inset ERT status Inlined \layout Standard {Applications in Sociology} \end_inset \begin_deeper \layout Standard Several candidates apply for a position. \newline Reviewers decide for any two candidates whom they prefer. \end_deeper \layout Separator \layout ExampleBlock \begin_inset ERT status Inlined \layout Standard {Applications in Structural Complexity Theory} \end_inset \begin_deeper \layout Standard A language \begin_inset Formula $L$ \end_inset is given and a selector function \begin_inset Formula $f$ \end_inset . \newline It chooses from any two words the one more likely to be in \begin_inset Formula $f$ \end_inset . \end_deeper \layout Subsection What Does ``Finding Paths'' Mean? \layout BeginFrame ``Finding Paths'' is Ambiguous \layout Block \begin_inset ERT status Inlined \layout Standard { \backslash strut Input for \backslash ignorespaces \backslash def \backslash par{}% because LyX inserts superfluous paragraphs \layout Standard \backslash only<1>{Path Finding Problems} \backslash ignorespaces \layout Standard \backslash only<2-3>{$ \backslash Lang{reach}$} \backslash ignorespaces \layout Standard \backslash only<4-5>{the Construction Problem} \backslash ignorespaces \layout Standard \backslash only<6-7>{the Optimization Problem} \backslash ignorespaces \layout Standard \backslash only<8-9>{$ \backslash Lang{distance}$} \backslash ignorespaces \layout Standard \backslash only<10->{the Approximation Problem}} \end_inset \begin_deeper \layout Itemize A \color red graph \color default \begin_inset Formula $G=(V,E)$ \end_inset , a \color red source \color default \begin_inset Formula $s\in V$ \end_inset and a \color red target \color default \begin_inset Formula $t\in V$ \end_inset . \layout Itemize \begin_inset ERT status Collapsed \layout Standard \end_inset A \color red maximum distance \color default \SpecialChar ~ \begin_inset Formula $d$ \end_inset . \begin_inset ERT status Collapsed \layout Standard \backslash phantom{p} \end_inset \layout Itemize \begin_inset ERT status Collapsed \layout Standard \end_inset An \color red approximation ratio \color default \begin_inset Formula $r>1$ \end_inset . \end_deeper \layout Standard \begin_inset ERT status Collapsed \layout Standard \backslash nointerlineskip \end_inset \layout Overprint \begin_deeper \layout Standard \begin_inset ERT status Inlined \layout Standard \backslash onslide<1,3,5,7,9,11-12> \end_inset \layout Columns \begin_inset ERT status Inlined \layout Standard [t,onlytextwidth] \end_inset \begin_deeper \layout Standard \begin_inset ERT status Inlined \layout Standard \backslash alt<1-2>{ \backslash column{ \backslash textwidth}}{ \backslash column{5cm}} \end_inset \layout ExampleBlock \begin_inset ERT status Inlined \layout Standard {Example Input} \end_inset \begin_deeper \layout Standard \begin_inset ERT status Inlined \layout Standard \backslash begin{pgfpicture}{2.5cm}{-0.6cm}{7.5cm}{2.6cm} \layout Standard \backslash color{beamerexample} \layout Standard \backslash pgfsetlinewidth{0.6pt} \layout Standard \backslash graphnode{A}{ \backslash pgfxy(3,1)} \layout Standard \backslash graphnode{B}{ \backslash pgfxy(5,1)} \layout Standard \backslash graphnode{C}{ \backslash pgfxy(4,0)} \layout Standard \backslash graphnode{D}{ \backslash pgfxy(4,2)} \layout Standard \layout Standard \backslash color{white} \layout Standard \backslash pgfputat{ \backslash pgfnodecenter{B}}{ \backslash pgfbox[center,center]{$t$}} \layout Standard \backslash pgfputat{ \backslash pgfnodecenter{D}}{ \backslash pgfbox[center,center]{$s$}} \layout Standard \layout Standard \backslash color{beamerexample} \layout Standard \backslash pgfsetendarrow{ \backslash pgfarrowto} \layout Standard \backslash pgfnodesetsepstart{2pt} \layout Standard \backslash pgfnodesetsepend{4pt} \layout Standard \backslash pgfnodeconnline{A}{B} \layout Standard \backslash pgfnodeconnline{A}{C} \layout Standard \backslash pgfnodeconnline{D}{A} \layout Standard \backslash pgfnodeconnline{C}{B} \layout Standard \backslash pgfnodeconnline{B}{D} \layout Standard \backslash pgfnodeconnline{D}{C} \layout Standard \layout Standard \backslash only<9> { \backslash pgfputat{ \backslash pgfxy(5.3,1)}{ \backslash pgfbox[left,center]{, $d=2$}}} \layout Standard \backslash only<11>{ \backslash pgfputat{ \backslash pgfxy(5.3,1)}{ \backslash pgfbox[left,center]{, $r=1.5$}}} \layout Standard \backslash only<12>{ \backslash pgfputat{ \backslash pgfxy(5.3,1)}{ \backslash pgfbox[left,center]{, $r=1.25$}}} \layout Standard \backslash end{pgfpicture} \end_inset \end_deeper \layout Standard \begin_inset ERT status Inlined \layout Standard \backslash only<3->{ \backslash column{5cm}} \end_inset \layout ExampleBlock \begin_inset ERT status Inlined \layout Standard {Example Output} \end_inset \begin_deeper \layout Standard \begin_inset ERT status Inlined \layout Standard \backslash begin{pgfpicture}{2.5cm}{-0.6cm}{7.5cm}{2.6cm} \layout Standard \backslash only<5-8,10->{ \layout Standard \backslash color{beamerexample} \layout Standard \backslash pgfsetlinewidth{0.6pt} \layout Standard \backslash graphnode{A}{ \backslash pgfxy(3,1)} \layout Standard \backslash graphnode{B}{ \backslash pgfxy(5,1)} \layout Standard \backslash graphnode{C}{ \backslash pgfxy(4,0)} \layout Standard \backslash graphnode{D}{ \backslash pgfxy(4,2)} \layout Standard \layout Standard \backslash color{white} \layout Standard \backslash pgfputat{ \backslash pgfnodecenter{B}}{ \backslash pgfbox[center,center]{$t$}} \layout Standard \backslash pgfputat{ \backslash pgfnodecenter{D}}{ \backslash pgfbox[center,center]{$s$}} \layout Standard \layout Standard \backslash color{beamerexample} \layout Standard \backslash pgfsetendarrow{ \backslash pgfarrowto} \layout Standard \backslash pgfnodesetsepstart{2pt} \layout Standard \backslash pgfnodesetsepend{4pt} \layout Standard \layout Standard \backslash alert<7,12>{ \backslash pgfnodeconnline{A}{B}} \layout Standard \backslash alert<5,11>{ \backslash pgfnodeconnline{A}{C}} \layout Standard \backslash alert<5,7,11-12>{ \backslash pgfnodeconnline{D}{A}} \layout Standard \backslash alert<5,11>{ \backslash pgfnodeconnline{C}{B}} \layout Standard \backslash pgfnodeconnline{B}{D} \layout Standard \backslash pgfnodeconnline{D}{C} \layout Standard } \layout Standard \backslash only<3,9>{ \backslash pgfputat{ \backslash pgfxy(2.75,1)}{ \backslash pgfbox[left,center]{ \backslash alert{``Yes''}}}} \layout Standard \backslash end{pgfpicture} \end_inset \end_deeper \end_deeper \layout Standard \begin_inset ERT status Inlined \layout Standard \backslash onslide<2,4,6,8,10> \end_inset \layout Block \begin_inset ERT status Inlined \layout Standard {Variants of Path Finding Problems} \end_inset \begin_deeper \layout Standard \begin_inset ERT status Inlined \layout Standard \backslash usedescriptionitemofwidthas{Approximation Problem:} \end_inset \layout Description Reachability\SpecialChar ~ Problem: \begin_inset ERT status Collapsed \layout Standard <2-> \end_inset Is there a path from \begin_inset Formula $s$ \end_inset to\SpecialChar ~ \begin_inset Formula $t$ \end_inset ? \layout Description Construction\SpecialChar ~ Problem: \begin_inset ERT status Collapsed \layout Standard <4-> \end_inset Construct a path from \begin_inset Formula $s$ \end_inset to\SpecialChar ~ \begin_inset Formula $t$ \end_inset ? \layout Description Optimization\SpecialChar ~ Problem: \begin_inset ERT status Collapsed \layout Standard <6-> \end_inset Construct a shortest path from \begin_inset Formula $s$ \end_inset to\SpecialChar ~ \begin_inset Formula $t$ \end_inset . \layout Description Distance\SpecialChar ~ Problem: \begin_inset ERT status Collapsed \layout Standard <8-> \end_inset Is the distance of \begin_inset Formula $s$ \end_inset and\SpecialChar ~ \begin_inset Formula $t$ \end_inset at most\SpecialChar ~ \begin_inset Formula $d$ \end_inset ? \layout Description Approximation\SpecialChar ~ Problem: \begin_inset ERT status Collapsed \layout Standard <10-> \end_inset Construct a path from \begin_inset Formula $s$ \end_inset to\SpecialChar ~ \begin_inset Formula $t$ \end_inset of length \newline approximately their distance. \end_deeper \end_deeper \layout Section Review \layout Subsection Standard Complexity Classes \layout Standard \begin_inset ERT status Inlined \layout Standard \backslash pgfdeclaremask{computer-mask}{beamer-g4-mask} \backslash pgfdeclareimage[height=2cm,mask=computer-mask,interpolate=true]{computer}{beamer-g4} \end_inset \layout BeginFrame The Classes L and NL are Defined via \newline Logspace Turing Machines \layout Standard \begin_inset ERT status Open \layout Standard \backslash begin{pgfpicture}{-0.5cm}{0cm}{8cm}{5cm} \layout Standard \backslash pgfputat{ \backslash pgfxy(0,4)}{ \backslash tape{input tape (read only), $n$ symbols}{}{3401234*3143223=}} \layout Standard \backslash uncover<2->{ \layout Standard \backslash pgfputat{ \backslash pgfxy(0,0.5)}{ \backslash tape{}{output tape (write only)}{10690836937182}}} \layout Standard \backslash uncover<3->{ \layout Standard \backslash pgfputat{ \backslash pgfxy(7,2)}{ \backslash shorttape{work tape (read/write), $O( \backslash log n)$ symbols}{}{42}} \layout Standard \backslash pgfputat{ \backslash pgfxy(1.75,2.5)}{ \backslash pgfbox[center,center]{ \backslash pgfuseimage{computer}}} \layout Standard } \layout Standard \backslash pgfsetlinewidth{0.6pt} \layout Standard \layout Standard \backslash color{structure} \layout Standard \backslash pgfsetendarrow{ \backslash pgfarrowto} \layout Standard \backslash pgfxycurve(1.75,3.5)(1.75,3.75)(0,3.5)(0,3.85) \layout Standard \backslash uncover<2->{ \backslash pgfxycurve(1.75,1.5)(1.75,1)(0,1.5)(0,1.05)} \layout Standard \backslash uncover<3->{ \backslash pgfxycurve(2.65,2.5)(3.75,2.5)(7,1)(7,1.9)} \layout Standard \backslash end{pgfpicture} \end_inset \layout BeginFrame Logspace Turing Machines Are Quite Powerful \layout Block \begin_inset ERT status Inlined \layout Standard {Deterministic logspace machines can compute} \end_inset \begin_deeper \layout Itemize addition, multiplication, and even division \layout Itemize reductions used in completeness proofs, \layout Itemize reachability in forests. \end_deeper \layout Pause \layout Block \begin_inset ERT status Inlined \layout Standard {Non-deterministic logspace machines can compute} \end_inset \begin_deeper \layout Itemize reachability in graphs, \layout Itemize non-reachability in graphs, \layout Itemize satisfiability with two literals per clause. \end_deeper \layout BeginFrame \begin_inset ERT status Inlined \layout Standard <1>[label=hierarchy] \end_inset The Complexity Class Hierarchy \layout Standard \begin_inset ERT status Inlined \layout Standard \backslash begin{pgfpicture}{-5.4cm}{0cm}{5.4cm}{5.5cm} \layout Standard \backslash pgfsetlinewidth{0.8pt} \layout Standard \backslash heap{5.5}{3.5}{$ \backslash Class P$}{black}{1} \layout Standard \backslash pgfsetdash{{2pt}}{0pt} \layout Standard \backslash only<2->{ \backslash heap{4.5}{3}{$ \backslash Class{NC}^2$}{black!50!structure}{2}} \layout Standard \backslash heap{3.5}{2.5}{$ \backslash Class{NL}$}{black!50!structure}{3} \layout Standard \backslash heap{2.5}{2}{$ \backslash Class{L}$}{black!50!structure}{4} \layout Standard \backslash only<2->{ \backslash heap{1.75}{1.5}{$ \backslash vphantom{A} \backslash smash{ \backslash Class{NC}^1}$}{black!50!structure}{5}} \layout Standard \backslash pgfsetdash{}{0pt} \layout Standard \backslash only<2->{ \backslash heap{1.1}{1}{$ \backslash vphantom{A} \backslash smash{ \backslash Class{AC}^0}$}{black}{6}} \layout Standard \layout Standard \backslash pgfsetlinewidth{1.0pt} \layout Standard \backslash color{black} \layout Standard \backslash pgfxyline(-5,0)(5,0) \layout Standard \layout Standard \backslash only<1-2>{ \backslash langat{3.375}{$ \backslash Lang{reach}$}} \layout Standard \backslash only<1-2>{ \backslash langat{2.375}{$ \backslash Lang{reach}_{ \backslash operatorname{forest}}$}} \layout Standard \layout Standard \backslash only<2>{ \backslash langat{0.975}{$ \backslash Lang{addition}$}} \layout Standard \backslash only<2>{ \backslash langatother{1.6}{ \backslash vbox{ \backslash hbox{$ \backslash Lang{division}$,} \backslash hbox{$ \backslash Lang{parity}$}}}} \layout Standard \backslash only<3-5>{ \backslash langat{3.375}{ \backslash vbox{ \backslash hbox{$ \backslash Lang{distance}$,} \backslash hbox{$ \backslash Lang{reach}$}}}} \layout Standard \backslash only<4->{ \backslash langatother{2.375}{ \backslash vbox{ \backslash ignorespaces \layout Standard \backslash hbox{$ \backslash Lang{distance}_{ \backslash operatorname{forest}}$,} \backslash ignorespaces \layout Standard \backslash hbox{$ \backslash Lang{reach}_{ \backslash operatorname{forest}}$,} \backslash ignorespaces \layout Standard \backslash hbox{$ \backslash Lang{distance}_{ \backslash operatorname{path}}$,} \backslash ignorespaces \layout Standard \backslash hbox{$ \backslash Lang{reach}_{ \backslash operatorname{path}}$}}}} \layout Standard \backslash only<5->{ \backslash langat{0.975}{$ \backslash Lang{reach}_{ \backslash operatorname{tourn}}$}} \layout Standard \backslash only<6->{ \backslash langat{3.375}{ \backslash vbox{ \backslash ignorespaces \layout Standard \backslash hbox{$ \backslash Lang{distance}_{ \backslash operatorname{tourn}}$,} \backslash ignorespaces \layout Standard \backslash hbox{$ \backslash Lang{distance}$,} \backslash ignorespaces \layout Standard \backslash hbox{$ \backslash Lang{reach}$}}}} \layout Standard \backslash only<7->{ \backslash pgfsetdash{{1pt}}{0pt} \backslash langat{2.375}{``$ \backslash Lang{approx}_{ \backslash operatorname{tourn}}$''}} \layout Standard \backslash end{pgfpicture} \end_inset \layout BeginFrame The Circuit Complexity Classes AC \begin_inset Formula $^{0}$ \end_inset , NC \begin_inset Formula $^{1}$ \end_inset , and NC \begin_inset Formula $^{2}$ \end_inset \newline Limit the Circuit Depth \layout Standard \begin_inset ERT status Inlined \layout Standard \backslash setlength \backslash leftmargini{1em} \layout Standard \backslash nointerlineskip \end_inset \layout Columns \begin_inset ERT status Collapsed \layout Standard [t] \end_inset \begin_deeper \layout Column 3.6cm \layout Block \begin_inset ERT status Collapsed \layout Standard { \end_inset Circuit Class \begin_inset Formula $\Class{AC}^{0}$ \end_inset \begin_inset ERT status Collapsed \layout Standard } \end_inset \begin_deeper \layout Itemize \begin_inset Formula $O(1)$ \end_inset depth \layout Itemize unbounded fan-in \end_deeper \layout Examples \begin_deeper \layout Itemize \begin_inset Formula $\Lang{addition}\in\Class{AC}^{0}$ \end_inset . \layout Itemize \begin_inset Formula $\Lang{parity}\notin\Class{AC}^{0}$ \end_inset . \end_deeper \layout Pause \layout Column 3.6cm \layout Block \begin_inset ERT status Collapsed \layout Standard { \end_inset Circuit Class \begin_inset Formula $\Class{NC}^{1}$ \end_inset \begin_inset ERT status Collapsed \layout Standard } \end_inset \begin_deeper \layout Itemize \begin_inset Formula $O(\log n)$ \end_inset depth \layout Itemize bounded fan-in \end_deeper \layout Examples \begin_deeper \layout Itemize \begin_inset Formula $\Lang{parity}\in\Class{NC}^{1}$ \end_inset . \layout Itemize \begin_inset Formula $\Lang{mutiply}\in\Class{NC}^{1}$ \end_inset . \layout Itemize \begin_inset Formula $\Lang{divide}\in\Class{NC}^{1}$ \end_inset . \end_deeper \layout Pause \layout Column 3.6cm \layout Block \begin_inset ERT status Collapsed \layout Standard { \end_inset Circuit Class \begin_inset Formula $\Class{NC}^{2}$ \end_inset \begin_inset ERT status Collapsed \layout Standard } \end_inset \begin_deeper \layout Itemize \begin_inset Formula $O(\log^{2}n)$ \end_inset depth \layout Itemize bounded fan-in \end_deeper \layout Examples \begin_deeper \layout Itemize \begin_inset Formula $\Class{NL}\subseteq\Class{NC}^{2}$ \end_inset . \end_deeper \end_deeper \layout AgainFrame \begin_inset ERT status Collapsed \layout Standard <2> \end_inset hierarchy \layout Subsection Standard Complexity Results on Finding Paths \layout BeginFrame All Variants of Finding Paths in Directed Graphs \newline Are Equally Difficult \layout Fact \begin_inset Formula $\Lang{reach}$ \end_inset and \begin_inset Formula $\Lang{distance}$ \end_inset are \begin_inset Formula $\Class{NL}$ \end_inset -complete. \layout Pause \layout Corollary For directed graphs, we can solve \begin_deeper \layout Itemize the reachability problem in logspace iff \begin_inset Formula $\Class{L}=\Class{NL}$ \end_inset . \layout Itemize the construction problem in logspace iff \begin_inset Formula $\Class{L}=\Class{NL}$ \end_inset . \layout Itemize the optimization problem in logspace iff \begin_inset Formula $\Class{L}=\Class{NL}$ \end_inset . \layout Itemize the approximation problem in logspace iff \begin_inset Formula $\Class{L}=\Class{NL}$ \end_inset . \end_deeper \layout AgainFrame \begin_inset ERT status Collapsed \layout Standard <3> \end_inset hierarchy \layout BeginFrame FindingPaths in Forests and Directed Paths is Easy, \newline But Not Trivial \layout Fact \begin_inset Formula $\Lang{reach}_{\operatorname{forest}}$ \end_inset and \begin_inset Formula $\Lang{distance}_{\operatorname{forest}}$ \end_inset are \begin_inset Formula $\Class{L}$ \end_inset -complete. \layout Separator \layout Fact \begin_inset Formula $\Lang{reach}_{\operatorname{path}}$ \end_inset and \begin_inset Formula $\Lang{distance}_{\operatorname{path}}$ \end_inset are \begin_inset Formula $\Class{L}$ \end_inset -complete. \layout AgainFrame \begin_inset ERT status Collapsed \layout Standard <4> \end_inset hierarchy \layout Section Finding Paths in Tournaments \layout Subsection Complexity of: Does a Path Exist? \layout BeginFrame Definition of the Tournament Reachability Problem \layout Definition Let \color red \begin_inset Formula $\Lang{reach}_{\operatorname{tourn}}$ \end_inset \color default contain all triples \begin_inset Formula $(T,s,t)$ \end_inset such that \begin_deeper \layout Enumerate \begin_inset Formula $T=(V,E)$ \end_inset is a tournament and \layout Enumerate there exists a path from\SpecialChar ~ \begin_inset Formula $s$ \end_inset to\SpecialChar ~ \begin_inset Formula $t$ \end_inset . \end_deeper \layout BeginFrame The Tournament Reachability Problem is Very Easy \layout Theorem \begin_inset Formula $\Lang{reach}_{\operatorname{tourn}}\in\Class{AC}^{0}$ \end_inset . \layout Pause \layout AlertBlock \begin_inset ERT status Inlined \layout Standard {Implications} \end_inset \begin_deeper \layout Itemize The problem is \begin_inset Quotes eld \end_inset easier \begin_inset Quotes erd \end_inset than \begin_inset Formula $\Lang{reach}$ \end_inset and even \begin_inset Formula $\Lang{reach}_{\operatorname{path}}$ \end_inset . \layout Itemize \begin_inset Formula $\Lang{reach}\not\le_{\operatorname{m}}^{\Class{AC}^{0}}\Lang{reach}_{\operatorname{tourn}}$ \end_inset . \end_deeper \layout AgainFrame \begin_inset ERT status Collapsed \layout Standard <5> \end_inset hierarchy \layout Subsection Complexity of: Construct a Shortest Path \layout BeginFrame Finding a Shortest Path Is as Difficult as \newline the Distance Problem \layout Definition Let \color red \begin_inset Formula $\Lang{distance}_{\operatorname{tourn}}$ \end_inset \color default contain all tuples \begin_inset Formula $(T,s,t,d)$ \end_inset such that \begin_deeper \layout Enumerate \begin_inset Formula $T=(V,E)$ \end_inset is a tournament in which \layout Enumerate the distance of \begin_inset Formula $s$ \end_inset and\SpecialChar ~ \begin_inset Formula $t$ \end_inset is at most\SpecialChar ~ \begin_inset Formula $d$ \end_inset . \end_deeper \layout BeginFrame The Tournament Distance Problem is Hard \layout Theorem \begin_inset Formula $\Lang{distance}_{\operatorname{tourn}}$ \end_inset is \begin_inset Formula $\Class{NL}$ \end_inset -complete. \layout Standard \hfill \begin_inset ERT status Inlined \layout Standard \backslash hyperlink{hierarchy<6>}{ \backslash beamerskipbutton{Skip Proof}} \end_inset \layout Pause \layout Corollary Shortest path in tournaments can be constructed \newline in logarithmic space, iff \begin_inset Formula $\Class{L}=\Class{NL}$ \end_inset . \layout Pause \layout Corollary \begin_inset Formula $\Lang{distance}\le_{\operatorname{m}}^{\Class{AC}^{0}}\Lang{distance}_{\operatorname{tourn}}$ \end_inset . \layout BeginFrame Proof That \begin_inset Formula $\Lang{distance}_{\operatorname{tourn}}$ \end_inset is NL-complete \layout Standard \begin_inset ERT status Collapsed \layout Standard \backslash nointerlineskip \end_inset \layout Columns \begin_inset ERT status Inlined \layout Standard [t,onlytextwidth] \end_inset \begin_deeper \layout Column 5.7cm \layout Standard \begin_inset ERT status Inlined \layout Standard \backslash setlength \backslash leftmargini{1.5em} \end_inset \layout Block \begin_inset ERT status Collapsed \layout Standard { \end_inset Reduce \begin_inset Formula $\Lang{reach}$ \end_inset to \begin_inset Formula $\Lang{distance}_{\operatorname{tourn}}$ \end_inset \begin_inset ERT status Collapsed \layout Standard } \end_inset \begin_deeper \layout Enumerate \begin_inset ERT status Inlined \layout Standard \end_inset Is input \begin_inset Formula $(G,s,t)$ \end_inset in \begin_inset Formula $\Lang{reach}$ \end_inset ? \layout Enumerate \begin_inset ERT status Inlined \layout Standard <2-| alert@2-8> \end_inset Map \begin_inset Formula $G$ \end_inset to \begin_inset Formula $G'$ \end_inset . \layout Enumerate \begin_inset ERT status Inlined \layout Standard <9-| alert@9> \end_inset Query: \newline \begin_inset Formula $(G',s',t',3)\in\Lang{distance}_{\operatorname{tourn}}$ \end_inset ? \end_deeper \layout Separator \layout Block \begin_inset ERT status Collapsed \layout Standard { \end_inset Correctness \begin_inset ERT status Collapsed \layout Standard } \end_inset \begin_inset ERT status Collapsed \layout Standard <10-> \end_inset \begin_deeper \layout Enumerate \begin_inset ERT status Inlined \layout Standard <10-| alert@10-11> \end_inset A path in\SpecialChar ~ \begin_inset Formula $G$ \end_inset induces \newline a length-3 path in\SpecialChar ~ \begin_inset Formula $G'$ \end_inset . \layout Enumerate \begin_inset ERT status Inlined \layout Standard <12-| alert@12-13> \end_inset A length-3 path in\SpecialChar ~ \begin_inset Formula $G'$ \end_inset induces \newline a path in\SpecialChar ~ \begin_inset Formula $G'$ \end_inset . \end_deeper \layout Column 4.5cm \layout Example \begin_inset ERT status Inlined \layout Standard \backslash begin{pgfpicture}{0cm}{-1.25cm}{4.5cm}{3.75cm} \layout Standard \backslash color{beamerexample} \layout Standard \backslash pgfsetlinewidth{0.6pt} \layout Standard \backslash graphnode{A}{ \backslash pgfxy(1,3.3)} \layout Standard \backslash graphnode{B}{ \backslash pgfxy(2,3.3)} \layout Standard \backslash graphnode{C}{ \backslash pgfxy(3,3.3)} \layout Standard \backslash graphnode{D}{ \backslash pgfxy(4,3.3)} \layout Standard \layout Standard \backslash color{white} \layout Standard \backslash pgfputat{ \backslash pgfnodecenter{A}}{ \backslash pgfbox[center,center]{$s$}} \layout Standard \backslash pgfputat{ \backslash pgfnodecenter{D}}{ \backslash pgfbox[center,center]{$t$}} \layout Standard \layout Standard \backslash color{beamerexample} \layout Standard \backslash pgfsetendarrow{ \backslash pgfarrowto} \layout Standard \backslash pgfnodesetsepstart{2pt} \layout Standard \backslash pgfnodesetsepend{2pt} \layout Standard \backslash alert<3>{ \backslash pgfnodeconnline{B}{A}} \layout Standard \backslash alert<4>{ \backslash pgfnodeconnline{B}{C}} \layout Standard \backslash alert<5,10-11,13>{ \backslash pgfnodeconnline{C}{D}} \layout Standard \backslash alert<6,10-11,13>{ \backslash pgfnodeconncurve{A}{C}{45}{135}{15pt}{15pt}} \layout Standard \layout Standard \backslash pgfputat{ \backslash pgfxy(0,3.3)}{ \backslash pgfbox[left,center]{$G \backslash colon$}} \layout Standard \layout Standard \backslash only<2->{ \layout Standard \backslash pgfputat{ \backslash pgfxy(0,2.25)}{ \backslash pgfbox[left,center]{$G' \backslash colon$}} \layout Standard \backslash graphnode{A1}{ \backslash pgfxy(1,2.25)} \layout Standard \backslash graphnode{B1}{ \backslash pgfxy(2,2.25)} \layout Standard \backslash graphnode{C1}{ \backslash pgfxy(3,2.25)} \layout Standard \backslash graphnode{D1}{ \backslash pgfxy(4,2.25)} \layout Standard \layout Standard \backslash graphnode{A2}{ \backslash pgfxy(1,1.25)} \layout Standard \backslash graphnode{B2}{ \backslash pgfxy(2,1.25)} \layout Standard \backslash graphnode{C2}{ \backslash pgfxy(3,1.25)} \layout Standard \backslash graphnode{D2}{ \backslash pgfxy(4,1.25)} \layout Standard \backslash graphnode{A3}{ \backslash pgfxy(1,0.25)} \layout Standard \backslash graphnode{B3}{ \backslash pgfxy(2,0.25)} \layout Standard \backslash graphnode{C3}{ \backslash pgfxy(3,0.25)} \layout Standard \backslash graphnode{D3}{ \backslash pgfxy(4,0.25)} \layout Standard \backslash graphnode{A4}{ \backslash pgfxy(1,-.75)} \layout Standard \backslash graphnode{B4}{ \backslash pgfxy(2,-.75)} \layout Standard \backslash graphnode{C4}{ \backslash pgfxy(3,-.75)} \layout Standard \backslash graphnode{D4}{ \backslash pgfxy(4,-.75)} \layout Standard { \backslash color{white} \layout Standard \backslash pgfputat{ \backslash pgfnodecenter{A1}}{ \backslash pgfbox[center,center]{$s'$}} \layout Standard \backslash pgfputat{ \backslash pgfnodecenter{D4}}{ \backslash pgfbox[center,center]{$t'$}} \layout Standard }} \layout Standard \layout Standard \backslash only<8->{ \layout Standard \backslash pgfsetlinewidth{0.4pt} \layout Standard \backslash color{beamerexample!25!averagebackgroundcolor} \layout Standard \backslash pgfnodeconnline{A2}{C1} \layout Standard \backslash pgfnodeconnline{A2}{D1} \layout Standard \backslash pgfnodeconnline{B2}{A1} \layout Standard \backslash pgfnodeconnline{B2}{C1} \layout Standard \backslash pgfnodeconnline{B2}{D1} \layout Standard \backslash pgfnodeconnline{C2}{D1} \layout Standard \backslash pgfnodeconnline{D2}{A1} \layout Standard \backslash pgfnodeconnline{D2}{B1} \layout Standard \backslash pgfnodeconnline{A3}{C2} \layout Standard \backslash pgfnodeconnline{A3}{D2} \layout Standard \backslash pgfnodeconnline{B3}{A2} \layout Standard \backslash pgfnodeconnline{B3}{C2} \layout Standard \backslash pgfnodeconnline{B3}{D2} \layout Standard \backslash pgfnodeconnline{C3}{D2} \layout Standard \backslash pgfnodeconnline{D3}{A2} \layout Standard \backslash pgfnodeconnline{D3}{B2} \layout Standard \backslash pgfnodeconnline{A4}{C3} \layout Standard \backslash pgfnodeconnline{A4}{D3} \layout Standard \backslash pgfnodeconnline{B4}{A3} \layout Standard \backslash pgfnodeconnline{B4}{C3} \layout Standard \backslash pgfnodeconnline{B4}{D3} \layout Standard \backslash pgfnodeconnline{C4}{D3} \layout Standard \backslash pgfnodeconnline{D4}{A3} \layout Standard \backslash pgfnodeconnline{D4}{B3} \layout Standard \layout Standard \backslash pgfsetstartarrow{ \backslash pgfarrowto} \layout Standard \backslash pgfnodeconnline{A1}{B1} \layout Standard \backslash pgfnodeconnline{B1}{C1} \layout Standard \backslash pgfnodeconnline{C1}{D1} \layout Standard \backslash pgfnodeconnline{A2}{B2} \layout Standard \backslash pgfnodeconnline{B2}{C2} \layout Standard \backslash pgfnodeconnline{C2}{D2} \layout Standard \backslash pgfnodeconnline{A3}{B3} \layout Standard \backslash pgfnodeconnline{B3}{C3} \layout Standard \backslash pgfnodeconnline{C3}{D3} \layout Standard \backslash pgfnodeconnline{A4}{B4} \layout Standard \backslash pgfnodeconnline{B4}{C4} \layout Standard \backslash pgfnodeconnline{C4}{D4} \layout Standard \layout Standard \backslash pgfclearstartarrow \layout Standard \backslash pgfnodeconncurve{A3}{A1}{135}{-135}{10pt}{10pt} \layout Standard \backslash pgfnodeconncurve{A4}{A2}{135}{-135}{10pt}{10pt} \layout Standard \backslash pgfnodeconncurve{A4}{A1}{135}{-135}{15pt}{15pt} \layout Standard \backslash pgfnodeconncurve{B3}{B1}{135}{-135}{10pt}{10pt} \layout Standard \backslash pgfnodeconncurve{B4}{B2}{135}{-135}{10pt}{10pt} \layout Standard \backslash pgfnodeconncurve{B4}{B1}{135}{-135}{15pt}{15pt} \layout Standard \backslash pgfnodeconncurve{C3}{C1}{135}{-135}{10pt}{10pt} \layout Standard \backslash pgfnodeconncurve{C4}{C2}{135}{-135}{10pt}{10pt} \layout Standard \backslash pgfnodeconncurve{C4}{C1}{135}{-135}{15pt}{15pt} \layout Standard \backslash pgfnodeconncurve{D3}{D1}{135}{-135}{10pt}{10pt} \layout Standard \backslash pgfnodeconncurve{D4}{D2}{135}{-135}{10pt}{10pt} \layout Standard \backslash pgfnodeconncurve{D4}{D1}{135}{-135}{15pt}{15pt} \layout Standard \backslash color{beamerexample} \layout Standard \backslash pgfsetlinewidth{0.6pt} \layout Standard } \layout Standard \layout Standard \backslash only<3->{ \layout Standard \backslash color<3>{red} \layout Standard \backslash pgfnodeconnline{B1}{A2} \layout Standard \backslash pgfnodeconnline{B2}{A3} \layout Standard \backslash pgfnodeconnline{B3}{A4} \layout Standard } \layout Standard \layout Standard \backslash only<4->{ \layout Standard \backslash color<4>{red} \layout Standard \backslash pgfnodeconnline{B1}{C2} \layout Standard \backslash pgfnodeconnline{B2}{C3} \layout Standard \backslash pgfnodeconnline{B3}{C4} \layout Standard } \layout Standard \layout Standard \backslash only<5->{ \layout Standard \backslash color<5>{red} \layout Standard \backslash pgfnodeconnline{C1}{D2} \layout Standard \backslash alert<11>{ \backslash pgfnodeconnline{C2}{D3}} \layout Standard \backslash alert<12-13>{ \backslash pgfnodeconnline{C3}{D4}} \layout Standard } \layout Standard \layout Standard \backslash only<6->{ \layout Standard \backslash color<6>{red} \layout Standard \backslash alert<11>{ \backslash pgfnodeconnline{A1}{C2}} \layout Standard \backslash alert<12-13>{ \backslash pgfnodeconnline{A2}{C3}} \layout Standard \backslash pgfnodeconnline{A3}{C4} \layout Standard } \layout Standard \layout Standard \backslash only<7->{ \layout Standard \backslash color<7>{red} \layout Standard \backslash alert<12-13>{ \backslash pgfnodeconnline{A1}{A2}} \layout Standard \backslash pgfnodeconnline{A2}{A3} \layout Standard \backslash pgfnodeconnline{A3}{A4} \layout Standard \backslash pgfnodeconnline{B1}{B2} \layout Standard \backslash pgfnodeconnline{B2}{B3} \layout Standard \backslash pgfnodeconnline{B3}{B4} \layout Standard \backslash pgfnodeconnline{C1}{C2} \layout Standard \backslash pgfnodeconnline{C2}{C3} \layout Standard \backslash pgfnodeconnline{C3}{C4} \layout Standard \backslash pgfnodeconnline{D1}{D2} \layout Standard \backslash pgfnodeconnline{D2}{D3} \layout Standard \backslash alert<11>{ \backslash pgfnodeconnline{D3}{D4}} \layout Standard } \layout Standard \backslash end{pgfpicture} \end_inset \end_deeper \layout AgainFrame \begin_inset ERT status Collapsed \layout Standard <6> \end_inset hierarchy \layout Subsection Complexity of: Approximating the Shortest Path \layout BeginFrame Approximators Compute Paths that Are Nearly As Short As a Shortest Path \layout Definition An \color red approximation scheme for \begin_inset Formula $\Lang{tournament-shortest-path}$ \end_inset \color default gets as input \begin_deeper \layout Enumerate a tuple \begin_inset Formula $(T,s,t)\in\Lang{reach}_{\operatorname{tourn}}$ \end_inset and \layout Enumerate a number \begin_inset Formula $r>1$ \end_inset . \layout Standard It outputs \layout Itemize a path from \begin_inset Formula $s$ \end_inset to\SpecialChar ~ \begin_inset Formula $t$ \end_inset of length at most \begin_inset Formula $r\operatorname{d_{T}}(s,t)$ \end_inset . \end_deeper \layout BeginFrame There Exists a Logspace Approximation Scheme for \newline the Tournament Shortest Path Problem \layout Theorem There exists an approximation scheme for \begin_inset Formula $\Lang{tournament-shortest-path}$ \end_inset that for \begin_inset Formula $1 \end_inset hierarchy \layout Section* Summary \layout Subsection* Summary \layout BeginFrame Summary \layout Block \begin_inset ERT status Inlined \layout Standard {Summary} \end_inset \begin_deeper \layout Itemize Tournament \color red reachability \color default is in \color red \begin_inset Formula $\Class{AC}^{0}$ \end_inset \color default . \layout Itemize There exists a \color red logspace approximation scheme \color default for \color red approximating \color default shortest paths in tournaments. \layout Itemize Finding \color red shortest paths \color default in tournaments is \color red \begin_inset Formula $\Class{NL}$ \end_inset -complete \color default . \end_deeper \layout Separator \layout Block \begin_inset ERT status Inlined \layout Standard {Outlook} \end_inset \begin_deeper \layout Itemize The same results apply to graphs with \newline bounded independence number. \hfill \begin_inset ERT status Inlined \layout Standard \backslash hyperlink{independence}{ \backslash beamergotobutton{More Details}} \end_inset \layout Itemize The complexity of finding paths in undirected graphs \newline is partly open. \hfill \begin_inset ERT status Inlined \layout Standard \backslash hyperlink{undirected}{ \backslash beamergotobutton{More Details}} \end_inset \end_deeper \layout Subsection* For Further Reading \layout BeginFrame For Further Reading \layout Standard \begin_inset ERT status Inlined \layout Standard \backslash beamertemplatebookbibitems \end_inset \layout Bibliography \bibitem {Moon1968} \SpecialChar ~ John Moon. \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset \emph on Topics on Tournaments. \emph default \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset Holt, Rinehart, and Winston, 1968. \begin_inset ERT status Inlined \layout Standard \backslash beamertemplatearticlebibitems \end_inset \layout Bibliography \bibitem {NickelsenT2002} \SpecialChar ~ Arfst Nickelsen and Till Tantau. \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset On reachability in graphs with bounded independence number. \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset In \emph on Proc. of COCOON 2002 \emph default , Springer-Verlag, 2002. \layout Bibliography \bibitem {Tantau2004b} \SpecialChar ~ Till Tantau \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset A logspace approximation scheme for the shortest path problem for graphs with bounded independence number. \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset In \emph on Proc. of STACS 2004 \emph default , Springer-Verlag, 2004. \begin_inset ERT status Collapsed \layout Standard \backslash newblock \end_inset In press. \layout EndFrame \layout Standard \start_of_appendix \begin_inset ERT status Inlined \layout Standard \backslash AtBeginSubsection[]{} \end_inset \layout Section Appendix \layout Subsection Graphs With Bounded Independence Number \layout BeginFrame \begin_inset ERT status Inlined \layout Standard [label=independence] \end_inset Definition of Independence Number of a Graph \layout Definition The \color red independence number \color default \begin_inset Formula $\alpha(G)$ \end_inset of a directed graph \newline is the maximum number of vertices we can pick, \newline such that there is no edge between them. \layout Example Tournaments have independence number 1. \layout BeginFrame The Results for Tournaments also Apply to \newline Graphs With Bounded Independence Number \layout Theorem For each\SpecialChar ~ \begin_inset Formula $k$ \end_inset , \color red reachability \color default in graphs with independence number \newline at most\SpecialChar ~ \begin_inset Formula $k$ \end_inset is in \begin_inset Formula $\Class{AC}^{0}$ \end_inset . \layout Separator \layout Theorem For each\SpecialChar ~ \begin_inset Formula $k$ \end_inset , there exists a \color red logspace approximation scheme \color default for approximating the shortest path in graphs with independence number at most\SpecialChar ~ \begin_inset Formula $k$ \end_inset \layout Separator \layout Theorem For each\SpecialChar ~ \begin_inset Formula $k$ \end_inset , finding the \color red shortest path \color default in graphs with independence number at most\SpecialChar ~ \begin_inset Formula $k$ \end_inset is \color red \begin_inset Formula $\Class{NL}$ \end_inset -complete \color default . \layout Subsection Finding Paths in Undirected Graphs \layout BeginFrame \begin_inset ERT status Inlined \layout Standard <1-2>[label=undirected] \end_inset The Complexity of Finding Paths in Undirected Graphs \newline Is Party Unknown. \layout Fact \begin_inset Formula $\Lang{reach}_{\operatorname{undirected}}$ \end_inset is \begin_inset Formula $\Class{SL}$ \end_inset -complete. \layout Corollary For undirected graphs, we can solve \begin_deeper \layout Itemize the reachability problem in logspace iff \begin_inset Formula $\Class L=\Class{SL}$ \end_inset , \layout Itemize the construction problem in logspace iff \begin_inset ERT status Inlined \layout Standard \backslash alt<1>{?}{ \backslash alert{$ \backslash Class L = \backslash Class{SL}$}} \end_inset , \layout Itemize the optimization problem in logspace iff \begin_inset ERT status Inlined \layout Standard \backslash alt<1>{?}{ \backslash alert{$ \backslash Class L = \backslash Class{NL}$}} \end_inset , \layout Itemize the approximation problem in logspace iff ?. \end_deeper \layout Subsection The Approximation Scheme is Optimal \layout BeginFrame \begin_inset ERT status Inlined \layout Standard [label=optimality] \end_inset The Approximation Scheme is Optimal \layout Theorem Suppose there exists an approximation scheme for \begin_inset Formula $\Lang{tournament-shortest-path}$ \end_inset that needs space \begin_inset Formula $O\bigl(\log|V|\log^{1-\epsilon}\frac{1}{r-1}\bigr)$ \end_inset . Then \begin_inset Formula $\Class{NL}\subseteq\Class{DSPACE}\bigl[\log^{2-\epsilon}n\bigr]$ \end_inset . \layout Proof \begin_deeper \layout Enumerate Suppose the approximation scheme exists. \newline We show \begin_inset Formula $\Lang{distance}_{\operatorname{tourn}}\in\Class{DSPACE}\bigl[\log^{2-\epsilon}n\bigr]$ \end_inset . \layout Enumerate Let \begin_inset Formula $(T,s,t)$ \end_inset be an input. Let \begin_inset Formula $n$ \end_inset be the number of vertices. \layout Enumerate Run the approximation scheme for \begin_inset Formula $r:=1+\smash{\frac{1}{n+1}}$ \end_inset . \newline This needs space \begin_inset Formula $\smash{O(\log^{2-\epsilon}n)}$ \end_inset . \layout Enumerate The resulting path has optimal length. \begin_inset ERT status Collapsed \layout Standard \backslash qedhere \end_inset \end_deeper \layout EndFrame \the_end beamer/examples/beamerexample-lecture-beamer-version.pdf0000644000175000017500000130173612050430650023364 0ustar mohuramohura%PDF-1.5 % 78 0 obj << /Length 829 /Filter /FlateDecode >> stream xV[o0~c/&1$ Ln-M\s;[۴сnRr) (\ kx"&)@4P*&q, AA,p yWH,{:]Ghƈc @)LATR7/|0NMz?+nkG1(XE]|idW  +8jyI,Ѓ`i >8n%p #x=2`Ҵ{կsz['9|҇ z`^m^ysmNY7΄!1 !epmQ⭎81V p؃:2u4:"mW~g3(2KdI%lh+ק+exSUN Ś3]ջJiV?II]9y,7n.d~\۲MvhC/4&[TwH)܄,Q[Z6l϶^W_H8-sWZg-z.yw5>{pù#%0K%\NhI_ zge(RV7ahUS^;{0p"4J8. Znm".+to,Y Mg%"]Kc_(bk endstream endobj 62 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/Users/joseph/Library/texmf/tex/latex/beamer/examples/a-lecture/beamerexample-lecture-logo.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 86 0 R /BBox [0 0 84.336 59.531] /Resources << /Font << /F26 87 0 R>> /XObject << /Fm2 88 0 R /Fm1 89 0 R /Fm4 90 0 R /Fm3 91 0 R /Fm5 92 0 R /Fm6 93 0 R >>/ProcSet [ /PDF /Text ] >> /Length 19728 /Filter /FlateDecode >> stream x}K$\,zKہ=~*Zt17?A*Q]מ{TP"DMw;;_o1/_p7k~.ƯǷvkPo4FFۍ#8BnߚdCy#?㶣Xj oL-;?JK;?VϷA?n| ow ׾9o@k0HJ.s4_-u%xc i>H ooApq܍)xGPVs/\C,LxǶ_ [{.}q/{htZr,oa.Bopo⳯o_t_k92}Eɍƿ_/Vrt9`^U9z6O|ƨn̟pω5dGZs˟1Bv1}8NgvUtQX+=SJKp!|;|}xGB%w f<'_Wh}hbo8ĿiCA$69iO'+\H{WikJiAh,npG,ו@7]_Bb*)k( Z> D}j 0'RCZY^; (:YP ^k;Ʒ:hU˖Jt{/8xow|pJwq|!*O)&R KImZ-Cpt)$7$й+x >|LS}nzUVLT瑈&pH&V8`/B!Iլz&H"ܽgxK 'e% ućVR؏=P$i}— ;vSĭDB s7E  Ė<[M?xZwI|-bȖ ގ}ٟPeʸ7Xfܕ ) P=[k^P:bR/~& j/QHQI]t:O]JDK hi#P>K^t̙/]GF YPF"dj gMPoՙ9˻wģЬ~EwVFw21o×?@P|%fIPZ# 0I^$L$4O%tpeld4ȎF0N*c<\IH;O }/Q$l\8+[_9mK-,uX_N„Vײ Ph wVXFwZ݆V7P&x'TXUK>V(+O5QpD+j. u2tBK%7..r^ i!EB}%\ qHympZnUe紐_2ѝ賉Zm@ zHt 'WkMko--wrNe!vvBwGI z.'_=ԧ!4gВ[e"t=G[%i."Y"tZB:- қa\j#QUGHL0k"l+y)}GGI,{:Oqaa/d祘,O-X߯夬rSp`9Kd\;p=ԑ/ a5z qC N4OiԑgY Rk'[PMqUުjewڶpBb8F{F %_݊$+7 "5vC l0̱L2nT,"z\ +ći5`cX/%.܊p x \`}A]0ٶ^x{0{EnvC6m./zL'DFM$$vK]~\1n$Hjשi< x5$谀7De7P;F5-0`ϡrdLŦ"!LTu \74?7x+`!b}=x+5u*H`EOBnz&$*'0KQtIRb[B]ݓDQݜzܑe4&htk"kxdMWcHҕC ɏ< U$I mB%@Z" NIcI.@̪ R1L::$\AGËoMA2YϠ"3`Ih=-tIhOo  q!K&; &Uw']_j-Ό}4jՄ]4hj$S;NGO/\V4b(_8aG0+Ʊ$ p+pWvB{zn(ߺsŶ_fYŲ.ɱpw_ c) #pl'Ƴd_ \i4WwmhPn%WXX&Zg, Z>y E'T>f)L0.yZh=Ēdis@MDwclJ $/jsjj:声@h-TS1|eaqģb5u3I9Y>/b]c#TuرC̟0;<+} ܌4X"*=f\tt< KFRIri5oTrh5\-P01YZ*XosԁF(zA K9 f qZ|Ji(95¸\e&$#Yx neV>y)E6hbF925BLF0WKV=K"#p7X*spP#e{|Z+lz/ؤJ|4:>Lq5[=?Hnq_!f' DwZW他3:_=W[snk_^d3 qZluC@Pjw'| }=Xtr7`#,* Q~fp7s z[٨.M 2VNa6cх]c7^6Bsc۔q?{l9B i$~`]ta9đV@W+`5 4R뇚v2JH~—i,> FO.W-ӡ=ȓCk/2q'@$2m6Y<UFXZtWQWhٸB<{%| '1:\ptjO= \ Y@{2ACv'6=?1Lo< 7SDD)Gk|y9J0C8h&n 8Lĸ[ Y.|p(:Gt,;/czGNvmt1„߅9EX !D[VWV ·9\p.,ݱ #+C =2X|$"2*Ɏ$ߥ>_3Ts X!Ghx!0W;tP-"Yjۗ!$9+ҁ/f?l!b%>@j>iGÊ>^k+eD8Cm{Jw,Rvkޤ#2"O4 |0ȳZfZed18pD6=HH0$ :2`S CIKh;/!M"1hKO#(ݛOEO*µ@EvoHz8)Hk2Pk"d&_z&y2]>e,PZ1YBwN@C \ :xܮHWp!s`YD2~@$G&%a̚"$J$=Gc8 Tl`T2 =U8fo RA?Ш@6ȗr\m14%֦JM2:e5MҢsQxh'g?0O2tjvtsG+%vGr R-ҚH7#CmsrVp\sivNd :+i/h:t4xml'Yp4&tU':@2ntl5\\P[ pS9+ #嬉K92SxyRDf: yte&D*%6J*(n8!c D600 \2}y@2~@XY^CLI4i \]^^!g+sD'T>F)kNx9pq!B %4rĚbc 9gl`8|!;4,F_͈Lk"20X6+Ί'bό5; |3CP'UYv 5+"T +ϬX5|Fhs+g˲·>d!jm^(6bDfD]YAdVEމ|cެظ83̌=T03 :P3з@wT4d6^6W抲k,FveĉeV6#"Z^k&dswn?V(OagFtUf?mIJYAoWrEQMi߾[s~a6Ֆa nM-sҟ15K'T ® n&~a]6MцڴoyaM;QYD7fmXSF1SN.dQ#U30l6+kay6MԦA![Yўa sfjE.YҬjenj ef)gV4U5R25W5Ϯ躨xf+`Uͮ+fT 3 Kѣv1PUQ.%٨q5Y̮nZFiQCT̬yvU=̬5fU%3~cF3˨]]{Qj}Ux̬QvU̬fJ($fV]2ꞙ.ʩA:f1Q<*LD -؄]13ːS2Y%,(fʔy5Ү]I.lI'>}.;Ɔs2EU0Ym̬MX2Ϭi~ŵ{!5."RqVs+Nǒ5.ࣟH^&V ҆}Ħ|D E^5X&h][ăCWE+犲k GXrVo3-rF*z&F0k8 pR[66NTM I;2`G432.P#%}Kd?@L9k-4,QaR0wo¡v\&ko~w2%&x' L0V28re-]BREhE$KFFԨ"܅$->Ĥm>e1IЬ}E[|c69'*9,sKH9*] HǾ*%Q2|WJ x8[ΏY<VO.%}Hc-l. 7)]T]甮yr.SJ fd=Lg7a Y:ZP@QC҉ rгД_`-.&l3͝$[ђJ gIݬYi1ȯ"|,RWadB8\g8,Wy(њ?25^xFssE"NWADcFI˗t; Lwcέ ۞jtbi=-fT#)GmMHxT)/ +4[]ǨݤG ŹfXǓaZOx%.fEw+N,0C@ZDG"E SR]SU*" *߄pKt7'*H}npD&vg,T',v $sEIY[ zqbpQA N"֬MU47/҃:yz_FЋd G\.Bǚ=2 #wIz!>"boX* p(qwQ!1D52y"y<*?.';*Q,|vȡE!1fwlmHAd;w 3̵NNmAލCe5B'Gޯ01Ep-^=2g7-+*p$ H{O"5X@ .DTȤ!T6RF„PY6Ԍh۟fD݇/Hr~`k==LQǨ/6ėf,VQt_<0zdbL{j:$۱3̺ h_}]fE)pԩ)% GC=> ݡ$hzr V2gTi`aEQk>Ɖjڅඐ.Čd|1nkN+Y=]OSWxBM0jQ|9"dtRpj>_,; x !g&-GdZGVz.7Sta#u-0 WsWVǡ6\&+;6'W>NbppўϮ̲Q/%K;ULg8u?$]~SE$ShpѰo"aKAo8R %8=x-M$m[t)QUNyA88V۵)z|eR[إ9BCRs9KB{R{w)uTGM TC^Zd?.A,p}Ҹ3.WOs>8RCI69ea'a+K"'4܆sx|o~1E$@)% N .zͼu]O, iS ,riA.:4W." 1k]]_^+,tN? s2#D;ol߫bWHp*ZAUE6*<𷭹a/73+<;mb]qPpJAzJY^yq  E9/5GzDV歹BH-yc0]\ǖv3W8j#2-5hrR~u@iє5ߓp"G-K9C(\Fu i{U37?9a뤁P;wp#-,*3/#ݫ:$n_) QfŚ\acYD ^k3%}\x?E>g‹pl0M LiXL`&1 n3lC Nkd]A̰OdDquU](p3/y eP0W1,i0Vݟ.ߚ]ح,ɅjzZYok9Pmzb5¿H~nf/gid ]:'R|t^+TZӯs!7O9Y-Rl["e-ꅓgZ~Oԇ[ -? 2vs!eޭs~}q(dĔYgvv{cČhs̙fYnqZ<4m`-1L0ьh2?ŝifؗv"3K0 {9uޕ&YJfwsxG>Ƨ03#͎2"qcsXsԚf] qA_U}BHB-2='G4*u4f86 YK=<م(Gi0U`k‰-cbD۔I,k(KVoOp[l㾐&:UD)"u 7],q3'DXWD7L&GX\J8VGnJPFo1j&q.٧yAӵ'i!w~"o)*vs8 0F0 !2lj/؆vXQGנaC7N k\4BnHƘg;yƙdU nG2j ?PRtin 2P6\40wn C[]&j,M-:?iB֌& h 3Rmѐ I[##r^MjCr:Jt`zK o4dU*nV$١z") 8G$EWH`PKMgnB3FI "T8?~t*.sх4*XX%Q%"I鮊h'[$b+',(MEdX7Ům^o 5"~ZOd,*cE"$. e\ 8"‮ M~NF~mT/ڼFu8m(h$HX0`ʺNc!cAGs vgN4wf?qT׉Fc,ϣX8z9!C>b?\Rv}E.\+:#Ku`H zTA0$y/vҏ: |PIYB_d0nT~^B%%5 p1g~X'8 E'xk_eB%`QKwme4zey E|s(J模76gTVAEõ@n ?)ii\?|p`caeWB0`,EuLj8.kZjDAbW`6zv V0ޫ O`UEA/1 b/84Eϕ ]X*=cizo8]naVwusl> ";ڏ/njˆ#E=lʹ2z#A$?+&0BB^o# #(ϩaj9@i8+C-; ŎKQ`4ijP+]o;u8h`OiD[`:7ٌ9L9#1'CE5G/ C{EGU,gţG9p8I!6Ɓk }[c\>" >6NJ~ɧEK戳UNGm;HK ʊ/V= ޫgX(!&3.m\=x-W[0s#!3kbp+<6صյp8ҪMԔ|s+Ϫ+1 ꍋYPt1G6Shypv^iD>I(oh}BCq +O 87L9C2S&#> =/!12 *g1c{DaXi$al`v)餪G>Kv8&γ HO c_/- p23bck5k-=$T}ɍډ谒i'aII>>/^C =Ù~BH.KT92(v |}Rf|Cl޵qA*&(8d8~ ZB‚Ó\5T֥pZ}.p 7yIh.(D- ٟ^g4\| ĉݞЍ[K {]0kZoIK.#ȸ Wsk7kQ(y4FixB#wVlf:@RcS{(I 0z\%LcqgVtS(PL܎ 쳚 INB?M9p)0njŅB0A&V*|t/^ !;jzJ$h03J،ozQ ,_`  Y|{u:|-,/,; sGQqΕfLez)PwSϽQf`D, .^C91ZZڈC"~>J]27hnڴZY0@vl˪U-L OU("ޥѵlC.]'_A ^at;(#=X9C/+{\tA pwۮ P}, zpynYdtwz܎Clߪk E/X=C+R[v8⌧;ix`\^p>21rQHf8,.x^ç; 2Vxvs]a ^Li_x~<#}cji=5|}o D۫D?.6iӝ;"C ]3pڀF0kࢣ.]6Me^6wdVU2'kqV&MW2wm-9 e bAn|ks[qh|ճa&rRGM<*,:DTtRxC%P뽻'=>XX AC\uff>(nGR-? %4nirU;*m41HAhՄhQcm KS> Mİ^nN\q ɨݎvOt@KepJҕ8b@bahۙP!@yeKsܪr_5{X=3HJܵ >w;0t=Zo$11t jNݧ: mWАƬ=Ĉղ#APcnpcrLMȂqFpDڑhu^6Rh^%o=;n{PS,^C_8Ko2Y $egCwCWSWPaAGW*'i3}OpAc kڞbb۳)qYRfCg1Èzdn2MC" oK0٬ HOWaIDۣ'y$jH#-)&kD ҘEx҄l[ WKT9%}%keKY4,k"%&}ТIU+biV.ʨMYE"L N t2 ;k+J2ޜ&vJI>I*yzF&iJB&qA$6gmB OR?dʓ )OZd )-YD<bNhoв L+򌏩C1 j{a[p*}7 zHB<Ի|X>|e+7ibE"\n7CO$wwe[04-8}$qe>Oc mG_:2c'W8v\&Uwp(( WBve1jZAd(2mj"O5Y?S6l艛ynxVHl=lYa@6޸pi4%4a{z;{L܈f4AQZo0Heԧ$5jPƲo@ 4 &2\׺`Xj[(W1.М@$$?cdc޴Ay^\ڏ3_)]Hcwr46g1bbָ$Nlz?>ʂ7t$8XccX7O9?#68n]'ETl6"6R|CFSa9p滭9Fb\)ֈ(f"sKDWW4^X`ѹyƌ'048[i4czǒF7 :YXWQ7ݕ/u-̲.}(1t̂nh P ;6 EAg; :mOߦ|eظ܈P!7.`LΈg;&w~C`Zr(ҍ )ݛW'1t Vk'ܟ..'$L4_ /6Y 8Y ru71!Q4: 4 }GmE9_>f<l|;mX`PS|׃-;Ώ̓z+FaA0nJ6W]s,(/ZQ0e'~"{)"]lxS|,kZ"]P(m2Zܟfx|卉D%-KÞ&F5VnpA`[<%sLJٚERȵ$h-٬E,ȼ=C_Fbd)Ζ3+cgGڳĒ" bbD2f'Yjݶ3mC+MLHv^ϲLCJfA0Kߎ}h s.(#~p ax{ rrB ;!k1C-18s>z8\Aw$HBVy0}\c;w͵^d<0#i2 ӝm:իIϥ5Vj؇ ][۶O߫@#;0Wt,eՒFICkE@&`OBQiDR&7A9=qU.04 UCzq'ˢ>,=Y&/8Y59iNxh0@D=JF+Z(޳G:KDqHa8 H3@vGaE 6 VnzF/4OvǎAp>S`}=K#\ޙoEo Fo$t: чđĨ%^dkϤ>-[_[+QXi6Rȓ@q ES)B+$e@Ӧ`~-@AS0*ؚ#C"345L2еAx^Jސu]կYL& > y>]).:YMO >i<wF\jn6zW㭢?d#A"Ѓmr=L"C DX WoV`ŝ=ߥH}a>b~oP,yMq >ǂx-ӥ5]NMvF_!P cЈ 6&)\F ''xbhC=Zܜ݅<4U⹠ _%4L+?<6]`%. `ӉUC )Nl*gjlU*pQ *oUؿ(Do7eVa"|O\ r^xd]{=7 _J[5̛tUc?tL:k-x.fNV_H:]zW9Se{EIyUުiXPF|]~5b%ջϏjtcc;A6;}`q>cYYd1lc5hctڱ:X{pnsdu  ~G̦BpRu3L:O{?}s;V3ZzV@VàBWʿW.F$ql'[qFElFlDaF|6?0/e˫iÑb6?Gf!|#69:JvX4^)Ø ;.َ}7/9|`#I|`#p aWlE7_DB2b2׈tl"T 4WXݨn]@8+nA%vnК.( *~jثiUk\Dv^j6*rAzQ*&1XMIWp+ģy5n=!ݜzTw8NƄgX[E]ԣ_+Zw-qz AU}5 ZHCGgT޲LBdbC 53`]k\ay|3(zآD5})GH"G8(&֍լ((OLbI2^U\ ]qVEȝg]DYqFogD|v{9?iayy}Bʸ R:<1Og١lVԛgGoƴYz@~ 2Vγ1?;FDOsVEܚfD>=[kDQ{~sd?$+rd~+JH*D;aF>O'rċ"X@uJ`02`\[F -PWJC8g+i "X썵${DX9>-G@?#`%\[aV"NJ;.r^-V^VbEpief^d/ZVJEjid^oGsj}1S']u6i=b9CHF+Jz΢od\Zig^y6,a9ɠ-)30mمӟ|N2'\D+mo4R!]9üW]e*yiYO?%BZ5i3{V>U*wQN*g3kmVOY2v+&OM{?W &R-*wQ*hgUm6.UϪwQoL ixl. ͽlxN:UF.Q*ugQv"ŧ|%~DY3Y.jYu{vM:~Y0YF*gی'k*gN4Uzv;g3*u*vF͟3Jmgۻ(̷sV͝3֕͟3 GgVK.9uVͩ#EjxWRtV:YwpUa. (28nV[ϫfLUMSE͕Z͕hݴb՞ޙsjskZ]8/Z-0NVˇN\: @|lv͋<빛vbi5:cZ>7X0y^Bp[ Vqx;vBU[$K 1)ltee ERn+x&V[ |aVB})5=eEyVʪNk ҮwlO BOsy&"Dz\Ѕޅ)5֕#GG'>-" 8p,6L$WTsrg[8{Bpӻ& P;xfػGs"a(P8P`QHL ,ױm]kmBtiSx0u bYy50}9lg P{cznb̗!!/9q(tIؐB/8" "fpus l s=vਝƖd%lG-;Aj|^ՠv;|3^5;[MwW|޿f૦~/ڷBx}")FtAU_.7}tƻf^~F[_\F`[Uoa'c%gLg>wmӹύ~~k6jk65]ykS6?ƙ}nk&ƮV]U{^#?l{՘lkv]7=/IBVK^S_E;^H]E{n{)7[[5<>ݹ٥gjީՇ)L뾵nfc߫6)4r뚽xW mfܫf^aU{- ge(*LDK=Wt]5;xobSk}Hpx5nfޫ6n> stream xP( endstream endobj 89 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 100 100] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 98 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 90 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 100 100] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 99 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 91 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 100 100] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 100 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 92 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 100 100] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 101 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 93 0 obj << /Type /XObject /Subtype /Form /BBox [ 0 0 100 100] /FormType 1 /Matrix [ 1 0 0 1 0 0] /Resources 102 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 103 0 obj << /Length1 1070 /Length2 3596 /Length3 532 /Length 4332 /Filter /FlateDecode >> stream xRy8, Ie鵯3)1eYط$$BֲE!%RYǒ-{T{=ǹs?~y~>5!yba$"+j@J b@9`@ %㽼)DCC]0{)(37lMvad`d x4D 7BG<G&aX x)śMB€EQ$!( `A/R j*PM5&AI ’)rPBA(@ VV#:A <9 #"ƀ%R PG') G41~ +  C"B Ǧ`I]#,X ` /4/d8b[Mh=ݥ"X!X5p(BOܞ x"֚HC)D>Dl@'O-[ׅͱFP??L:1B@( 2' e5UU JP(QT҈R#"*"Qlt6O`CCR^R" Afj@WRLF*HP0i VѿAqxb!X4ZlC ]۠ [ ׂlr|!O+X vaI(G }QXwtYU0/|HpNF5{g0*a1${6E/-B ӶApt4tYzGeRKW]@n~ ?FX{>jY6JrGha"[B\ytYcE?0-k%tbs;W ={.Wnj|o+ e2:VkVVPc1.Q6O⒩oarE33NU:Y#|^̇G^2( mF GJ6=[ҙAf99FpLf'O޴)=ek~Z;hS];YluTzo25ֲW<+_WmGcۮnYhU{'U,Ea?8uN)>̵d ݍ3h)nK>3P/_)+@OZ.|#,/tV3ܦNz2񾜈x)3ᢄqOiv2 Ρ!ER g1qZSV=(ϸ"eq#fO~sCwWH,~'R91y/nU~&xIλq5,R>ՔEkE^_3Pt"CXɞU+0;ϣWL9 50DkF޼^s,D`fdeʫok^FeΜ"6s4ީ>Px?bcW XS#R_yy?Nٯ[lxF—%?.աO B4{RgS}GvheGO9u|9KBziHkȬI暋<4lxgZWdd'쇛EthfaӅ&'4tu3sxVe5řJ Z89f8be1F(2X3{ "_N+LAr;"ۨv,Sf7}$oѓvjN?U+7TShQ1WMުA9 2unl |j\4.atYo0Xk铋^1yݥdm-}3THz~92)sц2/S;ݶlDARwoEK6 LTXfq+״\>n \87e?ڥ_ĦqlX?U/Y I"厳UAVϪg'%ΰARXꕫ8 ^=T'J\/YQЮNIiH&}{. XÏRm-̈澱TWs?8& X`< dK2޵ LOaŻx;{]w\yB6?yl: ^ :tprcj1rV|YdǡvRZ*E7НyQq@5r9׏6-/C!5ImD{׹Yhg9xyy~ځ4cvSGL0VTmTaBaH\ XWBȡ!:mJa9 )q@ qI[mVԜO=ʹ\ :R@S9sRp!eG+jӯ93s|qoDM4ټ7flc?5иֆ2c$p_8-Vq:LѰ+lX?(v]KOղ)XE&ɮ}3"-fePghW7!AǐUy}[qVPA)hhiPǴ[Ug+7yMŅubvJNǧ̨Wȫ=9?; d_4y4ü3jq?Qn?^LJ%XB޷͟RZ9]اd-XJXEȻYEǙOX/o1̖Oԋpd4PPmxmXi#)=O{%5KМ5;j:6<4Yc~U[Zw9ǥBسhUqq|iE[Yq,碞Ι*3 vu[["Z~FNWV6ŻݗX;\p klw*̝Vt0:avDFe{\lwmپ,//B4Z;N\nqeѳ@#KCWe6>ҡ.JULb<1H6x P Ίfd61ʷ0 ُͲW; wTj͋`df<1)4Q:"|10SY f\i{c6\W%IÕ~L7mXd@+^VqҗtcvS a ~ℛ٢vAٻO.9e}gKO;@Yn.w|xxxb*)}y?/hKP aΛnn}痽:VQm#?&<<{GY96lv{#Đ(`352we2j ?2$NPy7=Q}*A OZy֭F/A0 _L\|.Yej i<@4g>j}ߋk= J[xgWU<,lҠ Q5JG@s{]>BA~/=u+w½E-Ue}0wxY1{kKh髅y,Zi]jaͤ1:lYb'*nAV ߰rON{ Cllg1:Gi9_Qh̍1Y8KmU#B> stream xXKs6W(oN3I=tuifR@ېĊj.|cɥۋ#owŮ,F'XL (&TFг8fj  IL8˄]ۯ_fWqĄT%0$8hq~2 ,R_* *P/~@L`8 NrmZTƼ Ba}" e^uԨco)[q4a' evƽ] HcfX* 3;:S>^*f.3#̉*SO߅%1jp)A@X;4xԑ)9A&s t\{7yWӼQ~=ah+ֹ“CtÙv HZ0p =' PVSˤt/a<֐w$ d RKF]Uq߭kF|ʋ |<=^g^E Ş/ֵαh飭} WP}t߀F)gh(LaJ?% <~%JK8-C:ӓ=rI̠%X%އӳl?<A#063`{dd?}w[έV@JW~ \[ c6R=4骨nq a'4(pCLQh,Lj)Lapx,ݜ+ZRrs;>6Es钀,q-$tVtw[}iR}z$F&o8ľc  2gRr6?Qn{+ศiwn0umnE1՞vv0a{q=6|g]ؖɛ==>훷ZYS͡R#Ncugk[ 㳧Q$)SU[Kj=KjO-FZSk{Z]eQ+iD6l^==[D==A';ÕXtL endstream endobj 165 0 obj << /Length 1066 /Filter /FlateDecode >> stream xXK6W(%hHO@=8ZY޵6M^C0HQoK4VK>A\1lDL3LBOn:yt]8h9pq0 +W*,?3YVM'?&~a l hv,"(& Ч$S[K3ƉN]n_A|RT*c+K.P&:,~vŽ BYbx펁;q̖ERC06ߵֲٙ~uVc-4J3 ͈Uxvћ5P|sLUT7~VF%Vq>Lgùp4,b4$I&j~\E+Bm0/uTkFcdRIWj:AÁI=[ jLg'2(߹]0RJ#90c<1L&2v_m^87j7uwZ {P[yC7'\i,vn|E^?zx/i>A|Q |rРYJIka9Dô @_fῢ㮂{x^Ur1cj8Fk[sH1=0Ho&)ɷbC~kTPrWJw6o!4mܽ]Qg9'x7H}n-ÙC4_}$LPZKc3JxE'MM۬:k{p1_0WV2({?΄7n$=rh*2_>B%}_w!KUdR,.PZ(R<œzJĊh9 ED LA@.o#cʩlB.09􅟳*+#pxTdC8~.lb9> hFW֭Gܓu{dkx_D[OYGK`79]\/:ה_mΕL[I#,m[. %br-? endstream endobj 11 0 obj << /Type /ObjStm /N 100 /First 852 /Length 3155 /Filter /FlateDecode >> stream x[[s6~ׯ& A\HLw_o8;~%XbM*/_:J6QjF6@\sppp(R"d!)DtD:0)1*T1 8Ud)P1SS# ӡa*eZKFŢM"0,8ԃHX`BqȢ)Sf |IR0!0V)H@$Юi< \9zt@9 Ŋ@cIt2&Mp3#$ZÌ$d&8 b&QD̤ODLjqDAYQ1 ªй?11hi- +I5J,I\.Z6z `iu2u'x21+$C%ȉ5\-EQJ=F'1@Lp0B8&=E:#Z@gLt 4^JX I;I:"d!C"%I ! ! i4ƠPJP/% dI2Xe#1YĄRtfkH z2!#/" :NiFUZU&<|1㏫=vka ~{5,oZv|]տ!A<1+x.xVg!wUɞոΦͧPP78o>efe_~t( ^[b>| g~\wƖ{vbڏRx;l~>^C zpwq1=#҇zf[|*[[ 2 T]= 17٣ꊝ, A#Yٰ^ 5"Mz;eYA)jL7ooߤ1 ّ]/x)K9tٽuW;l]YKO Cum/,^O C؍!ltaA@*Ԙ^QW^B2 ז{~ ϊ p8كՈ{~uE޾x; X@m+%NhYj4=3>kw1)?G9 _ aCtڏ0ݔ#e+ê2~·|a |K^׼-;_ki_hkbdYL~HXbeqϱmsnE>k򆏲 7碰WFHh[c./dhM8u6ʇМiWnZ y8޲s$'r[vg)o!gi}ɛ[WٰkB:Uw6wYd=i,ohz%-OM;IV\x`7Q;>]x;+ggʀ|g!{}ϼ¼:4ppAN3ȓy`56ܗg}rOGEt›yBDܐ!E`=v.rO{|&_X*O^yj \]N g[rՄryNT]>/?4K+:C3vu۩sb+]qJNSܜ$Mލ"]r eP1їH[ CyKBQl}O3{ u3{i*Lz M4S '8 b"a{;|=,Q tDB $S z 0r3X 6v.$$ecfDI`4E)=3,f8H^bQ+K, m/$Hźx ^e(ĭVI V+qu'AMD#t˵I6&I)/ĺn 2I M՟I?RMmtT레@Ae&#`3g@$$^ 2].jfN1\F镇oT揱Yp&S ?ϳuSl*~?:P|/S̟+z%Bzsg԰x9(UO VuMW蕠.E0(&}-7|+V[ݷQd/Od/O7_ sKH 䶂V r[An+ȿGItj y6RDnp@N]Q_(F}bQ_(F}bˋzy}Y/UEzܷ=Tϧ{>O8tC8t/Oma-L0t[n Sm?Jc"oD(piψ۞*v4 08umJdOWLhrIhfN7СH?TQ&1}Ё,,T@Q$&ƇPߟ(0sH Dmjqa[~ ~+Sg[ endstream endobj 186 0 obj << /Length 1095 /Filter /FlateDecode >> stream xXn8+Cn)f:iipbZ*ˉN~.EҖ%;SA@{BP:Ja A';w 1㎃$sl(2cӦg ~>vɽ Vnc߹9ACĂ)NpFόAa}PL+.2afsiS91a{xUtݻ,Wqc}-.8Ҭ:*ǻ*CB-zS~t4f竵Ֆ}nͧ#:9_h;$u׷dM*[~^Z?LL+Hi~M]xZUMdc8\ Ð_Y!P89s ڛ F2dufwOZe6]MЦG)r h@:BFGI Va.mB@ t7KQ9HZ#k] ?tߓ~ Q`T^J0%pL!fpZLbk?. G\:l0kW3}E+:[\A,knwCPWf7L+4u>L 36ࡌabop5X@ir0>wx OfO} Y_@|~ or>NbUk]1r}eG]^/[ÿ gDtAg3Hcia}93p/\?vaFe*ga #Jrzg+6k+;=m rǑ?M~ endstream endobj 206 0 obj << /Length 1276 /Filter /FlateDecode >> stream xW[o6~LH"՗Y۬C1iش,D]d~"%˲iAsw.|Z-F|B% QbygӿbuW7Z5r1?$ПZ}yÈ>L瓳*Q#I.@T #MZ]2_8y?_t wrǜ8lT8[=((Zy42#lJ߁ftem{?DKhƻ AفWW+O;uhD5h\*S&|gaW#>7+#%j1My]$o"8}=u73`r`Id*62sq: [In]35Az1Y:[B|אD;ۑ(B 45RPmE3:V* $xH`NQyGm>`ɰ(H<}NvKgȑw2yas PO8u+NU6u ¥PXPXϿF9u*_ATU*_hjH$G jY G~|{{ ?h(M9F&i|6q6nL\LA!5=ҩ} H 0pYQhK(Pk'2)% ٓ Mô4J6";4^ sh2M߸oM׳,g˸dt>wJe+fN tT{q&kW#i$ľϴ }H3Ѱ;[ BqoXf֟Gː (&| Chǩ8$3ǒAIW,#`O6^`Եvx┕[|JRt( lP.s)M{!C ѤV}}:d<Ϫ m{hXҲ=8LNڼOTp5Z`E{q&.(렼oʹ;R S[Ө`*qV}?J3_S~(E"eTNM$SuKHf 0Fqދ%e\xc;RYY˼gxym1px?89]ayKtʩEZ endstream endobj 188 0 obj << /Type /XObject /Subtype /Image /Width 800 /Height 582 /BitsPerComponent 8 /Length 40020 /ColorSpace /DeviceRGB /Filter /DCTDecode >> stream JFIFdd!Ducky   Adobed''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDF "!1AQaq"2BRbr#3CSc$!1aAQq" ?IJK9ETyΙQqd*pRʈp,a"3()j"*mrڈ!H̹n'^:lڊhW#ʀ CR9l7&Cjyƛ<"]2M~!s!Ld2 !TN-;;b`$柘m_߈@_ejd " :av8Emv8jKMC \ݵ:V8cނawHMJ80!C&!> Y:`\5Q '9,pSӵ`[E !aB1wtڕX[]UϚRN8~iOg`W(bH 2Kn@'~:z.ppSz{G${)EZY;S[{hǙ!Z b;qCC++zHer>NUd} ޔ &EC"pO z Hɴڇ>OnaȞ›L੉i]1&0)EÉ%6åGEx%ZWH=ȟ} #Kނ޷~H9 Siކz_A{EGYMBPWҜ;Ozavq ȑa:+ Rs)'>Ž w3̥~iނC޷>?%p:]SO+oMA7zf؝2n}?PbO}@= ~Hz w,(~̍n/䷠pS 鐞 z'*}n&S^ADtW4A9wǰdHtWQ= ]%9R2JC^$2e6㣽G{*D6Dc"ڙW~҈WYȡ+5uw.Bz+i#ngjM)LW ~AEt>XLzmL:iJz i !QrDq4WIß3]ŇxNi)M9rÇޤ/iYuBf5 O.{so .VDoۂ&VjzyOgĦdqLH966ȌJ5D^.qӚoYܫD*LҶY 2MؐtQ 5#zR>ޜt^'\r>/PBLM=`F GDqN,*Dt{{PHtGo.ۖg#'=V D:̫aAQ+8=]d;Rc(]@B(.5C2ԉj&Êⓗr}ˡ‰ b0o.X7X&[)+SEiBdc#<#2%ۻ1=],sHAF*U}22 mT魋5[A8{!ʷO'=Xpeo\c#k3R5&Is]$㝨ȬI n"ZȑJI*TYvK6BKpW( b,o<]&L{#PCk!͈̔AQ3zan>3J c2M rR]B1pWz'f9|Uj̎*&kҺ @FZp]B9O?5Ǡ˰.%uv}Tz?(%B: UAm?~ Ⱥn{W#a.[GN$RpܪHj+N?V,VYryQTHHIq9)g!oC\eP(`x*(F 8yTY F("8⹧rBdƱ]>xgu45` S(Xq t[W DxZ焅è2oQ1hICBFt'L-\VGxfWk%MnGq r{qRJX.0̮Ԍ$2K2šbbVw;VCzkbFÏr^,!dި:{F>ixmɣ@}$zl Vj2i#[EwmgӊR樉(C 2V'nܷ6OaWjd@䶐#m aޟ`]?;d`hOB6/#?Pj⢊*̣(ђgqĚUl a]0-RLjWw݋@HDKL$AC&aa٨ISAjB vj֪\88.LA%cDхFGʄD*Zf  MncŨɰ&rU2fʲlG {Hm,@E*ݎN]E|NwڑQU5XQBji Uj#;v& 0DC WmN * fEJmfM(bDs.3m\|$P [@\W$*ٸg()Iv/*%,HbVj0ܲS1}B("?-35fܓC>+biSA::Ğ* T%͍JnH2w.vHg/ ]oC٤-tK7 q;j6N ܹ KW0pXFؠ})#\MDSldEOr3< S0^6hZpAbʳ WVHy܏H>;|DuR?MsVL2ȅNbз~2TF\eR%1Nu7dٕ`ت-\ah 5(\Rv@9x-n|>m\Ǩ룶Ş/>]G}vGb_zKRȌ9`T *smԭmLO]ć!Q>"Pۿ8Ӊs=uX۔|ꌳds2cTm[U[5W=Qj%N~b1SL &Q]zƬ VB0-+ʧ4G( dV4rˌ dԉk冐1.2, KnR%x9OGKER+9i+[r#ڳdp]\Ug' ,GARmb(pؐ=rR5IE9Jd;UrPuHE )c)#.][T"'-n ÝUEc#~rژNCQØ1e;itҎ2#mR5yw疢 e7 rGMI`T4WC$x D48lB(=RI'ܷf Ẉσ9*nnYYƵ+iLC.1$ᶪT!)GQ4; v"܄^&f$.!bhRH0uIGKMeq4=Eֹž-pQ/uJ)9%H\tUǗ;-Ff DbsVNgٚckDtA>P2ڪNgFl6+-*S²S2ô$kaH he9Ortvd1U5.q+[$ rs؝ 12e+L`K.j9OwV#*F$ckL -Llj[ F69rb\KME%GSi4EGKnRYSyZGC+2WC>T~Q$=MAGNO=Q#KFmHoGP.LNUR"Q #\Д-ymWIڪDHn%a1cjGj}DOYD0TTWg@BEUce;!?.QJ>:\:b> vRu@bLJvBā(bb5Pےʛ.lskƉ إ;BDHtӱ)ؙM製v2s?#}~ m?܏>rS,5)Zk"",$,F-.SjhRH7{T+mW#hʸDc/Jр#T#4BLhiD{NLihpCیeG91/ L%k){:Cͭ~=ʅ-GD{QrOտ R]l82ͮxvw*Esʅ<:"֦ v+u_qR=Yzەڙ n#`C1_:jG"GbXGP>=H:p̈` ڷ:;S 016Fc1KNtt6uv۱׹6viWTsD}Rn( bU'mWVD0~, ~wesǧg;鏼.2q4JjځtF<$ش9_RC"' z @uzwELܔo+?LL BLyd_)ŋca`HN)#GC(zhk> DY zh(zhi=%J/JrӉǡ7@~a=u0ފ{vDLKcOCt}%w~w+nL #_>x4.L`Ozm!4/"C..fSs&>ޛ~Ki[vz7gKzc=龓=yd}H?rEϻG<_&\rǘsu+ n7ўMp諮cⶰ)ɾjkyPLF_B3dvܦ1ݍעgù/0e~)8ۧt#v c~)%xhS{sې^,]5}DdL ]cOî;i#x* Nm݉ezv3GS}3 wB}VGޛ^;фr\$}+.(uNqR,F/ޯGU9`(4uF65?7+uY'*. C\◟s]cȠ4U:.KWdEEi[k*+,tIEm6/CaGbWQHr7x'TEUV.@VllNT6=TFE\ѣK_$%nHwzo[U#%ȓQLclP 7N@QëW@[k:;0|MRvPސ߆5U/%MIO8a&0;Qv&]4cYr_N!}L7c t=<)?sY!:'?L,ZSR[U6"~irƟK8V]nwoNN⎐M\<Wgm%raYµG7(*T5 {ת$ DbpPy uFB@mL*Djǂ ;^NAaޖUԙ 4r-f0iکj!B[buJRPE @@+@BPp4h\YF'(r-iĠ!lauzLX@^DvHc /l.jkQQ,vh{[Rð|'O2l== Y/x;> KqaxwrV,:ҢG#qL5mBA_IP6"w mHa#ڦ`J\֥"Haީ8tW 8֌%fB1e͑n؏#u8:g]bO%rLhnᘨbf?h}l>* vNCnM*pvj{U_G޽D j-n4D08fIӐp\ꉸ i=@-V2W8[HBS 7HY]B!z"@ HM(2Y5 %8.\/hGūHTgӝ]P.>X̃.N\KCN35W?Pխ\ \v%˹(Y!(zbUHLjnSKfQhŋyGp%jKv 7*F"ʣ]O0t78 r|%ԍ#qADmO9pS!Rfs , 3)JdSA eoV1;T3ȕG 4S`@VGDqTtýhmj66j-xc34aWZ!P,ԟ FԦ#iBr[w$`CF(71֍J%tk;{72[J w%"#o4EZmm93P   Jاΐ$X99 { 1ǩӮGI%=V7FG> dYMD"q!::onꓧ!yc s3iF!tctt߆iT24p۵fߥ)G5p,i֭Srfd!#@Vb;^UETx-n!PF|/p/.KB+PBsw'CMg7#Fۘvű9 샾H4kd1#ާvȑeV.1dMbW` e? Z\İY |ўagQRkL*B`§om-F "]p[iջ>czA BephH\:`(&́2CXH ~쬈':S]ݣ-z|vsu8kR3#%.B Pb:GI \UsF.IeTpኴcHܣ7*,dAڒx1_B46 3(! 'E.δBFƌO*0EڮnBqȔKn ks݋E0*Kcw*(s`nbipSW3WE*r[Ta)=R4iDȔvӣLFdz?>J+>[>H޻Ĩٶ̬2Z+ f,LQ 3Yg٦ 3ؒ1f&2-%GPrЮXە. k*w^U̔͸1:'#!"4Shdd{r@D[2EÐR?W (Jg.NT!*X5"%fL uiRG3M pU@Ba^=U,UGQ|d0N2ˤb> `Rő1?$]SFRv% +'`%utISlΘ 䇧C${d"p!KOOjv+H`I9H~ݽFQ%_r~ve\Ç]7f^N֯z.UHuO t,u,"UqU 8!ng6ѓbK@Ŝ&0NVjotD"rPɨ]+tŨ@r{F͸SXWJ% BAh h'1l]4"Z v8b!TP;j)E7NP;Ft܌SomV޹Nbb3غJT1Db,`MixrC'f! s6ɢɄdeJ2yQ8T4D>\S0tE.!O;?2҈ꑋT-cO*VDaD DQHiwtҷQq +N )vqߺ  Io ;>Qt1"Q-p\..(/-G]C1;tOTzzız​ݫNbTQC%q5i!ɢlA֍#wzAq@"A;Ω.Wt)J"es:WYlu 65NXSA[ ::BBʝn :E`Nh0|x"@'}G?B:uH#2ȇC@۶d$qpyAܨeR'3(ɛi2Z0*ڴIl1!-&-!7>?Jm lޱnPCj)_C"0/JUR!qy xEF{`& "[JT<;#‹W)ή%$0lь kfC!g)j w,+ (8HW5s`pkl^uĜj˴Mj3LDd /+)biͲbj"sw}SL'*#=N?6rALk-%%gL$ H$EtxzՌZ;MyM.S1uns+%h2ĥ]^ 3^qH:&# v@[&TYޚ>T#ޚ]!>HF&@j~D#10iTnߔ_*-pTTcԂ;U\6 Չ)n68FWd5-2Qz%+*"?8T$'+%/\UhZy$W! g\8}: \Pi!<:K#7ٽљmdé RvmHbYt2؛*c-C(buT l@6ۿѳ+T$ؘ0FDpSH{To91ёhڬB\!kbqWX1\%_Yj(Fw#L HW,o}}ʞ GHGܪ*f6W/91;y`ȗi k1bW#49s`Y׹,oӊa KQJ#G> m) AS5N&Q)JBȜI)Jv'TO9L'T\,o|+k n\ UJ;P2S承 ĔSP>QT3XFvT UdWti(!7" 4*$pXȜJt(-ɷ2$9w,B{S(;ӿai7Օ$t"Vrv_Vt(^a(|4Z1! 4R%w7)t\TKʤ8u%&JQm$Nn܁;(VgoY 2:02ܔBU; ǸCкaQ@V )rDeT TF>Sq0lh韚'I]Gr D+>F.² g2'x@twJ_OO`LtؙN0ڹYcpehY./ܨ~d\y(=P9.J\x L %k\ub|B@8qSDD-Dvyg+#!JKO2%!AE=Q}H˦,Ć LmrLhŖ)4o'0^R!T]63SvWpNhʹ]vF0. (e'\{:o= /ޜZ. ToڽވϘ`21rcbj6kz"Q}d=KwJWm|RՐf! êl+cDiR$n(X ,LcH51ȉIbܛf/"njh==uGqrmSsK46af[3u]tGCӇQJoK%@g"X،VQMz.G y@sǦO᪟_G*)ԗ@MBݑF"],Z\ʎބmr J˜yEv :a}f#lDl%L~2E\ ^!VHY,lfdᕎ!WfڠR\,zAAJ0Aڹ [8"ĆEj'z;Ҏ2m2_DrPSiދހ迚<. U'l$|u@)}H&%:phe 'CXvz KF?1n]CjSi[?-襳&`+ DL觐 MO*Mb5*Q`Km1bQç%%-mgiM99=NH17d@^2MG7.TIj>.yjވg6p`r"Q̔xJsg.mͥntL~ 9K-yF{yr_s)ؽz2թꈽwFF8D5\nD7Xݘ̩yxdQj9Hϸ3)ǝÏ(x ^>cDu|Grm1Gr>GWz8Dn1Ǩ~F=s~C3ؤoXwя0]vȳWoXǸ'wAus(?W?7.5ͽˬu$bOף~܃D߸FKpDdS>n~5x q~ߊz[pMKgw`CpR001}~ 4ҁpd5Wl+sb G@#1zpB}hc]P%G@"қqꥋv&4Һ(E QD{jO[1(>ݫ<0'"K:yWcZEx<@cGR6+[?@(Sgѕ =d;QRV yA:e#V 4yc؃=L#,qNz¿# =$E# W%Qur-˵uQ ˠ_j]Q ܫ[$d`$݈9L7#_kr7MQ :F :dm\b˒19ڈ6tQ'j#)\1,j)Ak@E*beZ<,%d돗@),$.m'- S$n@觪Vwޘ$0S/ ;Tn22֎[Lrn I+ 3: YJe5s :w,6qSSP;;ޯ x4*+NK:m<ʬޑ&_~TABC/[ Z1Fn[1Q 3OnلL\QEE5(A%Ed $PJEMJL߱\j9*#OpP!Zrh V~%^J SV%h L*v.wM>%16Ude1u=,rK9VhR0LͱV"(6 ]js]*[ڙѱdD5E"Gi%L75XYH@j3 Y[Y.'-oWV8\z$Ncoy-,^ۿ3(, (JpRfwJXuA«MqѵjĿ+ԯ]Cn|f.&F!\E_;/2@W ^@)D%bvs<-؀xyHu^ftGj|0R&}}.% 7FAqL j>*](^RR܆ i%r# aȰ$B &>9ysd! djbȮaf@ejn5,)sf2y⺂ ¡O8ɖUHzqt9@*,R7g{^lޘjY,9Sni3eC98ǵ zx'tz[ ΘaZT(W%XlD]Ti`V-2u-0K'@Or)t.LK(ۖ1n 3:#e1-iHy-9Pm" hAOg+7cLRo);yfTf EB̝˴M]}+NѸҋ8IAF*rm:ÌG7?Д:qiRGw+$(ç:QRі5JH+-!./bq18FT!o~A[ڴ.FAhD(!0f`0`D Nd{wޤ~AXj畻Sa$rud M; uQڞ='KcjfH|хp8S܈$ޏ*IYtZw6$+I`ͨ$;8J>݊\x pC+oNeX'd=QAm2mD*P9Dn!W ,/zx4'QCS$QLl[?XJcK9hp ߳rCo+Nsh&wegO>DwB7DVW!%]/¿P V?m2|-5#R(=vJ̅h,aOn7.&)Jb?t5ވ8OyWiQ!,K>wzHooS!5CzW Us_|V! yU4!4UtѶBڞ5 6;QƩڗ.h/8I6K@U%]ijlG` u X-|ML*S49kK^̐!g $) /TO 8&wHixr*Z=O:fp\4Ge+P2G̀Tf6=Ueә͆=˞쎸JKӂ"^U;4;Fn4H]E@D Xiv+bW+c-Jb!ʄI'Qܖ)sZֈLȊgSLҨ Ea vη 0kGx~s[1*Zq)Dīq47ςs`J7ce5?olՙKdn8d5LUHAk>K"Q<,JmB:cſ ș:PY+Sds B?yh=ro$mL*()S1bHpfVEsU`\BQMf!>)T=4$5@;9Q%˒H&bbeB/fFL];TE_%ⴆrusf#vmJb+[ٮV(6 RAAf߈w ڵݴqCT.rC;m3YìbjB)m%-d-Lv|R5Y=9Vm(o).Q(+(Z޻iߊB_b&ŷvmW/\^# QD2nT3d+JLKmJr7"ay mEgAeN\{!,mpV_9N1g5dMZHc䟓Dw/zUc+[OFdp=\F-ބܘjfSW/lWg"q,s@؜ƙN;P޷kr.f>Iz< Uc37l*G.ssj ]  ?rb[ol?IoSojè~C7nPś=C⎛ӈK΁An|s℮P΂h">RB+ B֒I< 15ڧN4i-&ޯOiʽN9j%{f5l,xȥDfN!BlW`/oXdސ^jQ"؟%55?Tڥ@}')s*%3LŴގ1,@U9ڀ 3 ȘeR`ĩjV>+Ht$DE`HΞ @[a?B#~œpi 4n6! 'Y m#/m~ zT۔9?NN!ok۽D^LjzwjͰmء[:x%f R=P1V;°aD9#w.+N1MadqpI%g>2(߻\q]VBFvaP8FMu9J+ZZQ4`R)[$M` Nt1p:%"A =E4C~b rN/79Gla4'f5`N%h,smⶸTjh9:*Y\܈ s8iK C DWTrAӰHlh{%r:bq'G fA"B~᯶&L.,+e!̜zSh+_W0D(z⺴C?cB/ Ah !Wa]pzH?4C+/܄$H+'~iL sc+ʇO7zhh mbaGzεxm*n0 ZH0R& JQj3 wdFޞs0ӤjCd DOtNڥ,LJ⯏| U|M>HU3 oCFc+j;M<:dr]yO>jvQW4?46~bfݳ܉{˟~Jřb%@ervd,[r헹Jۤ2 ӂz{ga@?,#RSgwoKB7*!K>@}qNt}41oIjA2.pSg>:mȎخs.B8AD;"Qw߳:[C --%z1ѹyHNPt3?]u}Xl. 2t6p(+_tS$ ߳Ȧ܏0Sg>?= Gn+cNO?}d.@$aUzq/|Eښ=tިSg=4@Fvv/w?%KQgMfG("?7=CɴȀ?i։ctK- sMfDGk_XU&DMfG?:m{pMG8μKn!UdsH{+Wd0MG/;G{{PY){v뮓[^dL`nnxjSjHȆjq.Rc6Oo^6yH.L}G6tn@җՏLGVҮh=Tq @W͟{O=驎w?DΣrezY_z.gP~)gz>]Ğ=yo}Q=]eK1zAkPAԌ{'TTPLJ2ZCP5f:xL>ٮU4CD(H/ZbK==.*`PS$X#)ipRob:UcOsd )O9rfVEc1rPzXjzPY.nDDM=+uFz.l12# "2 K{Π@ҥRd$b08dK֑SUuG2'Mؖ$[LYEW5='޹JGĢ:AGCz#r j>ŬMTQsر1`0v0z䈷_H}-u;'D3P%{mB4B1ljۃSۿG)g`$5Qځ%oTYFŊN*W7VT&XiJBȣo@0?P - xR}Db̿O@lq**z 8:2I=;%X%;6"$#/䷎x* :$ %J v-zF*B9P/#MF9*F9B0' *[(,5D8ex NQ*`|xbv.ۂ7WU"Ws%>Y,lCSmugTU e"E& V[RV^'k>AaK2Mt%N:b+st&k&ܙ'K>[a!) uiYKz|>fs ?^q]f'?āJr2qA+H8lfeD0\Jf| RpoYXd('&p@F01vl(r,$)FaXN`F1SiHdQ )LT2j%"RB8A͂M%k-8V$֘1U5 #>i[ Auh&6gɄX.|[rrA.08H{6㔣߂t/;Ea4RP"z08 vlsXpv.#-R68pO[-~Wȩ#Lv$GwH4YuٍdOjǪ![RNи7WVt5ŏb)2M;!ʍRo|癔Hi.] ԰@#X8ѓeUqc!8/{bR/[[>*il@xVB]-$ >-xBHS#ZFOrLVqsq`7~bʉ҂,6 d `4*& FxD hhR h* 4LlB"6h ls? ,̮Sfz*2v#t9%K/;U&v?`frQTr *$ RH$p]OaرՍdr1: @2|]EJj 2iGSjlq [xUMBAAܗHl=Zݝ=j Q8,Gi%!;fFݘsBIRB#q ħb-HSre5S*Q +7 ꬉ%eZdIܚdv*ҹW#~.Ħr5%1$W4ڐe X`eDo.zJr!$oAۅ&F?:x\"NDC̱*J.?L(6g;Rk4m[> 6K$-F~ 7`EyC G[ˋS/lk}= pU\mF@ĸӟ (rJ3;U7@ AnEߊ! *mʆ)xF'%HӈRn'q-j-lȹx9V%??t !BS lS̙(X+rQ'g#],e2&j*]4D\{Tm?e<ŋy'>ܷB| \'s.m\pE=C JkpNg̃9Rˢ 94jZdmʄ&,ȅ&VGU!F̵j,n*TmL[hb*sYܐ;%vDil ];zUPpVt[ :PEIK8=S ҥW<%WE8I;61#a=,<U%y m7\FR!k x!xL`QA5튝1 Nܹ3qE IșhI$3U5E@ yTdy,_yS.ȥd8.ۀ &b6q!YDbp*Ffyjp1_y8(6d?P$&&Z0QwQI"Sja,JVޖCbc,!EAT(sMs5RtJͩăA̎!TUC?h*~r%a["AT}5ViDs~܂.k}U9T w:8CQUtsÙĪǧ\rM TU,G Fq'*;edK>T1 Ker Uc‰ ,:?Hm^i7'GT]#>D];ή{q ̇Ԇ}˿wwwo7]T}a OPY6~iMSsh]F1Q qw7.p#܁僫(Ȧ3ۏ]ɵƋT B:3ۘܙBn\p7ўH/L'+# .[>X7gz[^,fLc3۔ޖMيtŢ8) ?OϛD߸y垝_zx/6=M},\h]z&w '&1ӍQ0\z"bYC`Mc]˹90vڸH)=uzS\r9d{]{y稜v%=tRX,GrǞzKCW1CV4{F{y'o]eգܛw)r"s4r⶧?37>؈#/C]hsQa\%H!܎߬DO={}&{y#3 ץ)eN 3sL-Qٍ*=ݐ ^̮'*Z1-!z4U?nl\u>X5=ɾ{mS;A0hcplron3)܏6ںP&&1=S#M%y\i?H8o+x)k϶ -lLxQ" qz{U9V [O>*:_SWCCjޖӻz9HSM#=L bQ1![A6!-[za6pWXuaAS~>(x&9Άfz38u9ځoL)鹰Nv8DP9q=,Ha ;՘]zVCjǦ}Càn sc-飴{=F_rs*G'3}D-Kwcsk:w+ ,č+d,<,I 3NV"UTXٲųK WL$^ eNE14TIr"T 9Ͱ i(%ImT"e;^[Y@3j3 "X*V˽(i$Mܞ9;r:GwNDIOtB4Ő[#=.ڋ5k'wrjV@W\D (8f޺ 9izؚ̾D$neI4քzIHqbJd:BKڴ" a`J/cyҍeQ1c*3tc-5n-ٕW la*8XjuAsL]rBR!:S^˾Ę-ˮ"&<0lBjcIn ]L."<8i( l-8dNrba9JN$28QvDC(薘f!&8/Bd1l{yu08RN3]ZM0ؒE9r|WqdCaƘmUf'o:#[a.x8ڕ abO'9U0QܣT $q(`q-$lFDF==' ${ǽL-^om3?^3hhaŠ>RSȊ0) G#Ug\%ޮdCTp\=".^X+F]F MFϹHqB"L]P su)MU7Mh2.bJ1'?iM"eJސ!_PIJ(.Pf,,U ;X߄ !j0u r-TMV rѪC[ӔN6L$zI}7 Nfe)V*J nOjU v٭E1za&1T" =t`XtU>a2!cp}\ޯਹ.>!0H6Bt݂‹`hږcUEE:ƻFjrwT_ܧW!i<s~rba:qq@`Nop6xS$Dd% 3An]2R)nxfΔL- XVƑpU!AF]#٧sYiq'KtJщDN"ܬYCI;h^2B0dS#ʈ7`$j{p@v޴(AY(q\&Db/ ]0B1qÿbXH`vuV"z3sܥ(gLGD:ʃF-}:v4?߂댦L ":6JD0ÂYߥ!tJN;@im{:$ f1O-)9S<$ڡlsfnWD G|tAsKUPIcL .axԐ7{з039-dM8Ю$u2$t">,Y] 7DN:иj*<%9\ srrqF݈x{{d$fB#D SE({v}'S!,)6CCr #0W+;\e/@ۇ?5mҖ:Fة&_r|`CQJ]=ˣ^R1K '"JZinkkү` *bY5X')GZhPس!q"!(Η2cG 4cQ/SݩM"7 3fP%T 5ZC1%=4~?|V=Om`fJv6-e.9?HN MRT=81>*qzA(}ĝ ";DyjN>Wnq:+M4Jo/_5(C%$ĭ[sM,QGJϊ*Sbʬ+et0 6ҵcN,¤sq0ܹQK >q5iXCus.[sraйUPM^.C1ؘJo)S3-[8ftmɹ>zq, CjLObV'ހxO!ev8"%pA,MO8H<{n4Sܜ N)pHzxڈ"iT!8NP 2K:(йI" Ȕ%ot cJnFr[4qsNw+H8i @-[ vEG.Y$ȝ<{!ɓ 4SIT' BCP#*ASFAohAUCf](X-F9HsSLL r]7,<;WU9IIi JQ.*6*tP3`bYb,GdϒGdVD4Q~J2V+FBAu8,YgUҐ*wa)?̨2c~99I鮊$I!fLh$ "a#764蔣8]uO v*s 3Bw0ÅT!bRhH*~ŻAVNhj[JhUX!Kjqn l wNJ=TFQ-`-Lj_)|J(۶g K6,˕@rKa"K56t1⫓.{B9 qX@A?ں%64<gzk 7~Dy3H?ԧ+z,DprlT/rdK\9BM r_r#8;qL7T ` ,%C q"0%72[Oz7r]$P_pCRUB^4t%!:5@?fِ+E@XNrLd М5REX9T" ͲbXbHbf$VTb}KMRi:15 !Ҁ'xF*.xՙrA% .-EʑjSSD#0 [@6B̳bQ@ pIpxZjwI41LЌH*f#nbj bh1Xm9\KhMQY̗t R!n)#mEv~qM}?$A`g U Ua ة)4C Qnd FHP$nuCw)rl\Hu`!h[̪z{1%ȕHzz#-QށD)bIHC)T! > ץюQTs[ 'a]rw`˚yG%G( Q@V&v(]pԐ{N  tpR0 hPK50ufQ!H3 T\> zR|Plj:SbcMZ-i(j]800|ՎL%kM;Bgd9eV]R FK `uj|SMD\5]DS(c*\Skt UvETʑFGRq[#Mɸ~vĬ:{%ܱM=\SiǦ؟{2'j"=[W"G2æqÅTYڼG\?rçIâ5ʼnGǧBJҺEn%7~]w T&$ U{dz{ fQx=kt?z2鮀 MY(쟕x}ˡE:9:w- |Ot"ѥ-HzS6iC=trK۱7VgگN8ۨK @]z3!sSљDVD˴1hn\ ۓi:wo}.iO>@I^oHM+H1+F=[}cfz/q۱m=NػD#tp_iD ىv:BQ;JtMZ] #"9m+t:\S_LfRm28ͫf2]fS#)6o -ȿ˨N=5_L.&DH6GT5d~ [1vJc沌#xă4L})GS)`"_رH'Ξ9J")Iy665PHczXstF-gɤ̊oP[PUvEOObUc)ޢ2>!mIOj>]}]P*XF͘ďQΑ_dގ9aNzJݒjgXZp`Sb#GS4Auf' +;9>zp~'7 ݈R~2zI#ޔwC l:ntOԷ6' =-̓&~'͉d3+zIއG~܉#;PHwG?%.vbp P2+\҄ "b(r/F1A  7QUeG+siEZ߂T#6UZkJ] HKbTKT8( Ȏ4;Ars-{O(hg;>!8tO)yȷ8)gC-ӆ K8޵ZL9ziKIx^ ?kwJmFŸUQu Ki9'sS48␠`$m`Sε/bm+ćع@Nf'nR%ìpSwEP\kZ2HQƒ\Z%dskg{urFaM7ή૽)v0w)UT&)QsUǹfQ z{8upRIeD򝠐K.~Cz{Ńm(%q52]J甍=J@55 pPBY<. v>(99)qq@`<3\䑺a=TtFUnNFU9KpO v`Nv-Ҹ)RUmdXK Ȉ hmۏUVL%rCuwўҹˬda.! .ԃJOb,#H",7(k>"߲pj5ԯ_Dv`H=Bz T)cY9] vaǴwcn"Gxԁ.AM[(yT5XO[j0MVz3NFktw!(uTuHԶfޚ'P :p5pf:](GB>喅Jg.DIʲ&HZSlUXkbQq2Yrl9.p+8ΖOrb#ܡ5bUn6/s2`ΪW7N'"RRgO㒰SH`XS%C.Ġ:-TI9UNNK(RaBпS;E9X F$\In1 1ڲbQP$fKµOoXlXeIr%Z=B[@O2 $tUQdDkd|@UP4w]*R2KjDDDĬB lV+ lpTrI}.- BٸHvX٧0 ߤ#d$b@QS3(ETLI.JI. Q ,UmHiIr.fjq16)Ve;]tФؐݩIJRU@qA((؋%G H`JX$JX!kДzD@T( zy<؜R&QRƩģ[L+I;v+c_q+?zQD\ŹȽHZ\Rm/apԧ5,AƌQd@Hg\1@V..\Aib:qUvNPq(V$!%MӒbӨC/n ʡc6ܺ|0ܒvlόp*c].AwY@,*2>*SS@CJEh>PKfGвaC7.vԠ.J!Igr،nGAuk̭GEsrROFHUDR@5WQXaGz aUpCTVڰ\@M9ޖ55nr 5ӊʙ %<" n8D,j&,fp5F#I7oIK4q ≌A wypU$AEDqSxsۄKd'x4sfTzM. 禂b\-xga*L@yN L;ag1 q-@ K4˙,x+INa,Ut@4Q` B PoJ2f]hU t6Va q؈HoYq,YLS-NĤ 0w(O\p4،S;"ܖ"5Fտt@HK2n DsYMd5>krNm(tau9ڹ&GA-̦ᚁ s9Y K`HP"e@NPj2ɴZ E<_s$MB.!IP<m]DBQ1 gT`Q|SQJJƤMa k c]k,RHnBN&H;o\FSiDcXؓKcVH6+T@n=*l KBDܔᦢYqPΘk R6%@˜ȱSa&0.8bkڔXl}S6L$)>},V.1-xM *pQ"R&VH8݈N 2HUp2WLXJS ! k#X(uF ,`'Z?MC6W@RˊB +ܰQ.DAf;D/Jבйbvt&:uPp S d³5` imhw #ڱ|99\uU6'ʲ,)J-*ҵ8$o4dG،%'1' <T$bY\ɱHbW;!r7$p1-ZMvLn;:, - Ir|##Q  xCB(*yv!`V #>\] X BgN8 p@ ARG--EGiYަaE¸,̃ M.z.i KDm((WPNA]z\;6f6Ȧ0ؖJKbB2qtfR50t ZDGEY(;K# 備m`*HQ;D3( Q/u:bmB  V 3%Jb&IV2ҐeRLQHlE&2rS.?Tp(*h{S(Dܩ(xHNCONQ; BQe] 槅gs،!;>JVS*a:ûKq s.ҨI cEnx?.68qi]|E+#BEKn r[YE)6#x;PIKܥ.`xw] ®3;Q=b M,9%MY'2j$ĩͼnhZ*'lN&JڌI]L7%63O7)OC)`jhb" j"σ/Bb}Ig>ͪQt*SN`p G.vH݉(RP[}@rX pj9/J3XuD@2Q)I HިH I\ǎCz@eGPIJ!.9s']Quh .HѪUqKI\Mt*檑h|'~iĭe## +6ot&18J$9Sh$nF:ʲYyH2) qj-i9 }8,έ cL2ȈŁ1Ȟ* \+^m-x p%sְ/@0f`w/Cjm Hco K\hڳoزu|]~ʺuZV`C*~F.p"k@T܋TlN54YCjޢEA܎*>V=LetB1ޛCTU>l*:sfQUjZ^=LrtP^Rތd+\;H9Xҏ1u{-NݾTt]#b_UMu2.W/lH5T[AթSC C%JZ"FjbP0 FYwF=@f"; \8ȀmPILAMd IOP)&ԣ-D9&lc}~{b1L5d DmiaTOɣ.' S'3ܗĖīӀmj| fxq?*CSmfiБ;G+!)ǪMϊ3Py@ I.IΎ¥t/܇:;Vb3Xk],դFVn0G(s!kYZ}sߵ2BN3M̉nd_6 9SD`P4t.P7bs jr0%NP!]: 3Ef A'x[\v0t鮨a{2QN]\!peJ!E"|$LjP2UfDVtt \Bn^a^7h€f=mk'ێjR4P.(EV_Ig\L$ej̱"rUES["xA%LTr?]0eC(bQ.7v#T;͆2udf9= Dڇ* AUtT<1al'P$8%Q.ja!B`*m'9HPfѷ(ic5r3Z5bT N9bGXmCdڷ~+,ѣnW.xVY`Rv@E_˶e?Z"Ұc1Ee]:,VY?6{nT2om,~?$OoOez|a?DcYd['@߂'7Mh5th~ԒOYdHeW{%/-h2ى7|j w+OӁW# 'O.&,ggZ> ,ga~JO?:vy6¢6IC?ܲgmd%޲=SWD?WYeg\<}Y&2zAR+'ӋBO" c5Z>>RGL\-}DYeoRܲk?=4vWЭ D6Yeh(~/eT ,H(0hLr `m@d16-޲Zru@$-EQI=Y{Ҏcd,<ޘm,͔DYd 9d A|JB,4^+ y,3'LyVYPq$ 6m76в)O7r\ڲ61ʆn@RqYeRY7زVfj, endstream endobj 227 0 obj << /Length 1339 /Filter /FlateDecode >> stream xX[o6~ϯУTxȾmfaM]hfd!HrP$mY[;֡RswnyyG`0bo`%hL# A^ˣ zЪaO+=3ӗ(tuaufO=?=z=9z!)0& J"LGb"Mf?[Fl;xHM~l&{#Nr$|A-ҲͯF^辐HjG8 I^F$a,`ܛ@,$`oPOMW;lx'@;`W10ǂ!נ9W2/˙h-c5vWG(ӟ7FJ޴fb\3so5H<~~p830(b#*=Ul`sq9 `[Lj'In]Lۯ4auBtc$a܌'jU{zeKȅ%b.E&^`caύvp|*T@#uP nqgUw;rF0VN,y]έ˒D\@A!Ҷ;ulF\lӅG@ݖr /{N endstream endobj 209 0 obj << /Type /XObject /Subtype /Image /Width 800 /Height 453 /BitsPerComponent 8 /Length 27790 /ColorSpace /DeviceRGB /Filter /DCTDecode >> stream JFIFddDucky Adobed''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD "!1AQa"q2B#Rrb3C!1AQaq"2 ?]ߚ2TXF<X.&@ą㝏˰ m1I< GXb/h}žDA&is&<bo'sNXʃb`s3}&jy?pvN1 З .`B936Ž.0u)FHW'A9St Wz@n␬s^Vsˉ4h7i2O,tX^}[Hm]'+'~.T{nb+ 0,pXh2b0pՠy[ߴikSyK/)6H]DVzNro0AYH+{"2$9`JX0r/EuHO&k@y#rzF7ő>@#^1 pzF0ֳ_0#Ch@X֦bGIXƷ510Ahy0$xm;Gp*͘ }}[hWY]5@N%O@T- uzxɑsZN뼘+8Ӆ慠27ITvqqrOw iZdy'rdz^nL,[Y_ DzOp*g\K>U>U܇i|'>o|bk g/thg8ԜLIwx5Rd.bd)=^gjrdӐ;GNWZ='A[a#^ ,X8.li=Fpp[cY 3Hr@n7c)"{RJ˰ǗP` @?pqSk'tE?C8obP=qrF)hWXcϬŁ9O5 A,meȮ{w^0fd#P ~ wiV]d+w5xsp.IPq `:=48KbОe"|:\*}Ѡ4U~Y`]>@YLbA0}㠎x=zK1C*usm,sB6 =}dGqN>Jr^5:|$G%K]ǝS/鬀%-|860Ƚ4Y3 LQD*1ŞyKG:dT} 笏&i@]CN"AOAa/'/ '3QRL7j@|54 ~ބǤs^L$QpcTꥼsGi)=DǻNW?9*TȊ!gE(M`DBm0c` BM]By3հ3 E@CEu@`Z^.kXM,l*ʼn ,\`kR`@7= hP:Ǔ!U0]T9!.5"LX0( DL 3H4ED2a $+7 xHW` zMa#5zFptpyigZ TWCdNJ7"껻\P#2i!2l >0K>lF{q#pOq>'іKNJMJx۸x6Y=GUŧحW)451fLyəQ'c^j:ɟڛRęv-fIPB Rj}$ܧ"6hX{Fϝ2@dχbaT4e('Vl&rZl}/A($l5]S,gaV,U tԊon@Ɂy'9*̧U(>DЌuKVkc!3u0mI-( S};H#9[{_#+҂`oY:0,hlGi0]Pr^h+ E^%Lu1Á`|⃴U۩XۛSAfOX: Ӥ>PQ{@{yNg4XNy1s#u.Tjr.SpaR{pXXFfpV4#'vS߉^!\bTbh)5N1lbd,07&(t#pk}^8OS W8d`I$11Wm0{UWxUH@@p bt`aAۘPY!bK( !}hu V5sPtv-ǹ{G& fk7 Q+$ mB].)snR/X<V"P[MzQI9"c"r)LMk T}8~N[Zj\pu2g2Xur !'2g`C"f IJr/MGrZӈF=nW0$E8Eb'0z`IMW\F)Ҧ"/SQ2{، N<0@eԙIAQnHңƤRR0"xm1-L*Y(Tm$rIlCQ;qcsdAnj[sC&mk.tX3M f ԈbIEm kѮ#|NDo:L8k!DSķJ1̿qum# sc l:ve5r~ @$'CtN*뉿ibTG_z#wXሃ^O'c2][fXڜ>w~UbC}!tԉ8|)*?xfC[| Xʭ)<ςM9k/2n;\N( 4^> =<@q*3'/. s*b3T#2`@&e;@TFR VG8mGs 6&]dbf,p @_ݴHs0fU4.AbE687M]ʍ#ne@{ۈܻ W9mlG: P;:@3AKk,H w0 f3 WK5b"qkHg5?qzIEY ~#j鬇0g*KɏĎC:EIа$(nwaVƥ8NJ{tnPNan5e1s )H &Xd)^o n3(gl(Hk"z.,v$M/(I%lʮ\AnõG&j`d9eƛMLp]eeCG14_)`o̧)D N|IR;_Gz ܍8/5]/pBEn 2qbt]{Qq}D]IN2^%|\#:Pb  J`*`&u' be5P[rL(`] {qzɷ;QD"g†g"pO,?n8k@{^ WNp=1/h08+󁕩Th^KR(혇(F(EK Evt:0tJ ] MT.~Ћ-dNz9 R}DPɑBER"yw[̝ :wkZ3'Az}Yn' $X =1H(&1bsSt)ߒ?P(u''v\}ۿvazzH !Ⱦ~.31gbi1VD2bx h+ļzdn'KJaqGX{i zG`0E{s.' ejJ(@j jn_mΝdHdJݬR"T̢q*:5V@}ʿL[ڐ!OT?*LXO1g$s"bP7r1% =b EF)rlT"̡\+I6?t1EU"HgA"d_ktP_$ҢnNX I @Ĵъw'9%b [XIfsˆ6OP.1y8hZ]͋2k2(J4=dx;*>?Mk9q{;I0XV t45(MxÏXUP>[ S/y*UtWZF xrHAv`dDn$бB8V= ?z(L{SlIoJ#rq! y9 Eh&!Ʈ`fn\k#Lˑ"p҆gD1pK ^=wf>Վ%P& .=A|2 DNG.UcɠɎևIM:W!v)Md}F,RK Rn/г3Af/b\&ٍT==QQ*HC%n'PQ`zAcʸfDف p J2kY><3/UpK own3<lc(Z@hD;8!j -|c6*iܹU&N(_e= N`~L$\edk}X(UlL(+HTm"`#(dd01(dF$d͹Hqt ~V$T: Urzr3=ty44@/i`*ɋ/VP wTu$?*L P8#Y[4,՘ɿqc*0l C0B/uQA  Y nAb]d@8c %*1NS4:Gv R 4*XL ]ɹnP\Дn P'F:J BEfUd@10 |w6uL9m~qJ ?#N"N旼9nhK} Kf*>󀼎nh!$r57IF5KR Au^^j aɒ,w(=d 5 k BQ_-(Gueb?-Dҡ 3iF* ' r#=? 6a =czEn^ %OL@!`:WC}X7ESTsu@Бp -D6`"z,,ڟ.`nh`+2^RJeLbԩ*H/'=D2UW3T!+Ii@|ZbP@,ژ9j9`pbpxz^AN.TMJ)yz s莰lyNǼ$~"2] G@: :LW/cbLvڅ۩Ȁsubs xw|8#~2}&A]cKKɴcX~@B_:G7'2P\=lˆ)^VSusEm34H?& Ijq'.q!s~ӡ" #$rw"rIӤ+\cT /n#xר?( f?) %l@LACHvLuJfV480r p*O*{#S)/Q2=qp Fkbw(hT޲`{?qNAؤPQv,Eqڝa81Dm/ǵu&yF4 9W/9*f_O BС%Ambx&YT9_bnУ=;@6ASJ?9e`h7B86,IO};\NQBP@T%?k@=ы?ϴF;Oqݑ%njU4 pk TZ@=$8kPz*F0Q F,mLX[:bd/+>( t.=V`d@W) NdJ[$BݧI  (L<'r$r#a /!~Z@ dݜh̀H0:Ȥ n96b>:9q ͸}d~(LƔ0ƁlTEPy qHPPǤK` Alґs*(9Tq] Uu'+4zi+:IrWE50]*&#_c:v-^&2cD`HG B̓aF+P['S.]ƪ;{_v eL~ȋGcJZ3^j`3;0rzJ9@Lh>z 1ؗ䊌 ŒDB^̹  t'3swYaDE20q֠ЂGf)D) }0G FL*2 4':@[ 8 .t| IXo'.-A 1;(A'SFGuBpcPI/ʽҟR|\#&280FX;6q#K7MAr̗7:U̚[ qɎ^IgH ' xLJ}a9 9_`F-O# Gcc."{AP{ۄ^!N?P&fw@cs;@~@X8Rb(ꅁ:ѷw䣜F`;N0Ra"]O~Q EI@L~418G-dՠP)]Q8| ý;$So{MH 9'PBcSQ'{mzqZ1'B}&-jCcl;Oh*IVB WjY({ISb3SEf:u,bwD̏&l{ʆsL i/) .@%-kR &?1|JQMUǝE޴brTw+q!Ë9qЙR1+:E$m6 X<|<+X T;)FW܋ )`ǤFZomxsdZɒ(K^*v%q $-Xt.S,o'UQ\Q@>k#1@[ qA&[k)V',w I8 T-dDD2w"_z1 Ѳb*:G|ʈq$ b;QFy[v;HC]LT,\BĆP:Gqp#B*+w$f/)b0S1Y؝*1qb6h0=܄$S+fM lfAIFGݓm!a3ƑPkaH^FZ'׬O$oq:S))p$9.s,:%(%,EOrQ'N &m>f31w'Re/zj`؃_ء!_ m,bukZ䂠wr{@M7*GXhnOf,ubpE@uB wEbg(uJ703,β|Y: mM u̠ QGwEJް%1S )a,|b3[A͘ q tp`M1ɉFȣ$+X ;܍8v࿜GGWEwaBdMsh\ZZ8 Ifl cQ6$TW0I) D,MOwmMb?Q[U\N@d`}fK(cĤX*/GfBf:xsd:J''PL㣬vZ2j72K"D$P!-U! {SX2yO~1,zN`S3!OhjxK) bb=ҢhIp?yR6O2v:IoA]<ej`N'CPAQF,I RK18r_1/!˜S) ( @+6@5TVePY&EIb< VixKL=D by%9J1_EFdm* G`@9sL%[9,071Q09 6|@z#&sn^CJL1@EŋUPP)sF'bѐH.X0BRXh fBL(e`t쎜l'9^!ĻG0+4 mɀnƗ״E}TnE'4UGSk-#jܦb(8L+ڿ=(C ^[)0uΑV aG6] I@1zc\ rϤP \Ÿn LGUU [4%ݬ s( MjabMT´^OY5A`Gqt!Ib&.e(wŐgH^sŸHPѣcC&7@C7^L#j#R& Ea5z$ v =#Pg]S %f5\{1:0h2{c :^q\̗S#jF/GhNJqP2Q@0Ra(;Q"nLf r#M A P(Zx\ *0tA`p&FH:X`@c,r &8Wv!K\^ ; 8`|a 6ɶ+zMǮ#0'(ـ\u[}uA`QNeޤ裎﬛# z(E18(BI"%"gbM|@B>0b&Qƈn:DSl ɩ$pNtD407VfX@GQ }ejnA:Ve;\gG0?ۀ;H(xr9w&E̅@ ,# F::{_n2`FlLE1ht^1E|0pĞ0N.n`GH 2Rm`Ǯ&2˜>c9cD1HU$'{hOS @yuM1&c59^?yi Lx0@r+"6[%, l~dbPI+OZ פw}GD}4f$y9pVI1⑓;.8`dOM,b228?osp ʣ^Ǝ0 ?9pJcH'nGNS/%Ef@:Hg&w {D^. S(aN3vǩ8LqE9bv`@Ȕ6Ys*BiFPrbMLMb 1oFv *YN.=86zJMPq BrLb * JPa:0] 76$Vب`cXB#i,mϤŒNVe(D (I' 8P@ǰa@&G08 V .QJX*4 O=Q`:KY0lvnJH`)պd~0 śE\MQH%8$ \:f:3 AfaF#1 #A0ñe01GefһD{d _E:x7Yo rWxOf{qxr~RZ&꣙YDri7&YQSbfxATRx_2:M 0r 0g2NDGʖMFVaQeW^aQ~&pq@`oHCY2"wAC`RDښ(qr'yy,Me^eIxtEۈΑY 7zM5P@D݂ : .>7)΁֛^­ln7H Ť8*zAz?%Hq:{V6"0b0`&61b_P8W`g 63A%'t866(/{ΝY!JS!%&@fi &T8/mSJ̒5 ְH?K(Yj䛡2ɓ vv5 |tzL2dɭtz!Wq֒|F'1$CU9Ӗ=%KF7pLKnr 6UibsUZ&0= \&5ysnAÝ(FQmM#95`jk6}s@\^^V=Y,H:Z71bfH 6 :I93Y0QPMj0 "\V%CbczȪ.Ѧozf)jaY1tu֐5A ΄F NF0PZMͥBI'Rjw,im6{'^i MSDN!5h2݁f`)MQ3 ei ̛t;!S Qu-TP?GC1Ba.: P=$99t:=ec9w}7a ӊg`ĩ19*tQ,»JtAOӤm"_[L i&7 TECD{[2oX #MP!H[djکNX3pIn3{:3&m w!,I|=s@?OT4./e4uZFٜst8HUzbis TM2gQ @M$JV:Hn9BNow/2\Xy,c.^]P :!C3h'G+mWf'1ENٗ_7ħCR{⇚*D)D'/?6HȺw y(4%%[pBy9fZG.QE(`bI\{zN~sjO!DQ =8[sYg4 1γ)+@ˡŀtV:$zIGtO`#3! s;~ !f0i8F6Lq:4{5[ؚU!# +]uBhJ  rMڿ9Bk'!"qYlOi{uFA5=a&5a7( 0ư43A`o05M0a*qYOxVf84&&)=:=&m\. #Qɓ.1z ɎI LwGbp5z dۙfJ ]dyJd˰'1_~jܕGH0kl !Kv9RBW铈i-0=w2#HA3*@u'ln4 =vx Q8;@Ύ:C^cuDNn1.􀍢aw^!X_q;8b؎%w2~0fb c>9N$le9c9GQ']/}+j}n68#&N]NVk,fBaz>1<{+V{aJ;9>0"rcs.Qssm1$ңS_qC4Fdg:_q ʿ?(<[qmcBPV1Qg;ʼnS9kD TrY!%^TO+jt6ϤE$q,{HMIm: bPN|t23H$=GY.شucB,X]i1*n#kGl"]/% 5 Ę{*sGC"I0 Hoԣk%} x uԙje?/;jxr7Ae*4bZ8VPW3YMb&zi0$0ʊZƫ5Zb{D$i5ip` ĖjJ&Cy(n"Aja}"nQYilD9jh KdRz^ؼvb EsEXCʺA1q(9ȶq%R@+XZw&XZ%YZe'a&}140V5DH$ BH9M9g9,U¨3 y/X{Lqj0\Pģ C:@x|sU&E^Z'U[PA$0K7]:ΧM]e:^*b`/nN%zě&Erz=IۼiLQ"s ȕTQGCGOW!,u8L+g0;^X%~r|/ͮL lf`q" 3`!2(/#Q. 92˵/NeRBrdܐnUZi-*g}s&nA94̠ƀ6r+kqJo50o]R'e̿Ū6,cEb:B zGbAq" SbWS'㐖n#y Ğ&$ ~p@82bS,d9oq2[v:|Y9x|;NWCe^s}\_Pi4" y(P"IC$LPD"&+Ȅa#yCf*FiWIjbbz1 AQ`:ucP4#陵"&#z #BP7k]+U0Qz@ LahBlöz uO_X"-V)Pu3::ImK DܧVKυ[sr|'ANGi^>NL^Dp?`b"nT6kB i*6s MU%)$/Qfu93}PDeP.̛c&5wt' Ɋ6TH.Ft1.Ta\d@oI?ژV"ݫ"o` sPS!H&9G:POC(&xzfR0g<>BliQo`GŔQ$X>RthFdZdd|u\  ޓV0<ʹB|u B-qYT`oI+NecFD=!.5TQ LAOxkVz]LޓxЗ !'8jbkX fb`15u[W1KTHظ' 0FKiR ܙc5NϬNE*1RFۨPbDp7r=&'f@͘j.$X.;s2q?!ZWIn9_Y $}"V@[^YٌH`@m B"`"&f| a*7@`j1Np!D4`{De3z :Gi[ޓAp53UHh 㑁n0c=g"yq.|^^ڳO&c9n̓*1r(O `0=i9S>J~qDWOՁ9'0ͷ'cdۍW-u rdyX)rn~xnxN7 kXcnf=rg R> :BXhup]瀚?(PB#9W&Q"~HB܇%ar >I}"߶(ПRgjy [s}%+;K-f;xo .d<~N,4"8S3 ϥ<+Oq(8;!n WQFD-pISmY2^Ip^GȚ }ӥB 2hp$|^&uz%oxՂ_YsMQyTa/x_=49biZdQ7oPWεc_2`%~zF FyaTG9ƫQmGɞw-6.Hɓf`$hʎWئA^a# 7`4.NNqĤ%!mxlL\ 1(wB*t&噭1 f-x|4.rqd8E$f3 {E&/P=؜0Q=#4.Q|'RYW]STAʧIOB#D =;\t2.¸bVLeka>&*(LOI*)ܣ3_y8mU-I",dt#y <}hUu[p),cg`3F%C[j؄Cuг3Z5 I5DܜOAQNRT_ۨ-)ڸS QOrd])SsRIt\{8Ejbzեؗצ![n2g#E+^.žS,g,:Sp'2f&N.%O 6[YMPp?y(5+7o賍9mwX̽b%{d+^e~ D5/ſq(Ωus85Cj̋SC2 Ng@D6NUt11a٥8"ƍܹB-H0rk? 96>qZ6f@2K $̨$Q6ѩVOHNJxbݍ/fP  {J~0bDyaH%IdL",O+.xsVE ^>nv8zIsLӝ,Lw;V*7W?lSXfq~Emf+s>rFbr"9`.? u3G;ZO!Re@y(uO?~j}k>I}g<::|1exg{I9x%'( ƥob/ ϡtN)c_b' 3OEriW0MA|>X?rh _9 g<>f>w*=zNnzKZn88iA#'IRXtt@u3q7,9hT~ȓ7D8 6T)WFmSڦ0b,S&h@^@?h"ڿdc%Ku}Ru8斁eZ{YgKY. ɍhL EbjX3q/] 7 xvDS\ OX@U:V# 8]I'hdВGIYqM9F*۽~yt_p8zS~hPQ_)\dj|/RZa^YݯH×wRܰVQ )AcӼ9R3/'TӤ,.GLX ˑ Aa;6fĻԒ+6I¡a[bX2%ۊqɊ9yQ&j{eB`@T^5Gu`skb||3; F%@׼1Vwp~4,rO~$ߤ/w>T ֽӨE.'mԻz_$0OPgbMԃ6taE9ʔQiz@?Kz i,ϑ̻?(I# #}4lԙ7ۜ€{+}YD9 JRM:GF@?v!Ko$;E+?9$%GADHH9jw+zM`Ma3V3&N 2&8j̈` 9\AzX*23Cf`51O7f+y,}jA&za9 {O!C93#o+rd2jĚ:-2paCː6,"/1t΢M\z^ 8Y98cȎ-taG3R:1d+mr#3y|u"N5 ]~VVUӐSWw vd{q\4:INAT}'Ke7+?Kg1  '+uI:t*YٱOhN9ϗܨ ܏ _#jbӟiY]׿IR8|?o\ %,zGA^q\?jdvmL6z^!>wsWG޸'lLO/=N0)^..nRU p3- 3QV͑~߄y|~@Ng~N%:KyNћ^aLjGNϵyc__C=*"c}`_ۻ)s9׍aDtN5H+Yѓ|Ȟ㹏 ҾSO+;yj xyw\ud,*i8y9as0fV_'5RYny3T%lUH?I~[*W@i2$󇐅ɆIOS>`ҝxp6>1 p#]O9 ?g@woڶ!Q﹮{A9oY]fnns)mZ@J3dO WO!rzJkEIkk%ٻ*1uJshf#k%Ma<,MKBys۽@|Xta#f7oڃtp' e(8cBsN_3XQX#j"#9ǐěbCb"9qwdUwI2S .yGjKb9#)LO'*$rQ,Pfb/&sK}:_ϼ*xt o(RY'97N!wtVH;SJ;|rg*GxH伣nod/< j7j`X7Ϥ>[S3'ַDiVg'ܭWdVzLg^%:O,/$jź7GܹqCx+gc𳦧Wx7])8qf*ynsBO_zoxAKbx3y }Q9ǷI,Sq__Aqj<@\5R[}`3:ύk\dagޒ(m4e J WN<~wG9F e, {P7YT.# Q$7xSxQ6kۑGmw%MKWj[oX|nY/u=jM"c1A}.WfSS= o)z#lS'#)pcx^;dYdݿfofY7)YeM*_ti:zGҦJzԏi i(ij;>sM"Wwg7wmfF\80M5:SM$foYEvoYbabP?h za?sM"ooo[iztؽ9ݰGWXz'N1iNN~tǷI⣏^<;6u&>D3M3UigIPogGvM5bM$Z ߕfuVM:yg%߶74Ӎzc endstream endobj 247 0 obj << /Length 1160 /Filter /FlateDecode >> stream xWo6~_G X&A @&{p*ˉ%wEҖt LQ;~$h:Ha0 A\1lDL3LBkftnpQ䜣`<]JUOwm]/Ggѫ_Ar4SNSƷ*]ӌqU~h|ʤ_Xr2srR5g~9c{ɸ(KolfMo3Zgx 560#4܊c*~&^],5zL&h|*li}?\TIn %Xɐ鏩koI{Ă*CΔOc󗧯+knzA)6lTzńqHmR"ޗ+@ͮQMk:͠bbA0S3=8ѩ=O}!L&vܹ}\. :|!Dj^s{EQ笥櫴h⇱G`Oc"%~G<B?-'\oN9z9)e$)J͋"dMy>'O+x-?mj`fI]oHShƟ )G~xTzQ\z3I0!3L $sK7~Eeq >S z@rpd|! λ%ډ|[Cm0u,(Hf"Ǥg+{.ޏVK|S" t |QIJӥǮoc]jwlnZ9g.ܖնέ4 .W5wAdήeċ]n7^]ծ|E!ܞWO(lm{> stream xWn6}W&FEJm ރ3QJ%yIELvA@x=K:@9 "FX !N(CabrT tx7y?qTAA4D!v^1OpfunwY\WE8ME{bB 9AV[iV{~Hxof_C,Gز72h|86/L~>A|FӐp! u8 +Y&K%lGˬCrVIF87{.\e{w}z{D5l|&ښUdekI˜F3/E6x Cr#ͱN+4!8!I_% #`m ő5)]nyvM|RP;("VԡxRnCHM!{![Vjz5+𔢲e33<>*24 ;G4ys6G&b02m#/L]Sjv|:i嶹n{9_8l0X w3U6Ac e;_7*5i*bP8ZChr?9Ap{p9SQ'}-WZ3e>2h\EdniY\#3(d_Jc@sD׹FƧ! !i#T1[iW~UuNa7'('p]B@4okb#˭p0EuvtrBD8 3[oK@zRc[;8Nsյ&V)ݭXԅxКO,q'lZd풐9i~94$;l+Цt,k!n45wsQ֔.(3-Sʹ\6 endstream endobj 168 0 obj << /Type /ObjStm /N 100 /First 913 /Length 1539 /Filter /FlateDecode >> stream x]oT7ϯ>!J@ (KXt%KE}9;IfI+YJ{z<<ˆc$Oq E)[(U<ρ⚨}g^2qiBG[qڈ6[t_)$1A$R4(hTOr2yBRs $ @i`|xT3BATEh`"uߐ#5OT1ÛPYxmD!j#Q:U`% !*SJ(8-f3 P _ 23[F-_b."G,=)L3lHamD5i#QnMDG*•JJJx*i * PPvJ zb$SDM-UF5flV]3FڰZ LG B {7HԂ;ZD-{mdœ:P MF1LABjakn Dѽ l74Kk*^0 5qQ@R3t]sR%I45%# ?HXyHtad,Ib6Le`n,%cX0 B8q=8 ea|כ%Wf޾L8Y>֧/ߍ?]h.7t(N Zr>DtO{{4xlM#ş'Jtހ[Qt[Pk\.2'w!$A"r9! !1.H40sBB!S=/7;T=޾~}tn4>\^Y/)l{?Yl666͒xzc׫$w7۾^~j鲵 r``G4>[чq~xmY6gZ5tlxy6[?._,>C>" yxM~ gdr1i]SZֶ͊`6Mfb5=[kenSpM`.rI[>yOԢHKu*jv vDw%UTV;lJsRڍUBK֌-V\K\p؍.x08Ŝ {HGAY^@sbN<0BG`cZp ӼߍqyKtPˤ2YrqIs)cօ@iݚ/QҺ8w1 n)fKy8(F?WnpćQ?g>8Vf ^3pl86fضֲY1c;8vpxspԯF gpF㸯E]Q맑@RthMdžll4fl5kH)O̟?1;ZvhѲeGˎ-oi4nU\%y1`|b0^ Ƌx1/h/yb΋;/v^Njx1B߈? \`bλd8 \2> stream xW[o6~ ĊHJmE{jAiY,9){(R,Yf;9(B9I@0 S QA1-F{u}J(R:xe=\uY[F&Py8& P`D9E9klu-l2|Eظߓ?0s=d3UZYDuQ}I$Z1\n:sOz@`$x?\POh x~%e|L}][hF6oҹOaRfn H83ҟ,.(@?/G9cD9Gp;2#0A/a^n@$-dڐ5 vP#5=_ՏN QBO&BϵW͙.( 9y@{Pqa6ȳH1]bS8\~ IY8NNن?&\$~< !gj1}+/$$L7FT|S[۪mPg,-RKߒ2R>u?)2px+o7J eqX4:B  $O'#hg84g zSFlR9 n-eʕ~-Y&0gmZ1y!6ڶr:Z?_ UPql_y6E|{U̡}fnv#L5/a:f3nwVzt= Uj:\ uk&pB5owD0ژV/AZm̰O[ʠh^ F7oG^:A4; ^wa E '/8h>wRCB  :DLU3H6$˺v.zje=Ks$ٮKU\߉pBSc4=_LqX6dT/n27gнq2qGq./8dDu!RᭌzJaSРBo dZjW F62g9OŻ`}LV;FSGr endstream endobj 309 0 obj << /Length 1128 /Filter /FlateDecode >> stream xW[o6~ࣄN,I"ۂM h%HPlYc;.0CQ$9sA"bB aX210eU'GqaVX(Q)g0[ O7Veˋo,Ah:UӘ"&)& Mg:Ccab?&}*"WueH`|ei_E(vhY1PǬӼ(iKW5DmPgRj!J=G{ȝ fk'(YϿziCP'[ue@;uQZ'5&${!Я û`hnt{mccÚX1'մak='pcm,׶AIB(_9> stream xVn0}߯c"7/Q*hR%(f#ޒd=KZqbϙ3gƎQbt>{%`LH%iI"Pb[,ZcdDc K`|;krk7rt<:yHİRPAp} "q%4N_~C* E~CcN8Vi_Yf}?@n*]뎂`\s6ef٢pʻ1z< K@i/ֆn8y;K(Cp&Gkj D2 :6>.[3Ɠ0q<@>!k票7p yߦm'68RwμnFK{a憦 #VYNAd= Œ٪U!1"8Z'm5NRW`IBW>`Uh`ni湥q:wP\q@ > stream xXMs6WHdiI;ikG̸ꁶ 5E9$դ]H-r{xd@݇BOAI$P~1Aq8bBZL.F^1U]hBID~j^쪗瓳4FNbtLATR4߽@5w٤T՛c#bsDJ3ZeG(p3PfQ0G9i^ԏCK7K"k@HC 0~`!)Gmg|XI xq[&pd$0kиULrn*eZ4;e@B,~J^7b6mp DGpΘ `:ʴ1U~*%8rlɧNHm C]ǏjI" %$*Xq9t20@@9G@{YPro]aZ3 tUU_:>>"OPXgy}&@ue& b:G@g`N=;XB'L}nH3{ηNyۻۦ>|5>wZ59Y[ῂjSTu) #bk,> cB"y%'8m<M~` 3± p3D) ؿ[E9lmt2Uz4?0oM^F9$7mæT M8Mha&aW)s6pL8Ry$Hbz&7Lgpԭ1\G/ula/lEKL wkMb0۩A&u邀#Km 7ƈdp,}9ZK?M"&CԽ~z(KGy{Ww.߫VTq/p=Q gT/CTcZé-}zS0'Js[¹OTu.7D{ں=dy?}aeߡvLpwKc=cT,NX4%xV(r5cLv֯Z**_4BFK{iӗ͞fTH˛\4zF9)( &x)qtnyt8O/cqzɻ|MQ\nxDٷ0'"biEDЁWvy,n+`H}%$Eyz+͋eR$U[),׿Dؗm 8YW0 endstream endobj 369 0 obj << /Length 1199 /Filter /FlateDecode >> stream xX]o6}$`b)}Z M hBd9RlY9qa( {ṗ!h^K>Av:+hƇ #n]-# pHM:Xh|J,qV9nwڀJw}JZVc'mMpG@Ikh`(:rla$ɧ`2;ܲh3yb57f2Mra,h(Ѻ,5~y|,P-@)VTkñkٺ9P(,x5Oi嘓|cXKQApu0\-;]*a%Cks_:Ct?cyrB+7k'Rj\nS2%>\S?S"TsNiÿV%8.:D*l5JvT ARXjPb\oշxf^T&d=ֶMҼ͋fz;|U, 4r#Ri0B>nwD)zs^:Ars%4&TS ,V&ƳsڝTF5~ -7aw 2ڵBG[;@jCRwabJRsu^K{|@a>k!O: EGxUmc%!> stream xnE).dE$Q勍 a77(=͖cs"PKvf\Swuux%' $k#)T\g.$BYWJH-M!Lbw*q, rgf$I0!V"9jYL$QSF\!%ղK%&@_mi!4BjoƝ&&R0FFIS2'feҪVH[;"=(JB`SL s1G)VH%RCY,l"x(b)BǤJ!UYPQ(ȜIp՜B9EJ=(WfRIb롂U&U"dR%:"! Z2)VL8&U0'U+ՌڨFvsZ 1PlN!s#VTV JqlbCњ̺G-5BJ\bZ^hD녬P s{((3[Qf2^$45 pQtgc`B,l,21D5cH^P̅Xͱ݌|TBXnnm4? b|wv1y8[m_Ώm8Db|:1zq`T+ Y["G4>V{߱cݏoNV(}pH-Į쏗/W ]oWNiHb:p[?^-mҴhTy:-|@.ay8.ǴPdCvg6-n]Maz竞cuu`A55 j$!=m׻m8b/w7eG DJWbwKGKC8ǡ`flJGKGKC{y(lWZbyHehBk̴J,Ck<Ę׋qPi:چ>|%5 h66iahMI6uT2Kg]nW͒ːd+`w@b`UVy|4~M>6Fڿ”n0Y96g ؜3eslΔmW xg٭Umrۙ3egΔ);SvLLi NE&'hع8-n[DqND|Ή;'vN9sbďD'J?YZM4:ʩ:ʩ::at4E=_|aGÎ ;v4h#0 Ah0ߤ4$^ޒ[rzKNi09 &4}ٝ|N; v4i`|)-='/ endstream endobj 391 0 obj << /Length 940 /Filter /FlateDecode >> stream xV[o0~c"//`HH0*!xFHR.%6PUlj};E%J$X3)"Òr&@FWwEnvhFGM&,n֔~4a% E+p0e4C%⺳8hG &&> stream xWKs0Wh,Ņ)8 34L:N^%7cF,ivӆt<#Ha+qp%ba-:#NAȁ`0?]vxuy|K&Sń:uպq8U}?t}uLeԬ5K.P"~oYJƃ93^4/)l= a-{Ϻ98|>!S/34܎ԟ ^-5:ZoCt&'{{ z6>uu'l S1+"!pM'>O;88'sbcIo,?TYZqUddjg>M .VPjˢܘhU \oUx[eaa O]-WyAeU8 6ΡT4TIt=|ZwPS cH ))MF^(epXr)|O2zSӇO~}3M6}\@O,zv =S6!Q>>-.϶wї  Vq4*?JAMjTAN s ^RR,]ٞukڢ ?AoCLo]0B4qRt6`=!7vl0 ,w ܆a0qBWnr,+G/Ղsoͱ=y0[4>h)DC  &tIL\wLWo@B)p͵hBEkDb~ڵ'ݎg]l I'䶼J6@u_Ž'MV<߬JxSj?۴l <@MxW\-ҷ?Cen.aec^)MԻ?o.*|/u endstream endobj 430 0 obj << /Length 1105 /Filter /FlateDecode >> stream xWo6_G XRXdOkk@=(1#kT.}"%˒I A%~(C1:ţJ` ;1bb8bB +V܊vd#|j N7^Ve7٫ߩB ֊04UFse >[67x*T!Aÿ 1g 8R*-}?E 5e^uԪc/ECpY]XγV'-`:BR~1W9b%ok`NwkN40a`OT_Ƨ)N(ixfo >nQ}k85 q)<3Z܋2m.L0jH Sӄ_p;sCʃu9TZgVӵZ妪_FbI>"<9a8T=:8!~T$ܷ!5JHVDTFue/ pXiiq ~͏1˓_鿥 "|q]FKgC`BhJߚ4)壵i @Z?톟M 2卵8MRA(hK1G9z "`N`a'ʻ6/=̉w&w0BXGB2pH0{C8QK=Wh; 7ٟ|P%8n/l٫nUo[Z ,.A;( /i: 6<  M0$ Kh.mt.c"Rjw.[[I_gVNoWfYʸ}:ݪzwl{^l!ev܅Ľ'7GA!m"3XO~kޑG $⹀_Au;\^n/GNf-}Uo@h-w-ty?. g~6(u`N0EjK}m zlM+yN؞'İAP. U5&L@#oS"~V2G endstream endobj 451 0 obj << /Length 802 /Filter /FlateDecode >> stream xVMO@WіT=pDۃDZp;-zI$@[!4uv͛7 QBt8 {%`o`'DLR1P)ő0Kc 4 8X(1֗Xj;\s^UwΫ̸<ׯxjQeySSU|nl\Mrf0UnWԟ/jPUZ ⤮e%=9ӪҎCQUۭ/4 G.uU,*_q`9 endstream endobj 433 0 obj << /Type /XObject /Subtype /Image /Width 404 /Height 518 /BitsPerComponent 8 /Length 49011 /ColorSpace /DeviceRGB /Filter /DCTDecode >> stream JFIFddDucky Adobed''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD"!1AQ"aq2BR#br3C$S4cD ?ZTnumFFFFFFFFFFFFFFFN(7ah??aF _ ⭶O|b+vߨ{+AFrA>MpttjlgV4h4h4h4h4hT$jڨ:ѣFѣFѣFѣFѣFѣFѣFѣFѣFѣFѣFѨg{ߴ"~[4ך;\T35f?W~{u@YnNq<}'61ۨ3iZ]y#?|ґn`ذg'~rqr1r:19 US˫YelUYfZ]Dt?=@\cfyz&ծ@'&G+p(i}?=O]X H;K/tc鋃fDɗA:}fV֩0klnˍ=h9썑[a˞{0W>1puJTԴd}~'}m݊M`~z/뿨-NI̋vأ{lgv?ticlNU hܒg}T203*m3Ho_JfO5N5a8G05v)ƎVަV!|`c~?U]U'Oz!}X-]A@9:xA' WLP{F #,ph>\?_80x0?xs@hѣ@hѣ@hѣAsѣ@hѣ@hѣ@hѣ@hѣ@hѣ@hѣ@hѣ@hѣ@hL+vF qoӠEA,uS=2ZF\qcTo?}ˋ~{=h-Px =Kc>rn ~XlOpߚ䬜csLo V(1_A;8U-a{e&7-n3%E7>5 .B8X1X'q: v f+BI7& m^!%PWp8A1cYlsi$b,tF)|tN۴*k*R.? 4NkC b'àhѣA44F@hѣ@hѣ@hѣ@hjt44A1S=Nqї/y>Cʘ7$דS؀ѾG~Z=|w V􏆴r'\H $MMr'ug^)<qUbLupנǕJCr*T1Y$mQCècs;A^[L,X0r&"HbynT5cbak>\xTeݙlPP$tOm0IAEw XBr,mӶlxqhn`V<0"`vXSӱR{Q0 .)2C+LoMYPѤݢ>\[ދi0Ȟ-,+--l-Qp9P[4: Ǜ_-n YFF'ͶFHƘdv6lY"zaAs 1ƅ0Aq4xYL$"9nZ.팦PCt "LϘ9D9 fV κ&t۪9*ldG=צ849qeksG#OLɕkMF_Lf\Xqe"@ύȶcL,Y܋kqT*ËPn6]/U$to"8rҲ˜H(%D0 COAl÷ܐ֒PƾT5~[8d9K-5'ƚ{fv_bi< P{v f6uww9R 9Lξ,ڑ0 1.7ƨׄX=EX!b/,R|{ THU2K)2 6t~ٯFUQ2?-y!fO=G{ X>֋һ^K].S j{4vQa:0f]EZ*:"9dˈ&FdX`- #-ݿ`\xxԯm0ʭ>zbܝ˃/jr#ȏqjLC [dj2.hx`<5gÛW-D Ӡ6\['JH9΁OfcҍLޞ>laNJ#~#&vCɍi4'F*ۓI;mcA8-K2쳹]. JpcWrb\7I)<.njoqIu*)_=2dc"p2NjE'ݶzd Blg4G,'lMGPw9[BډP!~dB' Lsڪid0>I0C-d8ɍ`-[f=LbL|;spZHi?{e-5HHYnjqdHUX'hc[!_iuũMš }9뤓*n嬌1fN2gUÅ_@Pv4E{j*Yb}PǓd+-Y X! NӠ}C3&AڷFtP#"3So:U@zn K2 2}IHhۆqk )#cSڌ##auH(Y[I)Wq X*0 hcZ&dNq\I|kZuSƺ@ <;Ӗ=v2ja$|1wC#4R4ᠳwF۲#O o;0FJj NѣFѣF5:NѣFѣFѣFѣH}&͔¨q1S ~P/Z`T|Yir$@qXqX:-;XL’)N"t5f2ŕq'1F<,{O{~#qv@(lcjEDq$i\.d;zY1W0q1a{Lk)bM&kegfϏi5 7VkC%VR<mn?:岺b^mINt2{rgȲ >Q7ƙ=2T_iwߌxiTLA#mm]ˀaENW!bZަlFW Թb M*w1iKP nz3Mm|Õ1dc@Pb+ݡ\6D1>XƵA/tq`\}:I#x-[χA2>2fcq'~cY؟,-['v׵2ȋU 6t6:bH#hv,GfȀ iګ<<&u~r%Xki;> pA3rwbîB-cm ENm_ hŇ6ikq2%cfQLcHk*G8R m4'@g &ͳ ZAꮬڤ@JboyӛTfMY@nǎJ+'NB[1!g11®S/8P0Rq2;SKsevǍ{ɹ 'ҽwAhZR\lnamcx}:,(AO< jb&ST#̙blib*L5 inds:?v.qԵil$7{RbDŽTmS -z -)֦Z`*ZʶVo1 ]ԫڙ{`)IfƍLEfشPgKۄvfEa [NRa@ˌ>t&=<4ȨOsqFb*'~Z!N59Vi>ZHq*ehjOeԸݔ@qZ|wF|](}=Au|χ,#<|5ֳ0.2nSӽc}s; 7Ў}SĪip12lZFF444E)w.L׃kY @1Yg?Z_3UVxj*iܝGkIcFaі W͔.8(*Ài=&W\ "[i $WdtbH Λ?wm ӷ{ё/rl^Su;@ίÉ翧9B\+]{THf4Z;g6D `O÷@4-t4ci# ~ӭȬg$*nvP˞~NkaISdS?7~IqC0`[M$O 7s r.4eg܌8IJhd i;08MiM\BUFkԆSH^lT"$FٗpS|l1^vi'ޣ# PUU dW^!8q 0OM9օ*0v ,9yљWTM0"N銙WW OlJo&6Usga(kvۑV2f6.".RSl㫿qB(P~\Xoe؆+ ̱G|~DLpHe [J\؛[ 6$VI'׹BT?6C,Ah8Y1Kf$, FSkGiݣa[a$q{bRf+xt=r9746qqGnW h˨Pb]m!xiϓ I-1}iIv͗!"1-VX#†t pTJ 惧q;Ŋ0s+,<QLwWgc4`5?V4j#OZL(NEHU7 O gxndkTI۝9enj U- N2x^laTT0Zl `fH#`ŹqLkSwi]E=/vhxNھfˋ*qʅ 6TUw0㽲Ve`R+}{$CK2wr4cL$X0%H-­P 媎ߵB%3"VMT \]T7lpe>We89Zt!@nS50<@+{pvX֬+Hdf}Ɓ,2L,*X#u v S ~7Owo Uȣ.&|9zLq7;WΓrːcV-`@$yj'*C!Y 'dƹ!ehp7mgSb%UFvBdADӍ4["+l FW~6KkR0HޚselZ]Z^3;ŕM-7 qg.K+IAeoplUm-0wPV\O3'}W) 3ǎ{{yuѣ@hѣ@hѣ@hѣ@jcR` j~375T칳"W"垦<9Gw=pO >՛E z^TӰC\ 1)ƜxJwq`rdw {SZЂé\iى0Ę{|L\ 0aW7,.dpIx5A#w(6[7EHᶪoHuG˄bHoE Lu 748͙Ю/y}ܫt7)Ʊw*&_oo$Vq:4Otm1GcOmBqb" 3@n3Y)+aӯp8rB<#t_GUV !ۑv]'6.C4t@ܽm|T`2dU>=..Z(w ĘUv,n@TLE|;/K3h*- 92^.I3b,q`̅2-ʀOٽ.L5_ 3?.dIi"q'x4^uSF^z.5$uiTG&fBX]N{D\q63A#Ҥ~lû37S=?ʬDi%G91Ȧ꘬9|scdK3if9lRю@? b-2,=Af-f ;v~'Qb\kU:? _9VIeDeS>~;]f0`3Ln"4S 1 KE|@&G hNKeNū:|Y0!rP^jM.Uy1>أ2,#t5vkhɄ⌭ﵧLڪaVlJaI3bGuv<iON|ōR}rfwt 0BA`;I##m]L?NF%NA+I]^SȁHDۨAZ7Xr/sf\A6 '+U靻w"2jI;. -H[}UN#}V\ćΊUX~cuǧA^rX#2[d vp[Z? ;؏q j{L):seU} :WS91ڮ2kH 7\ۑoRQCb#[bq^LV ZPɁ:~M؛ 3Rm0u&@[_uEj"O՟DPN&xǀ+'l';zbnr M"ӺHIl29E-#G 6ic4sJHZ/cc#.`@#rv)+-^)]oԙ'|b‰19Tw.$7ĕEk8]& l)+Ewyz`S7o2iχՕ2e')L |8s22p£j|t 8QŐ.0@幧f<ޗ`(cn^ĺv*DoMy d|ؽdQ4 >0Ijۻk9 " rS[0wBr NApD "Td,Ȩ b@DWARƙL8tX{Lw\`1>v;{Mm&WXdFvg<.gc#r+vr9*4P>F,.&j"`8NkgqWERL#*S$ܽ-E oYqv}<^In.c=7eھYaҠcJgwbL찶zc˙ RS]qJvǔLp0œSި%j+> ]eD3$T >1^ـBr)( pQ W vp{R&xᾃCر|Z`5f ~:621 m2FFFjthy\~ϩZM}3_2s x_ӅFLyIږ۸jTSP21#67}SHT?nq4$bdWWp:d)o0M6& |kZbP| 8;9,dpQYԍk  M:#ps6{YX~  pAT0r/̀ilX{x@K"T 'i(ȼp% p=<9DxP%d x"֓oIaKI5l9UdP̪Eu m.LԕlEX VIOIK+ csh?Rh.NE3Tc:::tWV`T ʂ 4n tRri[E8zgo3!~utT3`{)hlFE5"@iWګ4Cڭ47ctn@1>B*7S I5xeƤlT@y\#wk S >gȌX\bGL"( I);tyŅ2㺷Dw5LM $jSXdL긘Aj<8Iڢ6lضdڍG2* 4jµTH_yf ˶^gwq)Ki -FEW4>|coqL#cӈg9! ( HZKŏ*!t@ T~=M-,m=f+![#c4m2<:hN ['kPF7D|Dv!PqnǸNٖamb4cC\9Ł -kcǎ&91YW(-;iaiM  2ӧqP d.[f6?M̹јc!Diz]wrIB=BG"H@qeV@n%r_ Ջm2CI< ,=$|=SA@ΝkIai5e9JeQ"m xR4ɝeX@HS-S2~L)(?Zs r.C)EKȝҡvƅQlL-"f PfrX6Knj"Lxe4'PبP KzdL4 }W`xD 0O&v;&&T PYFrp#VccdFڞDp-d<#N )92")]+Y+{KK-H6j˔c&L( 8Z|~{ 8 D۽O-eUd-^)|?ڷ[1HA!a!+?N8)Tx*I"wZO-a0>qqPSAjupK2>ӳ&FeXoXtPKTQ\HW6OJTjNcTwXlnol"pC άiL*fCl<+6@q,Nʫt%е)8elˋ(c M$<#(K{!2]"jL5PW&1IGYpv/< imt2Ư`s/(ߊmfd~ٱdoȯ75$n[ß*l9c,6c):e|hXgG.kH٠3er1PEDW;a#Kiϩ@SM8f(m\TOՒ_2cv2+kw9fʖI$1SÝ[U3޳YW>%$t O|[By xخt\%˱N@CYȧAn3- dx$dL,rn^c~1wanMD v:.@ߖnU 5To[`|9!ٰVXX x285$d.C6(j<‰xۖ夓 >H\n 9[S4#jodz6< ^5}08ۯiwGfb~ݶ1**2AkL 2gG],LjFNN4ֻvYrj |ߴa nw @^:fG-򘈃oþW5l˗uc ҷ3۹׎gFk%-H8j?`˪cr0c:L0,I*fwZGA"n\c6Nɉs-|3<<c V dp1!K%wwA]d>LwžKC13܈99]e`@ ~m9kvˈۚ#"!q4i9;%sdJo_P.pJ" W 2Ѯ;<6)!͕XP.Pk;`>t49WbͥV Tm^<o[U.:N,!a=_)Z_GPaY}V>9;u*X`$S6-8w%EI`1 C0A >ܝ4vˇ-sM <p;kۖrY4ʑ" 5ꦂ;rX MYi>ZbRU[(K$ n8'm%N`PzQZ VATZQ@g`M7AAmk3&iN&gX6P1Ɇ`TWMv\hU>buYV?x34􆁿 ;|.1u]E8b<}Ezm*Aj2܌=9 s0hx0c]bkExlOh*da@58j"YX @ r"N y\eH69V|te}! Q`z3]ι.͌UʰRL ׎[0Bd XVS]y)8&2%dmzN]ic1!L.ڦ9ӹ1A>\".Lem j ˄ݔ9f17XLXFW^=0x֛5V͋vÝ(mh-c7 qvXA&|LTuLq+1Zt5';;4wV-f1ګ1>S~,-L~Lw; :dM, i)1;.!lIdIPb}GSܜm``xPN9p Yd: \̅ʆSwI#,νK@;h5"@J(=BˋV{f$I FpdAe;a˖{E\r:HDyAh_9T0?o-cOiv!uq"kau+U[@itQ1QK<#F4h4hxG 8?vmjfVh 1Wt?~]|X.|vVjhrVLÎ?rp%!EH&i窜vdKʫrē5L` h8qW=/9FVQ: @G|enխc In^6 {|$4.K3ԍnjzp&.QĚm ;1la&e$?1jC'{:Rt\ʏC"=#6VQdoHs:5Ǎs1hc[82v1Y2{2;eoDOMs39wPzJAQ2ljV@*L^ xZc {` xDy5<' Bp' SoޥzΓ|#Q&H^ȎY\fJpRLy4f@n >J &2: ;]FݦLV*C.)Uxv}"w6x< \B*1K^a2UYG*@'5wbr`2*M8q3w)̙q2ŵRLϘ'fʚ 1-mW? OT^.4P17%3OIrN lA2LP,eI6 2w76U` q7YZyyN E pn$f[U”7|ZtLj,~]ѮgK6~ :4h4h|9PEOu;6 sUӺ"yܨqiYv= (zn| ǓdN¼&AlQj>2w:ocdR'퐽3T?a+&Q5 .K'iZl<A8J7"3 %)$Z/UPlw[֫0Igj=nEx@œ@8!I-KYZ8!ʄm29J'UKn7@hs1.N+c!!TO#2&L&Tj7JgdžvӀe*|ElLLURbNƇkSψ"|YR-UZq%+)5ç6*9$H559_Vnj.0 G4ɚj(+5T\C0u^W8֣290{.1+[qDOm5{Xp,RX5 WAj)!'tbc*(w"ySkmrfs3mL,kn4Ӎ N<v/JF5{Qp@]Gx+b` PMʓM?.ZndJ7>c@8L/)Y" PxjDs;ւ-ս"nA+Β2w4'i*w)>gm0R:& [rqq aYKKJ-FLٰ.e`( LJvIw@P8 8[֬MO@[tqQQ6n*.%7HemnzS]CA-Z˕U]_7j. V$ʛ} 9~cS13V.ccHPONqpn̬RV.Rklj;h ɒUKƲip: w#p#+;ZH7;SյyxiMˍɉL"dՙ KZE917Tje(L}`qe_L?NߧaF@f"{IٕUŵ(qteGƘ.@0"sV!f$;1 TTٖ][JZ n2c!B0C(G#B _ B2Za4U3Uo3ºo|q#djŭHÇb\l2+&?a@μװھZQ(bq 2`5ӲeLs"J( sJ=g )"9O|S1c ֡R+x^LNPn^$AAUYrdIQ"ey&}d"4uinp9r̬볩kAMq񌀲~"zVH҃* ܭ"D>Ws@r$GNUr\p8Ȑ㰥wԃۨ ઽzkV2;cPnPǘ۠CHAZ}^g(ÝY<58!8XH8:i-J'J]̎^Z>oDG j~oA}4h 4h>uqڻJ)+@A4LB&i8~vd]t8aVȬbR!mE#@"3r>23@zX4#Ws>$AT oXP 򦀝"8 mWږ a*1)to<$,3Lʳg6ңȒv5T8=5}|AX1V7\bfuVkE'aωgBbz*`t˒S6U -_=3 V 8 }1d *@-GPX\IlleBwAt)Lm_I)V&D bu8ѢcT`eO_ݪ[CGLs_Gn !81$^BgV/B1Ҵ@|#Yr4'K *?WVfBm/YcXwt] 9p\j&h)4Lr|@ZlV%2Z~l9rCJ7!NgEH*z][z)Q|hZCPʋ_8f'䆹 dC[" ݷq]@rUVФ7p^iP==3`Vo6[y8S6U!ʐQ%TSQz+3bḑk|jVp[ZUA3;6FE| aK*fT-cqȍ2ɓj2!Pʨ-ph&6'Yeǘ+ )*xRVtȌQ")/iF<΂خEe)0RKvSCpjdݴ(dȣXY>|Uɔ86>1c dcBs~B_-Vf#Δ|}e“@8~ZȣgHDHnSjXvVl^="d1FIOm q NO_ݻ)OM/WG9qVk 'Q< M>[iF1R "AhA>i8h${[Rݾ4ѣFѣH;0|qő ۤcoZUi+me6l͟X|Οܦ5\ǩ(ZG=%r,@'h#o]Iʖ ;M )]fL2oو$F7Q= HS@/runLCxR-jʑP$%'B@j2?cIe BQrnuP[ĥA* Eb$^wprbˋGp(yHiJ;{"00*-'YFIu++Q2>{WݱʊX I [D ~ F &}3kDMZ?@ IĪ iLLWF\+>L_)SA#yK{}ܬMD3o=FG".8;ӱ) : ¢)\gw7I弁:~RȨbc@+d+DQ=:\Cc0X0=D5.+c <`n>qŌQCK.#cMdpT-oPܙ|u|X ۱l`J]] FAUĴwG;tf| T%@?uN(T%㾤l+v6ʠG5-v< K@XHO'i4:Yqř~mU9} iy&-ZJ|_-POQ/G%QW6ʜ׹8raV}`(H@v~` ĐT(@׍ғd@2RrZ ڧfTB\LMk&ĊqSc:^<vop綃80ٜ+ܕIoن4eŕђ  &O4ۋEḰ܎M)u=dM)1.: y9LbbEi!,VǗVT!hWcjū +Cp>duK Daɇ ' d}v\qc ę;l+5PCj^CuUn $GqWKJ9y\ S`:\En)jlKuCI8:ξuq4)=_d3(3/q[*SOume1?=F$Ҏ [h.U3.{҅by&LV BVsXIs'vW%;X*qnwML4iX߆5NFם}`Skk{50/ shHzwb\6Kܽ PC,V@PF[!8TyVXF%ٮƻV7q{+PQT|N{ TF y󑼂41fa\ |g9!)'A;Sgqb09=Wgn͇/[F<׉nj&2b\GNHZ )>yُn=f: V :cʬ'tOSS7qԮk Om.Kc /GU>:8KIrȬT+TNѠ҃3b\q'` \{=\F>G1 sѱ˕Um;uP닷tk*F0B\jG@k5S^<8kr%ͅDkVꪁp#GkP@CĶ0FۗvnTdž,سWc VyfctI AYe25A0׀#T#>\i>?o eW fY-H{M"YAY QZ҄= Į.Pl:WpD;m i,PXUCVŊƐtέ bUgs$\pۦgK˛!2d헚?MZFxia2Wko좥RM5^n2)`*#qDLDŽ51pg" S"=M&-Q2`?2 һGJ +φ;=sc,<:4qOvǷ >;oXl8B+yUϑ0<5Vǖ Ղ0 12"gPGWJhVd2=^ <ɍS _MgMC\3u·IjeJ 8j2zyL(tS;N<."m.T!H'}fز"::cCR܌*s; &e +,QM kg2*H,X)g2&lG..H|FdKX$$)Kvhg&~W}ѣ@kz̍{]xoLnI>g4eA3$ܪ~Bz_ kO5ѳA>IȤ-O[r%\Lhi&tvNb/VV5"Vn[}$-$q']KRRuwr~HOp.$75W1De< I|t@ṗ&3tp3m[˗!Elf2+{HMx3cWqjo̎^נ BV"6h4snjI[ KVcmKXd\Z(p-P4kSc\,fK1|yh *4%:c[igįҸdkJlDU5fOf[vx+ pjzWAP>&uIzUzc'}E?k&iH`+Q=r(ElAP4  ك*gm֚xn6NNj*Uii>REъH %zPPGFd sj4jǓ% {W&>IR&Lrœ,ջ 5$\BC z3]i*'gPRwWº6!e} H mNK^ L6sbLqeBJVafF)|9H,*ŚGJ1Aɝխ[cω\rz 1RxGq({,b3a2O@zEgUߌY!Ϫ8nt[l`X'5=[}[$dՖ/ky h]vf,1t|j@kwM\uW\ر䑍;\G+\.l.10[D7Lr5^0|#ywTɄT5>"/- +wAˊ=4j[X0D7.(Jd 9RiIErɩ]8aݝR BS/{lxK+<@j6ʞ4:= M$r 7+&R:H`4ԕL1U?IyQVr=O1' ). S J }aUjf>:Re\XbuXJϨ@2F{>8i7|LӖElo,~`=޼hJXS1N;jqqrb.?MF:v%P: Z#V0LP־CeŌZq` `P(OzL={9gdRiD:hY.U%`DB-zM[!.ն"yoߌ674cjz|HzBwHD ykl&O ѥF^4sӔdAT_~a3)SnqbIDI0h4Ac V r&A7+X@,d м74 QӁaQZA<̏ߠӑh75$R&b>Qqd;`||]NHUf*]z;д#`di' /ҳu6?p#㳣[y4 .H$]myDSjm%gxw@UN פcˌXK@ ǘ.kkչP*~"UIEOqh(qfh}? M6$2c/HʚoRتD@STL 0,[MMόPR5ǒ}QO#ngT=Ē |?~b^;Z1{z@k$0f7)dž82.l eCώq;+O q4N<!Ǹ!KHa'81CaVERYCuN`9!2ciP3x~:^ɏ{dy)<3羫W @ڹO`&IxiY! d92Sp2?1o IkѠ٣FvEsJ :^f*F|R lAݓm6EPL@~vR0cym$g|*i>?-e$Uvn{EOqiPIeuuNi4ȅhwH9|.J6]VV 2}'P} LO.&ʻjJW#ԃHOtR;V*MyZ`yĝ3aCЭ"˫'P fW}|qܗ-A8F?3rW62~|8C%ISR.mч|kر5wDYkefWyPWMA61"j֧Nl;B 9t f qJ1DBfyoLtq͉:MIUՔ(_Hc_2z qP3xfcV>9G_U17czb*ExzBv0 ,`C?㮫+rC5J1nQ]4pPd-i|\>>md<س\ TD^5 >=#R]K[{ϛ.<SJ^nP#nNr`Pj- 4ǧ7K`U]YY8RQ'q8zrO -n4bsAF d\x#x̫,rߘ5r;$}EWPד=Xvᇷ7x #7) pm[aF2ugĘE~f@4O)s_ɍڿAV\=r@J<|)4;3 kʲ(l`;jN&H#׆L BbLjdž&0X_1A_ \0z韟:IjjyvWӸԑnz9jq o5)]!Os) [=pZ2#LR@A(zu DKV&Fv S 8ֺ9 }MZ u5Sa6َ*&1J<n!sĈ<)3 ! MelP)N'jpkf`O: 91rZRl@xV1D$d-iV<4"0kUV_Yս+<Eŕ>į&m]}W8\`(Tt9ԮmB􎌥vFcœ Ez\0&wk0Ld;%<4r˳JPVln;M-,"NK7V܎~-[e{ 3#NJ At;UJ60Lt<9|5p(ԅ$扂x;3 Zz) WqԏpEԣ,O}NR-:9L4׉t8V剛][##~_@Z@fPc#)⢴Jx鉏M͸ i4].sKkqǵ&K2Cq铇<4&J kBXVI<*6X2cqj:V9O*j) -7L)aNlifXجD7w܆6ڂR2PEO}? D]IUXVGSW2:spffvѨD44W 6LDkۑ!L\ʧݠxw8 u\@y*Y6:phTNf,N0+WmyW>z N?_Uвwj"Q=F/j0vh 4] w:wAU[[H`m&$H%՛&3:Mv" Ðܾ`~υu.rcVq>زZ›ʹ4&!?2H\@ak y^z d.z%2GUA-X5 p&,KGSÞX[VZPt/ώc)`3q4M`rտ'*[Uڅd;5Q;v2g[J6D` Ɇ*o4g*rYꙩjt795V}>5G(*)ΣT~VCkls]Y]ZI"c@'+2ba$!d^sCB7#H~MBIpj2b j=S2 <<)ARYR1)EH㞗$U m8?:UlH!eOi u̧@u4MxEgA#ԘIngZ6"Ih>ڻ2bW T"|)^FT Ie~'ri%2Sɗx&>4Omv T[hkNrR$R`kZP\VWe3]e84 Duf?U9 6Vnoᫌ+@?S#qR67IP  L<|/K֨77ZqGȎrҽXmtG#Zi}XlbA۩VZ@ERDg$Wpct"I5PK(92L]52.98bYINѦu`+P%"S} 2y2YMr-K` ++ouG԰$l_lG+;ȥ9'/P!Mӈ>;Ӑ56Z]rMWI.`b$3)M##9dJ: Mn "|oRS#7\fA@Zm@q mZ7<"GXDu0Y5@W!4RgwR@5=%I;yp:6(r igLulW(Zͪ~3%ſ jd{|bߎ4 י?LcAzmy\:Y݊16ە1˟j\du$[ik4Bc-+dS$O´~ ޛ1(zV SKAb2:Q6ґWҁMq4@XJ1֟p4C1:30fTubSEXh`^R9LJ:_%4ǥkH3Q` yVs" Y^̌ˆ9reu98 DۗZ3wn([2VF^D(ӍvP ՄqZ[pfnСc5dkDZKZT&\_1{z%>Q$r. Ŏ@fDx^3q妪0Ql^Z ?Sd¸HY8qM\IՄɁlkqvq %IÌdžrVlXlͻA4·61?O>W#>Z\-7}S}9 cu sz~=Crt=p8F-Yf2TԟlY`V"ÆDM^Ld?J'Ϝ `cCQuWb#a3D!1L2۔-^FΣ(fsoXZsm.(2OӶg&1PsC{ؖԴs$=& =K=7ɓ+g>11 zx|K94`T rf|h%Ba=+$Oird>M@CCϨ`yj#"(e[x]M- ڙpgh1C| Œj9kuMѬ<ִɈRx ?6r#P>mA>V?+oF/9o^^?Wv r(B;rZ}vdPB:Ca#E'Wp:_ϓvVȗ\ ۀfaz{۱ُ٠b^}1G$E t0wPt$݄)A ҳ`ĭ6D_eWsP!$NU:m[("vg@VT*Yտ£W @Xq8TFPݴk u.6*>^#eV׀@]5)_:]ϓ&93c1q"xҫZN*Y_3U@AڿqR鑡YoY$Ay`԰y@`~t/¢H dd3N$DLAmքGR{@& !f 9d\C5'nu5:cWV"Z`qfjĒG[&P)O5nV1 fIEp$ڧmjQHh.'$6f;:MB8 eLSc5B]nnTSa!lVI4N<, IkDNi1cEĦ@%μZT3k> 7YS0]"BӎD.~odVՀdFI>t0yGlY$\!fL31=1omnvgl}8k_=~%PpXl+`X~nq51bECc4n:1c{_A&Yx2fi_}GIJcSi5jv3>^$IŤs2uA6b ^=@k$Ȥ*I\砌ϖK ӌoFVL]. hl$ GtAګF+'mjHـ|-V7i4ܥ ``et V6wߕ5ar8L#y#g\}6+:db I\I% DM؛ݿT\I@~7B;#֥<Aƣ}0Yhhih2Z>? ڕ&p SaG!pKo@bw0@4 q˟|4 ۻB"O䉀)Y6TÈM|"Bb.CP}LWD4Ên#3^Z B0_v Jܲc2bTJB M8WX^&dL>hvQz0!mMn 8el,ac I%I]4z 嵢kW6Hh[Llf֚D8f?>1D -8̲ȸ+l5} *m2+O X֢^HGjF}ݍɲ+~3gH4]5v&aÆv!@?v(24iᤜx Hpޚo8'4ʸ> `m3"o)TEŧݙ i $A&?_j㪳e?F5]A c;߬w%G p:<߬g0̱׾3_aq Mŏ=_?"u@hѣ@k{X m?L ;kDQ4I؈tbÖR1m;*o*xc,:L}RB&Fe~I6 Ek Y.ZIbW$IjJB$5v7Mh4Ƞ{Ed jJd)U9+ʜle-mrh12ˈ Tͼr91U+E^H9ԼF# ()9qh cZW(<8#)-Z:aO2n&uR݌@P"xr+j<2f҂ M+ĞP6S@sG* wǕTH!}Q4 NcNL(.\dPfHٹӗJZ7 {mԭ`7' VX`K1xr)f9a\]P5@QMJeJB's'ABΠ#=pđ"`D%tl5Ƭ &M+hiCX+LP2āi2FZV[xL: %=q* %1#Td׺L(TD /:~GUBX=41‘nL?PpFO3 Wb`)oл.ea¶O3_۾FF lɏ-|Ai_OψffO_90e>+hxmtuq/GK/}Q5@ɛU2xeUZ--Zsξ@1j)i h-5gKR,#Ilˎˌ ntX0d& r5?-1K*^TPN u =4 K% e%NM~ 3j7cV@H`o pQZAAUn* RS4A [`=3~>>ZINߨtnVTEk7m3:cĦm!} S_+d@|ہԀIVw1putPi 9Hf9Q@wk$m] 4dSpqDi 6oC cZTge<șÎgɖ@l7 BBX5SRLJq2asn×ߨ CI.""|5e'*JʼM`FDz>cĝ\fjDWvX HL&&֫Zy Z=d5LjE)M-TQ V#<چۣ B-nai nJj(`bpquમRLzJT5++hv'>tօs3_N3eN+QkcFeguZڻxgaJ9-Vx"Jս5j3@q+@t=V/Lq DmoHjSWJA U |xOqg{y1Lk*6"Lrb쨌&幧߭n-zQ y4Z2Td5]"1NTI M@uDֱ;ibu("FR|TSCBZСHIOC N6aX: B!ny-KcAU`Dq#2*A=9AS}p:^޸ȬhGQT-h* <=+/jX*1n&vbFZKbxAq 0v$3WLbUϭ'bb3zl<]uFFFx okkf{"-X xt2{h<|:Ob͑Ep+ǀV a;@" ƃSEqsϔj2fKW1[R(~^PVAA">inG?A +KU.|:nQHxZ a r׿F\H;Na{gNr#8:i"'>ZW@]%_!bADNA͌c(V^ˬYz68g;$V[`0$ޝŝ2:K\FcU{ȵL%i3uLwRKenZFF#c23b1sAd0}5:uH9.ba$P $d*$;GM) k}-r6M¦B|h)o J> 6VWɍЄ~PhBcےD _TF~m5*Y!ʛ?3rI."d5#A F2O37HU…TwJ>RHbR: f-eJòh-I592qeM]#@gm &1j!cq8bs+N.Ȃ ԩ? yiJ [y-27 0ϐ/s)d$P(y4[bی?xnrHU ojp,KQHe8kZzx|4,ߨbo a^i>GX;7)#_aGu)n3?]e>m;N&Twvu>ljBNNQ4h4h4hyOԿ+XMJ?w`TO_TLS"Sa#AS׼{\&lsu{tRs9hԅ&*A cEV ԩ#bGS3$Y_#Vh=pE".! }G][#1"4w v3l$ùv9p4_:aBh@AѠ4hѠ4h Dq4h4h4h4hN,Y_|([Kn_뫣A~A 5c\c;[Z?vKN9\mjf'ktDd uxݙox>l?Q=e:Ek<AvaK? }ӯj#A?n}gDh>IjTHw4', @E l]F| u[1T(o|G1`7b81hf$?~'~oI؆O9M]ll(Tph>ZY"3M}@ّi?5o~ >S.B5opV寡?>W֮ӳTK|t=I{=-bתlOE[ (_=z]FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF endstream endobj 471 0 obj << /Length 929 /Filter /FlateDecode >> stream xVn0}߯c"K\@@O-T]BM#ْd=KTUubϙ33'CP:`)C +.KLʠ_X BȂi`}9k õUxt)c(G+p11I1ahv s]u5{{b :6sSŇ:-OF`)|n%՝6mQ5`9ud`4eLxWaUPd Trk= .rãܐ`^Nyf8_YnqC-Y^IUU䙇<\̳o4j@G5hi4N :}SBn X'+f98 (>5GY?m^!]ivvmRFgWNGq,9~єWqZ׋2ۓ1ԣT8ўCW۽V #  ӥ8V$Ect*gt(H(RX;$WL$!;|c3,<Ӵm)-$Gzٸn<߳  c_DT6bƄdmmX(>m-.}ھ/M Kx/mO; ̫3HYJ:=G݁YެAu6;!򡴽͝caΔDOKw6 y&Z0uq([ѵidfYCA@j endstream endobj 490 0 obj << /Length 1113 /Filter /FlateDecode >> stream xWn8}WQB+DJlwh ԋMČLT]I޴^d[I zL̙!MP8#IAR_ACPc' YiQ-ٻѡ_.qE&81McXmc.5[}qfr8G)9M\ LbN1d/[FqBwC:,hVMy7JfI"EЭbE"N]*l$cj` pƺ;"9HY [KUw+^\3 ~w̱3ub4O1d%]+=uK=+փ0AF`|?) 8/iK\1jX äsydxaXh,UA;4ټ17Y}\oEi8_u4ǩVR5'%Xyioէ4πOPkRZQK0FƓseǧ6Hdp@aLRCGkZ?2}0avv.ڭmҘ2k[u78ML Ha+?`w&iV<)p !8*QI4&$ x]2ܧ}c:-PxT?r7r*W0 'lUʶBbsՆO;CNHpMQu;A^9AZQ`T ƠNZŕ3h$R੧YkB,S6 rHH(OɶknB^pA]7yJ]s9e-Փ޺~3`P7eѪv-ۙS{/uCo"lp%<4i\ N^@XftY,U ]Tҟ{ɂ[n> stream xMo68aHxp.&m|vRDpE/,[ }}ELRA)XbPBHu$(]NqIHR8KNpT&avbB8eͧ0F1jd.|1\#NwGKЫ芾-! :(T+du  ^Y.hj Ck&uE% uI򤡥h@~?zEz(( Qun m*M%!2n2N:(XH(d*Z e2qЎꈳHQ AEKGAzz(%E=;8pf=z:]|憧nܮ_~~hڍ7p޹7P}C:v!߹ {xQ;`׻sLIa7<7ﶧ4~_l޻cņ Cj}> 9rIXmW>zOkol''Xbt[6Zb+}IO7{^plM2|7<MN471j'fo_u*P)IݿH8{ڝm翓{,3֫\achɾZJEKE"}GY3Z2Z$JK}2.%bA"4W/pY0!91 qc+#1EB Ix63e1^9B6@4E`+ZTF -+Yz&.իbI<,DKtijy@1(8憿s 2޼9]qQ46~dZ \5rP}ޒY6̊h6f64lhаaCÆ oz0) Ƈ;me3keԻa#6a#6R1kʆlʆlcǹgφ ?~6lF8]JY.b·`8 a0< bx(bx(b'.eĆ &6Ll0301nbA3>͆h|8Lj:#E1EchL1b4FLƈz?i[,^xƈ#6Fl1bc`|ox2"n:^z2 4bЈ=@#4bK4bc{Fh|_z5 endstream endobj 512 0 obj << /Length 1043 /Filter /FlateDecode >> stream xV]o8}ϯѴUWigvi4kl 6M3;*|9eC3oX _ፇ8ȏ|L|jVO~cjQ#(&u/e}2;=cb%+01 %^/_[xBM8'bȥGJJw|rs?0|0+s؛'EYjc{s,mEY2"ǰ_gE>~w:B6@g׸־OpO^ƗBBo\VyZJC؍%fDÍR4Rot{k.p(psDسƌn}P&qAZeqȴ#6pTz .f;ZOjۼz)3z]91rͫԁ\<9 glRx&0 mrhG/8$~>ӕo9nOBCYU/mI'8m>Crq!׽@S%YQSCPy}UGSveg D zuz7sH|faF=hH4e'Ә#B ֿ&z j{,/pJcNvq#<,TfgPeH h|+j`zA{6qm#|^B#vL: |\1`hբX-l8,Ep &)(dYZMٻ)J]Q>z LХ y$loE M)mG]Vwk싢J,7dOa2mFZI.6NfGGzSn|K endstream endobj 531 0 obj << /Length 1620 /Filter /FlateDecode >> stream xY[6~_dlIVaYءtM<8;Ȓ|MRBL9|| .ϰX a(X@E`׃/M#6oV#.6 +|vMɄDTID"PN6x? }NCa1ygQH&͔I-~ "X!CRJ*, BDFVuT@dQ6&xҭ' g58t6 %B?!.(O\ַsv.sĄN1^Ğ$1M4e*Wmqk.4lfn !3"\-YY 믵s8Ljv )!a֑0Q<fBirN1ZO:4ʝR6Y]֮WB1VLm(YyUUh#yb6ߗ&0@tamcD];k;{6%OТ@1,hIcWǟ>FE 1lQ&dfzgmjih~ԭAC*(h] ҄!NdMԴ3}غkq<6BE<3B1EVe01. pU~aIV{߼:doAI"iÛJ҃1uу f43ضYXN^=h5Be- s6J7|g.i7~Qèl+Z]soY[taoDY?2HͱYu'ݧuxԥ (6:  6sL\"}J2AN' jsXΣ80VXefYavrGj q} UvHr"H "3vfZ,j'CHǼkc8i (:/9q榀g}: :i @.Cul6]6snYs" f $}A_sC?U-H|Vih)O)YQ9l @3TO5ѩIѿ!gCv!Gvr9ک@ vc'K\p?4 ^Zc ݿ:(7g*jt]FB AX~16]V3>Cx efd5&gЧ;F&^bXvD۾t~F3+a1"Vz޸RG%1\3u=zqPB oj2x$#^OB'#OF$@%?X <Uy uQM;o/?)L7c7kQw endstream endobj 552 0 obj << /Length 1586 /Filter /FlateDecode >> stream xX[o6~ϯd5;ž )tM h9elZP$e۫ X4EGhFXLDTQD6&9{{G ;UDV91,׫J_!xua?ًٳ G阰hz4"DTi4}Mmiʰ]7џf3&bT?DL x4H+^2$/yOhHSQG8F4˜8#8,Dq=V(`rјV{~ٛ^w_ LICɌ.&oe+`$1 '%-J7qiX8Aqi (0G6n@  OS|3@he)r  J>O%dlIt;bΛ^o7dV75[/(;Udt'ьC5PKA* mX:/ӆ 7# b Ue&IgPKE"*v=> stream xXYo7~ׯ^(i-P$,VH+[+^{˖\E pHsoC(C1ŝH`1IqbB%ڦh1mz'L`db 0-^!tmO}1z=xKıNCҘ0$8hz>#y3?X7E%/vBĸܗ!&`Ekt=+vgEaƚ2:j17櫕S6$;?D_=p#~<#јOa_xnЛ gW1Q58ߓcycRguwry'aƈX .ܹ GGk158@8(yd`X7lwN"HU>_B9 wmV|,eK MTqdFӵ^<⾩M'xP;YyC9K/E9uy(Vo} eMn+69 h= ݹn9Iw.ƜHAS~hpIYzVjO1+ F堆`u(S?XKq_BͥX:+}gq0U&pj0);~2:AH'ьC@5`xEG^wi2T)JRC4͛ܗf-.52E!0_~SGyyb 7E ip ~fRAUsն|eڐOV ͋vӲRB]CB1H48f bu 0xB)*Ts0Qu6GHBO'@1IN0Kc[0gɴk=`|[܃Jtڻ$\1 W68 2?^R5nCcZaClܕ6ag+ۿRm@p^d~T|Y=;uinžt=Tvf5^%SnLq,]eeyCO+dNxAZ$Xuσ'p˸#Nhll@ 1 NloI^38Ix樽{9 ,=9}}h/[{ 錷2=PT/!Oh3HDhm3D> stream xWo6~_Y@ľ )RaM hőm!Xr;%Krl72)i}w{3{g5 ϰ=&)hH[%KЛ(zrcX")'J_!TxuebH##捦 J!ˆG%Az Op87/#ߓOĠXߣ<&` Rah&8/G )ʬ8 @`f6#!ROhLO]%@0+ U$5h|M,13㬴 t8\Aw> #%-J31u2qhR vl5*̇<.,+?( JO%dܒh"קb̛^3-Z,dUFpl9K VTy3gы~z:O.~;_;MNpk/H,*lQIFf^ ʰݚݣV*ԏ)mD'6ٷe=W}"O Jyؙ@޷C#pLv1d ~5DF>1|+msۗ5TWp$`]P endstream endobj 494 0 obj << /Type /ObjStm /N 100 /First 911 /Length 1479 /Filter /FlateDecode >> stream xMo7+Kr8m95|P!pJ;HHP1wrf|cfrs$V(dWIDmTV*Z<'C@#X|t3p)QTDגW*ƪg[ 8L\/dY3*k!vC8G6d]`,L?;mfcpB5 '/,BRq\}}a̻Jђ]upRn*.q-R5.  -2qВ\9NhhaXX*9P5%eMT%2%e=@|_UN6̳Dlj3|>Nc9 /~V@(V߾=[7߮7'K]gvYQad.ɏ'xڎr9mceq o}`WhHe0gтG4X~<[YvP.WKdv\|~9_^d>ub`p Oq=qX]o%ǘK(&S?l6[Iv֛ fl4+fl;%8qbƉ'6Ns>U= ֠ϼǟ}?͟6Ίo g3 >PQ*zCEo g0 3z_0Ґ!gCΆ 9r6lywdw{`t1r8I7gǨo8/8> stream xW[o6~ϯL 虜Y]%#̖K^dɒۙ EJMA7RX)pBW . S:G[X(QĉT0/Ra͵ *f Q:U "(& IjŌ=/Cɟ:rRm=K.P,qcʺ>X'u 1IZ,^Y2a٦' a-{V+<{u廥FoV4bF1c`OGs/r|wcC37֘d`S$k)or~{" jhL #j(֌h  Uŗ ,- {`#TfmF&XF(BI M缜;v."`3wo.L vPraT`bKO#|} $Tsqo쀥[j$NiR.G$pH+!ԙtlhf@DNxպ)N o"þſUVe?o/垗߅q/d7Bmt:% memN}/_ ƞzK{Y[ORNk_1d endstream endobj 633 0 obj << /Length 1005 /Filter /FlateDecode >> stream xW[o6}T 2,0`M h9f!2JI:d;"CPE~jJDV ++ SPO_q&],4,88Q w%^peMoGgW,Ch|rL9ELQLOї(QOI}t7fߺE5q%(8OSwD( 'r310Ǭ9qU8HeS-x S 2~a2Ͼ*gg)9 $~ioўf_J_{xo" aքX­R{pU{rZr9b8q02/LT4qUWwdD5+laEnd47=?yi8[Y4TyYG|ݩJg~z:Oa |l6=tN_( uQj2]X/ZǔHPuN꧇b;_bn*VKΔko̰SK'dkh EbN)LIS{A' ϋrN{Ϣm<0z@Ut0:(_"!f4FKIzdoJwoSԥhB^ aDht5JOD[C` wE]Dd@uҁo-N*죫;~BFE~5R%eËV.hez5p;Sy cw 0 endstream endobj 653 0 obj << /Length 3504 /Filter /FlateDecode >> stream xŝko#[qRHHMb @Bge5Hr7b{_ΐkFx&(@,9yxnLd6W/WWן (+Wf"dBɺ}ޏ~WM|_jb-Z]uQz~/_Rf 5|K&H+˛'~==o]n??o>d9eQzrnXpt<" UdN.EsSO lHad=ྸ@x0Y'1x/sW 'YyyKfC x~^-ayӼjy;]l |z.8&w#i2l7̈́u_k88#"`!`bɎ@z?,9Lk15ڠ >YӞ}Aʶ+6{*jپ|,^ݼZoƹ>b5o|zRYyy̳V<:L}hm1la|jd1%orS6οdm[TH~R {mq;U~uZv5K }sf#A>ap蟃j=+! ̉K x \|s<,gϴGZH 賌ςd3DVZ0ZO_w1G8Kq|DU̫$M?&TwXü1<]_K;"kiYlR5_f+XVy4ZՖ֞^&4k\ì Le-VWśMΗ:I瘶h%1qM#owL0yW.~)b-VhG$HX և7xǫP/%$L3a^ sMA90D9z c/G SvQ@hϸnm. "pśQ!sP)fx&]bVr̈́(H/-쏉Vf(9 g=H9, ޘ%<.JPPꢴ$!6X!%*O$Ԃ0*rK1~ Nh :OQr&J b1Hyӝ l>$pHfpH(~W`X+h6pGr^p *$Kn1DvǪ0p?ff=nvVYggEgΪ͎:ΝŨXT( 2ޏvȑrd*d#/bgGpE]anc4y(PQ iH*ĥ!L\(*ɔ1D F AQH* $P!RZS$4Nbɾ`[kwYf{y[dR$h B  )C@p Á![rӛieTNP1yv@"IP9Dr@*dDP;b6P/+ԡ&pu9wP:~]L9D.D&(*8(C! EflinCn>my1$g :Pձ*A)0%zƵוt~>=5rIBrH0G(#K9rs#p'6wWպ] ӄ+ v(`]쪯M"OrNQȑʘɑ3jg+;v1"@\㩈 g:chE'38ܡ.'q5.v_fֵb˖Ua8)ŜO;xCQ24*ABj C* 7R$wS˩!!+VƎA]RA~r9t'C~2z4}*7ʡsӡ:7*$Jk9D'$J ꙢjfQ6,.mH*4Di⁴rtHjCS)y9 AB C` IB}""(A9 (V IB݊)OHs+OrdqQE8MJQ9nhJMD""p=ڵ)˗=u*iU DhGq rp tr=`Ğs$WE(p$ Ox-^x3í:0_s÷rnV&(K HbR#\U; h8$2/BP!ER_"EUa/R~>9WΝOsstnHw{KPNԹK@GlnAu.s!HNw vŁʡsR :t_wb?wsrsj)Ґ8RNM]Nݞ95<9x7m-mNy6遼zys1ow94k siVR \  |ܶ}S]r]̜cio7m-e:/0mWew ]mx;aaV-9[})sz2s6/V_ʛ̛ܫx|GJ@~TJ ?O=x"I ,HY__Ϯ.Dm>|O:&fn*n/xpK!ђP@@l+W;b u RS&[C U > stream xVO0~_DZLοe@l0 ĶК6Z@wZ ('wg߅dDB ,8$,b"SM.{ǝEni,* x0iol:r>{;{,&&1pҿDАuU0F]Q=Azլ?.&QdIZo  Mwp ᘁ<`}?=,-m?6f}w$1ZGUĐ<°yծs;Hdvgm?Xpr<=ĂbL?+vpPӼv$tXATI3_ ÕEɪl=6q N h  [0#t('PZy6Ȭ#W6tgGndV>^Y,;MˑXIv(6 .*pc̳;4t%_/-l{Hm2wۅ =-|[oϯ酮dTbv$&aʖO6LRK'dTmԭ1`74WKW [3KϴfhM-/UcMh8eZZ߮tLQO*l-%P$m:(,X:Gz"C$7TGxÆSSZ0By_qӖYk2)ϥi A!¦5µ`RA(l 66Drؚ m}fm:-QڃP+{G8U+;{Of+Gi]/x_oxw;%sP5ftY<<؇]%ZE~ endstream endobj 656 0 obj << /Type /XObject /Subtype /Image /Width 480 /Height 360 /BitsPerComponent 8 /Length 4290 /ColorSpace /DeviceRGB /Filter /DCTDecode >> stream JFIFddDucky !Adobed '''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDh"@P!"0p1 A2$ !1AQaq P"2BR0@b#3r!1@"0AQaq2 pRr#  ~KaB".+>vnvon{"Wq.i7cľ`rDY;")9,K3r~ng(w~{ͺ"FpjPU䝩nQuv<ɷ]W=!:?@ԯM#>?+>6؀RL~Kv7p߆-N p띥k)l$^~si SGֆ%v9G}Ώ26 CB[gB}G,<nUr>:[uk@(@QI#zzƌ*~.Cvt;.kէGВ8D~y6/ 6np '|ޅR,la\ᛰ<}]XO?apYf9U*pgw؅ k>.}n=z)^Nʟb4\zWd]r['X mme[շ#>F}(;['P$( ,R|) IiǧzGw> 9x L@ P'CZƧTyD@82TqʉY [?B=>j{`h?RxՍk4ĭxA 3z> eT R=w r{ax%RƺRLg ms YSUGT 5mO'"e#5'hs~$_TZh tplb% ׊c"$eIm%2%D2upY,xG"(A`cEmmuPa]U[m³r]#s"c?3~lf:4Ѷx:{KAE˭{N,V4Z|osVR~EK45T̤&;JcW*{f_k)۵1/q%)!1Vxv:vQw:> 냥r/GW]ȍ~gW[O¥nk!C&(mGu^GZܒ#L=ηX=u;TeJ`+zy Ncӯ˜jm}^msحFQ:+RqɎa~n\ɖ~z.e|cKYOwvDp!̵f]>ǟ Lc)H1CvRκ?|q3} kd- 3tB`_t ,5Om;>֪.!1rA (COt5׮g{N\ h[X1e;.ɒg.LQ$0!sUS0w4O{űUf娘?$z4&  (n{4vnDwEcVNLySy>It5*I~TɌe^Lc*rcYɌbsYSeǪ}=c|cBڋ?1c4'<γq|o]NշЉjdeG / Q jmڛk̫2/Ճ>5ulϸ󮏌T濊lx)ğ?vi;'e)Lk;GV S8僚l&Rp7uؗp'r[qXӄf/&de1)vS >fR ?uSenfK)#ꀲ<Ԏc=2VoSp:uNe4_Iԩy2VUJpV";1AS[& g E\@ ,~76]SGYҸZa2Ͻ H2˸`gtC0+c:ap+T 0)$jtLu3?` T`"DuuwF_9X=HTF:=拉˴9;gQqXJg36[cF9wte=l$x5vF DVp=^6S\K^ճ 6[-F?ӝ'z_'`^+ؐ6 Ӝշ+X 뷮 E77YKrXS& 99TrUphLK|l{dzurOir9֦ޒnه HA E]b>Q%o\+YdžޗY u"o;N8aK\/ -W8:o҇Jhg}GQڗI`VZ 9ڤxrJ\ \`i\4FyYiڍ 5|ڗj[[Sohr(<aԟiC:GFwn `FsZU GkVkoQ5vAkk:%& `:q<ZZ,.76}@mJR K~بsi00Cw8y_a&1K[`m08c]ћ鞀_vF/BOds\Hlj$-' Ȍ,XImCO2Qbm)D: endstream endobj 695 0 obj << /Length 926 /Filter /FlateDecode >> stream xV[o0~c"_6ƪq"$.YeҤ$) ~=DZu.-넦Ɏ-FxV8L PLDB}ũ0[jrXb)󞯐Xfl{沦pGC"049 FMfkEgÈ8 >4]+H,I<:}n2G8xDier2É{0d@%8ceBy+<='ÙM ')`Je_V39sN؜ N!EXߋw}c` 8 ؃82q4z7U}c oB32Kd᤺1Kly FnHEPW. ŚϵjM-B[xkQ9σΜwRuwJa Xsi1oS^vsc_( e^j2$3vvOBB@P/]^8OTEφS @wD tdTVq63 k7miǕ!0 0$8N륷w_-䜪Ny.b8[3UBp#fFF 1qE ú羭FԨd4ZKѷjUMԄ<nO /b:dP zpaPU\#W]q7 9 hyb^lGGVte`#ݸi CQ?]mWsi2z9T@+ThuzIa\ Q/L5Ug}uU(7~x+mAuùȹ|\rQrPO(H_;)詪^I> stream JFIFddDucky !AdobedD''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD"! 1"0A2#@B3$!1AQaq"2BRbr #@03P! @10PaA"`pQ2 er2S496ߙ~{AgK!sE<=AXA⊎nK>ޠdhd7:ԔyoOjc-fV{֩YGADİK X #@ܮx{wFPyH}ѹvW;=]S#A SL:5sffJfҟ'Juy,W(^ΚfUz꿖]12&WT-R2qWw*$1!g98gbڌW` [h[t艞⊎枎>\!tfL@Ll\g[auV#W-V EZ['S-+ϪԿ5̀%((dq֧]z{y*ReڐEӷ.*w%kxgteS)(()TS짇@(Ύ[ɋSֽΚVjk+͝|LYҵ5lD9-I%w16FGUEDJ]A^R_P #x,nK.*gB(!#3_P.:%Bb*/6a%J-)mT#k ԝlSufWY+j$co⁨سќ' yfVٮTYh0rucrR73]z.eZ, ~u8՚ v3R$LJvWt(;ʆdS{>u2qil r1&a2DtZ5Rh]8T=‰:0ʲb3U5kiKGD`4gVEU#!źJZo;sI,fVt1*J79FWmLuT)εVuvqmK֪=ZCfbj:4s"E`IJ̎n2f9Y)iͤe+ii>y 솽vZEYmaU݌GoN:zgR]9h* BL_\j3RL}v+i-2eMJȫrjPHۥG*Ue6U@WEw4|YکDNbݡV;g%nCh>jf̮u.“[TL˥3YOt0[L2ui-*G8 Y9㩋2a &,G,Q[]\pu嫩ͷZH%ud h.bܫu2: Y@MLd˱J$z t!45 lQWZl ^ʻBqXrlCLM"tȥf(TFŞt+CQbYթݶʻ^&ܣoJ^ GBWz&QmcIa 2֨nK&bjV;֬Ui^N\>i9(FK&vlZjbYP[p$"heFj "- IdM]s,VoE83iϽKju[ թz Y{eư廞z?`jZAT.S5pCAnLkbGHJi\]V)YcZtDƔbLOi aVԣvp:s2&VyGK6ͼճsf"އnr\EڢU6fX71^vƒ שNk8gWStZeM(EWS궰6C eb)kZKX#&{eLK:9kg=v^nNԳziݠݷ=>:65@z},}E&`Yk+:\QEA16j\᫨Wp2;$-%-Za&$W}sWJ۝ *v,sҳZt1qNO$ɞUV*X滘lIYV<}2uf0^PrֳNWZK2tξF[-OZ~utnHWm{B}ا& nciOHaN[Z9Vg:嵻xʪ5&{6(hd˯]z͞c. Mmgr62jKny`ïguyQj;gճˑzdi:R5۝?>|Rfĩv7nrKX[ 7kUZI4nQH3m`z7,C L/CbrŤ/ԅqPEU[:yWiNnW(nF:mMJk,,^ "6ŖVw j k٬joIˈe1t]Q+Ar,Uhm|7֎>`ǧ><-/&{D@h aYi׬oPz,ҕ,d٣[F5uLߺf^)$Titl ѯ {_ZuG9Yl\[[Q-cOH,-3b%6wT<߲55xwR2bp72N;-?IVVgP㵎=:/^܁+4tY*2DW 6>KƼ:I"t= & Ma&4e:ӫ )ՅDL2ĐLnVcbn`16|r#Z6W~; fk3TI+WՕ/5-WzkT:LSwIPؚ5BZY-[aoT.ձI%+-dyU Ex \FLgʥFf#ke^L #]6k0RdK>;uyuV%/prXs{6!̣e*ִ`5e)̬iX=1 lS)YYnF.SO]Xb+_u Zu?Cvgҵ^Hx115(]O/yi,U CBynMyQ{C?t3Jd?j6j8+ơOӼ|ƖnNj-J@SMT@m|5Y^]yy /8Q^lkZ;lsg#nc8H͂ `VXbQ%׎往UdN%EjZGha)݄ʵ`KF)YkBD]f ls,^Syd洹auLQ1O:G"٧fuDFj+CUa &,U0:nSb`Y՚ǻکMѥ=r$Jd/1G` oWh/ tKC\H F]һruM|^ 0.⅝x˨ZU*8hsJ `, X04͟v il: d!5B 4_QrV`MAҊWUudM!m9bRK%vsB i2_Cgu[UZzuyص53qA**_Y9tuT qohZ:,^\@| z^M eZl4ΉK 35`ګfRt & Yug:Vv7 s:7zV}``͆fj\~"UvN8;oWDh.g]:(j"y\yQZ$dp 6DA( 2#ʐ,bXQ75|K0Uʛ3j5ԱskѯPt1déW9S%sAq-ZI3%P'5P. {ުzɲ"ek[:ēsTDxN2 !O24O$L[EU#2zKx$er8#]Ar*("Dj]Xe3LO)2 jtLsVjc2tBfX;;>#3p>>$tF .`&w33?=>&f>nS"v`101 &cfg~]B C0t=3=3 =Ꭵ1 30@ـt" 9Xa0Nx}C2>'zfg'zw'0G~1`r'0 S=0fDf:3''g0 (~y:ߨ1>;|y:}=L33'x:dOE=q3ȃzpgLt0}c0=p&&:`f{lu? |\ЈD`>s*D\O:nW;eq fL;&aG\7Dkط돁"q0LBf"|LN랿P|H`'8.q ;`#ic#0DA;b |s3L c3 ı8S 34ɀb陙Y~ASO! ;`SLbzbgzb~%A"qǑQ{g`N3 33Q3PJ,r!NXɃ%/}31g&&'ivuܶi$c110?@'nf33R383ɇ3$?0 g '1 D@=>O\z3332'! NFgxpTL@s3&GPa랙 L333333=q"XBFrf ` N+ JcWfD&r3Ls'|;L=;E! Vk!b`ɟs3@:r:fv&&:ȅ Fj `>wLtL g3\̙Ep&@`Ϯ3"}=3=3t!=1nBr3뙙?Ltyc鉉:ٙ2cX^=:?6&:g8vN3>fg?@D٢"3!}A20F}N`F9 QH?|:_ !X\O|?A?OW*F?:bbb:v: ]q>D.I$2&GQ;BDzdgs {c111_C|[vxÑ s)9 a ~]3ӷL- @I'1bgffffzbbc>|Oq,9Bs"}Lg~#3w\L&:ffdvW&D33333'቎fffr돞 Lt0?133333?!ub =~f"] `q8uLLC=@3N? ̓fLig3111s.*fݺ]j KfffazK.J  cƪ `Y_,8aX7i~romk~<f5cV+ c+[w U Պm# @FH F[ҨxU. eݰ]roZ{=f+mU;o]NtWd#垹D)83ab[]Q^scxlj% 2ey9"WǒCt%؄Mlxl- DlT&3$%b@K7(08#&a,1dWxUo:[$V圮(4W^Tz\|q=iˡbp!hlg\7*f \Nyg>DFT\E* sBʻKr@_`1H!8 l brcv >u@r?ͬO͠+MMK]vh\@ Vb+V\`,`meÓVA]@76(\^V9V\NsL-` njUePX4ة6k#\X_5a,Cq}mk5|i[1111. K.bB O#"T UBx2B-hsv);[yqwWli[Z 3j ,XmfLKx.P%XK6%W-H75Ժ[Qbbq%rv,%C#``&r6YbVg[|M>FYn+J{䂫 \5<؋\e05 obLD aSmȃaUz[J5*,/ZTn.mG0?~ܦu]Z5tͱ\Ms[MVVPRd~8%zͯ†{NkefkBTߍ6[1^٢9xדRqi)+G$\!~$7*@^sY`W+-, TԪ5b~eZsm:ȍ4PtO Cz1:Ӫk~nf]Sj͢h7噙V@躰!w8ͽۙ0P_f\(ڪe{S,g𮭑z^-mKisiJX^a˳wcf9~5 xpLgAqc;.2R`IT9ٔ+SkO56UlyYv[Uj*Ys5^,wEF.m]{5h_qvDi2͐{#U)Jn\55hnۤS^ڝE'kץ!):8tZn: ƿlkmR#NAr#dSeqS* 3< Z"<{*S˱7yuQu6N5޿nj -ξx)]~w)nuJoRݎrUC;v8V4C<͟ T.V{Mfb EWE[S\륆^ժ=~{abT /+K5؞UL@j޼`J  IiD⸌6$z밑_+TSff(,+i Zs^F&]ɭNءkƒXhKqV딱M5Gcmi&yעR!jՐk+),6NyUg]Aa veXާ(hF*p5.kPÐX+1-WNb_^i& U¯RZ@԰+](TR ,M`|eHjZrqZ U{݈mrʵ_=ep m."d6DZ6r-v܎U@(o}F9ŽBV͒P6KgshŶYe(#gS ɮk bX V`;A9g mZ=^)Wx"bd(ߘb0``Zr{1 b#( Qieh` E(*2ScAK4Ab+Y%U]F֠/[hK`vՔ\ԡ.*鱶4}!]O"f5M9eC A8dzCQU'͟jU[5*oe-ٍFCshXęKęm2 `5Ы?:ʓ6 öLB^ %`V]x#Ck"{aYj"U Dȳ,C``ާHQk6u (Nޫ= G }(U|,׹EZ64jWJ`^X۹n҉jׯ\]o!3k> eE5"ֵͣ*^ 1P'8bʇUYP MfkUQ[Y_=5&N-P?׹O_sgy< V *Rww,L^$UجUT#r3N Ҵ&XAe1x)rb7hVo51 AYKz T6Zqg-6h.or6jڬ{¤T6s4 }˲5"> Ie[%NvmWGvMuһ[̵6bHrN‰Pu 2*|FZ'|dY zkC2k Ap!݌% a)RX{^u%Mҽ\oW~jjl 6M6> m=M[g6ƕ(SYp֎@/ee߆Ÿ_p3VݴU(WfS"M[ 25Vf%CH*b 2dSg*ϸ8LkdxNFKLxԪMPFKE ə4jW9ľm&H5HSpeg5nm VͭwJΰl3]uȳk(7ېH r,L qɦխ[kj/j7Viu 7-/5d):(k+ll5$*'lSF*WvFb*E#>5Z1n rKDE$Cʠ,+JvNͫ7U`J2n`(mkY pcb%Q_]Zp KHiUCkX]pku-G㸞79&$cԭ^mIҋEB `'HEC$KLH+8#(kg-{vT޷lmj{DaZU~Z6RBn;bkb,f1m56/mw*WM,w*#n۴b{JYFkXݪU+S-%P9 `"`Kk?iQ*Õdv Lp,lħ94W-v@\HXk\dc0m 9rg81G{9ͯ ]Ơo]9 b5`]v/CX5\!(X*p]MT6V&g'z͕֑5.&[@8lN f_I`' -ג3Yd(ej$3+SoS=>jTzk8*N+˖Ҵ+DeļqV;4R=]W<\+ GDkݽ,kvn]FW* Eva$o6ǵ3|(:, Xf h0\8fȕVsc F@E[,j{'۱w'$O]5wV f—7ytl'1s<^^7q[+pH)װAkҺUٳk\jn[u ʗZ3\h- >Z|Rn^ŖV]:e=춦%re[zZeV&x96Xk`eFb'q[ ?[#d'Z\(~DÚ,vxHf}BzD RpQ0.n[((wʻ+փrƍq^vk(XYuBj*EfpN׾r֩OUSUcUUӱeAY++wmVuk F A1~9 %$ =KNd{JTL-GWzZE+fJ]hhq+ \j,gs}VңeīdkmW!Ŗl9,rZbs`*[=\?ul BMk쵠K%.Juh8 jb!|! dh#W nK6e, ֌Er!*1IP1";F*B;E l!T3(g#d fWen \g qfV}JxJհ7 lqZwj MnBBXHtծogll +Ҫ34,f Rx0VaC?J~]d>_Zczl,uOaf1Rc`b}M@UNekcÊNSšWVR%7#b~bm5Ykl!M%6BŻ 3OFX[4V[6QFà]K& ص_aS"׭Yeդ@_&~,cX jİKdc5 gtZA-l33?$A``gpg8Y1 D'@ATQ[;3ݦ՛ev=KW: /kxV]Fex0 [l#=c>(Q_WP#J^Lz'04 999 r#%>ly܈PH!$"l}덏[nVkwe)2m22l;] #v`gu+ VcPHOTV9a 0qq* jkTP{T!v &'3yDp wh=0X}Onq[ f` GNa5jTXX'UuҏOdkVLժޖ׭}r80$Z^` ) d cBc@;),FZ;fYDSDcB f$#yo00dV}K\gaw  !!"b YYGgTG.h![+h'eY>ư۾3ة$V AWg圖Y{=aPjUk!2;5KeU-._ߌ™c9d$/(TJ1CrkWBClb g¶e.V}""vr(9Rrs@Bc"*xr}qdK>{g2]`ag4V%~'/[:0"[֦INH|9 焦'!» T'3 `b1Q H`A.Su.9CA#`dDBaZ(%X(] =+y(ˠˢ:*2 8mTK}<#@QeQk }M++JB%KajP7u$-YU+x9&@ +c `Rq,ERl<ˎx@ !OSdܧN998w?e ;X 땁 Rpd)N$Ð`n(5pHي`NY>95(6m u* ՖaX.g#czblKN a^㑍Cz([BEk{#8%BP `,eI* `2[8`0"Gx\8!灋IR@h*t3 2e^D>5nCl-סMl;]ie,`ha<= bj^a\O&O֬N0r8S rq?$^Ո-K*FNF$9G&(0OPp8TV3.8Qj@neLDf"WiUA]J/*a,mM; 1}U&&EFa,cROVUK sYKe3rXwT+v*IP,r-,w1)%2T4b*rR (pVe˱%Db bI з( W\P 5'?`ykL6t]!o#Ǿ @(`@ѸF0[9.s{F_ULux]mXVE*aQr c3\":t)vTP`dحщm8VgDޘW/"R?v_}~e<ذGuwe!>ۉ?z[ǿ9f9D9& B`퐣#>ܾ_GHU >ŋKe.Is⋟0nsf\;t m+( 8qsH 69G~eOÑ߾Hcˠl6gm ]-c]uH7f) J{u }j ԆD/s1*{d淂e2Tb(~Q!rȟeYljtN}9&m{&] Ý4M|J`nY0 TkԦ^G N"0 !z^QP%Ks/Fj6|)؂M?tXgUsNe4 :D1v>D1Cq$љ[Dy'q)>! {5)ׯHĆ|A`sZKtH D[mubO?i uJjLZQ˽ޠHW;D[}{9DWd$!_o"TЮ"+v$gf4GrLCUF=8\Ԯ'6n4C^: ٬F/4w sbnzbs[[RmV"yi\ѐM䌦XUL:1x#f+Th$ȴyE~ @`mlP@s".{cKIsTM/AsK@@PSVqܮe.60Z[DBDB$#7qpe"3Qꆘvh6D Ż$n=E8jv52H'tQ1/vZ J- YtIz"d."6 1VPac3Ԟ*یm}iI&`tp`M2 $oXrG '&##rnN[P \ԵJEtC%ycy׏0/ _;#wWeₕq()-9pϿ.o'/yJLJI|g9@CN#O@sPx%/ .%0ۑF2LVQF8~'yD_F\5Oa$qwG6'uT2Svi |TzQ,%2q8Â1! ^W]P"#O"S'RȰnt\` !E@P.TN^G4„r7 )؀p(O]8%DVd4u"9x#9-g-ƟԎH Fت*4C+/ב4-m{TH£qaKHl++)YHX=|2)tH2sȽbx֠.rƨǧ`5x9PPfC,\j!G.n˂<Z.8ċJ` 껛[LkR](Riz@z" sfpw8zdT[%&Gğpu%ا3aB3b12%,Ť+݋BbkZKն#\O'!w[pI6iEʻI$(OlM]{LnbFa/C UԏuVgEsT+l2Rtb+ _#:0! nf'mQQ=:?ajTµom 8T @ȏ ,5L)?-,\ K}΀!VcDb;.*ޫfX] S@ŝ}WU3N%l*r[l\[dIŝ +9( W+TE<ԧ}q,CV9(wd% e"DB>Hws J bEvl'g L9(u,%rGcGӅcW83+ F80D2t~֙/ MzXD6dϴ2=1nHdOZyf̚eN2 rߺhm 4=#%]# ZxL@q4Q}yD(^XѨ\zm6 SE(ƳzD~Hzѡ( L> ",+i|<1[@hOPaL{C",0>*+|tUA!E)M5Ҟ @WpU*~~Qm5tm&]+o-12@JmG4摪pL (I$tĐE5 Nh<Zܿu(4[1/&5M>HtJF'n#&3(BOQl<#%yE<ԦGOAsCѪ]wŗPً>/1^8!ϻE\>]Qb1$DN?H&2c(# 62t$ɉ6 lʁ8@Vey!@[x!ӁI/$&j{Hh;DG}q=."N%F`[} J5xcM*(%1ā#ԉa5`$nP.P7csT#wqS^UJ>ɯFTrD|4FU!I?\\U 4 \!C*Pg|Z BĨNYWӐ'LD-E蹍 TDN ́rhhLʤG(Q +&oKw q`DBr™%W%s+qK ,ݴXqErJdiWmh߂<}Ϫhfa@q>mKHF bĥn(Bxpoj' Ґx<(ȼ r8#FᒌqJ銺nD!}P b\wU)JFRr%a`I = D --$oDEIKt@c4"\ZL$v*"6 ,nM]bЫ(p $pBz^%8̘b+th/:z25znC(Em7#wbOp'N=cJbsO%%.ɥ@1&-g&ςhx"e}j3,Ilk|tF4#Z%bG7i/[0*ԾH',H2pOL^g VzNAEQzN یȉn4 =n,h4L& z/s^ۇ DE(˦Xvwz'Dϧ"deU4J}!臺D E,7nR"l=Wi 3ZAĄKbz215Q P 3&> 412"^RAꚏR Ou*5V%iݖΛ8TZ276rqܐ#)=(g)}1u;P-%!?FriM ˁ]Ho 5QjE)Mwbde)21YAȖ4'm۩˧`qHu:R)J8~bՈ ^ C@$(XspO;A5[:|p$;CA[Yʻ:+1hj8]l6dX\pT+7 61cBxPee- e·5!H9'ziRG񁯐D3}UA~L$Oޘ틅W8Y8 k]&U,-S_,'B( @F}1k>BZR:_(Al/v$-0Dz0 Q"3M?,h#Cd~H%}] 1r^p ġq2R 7QL<$eR@B)TLjI OƂBRʶcG f|S ܭƧ i$F4|qW[TI<ѐK"&%K(C ,WHD2aԉ$ #~{lh q"@ԨՑ 0:%,#1%F 6#aNJ&W[$mvvj: UnzPK@.75BV*$۝֋EEQHrWp`SDħ c6d*UT7m-# S_Dc N7t+fMLcۭaNFSp$D\p >wv GnBLsػB[&PD N{S(s 9<  (I@m2,@A/&.8{2Z2( P쬉4N EB#8Yi-G-- "-mpG(Uaq%POc-$:&怈q+UVy rtH;_ Hmw 6KpUTUq䝈/BQwXjS<5~9X0¿5IT${>n -!A_㏇6߳*IJEG^<EAgrĴ)Zd'TOP89+ԂP4(Dhib ?&BGw8EH@`BD1~~P **5Um@o5YMw͕@Rx;TVC[OSjXdZb2ӧGr]3"WQ$.Ss4S F-*lfr\)"LfH"]8$^8 +NbK!~u/&8Jr["2%CM!jL Go d8Ȱ{_TY ^@ժ(Ê1zOL@F)&>ELMkpUmt+b%|z@6M9 @pT6(1tX$k#ikڄ%bd5<ЌEv&'tddvϕщH12DiZO8x/n}MQOCӁ%tMC(@&'躂Ϸu%#nM`rB]9A#ՆG0?d2Cx* Ps"HJ]"ӈv5xENGL352o-]QdLM#XNo̯tWgݑ,E( RE׊ A|Wײ< lJ4&\T !R$8C`UZCP4a⪇1n2huz ZEJ})olC [Pe"T$kgt}S[DED,]rKp/G (6;Ӌ%5U}t@ÁtDmڥ*4M-\~HuHż"<ܦ3l{R1p[n&'h%eɀ`M`S!h~2m1ԄerFNJ$r(Dq^?UNAhQ{0[C.z:cvC "q[j!*t3 &\5956@ҟ%/:cw^d5$oHCe?c\ϛ&mj B=H;#0EʍA%P e+^Qg-9[_4\.YΘGĭ1/2p%`=1$[ׂ{D& `8\dfowC;tQ~lhTR-1,q4TH_, !?D7fRL>2C?PD9S'ESH`dvںUQ_Lh #@^ N&%=vԤ n>n@ǨD @f1 I0P$ jGY@H MS殶eBj7c^H,HrsUhESVBCż ?3NWKNw@]u(T,tUL my1NEΫH",@٧(D8@/n5Hr#dߩ'"6c)5Jq&/ ř`^IŜ:1E`cG?; ]r!WA-M>h{t+_ 1Q 'nyy(u'l":˽uAM@9f+Ѹ뒎Ǥ[ʿ.#F׮/U"T)UaQEI͓H6XY1dM-z jOUu$K*B28NM^maZbOT4@2FDq|smӋ}Ωݚ CzY4pT?%ӗ^Z'j$mcNp`{Fw d\@&8 1560MS8sJdnU:ԽlQ7Qv +cHEBɻHb1[z3.R>j7|G$/҈~Lȟps>d 8< dcFV[rVLӀ~NC^Ck]S0jfL[P3 Ψ/&8DW0eDkf*VFuj$uK*]WVGUcVP8rέ#o!!!&EM[-U(N"GU;P$`"@.plQJLE(^Q .EtDpbȟVķ/D'6@$:t̘VuN +U5Fð]c(Dh;!! ѵGҀ`#C u#aZdۚO^2vtͫ+BjZAG99pEBT^ +~1r>q02cgDb z✽W&tVUK'߶2c1(X$g*gЀ3જT##߲V) 6-G&ȶHPS4VbNpv1uBbsiIm.e}KcʰXv_n IE<Q;F@@z]" d:pirUSD)oNl Żz=""q7*=X:&LMY8"q(&@N!јqVj0Dt0TDL Aܐ7x(Q 7kh7=IB1`|T #ԕdo=3/Z)OʇN NK]l5ZJcl50J1<#DZ@Dw➁3yiEkT}l۔v#"`l1ᘅGmGhCKo`zA4 bHg&ep0[tH{bcmؔaԁqJ&;c|QF!#]q-tҀ?DB;!P.㊐>^I8K rDo$zDO(2qOٶ*@Ru X54[E^pN=QU0sDrY&'Th݅,1I5S}.OO4^pQl"‹۵e#ubRr!wT2āUaପ> ' Nb)t7C"y9-@5fo",'- Tm.$e,٩:-;'!p!N#tCWvu:D^MM4]],T  ԤXU(P|zU@L\).MLQ22.BPx .?,Fø^$Ld@FB?R;?臷)J"1`Y69.F}PSԽ$U*|bH[15 ,c1j^bƇn$ssOnq$j"+q*螾(d[.F6tM?ԎV3# _s2qxF_dç67̢6P)EnqL8VED bfOx^N$:UlAEU@M9m*@ʽ@%%t@d̮W4 x-2ƚ F%CiQ%l5C,hr)(&(ZWt2 0*,U>*軪^2B5jftUuNhZvPKԳUƟe1 Ěr4t%c#]Q6`˾!^Io"\ q= յ{f}`yLȖ@ dc *ԱӜRrNbc[n({tAv8# 5p?%H'^@lD UTٔ@ } z7U)$JT'p r~ tĖW(Z.~2\ ‘(BvDku5{g]rVЋ"F韐Q;\t((˘N q%Q0! A$ @lQ4jT89 0@{8-P ^*;NCHX9rVh5:AVU@i_5Z4` ÷یsk*K=CRg.bމTUT* N(o1lnB>aӚ`9| sY \W)pT*:p&GUY 1WDfQf|X^] r . N5 3'!xU6#aTӍfո'WDwdҰlLC6iѪUE{m\1Fin@QRSd*dY0캭E1GEN pZQ\$D;z:rxʥ6Lm֨+!D[B 2:h!8,2i'VeNJ~?df9*SsTz'4_{cvRݔt(q)NKPs)Sn\!xK&5L~Q\1Vw\sP*]5UjU9Qt6r|<֗/Ts6D/\>Hf 65U' R3]Xf8[ۤo\{&/~:b oɍY1)h䝘jcd[IrL]_UN pbUC k8H'f&#%p^ o7vnw g 87F@;ǽ%ܷ/$nNV߅0 v&Q2 {hO!'];E*|[Fa9x(LE (|%ODNCG nUDn%zvII?'V{Q2<(r8c ߂ht9rMsbh궓LO:K(rJᬹj >zX\.7?lT=kp4FQ]VW,*DI] h- G$@<09:rh P.(|  Q5P="{q%!lڒqDqEb>I7&E0,)@39CqVɏr Mr $d4M.2hqMs JI|ڑNpE'6Mr ThSJ ' Sɢ5*#C"#lS9%bEBmy4@j!vStXt*~D$,Em'&}VȗQqFBEN{>t [Z|jO)'xFE"_6 y`S2֨V,̗Np@0db$jP sQ.98'!5]986i@j F.[]jrZ: +hq[e|h똲pX&ʖ˰=] 6@>?T6<\p(檻ⶓ?Od0 !6qrJDd(d|j%Ej(ЕdGZNkeB:])|&)ڌ^rk7d\&@qV\Qk)qt⮴EZX-`0Qhmf).)\R ٭QHC8AZ*r;T]n辫(vQKtSbMљ48)D dv5]4Q"OPRSU\SjH4&&բ`ኵ*(klNt3%B*bN BF7N(j">1Amf?d%r@,Y<\\$ B$bs E\0OOcȚ:s{#"*b  "r@Ə5n*VLuFl$\*@5 8B)F'橈'T6o F[Ddj INɩTdeԋk*ȳP &<|0 m\-ggǂQ蘚%%j[QMq':cb: p80@I}1 -eQJ b _fN(蛵2 hz`CEpFO]W5$w@6JXmOU涜K&6 UmVQ/9'As[\3Vi ȮH`pTSdž?t%C!> stream xM7 +xlEI@ ݴ@?li{p6Fmj^H}_\/ҠMiP@5+3z,o/V۳6/[xp6f'GF)Ўcܤi(7\0ݹCSZ<gOtp=-7[dKxvsqCZ<]U}|0n][6o=tOzqyKjQ|"nRq#b ;鴯[V2?Xv&6Umu{wDq'l)šɳg'N<;yvi/HoA ' md) 6MҼCgI{ vN)2:EF"Nj/zR4idN&;Mvx~7A0y4LrQ.9%G9q4GCq4GCq4GCx ;v4hѰaGÎvhְ{hXh#\vSGBu$/֑P ՑP=z> stream xW[O0}c#-{ITBb!PFMHҍs@IZhGM$sw "x@:+zOK")S4vp;WKFG' S`3oJõ`4;b1Xǔ-Ҙr04P7'g^'G2rX-K.P("w̓Ng} kƽ95pf36 b2˒E2l5{ w8 HucXAVKU{?;GO_&lKz4:5.S$&YE !%XI@•V8x!ǁZ&1G6nF#{'DZYz3 s@ լV_wj'BH~-ZSN!{+ďv |6@(Mzm=)]}~տATTxs2+R<+?z]= 2NDWDixF{Cu$"$Iej;3WRJ3QMQe=xqX+5|mf75+~ endstream endobj 736 0 obj << /Length 1720 /Filter /FlateDecode >> stream xŗmsFS%̠=KJ^td!$! qb߾{ #:wow`V Fwx-&)rCZͬ/gBMՠЈŰDS/xDc/UVwj;;\Ps /CJ0o-[~ۨm2촲อf6{~i1-8lv?]n,۬GvGUkŢt]c=c9DV!0?xra!PO3-27ѽcu@G<|bƿPjhO\ Rl1+\~.'t"bM0BgAueޔ24{:1NA8gTF!Cre_m(W(T“em=e嶩h=,wkN)}g8> up7_(U6yl;χW d1(ηvwmBqkֆ.c_|:8Mvudq"<*ˣy9<'w\~)^X$fmY#_0oװf/*qywbUpztIuxRЮ 4  /VSsCTTʎۢ9hDUOTs60.DQ;Ak]oî۲A`tsKh楙 Ǜ탏uɻ?n)[8sS=IA<90C1n'4YTؗきz8-JX0,m[t4,?&f,H$t (.g4(V45]XP[,0  fuA2]h o˥] z`<:؃}!Xmy# N$ >/[@*MDv\9J0Equf5d8 $O_MB8ʆdAytںzwb7[01y)LY#|SS!TÔW]?7͌'Wf×i 8k}4^gXԍa;7h7}(wtjl*#>)=tz~y؏O?줨 za|Seq*ty_fu*4ƹ{($-1Ý ݥE-ͤ&QhZ~@ <k,@#?vg~+c=aSF2XȸedLcL~|GHfRo"e׸_(9n1v2s\lYX? Aד)81.zHyHAa"QhF)B UR8B$Iġ\/N!bT^ FQ"90J7 ZU#Y&ܺ`4)L2^#ܓ TCp-ŧU>J gK!jjDin)h / pJ(wg(Brd-¸N%Ekb4 eCaPf1 QpX C`'jՠ'A:RmwB J`7w1[9H?A[9}ƽWv endstream endobj 758 0 obj << /Length 850 /Filter /FlateDecode >> stream xVO0~_FZL;40 MhiRtsАESUk;%C#g Xf<$>* tt>BbĄSBbĞzq::GG'G>a(T #J= 1v_ǥSǼ!b\-+W18PlQ^r(pਆc7,3`{c8,ZVs_AIx7RQGg,\`gc0Ğ&ie>1|e RL_9"\$Vqsh^ fuu40<2Kie Df,@m@fz p3D\qw-eh5qYxjV$iۓSk#y1.dvn17e>j7ߧ&dQb_F[;tƱC}1[̢%WS9=JS*_(3J-~\mޗVϭ|Bn!"n+$ew.Χ:QU-dG@UPi0I\۝t3 4ZKA0'E9ڲ9nut̋qZ#5?VZpk;Գ);sj*&m=^6@uzK7qei|ӲO 1srD1̕ӄGY %Lƅj Yӭ`b:N;fAJ{(J'i+]T,J[&3[6 ~/F[{"YD endstream endobj 740 0 obj << /Type /XObject /Subtype /Image /Width 536 /Height 457 /BitsPerComponent 8 /Length 27779 /ColorSpace /DeviceRGB /Filter /DCTDecode >> stream JFIFddDucky !Adobed1l''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD" @P!01"`2p$# !1AQ"aq2 𑡱BR#0@Pbr3`$C!1A" Q@a0q2PbB k}\z:SC~};-eڪ^voآL#_ gbVB͏M3k&%ִtM E~[l:Z쪣te-\)%v~j_I'1N\= ReumSŪpC_i-<=evuRxfjޢ7. Azcq(5t:-Xksd-H FSl^G,Ae$i/,ǝ^Sx|oI 6Wbr 6՟GrYo_bLoLI S?qqquA($f/(ms~^/ΰ^W/p*n4(tZ5s5{[a]HTf ҩ55YMgDi9|Ӳ6pܟ]>Vl$җ-'ʰЕ.$Inbk3ݨH9~4d-@..}dxDW(jy6ٽOI"殳73^mak3q.pv$wgOht+UZ[364ur_QoUZl>_y?5ffߤiÅ:i%-Oe枞W@֓UM_'uR2L} Hz*S׽$~wC[?l_ u{9Yw\S6-dLRp5>zK8՝J㪩HS|\B.4UAf4o>@}fUy3 m-GJ2"].egjj;VSy&PbvYCotv,=F5zHg|yc<7305Qsz~󬏃im]|k{:~x#wŮUn7C G.wt5Ohoqqisg9=Oٷ4*he_gx]%R~~3vR7nwy2g+7Yy1rH=gFEIuo?4TUG#UbrřJ`weET.]x>44(3W]G.q+U&4ۤº6j(e_gXQ?q;wm̞yͱ~O+W ѹO.m6B^m/}DKNH{Ycl쒋|35Ƕy)l>_:-nr5hyݴ 躅Ұ`~̄,79Q4 ?b#̿I1y]}0>i'֧;ndUzwlqi*utCLۉm4ϟ^|g7\ i 1X9 dsE;'490,Wo.;5yNT̼]v0KkϝmiZOY]FB 6}.gA·j/?ZUW]ʇ\~=6wI_bq/!HőcOSF.?]AsJxXevؾNvSL7}evgS[Ublp;x_ؑ;NܱVz_tv=F/=W9gSpyC7Y|ӽn_ RבZ . eWG9%V|ƢX(L?;m j5ҧgbc=SiCjym_ed%kW^GI?u@?rV5LX""'֓3OO&cY6Ek6VcnyW3cּg1>&?VcE"bgg9j~|yE>fbbmOXL-1o|#&g⶚Hm[ZmHG3Z͹ZG=ϵ?6Z'ω-3?Vh?_vDr}}yi|LG#X9Zr&c3"<3-13{|E"c}&g?Yͦb#b93_y?mco1^ܭbc枾gǘ$וϙ彣39_ϏϚ1[xGLM&g++_hL֞f5֛O'1HO-y"|r֛Mg)޾+>"&cϽ_WyEf+yo5ǎ3gi+_31ھRxLbc11Zmhg۟1Oz~k`LrXE}b>X+>"<ǎMkYi6rc־5LDL{GYkxYi3痯#ڳYV>yi[ו31yZͦm3yG7$x3Mfoi>&~O&f"k9m>xO?3Isז>M|W޾67rɬsbM3_Zk5Mf#6ֳi>'zՈk6鵢k=Z'-4rGyș'6y+zk>y+-5LRkLG>?X?4x?O>?Y)|G;"m9eCM gȏ,YYMZ%H`7Qs[QК(GQxf3ZS@Jߐ f0kf7(ut 2%nDŽaS76|YЬ8uA`&o\dR]Ol؊hRaIުsSOѓ,vL$Ȯ(145ڜ?7%} BgTo?>3οBQ"oLz.u9,T f^{uD;=hY8Yakf9lZ*վŜu4-E%jk߱8j ,|wJ=e2 L-mkFh6^NҤFTVUoL"gQO$a":-T' =ن*I'N_ViW~/ .ښR{N&NY_Basr.<_zRՒk 4p}p BL7}KQk]}[Z ؈ )E `Ŀa(!>"^LG ^4-(@Z_or\!7B5aO6`Wj4kD5,KRBt̾~puZH퍏G뤍c3EZԵd8hbˌtY};.Mk&< u~ WDJ3+9Q50j2, R*i֛#O^3 :JL:՛7rV+_:;nYrztzK}k%`R.VZӷ}Z ]ZaAT ҏR#&P &ʊaV3- t ɚK#??wYٳ"6iWٸ ZQ3sq/~K XKcJ[W?F UE6SHm .ɶRZ3`}oV=bDbSEYX=ؿ8$z?bU/n%)[Hjj=kTDSK@+$,UVйyDZK;"$W^E952n6S9?Y:B53+ akdgp1j9hjdWdc\WDM~4lTVܩ-s(,ޤzGlg$g񨎬kH0s̉T"e%#A; z[;Jڼ1l{ivӬXlOv2TUheJS6C9MR a{laUBv2Wox{?5}fojg:'hkj/uo~f^n=c0ּۘcsF bӉfQe+mYͭku8&Q*2foO !Z#"#Dk) 9s4W@$LtKo\Qc,hkYu:]& Qٹ#9@~2r2U}̓LMXF?D@LփРG`,7 aG# J״I|Zunb2LKPmrkc6(W.ZPO#`>9y5zoye?WhHc _g 1rY´m I#=, [ s)F5̕n%YyZ-ͬS\ֈ"kۆ?Ħ=MX#m:_Ryeu{vB_P'zH_ƥ]j/B?!0~3ZvVz#Ăq p]5Y`%Zf;5?IWp6 7K~#6 d 6Twa_=NmjQP;Bc}CEdյN7B̻5)(ؘmCJaT+1sڛe,.:`\{%=z0])?Aޕ.8\,uN_+W9Qqm Zi Ŵ{GvK8NR2x;7s޲DeӴ bY6na[4fR7Yb rHppx$/)3QAkɠ,t>P/]QU1a5jӤS@nY*k>Ca#:0"鞪? 4]<;c=B-OAPoK=o.f bcWIУK~4Ũdɖv㳋_C$:(6>֓>c9Ɩ#͗jx:l]nf2}#?=bç Q6;zimX O{xr=ʕ Ũk NŲB9ev9@gmYv-׏JnȉX_ez#VC"F`&d,kab.O @cˢY[Ip; D֑=fC{h v`ND^HThA@rDk~+ YY_ԪV>#Kb#.$~إ( Jv:EH%bJX_Fg<ڡ#uUrW/+{PQkhrK._~nq *;{%*u5ͫMXȳ$wjM4;T01R}A޹_Z?H"m$n')OZ`x [)ڣ.Ul=h@UY-+җM_\%5%P7ٶWd2 7 %u/Iq-Q+Z"e^ V;}Bg2byAJs5Em®fV+|2ZAe-kMveV0Րˋ  ިsK TH5MWl=%2[WBiDC!^Wn$kYg  s4"ffr8+n!ԫ*$Z /2vh7po6$V2k1Z+[Ig0WN?8OP W³ M[K,]r+n2\׹"1}Tt4e 粞2zX>\o| &fTY _j!nY]l!k4/E/m/>Zm!SF3%R ªq"XY*g'&R1u֊Y prEji]iG$1k& f BXDzb<]T[\(_լی)|ՠˎ6:3vq*Ϟu]TZ]a0i`.qnQzj#@T+Gfi[+ KڊkElp={< &,QMttsDJe(sQRH/tcCUy_R?8]W:OTν/Bh$Ke[8kf3< h N;f>[KӗTԯ^X(Mm"f4&cpY =H` {V')k}P-*7ސCtֆǾdWg-r M.ZzԁaU>CCr- R,ըݤCM{a@ Ί035qpVX()af6H[ֽ?j6Wc9;4jY"|qG(4zf h3 Xx4~)6&OZ2K!T< #E+q ⵨K`$B-=jl0a-VB3Y^7mz͕آBv]hz5)h04(#ū&Z_ D*k"ĬzmW+#iHWTTtSwWRX\6a<;"0n IP\(+)ha&; Ȟ+ amI(РR ̜C:+Eܓ咱+{,XWeMʻ gM%Π7M@KrTy/Z҆PSUZA,؈+nm:ޥcTpQ`kczK| 2)H,E߻[^YЫ[ fiq:>v sAjPU6isb;#mϮ^mk Š茏QrѲ} iWf @ۓ}i [ rZ۹$Kf ,&zsML1}x;yS Q_mDϟ>?ĻVJkk">Z0dE2G~3}Kmu | z_kMC%c? C5 \E(zƀ}!~3iTqw&FWfs2wWAZ 6oQ ˬzp\p{#u6RI3=zUo^Q3O;.]~<+Û7\ Sͭ6 .6; ](Ŀ?*ѹwm i$$|E֗pcY̰r*+%ܵ%[9ws*SؚԒ~M$aƟ" OM#c/#J;kXnF&&?ԶR5ԙl2ܝ64uvC$mܹK?.>֟f-v[2؝Гڑ2^"jK$y)^zHG$(jG%byWjXONߓZ dc[ 2zB.,lAz4g%%'T4 .Cvo-MX F])! 4J!ҝF{NOI薭 ~;б#HzepLK!Dvؽ;#](rD rj:ŐSK/dE'ao[;~'ĺu㠞zz$I;dG;vж"0~|mAQK/DQqJJ!9QŅK$˓eS*mn\y\G%rԔeޭ4e܄C&nXEW#Cz2LcYc'KiL;x3DGJ$}HF0&џUď:9tbu_KeƒaKsW:Qcm 㠛q9/tRXRG/~rO"M˙rV_4B!xSLbSVJYՂvՑHdF;~9J۹؅??7c1sjxECjj Į5ԁ#iju9l > , MJU%Zr:әStncE&Iʯ;I QzW_-C ƳAf_ L#|EGG1qJ(߹L4΄/ JGTp?YƢp 3 T%}tTd$"|)IWPZ 8~2h@iVCl/he}SbU`eU GRoJ$WGڹ!Z$z\~'1P?=,~4&q,E^C4MC1+`.`bbT𭑵xum3Gmh+Qsmz92Jߴ\bK4llYH=+b%2GIηWG?.\,5ϑﱛȤƧ %gp}OI$tɓPQUUkNFPL:8V?HmJq4vom@;i8]9I>tNIS< #c\A{_yR<8< Ri}b,&g R`)A~kos.Iԯ)qG:, T="b#ˍ Lci+0m1D21n;Q?`bdlP<|| Z{sʺLڂM>F Ȯ,}Q bd%7 Jɍanuq4~6h<{1L15dn[Wc$ 4"O*%P2c˴o-J( @Rp(2HK톪۟p\sͷpo#H h ɀҏv:4S q?Gv3Fi+*"f#tph$ rȉ^sG&߲+jX븥VtV&~i̎nU a04"8?n-RwE&7Մ(+Jd?g8ƴ"TP]TjM"l%%V@(2I4x`7 Xӕm7EwwLNQ =Fq_cvjEXF2%AlfC$e%@[ "čusNˡ4D7}" fgr fQ;q *[$" e7 $GV" mb|m6mUp6k}V93'hb|) iR!P as?.L[$02Z*~tIÅ BR0%O 7mQ|ʒ@Vnw@H"CLS{t 7}I~3I0VcLٙ&3JX(_:p΋̮SJҟt Oqs0 I,OYA4,cʠ#<|㋃ ŷqޘI@QBA&`U W6M$r!NS:N2w8Wo:aq&7PqF0>͝mBlHYT4FNER|("&vPŹ P  W6)EGVWonU9\-lJ. 6 k&$6f$ 0|k&uEZ+H"5I"75\42+4S6:]pVehը*>sm.p#lt5&( G4Sgkx>4[z LEcϰevuӝC~elVB!Eɰh 9 ,Fʛ6͏D*G;+`bl>oE^|kzeygFV7O@ Q/R!Η sapxgyB&z1J튂EXҀ|e"ŦD . "fG>5ݔ۷e ː͠(.p6if3E3(9fE&\㵕}'K]EUdI!?a;FpC__xEC+5: xyRyG*N $s-A^tE tqX& OMTC`'h&PgXT^`Q. C"D!$}cۥ݌6<&UJ!t|!A'yJ~fasȷ/|@k`06]ݼ@P $ϔZ,yP)$n )#) @)`0u6aE۸ WLj.tһ?h7]ø@SK^I(cրpys֊e!Yu^?e9ưI0I]jA@GyI4ٟV?ʰ^pb`l9̾IorV<;ҡ"pJ& bѤvyM*2Ƃb=-b ^/3'һ v1W`5%EC{:&a4q,CXAZ>|he XKƓ*ClQ4Xc}) F' yoCb~pyG` R%t1z;X\~TH︃}r9}\ C1#Kz %N</EԘ1AXl Q=$ގ5Y^Z@A5 *u__ %^tNZ .$ʙx#ct&™2K%~aP?hQrc7q+ >u#(+#)iu &jiqlxXdP~\XLbL,l^:(icy/[H>α\źy}xyG$Dm#HL fO=!:~ 6 )"Oα $s[Mc𠹎Փ&+o ;AB,ߤgc=:ϗ*\2bj˅eR2}4U:v[29۴B6Ƈ ijr 5b,{ 5c hɍHѷ CIf۪:)|ruOrw n+4znH'c$O},v H4|-(o:l9=T 1e>,bǨS> pd]&CC-<mS.f;̝OJ"yS6$f_w,Nx؞ۛ4:\"Ig'w V\!2&ہ9#ǐ|&7yPm#EW)R`/hau1|q?r4X>..B(65lu>gw3,+XqyLlAa&#$jT!cܠܓd+b 6lP2a}66rTb$| H17G&F% 5H]z&τw\EhKm0<(F ӄ^"y"u Ds1ek89heHYu8,ƿ/mi+1q#p1OYܸӃ|FuG'V9Tfkl+*D# Bd~?LnhL2fbA ?y!h1KO\ܦoyj0fBrף璻 .0vͦTR{}5,N;`7P`{4NCӥbu3P|Ķ7<8Q|WV#[1!qr?: ^)r1e0C4+ >s]5XaŸ&3#6xMACshэcAr9 Kp,u,C($0wQ> $XpVPϵ9߸xS>- ,5ĨS0VGOoc.YQDⲐ E @(5n̬)*@]XHDXO55b#:>6$%{uȠHNM<96Џ SQ]X'lPgFcз#˷`-k~Y1&8aljFР=S3`q>dbI;6^7.>Z9F5,5X#)p_rz@Heұz'vf2d"A)@Lr@010-5ze^"lRbIkC/)s&\j6#n_KfQ ='L^:FylAAT#6r\cDF· f@DPT 1 [<)lxXpL([Tenb")mbF&,]hc]7ŽӨhxS L_ʂ{8 MOqLQWsGHE2VAm#·e 9"D$8@Y=1r$hdUkG>>!ۘz;Rh ølx@J*u>˞HAB·>U#^Dޒ P7 [o i"Qg@iF=ȅ<>SQPy#&ȀnY3M=)<+iQ齦-7ZSQ3.Lt"peP|{3dPɛ*E1ڇfo/X Eύ7S0i#οiԨ#Sc&TYi%BOM/B_I\hrF8'{`ջ6p8 ~DYG"XijeJ":DŽt"O/JDڎ0jV>89lʾO*c@\kfng"A .#wCly /t̰mB@[1Aj.R؀" Կʱ{:lY/&o[Om JKK?:bqѺ UY1EkON̋|YSak@|n{ |99 1j-$j8say|7c$[wVpvǤx  ٹӈH Ώȣl^ \ͣ JknoMh C EhYxTfRv>ɍLy5@I] J(<-H8QbNոA=И1MZؔ 0yM$mibIK]نβ6wةek4c-n|Z-G1~,8S`_P{T#y h2ڊ9 Rcʂl)䂻cCW}Nm ~V,ljBA21./'){vַ-S?K7'.g$TDmMxaAs e2n F_/ㄏ(:qҫ Easx^Hdȴ>2IƗ"@qꬃa΃+5/+$ITټ} T!IG?2,9ϊIf]hS^4S!c$^tqR t xQf$.lc<("5PSq14ZKh+B?r:a puFWq- y13ۗ:QcxLyXx[ƛ,ڈNYM+&UV̋6qkƗkuŢP(z@)+δP.;^cpޮrL8 +<-~Sz1,`"dnF`B4m>*0r 9TVtAL+~\Lm77aQD/0`iYR&E6[4)%~U5@ >ζe=[nѺh f-7pt|qM.2Jxژ#r,ӡmVdњ Pw^cqX 7*i6Wed7*#7>4ޙ_WGj"9E;xO Ԃ@EBu _0){JbJES*" .?h0|Thc+4D*u'cɌ*1bbJL2*fO̶xܣ+;@֎߿ƕ1,ʘ*>Bb&<$6根sGUc:ŔnV^4;b @}"is%)3ƨ؎j >H,F]7 1їZ> ~d*mH97~ކvTWo[ΆLPێU= x\PnjKetH6QC<؟W(H6f$;lljdk|$Xy1[|v@+f7$0(#.:kx&0j Cp&k;Dك d5ީJŃ^E&HҎDegv^tKyǙw3UKql66'YT3!z|yPLDIR~_-k+O]fH" ѻp>t?:qm$(lWlS ۤzJn\LDŽOH ӌkλl-w`F4C'v\Mw'Tvs(* OPćirc?PA8VQʎ566Z>ؐTGgĊԢ*b>5۔\0'_Cq}#η$&MJr6(E|z+X+^@2d?T(MWpˁ—ٖ2xU S01Hmۏ O`f8)P&fa)qQT;)r̆ DS;*}wxLli0glȊLN116P y9dI\ .AOv_QUΛ ۏۂy,kfd-DFd&Q*kIHƆG{ ?:+HX]h6󫝪.Md5sCΆt%LkCHCBi ϟ<øOհ_ <_MOkz9AwD#_r;Qo5&SŸ;rHg[ZkyW`0m[rC3WeIMc&rXw02@)3hib.G+q .+hОuOzM6<=Nk|bqjK48ۗDwkA0F $O pvFj]?v8A1n@e> 4 /P\O NfޤHōd[ d@ڳƛ&tRCz8=Cpu+ď*(ȝ@<28<뷴2qcAH؈]鮅&)[(1~p" @B O1W{.G[1D za ?]+\2(36CG!&WH6OmG -ns'Ʒ;˹IOmZ7֕lA[ZV_pq[p Z'"t쏺c_g6G0':ُ9ZEH16}% 'J:ts\iy/r9P@/G"d J1Pop0aLFqcэNc+< H4@b&V43#"N>F临Ի~1dvF2}ı@/a y 79($QVXX֕5N6 XΑM*1<9Wm`7PLQƆIu} mßl .&.u Hc x3KrQd>u]XA6,rr2h7*#]$7:,. v :a"Hוw9ߨ;cjP ohhݶfkki43w;8~qQkH(P’Y*f jm~"Ո+}t( ˼^mFC>>)Q貟 &-ʆlo)RC-GB)xp{"d-Iq 4&5InB(lƻ1;d)/$ϟ,w>T4(_lDn w nˑbM֤|Gp(mv_C.d6A:M(}|xQFIDFp5+Mhڕu}.iT VhIʤ05&a@EK.BDoatt7p_Ƈ  1[US8ٗ[OdSvo?HUSM52q`]6P moWIS_\%DbΛ }Q,O' [飿XA#?CbKcLh`P:̓ri~ft\kɦfS+lux>D LXrua› Ц<μ(́4J@HkwW(lGٔ;06Vw/αI~D:Ž1қ& I&H))Sk@m9kG"2tԱuU$/>52~2<)=SP4ne*Vz<+.<\;vy0j+vc!6xo[πֻqO20S k@&RӅ.Aw&s'3"̋ql(` 07]^$: H vx3G%FvmIAFv;'q+dz~t1a#i&Pː&_Ʒc,AO$~Sۮޟn7>BBWH=_cX 2O' WX{pqe~vWb,2c1u4'N0ǟ*G#G4їyuy8xa'6E_SLi_M*f•p =#?A+py$`):avw]N^Qʷ3楉'˓-<`IJd*_uH +qmҮ{x !IS/op \IcoGx;yT k*'ik~Il.gt?.P_M=(ۄ\ ѹ@{2hbi]Mr5(%t2*cݜҿDD_]*wr:RfkMvYqbix1+-HH1z2{XA?QLxS.27_CΓ(( f~"80?eEHHCCLLBk1FCm2ycZ+S΃ŸA)q: a҆LCgGP!axɨ۷Uҷbd-4]۱]Kd'sHטYS;mP#Qz :(@ q# H#c!$K_W +:egQuc$_ZaM*pnXAr),[?aKMۏI}us 8(̻Z} :R_o"~Q[UEkp2 a (1?=> A\Kl=$ܚlKI/?-N O$ņP<~M  ^qz5496XLVhŘ?)[^&Ua7Sbԫ1AeS#S˓eb-1 &cIMJA‹Y/I/%I¥a vĮ Z44p.;Ub4b"Em{\_.14+\y oCo.GTk&(̤*wpC6\X NS`vn-w(_GdY2NTʶ6QM*#'nMP`5ͨixV Hy/Jl8HGc8 ϗ>i^BAE ĸ޻ED,O K<Jr,pʓ0B!'? endstream endobj 778 0 obj << /Length 1201 /Filter /FlateDecode >> stream xXo6_G X~˰ai@{cZ6&˩%ߣHJh9N&c/A&yw?ݏ<t;#BK# b)^zQ(R($4d6xE?Rύ_糷XB& LrXD1ahD z'wo%Nާ«wNk7 )UQ<5FDZQơU*:Z Epsx"FHq;wf-t&u8Kabǰo6ԊUI)`?>H,`ꀕrSJ{+.v42zߞc;I8uywNfMr:u ۥSx EC$YȪkSgS,7K U-ʆCuK5DL9*%P-Ev0FBJV蛢@SpsL^9v-uYӤc9v9և}NTe ly]oSijdB.<>&(<0!Lq˜5M慗S==a\.a&ʦ;jL{YbRs),] e!GyRYeK>'! endstream endobj 698 0 obj << /Type /ObjStm /N 100 /First 910 /Length 2021 /Filter /FlateDecode >> stream x[Qo~_$!KR õIob;r>,b#pq8C~.B hf"9-NՕջZ_ !@.D.]I.6P\wCG|p1 E *s6r͝x`Q E#*0CV%xG# ё@ '^+uK"z N˰#XdpdKի@}R!9EvL1u㔱pű$u.1B G [C`]XRΡvB t9a<*.kbb"VFi Ԡ+cEW6M0uQ!HarE~,E-3⩮ ؏uŊ0Ijn:q:ph .>FST,2@KF4y) |ƥIl =Ab)!$aBƾJPӢsᐚJ;E"l[ˎM'=SED4bp.A$@\U*Mݓ'n~ZoÛmտzrs呲zg~fsNJX^*} ݓ'ntËb{^?_LL}BP Ik=&>ӁgbS} 4 gY{-YHqgAgJW$@u J8 .}`s<1Jqx ;$I }ԛBp:>9瞻\&{冟wARnݻ/Ssófh~n/.҅ նKj 7柺pUf_pfܮ;ŗ/zqjgSDgīrsJ`F]|Y5ZԺvtѵ}Á'unt. 6v@ū$plZ6Yfkb f/`h+_A(@O*{|?eR twl\8z@ y`Hc~9 pn*/.6,sh&M^_Ч9f9S"hZ+H(c%`,72BړPdwcJ^MCySV.A4֑chyRJꯂd@Zf}hIhIZ5sԴ܋QΛ {锺mN0ڪ{w݋j~T5[/~˱.cy̌_5S4^A J-ȐY5. EԤ ~}ΣUhN@UaЀ&M<-I`-T- iZgYh?hф6F/IeSae!_EZg}NI9lY"mΪQW8q&ה&ڿ P TOO0:pe%6fWVẌ́@-ˁI;dv޼P8Un߮#nF}ÑP7>IZ߮4=<ׅOmTt͸W#qpǢn&:d,~p/9NBc endstream endobj 792 0 obj << /Length1 1459 /Length2 6205 /Length3 0 /Length 7193 /Filter /FlateDecode >> stream xڍwP6ҤA@{Dj! IEzGIWz/"TQH"EAEƲ9̽k=ɓL]B;],[U'#|dYl鯼OCc-3ovQ%zVL= ^S`UXm:]pG^F&U 9:m +. 'dX#6:4r:6p%cn;Is|δ;bvDDw4-}<zrgK_y8UJϘͻRlj̙ 0LwjȗLKޥH2l|G`C{ʭ:G3_?Yx |˨Ut]ZwEW}G - `}$ubO x{2 W}v"* L>ɝk2cο˷j*OD&[|; ۖ˯ i~yp9p d-alnk^ x-KerABR?go8ɖna~nwMմh/xbӶ-KM9Y/k{8"-{VX{{(>$\iP vWXvlњgWjwŷ.#t'fn3uIkd҆)c2ڙd+V&!ygd)?É~%_:.1P+z(LF|q*I1xtn:A :[$]׋ <{n}v8Z0 rMߜu~<tiArrZfH- /_wݿ1}y}& T~ԃSvg៾WFmpGvuQ ͑Z,?>lW:?4_oݢnSF>gb>r?4?2u D>tؿ~e4&\hnuzl\suBH-Wץ&9maq*eW#}E/Z{|S_!Y"G;(0"2uAʽJl𓓛{HFoUVlvA^my9t]6*9g+$.0GP4SN3ˀƨ/f\C"cջu y.lC@Ew^a3zxv{ryz"|=bBOJ7]eǓ? mژ0O0IZE !3I_\tv4:L}ϊPm4_ŝr#Y X1\(E,?uaO2gIG{1 򝃸|>7Um&]KRZoכ&4:g$ލ mM7X\a>鵁if,Eyڿ?Mr{RdCi)x#fv7&/+p?Pl>N(?"B@гLQGmw&6wTEl<%rA"|ou種Kpnmr4G GXMOeoԖm>mASb$-@jx6OӍǬd !;JsHE OIL7Rv1*1C?8 NN>\ì0]j߼EaSt86~3Tٔ7Ԧꞎy,}j_,rV_ 3 2h_h<{+b{AaCL.陚=|\VSY'{Bh1Q8܈왱}jMF8fÛs/cgNv&ʂbL0WKWURzt^7Fݘ}^+ª<è쏈'G.wh t,!fXޕՐ gUd4cOu[5XrF +mUn_f[O-h\)7SA:}. 'OunV()^x=uBՂ2+0[5$SIW%{I;en-e0&u`Ӯ0h\ LWgOsqSKi`vYHM|^3.cq;M+ IS wb91$Ε]}k0~D,HDn 3ޡoU0*xM[G73T ˀx G,O^j"[$BV3ZFd!9A\^.*ҁRkmF*~Z\uu^Vx¡"ƹPB8Ax潘MEutЭFkq E-]a.`t-}9jv[1*Un;wnhfMbY~lzӉm둸ІQz:5Ǔfd򂐑|vZVzKh(i㭃*G"g^c-S b< } Gc>SFTQ=%~t:4p-$ Pxu6%gQQ*#mY᩿tVuL$SݧNτ;˿xtϿUfſ5{ *[QKPnKKiWW OT(,{M{ނ҈gע`k.Gv$(OCn:Yj]؇ޔ,l6Z0Bvܣ3e(N!=xzHmyEL 'a")\NPc_:#S|(.?xO OI>u9.Α&F>|GXR. 3rYx1'8pEIbn(%ӔbGjS*mIKm7HkU$4(n(gcԎ [TYWy,5%4͑LY| {NX=JvxЕ1^23Z%QѬ"x8 QmRpKuyr%$cOoIiBb}߽=Hh0mxWދ[.=^ϵCJ#HbMY3U/GfZP֤QMz̓~4F k{g"Y/Ϛ身dzx0Z"Ռ62xYuQ6&2 K3_n\ Q2 ǽt>~Լ%M. [sW1\KNPwl>|$c`+h;Qjp Hzo K/>(V偵rBj 6~6u!V#l5әgYMճ}Q(ÀSS[ǥo_aFg{']Ng\AhE%+'k)Li.5 dn-6 x|D]d"ߋ.]V+G) webQQޯëC?4|^r\Bln FMs0'wQ FO]-Uoe]^#ĵx/JQ)my@İƀ筌ŗ[Hufedބ.o b;OKثz N\H]P&49IeF[ .gvyw5-IYMnB~50]Z)]ަOq9pJ {]Cyʱsѝr-|Arɀ:)/$ٯ5>kq>i.yZwn(燏e%{A歚W8Y6O~X#v>!ieB+Hh' rw3'+-:*j|8elr(X ,b,+`uͳc5xm87Q!/NDtmaίr`sMw}JB !It;LBH=??ƹE@*:űSۺIf= E'EQ:.+4֗|T#Z,҄:90}U>ZbOo:A"Ub\2x̜@Y {sYAz{NQWA|bcʱ/bN[m~ZBbm L~fhߴhSJuilh0\5:BLVᕑ^Î1]Ss(3>0}EQkW z ]*7&nſ#86Fծ5in hAsFĝxg}LAœrwH5(Z=M*]FCGK|ʴt:F7X==߱t$hKJ‹K(d;[.nNvAa8hIk;fEy3*fG}AڭQf#kT)93U({Ϫ(*~O~aȇC ^nBU1l3o#o#MD 9O.s 3oEKǿ5~ #$ he+D㻱\SyBhEiOų_c#Ljqd[ spkzT_;c-i&2`+#G+UT8PhhA8[."{iFZZYE#k` 鸱̳)$,z)8ˇ=K>g3FLI,f}|MT|ax0KwP4ٛ r;{K59}{w.]Ǟ_|Nωs_`e]DU=W4mX7Mkڢ<]U,+R$~ ,h9QuI}ʫ Bm"-Z]= CI Cb:AW[$2-u%9Bzهo85e̻6>2|?Dzi }Ig1.]ofJ ϡM~9ug!}‡ǺѳT<] _1:_/O>˯ى~X)*܉2+n§3Jwl ) endstream endobj 794 0 obj << /Length1 1430 /Length2 6108 /Length3 0 /Length 7075 /Filter /FlateDecode >> stream xڍwT]6RJIM7 1H 1% (t JI H HHw# ~k}ߚfsk}>vf]0@Ҁ,@ HrB=0\?JP )CPh{B"4@RҀ2 fh 8Ip98y~l!)) +f Z#0(!dQ(7iAAooo+R xP> $Wi쀁# GyC<pBH'`5M@ s8п EA0`s:("B\? sؠ TZ}H[ )(+ UvJWW($?e} Gx^vdy >=j8hߘ@ Iu>A~h n7-/(+!!fl08a_kt=`>~B_OC]|M]bASӇʼ$˨Ņ~a1 %%HI [oTGRi@:4ןAng(7l_Bk_QzsEW=QBT#_yU A_ C|v0_]w]`p. uB Cg댾Uj6A3ϔ*p[ݯ _Ä!A}~77 (G.Z^ ` US x A0?!@/m==<ГA;{B}ӓ[pJ:oO K-1LPs5ouW+Oѝ* =1o O~P^V~eC: I,%1[aq&M^EHthAJm@) s2Bvf 3꣉9I}[;DP·N[8nܘk/cIC.Xx[۸7+Ohɦ;Q:_M~ޥba3/>8@ߖO-نh@]$nvkސ^71^Ú˖}&9M>)"0+b<hc>^']ܫ}ozf5}#Z}6ciH5B!ۀ^u{p\ Oy[NϬ{VStۙ1.'&n?j(h {]^\](٥9,_vO=z3*džᜉ$SqIs&(p#xE/*s}ߚsNmji ^Gp `GJ۲1;t+(PniKY7M{39_miijo̸v-|jl~> Z6ln$s~ѣ1Wh8 si9"!|Z˪'xOUL[-0SII<[ Cb}Atz d KxSLf.PPѿz} gM[*Ѡ`/()_W+$Yg0'vֽosxBI` mq.td"ԲvFX! 2V>h&$)G&WÝ11XaX9|Xr 䭄OmeWU>z]1?#m}HNDeG6[N3d1&%AmZ1JF_93ߏ 3%LEIS1/ ϳMiAVA$9PFIՀ:U0e f(A)+uFZ|1y{k ~kn;ӧ{A߃#?Q|5H`hdU3W9r'X&,hY3Q1b[W>Kړ̢mBMw8(N $8W Hum}yKx\rx}t6+5 g-m{Ik:"Νpb\9VL`:>I8/UNJoC j#3(;7aeOLx£/^ܫI:C#I 7Xg^!yC ϶$w|! z_.-ؙ3!ogoI3$5c lU vb'oKwy:#p'Zi]tRyjOVhkb@Nrik*R 1K!^aAE#Bx͔ъow uS!N$mgsqYRubOIk'}~scoYH/nkt9<"%QΫp&z?kҵ夠xE o/tIq'~EabOR0M5">۠yi%~F|vI hV8XIjcˮƌ3vFƵQBKr&帶m΄81jJwhke$U ^ʄ!f^QrZa{ ~ݱ$yu(49,"otR;Jn(:$:_54\ 8|lL"}ɆӠJY uEy@b2$!GGwZeC/®[g=. uB~*z/^dYg:QQT$o(PZ?t [8eeˑ&nj ћZۇo_.x])A^fU?;@fu48fc9wLm>F}Y=9IarL}Szp1QmtDŽ(0*ֲ m+7kӉ |wn71Y gsayƶ`Vn=WTfpg&zrDgZƻ>wbTQDR Ҥ߬Ha% z葾]r^|ޯM;Pәn`K]Х1O2 +t9Z%7w>k&xB!G̕?{[LC 4A: ɻ[-uSdD؍ ȘPwϮoǮPJy}޻v%vVuV_ ج&CdsIsylkK;L9BTٖ(&Ri#R:%21#9.s($oԮ6ʕ$|V&͋wK/6cy`SńTK"^yGF,iQȜx-+ \ȃ{po72[~R>F~ Dɐ89mm w1p8}'Y b!Aْ.f7.!ut{.g9W DpP)D+s‹lo7&&<ơҞǾlE}uͨ\,kivxNҁkw\ʝ3 ,o=ox6;Q7nefΟ4I'Kd\,}EjY~]$ usR[KTmpzq]sPs0f$s l܇dLK jM!oeANGr-M Zٝ_| -$?6u6< ܒ_j75YISSTےtN's{%OɎSfW]@5mmZ%RkԀ\3"gV xŹz_f8&n=|iO-t)U){3#W*(D ~{zQ(;&#-UhHna"cP ֌S" !O܌i  ʞϡ`7fr{LheM 1v̔VkkĒ sV "˔:ޓz} \ͷ((yn^&(R}Rh.h%K8,#fbf"DBT {$^N ے_{m< Tϊ žZ,-m(<~ğ\I[ŽT Ozk W9lL)*CݤթKeaL[Oğ!/07|̼G71,RhX)*&<^Qtਲ਼p KK2YVay^^L"*TxEGP*zmhňr70q{|6qOƉ2&Y,I'* vD߆=Jp>_VvUkf#+V. jx*M]–\QӛB'YAuN\@Vkd%URG|WmE?E**gOOD=C$j_4 |O>Y9P8{]Oyi^Az<~cIF Bۇ LжRaI2h$rR-)iתZ4cQTtU=n7^jTP5h$'^iyhfOW n5m^L1!Ta}tK㈢)1آν[+È':FmS%m6o錪Vb+ ؃/j.G ]eAf +mT7Dceqw:;U>F}T&F'%?f,8xw)oEӬR ?'w4x{e0iY`[P@e~ڢB޴}|j²_@1F zx͆F9mBf܅RCЄޝrr9LRzٍr?|`7f.Yk$Ƥʞu Ph2Qu z9a3 ൾf_jpsrvp١2dh'gTkY]Ȍgc*wQ#{*.6 #%󈬗Ӂk"Rٛ{W-< Cr*~_d F;Ulo̯CVE$56dNk\TVbSs%ْ-722Og*G"lߒa1:~|`lu4=ֿ̉yr782n.&zz-~sIRBu.[k endstream endobj 796 0 obj << /Length1 1569 /Length2 7042 /Length3 0 /Length 8083 /Filter /FlateDecode >> stream xڍT}7Ht;$96dCAn%CB@ZJzsu}3&z}.Y[ X Epq5MxܼLLowA!"$j 5wO'$', s(=m5 fz9; ~~|œ.`7G ".H 92*@xzzr]07{)6N#<_).Rf88avO 0TqڂH}U + 8>nː#2ގP{# VFx!8@/"!@GI:$ "3+?8;B~ ̊P[y cO Bݛ:CaP߿OvP[_iغBU !``@WTHH~{x~90v9\v4v`/ - `BlPXG`?gdzd0[Țhr?B99_%*  m oTWteQjIYk2XZ6=h g o|K[oYF!@G_ <# Cn? utw_*Y=rιp>;•:ßYHG(Xwu xyG\=3n#[[Fnֿ*BA0_+/(< |j =n( T sܰ5V@ԂyiRFpd)8xl܀ 0l/X/fQ L _?T`dv#W@nnHGYϿo$0 ^Üބu\RyrmbuE'G "?uRz&gm[E>Bg,brΏw9+*y cw`Z[ £$]|ks4s㹛p.>P|N@NG}nJϸ6}J<@pc\G,ŕy|'5BUD>j#Ƀ$I9jpf9sD"+? ړj|hr IP[mf\$G;p־`cE980껖4a%MqYI|iϯt #vƋ7i"J&"ZNk#9w0K}iy1y cJC2hҙ߷Ԭ*x>ChĮ(SbKMEiR7`H07 hT,\6hkMbЇW!-i"AKt6\[&ڸcYu9Xh!$:6'|3 >[ɓihET4.Gƣ<(3HtjT4fo'z;YvTюlŠ M m$ц@,vMgW8|O6]-4j(&x2.*Q,ꋆe].p1ʍ`ׄ V_$-7g|CXz|KLVGͣ6_$CGgm޲;ϨB4[1LF&~(0Q<ָ߰o}XZSI# cpk^_ke)f&L`NȀ)ݑ> Ds૦UʵV\5 -bQ{B9s4/ (Uz.3%aCScLC]bX<÷Aw%D _m|R*O:B,B$˖T/Lĕo&5տXh=HOOͩ$6QR)-lRCO>m-GWoZƊ3wt$idGVR>s!VuHǙt!#6f(@PGW}lNuԴ#]¸y~y &|LЈG+:,jG=f9 K4R\„=>I.7Sd -Ң E"޺őla SLx”q |^FNX*8|:,\Kٛ~; c?^YъA)RlSy-IvBf\ ¹S|B:Ɏ'"=u駰ˏ̱['"fx+sX;uK,z )Zׅ5N}|/i7(ز'BrKХL ̄ɋ2" Q@ߨɁ!tYxn@1WFYr\#&Uq.V!iV`h7,,' "@ tcU^4Q`y_^DV7wEf_6=iEq IU])>nR(r&Ď,*m|BE_GFt0n7uΰ u+>RdRٻMڄ-?r*vHx e_۳8i8x2&[ChMiS.[wg@iEy4?Zsc>2¸b98/CJ/י]8k7=T"_\ԋwȺ8;n?D*{s{֎; s M?({BFR/%aуG@bam_b#(~d́S$&Ϳm˺'޾e%ӇhKψ@/ѰpU}s1B\}>Qam(N13\Z?GF`'" Ꞻq9|Dx!s1Q/zp4\CcL ։eVպ͎ԁoi11ɨ& FپmS8WT|qZ(+WӬ=nN2Mi7),@zuF~o&TLHk{E #7i10a!};P];RYb+4vq$d'q_vl{&=KFM,> fdi@?5H%L\[S?:ٵTp,5/>KCx0/%1ƕQؾݤa3`)?ɻ,Am?^/,o%[)4A$* B$4&Q*j-HG嬵Šr3P{q()t^7\\OEdjӃ﬎dJuIvhE H$[H*D(Rj?]\ҊGkތӭ]|҈CY8Zǎ|A)~F:+w֟q:~đuz](3Qs緎=\JiKi43T["I^ΎHg97ώ'F_H,\PKLˋR&]߆e xw SF*_._8&Kx_hS1J;PZ E}Q7-βldMw Fʐ8 ̄YRvx$ : sXዋ.IGw{  &oDn+UjnMbl冣5 )<ѷN &Rj> AZ:m4qlLYDؿ<u.\|Fl&(x^ZtR%۾UL&.}@IHb@9qftvfx_Cv kɿ!hG3N99!+DUvf4Z) W)Ϻ&EЬ~&wCtg0 \}}%fs1]N6?6Nz$!A5|ƒ%]B;2nwZs^puƚiѷC6zf#WQ9Hq1hN$1琏9{2 6 rtYY&vM^ݢ\qykCn|NyJQp8 "Pb]iz+Z9+,YƇm؍aQ1e&`M;rhw}T+1b],ζXC5SvAA=K, OO'hśvů?駥xt|V mIVb2@=;K0<]1) rSXXNFH{ynb$Ph} pL!<$zl{gk/ /V^F~@cBXfڄey{5[NdЍUl1~]IQ.xܱ㫎wMd$ocd "{+OT3%hUlP'}AdV=>KaO>LlAe*`x4gƉBDNJ4)sm(\I #PCgH8"zfҪ#5?{#&݃HO7 9˻} v6v.*(D1a }󕦘4G°G% #ANc*o4[QEcM LX~X֗<')xna~JtIاRXIF>礃/~RŐ>E.eX3q9Knvͫx{wyV3toWCDIty4Aj8l޷)9~p۾Wa/1y9>Fp)5ϩPY-SȤ(n}Jc1{iD2+x7ᬺo,*e_ k:@D6Uܵ;G14l}M2'ֈqC7}DR6v&Y)S%) gטuX+N9>zPLh<ŅseAQ15rڋaOZ[/끐rhKmU0^hEz˭+g?EyX]$ہ>rg;+gG7bh_}۷~4U⚜۲Z*D&~+dz 1fŧajgI-^>wӄ+d30m*HF5[x`[10?aXQc_R:ŭV`y#[-+# 6ϳgx'2*g_X&J{KuGmJ]'xlߵ]cKWE|~,-g#\gJh;F)9JG[t{3͐xu؏^jIoCYokTrL.fZk~Ҟ|_t<';nos>Cm}[2Tg*~D7Vꬉ,!f~J -;пc >d7x𶜁;C,xѷP /1;a"k-y&J q>QS9 Ӄ`%h=Hq~L&؈PR FF4\(6Ei?"5} ~q۫PIOص}~qZN@7lj$g6_?*ŤH|\õ¹w&EF% h(?3|qYV{V~aduTXyMcU{5Z54 V<9}K^kgº3W6iIZ?3q.S]&OctLr|b}63V"p0Ό39Yt`_7]V^6]R1i )&: 3 \0qi :brr"ۚKư|GUQ_j-o-ģ21nSN x @xoK$b@r`?s5;j"=zoxӕ^ Ⱥ0oP'VƮpTT@z6yEM*n%mS h; Cε.NZU1f| 8=&II^ ˦]M._|C{vQ{z[Ա*=[Vm y'\xs{p3BPˀ,h&9Z*:߽uXb?l#}}?kY=&:ۃdeדR1GkhI,]% ?cIąإ7;kv{r*$ؐ<-B+ruRBm^2ݔ1QB{B*ZkGK'xL=?Q&Z +iRfy9 N;XεR{.c\ 7"R"/JY(/)g^/: 2lv9g_/ur9N(}dl{,S7B_8{AU$NY tMכrHS`,ڇsEz('fpacG)N51碟WOΒ#/lxlVE؍ˡ3=E, ՝SkwJw,sshz(&?hETKB4ylW"l6^oHeŘ"6hՃ/B޶/=x3nꚼ'!*זWqcl'! x9i-g}DQ}OjIzj6TВ'{'I)LϜfAԆ)²CTSJ;C۹G݅&:*yW{KbQ^S/!zy Z2 Ą!ޅa\ Y;\1/XɊ->$H|͆&`3Lځ29 ,9ϥfFS30c,RA8\L<<Btլs QA>)os:9Z"BOL8-R"[N6v,đYXs/rW?nҜ"xe84,PX㝻/ endstream endobj 798 0 obj << /Length1 1400 /Length2 6059 /Length3 0 /Length 7015 /Filter /FlateDecode >> stream xڍtTk.(1( !!!ݍH C0tw#!%%*(% -(9kz}|M׀Oa UFQ| I88 a('_f"#( K$B(tPwwD%$A $w ) P{lZuFġpFQ6  rP$ ({3#0@@`PJpI٣P.@'?ٍP7(j vAO0 lQ`$68 P:nEj(O柀fO'!  laNP&? u ;!`0 l}s0@YNF  sA~A*F ܈~OBc٬# ` a|C AAQ8 zA쁿z@;~}].[4?#u{@(;;}" (5': sF/ ~M/()A< ' b۪ u9? /Zp%n;h#\9HA?;_U_ );9vsn34QhYh!wc)kAm`UCۡ)' c)ü60^ E~}qY Ъ8*nvAѢw_%8aK}"0 &I&("@ ?B$ѯ `74f#z DjqG"tϿzA!Dȃ0r|xщ&Q"(ΉUF\luc>e);x.M5Թ,`7$L| ^bmBo M%΀324FT\n6V "Ĝ,inh +p.Gl;;ۓՙ.tRhy%=:[n_r7=uRzș«;EsUcLL  g@ C, 3s[}q_G7 [HT0G V.Mj^k>VYH tq)ǺֹYX |ªVDqt`ZOOtWx\)C㵉*^gLۏpPZ7[ԲT:k} \rɝ7UBg^}ARa19RfdxG<d|_ەn֏ê[}YEl@_#AH; p2,pv3h6)ua>^jQm_T;kBL ڪO)hShz)% ͈ מݞOx[Dx@>ͼL.ttZO!p:DrӇ$Wq|3CȮ~4\sSz[#^FbIK(Zu0~Na0Ҝdu*yQ{^+39IzLR^/)JA}> @/=KA:zKs_GEdTwL oR}+']`~̓Ne5 :\yݛ>:&%Fx'+*B\HSTJ ֑fš{q$YES?UFI蔨lcIBdXP8a s~0YMgl+M(Ұ&ˎ-ݪy؋ƍIH/&p߫V >2:B5 6"qΙo3:_"jWќ 0*tkT?h7ϻyg븨sƛ-;lJ6YRڜ 8ԛ 2YȭH7RO[uܴ=l,Kk=a\.fSv~=ʕVO3rF&"ư| 5 ~Hs.;6Jӵ>a K wd顨JSxGWiv'ݵZƢJlI'"Ln\*%HtMK 墈qT#}T=Y+!)kƋф Yr< {+SN0l=:zyMzV A2J/b>ƂOQ}a!|4c=;]0~oF\z?ÉW&B&F.<ʼEZ8v1Qy#pʆu#Lm>i2o6إ[Y<.uSOM6[л4cPw]Q Qj!ʚYq1L!v0ZeDEM@h U^LRqޭ灂`<}#Fm6}ϵq$8 _Kqcn}M_#FК&;p(&I#xU2ƹ7.-6KRS~ޘhLAYh5V /Jۇ0Ws|%ց}ܳEf]νΨ;.y+>l/F1Idڙ6gPsG xD3SY[瘸.ߑ,3U=9ͨ;n=J\)"]JiHJ\m繀U!/Cw^=!)3 mqlPDmFs|1)6\e"nOfGo0 e xs-⨊ |dcy{ t;$} P[4 mb%ul JZQd=4 RI@mktj}[8Y/RNoo (7b$s<:-q L8jE>/EZ4ۦbE"] Tfy ޽ (l=/ߠvzC]BǢxG3" Ӻ7GbjL_*d$<#[L$)äc ,e7L$vL :WZ[Ս9Kv,}R~u|XZk,wv-f% }k`Q?=9u1"Ԃ"?y(aCOܬ2v@6nwD$%#Jjs,HP}ц-]1Z?t 1˂J#tqSބĪbZ?'Q169_}14o[(J.x6)‡L VO-z%YpU"|p)i6G7OL樿M=x\%ǩֈuƷB1]LVZ;6A3aϾ{;|:dWobt%Uid޺qH00s96_X!Gv̀L $UGػZ .0ʾS>cso>nyM)xu2<%?eבRߩH;%5i OAͩ?7XW|[6ތ M<̬kX~Our6H]>}g NCT1%xa G6'}*JUc_s'jLU~aJ5Xin1D5E҈H"g\ 2)-j^myE^~[NInٟgN0V6\7z})nXa.aVIGMĶZcV ^Ӝ)L'Qӂ 96{ @%DVZSkk 7?]AcNLiSOdMrT=ì򍗋iZv5s>F˔R,dM/ou 7VbDB8?֗գm\|Ku!R42NZ=f%i6:3b组{[ ҷD;kIREP驓GPL^/'I7]mb*m \LJe圦Ԗ@ݎ+Ne?S'd{?8#b٦/{ߢʳO͐5-k';G} RXpQӆMe,? f lZ/%>h2Yؐ dSP?7kqJ첕NCQҒNg٣ly,]8t:? oF^31eXpHucx+"D_H5i،LIi?WW:5X1(*xZRӞ|VAUjr?s U9'QI<}X::Dh'V_5 |fD(ܲa57;bA$0M^v^VWz,g{i<:e|irFgV'Xbu!7Lg:HR2\$3A& >[mHjm8R\!s"Oc۝ol2C`!fwsduK֝Q_rV8Uu|>*Ͽ~AMu-5ͧR2Їq"}!7=Fn~ڰN.Y.-+kag]?QQ0"QRxEU@0PxjUɡG^6ʔt33#gpH#<Ƹ1|J Bd{cA>!f{PHU<]g"c˟vM|J{)#+BԼdo KƾQg'Bef G?#īy:jI!&їC~@ƺk'ǞELڮ9*s'n\&tUJ卑W3n^3ƥeyO1/pSFG0#EdW{[ar/rC!s'?NBܥ~gDR&%Ǭ#>z#OVyb<[EFzz1x8m'ΗhE=WњF[9R{ Jpte(tk2RNBߐA|ůl2' ÿS*S]'ERĔK &}Q>TPD7 I;sWS}əS[Yl 8,JLCIxDL4$FV.fӝMnwz&4oc(n߶o>/_ Xp)c ؒ[x&IdfKfxp[ɂ7CeR"J|8,K> stream xڍTXSZSRA mlCnA$D@ZAE A;|sk=_~caUD`Du]cK9(!Sp3!-@ aq[ ,.Nh{b1iy1y  Dn2W£IO=R?szxTHR%Es^@3,3{t-^CGlM=xLm Oaz9{GWRxsyFҷJKfD +y3:{NaYYf,I὜A8z%Z_zQJҞZ+xϗc\ 6j&Zh8f+P].\YeNdR<*,<Ygu&NslM%_Ԟ" a#/Wk#Zk|s}K; xKV+p S)n4*~'A51i RIu2%ޡiq&& t\Sj**I׶kǓI;:|t|7}N<&X)nTwAmZƚ=b/2W؊EU)CSI5Kւ'{F:zBFS)>V8u}ڬ_kͽ!.K B0&f6A{&YF!u^§⼓c U<7}{; 1H6P 5jVf߈j/L5{!UÎD97r\*+C/IE~A XhBsvK7WHuT#,m.#t"&z<^(;F|,7t6uD# >3%X|]H"V=䚥(>Z,\_fq١Bm՗S7G$;}OI0ynpp8]gy5M1|8 r y-1֑1=/M&'jM /3iQW4VC7L6ωE~<~KSrivc^[}zǥRrbVA{KwȔ}s2ح]$*ֳͻ/,>>H'srʴRTVd*>u42i*ol(D IH<6dܣc3cAڤ9qT ^2WOY<6ʲ&dE/r'M(-Ryz}Ojo]鍻^HĜ׼fۛfl.jdܹ8;E Kʔh/aԞ(n-r VVϟJ3 $2fcy Mξ.48~vOWZ)Z3;lY1kjV()UB,@5&W⇗4+ \P+tꎑk$!mW*b<+f#OY~ J=wyk]%Mn3s̀EKi쨢[ZDfO\?SQtUvLG1hЖ-_@,ܧs]jևE۰[mM*ˋi5cշi  M94y<)W^?bߧDm(Bsا#kTs?^/400WޅHd!N2ӗJX.!f~C| ZTt PU>۽8TH(\G<:gewA&WY>[it֫OA͞9lՄuS?Judru%4cTn1"~`&W7u3%u21n'xL"4]qNLsSGamZp=k/oO%^ٶz:K:-xrBE)kwhnwZ>3p_#ȝoqEH !.n*Eo՞ֲQ(ѨigQÄe.x]Ug"fݒvx"zj%t]_R dd&/eiz+qp2QMU}.I++iv?cn 8hݔK,!蹥Y zr113'@t>a6(O/!Y V UUt 4pW y܃s<\&giاWfm* d%%F8(r_HO';O ~8"9c\{SwꭠDr,볗1Qڊyh\fȖGhQ<C&Nɪ *S6R \g#RLp8F+Pz#@KZzH!}ҏ4ING^X0t`OE>޼ sHړX*cZ2vH3f;؈{1*_q n-;;7Z d)g*~`fK mdE T/HϖNvrP&6Hkq=Ռe׿'e|f`ĝaYq9ɥ5t5%nMMm=\G#ŷ?ѽ!@TP5i,zJB`MFE},Whꋗ#|_|F4 UnǓ4H'~6Q!I:r|LIՋĂ2'I $֐pG^[Ӏ Fi®+]JTZO1Irg_SZZ&[_H֍8mo8G0l*!|԰=,"؞{l| W5lW2#!iR;-%k0Osf.ܜ.v@-w]]d%Q<ꅻM}kþƋLQ |ju^7THC+*S8}:qwȈi/7s؏ˌcJb AĚzviK>U&S@XxX=az C_pRf[3r;#R{hb*e) HI;UNZ3n@NW}ֳT;JFޘ H>R\]P91RQRpI:ޝZ`$0BY(r:v ڽI_J{;t+~w. y^g {$ouo/S=U ]sԨ^:{#eLAp SajZіB U62/K| &o#Ib(t맫O?1/`򣦆lRg4T *ևǐzF1dgTLMgQCyl(\:*hʹ$w2jp'(.[M*f)9 ??HE2g }JQ1B]A[,S3Yϼ,^UkWuֿb&$նga9{|x2pw-w{m0h]HcT$_Mmx-@rcC2{U^̛N6>05CfmzU%nЉij":C/ywy,@;!$sTV^9HͳN\fx'Ao76zoBO$pJI"MwzִJI Tӥ }kٙ\kO\C:u,R&/=1o7ċD56ίwroq8^qɎ0 XتIbJ<(,hŹmMD_UKӴ#U+QY}|ҍ̳",EuZG *tʹ}ލ0;tPzuYO?ը oä$7&b1 endstream endobj 802 0 obj << /Length1 1612 /Length2 17629 /Length3 0 /Length 18471 /Filter /FlateDecode >> stream xڬUPݲ%pwݽpgNCCz߻OǾ}_̜#GșDIA(ao P5vucP9((DF.vbF.@^ 4Xxxx(N.ju ::07-?܀6@;U@`fi**iI+H%@; @ gis6>LL-)͙/34{ atEp:Z:;X:̝\`igbjv3rpaL7ĿyX`o7 bdi pz0tv1/h:[ڙz/?:[F6mhc7vpL =vSWs:A _Fv6Sߔ;DoEyo{Oh W#ۿarv+p?5&#bvafdYhdbb03۩LN6vfYXXzvIH$ /&G;_QJwQtK"oo`{@V6.߄,,la@o,*0v&̊_&NNU׋[/Moe;A ~)bFՂ6' ew(©v6''dn?0LRb1;P@j O(Fo {rba)OI\< M>!_ݸwP*ϒZ|G\! p(gs\~b ^hk`\=6Rpl7;amCg4sx{D5,Ep ܴJ𞻶EVøKd-*|{']X6!Y۸ӝG[6`N6TKwZƣMOKNKhom27  Ð#?1P`Ϟ[#t9 .'ШSȹm)^w' )'CW#~KҦ0 XL\6!X:g]!8+QKe?Ty=`ϞT <Դ!,&(XY['I $˦bpmnؚOɶ(EO;@ ,MqppDul0/! }-^SBt@1}'B3MkDl-U 7*ӡ)eMÇDA{(F4Ҏ@ UW%2ӓ1)O)"rSN8A {_h_iH}*ZC}MJ쁕fl cU@|)B0̷;1dFR(G2R#aniL`ghj"^9/e~DuOcѯE7=qb%NʍAHRrɤe-, eX Sr=K)i)|&kR t|1|zs(~K ɯ"Ϣ/,\r ]={tKrYpywaVɣX$L$Z?սd:3Ê 2껺ŒB?r6hߑsldA5 ]Z*y%ֵ.$rG2}>SLBRg1å4H^ z*tn l)/V L:.u2<J/j^)btTKH#8]N`xu &Ug^,^=1P8}>U< G| Ðc5yKGszO3]ʋ su9`5^Uwq4Pq}]}w&A ؙτu>\#EHtL[t5kb);ו9Q}" HS*fvOc^YL!YlS1>y66Hd{4&GBhW))@i|Gdd#%{p4Bb,D~m@զXUB>CKJ4`ԐBɶ[f } 0p@mn#jݼ ϝc`^@:/(SR{N`h8/[s~!/1P֞u횶mMϥEd[U4"֘$7 oП]fi _ymv n4RR|H(n],wۣ$@( Ev4薵0ż^j*>sM#u"MNLru\~ sqfqhMZYuL@E[Ą֟fIc}İEOhR̬gpcCz _:G݄(Ѣ ]3 `G.}ЮDJ &%RFE˺< kFtQApPu\с; sqkۜS nNVl5|6mYV* -W9}eEL4=Q9#͐*J-u! Pq_pv6CDoDVuP=ndzr¹_CW'ܙ:-LO$q?s5L8kYZ,`/Gmk6բ^`jB4DJQKذqd< !qk*Mu@+a#֊M>s;=Ky3!(h$L35]VK̫1<ՒXxt0 4 >-+6|X֣=̭*%RNSl ϋ< =}\k-kns&SԂ<ΆVt94hr'jVb <ڣJj*8֦8G؁x^sVw8:+ӝ.W$W ݨ>S$}`N 7{M[ˤԨF0lq1JSnnH͏o.xubwdjDl~U^*q>Kp|nQtܯ;.,+%li/ oϲT$Kqt͝J[JQ"Eg=_GU8],LH,tzyy̏P &`7?0:ɗKs1*f{{J\.>_m{5PswiߚϏ |?N@N@n[L)E&7w]HU^EU|hh@)6pV2#&=Dz}?o`١AB@,bC! wdGـ7̀ E`)6-qZ@|dU;zH~ɻtܨ]!f`Z$ )8,Wȍ${ 2{길ik:-&k*Rt ^u/ti?w~Yx)~\teepNё~\l5EVXA4Г"1~O=ropx!׬#ne%nYB%U~*T ;wBH.㒇Uf6>9,h3/W60ـn!ԒUq cӺ&ɖςD,FrȽ[\xU?ـy/=Z{-:}hizvg9E!I >} 4YIJy.O2brG!K9 ʑB녷TJ9Ҕ"}6 ]DP lm8]2b޴NH@ju, HUL ed vMfj V&=pCA8BH]Ŋ"bgҬ ipT>>􀃌[ʥ!PSSz%DIBgpnƓq2eЩ'czks1k1Vm 6bI2tŵ'P r(euNp $iX!p); s]+هl \ {Q Ћgt8$!yD8eV~8uJvד%CoC Nw0-Lku4`v@=Qz O-a鲒 -)ݬAC>e tnΦ#ȼFB˷9Gd vT1zCuxM#hiKs~PUۜ MWаMbkbxBxd:鬎ԛ4=dz<1T(̡#cHtAy :`%H &[^ؕzo3)X$4tyW{Bnf7%T0Fpo{.G B-Qn. K}x qPr N*bLdOzQ=" 9E)]|Zu_NP|Kg:jBx?{y\8n,]9"pW2O0B. JR Vi6ult_LxtO!k|'ůWDpiCT3t7;YtJu܇% -B~<*Vބ=Mm,' +cG(?{$cYN& _䯈DOF;'m>[u%3;[AT7-){OL8<|MO1+%wRfW%.V.Oes?mW ǃD*-yt4k\)x6wY囯 ٔ<W#%姀ekqB F_`_w%?Źt&q;rɑi@I-/e:8AqIƑPi -I׼;"/T\xۆ\vcsrz~H§׸3<'υB'͒G6~ݸ5eƁWXxhyP%ݺalos;/mDl;X͆*]S9yV:wGGS!Vz[Bnd*JEۀ{Ww1vZ5U &T0G0.Э5y4KZ`0= $B\ԎQuӪ *0u̾#WSj@r1 Ut֗otD3]e7PPSMGb - pDr~t1G{GH'bԆi? "49,:9 쨡3bߐʔz p;ʏl?}hm A%I^wySL}时;;^7poX, dpqҸF%F4 k) \˫P:}ړ'H;uvǜ7m51߇͊d9Z@ Y_@vu3{ǩnp7g9ˉ h&Gҩ wiNg* _S/~rOY8 k $A!G+^o蜼v%H[6Y~w Pq` Opo=.t]ͫ?΅ #$eySBA\ =3|ԵOJ$Z}CB xS^{)9a2K7c9S@ﶂ`0Fk*vx2"v8k. ,ylsu¨Uwsׇ\JgNnTij!Cv䵔iWߎ8Ɍ__Tn$IPHV]C>>BWICCsЕy6ԥ*/XTUov KJSFfb1}1fjӉwUcrUbOڞ}^Xe@xOf/2H|nDpũ mU6b0 @9_]t9?gŵ5˴+)i䅯 fh25^+'7[dnP;K?9o : ݰ7\Um#!D̪!餭 A hM]:X-oɶ3Nd.ir `"EhDMsO5P %'jxX|E{F"'5O> X.ΒbcW~\jGNU@]^`f SkܢNrAURԠ'ʢΣ6Us",DrH-Ɣ@i X/,p" G`Ro{I]T]wwI `qTP> *7LոDytu8T^w{Yz"jNKHZA]l*; ,/t{YhQ*ӳT9foۛ !Ga} 8pDpo]]Q +$p"QR̛^84O?FޒKcΊ*$ 礕W~IkJ#!{Z/8ٴ #Ѷ*1_3:] 3*SMt*R SW/ѶۘS8Ր6G~LK0 n#n0%Sϼ㍮ @D!%3;ӑ$(U|T!O6a1q eG$\5J.~!` PyߨŽ$MIi 0̉KG qU#pK16 ٭i^V,<"-*BW"~? )(΃⓳BdqMlZC 7o#Aϲ~Epto3B/Cs [7?0 ӽ8qGE`^obaN=[S.5_MOfPOOAФAϠ:@YFLFKIp_p` 'Ki|N7fUQfh1dK0 *?\=ªB@m<;0v>~,!ٛ \LK&qb~5W $@of1D-x{\*"nTϥJ]>OV{%mO51ZwM1d%e:Dѐb2([+ GJ_|*8yX0ࢂ<ї8$ 汴]h?ςE6rotӕje~ej[RN6@NXإT~k-C"^IqaUmh@2FI?-#K9MY{ [ R"#jHim ¶IM;# U'aw[@gpF?L GE{ord;PWO!vl"p39̨>+~Ɋ̈ö}rHh-WɎAoy:ޙ,tfM(y\e^&X /IL3Z>ёF:IH\xt1h7cb*qCc5Ve C R|$%y'6p6 >vL(gX (bxfEG胬lDž9rL`BտQƬl5ۿ[^/ -voƈu(| =- ,?w+y%⣙񅸮s(mK.KUp!lgӈ$yC\ l74:ǥ=Chr-wk& B%Jò@ mavF}(`ss%;d:=Ooh" v8J4 [6+SE}Ex?jsk\F38[UI8\Eԫ eFwdpxȵv ӶP !+J/[94|iX C5yh¼$lr69rz a345/;_Y s/Ђ=P y@cJKZS@}􍘂ܶiGGA6$$Yj%Z[l*U~>/ԫ%7RMqat$^ x nÙ>FLRCldZw{ V qNߜR6$e 1Jv,uGF,pJŃf$E|!+ԅط-ƾI{In^ ,n>Ԍ&qΊGϡ|2ZXӂƖ3obR۸YXP=?sRa)QPQ+);ђYπGPB)(S%Fw0)ʊJdq|UtLEj8'n6͖ ԓ?xֿ}]Y2kWP`=z6V-$GvoY"Ac">Z\kKmp|Bz 4&`timvU7Eͱ/OY$R'4 #-WLV~CK0ŪbE^|NY;EP&_y*B} )ug7Δ_(2S jXs܉J/= TpYO4LyD'N*w2zKؾr0GU# #m*T6̔~2 U[S7ey=ls3P 9:HlNB N>-!<[hdxq{Dnhq}mE$䕕4&[p(3ݕL&O5 HC baՅI[LC_2 &}(<CZw= mC!bxT\8 ڸyĆf涫~^o_Gƕ2@E؆kӠ*Lrp,}ÁoG5MSY& \@M+Qr ʘAn`t,]B|x=h3FLVm| 䅛h.7?M?>9~A- T[k ioYegpq~VHJWp~)Y\œSI:ڄ\9=bL$ f2gŅIN]Rq(4hR?-fʞ(|hsh^W,B+O^]R=;>}S>J:R^X#>b!^_bnl]K'%(v]WS`xt&.Ź9:UjYmv|} epPeEjkVh\߮6ιC6y- K5`Ryg9.IOݷ)%̑ȋU86˞ )$S۱߃f0Tci E5ɹ@L:D`.ͅ`'>yyHX48V#cʣS!igYj+{T0Ƒ1oCkwo6^'4J}m?g 6mYSI иmh1R XgBq#KJɦ/1<ъģ/q,y$?[FFxUc!DsS'p_`E+ ߩ,l~Jh.t4=b,FSq2Q^3gϊ+UY:;vpG21J/usZX"i"^yq&G#L-c:b:Kdžz);~%/#X =]60uX>6M _b*K68wu,mF!'a4w?B. M۩C#g,e0C1(q#-[_bJkO6 ,t,T.!^3x*e L{ڥjMTbR\:j. jdyIi 3DHgO~ٗ?Lxђ@ZF 2ɁWݟu[\[&n-:l:{PE6k"轂Ҩp$U%|@*UTŦErB4}b*YߠD(6!P, YzsS ŋ #T7ԎJ<~gKC1[QC>C3IS?miY?-0 XG MiwrN9%]8d$ւ3e9tw<~UA Q4v- 5Ye^o#h\=mY4=`ś@G+I~Ӕ;V-P 4yҊi<p)fO\@Q&Kg;Qg2+/bo_?w%^4P#Wݝ^ŭwµ{#A}8鉙C/, u xZ(C>>\ B[9,k_,sT!/Y#r(eeuI5sA#D u6P;Tp\-:B r}27ٚ,Kͧ=ioa[k a}G2ʈq 4LK\Zt{]f GQ\5IJT;)n 5]Uk['nv8Gra{u81X;i"\/8m@G[& ]2U@#F4xH&Ǖ$;* ..P!/r= }pB҆ =8?iT"qoTs* pC.^i_vnt8"dPEr=\g mpRs{úXI tz|NL]c5BT$ }T2"7LaM 6ަ%%UP{`IlR<1R(+Ty,wzNE+%0!⧅`,E}3Y5l7Z"A7IIs'aNNr 'MAetG% u> JPˠZ@m8"$VVN{N{NW$C[f8nJ;V7qE[$b::sUw5/_X֕A5fR+96T@=$AZGl U$Pw(^'`#$g!W% 2QwH5Дw 7CT zGj:?G37*T Y I9YDXEg}w21y(1Ͳ_NvmMM"MЇl ꫋u֪i0d3׮w}ok}KKpBUbLґykH]f"s-;CD$rпpy=p \9U $,# 0,c"E2g2yzHp7)X)FoM˜O^[sp9@"D/,SY@ SUt{YE(%y\"$}].W_R*_YiqxP 37/S+RJ 79qI>@.A ©jml/>P/๲{:}D{7Ản!Oluy<ߋ|'2+ rLSu#TeZCx\f%2A*TDoAzyO=l ;Mw"9.l퓎GG|ʚl* h1f7=-=%{iJS3k-)秵ṷ$Z4kh^Lp)4OTL *[5h0e.",+X`iH`qwU/5d ^R6 QMnsڔԠBz$0i8lѰgKuF&5)ƝK(ug endstream endobj 804 0 obj << /Length1 1608 /Length2 10459 /Length3 0 /Length 11282 /Filter /FlateDecode >> stream xڭyeTݒ5.!nqwK= ,Hpx;wͯ:vծsz4ށrl\5AMx5IC@W , 2` 77KHH XYu4XXXe+`ONldvp}o`% V0PT0ʫ`(fn@,.`&#`4Ww. ly;b8w`:qsEn7!'kL qrfՐOWk_] nk$¼z]+\`dz M`/( ف]\^a^οNNv^v;?9@\]vh\ܯ9-\_s[A8EKG? 7п0 %kJLe;$?D9rnvvj@xa\*/ho=P+ ^d"4 Kk8P;U˿`75᯦ ;<7`(W]^G\!% ap 6No UP'hNK_+up5'Z@h/ߧr0lh!lZC=8.c?T\]_)%|S:aRkp7CW24̏'}n i1F^9 C~NݭEHm/%IZϸ߂;FXF;<' xJ9n% t|H17R )x+ߠ( /]VG~TGt2wT+*ytV߷ϪYg|&z%d-ݰ Pt.MKIo>h|O<|W_^khN9e\?9/YU6}. mlfK6g р =]=|ꙉ74Rmfv(~kYέطȊsoĴwhxTp2 (8.$ m͑.^ [r-Shjfǚ&鶯'd }4k!Uuسߨ!d׊֙+&ה@Jn`~e~(ȱ?nU_A6(nV\&#ʚlA 䆵ZξO+â17E*ʻ9YxC=4 XYJq! 5A܉ZOQ~F_ 1#)*!vG N҅KxLqyyxl@)acc7;WxǿKE K%NV>V; |Gf;lV /qOW@UF!#rW岕}_ɹ_Pe?mxtW&/-!N7%G7Yߺ]vf{p[O7b7V(y6|Jt<+uQM~|2^;h߈ M8ͱut:g.U80dx}Iv!iYWcpL1 yah3:&zg%Ku_ BA?Kk]%]~EjuSybZRBcZv*KZy xu!ž꣔MKO 5|h;c=5EE, `u7AjK]Jr@pI2`0@lL2Y"Qz)hNA}!wqHe΍ ɝrUԲjw׊mac*hQJ#J}}> J[/Z EřUp8HteZf 곚-[CǹoA8/FHcֆI_cKhL_$Y셌,ݦm73IxՕk -qwP E ۵eSҤa͸8w3WWw`rs'g/X{ Y~ &)gkn}#LٹH"0WGF)X]l$H-ʼFD?ƌ/Zxl^?R>=?8ZNZ߼9.;|GFmӳz>њ#[RP ?<FB q̹d0_qͣ> YgzD p=z?4L2L4ӏ5Iņ~~߯|QF$R4O v w0].|_wٌ}B9>cTY`T9dPry/qۂSN .-dA[nRxF+y2Ӹaޣ}ށ@*s n߾R~T{qg94.1#|/)`o–@>#ː-v4giØaqh*ؔXf8$ogkKgw"إG&Jik0ޑ =z=ܕboņ#I ebx<Qt)~ަPq=k#v2Ev2ً!n0P2<`&9J@Z@BBRz] cDX|p.`)AI8 <̲|Dկ3速_FwϘ j*DkcMݤqol^'C#rH_!3@N5UHۃp5~oe}qxI=6oXq#PՉB@ш ;'Y֬~aSSH4@V]\$)-^G#*M۴xi65wWFHbF5x|ZYN=Rx"rF@SM(RlJ7;^2ms΋zXn$>?u"QA#azA9*谋8* e%5D[m-k.s2颒j@/ðД-eF'Y&i]g^s?Fp,6<`ˏ/fw CM3sㅡBԘlst=Jūtg!w)N~8k` bEjfqU阧F #OI)9GzI?lj)+^ W&o%K/HW?^𷶍P C5-vnU_{W)Bc1eX{ kULㅔII_t/W.&M d?7\76̔[[9N<,I  I2c,ǚ2[7.!{{Qګz:7>/1VMdA.~wSogl!oRxGu>EG%kc?Vv>MNJq0P9 ^uG1^aE?LpsO=ڟ^9C`l8㝹1JNu :M?|o>1QG: oGAE.)c@Vt.R1Cvh]RT6*o9pj:IJvml0%#˓H4&/r9::<Ј~qnMcin PwZs EehMEF̹Fzw @\Ifi+ف5c$d$pܺ,F oifخPHuΪgaW ס!@~6EX DQ7F% {W.ƨ'>@J^o_9ѮiE{ ?!P(\S)l>7yz34]!9RY/R`lDW !XS|MZ- V>؟h*15('&` hg_>giDW jMGa E*; }6亊gE7̣Ktps;PVFT,hQ/E4`rStr!=RH8_qVkpC=.&l" nK1Էb\bG,:aFI(NqXV }F=XL$81pnn|ЗU 1?cȋ|pLИ2^mU##v j9bk./TP˸.y=s`6.g%;@-.b;D.ժ_RlR0bVD gsg?`0%g &/;?x7caO5nxs=.xdBN~N 7hvpvO0;ik_Zb ch嘩vMT7o]lS^Rŭ.Kmt0gh o+)'_iK'/ur19E ؗZkY4Bc6+9+(hs+~uI~)EƼ[D1#?_{ߌbO^tJDń} ocSJJ u6 b2o7fM`4X_RdqTʄEz;zoS[7tiQ;T}pp08tVĆr쟜&V~cJ~_X]BYBDP7CAS">3켤6 xC!EcEıF^R^E"͐u6!p^Hh5<^?hZ2I d q*kN_ \>ӱ-x2n[)A_7]gFpX';sV36?e 4 ހ݅kfKU_L/IsQ8y$:4;b 2"cL~j,):LR閱Ha,\TwHk&-,UX#=PV26vE'\\0;0 _&0aZUwqYWP :d?/K_֬6;觳Fm!Fivsw4\܄}F1RC@boɔx73qֵ7W}0ZG^5DF`+,qr m-7Ԩ,ui}oتa;i"\|lĤwzʈ ?JH3noh2scU'Q|22x_p6 :Ֆ-,OB6>WLu{֊զdW:tەH2Euʴh-FyU ɻI]U*B*4+y$-4OXF X)cw6XZ`~-J~dB/EhiHϯo bBI6|601Yo9o+?q*1i0Vftuv]f MWWz79-XY7=K1`ϖ {3֑-M';En^dQƌѓ. ql3ַ^Vi(8B"Ȧ,HR .VJqBLbF:ǑL&,nr]cJ vik fd$5^ljsQ:U޹qī~R@D䘨#Y3tn|M?SQIؒUlN)=œk5V˴1k`uoB9=yպbLuGqur"cȦ0gaKXM-0 0lGbhxXuy-=p!-w!>).KndSGCbDJyIPxlu_,yɞ@9HXX9_e֫zi :/TٸKyIj'gb`bZM V풄Oݬ!$cH8Bs6ɛcL$ Rb>/z kSq4;C RnXjnztCweCv\sߝ{R\d&>vn~ʲTN DL leoʞл<_ mtX0&獓0d|"ApFJ, |x"!+֦"Q:c(*r BiS"E݂ ܯb[)Zv4i`B]36Z$oUnN7OM{'*;iMY/j8HLsPI |zW!eޠҗB D><)@ hfnp>ECzV,CdAC *SM( vQ}\IqK^yiHp^z]1LJP6r:B >y~?^c<c XAb7R76U@L\39SB}njOOQ`"ڏ3SѪoa䰦|qÏ 2MMNoc:5z%X#sJ_,VL!K}p ԢA|F@!w6nL 8͕7ŏuhV6"* |վ 383U0'+tO\`H(gFd 쳧_G(<$f8G3|,`& L ޒȋUFy[j,b8Gk.d"MDqV @OJ%UEٸ1,'y,ٲr^Wd+omDF10PQlWy[w/K`4RjV O:7m8u_q WZɕmD jo rHZ'.h^z64γٰy]sVByN2BCk#5$_`}LS֫j~BsIU@,+gύEft)|h7m{Q(҅n9NJDec,qWږ>S"A#BgQ%T6U֨Lz]+S繹:M;qbrշsh&Wڋ Gr h[kul!Gz|#S|4ӥÃldi9&XThs({ +gE0a6.$Sd31 g1׃vL_j ˱=|ҧ=oNCwMA WV5J Wr4MM\(n*f>p~.E9!Gv[kKa4JWd,]͚-_t*-- > l bbw30Fs?=D?8Z0JrY^`+G(9{s۹-ڝ}/4m˭2>^~SjfP$m-n^eT"ky4)B=YfU^|bͧKU5s%dQ(bF?X/N)(cpvZK,ʆq#Axz;:??~J3$l OETg0ELA͹)ӊZg0^m<_yl"SRH1brK6r-0>Fg[dGMcTg#E%?c^/p59 5ޝc4yaDJnQvodѻzI+5DdԺܛ<D֌V"E1!B|okA twV* %uefk@Okg I! ;iubIfhA8 1Ti݋詽DkUWFYШo`8O g#OrC_V ir]CQgդcqo!u.\Ac1׋I *2[WDW{ >Q<[ [oaMҸd y<#SWXڛcF)uE!]s 2iC!Q-b&̱ǼR<oL Gè,il8>=)(:/X'RS(<_ tW)+:;HS&CbjD|hUÑgb3*W6cB)( 9T~RbQY ŅG>lOfUԋmꧡ@ QH) z+J8c6dQUCn y[($ش\\uCc1i>A+>Xd}%7[}W]bJ2X&cO)3 WFM0' N;MtP.R1a>^Luqs>|]H^\? endstream endobj 806 0 obj << /Length1 1166 /Length2 11789 /Length3 0 /Length 12567 /Filter /FlateDecode >> stream xuzeT\[-wKnR =;!9FkO{1BUEb]Y8X s7 3": 1CCH8\A^ d dp pYs3,Pu9@@W=X9n :ltX쿫$ ^ kW~~~?$d Y!UB:iXU+3)K_m\]̀0V+V0ЕOR`K _ \L 3fx} -͑M rrI?1k+t=-l* 6[8BVf.@?puv!sp,Ascw?0{%3Wg'_+?j {;\`ӖV`%.7Sdό:oN)19;7ۘ?+C\A@c5.?kH ?K{3 7s{/7gs5Y%E TZ.T q$X8x8ӴY؁..o R` %l pJ3gnϽO@'yyb1Ķ6Z؃eoW͍=^eb[,IQJ%8b<;XqBF * ^"Ob#!Hv$5({AQvG#,1 }?8tR'&+˫@R9\`|"k&?7)n"8H'xzSсm:/0&Z{iNWAsɦCA ;50*x /Iя)X12zH&OTƻ26]MF[ݽp#jFXԦ^@qԤc~m2%4 74Z=j[%:z,qfUjTB)Hq1nq=qU 8̭'W Mi"| XV#qHV)z#=v< +֓]8?TDVq⬚衪@*DԂ2AXԖ kc,|+7VXǗ" ʝ{X= a&EF#aYP ._>nڎe=&Hr,P3 +>JKO`,s>vϞ^-!J*oD8+,IXJKleۏgQ́)dث gELZ:`kI^4K$7/$~yRZ >k֮3/\sL,ffP& K~:-7/ᑣW"6y ᆊ3pDI+9oR}Dh"jg*u=$=XI03-7%[3,t~ FS]ݙ0SnbZSl]Y.<5z6O K֤?P]LQIʵJX^(W?WtwT0}4O5XE3ȳwɋ+U2Pp_>%ҫ"_-vLp.^Ϟ˸9ZlF}*n;JwWo*xIhޢ/YGa\wMe$BU܉g92b#`DlÄW ?Y"z✟jU_On㰐19a^]Zg+w2S?Vw1rxc6^_-mﲄ転8SF!8}sTX.b9ZvnKkt\֝s2 k=ۗI"6CUHX ˊn3Sۥv0NDm zSelc5-|H^_DGC KsYNqY3Td!*SopSE}>' ͏pCG4|aG{vvQM0"W2D:!dǘUK։C*4FOM;3>{ G [F/U7da;rg(Pnhʘۈӝ֓ l?p1F:+JӍwjBPno/6IRM2 w;ބ_!xcR~*1v[iJ;rqYx힖Piq%&Cwc)Zhg฼%]\43#.f(m/ahJD1Bp`,hݫwQ?r-ְAC,Y[ A"[2Kov,>חcw$:ONtB\ټ\*9$fڒh8Kj @WU#Pm0M0whfU yB*ۼkkFmN)n/XT)ד&-SwЙ/IHP=u eJ}cwE^8}-NXDkmuAZi79XrY?*g EpIph+횻jm'$:f 5obUuUB"LMdT%N&;j]E/t8h|__Ts^)f%2ђt T:|FNtj!2oʇwϞf\ 8^mz#xGPx'b`ւ'j4I}`N2.Ua<{?.q| y zb}^ vjk-qV:Ȫ&91xZ_{_XqV3[78QKv-KM 2Ҿ,dZM|ǵKo,ONdG-5:p=޲y&ٖpE7`W7I5S* \cVb g\N8]1]'W\Gtce͍i]l=$Ğjγ`dzXJt"zx\q/X*tlhBd Α4KLlkM==3mu%[,0Žbb~5tsq 1(k;yt -.$ ~'[AӇ<tK$3*L"jeYB:;QB8"[z%Jkm^088by}@8`\T|qS Gx|Wo>f#̛+b/4=9EZ6s>?j5ljl]lZz=~/OMYkd8퓜ApypL?T-O|$TGhHvadtH!MQUv&\.4 u2aK%HsHG_I$J..xfdvBڔJT}-ܠS5Ą.Ss*I V5l_Q j8G~׵@yXW#Qλ ?zu{bc&1÷[#;N?~}x#^%(ӫCQَ>}O5K" ?)蹭rN*m:VGT4TzC'5 /zmWtXHrrC+}5\7q˜=k{iPYQP3KE FQɺ5uh=[ V,~ng3?}ezLNl. jG퀩FF1[ >2p[' U겑.W0+EܦZhCug1aӗ?+*YD|} z?R]wCs,[2.iWPr2gϛMUmpjIX>=:ѿYVY^xs 1i~ă)vҮ)†96ә9nd\gC_}DD1ZH~(a<8:O'0`@oRƻxqh j# ͉)*=^.#s]*Z^44#_<]kA2,C 6b_"\@T`F"3ԁĐv]7eoŎ].O{­~h-+0m^x*9w&$鐁rWJ{vڊ94N%t"ܟ7O!Oh9uǩaA[8*4\M=T{9^|G΀[ 0rLGVV-L j/CcI_!kj2 5q@iDW] hxخ6>%x|={2gFSxmO]e)g3+{@'cx&txqpnB%֢9ãsї]4:ph\=~ 2\Si 9>#GW5g-h,覽r6zcbcVEo%4^̺g #(*K5Y˝}{}sP7![gAZ7 9Ivf)OzhtD:| 7/eVK~cOA"8p#}4t>_%{買:aӺb_D=-t˗g.aNL|{[ƚ1%(S @&~jpiX"I&9Q!a֮(Pg uީ>r5<_ůĹ&VGa7]vjWJ'©k.Ix]Qذ0m'h&n漕 e-%9:D 2EM_cv50a w-;h(>A Xώ_Mm KEin70JThuC#EJ }/fw[ 0pK~_d9X Q︦ _쉲_fo*Bz~.f*8KCIn0%P0麺ߑ\5qGCi{nfL&'EAjFYx*~ kb¶| s{}ffgjoR!j0b= >LtY?+^Xԩz!̫u%č&XmIFORJTgO步􉤶HC{|.^qbm6 zn *&i$mO"5&QFXF]aDytŖ}PW'm%%ޒtRwO&SBYR~1 "9v4n_K{6?%Li"rsGH+r^L~jc= ,A=٥&> fޠ2Yxe{Y赝i&e'\/:EI-48|~uY&x,N *ۅ|Ƞ8MZUXY$r7Qf\qU7܏O1"mt5.ɨžPCNO7}MXS35GP 9§e#QpZI՘4zgǬYX %me1Wu:bpEHAq{[^-͏րaX!{A:*јse{eP;" Mچl!tm7 o]SrG~K\"[~\z`NOhgC<:v0 ַVTy>9|hmL8n >$ X6t=aiסݍ bqhJB„JY%{> jmeF<^[Mv&Qp`"mB.K-TF['ԋ725" }ǫGdwAObf/}었kfͬi/jTtr'*5S`crx!zM!mB@"?o:)5Ԙ?SEs1.<=ƔNl򑲪z)M6eIJvxp/v2|p%F>=~^J<1uKzqmN.$u\U*1i* %3="wxˍ2q40Fu'gzu^RS^ ^ІAeOh!&Nw:R?Ksxt?" n~JkZgY/)EQA葋DŽ}4"1+уŊxQl8s1fnCfLٓ\Y.}F^yЌǎI ;,0PꅵϷP[yNG@Gr8>3;CS !yiž>j & F,8JR*61vqæI6֊cQɧBe VR) %qD]YѝWdVMB~;xtDpZv ؘ7Qb7|'y,۱H'!3ޠAhB@2 B$oA%kEk@a]R[cÉ nMj{/oArg!&)FqHDH}ovaoh)ð&0"_AdjBNrz8< IمHLjF>[X"^+۬ Aǣ6Z}^ľ .~H]p{]dmP{T̓lڳPXљi^I$w%iĎyl*@2;^''_ K FsP.J{s^dQ?m_k=jV_62\w)R/dU?N332;5!VX'h|);hGttGę)|~y!EH8rzY _a~}cժ$9M)qUoF-U~"iGSI]I;xqdܟ(/62'kW= EfmL [69^oгW1Y5F 2;3ؖ! JWcKfղd&°$a1/V:0pCdIX@ N1wyILB N4O{pTءBW=>"g.9 mEߔِy/цn}logLojm4SbBT'Wm&p:co)0#+Bp!|1WM]Aq؟99hX Cx߭LeLƎǰ:i"X@|4?`'*Or]LUIL[0ǖ/z /śfVy!Gh^kI~ԗ.OэvX~U'h}[@x-kcXGxI*:>Alݾp#ei~SsF^jﳭrwjU#e-_+ӱ\ESp<5fLœЇTObs: 7+:o+nS)U5R#V,Nuӫ&# ۼOob:W}o{Y<)'_Ot06;_ BD؋0o<ev hvA DlCBTh/+]SjG+!k}9s¬5}Fޙ|>KJ?D3xR۪ùxo/ǫp/Wnn¢8;3}VHY07)DDݖQaü5eyϵadx2c)3,=U!)tzgwλ355Ʉv(U(V~g }ɧ9#/(nm<) XJDCZufqm(Wya"З2 If~I+ MDb LላԵ$TWoĻI?bssS":9ôs(5or=P\;Ƣ=m<3^){i&}o [/2uEϴ?*a5 50MQSztGpP"\q6q(,j?hYCλP>?o[ #ZP:vA4H2V*r*]lWJ)ƶܟ%@4L/8b(47LX/'-8Q]# ZD9P kn@:y(:i*gM|-T7ҨTy{Pu[|4pBݰ|;^õ'Y0y[ t#.Zj89Nc/}ls} je3zFt) ugul* endstream endobj 808 0 obj << /Length1 1199 /Length2 6464 /Length3 0 /Length 7238 /Filter /FlateDecode >> stream xmvuX[62 Ctt#030% : ! R"!!9y=߹?׽ֺֽp (9!pR@X$ԇzأ0]#3J v`"(. FB0U0#" 0H$%#]Dr#d<hABP- w@y@`Hc;homG@]@nS#s>>-@{* r.| pn)4 0p߾N`5G(w@n$SFH z; H!b`*pDS"  n0/,_!'(QB0 [6g(I/ EwjOo3 :ݽ!P'("(HpwG$, t: # qsF"~@k $ ~=\G8ow}(ekfoSY~K+ ,) )-.OX R JҭAx*/> u#8vn_:^3:ex7P[ۋ[K?!^]  izC P˟܎\P߆ 3q: ޷9#9# F8v@!:qR흠%B ~iH׺ȶ%ڨ{ sU[έ {$"S`E[3:uVnħҌ՗!I=zO.-{SſOsؒC^e8NxjT_I`cG<|{ `*5<&X]q ee;ţeRh "dO{eL;svNaAI<$;ttzܟs OsH (ePFXZr2,24> w:p}OUk89gW`o㰪*_LT?`nЯwEb.o͎ۋKQ;J=KCo8?&Uy@6-Ԅx4Cm X)`Z?gN=Q G(ĽV*he iĭ+y*} ֔?8_xR9'8 ZJ.]SdpUjj²uw(R-L!(7 GTZ1r gcnOhjrL op GMpfd]8cQWzc5) x)r uBٷ$LC0W t/h1},qI yĻk g!("'4d^|P L[GؕX1xȊz.^ ;L:WX箹q K6PU6NN7 cy+7 0ۿH˚5a$ 1PLW8f]]?eN1|X+ M l1Ek c<0NvС8 e=#n[ێ3Q<&mvF/keԘtp섊iHD? PەQ=sd?l AVէ] @6V> (>s!lmqB`=>{&HѢv3:/Dw0Rm䫛y۽N h>-^J,XQ3JXkU Bd$cd8qg%smIvK~[CiB5SW/BpؤI poN4J&ٲUoY(qbY> ޖ$A^v'yr-<(d.~F 1VQߩbq]~|u$쩮/2*o) YS3?_Z &V~&Mi!-"i6X28(=pg} ? ŀ_kRkBEQ(1==t%Ņ>_v&s 9'5O:Z| ? ש4}C@M)s/\m4 KC\zW2c0&X^q<#tm&Wxy8Ɉ=nevSw-P{5~^m\54@ėk~ fO5W`9Xx\ 3&HåHdˀϘQt$jfEnibb gLhU$ FZ5fC\ Djq ^n^1F]=1hisQZ-xG(ۯԵ%٣(BN bs%7FYuFʳD`.{^)s@{xgH~U8)$Fk(!p$d 5m4~?jB&^9Qbm]hL b?)&*\*' l M[+_!!A$ft䞔q7QhK8%qyb%oQ4]FŽ=AՕiXhdzyk.6M_J%1IAo: axơ'AhUCf;_7 {|bc6qN֗mf I4*zyEB<,.T2;eAEIQR4P`:p甡^#lfɵzV6G%qB mI \p*@)Ϋ=J~N)+lsʌΐ$"[ܭ 'FS=~L3W>v\/JHH s^Q0܌sҍ/5M߶Q >+Ju (z׶KYO~mvN)\6r<.e_iq0}(ŽWYWkχ+v|6t%sr@ޞnՇˉw۲Z3ex|ؙ"$fY{P2c5X Qw-kysh^ۿ'vY "}VH_mP EWC蚓UP#ӽE#fIf6o6S湾Ȧ>B/:f[K_N\҈7n/O }5G޸|I<Ef`ag1"; 2vA.%fXb[);)[OŠqC)xXP9ۇ9jQňLՓRt;̥썱Oڱki 乍olbyfٻ&m\P`^`niKY"uA7Jbڒ3(TT[:9z}2 3yulֽp= 'QZ iB6}UY1+Χ{B1?k WI-f]z>gab1e ~b8b 3?Ur:CC05G),|'L lI|@tx)Q rhBճǩΣœ%cV(ZA(169N'k&(|Rr2,ow-.}+[~.N,_5(Ѓvx=I,(묡Kw1dS$N#P Ń YO[!}e$p|djN^1D49h=4I>oV6pmK7SDWc4w)#Ɵ~KPmzc88kE:vsHØ7/޳ 7LxtvZs {75(Rvzd>Q'ͷ-~=NH7<̿_>VCwgڣ.^=Sw<s'VO݆*2'=oI蘸`i9Ňfڎjl2L؅U .fbňˀ_B7lT@߬T'5:l56TuS!Zm&*amC='Ό,/A,A'ݡ>-qQ hpVzٺ@8Fx`ܶ@xgֱYmmaDÈhJWu>]PLF*"CMt쯤gt4 Io{ɯbv|$Vd1aN#0Qʅ}>ۇG[_O"] [pYa#!"'Y|JUS:n 8)n(&PMʲ,Gw Z.ƬƢZo#q*W]*?7l}Ƈ8.TO>i}%y׳OmXϩZzc}˜aTw9[R8j:| K -蝋%u>咁amX1?YQ]X*+&gy h`h"MM)}?_lq*e/FHɼpЌ4qi`9ĥ9zyыyJ.k"(_^nWP'~ pŌK1?f'jxŔ@tό.oEl!OL9^L s%y$ٸh\n_/Aղ4ܞ䝈5fJ.13*uN]:һ9ՖŚTzx@hF~wnB%}9I©2tzLc4nz-De1ψ& +{2p4Aw=<,J0ېF&z6c*:BƮ74Z\Pr4eB `06:뷋 V5JY=~]WM/\5ȷoX?pn*)Rva+`y g]Бi=Yâ4"p~pXkMxX rZśɇv>nPZd[J*E],V~+mq3CXoXv3e(>:?T`} $ `FӍ9 `xZI9|<.ֽc)"J[@Kp4StzMK ۻA0$W>AsKbD88%T$F=~k٥dM]C{ۢBǘ2Nr$Pҹ^EZ/iHD)>։?['%փ]#p h1q\g1`'wټRZf7L6";N, )4N2^ YXv AErOJN׉ ]PIlal *Ӌf[ִ2菵2ygDCH}+Y\륁_t 7[$O$ CPpX.H U8{G 2L9de6M˿|&/|nzub:3+5y}IGӪs6W7zjUV<73?M5v/|vb2HC9,  endstream endobj 832 0 obj << /Author(Till Tantau)/Title(Syntax versus Semantik - Text und seine Bedeutung)/Subject(Vorlesung Logik f\374r Informatiker)/Creator(LaTeX with Beamer class version 3.24)/Producer(pdfTeX-1.40.13)/Keywords() /CreationDate (D:20121113204020Z) /ModDate (D:20121113204020Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 790 0 obj << /Type /ObjStm /N 61 /First 539 /Length 3287 /Filter /FlateDecode >> stream xZs7߿BRF[SEQe@bp8؞ $-id͵>WF%u$#&g$ cGΤ!\h p#ܚ :Q"3c'6ˉ0Ȝ 4iÉ0.2BjuF8,W9yF4,%kLM,'ZiK6\`ro`$(LAG3E 91:-P)qX O#UZ0"a0XI@P,'Z,୲ Y-d"-Kb5hg# cI.+B#3v? -d9',c`=eG\BOh) =D33.ng ,%a,ĂfE1m@up`c< bn.R8FpAl̉|YE Rh( 5kjq>MQ( k[J!@w¼.s)#o7 IGCFhp# is.ff]X4qµzw_$K Dw/]/`z'p6b(@c. Z<o"5dlNspz/76f9i4 O ݰW[9$lũI&ksa#idK&o~VGw' Xs-_ƀmpGI6oӼoƚ쓬sxSO`Ye$0 oqFoM-NӺ^O[ѝv6ylBsSrXtUݬ{?.0~?:z2W5~Ƌ.vg眳 ݫb '&_VVWjńe8z]̪jV'r~ Џa \rMr>/hySWY1?(v<19hcÇPdLA8:o~:_vRڽ*P u{SښɇhkӘfp>5Vuq٨j}#媪΋5=_rV^}bqt5]G9uD!&:98{Ld-\?cϰP>n,mCN|̘U|3d݆qP>>:xq5?GfcX`_ oA,VR͔2fҌdd^\zt_KF_zH1}K? }O?S'H?ϴ.;=/_YQ$vHB-ikշ^.7+zEVe25\ЊEuMtAբ\Ղ.7X 'r&g7MM,wi]+.Ak^%]_ ,.@t*7jَ߽ 1sR@̼X.Fb."sv<$5v4jkƢamrQj4.`"|jmpw@>hc~i7mc`1$~dK4p%0|$B Ȗˮ Muskn:_SസMKX5!nDRʷnPM'"O`DUy!z_.0 |hua슾 .$jbE~jSޱ6h}"%{8~nzܺl߄,$7a0k:yvH ^mm!\"\h:|^Ջ.qkeVt"(8nY]k<+'6XWJ%ÅwK]+\$Y&;W|T4{u-r|#>vE) {M,k#=@v' og=&u{uEԣ}н+v/{x_6_˹o #{#Lp?=G³.#>ׄOD<<} #Yx?Ux7٣eHD1T*a(:Z?cKaQƘ;yfqEk[ rnk&@ g-K'ɺXw?0'ŷv#d!d zXͫuM{Yw2*AHG;llL,2w6]mL[h Օ3C{NK fV?[l5toZj=} |v6>cZkF`مsO+4sCq5} z02g 6Gs݃#07lS w!atnSmGO^. uԧ\0MXo͸*d3x^vJ`+moT*JuM(ec4=%nwŝW[W[0-+ʢ'dS<ŕUlRҴ:R0vaXhRRN%R:?]*q9G6FZR̶(⊫I(8a\zv0._Dmgx 56`մ) E!^>J#\qnXM Pwo7s"p; jCذp-Yfz*h# s;+\mAD(;Wqu]&e sl8Ƕnź-&Zz{mnQعيxR*%PdG<,Y=/t=a;ϟ3''\OBOr= =zz,= Y)NPb^CaKc(yy 2/He2ʼTbQ.r9A?Q.r9^.G({r/\r˽\r+Pr( Lޔ)|[| endstream endobj 833 0 obj << /Type /XRef /Index [0 834] /Size 834 /W [1 3 1] /Root 831 0 R /Info 832 0 R /ID [ ] /Length 1881 /Filter /FlateDecode >> stream xIdW{uwuzΧ߿G#i^=?v dQ;,,,,,,,,,j q_Աԟ؝̅@@@@@@VTTTYYiǑRRUReQ@/uڨڨڨڨڨڨڨڨڨڨ+o9RwjmiyXIjjJJJJJJJJJJ64λqdTTTmԳM=TTTTTTTTTTEө?FC/U*U PJ_4J7K7bk$>~?{3FSwckJ)>iitؚF/3f`c#6!~oVlv@Lfv#~}E_ppG2}?s' endstream endobj startxref 359301 %%EOF beamer/examples/beamerexample-conference-talk.pdf0000644000175000017500000042041312050430642022037 0ustar mohuramohura%PDF-1.5 % 98 0 obj << /Length 1468 /Filter /FlateDecode >> stream xXYs6~ׯ4S8Ioqŝ6me)D'u~}I@b&L:z a.HA9){! +.K,FmfWGJ=bvwȿVV[r?JY o: c!Ѻ}KEO ӃRWMI=2RKa੒=!M!Lxc ݮ )I$^B_5Awln kAͮ q)\M: 5hbĠA}N*s /VpnI&IV$Xb2Euknmԋ?Ww"cN 41E)a8^yRp}"]D,Qg 1n|C?2 :uک Le` N2*$#J i+jAvdMQ9"桪'>ѯ sc4fGH`z9l`?AA(2 zbtNbLLT?YI Ms-90ñPqh32orXt4>sG2} hIj҂Tו?]ocʨp"]H,@Ԍi?r4{iCRzqGf"p4А}4P|96qMIBPQ栚"cH(-3FO"!B(pF:TCCì>Jz?,4郆>t"mf:Jc#FjB-#k;l3@!ob=x{N̞%Io"1>jù6D+1O8V̔iE_}Ѿs5Oȃ1$퇔{@ ]0] ! B?W2@=†qUY-ͥC8\bjrYnuAV*ͺ뵫 j> stream xP( endstream endobj 74 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 8 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 106 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 75 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 16 16] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 107 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 73 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 8] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 108 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 161 0 obj << /Length 1118 /Filter /FlateDecode >> stream xZK6+t-[Iؤ*0mk^UgS[Ӳ0L6X~[}z#;i9'|È@P P0u@!i>+ϵjKBq<~Bk> S-YF?\:S9Ei(KҾɥ$c#U J Sɍ$ P` dmI M lQVG.H)]]x꾵ζZ皌C=d' N; ;h *+P!6ws\7(Fuh2 *֊2d$ǿC|^dt}iyeC8TPACfQ΀j+LM<.^F0vg9MaO}r|f[&Z@L;@C.xGRmeGgxş7Mr6/I>N by_;_;r4\ۭ\a6Bʡtז\X4湢\\S0TruQ`,2sV`os. ': }-X_WϚ ʸbG5\\E+"虦<5\1yP&?9Yz}}~͘-SDkVk-V:gm\a 7Q&Z7; *2yE񼖺\UXoV[yb)HTZQRR4*Ag&Z&٪m`D֎JCl66֓Fn59_'.mqfǻC{MvRZgz;Sd噻, xHźL q$; " 2ymͼ au;r⪵ʎOsAՎS\ w7$=366U[}M12GY$}9 Ⱦ;G4FXb_EuЦA$Oxk# :低h0ªydqZ@nB}0'" A|٦dV OƆYPܯ fuiɩR_qE=i?9*O endstream endobj 50 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 6.253] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 164 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 51 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 362.835 3.126] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 165 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 127 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 15.089 15.089] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 166 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 129 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.048 6.048] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 167 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 192 0 obj << /Length 738 /Filter /FlateDecode >> stream xXKo0 WheYe@ۀ kk`i΂ѱN4tHIh&{p9ʐ2BA(N0`6::χJkVӺQ[ KF`|LΘCڈwi=U >\† F{Q}wRs`D2_B[SqvIM %t+U[ '{GpR[쟱9G· e0'( -06bb^dleFF9g, ^=] hQTynYU夊|9zAzcFVl+1ƌrF( "ck[rʷXH| ieyˤ*{DhVZl<ə$Zʓ2L]^?Q^L ˨N.Nj}:mn>¹YiXz꬟mAK&B> stream x[Ks8W8s7RJ&gv2$qX]Etlk-Eی}Q $4~n@d!ANX/($H%5YB+:B ~} H80QXI¢)1k»0!tJ&`P ǤpuED#/E/"^1)L 3,FPQUsĘHlY@#Ik艼H8N8J(|e`/ŵa4 )0&-  O O>$ h k Y<'K H6`$6FJ,CmkcVm$v)25%XqkϜ8 VM1w~_"a᱙y\5Il62Chh@Btb9Qb.i6EZ3bm23m`v,ylu`,lTFyLcDqã|60;# mO#\K+ɋbQLO?q.ZIY|9vΏy3ǧZꅨ3n|^_oeAU3tTG'tֹj&;xWfL|m}ݚ/bjΙU~ v5?o qݽz9l^~ZUGmykXE`K}Ԋ='q>>3抢.ܱ0ە o!}b2]q=<7Lds-W]l^n~[eĜ*pzjy&x_*4^-Lg_FxCnݬfgd'GoϗݜoQ̍f,+(8Kď#˗Kq_W =yQ=h~)\nΗ1aضE&LRG<<$xxz7L8R-j}wIj>-O߼lwn-f?,Jbخ+eK]yN-BSW/ǵ ӉLƎtI"..3)v2'/V5C .ڹlVmԛ<"ٻgR֦jCuϓW;-&/;Y*^rn~vy &+^ c$ V+ڼK㊅Zc --= @v\^Zgb0 nT = '5Ba@@4 Ij} ^oQ- V5= 9dY0{>IVɀ\=썄"^z?Hh jm%IIozw$CXdWdܙ4H.+)!h@ t& ո^e\w) 'P]{6 0hKd<,N&2b87;tmXQ_`2;H*(}DcQ%-W 9>tG6.f8'lxKI?`|8/z@*缦U֫ș0>U[L66G.JM8vaubзDVzL?d+Is?ɛ+VrIԥ4Sp<6M*E[ڋYz$_'cx]MDIRAkL䭱O6Ls9剅dFXis:7,c^Y t_=ZH_gݗME%V)S_BcD.C M#2<nHG.ݻKҽt.ݻKҽt.ݻKҽK>2 cu׃I|iWBs;=ͧQugG|"rO,rz^* Q8`>ﮡ'MК z}ON F P 0b'*E&Jj` ,Hw C-rN˔⽼rՐ-͞c|_Qcp? Nڱʧ7vqw|a e'(Pv9*r˕|_vB_#TSr9|}}WNS9OL.K=RO.K==Mk@Z endstream endobj 221 0 obj << /Length 1693 /Filter /FlateDecode >> stream x[Ks6W(譙N;4N4CFmPMIu_ >@Q8!],>,9"F3R)@!+ i)S(_#fQ~_~+w*1r0}2A͖-)%+cvRbi > xs 60[##!- Ì&ZcY}9m ijr^$nƚ=Μl3yk*4kxF+4F{* O?0/O s*0 prgΉ=S[jIVk7`I`JbbчMͷM&O݂_D0S6 :x}v&m8dp2X JOAfEZ>+MM}t+KbSqFAv«#0Xc${*1嶾?/([bi[BxXy1qe2N#-M9i|nqW=ǰ.cfǗw+;` wM&pԶ8[)jj8P JEH T"!,W`0LQ(@舼$3 NBjSSGt exVL鴴(ԭ MkQoPv72UvmPlZKmǓjv% b 4#emeEd'>7n;-Qu]7ѻnY m;6MGwHd=:Jcۥv*yVq RYBqmb6ѱ}lkCʐ3F2BjyD@S*+iCW) p?K`َadcc(;ή.ٷcxYWָ4T)E-Tp ˎVa+ aBlv߇By-NRqb0QvHVVWГҟuEa%uv+IX4Bj֟EmjʕPd]('DbJfs][ ֌U8,cPJ7{@U~<aYUg]+M).Y_C'$mvr܄RqyىͲt\}-޽~Srb 8~qqfF>}T.IF܄N7ҢލP2H7B8`m7#`nDbЍ endstream endobj 195 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 3.985] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 224 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 196 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.152 6.152] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 225 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 251 0 obj << /Length 1922 /Filter /FlateDecode >> stream x[Ks6W(Mf:L8LiDۜR-u_ŃPd+8ux@-!tzBz#xbXsX0e rtqr3hu_=mJQVLPDw?/(l`2 xs4P-:{'4C h) 3BJS\Hݐ& }n&AvlfǙՠmek2&=:Y39eit̀c7Wc<0b83j;&ڎAc=10vs$A4Ui, X$&90eYU٦ӿ܂ΛSW6:Fwc4Fמ1P°y }RX:l>MX'o)#ӄ 1y|/rD@%#iGa`tׁ !dt(Oj)ϧL&X0l>$)|vV L3ڶ Bؔ1W* V?f`Φ~vU}->n_)HQkk,]vtaE{*1i7E`C ?9޵߮."+ϙ:ruǫ캬6Q[13&|O!3CdgnyۜM$2l:'';[a5 98`*QLzcX K  `@ECbCn%ZeK+l%Z*QW5R?|63-EfQDYw:okt˭5$O9.ضdwVNpzv uNvaz74IJdčaV=D#u[:nl8I꼢 1Č>v^jKY5l֏織A5&u=G1T̪6? 'ФvHJPV+xByB8§A2e clL"pL c26@&1Bn$^^D%^ܱEK0hkNgJ;@4N zǮc״.٥# y=v ahFuc#bD.q34((s=tꉏ]F iFw'I0[A(Wr̗p E"@EdS!]9bJҾfSH\ĥ3p\CT{AQ+ҊcJ_1 UKU5q]R~yO1]`>e_lPXxKg*o[[.6yl*/cjm=Y֞ew哰&.M:_ -h0_u:f܏b\w>*Z'0tbӧ| Rb8ګg 0P{_V.˯d LI$!"ڸHjtV bcp*ˎ_BQUI+_{buO^C}x$[ym:JN)2c%uNFsH=0?hw6Nݭl|InR˺%7m86iiyiLuyeLMļ0i&Dlbsgmpħm _WFDݒ%PJdf]TGx~u ^ !Sx8YM)NSN&ˬX:[a' s%C\Sͳ7+.ڳ;ŜM ۮ \&2.W]9 =,F{~/|i#nd}' 2G 5gN]w1 endstream endobj 226 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.152 6.152] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 253 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 280 0 obj << /Length 1467 /Filter /FlateDecode >> stream xZKs6W(͔( V7MN@Sű(($U}A춙 6 lnAo.ȨRh? AIf5](gStq̒u`8h/Df#"0ߊƜW//!`\;5gmݞ#B6Er f Pw?X?pvi6pO25{$P:+I{> stream xP( endstream endobj 255 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 4.956 4.956] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 283 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 308 0 obj << /Length 1280 /Filter /FlateDecode >> stream xYr6+pB@nqOrHE3əM2+")KT}7˒3ʬH5F]OȠRh 1D,f2t7Y<-fn-Z#RNq?l& #!QZL i f7&V22F^Dhbr(C  T= 3B=mR5]fy#$AAm  ڱ{4/ФD:$ui Љ1@#. PC5o!0WFym`cN% $A8), xIL4CXֻjuH*g?eDsi)[Ku]fUIzo'wh j+,W{$ {cO%\7' pxs', BQ9}t5Tdg{KnݝwܛOj=ҾvSOۼ\Sq̴9ნ|_2RQ8h PRW 5uH jYh@!űD_ t^R x_uu ԛ(bMJ:s=FP,?a-x cEm;31|t5-Й8|.i6k;@L#0(V8Y~ *h^Xցqy:rOv 1cr x$[x5:_>2]e |u2z+1 "q^fV?6m'@ *äCƼOܑ10`v%3%9rp[efb)-eQ|&hı_o-=Z:r=Y/cC_lf嗅l {Sy1:h`K]o o{<݇aGwXe3{'? \ehSr)8Jqӹq2iUZ*jzn  M8{wӱ煇(l`A)m,ZL3 {1D Yiy>GERJ9ptǼud븫) :VuRcj/:Hy!lY]̾C[":\w޻K\j endstream endobj 194 0 obj << /Type /ObjStm /N 100 /First 924 /Length 2044 /Filter /FlateDecode >> stream x[Ms7W9F8]!KFbdR`%RQ<6GUͨ<4I3T!r2> PFɤ*e6dSsD Y"ay80n8ʆ"Abw\PƇ S SͨTy Gs!֎ $<=RL B]yr&!2Ƭ yb}ĠL*1 F*ĂA=bya<# 'όy1*Y&1"n/&G9۳39ž*aoK~&El9!,O3!L2%-9L1sؙJ 2GSCp3( .&V#dj#XHF 0Yj b|M.* f> K$HMB Abu)!2V&O]IN|PCyXTD9I_N"1<`v Ie'K0M9 !!h%IƈI$a uD0Z ^։Kk ]d'rE5GR=y2^ׅY.WYwvӦqϬ{Z_.o;޽}cibcls la8"l6 o̓';3N^z;\}e>wU3V"W%وYTFU8[#E{K[hk&FXbjX6N1*~d];]ܬ4HYjKGĶܺm;0Ufq\_m9\g t-|.iT]k*mo= }D=.U%#ze:V2ͻwc~sLj}bax+r,K>lm曅٢ͺrӬp/&v*{ۊ_?[K:r举'{1~}9Af\#WiW7uKZ?Wgn[X[d3 ޝ| \I?-'|%ܖג *EK#ţ/j[(h+鸤ݙvhѺA^t'߮.?Cu~~,t.XA͢Yqz%6T/$ֽh|'U_U z ӧf!ZOlulb+rlbu{ѹʒZ,/͛]ۍ?XCrwssO6wOs#üӮ9^juAܻv -qے#ynMr%^]ӓ3?o?~7뛡{|r%lf&$Zʖ1nIɆ@y0E"mdZVȂaylayw$+t"y\E4y*H qYe68cWz$~Z}W!zB{h|X/l; pJ[p`%㮜6ZJtMLtMLt HfO`a0RBC/?B]F49d?}p^(v+gc[yeX(V6ebeX(+}[XOYxAB߯xA >cEH(.zڗ}- E-&~c7&~c7&~c7&~c7&~c7&~c7F7!oH ac;vlGT6!*KHR$e)IYDR"mK/xndS+^ql ;l^pǙY@4wOa;?293 ЏA3 xɉ6"4_.bFq!]~ (((((!% Jb_̗PqõaؕCK;acr [QF(U!+ʐeȪ2dME_ʐվx7[u<_~bV=^v23l_™w 0V endstream endobj 337 0 obj << /Length 1355 /Filter /FlateDecode >> stream xYKs6W(Mi봇N'7eMER],Ns&HpX~ D]HRh \"3LBݎO 1.QZ/V)z^a=fkX l ppmLcv(^6C 1G%p%z@#CXXaD $jS\HtLQُ$ ۶ huޡi r4N(O8Htzu } 81 :f@kq9/fp&IlX-XXf t=1/b"|t;50d!34 19*a9D0uϋbXN'vL".|}Jwu D$#ih`p'XS<!Q^aM(n'I9YWi[POƏo!)Acbg.uA.2KzlyrWMv=n jk,W,=q[}k0 jc'S)7ͅQue8V޲:_4*<°[vaYUQ}O ٕjU(Bb 1"εC6RPRN1@,;uAc] (`A)?/ZL3eEu1@b+ܞ|y2>nCF:v!S7_wmP0% rJjnTۥ &6o?fC#nҒ+ *5 C vXP,T>1gl.Xة 0pwB^ yPI~M~i|vNڗ?p endstream endobj 364 0 obj << /Length 1414 /Filter /FlateDecode >> stream xYr6+p`#$$TQNdUIY2ߧp-S=ʬ l40A+DtZ -zac)hѠg! _-k ?J9A ,ٌ{_&("Fl ppeLmP{YbU,{d.k/hdb(C 5= 3Bhd0$&(GXI*馭%XЌmts4:ȿ4kF9MQ8RArPC5o18FA yc"1жr 1A1I")X1 ͖zc^aQ|yQ6~VOaȌCf4 h@,csTD rIa$̟$bN32O{*6>H'-Ch`A dT`%N$#+(3lBu7d<_f]>cv(!?ld?s} @s,I s8gw3te,u斩_vWwvsqW\aeޯ$ }cOcL/{u@%XM[u'( \xŹxsS, .~).l:w6tQ;3aS&>naWS>g1ݘ0>&W&#nKB[ڢER?`Pic0U (8'l*i髵NQ0)R2P&%9Iw# `h`P%cEm[3̫qxWVEM*Vl킘`*Da)<2#@UДk{ c[V_SZV,ܓCLXƢW/+f7<5#!kxK`[d-q-[@K@ FO`X0(:B Zd9ÄluϳctWNoYVSeH/o5oa.L3UVa=qobpt\#uنrSx(IRwn Z^/ᄛsS$n:6^E/ 6 Jl|`i(+= D']URHss1˄?U눚L| F,6)ty:SV&`ۮnlR\D0 -abdc3b}`\ruٲUJ8eAa(G腼 yPI~̒M~bњ_=Xan.:lƟƦV8R'\]I-[\q?3 endstream endobj 391 0 obj << /Length 1469 /Filter /FlateDecode >> stream xYv6+B0I:rU,ѲN%R> $Z< ϱzxxbAkDňtJ %ja%bÔ)thѓK̐ak=^FCk8yFķЛ~2A-wW?(`MijIT-rV(C łf!LDebY.7ŅMieC gIPmݖ}\ڶϴ v Ѩ@c < = <j_0o \`cN7sH$6Yi, TIL C0nYmbqI5~t]aXq`APSJVFY>)tj2eO:~3r!Ux{fetXid`迡 9dtT(/R'^JƋel7y<'0͈wqVñvIИ>}@pZ6Rn!by:{=n7jk,W,=s[m jc;oĔ¾]wQ 14:wrȒw'ߕEs[.-/~KMM}~ 7\Opb-Xι)q̌ 9᝜F4! mIMQS$R0Bfu)$b$zY @x$UZ_uN)Vj)$.{ 3~kZ,G҇D7Cg5 IYU1` Lc%2# UPTw [ՊsTS^*CLevYf}WYY8ի^bdEA޵9fJs4ظlqupM[Ia!ߖ]ME$<ctt%!bUvw)rD>V L I%ΌҤ iii8ˁj g_mz(&,]WbYh5R7RFN4qyYfyNyIpa+>-RMѥrO/SCsLȲrm`Ӫ"5jjnKm} b (lhA)%[,ZN3 w13j+ 9-*n:%Ǵ W * 9~`ڇadɫ۷YшʒfrM;t IS,;8+! sf%QP. ~|"(ظ=b1uҕ;vDD_f!%¯!Vvjbj2LJdK6$ۘPqY@][ 뎗S,`ц~}1A-JY/B( JYN:N/ʿT԰ endstream endobj 311 0 obj << /Type /ObjStm /N 100 /First 916 /Length 1475 /Filter /FlateDecode >> stream xYK7crۮ]B%<ˁaXFhAz܃EۊCesX.(b6B1* )f&R,Égɔ0STf2/2z*TZ3+#V4 Px!Xn% PļeIr5;x !j}U>بsD`WB씀mb5,7XddyZ ްe8;'xwz0߼<ظray%~.@h03ĶEarhɞϛ?_n]"2 HZ{7hHrD^F$K$:KHuˈ.⦣DKU;;g&O2UK48;wӘ5n!.\=Fd,Yw?eI.ң$sJuvL~qL8õ%KDK%\9˨ nm*;iiTxxWi8dk/+o&] O\Ҥe^KrV;8ܦ(-"+stʼnq.}ڏ5>g.t^qiYꮜ.P1.9qݙY%[9鄷&4na¡1OP ޽zuO5cohxڒm͎asR:|;L3;ü's;_n1^2۽fҹ.PsDM=}fuEA9Ot=ڼ8ֺұͽ{V _vPHo6z5 Bl#Ɣ(oԻ̭VVcؖV 7<lxˌJÕ#z7X]*,;=*Ȯ"*Ȯ"*"˧*R"exץ sLf06E"MŦbSx)^lCZ y,^K /54xon9teؕaW]veؕaW]veؕaW_2*,f_23eXP)6%MiSx6Ӧtn7> stream xYKs6 Wh){kHC[g}q[-9m}DIvfâ@M t;"JR0BO\",A=f&}2 +|Vh>[#oVLPWo)WJaim=kqݢ -G4{(4C !L4hz\Zi RCzf8N*Hkui5sQC=h4CgıI |tAzpAW9(Ҿ5tp̫rs3D#f9hL (X4~c^̊|aS/}7N0Tơ24DA)% 'P#/O KvY~n{O/'wo%Ac(|z[JWVSnbv]{Uu5\]־ڽp[}mk]ycO%gu@%C}']»Rh:-<-+Ogx؆ xٺ~;hu4;[? QqɊSb&JPUR$aA,MIU{[gQWK֢' sj(iIK qQB.7NE&bҫWk7Cv봬6VA]#%4ƉpD8)3wCVVҲ"]~ uPrE,2[4ǦXZaB3N ,5g5 5nۙxx)c Ovi@: ˦XPS-c1/CWr AȐ->j3B&;ʤ2ͯv&O{yqM&6ȠsBu#.&ܓ'=abOe|[bpgz!1W~*1Đ ՙ%VF\ .XO~z:ۤupoH,mt9TaX?ߟ8ƴr Q$=ݑ=? bI~pq)ڵncR_E \PPsZLHظ빕V%BNPʯ苘@cn8&zb|gE ]ٟݸng!LCf( O\CZI R X+09cֵ-c|*M M2R endstream endobj 394 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 6.152 6.152] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 421 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 447 0 obj << /Length 1566 /Filter /FlateDecode >> stream xYKs6W(Mi붇Jt ˴VeŃ@Q;6p֒bǷX"z@Z@` \"1LB &^L1C?C_WRJUd?jƼ haMw%VQ K3>91L~@yf <= Q,h&:0a" g:7R7Cfy3,'A5w y 3]#ȼG 6h0A'qrx t@7PA(Ю47A|=#3s 4WS8H$γLXة MoOjW>Ϋe}܉fOU?:}GbvjL jIa,WјezK1bdf4B n7~|_W>)g -rAJ@ dT`-$#K@y]H9Qxݍ(fZVaKOqēɭ[9B1W}z_8[*FSnU-nwl~o r5\]^ힹ>m,S)ϛ p@%8'9N^™כ h:-jK/w3 1=n5/Ѱmh1soh2gl [dB,X31+jKUL2 8ȁeY3W: rF%Rj($%D4B T(ѩTt5M8;LZkqZ uQhK2pH8f% ҇Y~zoQplͼTcO3ܘXsC؏N#6VopU3%N籎g55DS;ߕc3Gn@ܛU(6&|LνƢP>/7Mal)5 Y#iFPB5(Y?3LwċM*d9yv\5wAEGfc!_♞I cʏ%FԑR'_^Ϭ+8ř uǶ؟ n]nѲP:6pF8 )Gq-DR=؞,쟄hɹ0]ӣTC?8u m[71"˚cΥ)S3@CAIUݽ{3CV%_!Y8<rY)\Վ4kn„y䉷+ Ap`znżZ[Xoo߽5tGc%W&lƶF5 XܦX<c UfT&Lr˄m|fbMkIH_áJ׺tx3y z驐6PΆ&egZs}xv7xt䉅M@#:ơV> +ISˁ.41@bp9ؒJZN^Bx8g;Չր![]fkRedgPpLLs* ~ca_vݧso{1( endstream endobj 473 0 obj << /Length 1066 /Filter /FlateDecode >> stream xXKs6WHDs':yhdNćI}@"qhE-"vFF@` \"2LBu6O6=b/D)RFzRGCHprdRX rF-Ǐ?#G)DIxs>w.zwMHq}h'RLD>nZ6m?*P9l*Ce%c`p'|[hՋ-͂С%y\5]nT:-)LUZ;X||뢣ǣsm /EE'kiȺR졢;vMz'Us?Lk8?W",0"hLpqi앎yֶYJͱB%΢Lb94ĺ )_I endstream endobj 502 0 obj << /Length 1643 /Filter /FlateDecode >> stream xYKo7W({\ MH6l ˒ CrKVMa;3f83\tHc0Roa \"3LB)1={ mQ.(me*;X ̘XKeonDg}(4C Wf0 e4Ņ%$(PcEaVQ˼ArRpzK;GGA(O@G@]uEPA?c@ecNa M+4BKV+ah4A/wn?Gj3 hԺǼ?};\>庮Zv瞌GJ$F/&e:`}7ȸOfnt{7m"{)* T1vwGq`T`-ˏPH]2Mժ=C%b+~tyLO-ˉ˻Ţ؀x8| p,-s{$Yv65nfGuJXWO?; ?OaOrJs`~ ~ѷ& $O%TkÇ"J!FWPN{l9]I!_m(Ѳ 6S`7Hd!cd ƛuZ݅?%z:s?X:jdbR-4YVaO0HL`4)-wNlU 1|.IɔcPiE w>ʹ< q Sp; q0'+rUY1}k$[|u=]ZR"Ns?XڳH7X Nx^Ea8"Q-&`̓QK!B.I'0,Z/ING". JD} ;0q@Qͯ׳4C } ϥz JB$0\Clfu345(Lu8bYq YmiD+\nbբ+Tfp@uD[e9漌|'qaSP9mּj]v~k>Ip@WB,)=#ŎmBվRpKnm2vy|1NKA=aŠ'̩̠Z5&u DPuZmHQ* ɝ<Y$)I( rR^Y By "$d\Njd81K2cƬ57fm1ώY#2(nqrPr#'`a֜H,eWJ 80 [c״Eð.P ( +XF$'-4c^WEN2 P ˸|&- FA4R)UjX9.eH9/GQ]K6VLIB=1= .ټdzL2}} qؖ~TCeId{(­9s,­WpW-,M/kqbfK=w&Z_a^O٠ endstream endobj 477 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 5669.291 3.985] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 505 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 393 0 obj << /Type /ObjStm /N 100 /First 922 /Length 1860 /Filter /FlateDecode >> stream xZK 19D-Q 0 ;!q6i̡w^,U daGQI>10yG6*$TH8P*%S`_Q)*hB{ %ŕ@6&qJ##48锾)҈[SH1İ(rn2w D+)W@ʪCRFXbL9]H"J7j 1)s?3 %~(X0\0q^I}V̪{L򉙲(X(6rIkm0)芏Z TB S9RT"” Z0$`9k@K*ITU Iy@0h\0 FojuIZ3I4S0ZS>)x$Gz+&p! k >'Ҵ-jM^'j1(BTnX̢F+AkP9SRp=ꋹ'Tp UU\!s*DxOQՆ"$T{Ҿ."lgpe5SXt D  PK-=Z/hA"ǟ@Fo󟷗ŁvCgwgݑ=Edg,g_ݥѽF7jcqO?/ϻ#m 3Zܩ4__t7ewӇszd6:7UvX8^sZbov=ʩ{PV+u`%dmrlg+ʑ߰4 %[9`'޽Ɋ7h|O_/Ϟxsp.xAy.Vl^tv<^wgXcTjFJi{9ĥӞ0p9c \x(Wtox7~>[ qI/TowpPtvW=] H]: @.n 6mGܾcxoz9\u>4o7СxF.e!;ctG##s-fg{|Z,Q%KNpꎂ'!󊑝L s(HU 1Niyw9;$Aʼ G  E& xVI"`DI捚!+8nccFo 8h]S$5O^ҼqN \)~9-"a˟: ŕp]O\& y7z\wdDTpQp3Ǣ8dmO♃a&aR:-̲$(|wcsw3\N="Ɏ;V(T+ }GMWs\>qx%7Q%Ne ص$bC>l-OiO^%&>_%t>sgQHyBxg -퍁퍁ˡmo 6~E_h+łI'.8q N\p 'C(yN8׌K|'8QJ~M1U4c( %}p_2g&dv6~eG~//ۼ'.8q N\p'.8!N,< '~u@ogsҌc0Y5W Uzհ^5 W vհ^5~(G~ S˘G~l^[<1t?>|B2TߦIh:r;?蜞FQ֨=PHoMs/HA_?O _"_dk4d endstream endobj 532 0 obj << /Length 1800 /Filter /FlateDecode >> stream xYKo7W(h6qZ !a+˶,)p;|.Zmm GKjf88OkDɀF #Va%baZOl#f(h}גZ|W2(1&VvsLPD໷s~Y2RX:V{RZ1i1"Ou"1 ݡ0 Q,hެ0a"3j:vK}GOIPE݌5; FfG# 94Xc,|:ZтtPPSIVk.2tq> ]l/tqnJ ꮆ~ zt[̇cc1[-?=% +ȃH S)~1PD ҤpBx;]\ЮVʁ*[sC>ڸvel16[`.r 9 65VFwM*#j20ɫn[=dv(0 ZYfq I0U`pxb%x1ͅ^B=HIHR'k>ν{|fIyy}$;3 J?˰b͖ͬ#.d}msV7nz?[^Oٱ.v 'M՞F !_&FA{ )W{UQUSHFCsF<*,0l֭1'& tdrdidɕ):gimu?Wlk<$F3N[rhZ QˑvI]߽QEڋ$tkR؃7kQ|VB[謃g`mLEN._/;81/󴻕¾>vk endstream endobj 558 0 obj << /Length 2115 /Filter /FlateDecode >> stream xr6Q:Tvv3a&D۪Öux(=Nfף n4ݠL5"tF #fa%bab#f(iFoE>UeP3VsuW&(VB쇷K~ZfZtp=oQ-<1i!!u"0 Йӡ0 Q,hff0d8uҴSG IPN 7,H4oY|H{V c,ܝ4 sɂNt}{ s c\B j2XصX.gvz5׽՚boSbP]+jy`w(S;e˓}۠\Q°rODчr9y229 `9¥ҁ2]n,kX Gu v~&[r4ac=i`n&$b7-S) 6PD ҬT!:uUAxQ6VNDG[7Oa16jw4͘epS@6.Qi:C\Q)c[ŋd2켜WDA6D;AADES7}Hj!p0Rvr&e+@i'%XfP+nk_%NѬ0"=^M,8/" 3 R«۞pޥ~!.ӻɊAb^HN&ViU^$bE0pWg$x"HGh9R1F!)1k=/Wl :lP;$C|>oUK5)UQ?gz:覃_&-Q"20uǼ/_>WkR!I,}QN۟g> 17k~0[9W ؒ(J>&&*RByOgٟP`gQNbpE XS^f`sJzYoݎZ~)Q:р|}Ť/+} {۠ \aS0^)&B)& "q}q /f&002橾':6Ƶ{,1 V x:6z;OmQbд#6?`ىLa ۫L۵Xmm]ֳz 4(!X6 ,w]\qοW4Ԡ*l?3ϡۛs~}^ 쒺6<'(pZV5xHM`.2d %08F\+M=E3.c)8mM\ [pKK7k'g97AOdz3yIO:;Hsa7_żYéͤ9?mChӨ75Z;Qh&L7b}].&.H;4w3TSt+PVXVIj-C."7ϣ'o4ʳ8wV[s endstream endobj 585 0 obj << /Length 1744 /Filter /FlateDecode >> stream xZKsF WQ 7~t$c'!AD3zY"E?6mƒ b,ae> NF5R)W0CW . S~GjZR*1Ap6`5g^JH4[\S ұIjIT yaHtF·0DZu=0#ƘQי"T\9rxJu=Vq4yk̏h_=C ^#ql@=2"h! Up9Q_nIlV| v$&K~o/ofrqjiZ uߵcv0̑|Őj9T˯{ JVP)y|1L 1~5_n˷UyѦ*VСIp7:F6%yvg tVN\t٧'z_h"z=݃x2gn]B J\{ķ0ZJ0K-7rWj[r*vι%7\1w[1z8fF\k<&j%VS୫?3ͤ5b=_!)Ė5DC2vO a "A X`!2>gH<(LԦ\I{Yq 27Ҙq +jo~p`:e<4f \V.h1i&bYrrȲnN'kWfQ_*H, oF)iC|¢T!VW~J@%tTE!Thol43RzIfR/hX0;U麉CDK"(( qySp\2_̟E[Ԃώiȥ8AEf\kAI0~\9 YYd9h&ɢ3K]i8̓E($\I 3YlN.PFY%XXkN=uGKᤃ*g59Мtڜ IU=Jp}Iڹ`yn̢Y j @Et! {*+:_oPB*$@\ Faܒ2OOUMYC "I'0c}%VK~k. 7Xׂ.^Q0'gur6݄ h6_Is]\OWN#T@Iҝ@ U nlKA|Zt / =);*6$d{/X'^*Ԁx% T~īo-(k9W1,4KɧA^ͣs1oE3s7rfbƽYά2C[l  wϪAPw7gF,;p;*<2n@~Gnx{/E$(e\%$Ŧ9J:vc{Pkd⋏\G46> stream xYKoFWQ:pG.&j $9$9(2m ˒ >iY5!^r53;sAiV -ÆK4Ô)+f(h{JjaTePcL유-uX fo eJtw\Zxc`#cEj"1,P(T vf0Q[u).)&%{ZK 8sTJ ėʆ/hBs VYxGPA}z8ǜZ'07H$Z+4BKV+ehr Z˻~^~L<äbN&a}I8Qƴ~G wFbt{wE[wI}y2P wϾ9EFW%Mq_ b)} ;q>G&cfm7o8ȑ 29l#ḷehuC,"tkNc tBaQE&Xt%`g/fR(<_mBI\U 3|$`1H$m^p>py{,B|Ĝӓ.cn.(w *wGy:yz5_0R?i8]V@^yfWd-Jc-T >QC N.Jd L{X $]vĬ>v^@Y4,X *3OuVd"@2VB}Q?BnV >LC ]C# WB+ @d}Njz LkbŬ^ֲ0fie<( R!Jb} %7/}RY Z̩vNY'\U˸,a6lg64a.Rf`12n#KY\tc T٤T"Loe[9Bs^5dhbSz }َɍaޕq3`ֈi <~ād<I$&{ 1yCLԙtLt˺I 7~@A=ҵ ~^vL3nz\5o‹8|zhšm2; endstream endobj 507 0 obj << /Type /ObjStm /N 100 /First 914 /Length 1603 /Filter /FlateDecode >> stream x[Ko7 б=T#"%F<ЦACZÇ&zSg8tܢ6.unM\:rlcֱ9oʮR5ŵ$CvMx!`.O\G%&xTj#4XH.EJd4L>`34GHGƐIQP=):J'%GTTXen \uw3\d_P&bb+R m&B| n+To|4+JkXco" h:NɣFĒ-J([sƞ/"žPCS&`bի9d3%b{۟Y_n ҏׇfuiX~>lܠm՝> R/vZF@ )8E(Z"j_,Bi{u#ڙɽF} \;8xBͨbw4Z\qѕwg5<}p꺧wwq=^ܬa=\?h\/7}~ڼZ۽s}br%FH$+hܯcz\}^(N}mhcl6>jb6}%ӗF}bkӗL_M_2 \vehj]Ą2x\xcNgcxd>ᳶK>QdœPYyXm3 H3M#Ѯ"ֿ3^U&yqԈ[ƈTJ&Fd \/,i M$qދS/XZ[&gɼ7h6$y_ⱺy%ü>D/=M4o9מ 8/WJ;{DI;39Ye\?4s9\?,98#|d\Cf8$g 6}eӗM_6if S0.^s.s \89ιp΅s.s_O9'IfsR迮4k[>U/ Q٭f.4s \hB3̅f.4s_,̚'̛/pN!ዯssjkqfl!qFS> stream xYIo7W((ڦMH`;rHzP,@%}Y8e@ GCǏoe!=)[X!+ i)Shi#f(h;CշZP2(1&NVNvsLPDeK~[2RX:V;,Y-̘4HoH F{sw( C ZV+ 3B e18i i%I#$ƒ}No%3ݣyzqRPuıUud-lAg :[з s)vu$HbB)2X8XFK~џsqs |yoꠡ0o~-T`2JVHi|;dL|H~fq!׫| ?^廻~$G'UyN `T`#P]2 =B%d?{]z/&?--'n-d˱.̕A|= Ev15~jR zxT!_M\n>r[>wk#XE`K,uTp&8Yy^ l)} ;q#>G&cfm7o\^#S2/$j i'eOߌ$$X^@p]ڝE<†IH2/.U ."WEHv3ʲ;1?%Xo֪ P(0msD_g#/%_-]@ X@&( W $ q%[侰)Da*6-jf@eYNJmnO hZmuJRY< ʚ{rȟI8;-x2[z䥾$ݝy=eJZvY(P&Du::+t2a1tzBf^аB?NWAm~jP8M4;A).Z5 n 3+f4ڑuk}$(VhU{>tP^y5͗i ڋb#x0YL5 f;J'W{SNS FLCg<6v_2nK$rBL!c$7u&]:6E\%̝IIױMWv(L'b8rp lޅE.Rph! UC- Onw;_V-}5"%-;T<({FC(hZPa56IÈ^<i !@+ \{ 5+Dh'olW;UulzlʟlWnG)>?$*kBqj:{X@)yݧ=vwH endstream endobj 666 0 obj << /Length 2141 /Filter /FlateDecode >> stream x[K6 >S${̴ٶvZS?v6 E,˱iڍ1eA>P+)! k.S SMn1C?6S}V?k?.'3hYO&(΅Dw/WJaiYf5I-rT]Y ł*aaFјPV_VZ΅ϞQTQcA 25_ޠAFzuH#>2T9ƨ (;$\bbWz/x[/&zGpGa1̋>b.s'J$TZ#_&Ì)=22x~?̸Fɪn_bM@#h_=Ë@Q8d y;u3d0Ft٥'z)"~m@<|fn\B0 aKgrDY"`]՛`3cxU  sM-oN5ď%Ncώi`*Ԗ&6DC2Yݭ jbSrġnU|t+kծQyJɳTOϬ7G5NCvDCwD$WVY`@8.2NCSa$7fqrZc֖ ? C1C r=& 1n';g#@MDpF2YӔY26$U!h!HfE뚩%&5YDs[dA)ep%|5`/VfC"H5VM4ˣ@ՋWE1Ǒcp؃c)K}gZs0^/^մx_- ~v 6l4gM j.U塧hOJyg:zQ'/Hvur M^ml㼮}gh ]5Q PJ#D)5XRN@Q K~,I9pJh(H%S8^G)ͽik{;$ t v`onCX(RFy[-&s9U1!jʉrw7kV +K٢pk7i98ˁ~J: 'p8@qE➨qQbmd^ :v5aqDS CH C$\.PBZZd$FDEK{ y 44ؔ1*;V=;AпoJl+_Ifxf oC<—b4 !> Km9IƢlh {ϋn!Knl\t'qG";i lYyv.qΕ=.\YLEWDR gdd_{_W±&2cߥf^C|> stream xZKo7W(Y%Y @I,%B$q~}g]jWrH!.w883fHZ 0"KADA(nF֠GTϐG|}k o`64/ i4_8yN`*PTPWC m%!^jL04YM} *nY= ƄjdzR*m.FY5 /HJ[u~"R5t茁lo>#oos*C/nЌh)՜XԔ9Ans};=,6WU5ˌ>{[;z8iEMo}ļx0gH3y|1HQ!2]g}v]Y=<@qٳO}y8AU`K9lju7l8&.i5DI\S.]uV2Bpu TO'vN s.l <.GQ.~ cIs-w4aCu`[ m\q"X'd53Ub7m915?Z V_( S0 m` OE ; #YIVKOVуZQOZwN*kS\_0~˒*k61(O '= 'I54VO{!ŕw7P!oq.XL37Ôu!@/keQe271&FLtc[YI8 q-\Eҙ> e> stream xYs6_Kg`&JBȭN:6Yya,k1Cf!{+C]HR"}< ; }hΡNgV͠-Z#Q @bh%Z"4GA||a6H`}rTUlʊYkmZ⼉3c.DA.J g(ᰏ^[wB%]F8w ڼqFke2p'te]=Et8ܾWGΚQ2B4"x]UpRV.%N.g|I쓇>C=qjs[9e^`/\8wALqS6T<틝8hxcٷ# 6?>^ԞϪoED87q;"U,Rey7\K _agdMLR}1;UG5 0x>t0(jFt|:3@y@^[c6z8?/gadޤkQ5uĕlnT;dnnΩ'<,Z(of 3I <4ۥ]sM?P̒FCv(mx~-B_Q[n]V@;*B3HM.Ⱥ2ei`A *V;F:?keΒse>+f4#߀?T|mrJ|ٿc^uV3dfҸ◣ߦZJ`7jfA-u3ٷS?'q6F'zchc*KH&{RA[uـyJm'To W5䱄0: endstream endobj 613 0 obj << /Type /ObjStm /N 100 /First 918 /Length 1616 /Filter /FlateDecode >> stream x[Mo7=ǐI\6 >(u@V^ XRoCrZ3VCvPџLJm*)YJ6xC>]Ru)Rp& 3 L"1DzS{9O#cwyph'\bT T]ɄdL4!2 c|6 8DGc_alD_3`$ xI*ĒL2)% Ra@:pmKCFE,e biXta-Y,hMvbi"I,49X/ MN9  rK3hKS5K1;SXd`<ʦXޔ"€RAdM9"rDE,ūF#k_3SL!7G96\?pjIv ,N!<@=,0:Q?7O߾/7vzwuySxf~λboJ)[VM[؇AёOMhlkc_V޽?0fĤXDL"uY"fVJkmlǤ7T&7+RŎd3bi%[meWp'  sI!jq2 i.0j:p6فQfX9gRI !\!rqڈKcV..gp]L\BJ}3\ٗцJ![H[\z>cs$=5~-.2@1Af۫bm8j_6ƏWO` n]X> ;#Ԁ_ K!Rƙ@?ękkqS= !HUk5R4Ցd8]c`韭Adj5zF8L(~}X_%` [An"A)vEI#`$|,Œ%iyvrj+W+hМyV3߅TXKz윖!kvrj'-Yˬer\_x, O%կ64W9EԇX endstream endobj 746 0 obj << /Length 2550 /Filter /FlateDecode >> stream xR9WHJcn 3>l 6{pBcy;<͔TzTU740*+3JSUτ-69+0"Nj"\r='[{#G*H3o߿~cƑ˹ȸ<@+ Ջ(M[?^,H w3;u  X$! +=TNN, DPP`H]12^'H]ƌ(A-<9 n>sGV*IRo<\mBAnm,hcA zyRT'%*Cݠ[k1qT3XєyA?o/ޞ^>[9ۯyB)36 XƂBLP4ajѝY'|&כgTjM|~~f2cddY͛vG1;QuNpE+ !46^\LGg;=;vwH7|,Sr×زo+T) Jc4۞_π6 L'~;8> 8UyyCծa<!l7䅫jUXJFkb*ipKJVc!BBeb&ijdB Zq'UZr.I%lQty!#=B05l(SP:H5Z(9-PtT^HO]b{Kij1݌A:ReZ_k,||}p~wX6 vMDMn*(v5aq-V&(cTk(:2WG8 u)p X :HoHzHa؝jHUCڇP 19]+wFMV%9KmT.~F`jeTBxR͛4VSsIP)܇>~b#!ڃ @!;G%h4T}Z0G`B]T pXWÈBbSH+9u[{q+jhvU3i.l \Q00ojܨcH[jz12P\֒hPf5K;) X^'C[wJ'm*zwt;+jϫvIJ ^ h 'Eϸ8-R.[Eo/J &#i7]KG[F/*UQ\3bL .էZr-y]O yCƀPB=C"h_~ނuŻ~+X٢ j565Z & wC]My+afIԮe01*)ƃԕc OuޡR, |^BujpjDho :k<4f.vZ:'+/'0X4q[CUñ܁5H3sTqS݃6 zf-YVhwt-NBD\re&q%! Ih*ZnXm%Ќ "#U1?kak |$:@wjGA D eE . v_G d'˜| HhA%z-QCc5FZcKV*g>EqNjjv@FWoGci@' OW v pZ.ce%N _1\ G)G?)Ǐ;en߳8hSr}& f*ݤR] T*P?oZ(@x2 > stream xP( endstream endobj 773 0 obj << /Length 1077 /Filter /FlateDecode >> stream xXKs6W(TsqCI4CMQ")PS."iUCf A\1D,f2g,z _ w?~]OwUn+4~,JH7J~Lv)߼U&@/-'<8Z0 r dd MN`bQ'wwQ b P9x{9Pn* qD 1O`=MZUm@@nr^d{+<W[CKtv*};Q:y(Ţ8cF KIÌoJZZa]~,3!R3ƶ0YCHw$ `"s.`%';;O,)^P;OmE.=Pfx zh=t `܃rbo5TS4a5}Q K տ endstream endobj 801 0 obj << /Length 2126 /Filter /FlateDecode >> stream x[KoWQN{ 2I3rX@˴%@eɦhVfXVUuuu=.#./JJ#qŰ10e +twqu+f(iG/ԴcʠaL>X O58)*c˖T(Å[#p{( C t# 3B]3pҴCGOIP-]8 :Nf>G's.Cb.Ф8@2g=Ag:{/o)CcNګ7H$Z+t} V$&[f_>.UoEaك9Ag:{G0VRF)L:L?9# 1KVCKux\7Z*YAϕiۧqPg[0̧ S0*DF()'˺ϊs 9%rє7y~_D?>ٔ{KfϣLmzlo9¥}A psy.Kr>'uUX[{Å@q`MlMJ{lN`Sn2QD  1tm5=JZԏMvmK[q7v3ۍ 016ўŨBQ}Qͤ"/^!@}T! +χ`0  LP0Q3qy r=NBjݠ[8 T{ݓI%C./ldt2L[*z& >f , ̌0}nT-OC aX")Kew}$+mʫNXuՕqF 2r}NH't9Sholz#$34l0;ըtınbU?J:rl\.7"-:W/*( U/h#I(jUU{PR0$~&3cƢXe8=y~5eNFNg8(]Mk[NNt<3=a7SGy9j`vhCcCnw/0gu;`2²o'bKp}Ov-djヲZ4 T2+ VQ<_s?7* a/dNOVݞŊ c/P|17ۧUpa{(ՍZY)wjK$phAK'6ɧV. M߮)ǔ} 谫Z]ezUFݚzLa o>b{ qX@a{|Lh-!_Wj@O|`_KM0 =m/` []Q/%AD;Sd`Ҩv bNRwIBہnv(Jq3,ӡ$+}t|=4]& lg0v, 7 g:wߧ5C sߤP* 32 Mb\SG67% endstream endobj 775 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 4.956 4.956] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 805 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 720 0 obj << /Type /ObjStm /N 100 /First 918 /Length 1887 /Filter /FlateDecode >> stream x[Koϯcrg+8&RV",F+6{Z 64"Ⳋl-YʖP*\N{ QGJ"HJH*:bx) *Q*x\ B\P]fTg c!(Xr9!@TP((EqvG.eɗbe _  mhH9{ %$mAXq|cHl)&僖*BQ3@u*0%VLkQ AO)Bv"@'BPМ'>Qd|R%WkkxW1تcQBRG! HdIxNL"8+V;%fH@NBEf T -4GG M9W)U%z:&A_kt d̢qʂwjIFdtlw3U/Ae,ZVo$X>BEJX*^GZ lV O*E% ^ ! 3H]U??}l}rUbwuڳ&R;[uo=wb|ɒ a%gd(}GGGԝRjnKK/t|,L3^gxc cOdgeMĒaatktf̦į,"LTh0/hFI&E1I2)FWI0X22ɳ2)r<2Ip F}GvIYR3bu iCw㟉\|FӸؕC0^݃hi?:7Y%p@67WWgs)FWf !zׂUwNpډ~vPv~}fྌ2\e#7i'Խ?~7YWhfop%yo'7+3qu_]:[q\(wKFU`ΝTnHcKSKsKMթ1| 7@I>gG7I||>i\ױC:4ʈ|J+cy+p3=幺m9U.n(=L+S.̅Wwc-7 Ȭ+'@?m):HPɗ ן O ޱs&6ѥS Drþ>XBKc },%>>?91se1z+A(*#>y ] endstream endobj 831 0 obj << /Length 848 /Filter /FlateDecode >> stream xXKs0W3'3mЙ$=mwq`v&{jwXB&DR S4D3%f(][|WGOj+<~k^Ŏ('c>jqu K VՃ +'Tz1)vhbr(C ff0q$;+a`vs"Z(WԬ>v Þ]=hR1ܡI&7$=ǃȠA#F=@}@M9ǜ<: s]͗HaI jGb14_{KzQykO֠*_3F5pdȠA)J (nڌX=BXtYVݼ bg \Oڱ e`ߨ PdBB9|Mm|?\6.ܺ+OaKb١@P;Zֲnv{c3FTbʽ߻iU({ģG.DUzeN1c3ϫ1'QS`8@&;tc#($ԑS!q%(YU> stream xZIsWHc_r,U>6rPHaJɿχuyl@b_wN>Nl@8QV2 N2!-y$ND$ϑOZj=)ό $~lQԂYm?  7@2#pM5IN/ÿ|ywqߣ?/8\ VBaˤRq9s4n]Өӫ#*?ks GTńjf…;d2ҖH. 6Ҷ_8KBx~Kt#N Ō?\,B4wL`%!_+nV{f` 0N J% Ps %jـ7j*=tzKs&6$nH/[Hsܑҹ[QZ52 ƥ>ypŴS916_bW}JPW"d0ꭽg%kϤ RL֒Q]=PI{ܻ§cbƀ.' Թ\w;p(wzGE;Xw"Z"p8碧h/mL͂9& 6PL1An5.v&vMiʞSlnqǕ\hPĚ#HDܑlt$/?X)Q(kyF%n{ !B,{TH6N2ꩽ3à &t9W? *Vx,Z2 adu "M}R/OG<#Xm(>V)oQ5OG!&7ugR-S`,TL0…7+SƩK_di&\&U0qf &FvT0)y̻MiQLv2D.U ^h_7[儗|H [TVOL41ZD"w| њ>7u@*89C'9"oHN9Q˞ *!:-YA~M*aZ[TT.^> j" PŤʋq EnO^'ylTq)U Rx]u,?|ͱ%!}^GK+X!UNWYQiCrl: 'HSkIz/H &&YjNFT,Nz-cmfy:pLMuu9]wz T|;ҡ>Ý1+Ÿ9+`-S5ę!eіtqG ^o fN_T=]+^5뛋٧O WQ"Vpe~hB5LQfIqܶ7$Zt-f:+zc={7(> stream x[r7+p$/s,> mFЁCR"\D'4PU--DV!BO>FN+CLHK/ǃгG&I'Wij=)ϊ ,~lѽԂYm? 7`2#pM5IN/?ч_v>3|y 9>Ŏ0L*' asu "8 <ΣJ2CO.tm+;6;i,XRNh„y:bY<>թ>=>]#_\>Y~Y>_BDUP͖p,&=SSF qi\/oInP1/<yˊ> ސ/΀7VZQ͠(a@m#,(,*JDIޮaLe#D"PS']3(qF]vCz:GqGNHk*e>ee.ayָ={z,ѭ(VTXUg8tP<>Qشb<9ćyV^0`-u2i+NHsYÎL(F-m R QI( $K4 hYE &#ӪmzfU86zͼ>Kχ݁-U/lЅhڴi@SN*ڛ|Ujr  qpG1B!D>F IW$]I:EĦ7Dɞ$31hqr!! |T/ʪ@oQ I5QX΄H^rUẌ́NFa=|d,S%S֏;dy2Q5'"P^*LQ:?,lK+s#sFU".)d\<M*2Km(Pb])%?pr~!)/KLd.oonk,҆!bG[dԒ<*G+˽R]ZLJ!1E "ċ mingRxW{IK*v{uB1.ASMJZQP j#_XfgGni7m Bo( ̀@[q} Tw]*Z,_ tl71L;!ݣ j@QL;'.7l(nAQ;4jԤ˰IǸB&C:i#Pe%X O[ l3a1 =m&,{! 31Ħ9p|k1NRy;̾<OFd{<Sw:dX #35̧"uy޴XXw9 Z )@xN|Uگ^9*A^fk{d0g'kϤ RL֒Qk:'zwEO-b6t9рfPjr5S(j-۞3915 d Q!pO&](˹JTŪX6eljiM@3J&ڊD#<,^xJGXAηxYRޮkBʝo gX)Ԗ)J}0dn*R&]BW)ʥ/T4Ҋ b.Ȥ &׼BLaJy4-/#&rOBR|7SN|yߓ~ʊi|+x:!Pfq ;xLF Fl\͎LRmۜ3\7${Q˞旉*Cth[> stream x\[o7~У Ucm ,5ADZu_Rwh'm\#gCQDprtWWpd^"dBZr{F =$I='TI}Bg`v*I`*6ww zTI]ГT:˻xyɧwQgZB9X WN_~xqy}> +,}8;|.=߾p#/Oh@B*&=Ssƥq="vtɓS+%vWn7#>½3U`f 8 `@dX *U;J CE4`Z)QHVG}K*.1鐖+w3\%saL]N3Wɿ_(~xߜiP*@/UXϤW;`b-L[(!جnu 0~rbMWMZvLj5Anw3=Z+ʼnJA3IvuWPL]iEȢ[R`λ/b_1VL/t&'uJʹ8NVNIN"rIfh;.TM!|"h` io!Dҙ+#I+4!TɁFT(vrCuՋ"%h6^^崰Z:ьm,LbM{b-Acv՛c$A/]'\p<(塩<>CPk%4\+BX1W93Z, @^sXbVƦIL,U" G%Q aI槾jV-YtDJ3%dFrRjD%"<*u$iEըQUЮ*m ~*|8؝\<^.`A_!v`ZǭK6~#+JzԊNTj׬rr.Gd‘?2!6z'DcƲFjYrYnN~֓LyVfZ´xv3bjOA55['qVgda4Mկ:I 5G7-tA'b1Hipe242c Uv(슴;@L'bf 2gSC̈9}WlF CʷhbK}E~7PS‚Fd0ctsǕxW/fгb.hBtRVɵrөvJ.Kz'o qNFΙ0?6d `F!p=ޠbN%/?R64u:vfm4X(K;%*ڰ :x#蓢OS3ʢK[pC骳3 *"90 ¤( ;,$95ՠ +ZVo)/gRQkZ<ߡH{|٣xܼ_IJTv[U*L=*.DL/ؽ(ȕd)`_d*U2{VmXkύLUaRbcsTIV|TUyOJBǁ\٪~f*~`bW >VG冊0IX_=eU$It4+;wڪ[u:q%f|*4u5[׋}"iƷ(n;8-xz) 7p#~Pa+\,֒9Xf<9wB$ Ye\ϩo#%>+%+4̕,%ZfB \ÙTr3B5Oi-sZ᜖Vk4dh® 2<`Z,Ep ފVBul"GC$#0⛸\6(9hVAt]4:ڀ&phdLmc)ɣ9La+\-'cq BRRZZx&ݡK#?)AWpU uT|7sh2" l7$fU!X*NaU5XM *qWN`2}*l^NRXQ_YkfqHuب@M\%VG5*_bcZXENZDnCd\ ;3;, yCU5~ `Od *s:킇_nO9қxV\ҳnRC/~zV;Ї۷ӻԲ.߻gחYnCP8O/>ci_A3]A\P}XyrOߍN%— PD(shL8yt r6Yixj47ڪ*ZTTRZM۽x/=e߮)xOQ0eU;0naݟǔc' }#o,~O {S> n'~ǯQ}bڧ9SRѤ^a endstream endobj 862 0 obj << /Length 3136 /Filter /FlateDecode >> stream x\Ko7W(8ƛ {0rdY’%E~f7{de%VbXXU 'W|qpp 'J!I&%7'U{_$#7ϒZj=O_Coh^+`Vr|qO \Y^_&Éa9K޼' ɛwWW'x$9;S?Gr<j1+,f3-1i}9g\rЎN7y|*3:<|3`?<.Z嚀^h>%!>;8[jb![ &J "QAK^? ںJ44_i QbFLk#% I%9xM:e{e3U2'd2pLBã>?k wrAWa=^혂!Q[XH QCpX ƣaŹ^7iYkR1Pzw{jV&g8QI 4SkeWZ,ԫ3X. !2=jWL I]R3mSUD@ffzKAPAa:@R Y)kveY ǟ_H,{8G:8H{H:st#IK.wu{'9PI2 ԻYt.zR墱cc9mj66C& c3i}ꏖ ;De1`nz-FbutNRh=$Vu`78+!ths3Ӿ5Zβ3rPequ+fU\^pqmnr![-}& Oz%B"b `Fw!p=%kPxcN%/?2mhu$hԱЖ9%*b?ÅEΑvMIӧbԌV8|uՙ *">0 ¢(~<:vxݓ SC|twm U &eLJ6jmTv#҈;i™/{[+I)[* sj^GŅUX% vWJV=)i *t`AQ WKW8SJ5{QmT5:[Z|򵬫CQy&q ѿ5g7Ķr^ލ\zqT͡-mbj)x &i]\8yǓ*F陋4uZY|?͸QN C#_Jm4=$zBI?,)ŭ.F#!Y'̣1`m/.V\MOw(魋Y\0zUVbxȠHQġߜ~/o?;J9>Xia_Ž+-8,]^#,=yqUrxT?W?PӹWuOƴ͂~~߶ /*FW'7{'ǷidWGg>߇'Yn![Ah'?q ʿQ85sPC 1wc*!f _No@ua(e;eـKcڔOxtC1n'@ @EFqB+[IE*{ݴ[驛}MS:aQ v` 3 #8 1Lar@ޓ= h> stream x\Ko7W(8ƛ {0r0dY’-E~f7{KNbXXUdq3ɋ# ^C 'J!I&%7U;_$#7gZ:j=O$PWj6軟.(>DÂszG<3\i AWo?~7>\ܞ_Nj\|r{ \= jd &LXp|s{L󋫳m!śs6;u|9~B U?R5ҖHX3. %+4?0snrM@s/HT ސO-V}[n J%VQPAM^OQkm]-{e|- ClY6R"N"G/IfJCL]N3Wɿ)~Ϗop ߞiP@/UXϤW;`Tt-(G!حnu QGy?x1&ͫ[fT5r ;Ŀ݁ReJNExz.5yRٕT4,%鼋L/kBnrqRLT8iᴹ/PPn,o]qj{|B4pUL$H2tK#)BHh$AK_D},g:0Y=[)x_ \^rQًXًVVApy1#+rqĴPm⏚;xe1`nz5FbutJRh3VBu 8+&tqӾ5ɚϲsrTy1u+fU^0qmlr!Z-}$ MZP Fd~(f{G6h>kϜVMkɌyc"P `C <֑躥UVZ܆~%\Tn[UEDG| шeU=Nh6.el)B%CPcUiM֢2Vy99 fp,L$;`RV!9yܻGo=j aef:|._9L[ʎg'@ 0(ƹ>$:]Y~U! aF&IRD 0S4P~zBWt†Np`[$F&3f^ FdW 43?0hV9bFT0)f9t.6X/R*[[XHx܁W`fq ŬW8z#|Z̥ZKr%:E+fD;!9I}SJ?C9Ǥh9N f(11iŠ;MdJ¿+Kdԁۙh+s  (Qц.,wk*T},J(v,mML μĢx#x4ܓWpPW.j!XU4tIVZ+݈aLbon&6'w%9B3uwtfAH1v0̃& )r=RIZM/FA#]~ZZ?=#^)jkb2<vٴQ ~}}ʲngY1a}' %tT} /32=iL6Y:lW  ;+}~U tŬ=&X =V 3sꓬF   e-|icr[DE"$3Z~Dktj&NP֮.1Fen-X ݢ^Tӟ3Eu3T/aFh;o{Oi?]+,` qjcyuI}} W}JH& ʿ.FV|QV8XWD;ipkb A*͓ YV)8Swgfpw-]T.:10N$"oz,-ye~4$dC*q:׃|nO9;3 V@9Ziւsq߶-[[!ӛwӓon9gWo1[A`i'S$_e< &H-9FKbq:|gшяwyg* _΀@ SyKe2l1ʧ=Q`d-s$$T+qLkAk*l6Ǯ_UMx&?ôW,g&7*yp#A@#3*:Bx:'O?#2 endstream endobj 881 0 obj << /Length1 1433 /Length2 6115 /Length3 0 /Length 7083 /Filter /FlateDecode >> stream xڍuT[.ҋ %{!$BI {/"MtA@T)ix޵]Zy=333ƬoīACUp/O@b PпlP' _ %$B۔A(4QhzB$PLR@ ( 7(a@z)!0G':ߟ0'(!!E 8@r3A#E+ .rC e9y>0 EzC!_ 7i|lc'_BBh+ {](0C"'_` 0+͇E@p/"y` {4AU>O0+ U%$?e F>W08 ; PAcs"b v25#h " yC(4(^ CapDGG|V~=|٠; jJ$**"|^A QPXD &&wo ؟p@/[37gE O[ ?)k_Q;RrusE?p^(p #oցB`^nj@!Q;s0OU/Cꣿ C_w( _z.{]=UN# OPDB"A~W" zN!P #PhZ^$US8};]({//D@B 7 M#R?jn|d0 Cvx$y{Wa.-]l^E?|ު6z=aY#EtY>dhb>wpG7L J,Wϧ+=[1`RI;PVT<ɜ~&gufrz.BGXU+*f)"GHޛ"nI=TҁhÎ~`ma]I6hSkU ^.$+z*(ԗK#KFq@JNT2z}s,&?%sOJͽ}%I|1tBrBid>~T1 2\d&9P ?z%t#᧦pywIя_W~My]y`2ش{vWM N2vZ9/)vj cOٕA{S@$'Uଗ?(^q.yi+d;"O)lt5Ղ4_dMy&~l5I^?`l/^:2:Txc Z=J@' -פM!&gYRkUa Q/kgG7ޝu!?t*/{gwg޼+\ mAj?}~EԑZ`[rtWfq8BիƘ UO/Rf~:#⿽b8"p;I*_e]9%Y)G')b5PW Knpy\J&yؤќAS1T^A3=ˬkN[gP X9H&`X?$a76z1rG tY51%|/zS]tp8uq1JkڇY= 9 (uYBEBeD]c2ݮ DH2i.oJ}%}UXW*GcEǹzT%fDQdBZ_`^[wu[Rg2~PT>gQ5.Nix"M{i7|95L2fN^T1 |ZhbE2 ֥'FͿ_]{MO.{|,=zU)PGk15vhѸKs(~DL1`2с'yY.{3x+nTR,q'{&%,m1Իڭ*n+To\2nyK4䰌=(_:?8;|xi1P'(`i`|4$H(Y#JH:ŸBV3{-"h'QE/K7W<'wmS}bܡsRզd+:^)I7AyCJH~~d;)\3|e|{Bԏ_ =I_SP_UĜ'%7tTFr&5W>dKˠ[RŠd$Z-\~ͽmE*oeg?f*[հQ(g/J|4LY-Pw̻S]7_~(ow9NVh8ߪVe,r;±?0S[u6#@[aNӳGZA"v\]n~M{ yq-Nek5< AkO:/(NGDckͰISڔmo,plf~VdۚF8 8ƻyI" 2LfA4=R{W*Wsx~q&U(:{ ;5  M|wRťME]3 xpY_gY  2ԈǻFt3~՜}N/.,ŏ\&3<ӢwY߲KU?|TF}b ЉeɊ~je)4GIhܞg 4O6"*e_k3TXc8A&}U3;c`c_]# y.iew 78:+3p%)"e?zРy%8oMQ-Dal5"LK0x"v\R:+]aぷ? $DLɯ[Ncf4fWRy rIV7kd-n5= KX'y2Ca0OWÃdzlڴjQ5޻Gw%3Ԩ,N"[01,1Vo Y#燨~JB^1C[tgkjqSdtYcl/|1F[?1o=1imim"V~TKۦh$0ɸL^%|.!WŽmwZ-w+DsѷU "!)|c^OXvmlh^Z1GO|q݋`( 4 7O N^(Ox>Ep 0s9wQ凬g3O2ݑ{L4(,SpӕP՞CB|Drݾp-_ ԈFMt]}|&L>XADDvqh◮>J=jjI (+aQih{c r?M'4M}+lN,WneB3nQ46&qv+x ܏ZϲXRozR$9,qmhfy^8#9ҒˀUm>H5.ۼMLNuU[lCڎ ~s_t>'yɩ^Gɝg3dKXS9^@ގl\OO/^yjXp*v+N'i؊ ㋵_~ N }r;`L柑L`B* /Qzd~K(NV!YBɰ8:iwb8eG/0*R6ecY-֭0^6 _ֱh Q}񽏔ҳŤ%3݊g0ℱS,3uUzr&Mj%;vckD eQ sR?q^{2ӡ*sǥ5£5r Kø?vJN+KhfjJQo Kzv-;#w#xC^x:9ΧoWo&02.-Z`szcǕd,ƋBK2"Z{Ug(E!+v iMO@s*awCVFm{`Ǝ^W+]uVc NauMWؘ~6NMF=,"S5B9H ~L'm Y2'0Ȟ$kHX6)XZw5l1(d֦/,hT@RkY8Op^.LxRޒgGKX5)̹3UВ 2{̾Jh/JB&ϐTscXc`RW+>N")X =qbz. Oг7}|y7ق 0[^ґR^J@hS?(Q+ASѝ3F 3T$1@'a'a'M9q 5W.scR۹Q14 ]|@*O)PbjSZ[VKAo^<†>.<_i-]6G;vǗ0y9\ Z&r?]V|rE T.p]˓ƄX09@LBA/=D܎0-uٱ>S9>#fJZUSiͩUt)6NWQ˞Bv/n/ `nwh`Yn׾B SVk U'3x;Yioץ{rT%+uz(x͔^^:q3%>ˣO$7k5*%B\OwrӹJ]lna(_n&Un |b{5V fz]pE~q3c/'!3@V31.B׹G({\܎V61UɹC+I/JE{zO=Dvm>HEmɱL lKCY/VdҥV"茂z UjzG#A8/Ze1\ed+h24eNWKdžx25 蒘qWqk}=g`~?n]TWR|𣇍3ubۥkn6aE#4DYx DkG_39)ǛFT?MQrݾoMpr!5Au j^H=RjʄKVI 4+~ߘO^NܶD;7t[gbC2^%4;чI/G`aϊF75E4Xdz_N0>.`^蒁pBs4X+a'8 `[yc|69s`{aj J(x:'#h#BHϕ?'k|_5:rBes1iV7sUd?|yrQuIMV}_ D endstream endobj 883 0 obj << /Length1 1417 /Length2 6030 /Length3 0 /Length 6992 /Filter /FlateDecode >> stream xڍwT6 EHФKBPDJ(;JMzE@Q*E;_,{}+k%{<3=ϼ -D`A@I@!r0 NaCcH 0oS`@$$A$@(7(C&Ðs(!Qh_% IHPpP:\g a=KEI @\0H,7u002@CMvc~;vXwPy# m Ht&#~CP #vpg@OU[@?g q!6xC ~(b0p_ V C`1?ϧ Gà{\'IJw}Pma@{+uY쉂r~|PHOȽ07~O?w l`p0{|p/?^aHZ, 6P7C_NEE_X/$ "{?f˪9d@!?Kdן./h7/y ~3>#g_~߀q;{A$~D 5h-{5( BE~UV:p#`H ?{P'oDs H۟3)$*Or$;Q?0_ X|`Dl0 u4#1KM> O#RA5AU LKCě)-I*#VqFZ] UKv]Eì;^u"+61S6<3MR-Y&g 6S;'m=Vݶ m:f o_ 6}%]< \2OM%vD^I57E*_-`i=K"Ǭ,rd*ivz uYmu 6{ vQo#jb :'o9sV(+QclƤ3z'`-ɱGZfztdsv !l*zQ.{.09sj+xTL<š,[8%wZX<`+p";mmh(\wZM:hjue~߻cBY"}#($5d="(^% ]a{ cl usʎw [ ݊qgi]rTTHXon7ٖd=?Mpx3mWo.]"|0;E=yJ\ 5 \{ժ0ۜ=Z4jk?D׌]a{&Ɲ fmV6H[&=WM~g \lL=^E>Tr%sl m7Gx>.쳷E93Au LJIA6mo6"ܯnB8 [5 yړHq`0j $~C:Y@NƭȻEp&;+Ývh|e-!;)6.(175]1,FӧN9|Q6qi[fR@" bc&$%o5B(dIFY8QlGc3V +4þ_AE5@Z մ"Tf7;=S`߶OV$7\@9!*ɷpF{gj\Q4kN[ݲ%PqgX5-G'NM3V.T ]9K RA^o0"rŸ|Rl# =W:gXGyL¹ネYY9uO} CyIMrmWt'ߛb'ܹ ;YN ld8z?tN1Qϲu>S̖9/ٱh%p-ۯ^t"4W,ݕ a׻ pÖsrpa)fݽDwkAWweOߜ2<7 {ME aO5be=ld~6:h0TqYucmKuC,p΅&[t 7ϕ<Ե&w?=wQϨ'S&#PZ Qx*:jO XV pʤnEԕσEbm'Ÿs Yk_DW\pyyoQ=N -W=I+U{}1+ӉbQa_(QlԅOHAiu WW*kƬAJ(RJUNU3HࣘB!h4A݊+#vz3 b*8+E)>̿VRo"dUƜjjwwhǴ5>5NO_:ՙ#]0㞞SL婌d0됷+"uq ?[Ș$_" (A(;qi*.!G;1׹2OwuuZ6N=+6=j^{s#nɵdh60>"ecrRh?iL1 rs(w-h"n7p;k]\mSb Lo#(;$D@=Wi]&ď|Vtrt*t?7?\MN lawM;3W"ٷGU#f#W'㥬$ij7$u>DObr Oӌ>nH/L-+qި;z \ )θX3Ww9D14V:\GxNb1U L'_EQVCIn!5埽hB  MFD=Mq~#; [ޓ +&2 oYM[a3sh|UĴ4}_ؕԔժ5B?b Bɥİzi6i-t,VܙSwƬ`T*׍ *G Ez=߶+D4<>-dyoH Ўa,̕0ȩ .}7\9X=CZEt{GŬbˤ bʵR mBMt{񙏜~jLY#CGb@ ?ynwZK~|b^g^adEMubi1Y aAzq*˒7"gլm.Cn5slY ߨtM\Q"SvٴxNM-}<52ڸ,*PleR~Y#^WY<'/8e}^ǂ|d썵I:s:\%YN@zh[u8jzOckv:([i\V 01ˤ|0[R2]qm]`.d[U+mO]oEW bO):wVĔJ?iN9z$Iy(#wG:={:OXqr-V.2poĴ[@2?DF?#Zl(WE^l,KxN5j{bvLez8^6WE]5 jH!N~T֦oU®0#ՄdRueiZǪ #! -KnB}Z[]hiG4@½JO,s#Whe1I۴ήϹ,SuaLZ+ ZorE#(P 7}.Xe/T9kywBdf=Qm_?+w $!AJ(v#cxPGT l;RQp!w!tA >_h~2-gJDHgf ө@i(;;e4VË4{$6؜[! t(Kڢΰ=#j,Ҵ_ zSk\UJESNY1`AtY!kBZko^ɢs93n|WW2o^S1rxgmtnQα&Ůe&Z7c9einM[q_fVR'&hLh{FӉxW5͖c!&$^1$B"ms||!>̵j?ƉS3B8CjÝ/DBt^'ݢ_>Iٵr;*V;T|ntM6%*D,Y^6aGMAK7qOV2Tgɕ#zK! >)=-)d<^x1LL4QqrA\.X.2hXf' W\L DB.ݹ5(w!oH%f&uGOAsSw/$$IHaF ĝ=A:{  wAn=@NDmcԟT:-zHޞp |֧A:[Nd|\;-i>9zHF Q*lȈS3:R~BSa4/M<dy*b,ΦPiC~+F pX_)n,'rsH毂jS]ڭ_QSf\0i3+xc [1z6}Ms|Lqhݔv7Xk_69h4arY⡓F1AG4@ͪiw^H3V֧ ŝk㐢}SeDT*O9;i>>nMX4VJpN˧+)@53#UXuȖGWO71؋kZmkǑBd/i+dqe%PpyCzrm[;SADWkj,`4^V6*!0֕o G $6r^9O, ՙDX˽5T)6wa~nrAtN&-oյNcMJV)CX*P̱͆MC +!ЍKI(x !˂ޙ3iTzw"Hٔ% " 9 Bu VPzs8> 7Z'`t /$#y:[xǑP+^^fQ Y)4Hy4'CạXn+3F EF{L]k"Yga>.%N8wgG%7 ȧ(/S65Q8IJ`o|-aQ{%:»-7F,3e)lɔj4uϞLzeLH%Rqv0<:Hݗ6 R,O"k¥YG؉.b*&Lmo:Փ'՟$QV c?S,y{STgv%)JRtst}Հ3ӹ#Wi&HBN+&1ӆ=Fmd}v|wK܄3([D. ~!fշ endstream endobj 885 0 obj << /Length1 1459 /Length2 6315 /Length3 0 /Length 7293 /Filter /FlateDecode >> stream xڍw4ڶAD 3z Q2-:QB^'ZD'%z%|y9o=knu﵆A[GaUB< @^CO@  > c1{pw(LD9j 3/HJ@$#]P{l ^@z#\}aHT?v/..;u `8F:@]P!`g@AH.DJy{{]8"a$n+pP40;(HwOhla$`CZ@(_Ͽ,P E}|jF\(('xDa .. LoT HCq@<p@ [ a!?wc}xD5 v55P[[U`Ԉu0%V8J C_7 5t'ԭo5S, l vwP QSj -n@Bb*#(Aׯ}Y=G/պD*"H2 <@u/1KUNL,Ip -o#AN׉NvF4;1a}zc,.B w)&P[^a ر^y,%Szb&0c%!l~ŋTA~+mWq S?1VN 3Z`7*/ l'dֹ_/:61Bv8{"Ehk^ܧP&U#>qo_<~*|Jdu$V ƇôǷC-揱@#6Zt+3K3Fv%5Jv䬐ۧW%Si_F"8hnęeoG7BxZ*_.tAH6 Ea&sXsA%qם7Cw1ChJq!VWZsy}Z?9>9⸇pey#\z&u`sqX)\6~m{piȎ ֶםOOyZMlx5cX ցk~OJIoD+Ck}ZvigmshN@4㸟!4^gX7 LhӉz{˜l;NX)sIa7,:Fjang"dosfdp8E?֟dIJ&UF;lYUt,M)Ig%> @Z;j0 O L4>t<#(RfGs0:3:* CCc%eO|LG~K=. eRtFґ*0wy<:'<{'SkwS1C'b~_` ݶ< wMgߣ4M~hR̅Swoq#4}ַ֜N8SWw~`X73q}A xٵ|#JsCߢbBfvzoIE}c%]ޡֶsT5~hUF_,d9?q,{GlԥWu|sUY*v "Lv#Ѱ:+w/k*DNԞ(} wx:eMQAݫ["j= 2_4%IJ_X}<!l(7C~Ω ^xvUC°Mow^± d԰@h~I4I}*yݔyA,ިŸ.H9,W w4͹zw[]:IQU%a3E?l bStٚ:Ee-kCYNܛz_y)%G݇Y}ck& g _ zgi8X g]#'J'jy:e}ƽ{I"/Co0[f)= ʰ3zd1[־ u^Tɶr /έ}|,k5:Ycœ=m,\W t T/M hU|mdZ26(У7 sDx *!!Cb"{ÒKTu>AL({&'eUJ "?G*dVdphZn_|AT;{+t)]ήbCkVs{JlYܧ*h!Uby@D"L(ڇf% ㇮䡧vL@FC%XP< ]8ͭ@<sNÐSIgf>^LQGSAfӼ ҉Gj)r-’̢ӦSn [וMު@FI\~ǟ{&9ԓI㘼y$K]*͞)jo$AҭSm,N/&BBNL)CaF2KMMV-d3CkSIH,9GQJǨǹJiuH'Fdh>PI1%O IM,kJ\D}쾯}i:L'SeSPpp_ 3Ҝ-('z9%dvz[4&_oKO9NZDiOWbR^Kse$k;Gz𸢿.IbmspdY6R:x#LlS5]f%@z^rN`I ) ԙ FJr],TS 4[SΎI!##rEtJ7? N:p1A:1VPt@Ak(ԟ:.n<,dVe3c]h-k<:W SeM k$.Lh7!# =<)@mt;۵zg8E?ƕU%L3'EWmW>/*f|k vpKy1+²9`V剳꺣Kb AoHd3B/ I{VO bLvcOkqaϘ˺ψ5-)%vo̚6RkS/AI=wȩ:YnWYL5Sy{+D$UV)J}hOtʋ&f#Qze"?f,^Zo0: b8 VOKcdQ`W]l6Ǖp^N.ڗ?l Sڤi{g]56;Kue['CH H¶IxgsxM;qlMOFϏ7ؓ[8[Ev| 2˸}B '?S~c K=H{ TvAz675$ٲ8=RMYzXr_VUIcҵj$vbݔ1jdDٰڕ{:53,7w0`7=90"B.-r%Ӱv} swՋAm3?Su.C(-U)Ptcگ=  {#n/Yyo?߭h,걺}ЬwcQ%zߴcljr@Ѭ(p fS%f&:d; Ѻq7RA` ~PW=qXe}MŘtaܙ-K,8׫P nj6#ڊ2~ ( u*(8~q ¨B\]Ƒ?SO>ՀxX4@XT GimyMwLW}S;vPJ;D0&^ AX>&+_J,J*2%Hk+H^edd7HT$p5^4(\?,WN epf;]:UM٢{M ^HӖLWMq^QlSv$(4Gb}H&l豗҄ds>|\ 8{&GlW$7Y*~ΞM/6˪{O~J§*K=ӌ6-v/`<n (7(~ڃvKT8K1"sN)7, o)țO=,~3$Khk4G8=ߦ^d$D endstream endobj 887 0 obj << /Length1 1394 /Length2 5935 /Length3 0 /Length 6885 /Filter /FlateDecode >> stream xڍuT6-N etctJ#- ۀlS@AIAZB$$DBx~9{v04V((,T7 0X cĹ < F5 ԡ8|>pED`,w #Tz"@}PB`گf&7#OU e%%2@iiY`ge5"\OEm=(~xC ?4 ?ԷKa/oJgB=\\~7'Oe^h8Pj-e}^m/¢ o;{鍀"q0D{.HE|UsƿUr!w_  >1I) xY')@ çh Z%d"n$> Wi/}rLaN/ÛTX'd-xw)Ks]>Z_qVo붜4'8-ޣ6 8aP:=ffu#v劥³첕XO͑Ɗ{۲FgҚ:06<#C&63,@2̼J*cKafxS%UW{5w1mx2\zpvmeVH䈎0V|Sp牾+iE>rZ J3Dd~>U8HPGʵMw{""iʆÛ+[Z5{LQЮB[ůJsn0KxV{Ivލ!eAIb] 2"Db{#zW={`&kYMThW6&ah!Hc9c ,m>C$+CpII̛5vI:ga{+%^q V yegJ%m`R\=H%ss+Mfov' d݌ݦ6Ec.GopL.ot;Od4?8r͒-v6f)D/=)"Tjf0f8" Q8qF˗p@5e؁[[БK/ OXbf(O˒HA@:M;r7-%n=#NqvS8&7{ 9,K:ك欂 G5'mI:j𓴷 ~@GcYLeҫoݡ~>p萭まJ 2-~z\aN3 [n4\& HS%#%(\v- 38{P<0l1GɲۋpR2IB1BCc$d0x{D`Tl,b)봧oͷشcC!JЇFu2I&bwn칰]=/kg &%aE͆~&mhM]tai̧1C( K;g7~QWBE$7R9$ n "(cκ[ ˽3ZLiR;D! 9X q]vRꮪ⛌9f{5>;nQZ%MnՏgUѭT+ q.yfF*:b 3tVxEqCؿn?4<mOxuӓ$ _R 40NcEO\փ+Y;\aeG~3Z}<~ZJ2,0,!Φy3KG1C,jRk 3@i󾱱4TБ^}u1aB*tk܈xN<+NV;Ac{}ȹ?4HEsg!Qtʊ׮[/_v۬E,B I6]Q.:񄖻{w"w[Qk4'* W.W΅6Clɴa [DK MWm&*VQè(>~^@SnNV SI:=mxۤ {ˬ-H L/UqDV$3߾5'Yv/'Ofh /##ؖ) ܢor$>j.9G6iyKXg"jm"hW|c. 7I 'WX֓Ll4ٻHnJ~'dY_wJM_]g6>}8`>/AMUrKCqÃܓM6$/n쏛PEQ$0>/i7ΈD*X!.Z}9eDt겹R4kS*dX2-0o<=4C 5K 3ezh._B݃[+&n 7h$?5?^jԡFzO<:Yr—f[F聁| e6IKM.Q8$_ H'mvp~zr} z5HyBKtRuQp^%m" 'BӾWZYT(٣Fb@h$S츩Zߙͧ;sQN5KFjun((*[4`䰂Yaƶf?>N9Q];hUȐ^v#6 rchrɖ|#_7?vҥt;CtA5},UnG?K+kYvꅿꮳ "u>7est-lҒ4{269t6-/IKQ/Mle0KahU6xMyBqek0fwtRz y ˌ|ֶJ3iN\S]RY|sˆ#x (9b(i1_mnW"'K 2 b^@``P]ueԘLȭ:Ӽ~Y :^<)Lrb8:߻'f|~w8-?+;;YV[dž[c-$lM\MT FvT}Ua %ICj0X?*g ze]#t>^RD ,#r")x 5"VЌ(>Ŗ[$/lw[h_h{.'5#ļ!f  L#=Kt97}d9sإّtUՇL'ʖIW/zR vZ=U ,I!=&K%V_XQΥg:OY%ZR'r~&)lܪ::^ߗQ$,B>[}[ tHD:DԑQN$ 5JC&ӈ9$*9$m}ŵ>j-fj%rlbGU,E(w6lo,#.K}fp` yq`fjy3fՅY|͗^z=\I՘cFɔ ]t;,cd3XHK_jC5/s'ȇk!΁ e)"cɇng1zyi^&Z-M)}": Ms (nj:L H$-zj~dm4m:'J6\dҴSWLFyE9n3'گ囓nqC=Ysjȼ.[F UETqǣWГ(k?-wcS{8zrKUKXC6QU*dPQ|<_WgWU WO' } 8 ^n}OjȗfAnQ4GR_}Y-oUX'\E~kHroG8ח ]=fԽU0IZ>fOM5VGͥ;JPTS0G2s5{~5pF<*(9{Yt>ޅyS3^k7 d"(cI Nj$ry-S_xyHy&܇f! V>HɢkW_tq]C(?bx؛}۷L]ٍkyGTo;5<]&lͭX&\TQx` )XJ=w X?c OJM27ݴ_ QI6h-ع消/ގ햫Q~+f"Q޻&T絈aL>M O>)SxÝZ.CpK^0j&p8K *RDžR.'3C*f}pj_s /z EI}]DWv>R&=!9[ͭMFl ܂8aM婒=)%hP[ܳdէcq`,9ļH9!X endstream endobj 889 0 obj << /Length1 1608 /Length2 9796 /Length3 0 /Length 10622 /Filter /FlateDecode >> stream xڭveTђ-\ NݝNp ;n-xA`Ν;53?zTٵvӇVC5f9rpr Vn.ږ*0(l`dq[B``Q> F bc `gaccO럞.G; sr;>C7jW[0d5  j# pBfXÜ,@#4g.KyN`g7qtt}+ qB@<ۭa 99Þ#}`0W3UCV<]m-]v<0H gg% t A\^Ϲ!i@mŀ tA..0:zK''ݰQZsb>>綁8bpEGkv?}` b33,$,A0GR>0T@O߉C=-Y:<?. PcXK뿉@}?w mxh,7'?y'q-=kuG7-h"]`Gп3/o. m5E5eMFi/Ͽ֪Os<K߿V#̉#y tsv~Vi.C{_`@ qYnPzwUM PΆ C%nbˮTI=KO>SnY vh9 $#AnoZf(Tm|h,2\9j 0%__ܳC(fIrHe|Q|;y[̀̀B4]o# ظ?'@w-EcH{`ۤC[bԊ=HudCX#BkH$op3 ?cv]?o=&;A&}IãjO$&GKp g7U-G_T۾A`3D_RPA{hN5}Z?5/U.96C9M.wGxv, .}w3|piFmfv4~뫼[o YB 5SaH2ixyd͍.޼=YHq"FX<9+D:"W |lZnEl!i,>WKW*;8U sj%Cތޤ֔Aʐ1Vį0p} s~DL .JV +~'ΞjA"ᅷ;9ްjh$olK2H z[>ыpd1R;Vp1vz#hbW܈LO)#Q@)/"OyB/m3f'LUEDVbvZmlzf2tpt2D+pҌ 1TrGJ ʘdĈ<=8 Ks LvWd$IAঔWz 7n~9^lӟ?WA-f4kKcxXS7Q뢝p`]p#o',$ז&|2g.S80MXv v [:gKˊ*Hz&t`^2_e 41B%O Qcckc_~7Y+o4T_?=֔JPW&'N`6jD{6Ө"zmk3Vn\E4ρ[^5؀-ɥv[&:MS ) \@[8H;/C*~+s5KH vwÏ(( =ӘO#i> qK;*CYIɟ\/s3i;&~y0Ux#6J7m m}%wҋ 5%,;^J΅Y jj(6@SF%hy[K4Ca9EBb,f+y~7/[D7gZ}or-C`;{(jNUj+jdIӊׇ":3p .c4c ٕD9U SEc-&Gr"QbBfu]MMR_DDJti/̈́%~Q! ׍sQؓ5yJ8B"]tt[p%Q\K4fJ[~Ic{új pv3U#ƀ?>Q-!m Q\7 D7[ a/+J*jhRRuAx 5 ȿz$WW[[q4Gby]a0d%~i>ھtTHNȧ}%1[p?VQo<SfE͌Yy+MB(!*N2 z>Ij G}@OaNS25I;~5TVȩ@ԱS^W|C[mˤ-I~Y[HI-]J+HΛϿ VUֈd7%Zi3qDޔMC-A:r^΋}@'wrG $$q%J c^bk9֔˃Њ)Ep\+6Q EVf6ny$ ǹmůт)36T$i0.HRzŢچ&rQ..*9F!,BOãR<{Nz ᇳɾf^E|E viL}fz  =ɒDʯ.zF`Ϙ,Knԉ>fɸ8\ /,L:1썰ϢU+ra9^0V}g#8BceAv_j:S ?ك^zo!e.8uŽKfpB3chy=O03ۣ+[a?5miŢV)fܙ/44k,Į#Mu1-!վ[dLxcEgPHv2XYf8E+ ]h(ԞgG:-)?³x6` 侩+䎮tֵdnx>-<ǝZM5>$m5lkfh~:!v,񊓏~"guR#7<=L0Fߨ*tƵhwF> ,KW[qY ?cypMGWQQ*}:O;{tx_^*s{BZ,+soqQŻLY'y'Ik&xs->ПZ32$L5AF3.~ٗU@W8ܼo>E rAk\;{F+ځp,4EӘ7.`;Kf.5_}%⼨oKH:x}ct7Dl=MSWGIi+nAwYm;sM XυWPL8au7d!¯MqڝW/яОW"S~lBeuF+Fi:;bGOڐq;:rR3&R^ b*vWMelθ?.Ja'pV3ۭ ƉL骺e% SŬR`~0tY(XdP)kم/x鵖ndjm_^g$ !(8%lF'oWbptbd S˖6g h-BM rtqObxꅣT<}Abm鞿MN>I3V3b|H W+%Nw_ϸTDx?aMFU1Ke ~0mԈ(G>Cc}crjœt ~> o-f3~ 1h n"rkЊvK[wk"B|؈+buOFtqQxzW".^tu3 0+3v+% [Hv@ARC龟F\a^nsεOMADCX(*aeO}M*]Zj:ݐeĦKcqGud4cXUhb9:,Gxbs4>>mcY/ܲZ*@*,ܠho,vP^Deh>-\0ac`iyTEieR ~y`Ki@ÑPYP2~_SR ԉL "Әf8Zqѝ$#ezytఃJe/ȰLXK^^듈Q;0)аɅ񪧃e/D6*^Yܺk6p~8I^TYl!0R/p-xz~r7VG26!9P)8Xdέ22 JR|Jg>m|0eDHVϯG~]&>/{P+c5B-Kg/@QRd1"5Q+Wy&6&ɐ:ղoŊؘLԩ Ӌ`Ppfb0H'b]_" lLnT=JstqXLbuf6!bAwfwɐ9r"LjLn´sSHJb0գ$a?oχ3֜;Sۜ8ؤO1,Vr9glV\!^vkmpuIBS[]eû]t PB6}KC;! RٟpF%=5wڿ>I-rjcK SKQp!Hʟ8w]׫"̐fu̬'9x[,Hʝ׻ 0 NIYGI:T]Z8K&X,X6]d8}GCvy[BBH}"̨\pRڳ'%,i4~e Z$ۊ@itidKS " ]PhvؿjE! (pr<>%Cr`3̿α]WtcMr΃_9mFig~$A;d"_'m{<1uS7`az*ƋoU./O2VbK+/&m_z˼#ϪڝŸ\PRaF~Κ16w'p,lr-syDazt})"D,P1kx&E1AfB,慣Zl 8ZUXS HB8ON.njCx t4$J?P# aЇ3)Һlb; O,Don+c0ϝ}/ҕXfɪmsГbJ$^"`t+:e f݉]'?z(ɢZw_Z|xn螺%E T7?ՄLѠjz:SAfdb|pfci fN RduJsKg eB n坵) aq ,+f}L]L8[*#K"oM/;\n&$5QãSoG 7-̓dIlIҰSGt_EN)jl6GF{T[A?^jVbMR[gWտ_ҝٷzXX!'." 7M'EP.&σpF@,XOŧɢs1_5kA [t(1{Duma.yBm%e8\]DTܩSU^`?CV~>V 0cf^~|>DaΠ'-*n͍NɆI4TDQ[ez|B9ջ/L ;<|3Ntcp -؊4MdX"Z4$M| ]U> {؈}/=9 ayI*n9QYdA?+:tᗮ1L|u/owyǘϗΩiRQE%ָ[fBQFF?aQEHGR=mP)uxvW?LRUx.MX.lCZ)o+! ٩ƲXi6uXS!H#8uϫXhn  8:ꊒe'lPnr bƧC7o"msXG|h myęQVB;R|$hDc&*]Ӹ +ȕorI:]c&tT]Xt(֘ 2u_rUd녫wr̗֑dyitAC&!zॢc:\u[(l*[HuMwUְo(5õ|k^˶״ac~.S[o!aRՖpGsNL;z IxL3S$q!1@Snl:xEx*f3$w@|s&ZHb9 cT5umn SMbxI|rQĽ~B(~P)=T'),H:YgPC: KsWQ# zϯ+7̊4~J}1uJPo̐fZ"b8)F};A}&^sQJz G7L4 OP{ -xZ fJ2ݧ.e!az&inr\!8.e{}1 O^x뚭wFOCۧe=V Cm'?Ub谯vZqu{YTdmqK YNninO_82 т߅_"]ԧGc>qf3.39fmi2% VVk: dz2&L0&4L‚&.WZ/ MKtv(GG?%i c6n9,JC_HJiE-q? 85ߡe:v}WN}Lw6 ]55H(*) Oruj%](iUվ"!CTO`wq Yrp 6D7"*f}MŦpl8qI*% 8S8.!4 gLz244*r#z#'#b2jQ=p@ ]JP"[oG9?XnV)ӂC&O"F3rv7uS>E9x朗])- N~ 8޶ )@qbS8C]|MdS<@Zu":^&)!Z:/\??= ;$fɭé˅w3VȬ8RiD|\ڨvSnr 6]D~f ar>Aa.T|\ unfHW۳35\עL@$Y%VY (,+!:dkj, $C S;> stream xuteX]K-uA{{p 5Aw֏U5\SFZJ"@[c['FV&>QFQd x9))NV 1FW3w9X,|,<|k:ֶ% lNۚ8[lT 0}쿫lfNuMZzz#c2q#@pYU=$4X%S# q4NNv|vFwєLި Pi&vYغxl =َYl 13 L̙*nd 6z{LA`S prpy{!`'1c/ov0Xz?PAf)Q11M_Q)Y9lYRquH. woh1-Wu4 '˻k_?k|q[x K+# 7[/g&v2ؘYK&v21]2{RuuM,m@g7GI [ J#࿀hgwy>o77LlM-jE\'{ޜI8 w>(Zp$f+ UBCAHDqZ3a| T'| O3?67)H}@ꂴNRHlC5˗A",qY^Z^ǀsE)+e>عq$$Ά?2:H *1/pK":^hpuw= w@v1gS^3!n !#NsY/O #,1|=1r% (&uY}hc]l_56ӏ lk`>?z"!;QG Lk["hp%j؝%a+/pQط2&#8pRʀ AsV.m&MJrQf\%H"Alel'Lm\ĹKTOԌjAC &kchgd88W\ (wzW8 F̐I^֪9ܡg-PIZ&1+J@/I`;b={J&].M 0~v@feؔnQ@$1Lr+Zj'ˊ–։KEBU1`|ׇeД>aB47煨ܜ(Uė,}y[}8xEn"Ye&|a̟lZoBȱ3'9a>Hmp*hSu-ښGb|=OKX)@࢝8F2c{Q̩RJJ86ֳ5ReoO:6hz=M0f2ZJ2#+m۸BNlȘǃc MKX$Hg_ݬ(1D b &  Mx`lqx>̢\BW:bkCY U`k޳=wt+a#Dj޼:Mog_$$TU'&3$!2ZL–^/HRӛ#RGqr01yr ŴYCV0/4v'lcM$︌%zgThCYô+Mk{쫤m.j7b送l~e qz4+&3sa<[w`7|42NMRn eyaZdhyjRtF~'ԅqg;0/"/aCW=4xxŏwVseSbv]&_ lfIb.DݴII N8M= >pܰ]u *.:BD])50\u}N7X!PAH3S6kaSNWKZ Vd=\={{-, /-6KC@=k?B3 kN:先[$H|[d$.;rAo/FMk 33!V7jpIῸbҢqbdmYS.%DC_Lg%t@rL({ >˴)` FDM39"AQ#mDͪ/OTIc%hMSAFTᶐ*F<21QdZ؈/>rgdN$h ҚuYϸq:(ZM_vҁg4* kv @p{+ Y듟bo+D| |lh_,rErlOn"/H?G%ҸUKR\Dmz3"'vʃ#Ad!% z!aHЬFmUr_kxEɴѮ{DL;pWź]*DtӅWʳ`.(1h=%3԰4p[?8,M=5I吲1C;k x_܅&4 2cUVHu 2Mf!5:DhM'I!&h.׆1ߑH%/ɇm-{P9-?){@G!iA.$Fs#z8 -?fX?TSj (X3[IȳjpR1UA dIwuά&{˯}<=YQA7u41ț#L\xx0̎joȎD,Y[>Œ{Տav/;N#Q#Sep3H~aƪ?$܏*1#[{2*PŢԃ~k2y Ғ^oknQN_{DnKL.z b&C|$W{D=qdR"p'Kc7ir2ا*V~rtphMWpy5Чh,M ҁHcV!;V, lPCknS]'zlJfhcwj25Dԗ|Ȝmw2ҷz91đeP25X_x\sP̊=+ҝV,gwk)/e \T:fJ{ܱU)*[}PJ/6DOZ^:1al^VO=Gyy;Nxy[  T6Dt sp6Ji-\o$4volxo3 yM;-Gu>nPG_h.؉GT';- |?Lp( cOev%Nv)/Cy1bW#Юu( +),U{.9u. 7Qå#\V1In:h1i_5bNѠbXq<auWS"Cqv\qީ´\4vhT4}}w|< &jWG \\4mH@Lc*񏛻LTkq6}˦ی]:_y+ji^f]B`4SjRky7DIdef,HiG˙w"f _$KYi_sΥ{8i.6} 7smdh|]dF|a,:4 ]A /ĢZ ޽kNA?(5h#}b͐>uNd&]5JL_'ӉeU:UT@^Q5 Sq26hq.PYxO\A4FHߘ"‹,:>`?a*W!BJM7^K~q0uo_ w~.ak!q~2}~pDIC:f ~ Oy.5]d4 -uz;2%Bu ԛ67 );{9uB_rJu{Pq"V26f77n_1v,lcn<d~pt$>vL1.ycbwK.C猹tV7:H򑢀 hp$oN˼mW$ߺg׬(<>q$@'[EqRtJfzK@K@0k`*ꖸmY.eֺP;~5Xd{ P4o+ؘ*Rg[MzL U0*-zz=9˩I-RFy5+J]Ќ >9ޟ*>܇Km;"4^Ij_g &畻su9K$ 34oͪli,UZ LcDw ;|^=r_@pkv+jFӞjscӘTA5qayO s=\}x7++_Oy~$9|hŲz͂5 vO\*:@,ʐl"9mi,l@=)^2G:-?;Ip6k+ $&cQd(t7Ho쾢IjGӺ/.7lgO[T1Eou-I6 ˄{)&TZQTxlz^UZkoKҬ$@Я;?rTze7~W?K..troimGr'eIĥyyԟ?=~%«)XS$эD>KQ/xƵ/=9jb>FS孎jw5GIV6Գ9LDak4t`4 &f0I2 N ]=OU:V"hж=aΗNxKW8?0Kv<Zvb;f6{IģI]zj {1h["x*Lz;FwZEZo0Hy׽hӥw&|$vo=.J.F 4yxLWJƭujyEg+Xr{IcóQWa6Vt)r\VU |0Y 5r0`!+B?[K^J7 /[gg^UQZm|y;VGb ֑ȿfϏ-2[IL, T]Y-kt[֭Cᔒ8s o@t&I1BPb쮐VaTH-0?̟}[zgu87=Ϯwa; q 2rӌ#(g}*%ѣ&Ҍ18ltϥeJE ;6lHɇV*DZBNeF OR+5q$3[7z,nnbQ7OYvىca7GHɣeۘapZĽlg$)c&\Zb/<^>B)eȾ. Nz'wpȭե`jb2Z=ol]Ѩ{(K|6DVebx ^Wo1 #0=ⲎJɯTs~A3iG39WŷX27%PhQک8xP\mxK1W aT>ZGwX7 (_P LR1ԊQxlJ a7ĭKCIA!I3>1 WS= (B*1U4{nFu ۡb}=ހU-%|_ZTK͢"h -Ҿ1//Qd[iUu*ԫTvRnu;b\;0q?1{ &f҉2B:Q[^TZr8*sW!*G^wΟGe׏6F0 51ȹDrDǟᴜ [Cun|E5C_ਜ਼\\MM~V":v:QOHzXb'[׌&UK 3N|mZCYr::&yb3`]Ua I3w?Q|nz E]jcԸ`2 ?pu'`7kirplǮnͮ,]; )xQm/7uCs=Che)MΧQIۯSj5%bЫ֛x// ,W ny>X(AT +XI/n x8OIL[Èw5pGn +SKV Lv(6ӎ[N H։Sc,5_M+<{We36nvԸ\L;ud4.`"taLf)gWy:EGaEuA`LgE1{!ԖJG%yTY9s[oqF.VBC.$Geڋ VbL"ݱ 8gNN/XE+FTKQ(`C䈦\Mt<%qd8jE~d:2*΃WT<{@عdg(`Jo3󬔨T@{:&V2dJiQR!?F!Z?X UZ0Eߜ_щ= bZaI%*48]xPdځ#IQ?dpCTKY1@QE` }%cW8ppn57+N*WV Y)Oa Ɓ6wd'2SoɈa9Ϯ/ E{ޣ&Xzk70':XX* [TptX'UPC{{Ƴ?sq)zKi<wXPRT)"1|);X\uķbܡIz vAkI^.l~ʂE,Wӱ\c.Yi+?8H$2 =#v4JNJ|rXB3;6OQQp(5[O?鹟7#̷ooQZVTHU"'mW6ce$89tecx%Q }bI3M2ԮT(6yKpi9o `d$%wAҔݯ Vuv<ʹ;LTǤO@=9%MXo*Oo|vhyLyD0X4dW& \n$јMu$PTĵC33h,(ŁZU gyh-}"溮B$clҾK[N=}ma/ iuWyϘ|\ѳ/ƒcʫ:z^8v; ")˄կ)T=lXϟ7EG R2/ZxKߦg:)[rNl: NSVvQ=`3B &c?g\SI 3h0"aױ|ѭJrnmpY|PR6 V d{ДCBL,쌾 ș@iy;co $U=h\-3 YwBY_7jЍg*?);LKE|0a7}7"C) 7uW¥*'ǻ4D,9+2*гT.rn.R@##}i|>/d' 8gDd})%ͮ4uM"|wBc~%H^$Y[&OoP}fg O3h#(ʐR"uPj}6:B/HҭI #r|a绔 UG*\ > i3P9l=|Ȇ}qOHʊ 1]57EXhne@.!*_QI{ZJ?f:}v]*\qֆhHGۄO\?s .yI26}XPQ#{T9%tݜpaئQTƖ"(?k]JGLP4[b L*fi\j 6&_'(Ee0m3“IU{>+#M`+?!9m@>|efix^7YjA;(\du^ZӵÎ#sEMǏ~"g9&׶H,Ή3CJj/ endstream endobj 893 0 obj << /Length1 1199 /Length2 6735 /Length3 0 /Length 7515 /Filter /FlateDecode >> stream xmsu\k󾴰 . ]K tt.)4Hw %Hy{~ss\3s3 Z2H(Lj (]]  z7ؿ܂r0݁W ? n @-W#s: n!0쀀YPHwW+Jhs[g!]p7 ;''>111 /N@ۃ;-" z[o_-5w@68/ vkA8xowC:&@pY6o;!=|A8Yў3 Oo- (D0 ;3dt@P0 Gxn0aloo[3ϻ:4@|@'ǵF:9xqyUUTe8z"oiDD@>>ń_=ZAS*; bt_my\Q dcف˯tCXl)Ht;A?uCex VaEAOG؟ 8:|(Z fsvi!Q+~"LwPsGRy'+5v;W~V:Rm%`^0+sH+Pw52ܛ=7 0y05+h ~悵FRMԱ0hD\ q'ĥJN_"GE5$(.mlaoړ1OE^>ڧ7#m Hc[ZrX،՚y5ꭎt>[|*g ẂW^\ƧIORpii"\n_p=J!/4*]LM7⛁SW+vM Pu>2ilklqAgJ'713<^S*p +te }?m"?&^~4Ѩ9߳|ڥn{<[NSzҹqW,/K@Do<7$}sM*;9J:wℒ- PJRQ]Qq-}+6n#^ecxɐA 0pZu *tM*_K^X)j6!˛ 63qI$5ߦ#mnX,O@hB5s%mtbO ^4O֤pS$/aryNT򷛟?DYEJQaK.eRãJ=aڕ<~3Μ6/4ZwZQP:yhR[~Bw;e>dY&E\}SǛh)HW&g$'T Hoن|b\#h`zHuMw =BYOO@O9hpL?qS 1mMX ]PcU*uZǥ9 c+:[/z㜞(dGZw\tg]EYnk[O652>=2}|5Ů^AKEW^c2q8TI~J6>KG;\XdE drX^6X`Svg&n'8% StYeɴ8XK1H tV[_rk7Y_a//ƒD媋cS1DJxWtp&դqc33%F|p2YH!\ԇj1¥W :VŖ(;d,F!~t1ڼSH})q1)ss)BpJ 0ޗfXaU` ^jߧ4RC`tL[>10WHPHQ[_{1Dsb8 v4`JEKb(2IG14F4v]Vi%Ս"5{,mw/(j&Rq`:`rn7x$W豄N÷4#U1Y_} wl/Y[Su2-J&Z԰U \v,Ȍ9=@ B64#^BEɕ Ss )< R1ᶖqWT%t (ոc|vsk.%dǭ'6lJä7ٞuPg ?cрyVH/%nqٛ5!?W̒vuG\]/칕tF' ˮ Kb1K|0g}TڪgW+'ac3QqIPjA![1qNw3dnv]d.;Fuaڤ9 -)gC\g1-MްmuL,\m; e䈺2Q~s,v5P2;I`iی\G֕ vDEƧ.Ae3ؚ;yBS(@-Jp)QͿ)巈BVdgS[K6(&^etm$)jR;Hpw|5POQK., 7a*5\@O80l g\‡Z{s}o-3.OWIyxYu(#"k!Vv#O\~JV9;:nIVY=P}RBu߀ }\05wO!Wp!] &bE}<w$zye6$j] i2Ìje 5&yaWJFJrQ'Vxo%/3&G:iq'h/"!5M} ]ovpsL^ {]l1FjW8&,IOʪ(BL6Ɵwӑ?]XտONv:Z]Wj;iTGi,k  yZL39-"wAbSAy?axwƢD[qp/p ,QJ62tU~4z"A zt,'U`eJy@i5_X'w{Tm{ Z[+Aq^a6y|q-7~ˤ5?/m.} 7[”[u Ϲ[-&g:8X~D9AD1Mak!h@p:ԕz02t3u;&Q~՞dTZ7 7A)ϾM7xC!*Ѓ. [&c Q2=gu]u08Nkye- +y+42I$9U:#yGk].]r#f$d>WhYIe- %BN$SyH3q|nʈ^\liVbD_7/R13DFλ<鬹>4- WJjhR`h}pNͧҞAߺ/ie_ =wzsP'Sm$}{k8'w"'D5"sa(׹UsG:QUYg8n(!A2BƒB91O4$VD"y5<[|qɒ`D;% V&,bSn6TC[ ]q~8dP#E3t|$߻Qc-3u$1GmtҵQD>Rx;%t{? 61Xcq=q 369#V'OVD @ H\޷%_0xu*)R[n].kv`Tju(2Sg&WgS$h@^!vU9sWLDj'ƒgb2Dl (j)oO9y_a6غlG3L'Ӂ 1'o ߱dsg'J:0!#UxaH6 #b<| ,Y}zh'_x|xZZ/Tp.U]?Uci^jC{\j[#,ͫ R m(Z>ӣɬm$ tsm RKY !ʎj-'#jֻ(P]KH|d{ù V\&+鳗alSh QQ`ZY]sU>Ȧ[XL0ZlT_ř$ ضI=ĥ>p0ӧe f=\ Lwn/\G逬ےiR'LF8\眶ߏYxۚ0$Vr럎j8zx":Œl8dG)u7-(v:-G(Jcov'YatYR!4/ M_ ^ p?Ҵ2rY#{)҃_ endstream endobj 807 0 obj << /Type /ObjStm /N 100 /First 900 /Length 3109 /Filter /FlateDecode >> stream x[ms_tza\ p m|0&qةP_ծ׎62wجy9dI5 b0, 9c>F&`ȼ ,Hpw"^ UIkF %ɠ(DDD%RudJSV*HvL9+QbJHEE ǴpLCiMJw$b!Gfi] B{ P#6:nI%@qh.>1 cȅmpxjn43BH%Y!D$Ho%fV;#!uH"XrR !8 tFTQr9 PȜu rCzJp2tyXd^KmD8hAy/!Dy V ՃXdl0)$<@)4U.,4r":A>r$apTB FXMQʒ?IЋJ<١8RP\Op>w5. "ThK}&R *rxj鉈|~c5QAoDla0/έ2)gדr?_!:'S7W!z;o'j߉&zItDj.p;?CЍ;Wn'یVfUTjr5ʏA1)?R!w+;"QY ܔjuTJӳjL%ڜǽ)gt4KN[D蹌2աK#$"sA+lp l6\6/I] Jy?K<T]״S-kt#&MKUW L!H ,B*eBRFT:4rE;7ZN;5a[# hg$k VĒZmJiKxI)?:%RüW5тYb̡L4*&bzxUk|FMw˚I]k;e+qҕ6l]툩::m6e'Qev{ʏ[A =*j6Ts%/O}xp?2SIs-e0-XTp:Arxv>cȐzrf`{tvQÃYy nLr %'4 _Ѥ<}U գ!dPZqƗ٨lC VMtѴmtAm4^sp>\4Gɜo_u`̡cPv5M|hb̂-xubV w2ŻaMۊtR:21_،[O\Ş?p==^l/NV[&JyimRmR1MI&ȹeVe||?+->9؃e!?zs~y9C_K>c>_q]Ni'|g|v>)K>s̯G'/:8O=l;Myv4ѲV`=n9X.:X.:Xqp-*}ӿZ7ɰ?ܾCR,Ȕ1!j:ħRhMdxwo/.lFEmpDΰP1>)x<O33<=EFu3:1^o jFT%P+hXb1*&20gWy76 7 @˨yE^5j 0LY5'MNZ]zҦp2E^L|>CX۴/Ge3hLCaY[NFkkо3χ'M},Zis*if"u|4#:ЮQ_9xýtMV~Vu:pe_ϧ|^:{c^ B7ߺM\zep[[%ʲzWtTfd%rW׳&Z껗׬>UM ?QmfrlLljYsVܧlC. ѵ*5ʤ,5Hw$/ endstream endobj 918 0 obj << /Author( Jens Gramm, Tzvika Hartman, Till Nierhoff, Roded Sharan, Till Tantau )/Title(On the Complexity of SNP Block Partitioning Under the Perfect Phylogeny Model)/Subject()/Creator(LaTeX with Beamer class version 3.24)/Producer(pdfTeX-1.40.13)/Keywords() /CreationDate (D:20121113204012Z) /ModDate (D:20121113204012Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 897 0 obj << /Type /ObjStm /N 26 /First 216 /Length 1085 /Filter /FlateDecode >> stream xڅWM8 W8>D @ѢNvTiL2H<ߗdl9Y 3HI0^V D- (@ AX0д)*H` Q%1֓A5dXA)2(L'T1|tXWPCZkCa-pdlV#TPO;\om)HtPD;FI UK?Yh/#g\8pAp U#bdԅ9r})Ԕ%e u^C]׻wo|sbWq~:X-aN'06Bc;~$}?3u~+/&^9i5lUcWg8TphM꧚7 :fjOۜvusmNwcs~lfNf*n4VGj׵~pF{S%d!4S۪E]x*;UMU[Loh)U5zlޏ/a}<6sq+m=߈өuhHM[~IsE͕*.iN.@yhK} JRTʀkEPSpoâ=N}ϵa< Wy8=.nTW$ҙp|Xpy nkgJD,%UUF0NdЁ3ޖ!;cWQqt nkݲ.ۼz-j$!Q !7$Ε$ñ07clFaqXrOIîT,rͫײ.X2PhJ9%UX f%f|Ww|4cLn^C~ ;WuŲ4Aȗiyuyy ?w)\mr!߲~F$ ;~wȇRE]lû:}\9eY?<]J2>AB,"KEKe2Ѳdh9Mi<):i 2@`.pf6f>˜4`NLY1gZLy1q!bBEl}.?>w7WM$ endstream endobj 919 0 obj << /Type /XRef /Index [0 920] /Size 920 /W [1 3 1] /Root 917 0 R /Info 918 0 R /ID [<26444AFBAC32FC47D91BFC5F34786545> <26444AFBAC32FC47D91BFC5F34786545>] /Length 2022 /Filter /FlateDecode >> stream x%IlWsI&L<;ؙ'gfN3 eE%$P%6G *v!;  G]d*w_lRz뫡4g,|JiW1_FRNKQ}{srnĹܜQZ\܌/y^|xɿDJ+J zT5S1^uo{95jk_㜤8L[M[M[cZU]UUUUUUVUUUUUaVUќ֍Gf*ºc90'>xb'zbA"i뮜,\uwNGfO8jzJJJJ^8UUUUUU*5~s T T TXRNuPUWxYo%d at.bm,"b10_/VIN&,qn#V}j bcc6c b&;{1'qq'pGpS1yx:88˸\%Wqrv85\}܂w;{x!1)^}d**F.b(7-b(b(b(b(b(.z)b(b(b(b(*)+ ޾~yӳq:(r,(F.b(b()b(b(b(b((b(z)b(b(b(b(((((( b.׿"bߢb"b""bbr/6/9}ciq4o]Ge"""""""b""""_MkKrGo<)}/W ]9]]]]]]]]]]]*]ݛBCH%% Gr_%uuuuuu-uuuu%eѽt t tiWDAMCCCCCC7wCCCCWIWD8>y?qG~x"tcZ tt t t t >A*oL,\ c#>? F~O?`QNZGX1,k,2, Va5`-a 6`#6a3bv`qN??`e9:]؍=}؏8C8#8)L4N,.`gN8yE\e\U\u۸Gx1}<-V}X^577뷷`fffWEhhqybľs/'/l,niټټټټټټYټټټټYimNXYٷ-ϩ9MuMͪM ʹͅI3w@3gq5/G1A6Z\)YYٷ:hafګ"\}<޾2 ㆣyhןEX铮']JO.""z:.1 WbanN$w5b&>/ſn&lVlui|NnG\ޜ{?> pßMa'qgp<7%pq3Kˈ׫9ox{-߉9?G7rh:nѭ8g(>.<4mf/"'o6Ryxƛ5ެf7kY\7kYN䡱_ The problem is directed: one haplotype is known. \item The input is biallelic: there are only two homozygous states (0 and 1) and one heterozygous state (2). \end{itemize} \end{block} \begin{block}{Outputs} \begin{itemize} \item A haplotype matrix $H$. \item Pairs of rows in $H$ explain the rows of $G$. \item The haplotypes in $H$ form a perfect phylogeny. \end{itemize} \end{block} \end{frame} \begin{frame}{We can do perfect phylogeny haplotyping efficiently, but \dots} \begin{enumerate} \item \alert{Data may be missing.} \begin{itemize} \item This makes the problem NP-complete \dots \item \dots even for very restricted cases. \end{itemize} \textcolor{green!50!black}{Solutions:} \begin{itemize} \item Additional assumption like the rich data hypothesis. \end{itemize} \item \alert{No perfect phylogeny is possible.} \begin{itemize} \item This can be caused by chromosomal crossing-over effects. \item This can be caused by incorrect data. \item This can be caused by multiple mutations at the same sites. \end{itemize} \textcolor{green!50!black}{Solutions:} \begin{itemize} \item Look for phylogenetic networks. \item Correct data. \item Find blocks where a perfect phylogeny is possible. \end{itemize} \end{enumerate} \end{frame} \subsection{The Integrated Approach} \begin{frame}{How blocks help in perfect phylogeny haplotyping.} \begin{enumerate} \item Partition the site set into overlapping contiguous blocks. \item Compute a perfect phylogeny for each block and combine them. \item Use dynamic programming for finding the partition. \end{enumerate} \begin{tikzpicture} \useasboundingbox (0,-1) rectangle (10,2); \draw[line width=2mm,dash pattern=on 1mm off 1mm] (0,1) -- (9.99,1) node[midway,above] {Genotype matrix} (0,0.6666) -- (9.99,0.6666) (0,0.3333) -- (9.99,0.3333) (0,0) -- (9.99,0) node[midway,below] {\only<1>{no perfect phylogeny}}; \begin{scope}[xshift=-.5mm] \only<2-> { \draw[red,block] (0,.5) -- (3,.5) node[midway,below] {perfect phylogeny}; } \only<3-> { \draw[green!50!black,block] (2.5,.5) -- (7,.5) node[pos=0.6,below] {perfect phylogeny}; } \only<4-> { \draw[blue,block] (6.5,.5) -- (10,.5) node[pos=0.6,below] {perfect phylogeny}; } \end{scope} \end{tikzpicture} \end{frame} \begin{frame}{Objective of the integrated approach.} \begin{enumerate} \item Partition the site set into \alert{noncontiguous} blocks. \item Compute a perfect phylogeny for each block and combine them. \item Compute partition while computing perfect phylogenies. \end{enumerate} \begin{tikzpicture} \useasboundingbox (0,-1) rectangle (10,2); \draw[line width=2mm,dash pattern=on 1mm off 1mm] (0,1) -- (9.99,1) node[midway,above] {Genotype matrix} (0,0.6666) -- (9.99,0.6666) (0,0.3333) -- (9.99,0.3333) (0,0) -- (9.99,0) node[midway,below] {\only<1>{no perfect phylogeny}}; \only<2-> { \begin{scope}[xshift=-0.5mm] \draw[red,block] (0,.5) -- (3,.5) node[midway,below] {perfect phylogeny} (8,.5) -- (9,.5); \draw[green!50!black,block] (3,.5) -- (6,.5) node[pos=0.6,below] {perfect phylogeny} (6.4,.5) -- (8,.5) (9,.5) -- (10,.5); \draw[blue,block] (6,.5) -- (6.4,.5) node[midway,below=5mm] {perfect phylogeny}; \end{scope} } \end{tikzpicture} \end{frame} \begin{frame}{The formal computational problem.} We are interested in the computational complexity of \\ \alert{the function \alert{$\chi_{\operatorname{PP}}$}}: \begin{itemize} \item It gets genotype matrices as input. \item It maps them to a number $k$. \item This number is minimal such that the sites can be covered by $k$ sets, each admitting a perfect phylogeny. \\ (We call this a \alert{pp-partition}.) \end{itemize} \end{frame} \section{Bad News: Hardness Results} \subsection{Hardness of PP-Partitioning of Haplotype Matrices} \begin{frame}{Finding pp-partitions of haplotype matrices.} We start with a special case: \begin{itemize} \item The inputs $M$ are \alert{already haplotype matrices}. \item The inputs $M$ \alert{do not allow a perfect phylogeny}. \item What is $\chi_{\operatorname{PP}}(M)$? \end{itemize} \begin{example} \begin{columns} \column{.3\textwidth} $M\colon$ \footnotesize \begin{tabular}{cccc} 0 & 0 & 0 & 1 \\ 0 & 1 & 0 & 0 \\ 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 1 \\ 1 & 1 & 0 & 0 \\ 0 & 0 & 1 & 0 \\ 1 & 0 & 1 & 0 \end{tabular}% \only<2> {% \begin{tikzpicture} \useasboundingbox (2.9,0); \draw [red, opacity=0.7,line width=1cm] (1.7 ,1.9) -- (1.7 ,-1.7); \draw [blue,opacity=0.7,line width=5mm] (0.85,1.9) -- (0.85,-1.7) (2.55,1.9) -- (2.55,-1.7); \end{tikzpicture} } \column{.6\textwidth} \begin{overprint} \onslide<1> No perfect phylogeny is possible. \onslide<2> \textcolor{blue!70!bg}{Perfect phylogeny} \textcolor{red!70!bg}{Perfect phylogeny} $\chi_{\operatorname{PP}}(M) = 2$. \end{overprint} \end{columns} \end{example} \end{frame} \begin{frame}{Bad news about pp-partitions of haplotype matrices.} \begin{theorem} Finding \alert{optimal pp-partition of haplotype matrices}\\ is equivalent to finding \alert{optimal graph colorings}. \end{theorem} \begin{proof}[Proof sketch for first direction] \begin{enumerate} \item Let $G$ be a graph. \item Build a matrix with a column for each vertex of $G$. \item For each edge of $G$ add four rows inducing\\the submatrix $\left( \begin{smallmatrix} 0 & 0 \\ 0 & 1 \\ 1 & 0 \\ 1 & 1 \end{smallmatrix}\right)$. \item The submatrix enforces that the columns lie in different perfect phylogenies. \qedhere \end{enumerate} \end{proof} \end{frame} \begin{frame}{Implications for pp-partitions of haplotype matrices.} \begin{corollary} If $\chi_{\operatorname{PP}}(M) = 2$ for a haplotype matrix $M$, we can find an optimal pp-partition in polynomial time. \end{corollary} \begin{corollary} Computing $\chi_{\operatorname{PP}}$ for haplotype matrices is \begin{itemize} \item $\operatorname{NP}$-hard, \item not fixed-parameter tractable, unless $\operatorname{P}=\operatorname{NP}$, \item very hard to approximate. \end{itemize} \end{corollary} \end{frame} \subsection{Hardness of PP-Partitioning of Genotype Matrices} \begin{frame}{Finding pp-partitions of genotype matrices.} Now comes the general case: \begin{itemize} \item The inputs $M$ are \alert{genotype matrices}. \item The inputs $M$ \alert{do not allow a perfect phylogeny}. \item What is $\chi_{\operatorname{PP}}(M)$? \end{itemize} \begin{example} \begin{columns} \column{.3\textwidth} $M\colon$ \footnotesize \begin{tabular}{cccc} 2 & 2 & 2 & 2 \\ 1 & 0 & 0 & 0 \\ 0 & 0 & 0 & 1 \\ 0 & 0 & 1 & 0 \\ 0 & 2 & 2 & 0 \\ 1 & 1 & 0 & 0 \end{tabular}% \only<2> {% \begin{tikzpicture} \useasboundingbox (2.9,0); \draw [red, opacity=0.7,line width=1cm] (1.7 ,1.3) -- (1.7 ,-1.1); \draw [blue,opacity=0.7,line width=5mm] (0.85,1.3) -- (0.85,-1.1) (2.55,1.3) -- (2.55,-1.1); \end{tikzpicture} } \column{.6\textwidth} \begin{overprint} \onslide<1> No perfect phylogeny is possible. \onslide<2> \textcolor{blue!70!bg}{Perfect phylogeny} \textcolor{red!70!bg}{Perfect phylogeny} $\chi_{\operatorname{PP}}(M) = 2$. \end{overprint} \end{columns} \end{example} \end{frame} \begin{frame}{Bad news about pp-partitions of haplotype matrices.} \begin{theorem} Finding \alert{optimal pp-partition of genotype matrices} is at least as hard as finding \alert{optimal colorings of 3-uniform hypergraphs}. \end{theorem} \begin{proof}[Proof sketch] \begin{enumerate} \item Let $G$ be a 3-uniform hypergraph. \item Build a matrix with a column for each vertex of $G$. \item For each hyperedge of $G$ add four rows inducing\\ the submatrix $\left( \begin{smallmatrix} 2 & 2 & 2 \\ 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{smallmatrix}\right) $. \item The submatrix enforces that the three columns do not all lie in the same perfect phylogeny. \qedhere \end{enumerate} \end{proof} \end{frame} \begin{frame}{Implications for pp-partitions of genotype matrices.} \begin{corollary} Even if we know $\chi_{\operatorname{PP}}(M) = 2$ for a genotype matrix $M$,\\ finding a pp-partition of any fixed size is still \begin{itemize} \item $\operatorname{NP}$-hard, \item not fixed-parameter tractable, unless $\operatorname{P}=\operatorname{NP}$, \item very hard to approximate. \end{itemize} \end{corollary} \end{frame} \section{Good News: Tractability Results} \subsection{Perfect Path Phylogenies} \begin{frame}{Automatic optimal pp-partitioning is hopeless, but\dots} \begin{itemize} \item The hardness results are \alert{worst-case} results for\\ \alert{highly artificial inputs}. \item \alert{Real biological data} might have special properties that make the problem \alert{tractable}. \item One such property is that perfect phylogenies are often perfect \alert{path} phylogenies: In HapMap data, in 70\% of the blocks where a perfect phylogeny is possible a perfect path phylogeny is also possible. \end{itemize} \end{frame} \begin{frame}{Example of a perfect path phylogeny.} \begin{columns}[t] \column{.3\textwidth} \begin{exampleblock}{Genotype matrix} $G\colon$ \begin{tabular}{ccc} A & B & C \\\hline 2 & 2 & 2 \\ 0 & 2 & 0 \\ 2 & 0 & 0 \\ 0 & 2 & 2 \end{tabular} \end{exampleblock} \column{.3\textwidth} \begin{exampleblock}{Haplotype matrix} $H\colon$ \begin{tabular}{ccc} A & B & C \\\hline 1 & 0 & 0 \\ 0 & 1 & 1 \\ 0 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 0 \\ 1 & 0 & 0 \\ 0 & 0 & 0 \\ 0 & 1 & 1 \end{tabular} \end{exampleblock} \column{.4\textwidth} \begin{exampleblock}{Perfect path phylogeny} \begin{center} \begin{tikzpicture}[auto,thick] \tikzstyle{node}=% [% minimum size=10pt,% inner sep=0pt,% outer sep=0pt,% ball color=example text.fg,% circle% ] \node [node] {} [->] child {node [node] {} edge from parent node[swap]{A}} child {node [node] {} child {node [node] {} edge from parent node{C}} edge from parent node{B} }; \end{tikzpicture} \end{center} \end{exampleblock} \end{columns} \end{frame} \begin{frame}{The modified formal computational problem.} We are interested in the computational complexity of \\ the function $\chi_{\alert{\operatorname{PPP}}}$: \begin{itemize} \item It gets genotype matrices as input. \item It maps them to a number $k$. \item This number is minimal such that the sites can be covered by $k$ sets, each admitting a perfect \alert{path} phylogeny. \\ (We call this a ppp-partition.) \end{itemize} \end{frame} \subsection{Tractability of PPP-Partitioning of Genotype Matrices} \begin{frame}{Good news about ppp-partitions of genotype matrices.} \begin{theorem} \alert{Optimal ppp-partitions of genotype matrices} can be computed in \alert{polynomial time}. \end{theorem} \begin{block}{Algorithm} \begin{enumerate} \item Build the following partial order: \begin{itemize} \item Can one column be above the other in a phylogeny? \item Can the columns be the two children of the root of a perfect path phylogeny? \end{itemize} \item Cover the partial order with as few compatible chain pairs as possible. For this, a maximal matching in a special graph needs to be computed. \end{enumerate} \end{block} \hyperlink{algorithm<1>}{\beamergotobutton{The algorithm in action}} \hypertarget{return}{} \end{frame} \section*{Summary} \begin{frame} \frametitle{Summary} \begin{itemize} \item Finding optimal pp-partitions is \alert{intractable}. \item It is even intractable to find a pp-partition when \alert{just two noncontiguous blocks are known to suffice}. \item For perfect \alert{path} phylogenies, optimal partitions can be computed \alert{in polynomial time}. \end{itemize} \end{frame} \appendix \section*{Appendix} \begin{frame}[label=algorithm]{The algorithm in action.}{Computation of the partial order.} \begin{columns}[t] \column{.4\textwidth} \begin{exampleblock}{Genotype matrix} $G\colon$ \begin{tabular}{ccccc} A & B & C & D & E \\\hline 2 & 2 & 2 & 2 & 2 \\ 0 & 1 & 2 & 1 & 0 \\ 1 & 0 & 0 & 1 & 2 \\ 0 & 2 & 2 & 0 & 0 \end{tabular} \end{exampleblock} \column{.6\textwidth} \begin{exampleblock}{Partial order} \begin{tikzpicture}[node distance=15mm] \tikzstyle{every node}= [% fill=green!50!black!20,% draw=green!50!black,% minimum size=7mm,% circle,% thick% ] \node (A) {A}; \node (B) [right of=A] {B}; \node (C) [below of=B] {C}; \node (D) [above of=A] {D}; \node (E) [below of=A] {E}; \path [thick,shorten >=1pt,-stealth'] (A) edge (E) (B) edge (C) (D) edge (A) edge[bend right] (E); \uncover<2>{ \path [-,blue,thick](A) edge (B) edge (C) (B) edge (E) (C) edge (E);} \end{tikzpicture} Partial order: \tikz[baseline] \draw[thick,-stealth'] (0pt,.5ex) -- (5mm,.5ex); \uncover<2>{\textcolor{blue}{Compatible as children of root: \tikz[baseline] \draw[thick] (0pt,.5ex) -- (5mm,.5ex);}} \end{exampleblock} \end{columns} \end{frame} \begin{frame}{The algorithm in action.}{The matching in the special graph.} \begin{columns}[t] \column{.3\textwidth} \begin{exampleblock}{Partial order} \begin{tikzpicture}[node distance=15mm] \tikzstyle{every node}=% [% fill=green!50!black!20,% draw=green!50!black,% minimum size=8mm,% circle,% thick% ] \node (A) {$A$}; \node (B) [right of=A] {$B$}; \node (C) [below of=B] {$C$}; \node (D) [above of=A] {$D$}; \node (E) [below of=A] {$E$}; \path [thick,shorten >=1pt,-stealth'] (A) edge (E) (B) edge (C) (D) edge (A) edge[bend right] (E); \path [-,blue,thick](A) edge (B) edge (C) (B) edge (E) (C) edge (E); \only<3-> { \path[very thick,shorten >=1pt,-stealth',red] (D) edge (A) (B) edge (C); \path [-,red,very thick](E) edge (B); } \end{tikzpicture} \end{exampleblock} \column{.7\textwidth} \begin{exampleblock}{Matching graph} \begin{tikzpicture}[node distance=15mm] \tikzstyle{every node}=% [% fill=green!50!black!20,% draw=green!50!black,% minimum size=8mm,% circle,% thick,% inner sep=0pt% ] \node (A) {$A$}; \node (B) [right of=A] {$B$}; \node (C) [below of=B] {$C$}; \node (D) [above of=A] {$D$}; \node (E) [below of=A] {$E$}; \begin{scope}[xshift=4.75cm] \node (A') {$A'$}; \node (B') [right of=A'] {$B'$}; \node (C') [below of=B'] {$C'$}; \node (D') [above of=A'] {$D'$}; \node (E') [below of=A'] {$E'$}; \end{scope} \path [thick] (A) edge (E') (B) edge (C') (D) edge (A') edge (E'); \path [blue,thick](A') edge (B') edge (C') (B') edge (E') (C') edge (E'); \only<2-> { \path[very thick,red] (D) edge (A') (B) edge (C') (B') edge (E'); } \end{tikzpicture} \end{exampleblock} \end{columns} \medskip \uncover<2->{A \alert{maximal matching} in the matching graph \uncover<3>{induces\\ \alert{perfect path phylogenies}.}} \hfill\hyperlink{return}{\beamerreturnbutton{Return}} \end{frame} \end{document} beamer/examples/a-lecture/0000755000175000017500000000000012050430506015353 5ustar mohuramohurabeamer/examples/a-lecture/beamerexample-lecture-pic2.jpg0000644000175000017500000001030212050430506023154 0ustar mohuramohuraJFIFddDucky !Adobed '''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDh"@P!"0p1 A2$ !1AQaq P"2BR0@b#3r!1@"0AQaq2 pRr#  ~KaB".+>vnvon{"Wq.i7cľ`rDY;")9,K3r~ng(w~{ͺ"FpjPU䝩nQuv<ɷ]W=!:?@ԯM#>?+>6؀RL~Kv7p߆-N p띥k)l$^~si SGֆ%v9G}Ώ26 CB[gB}G,<nUr>:[uk@(@QI#zzƌ*~.Cvt;.kէGВ8D~y6/ 6np '|ޅR,la\ᛰ<}]XO?apYf9U*pgw؅ k>.}n=z)^Nʟb4\zWd]r['X mme[շ#>F}(;['P$( ,R|) IiǧzGw> 9x L@ P'CZƧTyD@82TqʉY [?B=>j{`h?RxՍk4ĭxA 3z> eT R=w r{ax%RƺRLg ms YSUGT 5mO'"e#5'hs~$_TZh tplb% ׊c"$eIm%2%D2upY,xG"(A`cEmmuPa]U[m³r]#s"c?3~lf:4Ѷx:{KAE˭{N,V4Z|osVR~EK45T̤&;JcW*{f_k)۵1/q%)!1Vxv:vQw:> 냥r/GW]ȍ~gW[O¥nk!C&(mGu^GZܒ#L=ηX=u;TeJ`+zy Ncӯ˜jm}^msحFQ:+RqɎa~n\ɖ~z.e|cKYOwvDp!̵f]>ǟ Lc)H1CvRκ?|q3} kd- 3tB`_t ,5Om;>֪.!1rA (COt5׮g{N\ h[X1e;.ɒg.LQ$0!sUS0w4O{űUf娘?$z4&  (n{4vnDwEcVNLySy>It5*I~TɌe^Lc*rcYɌbsYSeǪ}=c|cBڋ?1c4'<γq|o]NշЉjdeG / Q jmڛk̫2/Ճ>5ulϸ󮏌T濊lx)ğ?vi;'e)Lk;GV S8僚l&Rp7uؗp'r[qXӄf/&de1)vS >fR ?uSenfK)#ꀲ<Ԏc=2VoSp:uNe4_Iԩy2VUJpV";1AS[& g E\@ ,~76]SGYҸZa2Ͻ H2˸`gtC0+c:ap+T 0)$jtLu3?` T`"DuuwF_9X=HTF:=拉˴9;gQqXJg36[cF9wte=l$x5vF DVp=^6S\K^ճ 6[-F?ӝ'z_'`^+ؐ6 Ӝշ+X 뷮 E77YKrXS& 99TrUphLK|l{dzurOir9֦ޒnه HA E]b>Q%o\+YdžޗY u"o;N8aK\/ -W8:o҇Jhg}GQڗI`VZ 9ڤxrJ\ \`i\4FyYiڍ 5|ڗj[[Sohr(<aԟiC:GFwn `FsZU GkVkoQ5vAkk:%& `:q<ZZ,.76}@mJR K~بsi00Cw8y_a&1K[`m08c]ћ鞀_vF/BOds\Hlj$-' Ȍ,XImCO2Qbm)D:beamer/examples/a-lecture/beamerexample-lecture-pic6.jpg0000644000175000017500000006620312050430506023173 0ustar mohuramohuraJFIFddDucky !Adobed1l''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD" @P!01"`2p$# !1AQ"aq2 𑡱BR#0@Pbr3`$C!1A" Q@a0q2PbB k}\z:SC~};-eڪ^voآL#_ gbVB͏M3k&%ִtM E~[l:Z쪣te-\)%v~j_I'1N\= ReumSŪpC_i-<=evuRxfjޢ7. Azcq(5t:-Xksd-H FSl^G,Ae$i/,ǝ^Sx|oI 6Wbr 6՟GrYo_bLoLI S?qqquA($f/(ms~^/ΰ^W/p*n4(tZ5s5{[a]HTf ҩ55YMgDi9|Ӳ6pܟ]>Vl$җ-'ʰЕ.$Inbk3ݨH9~4d-@..}dxDW(jy6ٽOI"殳73^mak3q.pv$wgOht+UZ[364ur_QoUZl>_y?5ffߤiÅ:i%-Oe枞W@֓UM_'uR2L} Hz*S׽$~wC[?l_ u{9Yw\S6-dLRp5>zK8՝J㪩HS|\B.4UAf4o>@}fUy3 m-GJ2"].egjj;VSy&PbvYCotv,=F5zHg|yc<7305Qsz~󬏃im]|k{:~x#wŮUn7C G.wt5Ohoqqisg9=Oٷ4*he_gx]%R~~3vR7nwy2g+7Yy1rH=gFEIuo?4TUG#UbrřJ`weET.]x>44(3W]G.q+U&4ۤº6j(e_gXQ?q;wm̞yͱ~O+W ѹO.m6B^m/}DKNH{Ycl쒋|35Ƕy)l>_:-nr5hyݴ 躅Ұ`~̄,79Q4 ?b#̿I1y]}0>i'֧;ndUzwlqi*utCLۉm4ϟ^|g7\ i 1X9 dsE;'490,Wo.;5yNT̼]v0KkϝmiZOY]FB 6}.gA·j/?ZUW]ʇ\~=6wI_bq/!HőcOSF.?]AsJxXevؾNvSL7}evgS[Ublp;x_ؑ;NܱVz_tv=F/=W9gSpyC7Y|ӽn_ RבZ . eWG9%V|ƢX(L?;m j5ҧgbc=SiCjym_ed%kW^GI?u@?rV5LX""'֓3OO&cY6Ek6VcnyW3cּg1>&?VcE"bgg9j~|yE>fbbmOXL-1o|#&g⶚Hm[ZmHG3Z͹ZG=ϵ?6Z'ω-3?Vh?_vDr}}yi|LG#X9Zr&c3"<3-13{|E"c}&g?Yͦb#b93_y?mco1^ܭbc枾gǘ$וϙ彣39_ϏϚ1[xGLM&g++_hL֞f5֛O'1HO-y"|r֛Mg)޾+>"&cϽ_WyEf+yo5ǎ3gi+_31ھRxLbc11Zmhg۟1Oz~k`LrXE}b>X+>"<ǎMkYi6rc־5LDL{GYkxYi3痯#ڳYV>yi[ו31yZͦm3yG7$x3Mfoi>&~O&f"k9m>xO?3Isז>M|W޾67rɬsbM3_Zk5Mf#6ֳi>'zՈk6鵢k=Z'-4rGyș'6y+zk>y+-5LRkLG>?X?4x?O>?Y)|G;"m9eCM gȏ,YYMZ%H`7Qs[QК(GQxf3ZS@Jߐ f0kf7(ut 2%nDŽaS76|YЬ8uA`&o\dR]Ol؊hRaIުsSOѓ,vL$Ȯ(145ڜ?7%} BgTo?>3οBQ"oLz.u9,T f^{uD;=hY8Yakf9lZ*վŜu4-E%jk߱8j ,|wJ=e2 L-mkFh6^NҤFTVUoL"gQO$a":-T' =ن*I'N_ViW~/ .ښR{N&NY_Basr.<_zRՒk 4p}p BL7}KQk]}[Z ؈ )E `Ŀa(!>"^LG ^4-(@Z_or\!7B5aO6`Wj4kD5,KRBt̾~puZH퍏G뤍c3EZԵd8hbˌtY};.Mk&< u~ WDJ3+9Q50j2, R*i֛#O^3 :JL:՛7rV+_:;nYrztzK}k%`R.VZӷ}Z ]ZaAT ҏR#&P &ʊaV3- t ɚK#??wYٳ"6iWٸ ZQ3sq/~K XKcJ[W?F UE6SHm .ɶRZ3`}oV=bDbSEYX=ؿ8$z?bU/n%)[Hjj=kTDSK@+$,UVйyDZK;"$W^E952n6S9?Y:B53+ akdgp1j9hjdWdc\WDM~4lTVܩ-s(,ޤzGlg$g񨎬kH0s̉T"e%#A; z[;Jڼ1l{ivӬXlOv2TUheJS6C9MR a{laUBv2Wox{?5}fojg:'hkj/uo~f^n=c0ּۘcsF bӉfQe+mYͭku8&Q*2foO !Z#"#Dk) 9s4W@$LtKo\Qc,hkYu:]& Qٹ#9@~2r2U}̓LMXF?D@LփРG`,7 aG# J״I|Zunb2LKPmrkc6(W.ZPO#`>9y5zoye?WhHc _g 1rY´m I#=, [ s)F5̕n%YyZ-ͬS\ֈ"kۆ?Ħ=MX#m:_Ryeu{vB_P'zH_ƥ]j/B?!0~3ZvVz#Ăq p]5Y`%Zf;5?IWp6 7K~#6 d 6Twa_=NmjQP;Bc}CEdյN7B̻5)(ؘmCJaT+1sڛe,.:`\{%=z0])?Aޕ.8\,uN_+W9Qqm Zi Ŵ{GvK8NR2x;7s޲DeӴ bY6na[4fR7Yb rHppx$/)3QAkɠ,t>P/]QU1a5jӤS@nY*k>Ca#:0"鞪? 4]<;c=B-OAPoK=o.f bcWIУK~4Ũdɖv㳋_C$:(6>֓>c9Ɩ#͗jx:l]nf2}#?=bç Q6;zimX O{xr=ʕ Ũk NŲB9ev9@gmYv-׏JnȉX_ez#VC"F`&d,kab.O @cˢY[Ip; D֑=fC{h v`ND^HThA@rDk~+ YY_ԪV>#Kb#.$~إ( Jv:EH%bJX_Fg<ڡ#uUrW/+{PQkhrK._~nq *;{%*u5ͫMXȳ$wjM4;T01R}A޹_Z?H"m$n')OZ`x [)ڣ.Ul=h@UY-+җM_\%5%P7ٶWd2 7 %u/Iq-Q+Z"e^ V;}Bg2byAJs5Em®fV+|2ZAe-kMveV0Րˋ  ިsK TH5MWl=%2[WBiDC!^Wn$kYg  s4"ffr8+n!ԫ*$Z /2vh7po6$V2k1Z+[Ig0WN?8OP W³ M[K,]r+n2\׹"1}Tt4e 粞2zX>\o| &fTY _j!nY]l!k4/E/m/>Zm!SF3%R ªq"XY*g'&R1u֊Y prEji]iG$1k& f BXDzb<]T[\(_լی)|ՠˎ6:3vq*Ϟu]TZ]a0i`.qnQzj#@T+Gfi[+ KڊkElp={< &,QMttsDJe(sQRH/tcCUy_R?8]W:OTν/Bh$Ke[8kf3< h N;f>[KӗTԯ^X(Mm"f4&cpY =H` {V')k}P-*7ސCtֆǾdWg-r M.ZzԁaU>CCr- R,ըݤCM{a@ Ί035qpVX()af6H[ֽ?j6Wc9;4jY"|qG(4zf h3 Xx4~)6&OZ2K!T< #E+q ⵨K`$B-=jl0a-VB3Y^7mz͕آBv]hz5)h04(#ū&Z_ D*k"ĬzmW+#iHWTTtSwWRX\6a<;"0n IP\(+)ha&; Ȟ+ amI(РR ̜C:+Eܓ咱+{,XWeMʻ gM%Π7M@KrTy/Z҆PSUZA,؈+nm:ޥcTpQ`kczK| 2)H,E߻[^YЫ[ fiq:>v sAjPU6isb;#mϮ^mk Š茏QrѲ} iWf @ۓ}i [ rZ۹$Kf ,&zsML1}x;yS Q_mDϟ>?ĻVJkk">Z0dE2G~3}Kmu | z_kMC%c? C5 \E(zƀ}!~3iTqw&FWfs2wWAZ 6oQ ˬzp\p{#u6RI3=zUo^Q3O;.]~<+Û7\ Sͭ6 .6; ](Ŀ?*ѹwm i$$|E֗pcY̰r*+%ܵ%[9ws*SؚԒ~M$aƟ" OM#c/#J;kXnF&&?ԶR5ԙl2ܝ64uvC$mܹK?.>֟f-v[2؝Гڑ2^"jK$y)^zHG$(jG%byWjXONߓZ dc[ 2zB.,lAz4g%%'T4 .Cvo-MX F])! 4J!ҝF{NOI薭 ~;б#HzepLK!Dvؽ;#](rD rj:ŐSK/dE'ao[;~'ĺu㠞zz$I;dG;vж"0~|mAQK/DQqJJ!9QŅK$˓eS*mn\y\G%rԔeޭ4e܄C&nXEW#Cz2LcYc'KiL;x3DGJ$}HF0&џUď:9tbu_KeƒaKsW:Qcm 㠛q9/tRXRG/~rO"M˙rV_4B!xSLbSVJYՂvՑHdF;~9J۹؅??7c1sjxECjj Į5ԁ#iju9l > , MJU%Zr:әStncE&Iʯ;I QzW_-C ƳAf_ L#|EGG1qJ(߹L4΄/ JGTp?YƢp 3 T%}tTd$"|)IWPZ 8~2h@iVCl/he}SbU`eU GRoJ$WGڹ!Z$z\~'1P?=,~4&q,E^C4MC1+`.`bbT𭑵xum3Gmh+Qsmz92Jߴ\bK4llYH=+b%2GIηWG?.\,5ϑﱛȤƧ %gp}OI$tɓPQUUkNFPL:8V?HmJq4vom@;i8]9I>tNIS< #c\A{_yR<8< Ri}b,&g R`)A~kos.Iԯ)qG:, T="b#ˍ Lci+0m1D21n;Q?`bdlP<|| Z{sʺLڂM>F Ȯ,}Q bd%7 Jɍanuq4~6h<{1L15dn[Wc$ 4"O*%P2c˴o-J( @Rp(2HK톪۟p\sͷpo#H h ɀҏv:4S q?Gv3Fi+*"f#tph$ rȉ^sG&߲+jX븥VtV&~i̎nU a04"8?n-RwE&7Մ(+Jd?g8ƴ"TP]TjM"l%%V@(2I4x`7 Xӕm7EwwLNQ =Fq_cvjEXF2%AlfC$e%@[ "čusNˡ4D7}" fgr fQ;q *[$" e7 $GV" mb|m6mUp6k}V93'hb|) iR!P as?.L[$02Z*~tIÅ BR0%O 7mQ|ʒ@Vnw@H"CLS{t 7}I~3I0VcLٙ&3JX(_:p΋̮SJҟt Oqs0 I,OYA4,cʠ#<|㋃ ŷqޘI@QBA&`U W6M$r!NS:N2w8Wo:aq&7PqF0>͝mBlHYT4FNER|("&vPŹ P  W6)EGVWonU9\-lJ. 6 k&$6f$ 0|k&uEZ+H"5I"75\42+4S6:]pVehը*>sm.p#lt5&( G4Sgkx>4[z LEcϰevuӝC~elVB!Eɰh 9 ,Fʛ6͏D*G;+`bl>oE^|kzeygFV7O@ Q/R!Η sapxgyB&z1J튂EXҀ|e"ŦD . "fG>5ݔ۷e ː͠(.p6if3E3(9fE&\㵕}'K]EUdI!?a;FpC__xEC+5: xyRyG*N $s-A^tE tqX& OMTC`'h&PgXT^`Q. C"D!$}cۥ݌6<&UJ!t|!A'yJ~fasȷ/|@k`06]ݼ@P $ϔZ,yP)$n )#) @)`0u6aE۸ WLj.tһ?h7]ø@SK^I(cրpys֊e!Yu^?e9ưI0I]jA@GyI4ٟV?ʰ^pb`l9̾IorV<;ҡ"pJ& bѤvyM*2Ƃb=-b ^/3'һ v1W`5%EC{:&a4q,CXAZ>|he XKƓ*ClQ4Xc}) F' yoCb~pyG` R%t1z;X\~TH︃}r9}\ C1#Kz %N</EԘ1AXl Q=$ގ5Y^Z@A5 *u__ %^tNZ .$ʙx#ct&™2K%~aP?hQrc7q+ >u#(+#)iu &jiqlxXdP~\XLbL,l^:(icy/[H>α\źy}xyG$Dm#HL fO=!:~ 6 )"Oα $s[Mc𠹎Փ&+o ;AB,ߤgc=:ϗ*\2bj˅eR2}4U:v[29۴B6Ƈ ijr 5b,{ 5c hɍHѷ CIf۪:)|ruOrw n+4znH'c$O},v H4|-(o:l9=T 1e>,bǨS> pd]&CC-<mS.f;̝OJ"yS6$f_w,Nx؞ۛ4:\"Ig'w V\!2&ہ9#ǐ|&7yPm#EW)R`/hau1|q?r4X>..B(65lu>gw3,+XqyLlAa&#$jT!cܠܓd+b 6lP2a}66rTb$| H17G&F% 5H]z&τw\EhKm0<(F ӄ^"y"u Ds1ek89heHYu8,ƿ/mi+1q#p1OYܸӃ|FuG'V9Tfkl+*D# Bd~?LnhL2fbA ?y!h1KO\ܦoyj0fBrף璻 .0vͦTR{}5,N;`7P`{4NCӥbu3P|Ķ7<8Q|WV#[1!qr?: ^)r1e0C4+ >s]5XaŸ&3#6xMACshэcAr9 Kp,u,C($0wQ> $XpVPϵ9߸xS>- ,5ĨS0VGOoc.YQDⲐ E @(5n̬)*@]XHDXO55b#:>6$%{uȠHNM<96Џ SQ]X'lPgFcз#˷`-k~Y1&8aljFР=S3`q>dbI;6^7.>Z9F5,5X#)p_rz@Heұz'vf2d"A)@Lr@010-5ze^"lRbIkC/)s&\j6#n_KfQ ='L^:FylAAT#6r\cDF· f@DPT 1 [<)lxXpL([Tenb")mbF&,]hc]7ŽӨhxS L_ʂ{8 MOqLQWsGHE2VAm#·e 9"D$8@Y=1r$hdUkG>>!ۘz;Rh ølx@J*u>˞HAB·>U#^Dޒ P7 [o i"Qg@iF=ȅ<>SQPy#&ȀnY3M=)<+iQ齦-7ZSQ3.Lt"peP|{3dPɛ*E1ڇfo/X Eύ7S0i#οiԨ#Sc&TYi%BOM/B_I\hrF8'{`ջ6p8 ~DYG"XijeJ":DŽt"O/JDڎ0jV>89lʾO*c@\kfng"A .#wCly /t̰mB@[1Aj.R؀" Կʱ{:lY/&o[Om JKK?:bqѺ UY1EkON̋|YSak@|n{ |99 1j-$j8say|7c$[wVpvǤx  ٹӈH Ώȣl^ \ͣ JknoMh C EhYxTfRv>ɍLy5@I] J(<-H8QbNոA=И1MZؔ 0yM$mibIK]نβ6wةek4c-n|Z-G1~,8S`_P{T#y h2ڊ9 Rcʂl)䂻cCW}Nm ~V,ljBA21./'){vַ-S?K7'.g$TDmMxaAs e2n F_/ㄏ(:qҫ Easx^Hdȴ>2IƗ"@qꬃa΃+5/+$ITټ} T!IG?2,9ϊIf]hS^4S!c$^tqR t xQf$.lc<("5PSq14ZKh+B?r:a puFWq- y13ۗ:QcxLyXx[ƛ,ڈNYM+&UV̋6qkƗkuŢP(z@)+δP.;^cpޮrL8 +<-~Sz1,`"dnF`B4m>*0r 9TVtAL+~\Lm77aQD/0`iYR&E6[4)%~U5@ >ζe=[nѺh f-7pt|qM.2Jxژ#r,ӡmVdњ Pw^cqX 7*i6Wed7*#7>4ޙ_WGj"9E;xO Ԃ@EBu _0){JbJES*" .?h0|Thc+4D*u'cɌ*1bbJL2*fO̶xܣ+;@֎߿ƕ1,ʘ*>Bb&<$6根sGUc:ŔnV^4;b @}"is%)3ƨ؎j >H,F]7 1їZ> ~d*mH97~ކvTWo[ΆLPێU= x\PnjKetH6QC<؟W(H6f$;lljdk|$Xy1[|v@+f7$0(#.:kx&0j Cp&k;Dك d5ީJŃ^E&HҎDegv^tKyǙw3UKql66'YT3!z|yPLDIR~_-k+O]fH" ѻp>t?:qm$(lWlS ۤzJn\LDŽOH ӌkλl-w`F4C'v\Mw'Tvs(* OPćirc?PA8VQʎ566Z>ؐTGgĊԢ*b>5۔\0'_Cq}#η$&MJr6(E|z+X+^@2d?T(MWpˁ—ٖ2xU S01Hmۏ O`f8)P&fa)qQT;)r̆ DS;*}wxLli0glȊLN116P y9dI\ .AOv_QUΛ ۏۂy,kfd-DFd&Q*kIHƆG{ ?:+HX]h6󫝪.Md5sCΆt%LkCHCBi ϟ<øOհ_ <_MOkz9AwD#_r;Qo5&SŸ;rHg[ZkyW`0m[rC3WeIMc&rXw02@)3hib.G+q .+hОuOzM6<=Nk|bqjK48ۗDwkA0F $O pvFj]?v8A1n@e> 4 /P\O NfޤHōd[ d@ڳƛ&tRCz8=Cpu+ď*(ȝ@<28<뷴2qcAH؈]鮅&)[(1~p" @B O1W{.G[1D za ?]+\2(36CG!&WH6OmG -ns'Ʒ;˹IOmZ7֕lA[ZV_pq[p Z'"t쏺c_g6G0':ُ9ZEH16}% 'J:ts\iy/r9P@/G"d J1Pop0aLFqcэNc+< H4@b&V43#"N>F临Ի~1dvF2}ı@/a y 79($QVXX֕5N6 XΑM*1<9Wm`7PLQƆIu} mßl .&.u Hc x3KrQd>u]XA6,rr2h7*#]$7:,. v :a"Hוw9ߨ;cjP ohhݶfkki43w;8~qQkH(P’Y*f jm~"Ո+}t( ˼^mFC>>)Q貟 &-ʆlo)RC-GB)xp{"d-Iq 4&5InB(lƻ1;d)/$ϟ,w>T4(_lDn w nˑbM֤|Gp(mv_C.d6A:M(}|xQFIDFp5+Mhڕu}.iT VhIʤ05&a@EK.BDoatt7p_Ƈ  1[US8ٗ[OdSvo?HUSM52q`]6P moWIS_\%DbΛ }Q,O' [飿XA#?CbKcLh`P:̓ri~ft\kɦfS+lux>D LXrua› Ц<μ(́4J@HkwW(lGٔ;06Vw/αI~D:Ž1қ& I&H))Sk@m9kG"2tԱuU$/>52~2<)=SP4ne*Vz<+.<\;vy0j+vc!6xo[πֻqO20S k@&RӅ.Aw&s'3"̋ql(` 07]^$: H vx3G%FvmIAFv;'q+dz~t1a#i&Pː&_Ʒc,AO$~Sۮޟn7>BBWH=_cX 2O' WX{pqe~vWb,2c1u4'N0ǟ*G#G4їyuy8xa'6E_SLi_M*f•p =#?A+py$`):avw]N^Qʷ3楉'˓-<`IJd*_uH +qmҮ{x !IS/op \IcoGx;yT k*'ik~Il.gt?.P_M=(ۄ\ ѹ@{2hbi]Mr5(%t2*cݜҿDD_]*wr:RfkMvYqbix1+-HH1z2{XA?QLxS.27_CΓ(( f~"80?eEHHCCLLBk1FCm2ycZ+S΃ŸA)q: a҆LCgGP!axɨ۷Uҷbd-4]۱]Kd'sHטYS;mP#Qz :(@ q# H#c!$K_W +:egQuc$_ZaM*pnXAr),[?aKMۏI}us 8(̻Z} :R_o"~Q[UEkp2 a (1?=> A\Kl=$ܚlKI/?-N O$ņP<~M  ^qz5496XLVhŘ?)[^&Ua7Sbԫ1AeS#S˓eb-1 &cIMJA‹Y/I/%I¥a vĮ Z44p.;Ub4b"Em{\_.14+\y oCo.GTk&(̤*wpC6\X NS`vn-w(_GdY2NTʶ6QM*#'nMP`5ͨixV Hy/Jl8HGc8 ϗ>i^BAE ĸ޻ED,O K<Jr,pʓ0B!'?beamer/examples/a-lecture/beamerexample-lecture-style.tex0000644000175000017500000001262612050430506023512 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. % Common packages \usepackage[german]{babel} \usepackage[latin1]{inputenc} \usepackage{times} \mode
{ \usepackage{times} \usepackage{mathptmx} \usepackage[left=1.5cm,right=6cm,top=1.5cm,bottom=3cm]{geometry} } \usepackage{hyperref} \usepackage[T1]{fontenc} \usepackage{tikz} \usepackage{colortbl} \usepackage{yfonts} \usepackage{colortbl} \usepackage{translator} % comment this, if not available % Common settings for all lectures in this course \def\lecturename{Logik fr Informatiker} \title{\insertlecture} \author{Till Tantau} \institute { Institut fr Theoretische Informatik\\ Universitt zu Lbeck } \subject{Vorlesung \lecturename} % Beamer version theme settings \useoutertheme[height=0pt,width=2cm,right]{sidebar} \usecolortheme{rose,sidebartab} \useinnertheme{circles} \usefonttheme[only large]{structurebold} \setbeamercolor{sidebar right}{bg=black!15} \setbeamercolor{structure}{fg=blue} \setbeamercolor{author}{parent=structure} \setbeamerfont{title}{series=\normalfont,size=\LARGE} \setbeamerfont{title in sidebar}{series=\bfseries} \setbeamerfont{author in sidebar}{series=\bfseries} \setbeamerfont*{item}{series=} \setbeamerfont{frametitle}{size=} \setbeamerfont{block title}{size=\small} \setbeamerfont{subtitle}{size=\normalsize,series=\normalfont} \setbeamertemplate{navigation symbols}{} \setbeamertemplate{bibliography item}[book] \setbeamertemplate{sidebar right} { {\usebeamerfont{title in sidebar}% \vskip1.5em% \hskip3pt% \usebeamercolor[fg]{title in sidebar}% \insertshorttitle[width=2cm-6pt,center,respectlinebreaks]\par% \vskip1.25em% }% {% \hskip3pt% \usebeamercolor[fg]{author in sidebar}% \usebeamerfont{author in sidebar}% \insertshortauthor[width=2cm-2pt,center,respectlinebreaks]\par% \vskip1.25em% }% \hbox to2cm{\hss\insertlogo\hss} \vskip1.25em% \insertverticalnavigation{2cm}% \vfill \hbox to 2cm{\hfill\usebeamerfont{subsection in sidebar}\strut\usebeamercolor[fg]{subsection in sidebar}\insertshortlecture.\insertframenumber\hskip5pt}% \vskip3pt% }% \setbeamertemplate{title page} { \vbox{} \vskip1em {\huge Kapitel \insertshortlecture\par} {\usebeamercolor[fg]{title}\usebeamerfont{title}\inserttitle\par}% \ifx\insertsubtitle\@empty% \else% \vskip0.25em% {\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}% \fi% \vskip1em\par Vorlesung \emph{\lecturename}\ vom \insertdate\par \vskip0pt plus1filll \leftskip=0pt plus1fill\insertauthor\par \insertinstitute\vskip1em } \logo{\includegraphics[width=2cm]{beamerexample-lecture-logo.pdf}} % Article version layout settings \mode
\makeatletter \def\@listI{\leftmargin\leftmargini \parsep 0pt \topsep 5\p@ \@plus3\p@ \@minus5\p@ \itemsep0pt} \let\@listi=\@listI \setbeamertemplate{frametitle}{\paragraph*{\insertframetitle\ \ \small\insertframesubtitle}\ \par } \setbeamertemplate{frame end}{% \marginpar{\scriptsize\hbox to 1cm{\sffamily% \hfill\strut\insertshortlecture.\insertframenumber}\hrule height .2pt}} \setlength{\marginparwidth}{1cm} \setlength{\marginparsep}{4.5cm} \def\@maketitle{\makechapter} \def\makechapter{ \newpage \null \vskip 2em% {% \parindent=0pt \raggedright \sffamily \vskip8pt {\fontsize{36pt}{36pt}\selectfont Kapitel \insertshortlecture \par\vskip2pt} {\fontsize{24pt}{28pt}\selectfont \color{blue!50!black} \insertlecture\par\vskip4pt} {\Large\selectfont \color{blue!50!black} \insertsubtitle\par} \vskip10pt \normalsize\selectfont Druckfassung der Vorlesung \emph{\lecturename} vom \@date\par\vskip1.5em \hfill Till Tantau, Institut fr Theoretische Informatik, Universitt zu Lbeck } \par \vskip 1.5em% } \let\origstartsection=\@startsection \def\@startsection#1#2#3#4#5#6{% \origstartsection{#1}{#2}{#3}{#4}{#5}{#6\normalfont\sffamily\color{blue!50!black}\selectfont}} \makeatother \mode % Typesetting Listings \usepackage{listings} \lstset{language=Java} \alt {\lstset{% basicstyle=\footnotesize\ttfamily, commentstyle=\slshape\color{green!50!black}, keywordstyle=\bfseries\color{blue!50!black}, identifierstyle=\color{blue}, stringstyle=\color{orange}, escapechar=\#, emphstyle=\color{red}} } { \lstset{% basicstyle=\ttfamily, keywordstyle=\bfseries, commentstyle=\itshape, escapechar=\#, emphstyle=\bfseries\color{red} } } % Common theorem-like environments \theoremstyle{definition} \newtheorem{exercise}[theorem]{\translate{Exercise}} % New useful definitions: \newbox\mytempbox \newdimen\mytempdimen \newcommand\includegraphicscopyright[3][]{% \leavevmode\vbox{\vskip3pt\raggedright\setbox\mytempbox=\hbox{\includegraphics[#1]{#2}}% \mytempdimen=\wd\mytempbox\box\mytempbox\par\vskip1pt% \fontsize{3}{3.5}\selectfont{\color{black!25}{\vbox{\hsize=\mytempdimen#3}}}\vskip3pt% }} \newenvironment{colortabular}[1]{\medskip\rowcolors[]{1}{blue!20}{blue!10}\tabular{#1}\rowcolor{blue!40}}{\endtabular\medskip} \def\equad{\leavevmode\hbox{}\quad} \newenvironment{greencolortabular}[1] {\medskip\rowcolors[]{1}{green!50!black!20}{green!50!black!10}% \tabular{#1}\rowcolor{green!50!black!40}}% {\endtabular\medskip} beamer/examples/a-lecture/beamerexample-lecture-pic1.jpg0000644000175000017500000010774112050430506023171 0ustar mohuramohuraJFIFddDucky !AdobedD''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD"! 1"0A2#@B3$!1AQaq"2BRbr #@03P! @10PaA"`pQ2 er2S496ߙ~{AgK!sE<=AXA⊎nK>ޠdhd7:ԔyoOjc-fV{֩YGADİK X #@ܮx{wFPyH}ѹvW;=]S#A SL:5sffJfҟ'Juy,W(^ΚfUz꿖]12&WT-R2qWw*$1!g98gbڌW` [h[t艞⊎枎>\!tfL@Ll\g[auV#W-V EZ['S-+ϪԿ5̀%((dq֧]z{y*ReڐEӷ.*w%kxgteS)(()TS짇@(Ύ[ɋSֽΚVjk+͝|LYҵ5lD9-I%w16FGUEDJ]A^R_P #x,nK.*gB(!#3_P.:%Bb*/6a%J-)mT#k ԝlSufWY+j$co⁨سќ' yfVٮTYh0rucrR73]z.eZ, ~u8՚ v3R$LJvWt(;ʆdS{>u2qil r1&a2DtZ5Rh]8T=‰:0ʲb3U5kiKGD`4gVEU#!źJZo;sI,fVt1*J79FWmLuT)εVuvqmK֪=ZCfbj:4s"E`IJ̎n2f9Y)iͤe+ii>y 솽vZEYmaU݌GoN:zgR]9h* BL_\j3RL}v+i-2eMJȫrjPHۥG*Ue6U@WEw4|YکDNbݡV;g%nCh>jf̮u.“[TL˥3YOt0[L2ui-*G8 Y9㩋2a &,G,Q[]\pu嫩ͷZH%ud h.bܫu2: Y@MLd˱J$z t!45 lQWZl ^ʻBqXrlCLM"tȥf(TFŞt+CQbYթݶʻ^&ܣoJ^ GBWz&QmcIa 2֨nK&bjV;֬Ui^N\>i9(FK&vlZjbYP[p$"heFj "- IdM]s,VoE83iϽKju[ թz Y{eư廞z?`jZAT.S5pCAnLkbGHJi\]V)YcZtDƔbLOi aVԣvp:s2&VyGK6ͼճsf"އnr\EڢU6fX71^vƒ שNk8gWStZeM(EWS궰6C eb)kZKX#&{eLK:9kg=v^nNԳziݠݷ=>:65@z},}E&`Yk+:\QEA16j\᫨Wp2;$-%-Za&$W}sWJ۝ *v,sҳZt1qNO$ɞUV*X滘lIYV<}2uf0^PrֳNWZK2tξF[-OZ~utnHWm{B}ا& nciOHaN[Z9Vg:嵻xʪ5&{6(hd˯]z͞c. Mmgr62jKny`ïguyQj;gճˑzdi:R5۝?>|Rfĩv7nrKX[ 7kUZI4nQH3m`z7,C L/CbrŤ/ԅqPEU[:yWiNnW(nF:mMJk,,^ "6ŖVw j k٬joIˈe1t]Q+Ar,Uhm|7֎>`ǧ><-/&{D@h aYi׬oPz,ҕ,d٣[F5uLߺf^)$Titl ѯ {_ZuG9Yl\[[Q-cOH,-3b%6wT<߲55xwR2bp72N;-?IVVgP㵎=:/^܁+4tY*2DW 6>KƼ:I"t= & Ma&4e:ӫ )ՅDL2ĐLnVcbn`16|r#Z6W~; fk3TI+WՕ/5-WzkT:LSwIPؚ5BZY-[aoT.ձI%+-dyU Ex \FLgʥFf#ke^L #]6k0RdK>;uyuV%/prXs{6!̣e*ִ`5e)̬iX=1 lS)YYnF.SO]Xb+_u Zu?Cvgҵ^Hx115(]O/yi,U CBynMyQ{C?t3Jd?j6j8+ơOӼ|ƖnNj-J@SMT@m|5Y^]yy /8Q^lkZ;lsg#nc8H͂ `VXbQ%׎往UdN%EjZGha)݄ʵ`KF)YkBD]f ls,^Syd洹auLQ1O:G"٧fuDFj+CUa &,U0:nSb`Y՚ǻکMѥ=r$Jd/1G` oWh/ tKC\H F]һruM|^ 0.⅝x˨ZU*8hsJ `, X04͟v il: d!5B 4_QrV`MAҊWUudM!m9bRK%vsB i2_Cgu[UZzuyص53qA**_Y9tuT qohZ:,^\@| z^M eZl4ΉK 35`ګfRt & Yug:Vv7 s:7zV}``͆fj\~"UvN8;oWDh.g]:(j"y\yQZ$dp 6DA( 2#ʐ,bXQ75|K0Uʛ3j5ԱskѯPt1déW9S%sAq-ZI3%P'5P. {ުzɲ"ek[:ēsTDxN2 !O24O$L[EU#2zKx$er8#]Ar*("Dj]Xe3LO)2 jtLsVjc2tBfX;;>#3p>>$tF .`&w33?=>&f>nS"v`101 &cfg~]B C0t=3=3 =Ꭵ1 30@ـt" 9Xa0Nx}C2>'zfg'zw'0G~1`r'0 S=0fDf:3''g0 (~y:ߨ1>;|y:}=L33'x:dOE=q3ȃzpgLt0}c0=p&&:`f{lu? |\ЈD`>s*D\O:nW;eq fL;&aG\7Dkط돁"q0LBf"|LN랿P|H`'8.q ;`#ic#0DA;b |s3L c3 ı8S 34ɀb陙Y~ASO! ;`SLbzbgzb~%A"qǑQ{g`N3 33Q3PJ,r!NXɃ%/}31g&&'ivuܶi$c110?@'nf33R383ɇ3$?0 g '1 D@=>O\z3332'! NFgxpTL@s3&GPa랙 L333333=q"XBFrf ` N+ JcWfD&r3Ls'|;L=;E! Vk!b`ɟs3@:r:fv&&:ȅ Fj `>wLtL g3\̙Ep&@`Ϯ3"}=3=3t!=1nBr3뙙?Ltyc鉉:ٙ2cX^=:?6&:g8vN3>fg?@D٢"3!}A20F}N`F9 QH?|:_ !X\O|?A?OW*F?:bbb:v: ]q>D.I$2&GQ;BDzdgs {c111_C|[vxÑ s)9 a ~]3ӷL- @I'1bgffffzbbc>|Oq,9Bs"}Lg~#3w\L&:ffdvW&D33333'቎fffr돞 Lt0?133333?!ub =~f"] `q8uLLC=@3N? ̓fLig3111s.*fݺ]j KfffazK.J  cƪ `Y_,8aX7i~romk~<f5cV+ c+[w U Պm# @FH F[ҨxU. eݰ]roZ{=f+mU;o]NtWd#垹D)83ab[]Q^scxlj% 2ey9"WǒCt%؄Mlxl- DlT&3$%b@K7(08#&a,1dWxUo:[$V圮(4W^Tz\|q=iˡbp!hlg\7*f \Nyg>DFT\E* sBʻKr@_`1H!8 l brcv >u@r?ͬO͠+MMK]vh\@ Vb+V\`,`meÓVA]@76(\^V9V\NsL-` njUePX4ة6k#\X_5a,Cq}mk5|i[1111. K.bB O#"T UBx2B-hsv);[yqwWli[Z 3j ,XmfLKx.P%XK6%W-H75Ժ[Qbbq%rv,%C#``&r6YbVg[|M>FYn+J{䂫 \5<؋\e05 obLD aSmȃaUz[J5*,/ZTn.mG0?~ܦu]Z5tͱ\Ms[MVVPRd~8%zͯ†{NkefkBTߍ6[1^٢9xדRqi)+G$\!~$7*@^sY`W+-, TԪ5b~eZsm:ȍ4PtO Cz1:Ӫk~nf]Sj͢h7噙V@躰!w8ͽۙ0P_f\(ڪe{S,g𮭑z^-mKisiJX^a˳wcf9~5 xpLgAqc;.2R`IT9ٔ+SkO56UlyYv[Uj*Ys5^,wEF.m]{5h_qvDi2͐{#U)Jn\55hnۤS^ڝE'kץ!):8tZn: ƿlkmR#NAr#dSeqS* 3< Z"<{*S˱7yuQu6N5޿nj -ξx)]~w)nuJoRݎrUC;v8V4C<͟ T.V{Mfb EWE[S\륆^ժ=~{abT /+K5؞UL@j޼`J  IiD⸌6$z밑_+TSff(,+i Zs^F&]ɭNءkƒXhKqV딱M5Gcmi&yעR!jՐk+),6NyUg]Aa veXާ(hF*p5.kPÐX+1-WNb_^i& U¯RZ@԰+](TR ,M`|eHjZrqZ U{݈mrʵ_=ep m."d6DZ6r-v܎U@(o}F9ŽBV͒P6KgshŶYe(#gS ɮk bX V`;A9g mZ=^)Wx"bd(ߘb0``Zr{1 b#( Qieh` E(*2ScAK4Ab+Y%U]F֠/[hK`vՔ\ԡ.*鱶4}!]O"f5M9eC A8dzCQU'͟jU[5*oe-ٍFCshXęKęm2 `5Ы?:ʓ6 öLB^ %`V]x#Ck"{aYj"U Dȳ,C``ާHQk6u (Nޫ= G }(U|,׹EZ64jWJ`^X۹n҉jׯ\]o!3k> eE5"ֵͣ*^ 1P'8bʇUYP MfkUQ[Y_=5&N-P?׹O_sgy< V *Rww,L^$UجUT#r3N Ҵ&XAe1x)rb7hVo51 AYKz T6Zqg-6h.or6jڬ{¤T6s4 }˲5"> Ie[%NvmWGvMuһ[̵6bHrN‰Pu 2*|FZ'|dY zkC2k Ap!݌% a)RX{^u%Mҽ\oW~jjl 6M6> m=M[g6ƕ(SYp֎@/ee߆Ÿ_p3VݴU(WfS"M[ 25Vf%CH*b 2dSg*ϸ8LkdxNFKLxԪMPFKE ə4jW9ľm&H5HSpeg5nm VͭwJΰl3]uȳk(7ېH r,L qɦխ[kj/j7Viu 7-/5d):(k+ll5$*'lSF*WvFb*E#>5Z1n rKDE$Cʠ,+JvNͫ7U`J2n`(mkY pcb%Q_]Zp KHiUCkX]pku-G㸞79&$cԭ^mIҋEB `'HEC$KLH+8#(kg-{vT޷lmj{DaZU~Z6RBn;bkb,f1m56/mw*WM,w*#n۴b{JYFkXݪU+S-%P9 `"`Kk?iQ*Õdv Lp,lħ94W-v@\HXk\dc0m 9rg81G{9ͯ ]Ơo]9 b5`]v/CX5\!(X*p]MT6V&g'z͕֑5.&[@8lN f_I`' -ג3Yd(ej$3+SoS=>jTzk8*N+˖Ҵ+DeļqV;4R=]W<\+ GDkݽ,kvn]FW* Eva$o6ǵ3|(:, Xf h0\8fȕVsc F@E[,j{'۱w'$O]5wV f—7ytl'1s<^^7q[+pH)װAkҺUٳk\jn[u ʗZ3\h- >Z|Rn^ŖV]:e=춦%re[zZeV&x96Xk`eFb'q[ ?[#d'Z\(~DÚ,vxHf}BzD RpQ0.n[((wʻ+փrƍq^vk(XYuBj*EfpN׾r֩OUSUcUUӱeAY++wmVuk F A1~9 %$ =KNd{JTL-GWzZE+fJ]hhq+ \j,gs}VңeīdkmW!Ŗl9,rZbs`*[=\?ul BMk쵠K%.Juh8 jb!|! dh#W nK6e, ֌Er!*1IP1";F*B;E l!T3(g#d fWen \g qfV}JxJհ7 lqZwj MnBBXHtծogll +Ҫ34,f Rx0VaC?J~]d>_Zczl,uOaf1Rc`b}M@UNekcÊNSšWVR%7#b~bm5Ykl!M%6BŻ 3OFX[4V[6QFà]K& ص_aS"׭Yeդ@_&~,cX jİKdc5 gtZA-l33?$A``gpg8Y1 D'@ATQ[;3ݦ՛ev=KW: /kxV]Fex0 [l#=c>(Q_WP#J^Lz'04 999 r#%>ly܈PH!$"l}덏[nVkwe)2m22l;] #v`gu+ VcPHOTV9a 0qq* jkTP{T!v &'3yDp wh=0X}Onq[ f` GNa5jTXX'UuҏOdkVLժޖ׭}r80$Z^` ) d cBc@;),FZ;fYDSDcB f$#yo00dV}K\gaw  !!"b YYGgTG.h![+h'eY>ư۾3ة$V AWg圖Y{=aPjUk!2;5KeU-._ߌ™c9d$/(TJ1CrkWBClb g¶e.V}""vr(9Rrs@Bc"*xr}qdK>{g2]`ag4V%~'/[:0"[֦INH|9 焦'!» T'3 `b1Q H`A.Su.9CA#`dDBaZ(%X(] =+y(ˠˢ:*2 8mTK}<#@QeQk }M++JB%KajP7u$-YU+x9&@ +c `Rq,ERl<ˎx@ !OSdܧN998w?e ;X 땁 Rpd)N$Ð`n(5pHي`NY>95(6m u* ՖaX.g#czblKN a^㑍Cz([BEk{#8%BP `,eI* `2[8`0"Gx\8!灋IR@h*t3 2e^D>5nCl-סMl;]ie,`ha<= bj^a\O&O֬N0r8S rq?$^Ո-K*FNF$9G&(0OPp8TV3.8Qj@neLDf"WiUA]J/*a,mM; 1}U&&EFa,cROVUK sYKe3rXwT+v*IP,r-,w1)%2T4b*rR (pVe˱%Db bI з( W\P 5'?`ykL6t]!o#Ǿ @(`@ѸF0[9.s{F_ULux]mXVE*aQr c3\":t)vTP`dحщm8VgDޘW/"R?v_}~e<ذGuwe!>ۉ?z[ǿ9f9D9& B`퐣#>ܾ_GHU >ŋKe.Is⋟0nsf\;t m+( 8qsH 69G~eOÑ߾Hcˠl6gm ]-c]uH7f) J{u }j ԆD/s1*{d淂e2Tb(~Q!rȟeYljtN}9&m{&] Ý4M|J`nY0 TkԦ^G N"0 !z^QP%Ks/Fj6|)؂M?tXgUsNe4 :D1v>D1Cq$љ[Dy'q)>! {5)ׯHĆ|A`sZKtH D[mubO?i uJjLZQ˽ޠHW;D[}{9DWd$!_o"TЮ"+v$gf4GrLCUF=8\Ԯ'6n4C^: ٬F/4w sbnzbs[[RmV"yi\ѐM䌦XUL:1x#f+Th$ȴyE~ @`mlP@s".{cKIsTM/AsK@@PSVqܮe.60Z[DBDB$#7qpe"3Qꆘvh6D Ż$n=E8jv52H'tQ1/vZ J- YtIz"d."6 1VPac3Ԟ*یm}iI&`tp`M2 $oXrG '&##rnN[P \ԵJEtC%ycy׏0/ _;#wWeₕq()-9pϿ.o'/yJLJI|g9@CN#O@sPx%/ .%0ۑF2LVQF8~'yD_F\5Oa$qwG6'uT2Svi |TzQ,%2q8Â1! ^W]P"#O"S'RȰnt\` !E@P.TN^G4„r7 )؀p(O]8%DVd4u"9x#9-g-ƟԎH Fت*4C+/ב4-m{TH£qaKHl++)YHX=|2)tH2sȽbx֠.rƨǧ`5x9PPfC,\j!G.n˂<Z.8ċJ` 껛[LkR](Riz@z" sfpw8zdT[%&Gğpu%ا3aB3b12%,Ť+݋BbkZKն#\O'!w[pI6iEʻI$(OlM]{LnbFa/C UԏuVgEsT+l2Rtb+ _#:0! nf'mQQ=:?ajTµom 8T @ȏ ,5L)?-,\ K}΀!VcDb;.*ޫfX] S@ŝ}WU3N%l*r[l\[dIŝ +9( W+TE<ԧ}q,CV9(wd% e"DB>Hws J bEvl'g L9(u,%rGcGӅcW83+ F80D2t~֙/ MzXD6dϴ2=1nHdOZyf̚eN2 rߺhm 4=#%]# ZxL@q4Q}yD(^XѨ\zm6 SE(ƳzD~Hzѡ( L> ",+i|<1[@hOPaL{C",0>*+|tUA!E)M5Ҟ @WpU*~~Qm5tm&]+o-12@JmG4摪pL (I$tĐE5 Nh<Zܿu(4[1/&5M>HtJF'n#&3(BOQl<#%yE<ԦGOAsCѪ]wŗPً>/1^8!ϻE\>]Qb1$DN?H&2c(# 62t$ɉ6 lʁ8@Vey!@[x!ӁI/$&j{Hh;DG}q=."N%F`[} J5xcM*(%1ā#ԉa5`$nP.P7csT#wqS^UJ>ɯFTrD|4FU!I?\\U 4 \!C*Pg|Z BĨNYWӐ'LD-E蹍 TDN ́rhhLʤG(Q +&oKw q`DBr™%W%s+qK ,ݴXqErJdiWmh߂<}Ϫhfa@q>mKHF bĥn(Bxpoj' Ґx<(ȼ r8#FᒌqJ銺nD!}P b\wU)JFRr%a`I = D --$oDEIKt@c4"\ZL$v*"6 ,nM]bЫ(p $pBz^%8̘b+th/:z25znC(Em7#wbOp'N=cJbsO%%.ɥ@1&-g&ςhx"e}j3,Ilk|tF4#Z%bG7i/[0*ԾH',H2pOL^g VzNAEQzN یȉn4 =n,h4L& z/s^ۇ DE(˦Xvwz'Dϧ"deU4J}!臺D E,7nR"l=Wi 3ZAĄKbz215Q P 3&> 412"^RAꚏR Ou*5V%iݖΛ8TZ276rqܐ#)=(g)}1u;P-%!?FriM ˁ]Ho 5QjE)Mwbde)21YAȖ4'm۩˧`qHu:R)J8~bՈ ^ C@$(XspO;A5[:|p$;CA[Yʻ:+1hj8]l6dX\pT+7 61cBxPee- e·5!H9'ziRG񁯐D3}UA~L$Oޘ틅W8Y8 k]&U,-S_,'B( @F}1k>BZR:_(Al/v$-0Dz0 Q"3M?,h#Cd~H%}] 1r^p ġq2R 7QL<$eR@B)TLjI OƂBRʶcG f|S ܭƧ i$F4|qW[TI<ѐK"&%K(C ,WHD2aԉ$ #~{lh q"@ԨՑ 0:%,#1%F 6#aNJ&W[$mvvj: UnzPK@.75BV*$۝֋EEQHrWp`SDħ c6d*UT7m-# S_Dc N7t+fMLcۭaNFSp$D\p >wv GnBLsػB[&PD N{S(s 9<  (I@m2,@A/&.8{2Z2( P쬉4N EB#8Yi-G-- "-mpG(Uaq%POc-$:&怈q+UVy rtH;_ Hmw 6KpUTUq䝈/BQwXjS<5~9X0¿5IT${>n -!A_㏇6߳*IJEG^<EAgrĴ)Zd'TOP89+ԂP4(Dhib ?&BGw8EH@`BD1~~P **5Um@o5YMw͕@Rx;TVC[OSjXdZb2ӧGr]3"WQ$.Ss4S F-*lfr\)"LfH"]8$^8 +NbK!~u/&8Jr["2%CM!jL Go d8Ȱ{_TY ^@ժ(Ê1zOL@F)&>ELMkpUmt+b%|z@6M9 @pT6(1tX$k#ikڄ%bd5<ЌEv&'tddvϕщH12DiZO8x/n}MQOCӁ%tMC(@&'躂Ϸu%#nM`rB]9A#ՆG0?d2Cx* Ps"HJ]"ӈv5xENGL352o-]QdLM#XNo̯tWgݑ,E( RE׊ A|Wײ< lJ4&\T !R$8C`UZCP4a⪇1n2huz ZEJ})olC [Pe"T$kgt}S[DED,]rKp/G (6;Ӌ%5U}t@ÁtDmڥ*4M-\~HuHż"<ܦ3l{R1p[n&'h%eɀ`M`S!h~2m1ԄerFNJ$r(Dq^?UNAhQ{0[C.z:cvC "q[j!*t3 &\5956@ҟ%/:cw^d5$oHCe?c\ϛ&mj B=H;#0EʍA%P e+^Qg-9[_4\.YΘGĭ1/2p%`=1$[ׂ{D& `8\dfowC;tQ~lhTR-1,q4TH_, !?D7fRL>2C?PD9S'ESH`dvںUQ_Lh #@^ N&%=vԤ n>n@ǨD @f1 I0P$ jGY@H MS殶eBj7c^H,HrsUhESVBCż ?3NWKNw@]u(T,tUL my1NEΫH",@٧(D8@/n5Hr#dߩ'"6c)5Jq&/ ř`^IŜ:1E`cG?; ]r!WA-M>h{t+_ 1Q 'nyy(u'l":˽uAM@9f+Ѹ뒎Ǥ[ʿ.#F׮/U"T)UaQEI͓H6XY1dM-z jOUu$K*B28NM^maZbOT4@2FDq|smӋ}Ωݚ CzY4pT?%ӗ^Z'j$mcNp`{Fw d\@&8 1560MS8sJdnU:ԽlQ7Qv +cHEBɻHb1[z3.R>j7|G$/҈~Lȟps>d 8< dcFV[rVLӀ~NC^Ck]S0jfL[P3 Ψ/&8DW0eDkf*VFuj$uK*]WVGUcVP8rέ#o!!!&EM[-U(N"GU;P$`"@.plQJLE(^Q .EtDpbȟVķ/D'6@$:t̘VuN +U5Fð]c(Dh;!! ѵGҀ`#C u#aZdۚO^2vtͫ+BjZAG99pEBT^ +~1r>q02cgDb z✽W&tVUK'߶2c1(X$g*gЀ3જT##߲V) 6-G&ȶHPS4VbNpv1uBbsiIm.e}KcʰXv_n IE<Q;F@@z]" d:pirUSD)oNl Żz=""q7*=X:&LMY8"q(&@N!јqVj0Dt0TDL Aܐ7x(Q 7kh7=IB1`|T #ԕdo=3/Z)OʇN NK]l5ZJcl50J1<#DZ@Dw➁3yiEkT}l۔v#"`l1ᘅGmGhCKo`zA4 bHg&ep0[tH{bcmؔaԁqJ&;c|QF!#]q-tҀ?DB;!P.㊐>^I8K rDo$zDO(2qOٶ*@Ru X54[E^pN=QU0sDrY&'Th݅,1I5S}.OO4^pQl"‹۵e#ubRr!wT2āUaପ> ' Nb)t7C"y9-@5fo",'- Tm.$e,٩:-;'!p!N#tCWvu:D^MM4]],T  ԤXU(P|zU@L\).MLQ22.BPx .?,Fø^$Ld@FB?R;?臷)J"1`Y69.F}PSԽ$U*|bH[15 ,c1j^bƇn$ssOnq$j"+q*螾(d[.F6tM?ԎV3# _s2qxF_dç67̢6P)EnqL8VED bfOx^N$:UlAEU@M9m*@ʽ@%%t@d̮W4 x-2ƚ F%CiQ%l5C,hr)(&(ZWt2 0*,U>*軪^2B5jftUuNhZvPKԳUƟe1 Ěr4t%c#]Q6`˾!^Io"\ q= յ{f}`yLȖ@ dc *ԱӜRrNbc[n({tAv8# 5p?%H'^@lD UTٔ@ } z7U)$JT'p r~ tĖW(Z.~2\ ‘(BvDku5{g]rVЋ"F韐Q;\t((˘N q%Q0! A$ @lQ4jT89 0@{8-P ^*;NCHX9rVh5:AVU@i_5Z4` ÷یsk*K=CRg.bމTUT* N(o1lnB>aӚ`9| sY \W)pT*:p&GUY 1WDfQf|X^] r . N5 3'!xU6#aTӍfո'WDwdҰlLC6iѪUE{m\1Fin@QRSd*dY0캭E1GEN pZQ\$D;z:rxʥ6Lm֨+!D[B 2:h!8,2i'VeNJ~?df9*SsTz'4_{cvRݔt(q)NKPs)Sn\!xK&5L~Q\1Vw\sP*]5UjU9Qt6r|<֗/Ts6D/\>Hf 65U' R3]Xf8[ۤo\{&/~:b oɍY1)h䝘jcd[IrL]_UN pbUC k8H'f&#%p^ o7vnw g 87F@;ǽ%ܷ/$nNV߅0 v&Q2 {hO!'];E*|[Fa9x(LE (|%ODNCG nUDn%zvII?'V{Q2<(r8c ߂ht9rMsbh궓LO:K(rJᬹj >zX\.7?lT=kp4FQ]VW,*DI] h- G$@<09:rh P.(|  Q5P="{q%!lڒqDqEb>I7&E0,)@39CqVɏr Mr $d4M.2hqMs JI|ڑNpE'6Mr ThSJ ' Sɢ5*#C"#lS9%bEBmy4@j!vStXt*~D$,Em'&}VȗQqFBEN{>t [Z|jO)'xFE"_6 y`S2֨V,̗Np@0db$jP sQ.98'!5]986i@j F.[]jrZ: +hq[e|h똲pX&ʖ˰=] 6@>?T6<\p(檻ⶓ?Od0 !6qrJDd(d|j%Ej(ЕdGZNkeB:])|&)ڌ^rk7d\&@qV\Qk)qt⮴EZX-`0Qhmf).)\R ٭QHC8AZ*r;T]n辫(vQKtSbMљ48)D dv5]4Q"OPRSU\SjH4&&բ`ኵ*(klNt3%B*bN BF7N(j">1Amf?d%r@,Y<\\$ B$bs E\0OOcȚ:s{#"*b  "r@Ə5n*VLuFl$\*@5 8B)F'橈'T6o F[Ddj INɩTdeԋk*ȳP &<|0 m\-ggǂQ蘚%%j[QMq':cb: p80@I}1 -eQJ b _fN(蛵2 hz`CEpFO]W5$w@6JXmOU涜K&6 UmVQ/9'As[\3Vi ȮH`pTSdž?t%C!> endobj 14 0 obj << /Length 19728 /Filter /FlateDecode >> stream x}K$\,zKہ=~*Zt17?A*Q]מ{TP"DMw;;_o1/_p7k~.ƯǷvkPo4FFۍ#8BnߚdCy#?㶣Xj oL-;?JK;?VϷA?n| ow ׾9o@k0HJ.s4_-u%xc i>H ooApq܍)xGPVs/\C,LxǶ_ [{.}q/{htZr,oa.Bopo⳯o_t_k92}Eɍƿ_/Vrt9`^U9z6O|ƨn̟pω5dGZs˟1Bv1}8NgvUtQX+=SJKp!|;|}xGB%w f<'_Wh}hbo8ĿiCA$69iO'+\H{WikJiAh,npG,ו@7]_Bb*)k( Z> D}j 0'RCZY^; (:YP ^k;Ʒ:hU˖Jt{/8xow|pJwq|!*O)&R KImZ-Cpt)$7$й+x >|LS}nzUVLT瑈&pH&V8`/B!Iլz&H"ܽgxK 'e% ućVR؏=P$i}— ;vSĭDB s7E  Ė<[M?xZwI|-bȖ ގ}ٟPeʸ7Xfܕ ) P=[k^P:bR/~& j/QHQI]t:O]JDK hi#P>K^t̙/]GF YPF"dj gMPoՙ9˻wģЬ~EwVFw21o×?@P|%fIPZ# 0I^$L$4O%tpeld4ȎF0N*c<\IH;O }/Q$l\8+[_9mK-,uX_N„Vײ Ph wVXFwZ݆V7P&x'TXUK>V(+O5QpD+j. u2tBK%7..r^ i!EB}%\ qHympZnUe紐_2ѝ賉Zm@ zHt 'WkMko--wrNe!vvBwGI z.'_=ԧ!4gВ[e"t=G[%i."Y"tZB:- қa\j#QUGHL0k"l+y)}GGI,{:Oqaa/d祘,O-X߯夬rSp`9Kd\;p=ԑ/ a5z qC N4OiԑgY Rk'[PMqUުjewڶpBb8F{F %_݊$+7 "5vC l0̱L2nT,"z\ +ći5`cX/%.܊p x \`}A]0ٶ^x{0{EnvC6m./zL'DFM$$vK]~\1n$Hjשi< x5$谀7De7P;F5-0`ϡrdLŦ"!LTu \74?7x+`!b}=x+5u*H`EOBnz&$*'0KQtIRb[B]ݓDQݜzܑe4&htk"kxdMWcHҕC ɏ< U$I mB%@Z" NIcI.@̪ R1L::$\AGËoMA2YϠ"3`Ih=-tIhOo  q!K&; &Uw']_j-Ό}4jՄ]4hj$S;NGO/\V4b(_8aG0+Ʊ$ p+pWvB{zn(ߺsŶ_fYŲ.ɱpw_ c) #pl'Ƴd_ \i4WwmhPn%WXX&Zg, Z>y E'T>f)L0.yZh=Ēdis@MDwclJ $/jsjj:声@h-TS1|eaqģb5u3I9Y>/b]c#TuرC̟0;<+} ܌4X"*=f\tt< KFRIri5oTrh5\-P01YZ*XosԁF(zA K9 f qZ|Ji(95¸\e&$#Yx neV>y)E6hbF925BLF0WKV=K"#p7X*spP#e{|Z+lz/ؤJ|4:>Lq5[=?Hnq_!f' DwZW他3:_=W[snk_^d3 qZluC@Pjw'| }=Xtr7`#,* Q~fp7s z[٨.M 2VNa6cх]c7^6Bsc۔q?{l9B i$~`]ta9đV@W+`5 4R뇚v2JH~—i,> FO.W-ӡ=ȓCk/2q'@$2m6Y<UFXZtWQWhٸB<{%| '1:\ptjO= \ Y@{2ACv'6=?1Lo< 7SDD)Gk|y9J0C8h&n 8Lĸ[ Y.|p(:Gt,;/czGNvmt1„߅9EX !D[VWV ·9\p.,ݱ #+C =2X|$"2*Ɏ$ߥ>_3Ts X!Ghx!0W;tP-"Yjۗ!$9+ҁ/f?l!b%>@j>iGÊ>^k+eD8Cm{Jw,Rvkޤ#2"O4 |0ȳZfZed18pD6=HH0$ :2`S CIKh;/!M"1hKO#(ݛOEO*µ@EvoHz8)Hk2Pk"d&_z&y2]>e,PZ1YBwN@C \ :xܮHWp!s`YD2~@$G&%a̚"$J$=Gc8 Tl`T2 =U8fo RA?Ш@6ȗr\m14%֦JM2:e5MҢsQxh'g?0O2tjvtsG+%vGr R-ҚH7#CmsrVp\sivNd :+i/h:t4xml'Yp4&tU':@2ntl5\\P[ pS9+ #嬉K92SxyRDf: yte&D*%6J*(n8!c D600 \2}y@2~@XY^CLI4i \]^^!g+sD'T>F)kNx9pq!B %4rĚbc 9gl`8|!;4,F_͈Lk"20X6+Ί'bό5; |3CP'UYv 5+"T +ϬX5|Fhs+g˲·>d!jm^(6bDfD]YAdVEމ|cެظ83̌=T03 :P3з@wT4d6^6W抲k,FveĉeV6#"Z^k&dswn?V(OagFtUf?mIJYAoWrEQMi߾[s~a6Ֆa nM-sҟ15K'T ® n&~a]6MцڴoyaM;QYD7fmXSF1SN.dQ#U30l6+kay6MԦA![Yўa sfjE.YҬjenj ef)gV4U5R25W5Ϯ躨xf+`Uͮ+fT 3 Kѣv1PUQ.%٨q5Y̮nZFiQCT̬yvU=̬5fU%3~cF3˨]]{Qj}Ux̬QvU̬fJ($fV]2ꞙ.ʩA:f1Q<*LD -؄]13ːS2Y%,(fʔy5Ү]I.lI'>}.;Ɔs2EU0Ym̬MX2Ϭi~ŵ{!5."RqVs+Nǒ5.ࣟH^&V ҆}Ħ|D E^5X&h][ăCWE+犲k GXrVo3-rF*z&F0k8 pR[66NTM I;2`G432.P#%}Kd?@L9k-4,QaR0wo¡v\&ko~w2%&x' L0V28re-]BREhE$KFFԨ"܅$->Ĥm>e1IЬ}E[|c69'*9,sKH9*] HǾ*%Q2|WJ x8[ΏY<VO.%}Hc-l. 7)]T]甮yr.SJ fd=Lg7a Y:ZP@QC҉ rгД_`-.&l3͝$[ђJ gIݬYi1ȯ"|,RWadB8\g8,Wy(њ?25^xFssE"NWADcFI˗t; Lwcέ ۞jtbi=-fT#)GmMHxT)/ +4[]ǨݤG ŹfXǓaZOx%.fEw+N,0C@ZDG"E SR]SU*" *߄pKt7'*H}npD&vg,T',v $sEIY[ zqbpQA N"֬MU47/҃:yz_FЋd G\.Bǚ=2 #wIz!>"boX* p(qwQ!1D52y"y<*?.';*Q,|vȡE!1fwlmHAd;w 3̵NNmAލCe5B'Gޯ01Ep-^=2g7-+*p$ H{O"5X@ .DTȤ!T6RF„PY6Ԍh۟fD݇/Hr~`k==LQǨ/6ėf,VQt_<0zdbL{j:$۱3̺ h_}]fE)pԩ)% GC=> ݡ$hzr V2gTi`aEQk>Ɖjڅඐ.Čd|1nkN+Y=]OSWxBM0jQ|9"dtRpj>_,; x !g&-GdZGVz.7Sta#u-0 WsWVǡ6\&+;6'W>NbppўϮ̲Q/%K;ULg8u?$]~SE$ShpѰo"aKAo8R %8=x-M$m[t)QUNyA88V۵)z|eR[إ9BCRs9KB{R{w)uTGM TC^Zd?.A,p}Ҹ3.WOs>8RCI69ea'a+K"'4܆sx|o~1E$@)% N .zͼu]O, iS ,riA.:4W." 1k]]_^+,tN? s2#D;ol߫bWHp*ZAUE6*<𷭹a/73+<;mb]qPpJAzJY^yq  E9/5GzDV歹BH-yc0]\ǖv3W8j#2-5hrR~u@iє5ߓp"G-K9C(\Fu i{U37?9a뤁P;wp#-,*3/#ݫ:$n_) QfŚ\acYD ^k3%}\x?E>g‹pl0M LiXL`&1 n3lC Nkd]A̰OdDquU](p3/y eP0W1,i0Vݟ.ߚ]ح,ɅjzZYok9Pmzb5¿H~nf/gid ]:'R|t^+TZӯs!7O9Y-Rl["e-ꅓgZ~Oԇ[ -? 2vs!eޭs~}q(dĔYgvv{cČhs̙fYnqZ<4m`-1L0ьh2?ŝifؗv"3K0 {9uޕ&YJfwsxG>Ƨ03#͎2"qcsXsԚf] qA_U}BHB-2='G4*u4f86 YK=<م(Gi0U`k‰-cbD۔I,k(KVoOp[l㾐&:UD)"u 7],q3'DXWD7L&GX\J8VGnJPFo1j&q.٧yAӵ'i!w~"o)*vs8 0F0 !2lj/؆vXQGנaC7N k\4BnHƘg;yƙdU nG2j ?PRtin 2P6\40wn C[]&j,M-:?iB֌& h 3Rmѐ I[##r^MjCr:Jt`zK o4dU*nV$١z") 8G$EWH`PKMgnB3FI "T8?~t*.sх4*XX%Q%"I鮊h'[$b+',(MEdX7Ům^o 5"~ZOd,*cE"$. e\ 8"‮ M~NF~mT/ڼFu8m(h$HX0`ʺNc!cAGs vgN4wf?qT׉Fc,ϣX8z9!C>b?\Rv}E.\+:#Ku`H zTA0$y/vҏ: |PIYB_d0nT~^B%%5 p1g~X'8 E'xk_eB%`QKwme4zey E|s(J模76gTVAEõ@n ?)ii\?|p`caeWB0`,EuLj8.kZjDAbW`6zv V0ޫ O`UEA/1 b/84Eϕ ]X*=cizo8]naVwusl> ";ڏ/njˆ#E=lʹ2z#A$?+&0BB^o# #(ϩaj9@i8+C-; ŎKQ`4ijP+]o;u8h`OiD[`:7ٌ9L9#1'CE5G/ C{EGU,gţG9p8I!6Ɓk }[c\>" >6NJ~ɧEK戳UNGm;HK ʊ/V= ޫgX(!&3.m\=x-W[0s#!3kbp+<6صյp8ҪMԔ|s+Ϫ+1 ꍋYPt1G6Shypv^iD>I(oh}BCq +O 87L9C2S&#> =/!12 *g1c{DaXi$al`v)餪G>Kv8&γ HO c_/- p23bck5k-=$T}ɍډ谒i'aII>>/^C =Ù~BH.KT92(v |}Rf|Cl޵qA*&(8d8~ ZB‚Ó\5T֥pZ}.p 7yIh.(D- ٟ^g4\| ĉݞЍ[K {]0kZoIK.#ȸ Wsk7kQ(y4FixB#wVlf:@RcS{(I 0z\%LcqgVtS(PL܎ 쳚 INB?M9p)0njŅB0A&V*|t/^ !;jzJ$h03J،ozQ ,_`  Y|{u:|-,/,; sGQqΕfLez)PwSϽQf`D, .^C91ZZڈC"~>J]27hnڴZY0@vl˪U-L OU("ޥѵlC.]'_A ^at;(#=X9C/+{\tA pwۮ P}, zpynYdtwz܎Clߪk E/X=C+R[v8⌧;ix`\^p>21rQHf8,.x^ç; 2Vxvs]a ^Li_x~<#}cji=5|}o D۫D?.6iӝ;"C ]3pڀF0kࢣ.]6Me^6wdVU2'kqV&MW2wm-9 e bAn|ks[qh|ճa&rRGM<*,:DTtRxC%P뽻'=>XX AC\uff>(nGR-? %4nirU;*m41HAhՄhQcm KS> Mİ^nN\q ɨݎvOt@KepJҕ8b@bahۙP!@yeKsܪr_5{X=3HJܵ >w;0t=Zo$11t jNݧ: mWАƬ=Ĉղ#APcnpcrLMȂqFpDڑhu^6Rh^%o=;n{PS,^C_8Ko2Y $egCwCWSWPaAGW*'i3}OpAc kڞbb۳)qYRfCg1Èzdn2MC" oK0٬ HOWaIDۣ'y$jH#-)&kD ҘEx҄l[ WKT9%}%keKY4,k"%&}ТIU+biV.ʨMYE"L N t2 ;k+J2ޜ&vJI>I*yzF&iJB&qA$6gmB OR?dʓ )OZd )-YD<bNhoв L+򌏩C1 j{a[p*}7 zHB<Ի|X>|e+7ibE"\n7CO$wwe[04-8}$qe>Oc mG_:2c'W8v\&Uwp(( WBve1jZAd(2mj"O5Y?S6l艛ynxVHl=lYa@6޸pi4%4a{z;{L܈f4AQZo0Heԧ$5jPƲo@ 4 &2\׺`Xj[(W1.М@$$?cdc޴Ay^\ڏ3_)]Hcwr46g1bbָ$Nlz?>ʂ7t$8XccX7O9?#68n]'ETl6"6R|CFSa9p滭9Fb\)ֈ(f"sKDWW4^X`ѹyƌ'048[i4czǒF7 :YXWQ7ݕ/u-̲.}(1t̂nh P ;6 EAg; :mOߦ|eظ܈P!7.`LΈg;&w~C`Zr(ҍ )ݛW'1t Vk'ܟ..'$L4_ /6Y 8Y ru71!Q4: 4 }GmE9_>f<l|;mX`PS|׃-;Ώ̓z+FaA0nJ6W]s,(/ZQ0e'~"{)"]lxS|,kZ"]P(m2Zܟfx|卉D%-KÞ&F5VnpA`[<%sLJٚERȵ$h-٬E,ȼ=C_Fbd)Ζ3+cgGڳĒ" bbD2f'Yjݶ3mC+MLHv^ϲLCJfA0Kߎ}h s.(#~p ax{ rrB ;!k1C-18s>z8\Aw$HBVy0}\c;w͵^d<0#i2 ӝm:իIϥ5Vj؇ ][۶O߫@#;0Wt,eՒFICkE@&`OBQiDR&7A9=qU.04 UCzq'ˢ>,=Y&/8Y59iNxh0@D=JF+Z(޳G:KDqHa8 H3@vGaE 6 VnzF/4OvǎAp>S`}=K#\ޙoEo Fo$t: чđĨ%^dkϤ>-[_[+QXi6Rȓ@q ES)B+$e@Ӧ`~-@AS0*ؚ#C"345L2еAx^Jސu]կYL& > y>]).:YMO >i<wF\jn6zW㭢?d#A"Ѓmr=L"C DX WoV`ŝ=ߥH}a>b~oP,yMq >ǂx-ӥ5]NMvF_!P cЈ 6&)\F ''xbhC=Zܜ݅<4U⹠ _%4L+?<6]`%. `ӉUC )Nl*gjlU*pQ *oUؿ(Do7eVa"|O\ r^xd]{=7 _J[5̛tUc?tL:k-x.fNV_H:]zW9Se{EIyUުiXPF|]~5b%ջϏjtcc;A6;}`q>cYYd1lc5hctڱ:X{pnsdu  ~G̦BpRu3L:O{?}s;V3ZzV@VàBWʿW.F$ql'[qFElFlDaF|6?0/e˫iÑb6?Gf!|#69:JvX4^)Ø ;.َ}7/9|`#I|`#p aWlE7_DB2b2׈tl"T 4WXݨn]@8+nA%vnК.( *~jثiUk\Dv^j6*rAzQ*&1XMIWp+ģy5n=!ݜzTw8NƄgX[E]ԣ_+Zw-qz AU}5 ZHCGgT޲LBdbC 53`]k\ay|3(zآD5})GH"G8(&֍լ((OLbI2^U\ ]qVEȝg]DYqFogD|v{9?iayy}Bʸ R:<1Og١lVԛgGoƴYz@~ 2Vγ1?;FDOsVEܚfD>=[kDQ{~sd?$+rd~+JH*D;aF>O'rċ"X@uJ`02`\[F -PWJC8g+i "X썵${DX9>-G@?#`%\[aV"NJ;.r^-V^VbEpief^d/ZVJEjid^oGsj}1S']u6i=b9CHF+Jz΢od\Zig^y6,a9ɠ-)30mمӟ|N2'\D+mo4R!]9üW]e*yiYO?%BZ5i3{V>U*wQN*g3kmVOY2v+&OM{?W &R-*wQ*hgUm6.UϪwQoL ixl. ͽlxN:UF.Q*ugQv"ŧ|%~DY3Y.jYu{vM:~Y0YF*gی'k*gN4Uzv;g3*u*vF͟3Jmgۻ(̷sV͝3֕͟3 GgVK.9uVͩ#EjxWRtV:YwpUa. (28nV[ϫfLUMSE͕Z͕hݴb՞ޙsjskZ]8/Z-0NVˇN\: @|lv͋<빛vbi5:cZ>7X0y^Bp[ Vqx;vBU[$K 1)ltee ERn+x&V[ |aVB})5=eEyVʪNk ҮwlO BOsy&"Dz\Ѕޅ)5֕#GG'>-" 8p,6L$WTsrg[8{Bpӻ& P;xfػGs"a(P8P`QHL ,ױm]kmBtiSx0u bYy50}9lg P{cznb̗!!/9q(tIؐB/8" "fpus l s=vਝƖd%lG-;Aj|^ՠv;|3^5;[MwW|޿f૦~/ڷBx}")FtAU_.7}tƻf^~F[_\F`[Uoa'c%gLg>wmӹύ~~k6jk65]ykS6?ƙ}nk&ƮV]U{^#?l{՘lkv]7=/IBVK^S_E;^H]E{n{)7[[5<>ݹ٥gjީՇ)L뾵nfc߫6)4r뚽xW mfܫf^aU{- ge(*LDK=Wt]5;xobSk}Hpx5nfޫ6n> endobj 8 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 100 100] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 21 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 21 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 100.00128] /Coords [0.0 0 100.00128 0] /Function << /FunctionType 3 /Domain [0.0 100.00128] /Functions [ << /FunctionType 2 /Domain [0.0 100.00128] /C0 [0 0 0] /C1 [0 0 0] /N 1 >> << /FunctionType 2 /Domain [0.0 100.00128] /C0 [0 0 0] /C1 [1 0.5 0] /N 1 >> << /FunctionType 2 /Domain [0.0 100.00128] /C0 [1 0.5 0] /C1 [1 0.5 0] /N 1 >> ] /Bounds [ 45.00056 50.00064] /Encode [0 1 0 1 0 1] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 7 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 100 100] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 22 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 22 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 100.00128] /Coords [0.0 0 100.00128 0] /Function << /FunctionType 3 /Domain [0.0 100.00128] /Functions [ << /FunctionType 2 /Domain [0.0 100.00128] /C0 [1 0.5 0] /C1 [1 0.5 0] /N 1 >> << /FunctionType 2 /Domain [0.0 100.00128] /C0 [1 0.5 0] /C1 [1 0.7 0.4] /N 1 >> << /FunctionType 2 /Domain [0.0 100.00128] /C0 [1 0.7 0.4] /C1 [1 0.7 0.4] /N 1 >> ] /Bounds [ 45.00056 50.00064] /Encode [0 1 0 1 0 1] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 10 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 100 100] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 23 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 23 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 100.00128] /Coords [0.0 0 100.00128 0] /Function << /FunctionType 3 /Domain [0.0 100.00128] /Functions [ << /FunctionType 2 /Domain [0.0 100.00128] /C0 [0 0 0] /C1 [0 0 0] /N 1 >> << /FunctionType 2 /Domain [0.0 100.00128] /C0 [0 0 0] /C1 [0 0 1] /N 1 >> << /FunctionType 2 /Domain [0.0 100.00128] /C0 [0 0 1] /C1 [0 0 1] /N 1 >> ] /Bounds [ 45.00056 50.00064] /Encode [0 1 0 1 0 1] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 9 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 100 100] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 24 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 24 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 100.00128] /Coords [0.0 0 100.00128 0] /Function << /FunctionType 3 /Domain [0.0 100.00128] /Functions [ << /FunctionType 2 /Domain [0.0 100.00128] /C0 [0 0 1] /C1 [0 0 1] /N 1 >> << /FunctionType 2 /Domain [0.0 100.00128] /C0 [0 0 1] /C1 [0.4 0.4 1] /N 1 >> << /FunctionType 2 /Domain [0.0 100.00128] /C0 [0.4 0.4 1] /C1 [0.4 0.4 1] /N 1 >> ] /Bounds [ 45.00056 50.00064] /Encode [0 1 0 1 0 1] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 11 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 100 100] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 25 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 25 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 100.00128] /Coords [0.0 0 100.00128 0] /Function << /FunctionType 3 /Domain [0.0 100.00128] /Functions [ << /FunctionType 2 /Domain [0.0 100.00128] /C0 [0 0 0] /C1 [0 0 0] /N 1 >> << /FunctionType 2 /Domain [0.0 100.00128] /C0 [0 0 0] /C1 [0 0.5 0] /N 1 >> << /FunctionType 2 /Domain [0.0 100.00128] /C0 [0 0.5 0] /C1 [0 0.5 0] /N 1 >> ] /Bounds [ 45.00056 50.00064] /Encode [0 1 0 1 0 1] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 12 0 obj << /Type /XObject /Subtype /Form /BBox [0 0 100 100] /FormType 1 /Matrix [1 0 0 1 0 0] /Resources 26 0 R /Length 15 /Filter /FlateDecode >> stream xP( endstream endobj 26 0 obj << /Shading << /Sh << /ShadingType 2 /ColorSpace /DeviceRGB /Domain [0.0 100.00128] /Coords [0.0 0 100.00128 0] /Function << /FunctionType 3 /Domain [0.0 100.00128] /Functions [ << /FunctionType 2 /Domain [0.0 100.00128] /C0 [0 0 0] /C1 [0 0 0] /N 1 >> << /FunctionType 2 /Domain [0.0 100.00128] /C0 [0 0 0] /C1 [1 0 0] /N 1 >> << /FunctionType 2 /Domain [0.0 100.00128] /C0 [1 0 0] /C1 [1 0 0] /N 1 >> ] /Bounds [ 45.00056 50.00064] /Encode [0 1 0 1 0 1] >> /Extend [false false] >> >> /ProcSet [ /PDF ] >> endobj 15 0 obj << /D [6 0 R /XYZ 0 84.438 null] >> endobj 16 0 obj << /D [6 0 R /XYZ 0 59.531 null] >> endobj 13 0 obj << /Font << /F26 19 0 R >> /XObject << /Fm2 8 0 R /Fm1 7 0 R /Fm4 10 0 R /Fm3 9 0 R /Fm5 11 0 R /Fm6 12 0 R >> /ProcSet [ /PDF /Text ] >> endobj 27 0 obj << /Type /Encoding /Differences [ 0 /.notdef 1/dotaccent/fi/fl/fraction/hungarumlaut/Lslash/lslash/ogonek/ring 10/.notdef 11/breve/minus 13/.notdef 14/Zcaron/zcaron/caron/dotlessi/dotlessj/ff/ffi/ffl/notequal/infinity/lessequal/greaterequal/partialdiff/summation/product/pi/grave/quotesingle/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde 127/.notdef 128/Euro/integral/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/Omega/radical/approxequal 144/.notdef 147/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/Delta/lozenge/Ydieresis 160/.notdef 161/exclamdown/cent/sterling/currency/yen/brokenbar/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] >> endobj 18 0 obj << /Length1 1070 /Length2 3596 /Length3 532 /Length 4332 /Filter /FlateDecode >> stream xRy8, Ie鵯3)1eYط$$BֲE!%RYǒ-{T{=ǹs?~y~>5!yba$"+j@J b@9`@ %㽼)DCC]0{)(37lMvad`d x4D 7BG<G&aX x)śMB€EQ$!( `A/R j*PM5&AI ’)rPBA(@ VV#:A <9 #"ƀ%R PG') G41~ +  C"B Ǧ`I]#,X ` /4/d8b[Mh=ݥ"X!X5p(BOܞ x"֚HC)D>Dl@'O-[ׅͱFP??L:1B@( 2' e5UU JP(QT҈R#"*"Qlt6O`CCR^R" Afj@WRLF*HP0i VѿAqxb!X4ZlC ]۠ [ ׂlr|!O+X vaI(G }QXwtYU0/|HpNF5{g0*a1${6E/-B ӶApt4tYzGeRKW]@n~ ?FX{>jY6JrGha"[B\ytYcE?0-k%tbs;W ={.Wnj|o+ e2:VkVVPc1.Q6O⒩oarE33NU:Y#|^̇G^2( mF GJ6=[ҙAf99FpLf'O޴)=ek~Z;hS];YluTzo25ֲW<+_WmGcۮnYhU{'U,Ea?8uN)>̵d ݍ3h)nK>3P/_)+@OZ.|#,/tV3ܦNz2񾜈x)3ᢄqOiv2 Ρ!ER g1qZSV=(ϸ"eq#fO~sCwWH,~'R91y/nU~&xIλq5,R>ՔEkE^_3Pt"CXɞU+0;ϣWL9 50DkF޼^s,D`fdeʫok^FeΜ"6s4ީ>Px?bcW XS#R_yy?Nٯ[lxF—%?.աO B4{RgS}GvheGO9u|9KBziHkȬI暋<4lxgZWdd'쇛EthfaӅ&'4tu3sxVe5řJ Z89f8be1F(2X3{ "_N+LAr;"ۨv,Sf7}$oѓvjN?U+7TShQ1WMުA9 2unl |j\4.atYo0Xk铋^1yݥdm-}3THz~92)sц2/S;ݶlDARwoEK6 LTXfq+״\>n \87e?ڥ_ĦqlX?U/Y I"厳UAVϪg'%ΰARXꕫ8 ^=T'J\/YQЮNIiH&}{. XÏRm-̈澱TWs?8& X`< dK2޵ LOaŻx;{]w\yB6?yl: ^ :tprcj1rV|YdǡvRZ*E7НyQq@5r9׏6-/C!5ImD{׹Yhg9xyy~ځ4cvSGL0VTmTaBaH\ XWBȡ!:mJa9 )q@ qI[mVԜO=ʹ\ :R@S9sRp!eG+jӯ93s|qoDM4ټ7flc?5иֆ2c$p_8-Vq:LѰ+lX?(v]KOղ)XE&ɮ}3"-fePghW7!AǐUy}[qVPA)hhiPǴ[Ug+7yMŅubvJNǧ̨Wȫ=9?; d_4y4ü3jq?Qn?^LJ%XB޷͟RZ9]اd-XJXEȻYEǙOX/o1̖Oԋpd4PPmxmXi#)=O{%5KМ5;j:6<4Yc~U[Zw9ǥBسhUqq|iE[Yq,碞Ι*3 vu[["Z~FNWV6ŻݗX;\p klw*̝Vt0:avDFe{\lwmپ,//B4Z;N\nqeѳ@#KCWe6>ҡ.JULb<1H6x P Ίfd61ʷ0 ُͲW; wTj͋`df<1)4Q:"|10SY f\i{c6\W%IÕ~L7mXd@+^VqҗtcvS a ~ℛ٢vAٻO.9e}gKO;@Yn.w|xxxb*)}y?/hKP aΛnn}痽:VQm#?&<<{GY96lv{#Đ(`352we2j ?2$NPy7=Q}*A OZy֭F/A0 _L\|.Yej i<@4g>j}ߋk= J[xgWU<,lҠ Q5JG@s{]>BA~/=u+w½E-Ue}0wxY1{kKh髅y,Zi]jaͤ1:lYb'*nAV ߰rON{ Cllg1:Gi9_Qh̍1Y8KmU#B> endobj 17 0 obj << /Ascent 824 /CapHeight 758 /Descent -253 /FontName /VUWHBF+Futura-Medium /ItalicAngle 0 /StemV 113 /XHeight 476 /FontBBox [-47 -260 1322 1039] /Flags 4 /CharSet (/G/I/K/L/O) /FontFile 18 0 R >> endobj 28 0 obj [842 0 295 0 663 443 0 0 894 ] endobj 20 0 obj << /Type /Pages /Count 1 /Kids [6 0 R] >> endobj 29 0 obj << /Names [(Doc-Start) 16 0 R (page.1) 15 0 R] /Limits [(Doc-Start) (page.1)] >> endobj 30 0 obj << /Kids [29 0 R] >> endobj 31 0 obj << /Dests 30 0 R >> endobj 32 0 obj << /Type /Catalog /Pages 20 0 R /Names 31 0 R /PageMode /none /OpenAction 5 0 R >> endobj 33 0 obj << /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfeTeX-1.304)/Keywords() /CreationDate (D:20061030150658+01'00') /PTEX.Fullbanner (This is pdfeTeX, Version 3.141592-1.30.4-2.2 (Web2C 7.5.5) kpathsea version 3.5.5) >> endobj xref 0 34 0000000001 65535 f 0000000002 00000 f 0000000003 00000 f 0000000004 00000 f 0000000000 00000 f 0000000015 00000 n 0000019871 00000 n 0000020714 00000 n 0000019984 00000 n 0000022181 00000 n 0000021456 00000 n 0000022917 00000 n 0000023648 00000 n 0000024477 00000 n 0000000063 00000 n 0000024373 00000 n 0000024425 00000 n 0000031135 00000 n 0000026518 00000 n 0000030971 00000 n 0000031395 00000 n 0000020180 00000 n 0000020910 00000 n 0000021653 00000 n 0000022377 00000 n 0000023114 00000 n 0000023845 00000 n 0000024631 00000 n 0000031348 00000 n 0000031453 00000 n 0000031550 00000 n 0000031587 00000 n 0000031623 00000 n 0000031723 00000 n trailer << /Size 34 /Root 32 0 R /Info 33 0 R /ID [<9395EEB22EBADA42536F20DDC21E3B5F> <9395EEB22EBADA42536F20DDC21E3B5F>] >> startxref 31986 %%EOF beamer/examples/a-lecture/beamerexample-lecture-pic3.jpg0000644000175000017500000011612412050430506023166 0ustar mohuramohuraJFIFdd!Ducky   Adobed''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDF "!1AQaq"2BRbr#3CSc$!1aAQq" ?IJK9ETyΙQqd*pRʈp,a"3()j"*mrڈ!H̹n'^:lڊhW#ʀ CR9l7&Cjyƛ<"]2M~!s!Ld2 !TN-;;b`$柘m_߈@_ejd " :av8Emv8jKMC \ݵ:V8cނawHMJ80!C&!> Y:`\5Q '9,pSӵ`[E !aB1wtڕX[]UϚRN8~iOg`W(bH 2Kn@'~:z.ppSz{G${)EZY;S[{hǙ!Z b;qCC++zHer>NUd} ޔ &EC"pO z Hɴڇ>OnaȞ›L੉i]1&0)EÉ%6åGEx%ZWH=ȟ} #Kނ޷~H9 Siކz_A{EGYMBPWҜ;Ozavq ȑa:+ Rs)'>Ž w3̥~iނC޷>?%p:]SO+oMA7zf؝2n}?PbO}@= ~Hz w,(~̍n/䷠pS 鐞 z'*}n&S^ADtW4A9wǰdHtWQ= ]%9R2JC^$2e6㣽G{*D6Dc"ڙW~҈WYȡ+5uw.Bz+i#ngjM)LW ~AEt>XLzmL:iJz i !QrDq4WIß3]ŇxNi)M9rÇޤ/iYuBf5 O.{so .VDoۂ&VjzyOgĦdqLH966ȌJ5D^.qӚoYܫD*LҶY 2MؐtQ 5#zR>ޜt^'\r>/PBLM=`F GDqN,*Dt{{PHtGo.ۖg#'=V D:̫aAQ+8=]d;Rc(]@B(.5C2ԉj&Êⓗr}ˡ‰ b0o.X7X&[)+SEiBdc#<#2%ۻ1=],sHAF*U}22 mT魋5[A8{!ʷO'=Xpeo\c#k3R5&Is]$㝨ȬI n"ZȑJI*TYvK6BKpW( b,o<]&L{#PCk!͈̔AQ3zan>3J c2M rR]B1pWz'f9|Uj̎*&kҺ @FZp]B9O?5Ǡ˰.%uv}Tz?(%B: UAm?~ Ⱥn{W#a.[GN$RpܪHj+N?V,VYryQTHHIq9)g!oC\eP(`x*(F 8yTY F("8⹧rBdƱ]>xgu45` S(Xq t[W DxZ焅è2oQ1hICBFt'L-\VGxfWk%MnGq r{qRJX.0̮Ԍ$2K2šbbVw;VCzkbFÏr^,!dި:{F>ixmɣ@}$zl Vj2i#[EwmgӊR樉(C 2V'nܷ6OaWjd@䶐#m aޟ`]?;d`hOB6/#?Pj⢊*̣(ђgqĚUl a]0-RLjWw݋@HDKL$AC&aa٨ISAjB vj֪\88.LA%cDхFGʄD*Zf  MncŨɰ&rU2fʲlG {Hm,@E*ݎN]E|NwڑQU5XQBji Uj#;v& 0DC WmN * fEJmfM(bDs.3m\|$P [@\W$*ٸg()Iv/*%,HbVj0ܲS1}B("?-35fܓC>+biSA::Ğ* T%͍JnH2w.vHg/ ]oC٤-tK7 q;j6N ܹ KW0pXFؠ})#\MDSldEOr3< S0^6hZpAbʳ WVHy܏H>;|DuR?MsVL2ȅNbз~2TF\eR%1Nu7dٕ`ت-\ah 5(\Rv@9x-n|>m\Ǩ룶Ş/>]G}vGb_zKRȌ9`T *smԭmLO]ć!Q>"Pۿ8Ӊs=uX۔|ꌳds2cTm[U[5W=Qj%N~b1SL &Q]zƬ VB0-+ʧ4G( dV4rˌ dԉk冐1.2, KnR%x9OGKER+9i+[r#ڳdp]\Ug' ,GARmb(pؐ=rR5IE9Jd;UrPuHE )c)#.][T"'-n ÝUEc#~rژNCQØ1e;itҎ2#mR5yw疢 e7 rGMI`T4WC$x D48lB(=RI'ܷf Ẉσ9*nnYYƵ+iLC.1$ᶪT!)GQ4; v"܄^&f$.!bhRH0uIGKMeq4=Eֹž-pQ/uJ)9%H\tUǗ;-Ff DbsVNgٚckDtA>P2ڪNgFl6+-*S²S2ô$kaH he9Ortvd1U5.q+[$ rs؝ 12e+L`K.j9OwV#*F$ckL -Llj[ F69rb\KME%GSi4EGKnRYSyZGC+2WC>T~Q$=MAGNO=Q#KFmHoGP.LNUR"Q #\Д-ymWIڪDHn%a1cjGj}DOYD0TTWg@BEUce;!?.QJ>:\:b> vRu@bLJvBā(bb5Pےʛ.lskƉ إ;BDHtӱ)ؙM製v2s?#}~ m?܏>rS,5)Zk"",$,F-.SjhRH7{T+mW#hʸDc/Jр#T#4BLhiD{NLihpCیeG91/ L%k){:Cͭ~=ʅ-GD{QrOտ R]l82ͮxvw*Esʅ<:"֦ v+u_qR=Yzەڙ n#`C1_:jG"GbXGP>=H:p̈` ڷ:;S 016Fc1KNtt6uv۱׹6viWTsD}Rn( bU'mWVD0~, ~wesǧg;鏼.2q4JjځtF<$ش9_RC"' z @uzwELܔo+?LL BLyd_)ŋca`HN)#GC(zhk> DY zh(zhi=%J/JrӉǡ7@~a=u0ފ{vDLKcOCt}%w~w+nL #_>x4.L`Ozm!4/"C..fSs&>ޛ~Ki[vz7gKzc=龓=yd}H?rEϻG<_&\rǘsu+ n7ўMp諮cⶰ)ɾjkyPLF_B3dvܦ1ݍעgù/0e~)8ۧt#v c~)%xhS{sې^,]5}DdL ]cOî;i#x* Nm݉ezv3GS}3 wB}VGޛ^;фr\$}+.(uNqR,F/ޯGU9`(4uF65?7+uY'*. C\◟s]cȠ4U:.KWdEEi[k*+,tIEm6/CaGbWQHr7x'TEUV.@VllNT6=TFE\ѣK_$%nHwzo[U#%ȓQLclP 7N@QëW@[k:;0|MRvPސ߆5U/%MIO8a&0;Qv&]4cYr_N!}L7c t=<)?sY!:'?L,ZSR[U6"~irƟK8V]nwoNN⎐M\<Wgm%raYµG7(*T5 {ת$ DbpPy uFB@mL*Djǂ ;^NAaޖUԙ 4r-f0iکj!B[buJRPE @@+@BPp4h\YF'(r-iĠ!lauzLX@^DvHc /l.jkQQ,vh{[Rð|'O2l== Y/x;> KqaxwrV,:ҢG#qL5mBA_IP6"w mHa#ڦ`J\֥"Haީ8tW 8֌%fB1e͑n؏#u8:g]bO%rLhnᘨbf?h}l>* vNCnM*pvj{U_G޽D j-n4D08fIӐp\ꉸ i=@-V2W8[HBS 7HY]B!z"@ HM(2Y5 %8.\/hGūHTgӝ]P.>X̃.N\KCN35W?Pխ\ \v%˹(Y!(zbUHLjnSKfQhŋyGp%jKv 7*F"ʣ]O0t78 r|%ԍ#qADmO9pS!Rfs , 3)JdSA eoV1;T3ȕG 4S`@VGDqTtýhmj66j-xc34aWZ!P,ԟ FԦ#iBr[w$`CF(71֍J%tk;{72[J w%"#o4EZmm93P   Jاΐ$X99 { 1ǩӮGI%=V7FG> dYMD"q!::onꓧ!yc s3iF!tctt߆iT24p۵fߥ)G5p,i֭Srfd!#@Vb;^UETx-n!PF|/p/.KB+PBsw'CMg7#Fۘvű9 샾H4kd1#ާvȑeV.1dMbW` e? Z\İY |ўagQRkL*B`§om-F "]p[iջ>czA BephH\:`(&́2CXH ~쬈':S]ݣ-z|vsu8kR3#%.B Pb:GI \UsF.IeTpኴcHܣ7*,dAڒx1_B46 3(! 'E.δBFƌO*0EڮnBqȔKn ks݋E0*Kcw*(s`nbipSW3WE*r[Ta)=R4iDȔvӣLFdz?>J+>[>H޻Ĩٶ̬2Z+ f,LQ 3Yg٦ 3ؒ1f&2-%GPrЮXە. k*w^U̔͸1:'#!"4Shdd{r@D[2EÐR?W (Jg.NT!*X5"%fL uiRG3M pU@Ba^=U,UGQ|d0N2ˤb> `Rő1?$]SFRv% +'`%utISlΘ 䇧C${d"p!KOOjv+H`I9H~ݽFQ%_r~ve\Ç]7f^N֯z.UHuO t,u,"UqU 8!ng6ѓbK@Ŝ&0NVjotD"rPɨ]+tŨ@r{F͸SXWJ% BAh h'1l]4"Z v8b!TP;j)E7NP;Ft܌SomV޹Nbb3غJT1Db,`MixrC'f! s6ɢɄdeJ2yQ8T4D>\S0tE.!O;?2҈ꑋT-cO*VDaD DQHiwtҷQq +N )vqߺ  Io ;>Qt1"Q-p\..(/-G]C1;tOTzzız​ݫNbTQC%q5i!ɢlA֍#wzAq@"A;Ω.Wt)J"es:WYlu 65NXSA[ ::BBʝn :E`Nh0|x"@'}G?B:uH#2ȇC@۶d$qpyAܨeR'3(ɛi2Z0*ڴIl1!-&-!7>?Jm lޱnPCj)_C"0/JUR!qy xEF{`& "[JT<;#‹W)ή%$0lь kfC!g)j w,+ (8HW5s`pkl^uĜj˴Mj3LDd /+)biͲbj"sw}SL'*#=N?6rALk-%%gL$ H$EtxzՌZ;MyM.S1uns+%h2ĥ]^ 3^qH:&# v@[&TYޚ>T#ޚ]!>HF&@j~D#10iTnߔ_*-pTTcԂ;U\6 Չ)n68FWd5-2Qz%+*"?8T$'+%/\UhZy$W! g\8}: \Pi!<:K#7ٽљmdé RvmHbYt2؛*c-C(buT l@6ۿѳ+T$ؘ0FDpSH{To91ёhڬB\!kbqWX1\%_Yj(Fw#L HW,o}}ʞ GHGܪ*f6W/91;y`ȗi k1bW#49s`Y׹,oӊa KQJ#G> m) AS5N&Q)JBȜI)Jv'TO9L'T\,o|+k n\ UJ;P2S承 ĔSP>QT3XFvT UdWti(!7" 4*$pXȜJt(-ɷ2$9w,B{S(;ӿai7Օ$t"Vrv_Vt(^a(|4Z1! 4R%w7)t\TKʤ8u%&JQm$Nn܁;(VgoY 2:02ܔBU; ǸCкaQ@V )rDeT TF>Sq0lh韚'I]Gr D+>F.² g2'x@twJ_OO`LtؙN0ڹYcpehY./ܨ~d\y(=P9.J\x L %k\ub|B@8qSDD-Dvyg+#!JKO2%!AE=Q}H˦,Ć LmrLhŖ)4o'0^R!T]63SvWpNhʹ]vF0. (e'\{:o= /ޜZ. ToڽވϘ`21rcbj6kz"Q}d=KwJWm|RՐf! êl+cDiR$n(X ,LcH51ȉIbܛf/"njh==uGqrmSsK46af[3u]tGCӇQJoK%@g"X،VQMz.G y@sǦO᪟_G*)ԗ@MBݑF"],Z\ʎބmr J˜yEv :a}f#lDl%L~2E\ ^!VHY,lfdᕎ!WfڠR\,zAAJ0Aڹ [8"ĆEj'z;Ҏ2m2_DrPSiދހ迚<. U'l$|u@)}H&%:phe 'CXvz KF?1n]CjSi[?-襳&`+ DL觐 MO*Mb5*Q`Km1bQç%%-mgiM99=NH17d@^2MG7.TIj>.yjވg6p`r"Q̔xJsg.mͥntL~ 9K-yF{yr_s)ؽz2թꈽwFF8D5\nD7Xݘ̩yxdQj9Hϸ3)ǝÏ(x ^>cDu|Grm1Gr>GWz8Dn1Ǩ~F=s~C3ؤoXwя0]vȳWoXǸ'wAus(?W?7.5ͽˬu$bOף~܃D߸FKpDdS>n~5x q~ߊz[pMKgw`CpR001}~ 4ҁpd5Wl+sb G@#1zpB}hc]P%G@"қqꥋv&4Һ(E QD{jO[1(>ݫ<0'"K:yWcZEx<@cGR6+[?@(Sgѕ =d;QRV yA:e#V 4yc؃=L#,qNz¿# =$E# W%Qur-˵uQ ˠ_j]Q ܫ[$d`$݈9L7#_kr7MQ :F :dm\b˒19ڈ6tQ'j#)\1,j)Ak@E*beZ<,%d돗@),$.m'- S$n@觪Vwޘ$0S/ ;Tn22֎[Lrn I+ 3: YJe5s :w,6qSSP;;ޯ x4*+NK:m<ʬޑ&_~TABC/[ Z1Fn[1Q 3OnلL\QEE5(A%Ed $PJEMJL߱\j9*#OpP!Zrh V~%^J SV%h L*v.wM>%16Ude1u=,rK9VhR0LͱV"(6 ]js]*[ڙѱdD5E"Gi%L75XYH@j3 Y[Y.'-oWV8\z$Ncoy-,^ۿ3(, (JpRfwJXuA«MqѵjĿ+ԯ]Cn|f.&F!\E_;/2@W ^@)D%bvs<-؀xyHu^ftGj|0R&}}.% 7FAqL j>*](^RR܆ i%r# aȰ$B &>9ysd! djbȮaf@ejn5,)sf2y⺂ ¡O8ɖUHzqt9@*,R7g{^lޘjY,9Sni3eC98ǵ zx'tz[ ΘaZT(W%XlD]Ti`V-2u-0K'@Or)t.LK(ۖ1n 3:#e1-iHy-9Pm" hAOg+7cLRo);yfTf EB̝˴M]}+NѸҋ8IAF*rm:ÌG7?Д:qiRGw+$(ç:QRі5JH+-!./bq18FT!o~A[ڴ.FAhD(!0f`0`D Nd{wޤ~AXj畻Sa$rud M; uQڞ='KcjfH|хp8S܈$ޏ*IYtZw6$+I`ͨ$;8J>݊\x pC+oNeX'd=QAm2mD*P9Dn!W ,/zx4'QCS$QLl[?XJcK9hp ߳rCo+Nsh&wegO>DwB7DVW!%]/¿P V?m2|-5#R(=vJ̅h,aOn7.&)Jb?t5ވ8OyWiQ!,K>wzHooS!5CzW Us_|V! yU4!4UtѶBڞ5 6;QƩڗ.h/8I6K@U%]ijlG` u X-|ML*S49kK^̐!g $) /TO 8&wHixr*Z=O:fp\4Ge+P2G̀Tf6=Ueә͆=˞쎸JKӂ"^U;4;Fn4H]E@D Xiv+bW+c-Jb!ʄI'Qܖ)sZֈLȊgSLҨ Ea vη 0kGx~s[1*Zq)Dīq47ςs`J7ce5?olՙKdn8d5LUHAk>K"Q<,JmB:cſ ș:PY+Sds B?yh=ro$mL*()S1bHpfVEsU`\BQMf!>)T=4$5@;9Q%˒H&bbeB/fFL];TE_%ⴆrusf#vmJb+[ٮV(6 RAAf߈w ڵݴqCT.rC;m3YìbjB)m%-d-Lv|R5Y=9Vm(o).Q(+(Z޻iߊB_b&ŷvmW/\^# QD2nT3d+JLKmJr7"ay mEgAeN\{!,mpV_9N1g5dMZHc䟓Dw/zUc+[OFdp=\F-ބܘjfSW/lWg"q,s@؜ƙN;P޷kr.f>Iz< Uc37l*G.ssj ]  ?rb[ol?IoSojè~C7nPś=C⎛ӈK΁An|s℮P΂h">RB+ B֒I< 15ڧN4i-&ޯOiʽN9j%{f5l,xȥDfN!BlW`/oXdސ^jQ"؟%55?Tڥ@}')s*%3LŴގ1,@U9ڀ 3 ȘeR`ĩjV>+Ht$DE`HΞ @[a?B#~œpi 4n6! 'Y m#/m~ zT۔9?NN!ok۽D^LjzwjͰmء[:x%f R=P1V;°aD9#w.+N1MadqpI%g>2(߻\q]VBFvaP8FMu9J+ZZQ4`R)[$M` Nt1p:%"A =E4C~b rN/79Gla4'f5`N%h,smⶸTjh9:*Y\܈ s8iK C DWTrAӰHlh{%r:bq'G fA"B~᯶&L.,+e!̜zSh+_W0D(z⺴C?cB/ Ah !Wa]pzH?4C+/܄$H+'~iL sc+ʇO7zhh mbaGzεxm*n0 ZH0R& JQj3 wdFޞs0ӤjCd DOtNڥ,LJ⯏| U|M>HU3 oCFc+j;M<:dr]yO>jvQW4?46~bfݳ܉{˟~Jřb%@ervd,[r헹Jۤ2 ӂz{ga@?,#RSgwoKB7*!K>@}qNt}41oIjA2.pSg>:mȎخs.B8AD;"Qw߳:[C --%z1ѹyHNPt3?]u}Xl. 2t6p(+_tS$ ߳Ȧ܏0Sg>?= Gn+cNO?}d.@$aUzq/|Eښ=tިSg=4@Fvv/w?%KQgMfG("?7=CɴȀ?i։ctK- sMfDGk_XU&DMfG?:m{pMG8μKn!UdsH{+Wd0MG/;G{{PY){v뮓[^dL`nnxjSjHȆjq.Rc6Oo^6yH.L}G6tn@җՏLGVҮh=Tq @W͟{O=驎w?DΣrezY_z.gP~)gz>]Ğ=yo}Q=]eK1zAkPAԌ{'TTPLJ2ZCP5f:xL>ٮU4CD(H/ZbK==.*`PS$X#)ipRob:UcOsd )O9rfVEc1rPzXjzPY.nDDM=+uFz.l12# "2 K{Π@ҥRd$b08dK֑SUuG2'Mؖ$[LYEW5='޹JGĢ:AGCz#r j>ŬMTQsر1`0v0z䈷_H}-u;'D3P%{mB4B1ljۃSۿG)g`$5Qځ%oTYFŊN*W7VT&XiJBȣo@0?P - xR}Db̿O@lq**z 8:2I=;%X%;6"$#/䷎x* :$ %J v-zF*B9P/#MF9*F9B0' *[(,5D8ex NQ*`|xbv.ۂ7WU"Ws%>Y,lCSmugTU e"E& V[RV^'k>AaK2Mt%N:b+st&k&ܙ'K>[a!) uiYKz|>fs ?^q]f'?āJr2qA+H8lfeD0\Jf| RpoYXd('&p@F01vl(r,$)FaXN`F1SiHdQ )LT2j%"RB8A͂M%k-8V$֘1U5 #>i[ Auh&6gɄX.|[rrA.08H{6㔣߂t/;Ea4RP"z08 vlsXpv.#-R68pO[-~Wȩ#Lv$GwH4YuٍdOjǪ![RNи7WVt5ŏb)2M;!ʍRo|癔Hi.] ԰@#X8ѓeUqc!8/{bR/[[>*il@xVB]-$ >-xBHS#ZFOrLVqsq`7~bʉ҂,6 d `4*& FxD hhR h* 4LlB"6h ls? ,̮Sfz*2v#t9%K/;U&v?`frQTr *$ RH$p]OaرՍdr1: @2|]EJj 2iGSjlq [xUMBAAܗHl=Zݝ=j Q8,Gi%!;fFݘsBIRB#q ħb-HSre5S*Q +7 ꬉ%eZdIܚdv*ҹW#~.Ħr5%1$W4ڐe X`eDo.zJr!$oAۅ&F?:x\"NDC̱*J.?L(6g;Rk4m[> 6K$-F~ 7`EyC G[ˋS/lk}= pU\mF@ĸӟ (rJ3;U7@ AnEߊ! *mʆ)xF'%HӈRn'q-j-lȹx9V%??t !BS lS̙(X+rQ'g#],e2&j*]4D\{Tm?e<ŋy'>ܷB| \'s.m\pE=C JkpNg̃9Rˢ 94jZdmʄ&,ȅ&VGU!F̵j,n*TmL[hb*sYܐ;%vDil ];zUPpVt[ :PEIK8=S ҥW<%WE8I;61#a=,<U%y m7\FR!k x!xL`QA5튝1 Nܹ3qE IșhI$3U5E@ yTdy,_yS.ȥd8.ۀ &b6q!YDbp*Ffyjp1_y8(6d?P$&&Z0QwQI"Sja,JVޖCbc,!EAT(sMs5RtJͩăA̎!TUC?h*~r%a["AT}5ViDs~܂.k}U9T w:8CQUtsÙĪǧ\rM TU,G Fq'*;edK>T1 Ker Uc‰ ,:?Hm^i7'GT]#>D];ή{q ̇Ԇ}˿wwwo7]T}a OPY6~iMSsh]F1Q qw7.p#܁僫(Ȧ3ۏ]ɵƋT B:3ۘܙBn\p7ўH/L'+# .[>X7gz[^,fLc3۔ޖMيtŢ8) ?OϛD߸y垝_zx/6=M},\h]z&w '&1ӍQ0\z"bYC`Mc]˹90vڸH)=uzS\r9d{]{y稜v%=tRX,GrǞzKCW1CV4{F{y'o]eգܛw)r"s4r⶧?37>؈#/C]hsQa\%H!܎߬DO={}&{y#3 ץ)eN 3sL-Qٍ*=ݐ ^̮'*Z1-!z4U?nl\u>X5=ɾ{mS;A0hcplron3)܏6ںP&&1=S#M%y\i?H8o+x)k϶ -lLxQ" qz{U9V [O>*:_SWCCjޖӻz9HSM#=L bQ1![A6!-[za6pWXuaAS~>(x&9Άfz38u9ځoL)鹰Nv8DP9q=,Ha ;՘]zVCjǦ}Càn sc-飴{=F_rs*G'3}D-Kwcsk:w+ ,č+d,<,I 3NV"UTXٲųK WL$^ eNE14TIr"T 9Ͱ i(%ImT"e;^[Y@3j3 "X*V˽(i$Mܞ9;r:GwNDIOtB4Ő[#=.ڋ5k'wrjV@W\D (8f޺ 9izؚ̾D$neI4քzIHqbJd:BKڴ" a`J/cyҍeQ1c*3tc-5n-ٕW la*8XjuAsL]rBR!:S^˾Ę-ˮ"&<0lBjcIn ]L."<8i( l-8dNrba9JN$28QvDC(薘f!&8/Bd1l{yu08RN3]ZM0ؒE9r|WqdCaƘmUf'o:#[a.x8ڕ abO'9U0QܣT $q(`q-$lFDF==' ${ǽL-^om3?^3hhaŠ>RSȊ0) G#Ug\%ޮdCTp\=".^X+F]F MFϹHqB"L]P su)MU7Mh2.bJ1'?iM"eJސ!_PIJ(.Pf,,U ;X߄ !j0u r-TMV rѪC[ӔN6L$zI}7 Nfe)V*J nOjU v٭E1za&1T" =t`XtU>a2!cp}\ޯਹ.>!0H6Bt݂‹`hږcUEE:ƻFjrwT_ܧW!i<s~rba:qq@`Nop6xS$Dd% 3An]2R)nxfΔL- XVƑpU!AF]#٧sYiq'KtJщDN"ܬYCI;h^2B0dS#ʈ7`$j{p@v޴(AY(q\&Db/ ]0B1qÿbXH`vuV"z3sܥ(gLGD:ʃF-}:v4?߂댦L ":6JD0ÂYߥ!tJN;@im{:$ f1O-)9S<$ڡlsfnWD G|tAsKUPIcL .axԐ7{з039-dM8Ю$u2$t">,Y] 7DN:иj*<%9\ srrqF݈x{{d$fB#D SE({v}'S!,)6CCr #0W+;\e/@ۇ?5mҖ:Fة&_r|`CQJ]=ˣ^R1K '"JZinkkү` *bY5X')GZhPس!q"!(Η2cG 4cQ/SݩM"7 3fP%T 5ZC1%=4~?|V=Om`fJv6-e.9?HN MRT=81>*qzA(}ĝ ";DyjN>Wnq:+M4Jo/_5(C%$ĭ[sM,QGJϊ*Sbʬ+et0 6ҵcN,¤sq0ܹQK >q5iXCus.[sraйUPM^.C1ؘJo)S3-[8ftmɹ>zq, CjLObV'ހxO!ev8"%pA,MO8H<{n4Sܜ N)pHzxڈ"iT!8NP 2K:(йI" Ȕ%ot cJnFr[4qsNw+H8i @-[ vEG.Y$ȝ<{!ɓ 4SIT' BCP#*ASFAohAUCf](X-F9HsSLL r]7,<;WU9IIi JQ.*6*tP3`bYb,GdϒGdVD4Q~J2V+FBAu8,YgUҐ*wa)?̨2c~99I鮊$I!fLh$ "a#764蔣8]uO v*s 3Bw0ÅT!bRhH*~ŻAVNhj[JhUX!Kjqn l wNJ=TFQ-`-Lj_)|J(۶g K6,˕@rKa"K56t1⫓.{B9 qX@A?ں%64<gzk 7~Dy3H?ԧ+z,DprlT/rdK\9BM r_r#8;qL7T ` ,%C q"0%72[Oz7r]$P_pCRUB^4t%!:5@?fِ+E@XNrLd М5REX9T" ͲbXbHbf$VTb}KMRi:15 !Ҁ'xF*.xՙrA% .-EʑjSSD#0 [@6B̳bQ@ pIpxZjwI41LЌH*f#nbj bh1Xm9\KhMQY̗t R!n)#mEv~qM}?$A`g U Ua ة)4C Qnd FHP$nuCw)rl\Hu`!h[̪z{1%ȕHzz#-QށD)bIHC)T! > ץюQTs[ 'a]rw`˚yG%G( Q@V&v(]pԐ{N  tpR0 hPK50ufQ!H3 T\> zR|Plj:SbcMZ-i(j]800|ՎL%kM;Bgd9eV]R FK `uj|SMD\5]DS(c*\Skt UvETʑFGRq[#Mɸ~vĬ:{%ܱM=\SiǦ؟{2'j"=[W"G2æqÅTYڼG\?rçIâ5ʼnGǧBJҺEn%7~]w T&$ U{dz{ fQx=kt?z2鮀 MY(쟕x}ˡE:9:w- |Ot"ѥ-HzS6iC=trK۱7VgگN8ۨK @]z3!sSљDVD˴1hn\ ۓi:wo}.iO>@I^oHM+H1+F=[}cfz/q۱m=NػD#tp_iD ىv:BQ;JtMZ] #"9m+t:\S_LfRm28ͫf2]fS#)6o -ȿ˨N=5_L.&DH6GT5d~ [1vJc沌#xă4L})GS)`"_رH'Ξ9J")Iy665PHczXstF-gɤ̊oP[PUvEOObUc)ޢ2>!mIOj>]}]P*XF͘ďQΑ_dގ9aNzJݒjgXZp`Sb#GS4Auf' +;9>zp~'7 ݈R~2zI#ޔwC l:ntOԷ6' =-̓&~'͉d3+zIއG~܉#;PHwG?%.vbp P2+\҄ "b(r/F1A  7QUeG+siEZ߂T#6UZkJ] HKbTKT8( Ȏ4;Ars-{O(hg;>!8tO)yȷ8)gC-ӆ K8޵ZL9ziKIx^ ?kwJmFŸUQu Ki9'sS48␠`$m`Sε/bm+ćع@Nf'nR%ìpSwEP\kZ2HQƒ\Z%dskg{urFaM7ή૽)v0w)UT&)QsUǹfQ z{8upRIeD򝠐K.~Cz{Ńm(%q52]J甍=J@55 pPBY<. v>(99)qq@`<3\䑺a=TtFUnNFU9KpO v`Nv-Ҹ)RUmdXK Ȉ hmۏUVL%rCuwўҹˬda.! .ԃJOb,#H",7(k>"߲pj5ԯ_Dv`H=Bz T)cY9] vaǴwcn"Gxԁ.AM[(yT5XO[j0MVz3NFktw!(uTuHԶfޚ'P :p5pf:](GB>喅Jg.DIʲ&HZSlUXkbQq2Yrl9.p+8ΖOrb#ܡ5bUn6/s2`ΪW7N'"RRgO㒰SH`XS%C.Ġ:-TI9UNNK(RaBпS;E9X F$\In1 1ڲbQP$fKµOoXlXeIr%Z=B[@O2 $tUQdDkd|@UP4w]*R2KjDDDĬB lV+ lpTrI}.- BٸHvX٧0 ߤ#d$b@QS3(ETLI.JI. Q ,UmHiIr.fjq16)Ve;]tФؐݩIJRU@qA((؋%G H`JX$JX!kДzD@T( zy<؜R&QRƩģ[L+I;v+c_q+?zQD\ŹȽHZ\Rm/apԧ5,AƌQd@Hg\1@V..\Aib:qUvNPq(V$!%MӒbӨC/n ʡc6ܺ|0ܒvlόp*c].AwY@,*2>*SS@CJEh>PKfGвaC7.vԠ.J!Igr،nGAuk̭GEsrROFHUDR@5WQXaGz aUpCTVڰ\@M9ޖ55nr 5ӊʙ %<" n8D,j&,fp5F#I7oIK4q ≌A wypU$AEDqSxsۄKd'x4sfTzM. 禂b\-xga*L@yN L;ag1 q-@ K4˙,x+INa,Ut@4Q` B PoJ2f]hU t6Va q؈HoYq,YLS-NĤ 0w(O\p4،S;"ܖ"5Fտt@HK2n DsYMd5>krNm(tau9ڹ&GA-̦ᚁ s9Y K`HP"e@NPj2ɴZ E<_s$MB.!IP<m]DBQ1 gT`Q|SQJJƤMa k c]k,RHnBN&H;o\FSiDcXؓKcVH6+T@n=*l KBDܔᦢYqPΘk R6%@˜ȱSa&0.8bkڔXl}S6L$)>},V.1-xM *pQ"R&VH8݈N 2HUp2WLXJS ! k#X(uF ,`'Z?MC6W@RˊB +ܰQ.DAf;D/Jבйbvt&:uPp S d³5` imhw #ڱ|99\uU6'ʲ,)J-*ҵ8$o4dG،%'1' <T$bY\ɱHbW;!r7$p1-ZMvLn;:, - Ir|##Q  xCB(*yv!`V #>\] X BgN8 p@ ARG--EGiYަaE¸,̃ M.z.i KDm((WPNA]z\;6f6Ȧ0ؖJKbB2qtfR50t ZDGEY(;K# 備m`*HQ;D3( Q/u:bmB  V 3%Jb&IV2ҐeRLQHlE&2rS.?Tp(*h{S(Dܩ(xHNCONQ; BQe] 槅gs،!;>JVS*a:ûKq s.ҨI cEnx?.68qi]|E+#BEKn r[YE)6#x;PIKܥ.`xw] ®3;Q=b M,9%MY'2j$ĩͼnhZ*'lN&JڌI]L7%63O7)OC)`jhb" j"σ/Bb}Ig>ͪQt*SN`p G.vH݉(RP[}@rX pj9/J3XuD@2Q)I HިH I\ǎCz@eGPIJ!.9s']Quh .HѪUqKI\Mt*檑h|'~iĭe## +6ot&18J$9Sh$nF:ʲYyH2) qj-i9 }8,έ cL2ȈŁ1Ȟ* \+^m-x p%sְ/@0f`w/Cjm Hco K\hڳoزu|]~ʺuZV`C*~F.p"k@T܋TlN54YCjޢEA܎*>V=LetB1ޛCTU>l*:sfQUjZ^=LrtP^Rތd+\;H9Xҏ1u{-NݾTt]#b_UMu2.W/lH5T[AթSC C%JZ"FjbP0 FYwF=@f"; \8ȀmPILAMd IOP)&ԣ-D9&lc}~{b1L5d DmiaTOɣ.' S'3ܗĖīӀmj| fxq?*CSmfiБ;G+!)ǪMϊ3Py@ I.IΎ¥t/܇:;Vb3Xk],դFVn0G(s!kYZ}sߵ2BN3M̉nd_6 9SD`P4t.P7bs jr0%NP!]: 3Ef A'x[\v0t鮨a{2QN]\!peJ!E"|$LjP2UfDVtt \Bn^a^7h€f=mk'ێjR4P.(EV_Ig\L$ej̱"rUES["xA%LTr?]0eC(bQ.7v#T;͆2udf9= Dڇ* AUtT<1al'P$8%Q.ja!B`*m'9HPfѷ(ic5r3Z5bT N9bGXmCdڷ~+,ѣnW.xVY`Rv@E_˶e?Z"Ұc1Ee]:,VY?6{nT2om,~?$OoOez|a?DcYd['@߂'7Mh5th~ԒOYdHeW{%/-h2ى7|j w+OӁW# 'O.&,ggZ> ,ga~JO?:vy6¢6IC?ܲgmd%޲=SWD?WYeg\<}Y&2zAR+'ӋBO" c5Z>>RGL\-}DYeoRܲk?=4vWЭ D6Yeh(~/eT ,H(0hLr `m@d16-޲Zru@$-EQI=Y{Ҏcd,<ޘm,͔DYd 9d A|JB,4^+ y,3'LyVYPq$ 6m76в)O7r\ڲ61ʆn@RqYeRY7زVfj,beamer/examples/a-lecture/beamerexample-lecture-body.tex0000644000175000017500000004554512050430506023315 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. % % DO NOT USE THIS FILE AS A TEMPLATE FOR YOUR OWN TALKS!! % % Use a file in the directory solutions instead. % They are much better suited. % \lecture[1]{Syntax versus Semantik}{lecture-text} \subtitle{Text und seine Bedeutung} \date{27. Oktober 2006} \begin{document} \begin{frame} \maketitle \end{frame} \section*{Ziele und Inhalt} \begin{frame}{Die Lernziele der heutigen Vorlesung und der bungen.} \begin{enumerate} \item Die Begriffe Syntax und Semantik erklren knnen \item Syntaktische und semantische Elemente natrlicher Sprachen und von Programmiersprachen benennen knnen \item Die Begriffe Alphabet und Wort kennen \item Objekte als Worte kodieren knnen \end{enumerate} \end{frame} \begin{frame}\frametitle{Gliederung} \tableofcontents \end{frame} \section{Was ist Syntax?} \begin{frame}{Die zwei Hauptbegriffe der heutigen Vorlesung.} \begin{block}{Grobe Definition (Syntax)} Unter einer \alert{Syntax} verstehen wir \alert{Regeln}, nach denen Texte \alert{strukturiert} werden drfen. \end{block} \begin{block}{Grobe Definition (Semantik)} Unter einer \alert{Semantik} verstehen wir die Zuordnung von \alert{Bedeutung} zu Text. \end{block} \end{frame} \subsection[Syntax \protect\\ natrlicher Sprachen]{Syntax natrlicher Sprachen} \begin{frame}{Beobachtungen zu einem gyptischen Text.} \includegraphicscopyright[width=6cm]{beamerexample-lecture-pic3.jpg} {Copyright by Guillaume Blanchard, GNU Free Documentation License, Low Resultion} \begin{block}{Beobachtungen} \begin{itemize} \item Wir haben keine Ahnung, was der Text bedeutet. \item Es gibt aber \alert{Regeln}, die offenbar eingehalten wurden, wie Hieroglyphen stehen in Zeilen. \item Solche Regeln sind \alert{syntaktische Regeln} -- man kann sie berprfen, ohne den Inhalt zu verstehen. \end{itemize} \end{block} \end{frame} \begin{frame}{Beobachtungen zu einem kyrillischen Text.} \includegraphicscopyright[width=6.75cm]{beamerexample-lecture-pic4.jpg} {Copyright by Cristian Chirita, GNU Free Documentation License, Low Resultion} \begin{block}{Beobachtungen} \begin{itemize} \item Wir haben keine Ahnung, was der Text bedeutet. \item Es gibt aber \alert{Regeln}, die offenbar eingehalten wurden. \item Wir kennen mehr Regeln als bei den Hieroglyphen. \end{itemize} \end{block} \begin{block}{Zur Diskussion} Welche syntaktischen Regeln fallen Ihnen ein, die bei dem Text eingehalten wurden? \end{block} \end{frame} \begin{frame}{Beobachtungen zu einem deutschen Text.} \begin{quotation} Informatiker lieben Logiker. \end{quotation} \bigskip \begin{block}{Beobachtungen} \begin{itemize} \item Auch hier werden viele syntaktische Regeln eingehalten. \item Es fllt uns aber \alert{schwerer}, diese zu erkennen. \item Der Grund ist, dass wir \alert{sofort ber die Bedeutung nachdenken}. \end{itemize} \end{block} \end{frame} \begin{frame}{Zur Syntax von natrlichen Sprachen.} \begin{itemize} \item Die \alert{Syntax} einer natrlichen Sprache ist die Menge an \alert{Regeln}, nach denen Stze gebildet werden drfen. \item Die \alert{Bedeutung} oder der \alert{Sinn} der gebildeten Stze ist dabei unerheblich. \item Jede Sprache hat ihre eigene Syntax; die Syntax verschiedener Sprachen hneln sich aber oft. \item Es ist nicht immer klar, ob eine Regel noch zur Syntax gehrt oder ob es schon um den Sinn geht. \ExampleInline{Substantive werden gro geschrieben.} \end{itemize} \end{frame} \subsection{Syntax von Programmiersprachen} \begin{frame}[fragile]{Beobachtungen zu einem Programmtext.} \begin{verbatim} \def\pgfpointadd#1#2{% \pgf@process{#1}% \pgf@xa=\pgf@x% \pgf@ya=\pgf@y% \pgf@process{#2}% \advance\pgf@x by\pgf@xa% \advance\pgf@y by\pgf@ya} \end{verbatim} \begin{block}{Beobachtungen} \begin{itemize} \item Der Programmtext sieht sehr kryptisch aus. \item Trotzdem gibt es offenbar wieder Regeln. \item So scheint einem Doppelkreuz eine Ziffer zu folgen und Zeilen muss man offenbar mit Prozentzeichen beenden. \end{itemize} \end{block} \end{frame} \begin{frame}[fragile]{Beobachtungen zu einem weiteren Programmtext.} \begin{verbatim} for (int i = 0; i < 100; i++) a[i] = a[i]; \end{verbatim} \begin{block}{Beobachtungen} \begin{itemize} \item Wieder gibt es Regeln, die eingehalten werden. \item Wieder fllt es uns \alert{schwerer}, diese zu erkennen, da wir \alert{sofort ber den Sinn nachdenken}. \end{itemize} \end{block} \end{frame} \begin{frame}{Zur Syntax von Programmiersprachen} \begin{itemize} \item Die \alert{Syntax} einer Programmiersprache ist die \alert{Menge von Regeln}, nach der Programmtexte gebildet werden drfen. \item Die \alert{Bedeutung} oder der \alert{Sinn} der Programmtexte ist dabei egal. \item Jede Programmiersprache hat ihre eigene Syntax; die Syntax verschiedener Sprachen hneln sich aber oft. \end{itemize} \end{frame} \begin{frame}{5-Minuten-Aufgabe} Welche der folgenden Regeln sind Syntax-Regeln? \begin{enumerate} \item Bezeichner drfen nicht mit einer Ziffer anfangen. \item Programme mssen in endlicher Zeit ein Ergebnis produzieren. \item ffnende und schlieende geschweifte Klammern mssen balanciert sein. \item Methoden von Null-Objekten drfen nicht aufgerufen werden. \item Variablen mssen vor ihrer ersten Benutzung deklariert werden. \end{enumerate} \end{frame} \subsection[Syntax\protect\\ logischer Sprachen]{Syntax logischer Sprachen} \begin{frame}{Beobachtungen zu einer logischen Formel.} \begin{quotation} $p \to q \land \neg q$ \end{quotation} \bigskip \begin{block}{Beobachtungen} \begin{itemize} \item Auch logische Formeln haben eine syntaktische Struktur. \item So wre es \alert{syntaktisch falsch}, statt einem Pfeil zwei Pfeile zu benutzen. \item Es wre aber \alert{syntaktisch richtig}, statt einem Negationszeichen zwei Negationszeichen zu verwenden. \end{itemize} \end{block} \end{frame} \begin{frame}{Zur Syntax von logischen Sprachen} \begin{itemize} \item Die \alert{Syntax} einer logischen Sprache ist die \alert{Menge von Regeln}, nach der Formeln gebildet werden drfen. \item Die \alert{Bedeutung} oder der \alert{Sinn} der Formeln ist dabei egal. \item Jede logische Sprache hat ihre eigene Syntax; die Syntax verschiedener Sprachen hneln sich aber oft. \end{itemize} \end{frame} \section{Was ist Semantik?} \subsection[Semantik\protect\\ natrlicher Sprachen]{Semantik natrlicher Sprachen} \begin{frame}{Was bedeutet ein Satz?} \begin{quotation} Der Hrsaal ist gro. \end{quotation} \bigskip \begin{itemize} \item Dieser Satz hat eine \alert{Bedeutung}. \item Eine \alert{Semantik} legt solche Bedeutungen fest. \item Syntaktisch falschen Stzen wird im Allgemeinen keine Bedeutung zugewiesen. \end{itemize} \end{frame} \begin{frame}{Ein Satz, zwei Bedeutungen.} \begin{quotation} Steter Tropfen hhlt den Stein. \end{quotation} \bigskip \begin{itemize} \item Ein Satz kann \alert{mehrere Bedeutungen haben}, welche durch \alert{unterschiedliche Semantiken} gegeben sind. \item In der \alert{wortwrtlichen Semantik} sagt der Satz aus, dass Steine ausgehhlte werden, wenn man jahrelang Wasser auf sie tropft. \item In der \alert{bertragenen Semantik} sagt der Satz aus, dass sich Beharrlichkeit auszahlt. \end{itemize} \end{frame} \begin{frame}{Die Semantik der Hieroglyphen} \includegraphicscopyright[height=8cm]{beamerexample-lecture-pic5.jpg} {Unknown Author, Public Domain, Low Resolution} \end{frame} \subsection{Semantik von Programmiersprachen} \begin{frame}[fragile]{Was bedeutet ein Programm?} \begin{verbatim} for (int i = 0; i < 100; i++) a[i] = a[i]; \end{verbatim} \begin{itemize} \item Auch dieser Programmtext bedeutet etwas, wir meinen etwas mit diesem Text. \item Die \alert{Semantik der Programmiersprache} legt fest, was mit dem Programmtext gemeint ist. \end{itemize} \end{frame} \begin{frame}[fragile]{Ein Programm, zwei Bedeutungen.} \begin{verbatim} for (int i = 0; i < 100; i++) a[i] = a[i]; \end{verbatim} \begin{itemize} \item Ein Programmtext kann \alert{mehrere Bedeutungen haben}, welche durch \alert{unterschiedliche Semantiken} gegeben sind. \item In der \alert{operationalen Semantik} bedeutet der Programmtext, dass die ersten einhundert Elemente eines Arrays \verb!a! nacheinander ihren eigenen Wert zugewiesen bekommen. \item In der \alert{denotationellen Semantik} bedeutet der Programmtext, dass nichts passiert. \end{itemize} \end{frame} \subsection[Semantik\protect\\ logischer Sprachen]{Semantik logischer Sprachen} \section{Grundlage der Syntax: Text} \begin{frame}{Eine mathematische Sicht auf Text.} \begin{itemize} \item Viele (aber nicht alle!) syntaktische Systeme bauen auf \alert{Text} auf. \item Auch solche Systeme, die nicht auf Text aufbauen, lassen sich trotzdem durch Text beschreiben. \item Es ist deshalb ntzlich, auf Text \text{Methoden der Mathematik} anwenden zu knnen. \item Im Folgenden wird deshalb die \alert{mathematische Sicht} auf Text eingefhrt, die \alert{in der gesamten Theoretischen Informatik} genutzt wird. \end{itemize} \end{frame} \subsection{Alphabete} \begin{frame}{Formale Alphabete} \begin{definition}[Alphabet] Ein \alert{Alphabet} ist eine nicht-leere, endliche Menge von \alert{Symbolen} (auch \alert{Buchstaben} genannt). \end{definition} \begin{itemize} \item Alphabete werden hufig mit griechischen Grobuchstaben bezeichnet, also $\Gamma$ oder~$\Sigma$. Manchmal auch mit lateinischen Grobuchstaben, also $N$ oder~$T$. \item Ein Symbol oder Buchstabe kann auch ein komplexes oder komisches Ding sein wie ein Pointer oder ein Leerzeichen. \end{itemize} \begin{examples} \begin{itemize} \item Die Gro- und Kleinbuchstaben \item Die Menge $\{0,1\}$ (bei Informatikern beliebt) \item Die Menge $\{A,C,G,T\}$ (bei Biologen beliebt) \item Die Zeichenmenge des UNICODE. \end{itemize} \end{examples} \end{frame} \subsection{Worte} \begin{frame}{Formale Worte} \begin{definition}[Wort] Ein \alert{Wort} ist eine (endliche) Folge von Symbolen. \end{definition} \begin{itemize} \item Worte sind im Prinzip dasselbe wie Strings. Insbesondere knnen in Worten Leerzeichen als Symbole auftauchen. \item Die Menge aller Worte ber einem Alphabet $\Sigma$ hat einen besonderen Namen: $\Sigma^*$. \item Deshalb schreibt man oft: Sei $w \in \Sigma^*$, \dots \item Es gibt auch ein \alert{leeres Wort}, abgekrzt $\epsilon$ oder $\lambda$, das dem String \texttt{\char`\"\char`\"} entspricht. \end{itemize} \begin{examples} \begin{itemize} \item \texttt{Hallo} \item \texttt{TATAAAATATTA} \item $\epsilon$ \item \texttt{Hallo Welt.} \end{itemize} \end{examples} \end{frame} \begin{frame}{5-Minuten-Aufgabe} Die folgenden Aufgaben sind nach Schwierigkeit sortiert. Lsen Sie \alert{eine} der Aufgaben. \begin{enumerate} \item Schreiben Sie alle Worte der Lnge hchstens $2$ ber dem Alphabet $\Sigma = \{0,1,*\}$ auf. \item Wie viele Worte der Lnge $n$ ber dem Alphabet $\Sigma = \{0,1,*\}$ gibt es? \item Wie viele Worte der Lnge hchstens $n$ ber einem Alphabet mit $q$ Buchstaben gibt es? \end{enumerate} \end{frame} \subsection{Sprachen} \begin{frame}{Formale Sprachen}{Definition} \begin{itemize} \item Natrlichen Sprachen sind komplexe Dinge, bestehend aus Wrtern, ihrer Ausprache, einer Grammatik, Ausnahmen, Dialekten, und vielem mehr. \item Bei \alert{formalen Sprachen} vereinfacht man radikal. \item Formale Sprachen mssen weder sinnvoll noch interessant sein. \end{itemize} \begin{definition}[Formale Sprache] Eine \alert{formale Sprache} ist eine (oft unendliche!) Menge von Worten fr ein festes Alphabet. \end{definition} \begin{itemize} \item Statt \frqq formale Sprache\flqq\ sagt man einfach \frqq Sprache\flqq. \item Als Menge von Worten ist eine Sprache eine Teilmenge von $\Sigma^*$. \item Deshalb schreibt man oft: \frqq Sei $L \subseteq \Sigma^*$, \dots\flqq \end{itemize} \end{frame} \begin{frame}{Formale Sprachen}{Einfache Beispiele} \begin{examples} \begin{itemize} \item Die Menge $\{AAA, AAC, AAT\}$ (endliche Sprache). \item Die Menge aller Java-Programmtexte (unendliche Sprache). \item Die Menge aller Basensequenzen, die \texttt{TATA} enthalten (unendliche Sprache). \end{itemize} \end{examples} \end{frame} \begin{frame}{Formale Sprachen in der Medieninformatik} \begin{itemize} \item Ein Renderer produziert 3D-Bilder. \item Dazu erhlt er eine \alert{Szenerie} als Eingabe. \item Diese Szenerie ist als \alert{Text}, also als ein \alert{Wort} gegeben. \item Eine \alert{Syntax} beschreibt die (formale) Sprache, die alle \alert{syntaktisch korrekten Szenerien} enthlt. \item Eine \alert{Semantik} beschreibt, was diese Beschreibungen bedeuten. \end{itemize} \end{frame} \begin{frame}[fragile]{Formale Sprachen in der Medieninformatik}{Das Wort, das eine Szenerie beschreibt\dots} \only{\scriptsize} \begin{verbatim*} global_settings { assumed_gamma 1.0 } camera { location <10.0, 10, -10.0> direction 1.5*z right x*image_width/image_height look_at <0.0, 0.0, 0.0> } sky_sphere { pigment { color rgb <0.6,0.7,1.0> } } light_source { <0, 0, 0> // light's position (translated below) color rgb <1, 1, 1> // light's color translate <-30, 30, -30> shadowless } #declare i = 0; #declare Steps = 30; #declare Kugel = sphere{<0,0,0>,0.5 pigment{color rgb<1,0,0>}}; #while(i rotate <0,i * 360 / Steps, 0> } #declare i = i + 1; #end \end{verbatim*} \end{frame} \begin{frame}{Formale Sprachen in der Medieninformatik}{\dots\ und was es bedeutet.} \includegraphicscopyright[width=9.5cm]{beamerexample-lecture-pic2.jpg} {Copyright Matthias Kabel, GNU Free Documentation License, Low Resolution} \end{frame} \begin{frame}{Formale Sprachen in der Medieninformatik}{Komplexeres Beispielbild, das ein Renderer produziert.} \includegraphicscopyright[width=9.5cm]{beamerexample-lecture-pic1.jpg} {Copyright Giorgio Krenkel and Alex Sandri, GNU Free Documentation License, Low Resolution} \end{frame} \begin{frame}{Formale Sprachen in der Bioinformatik} \begin{itemize} \item In der Bioinformatik untersucht man unter anderem Proteine. \item Dazu erhlt man \alert{Moleklbeschreibungen} als Eingabe. \item Eine solche ist auch ein \alert{Wort}. \item Eine \alert{Syntax} beschreibt die (formale) Sprache, die alle \alert{syntaktisch korrekten Molklbeschreibungen} enthlt. \item Eine \alert{Semantik} beschreibt, was diese Beschreibungen bedeuten. \end{itemize} \end{frame} \begin{frame}[fragile]{Formale Sprachen in der Bioinformatik} {Das Wort, das ein Protein beschreibt\dots} \only{\tiny} \only
{\footnotesize} \begin{verbatim} HEADER HYDROLASE 25-JUL-03 1UJ1 TITLE CRYSTAL STRUCTURE OF SARS CORONAVIRUS MAIN PROTEINASE TITLE 2 (3CLPRO) COMPND MOL_ID: 1; COMPND 2 MOLECULE: 3C-LIKE PROTEINASE; COMPND 3 CHAIN: A, B; COMPND 4 SYNONYM: MAIN PROTEINASE, 3CLPRO; COMPND 5 EC: 3.4.24.-; COMPND 6 ENGINEERED: YES SOURCE MOL_ID: 1; SOURCE 2 ORGANISM_SCIENTIFIC: SARS CORONAVIRUS; SOURCE 3 ORGANISM_COMMON: VIRUSES; SOURCE 4 STRAIN: SARS; ... REVDAT 1 18-NOV-03 1UJ1 0 JRNL AUTH H.YANG,M.YANG,Y.DING,Y.LIU,Z.LOU,Z.ZHOU,L.SUN,L.MO, JRNL AUTH 2 S.YE,H.PANG,G.F.GAO,K.ANAND,M.BARTLAM,R.HILGENFELD, JRNL AUTH 3 Z.RAO JRNL TITL THE CRYSTAL STRUCTURES OF SEVERE ACUTE RESPIRATORY JRNL TITL 2 SYNDROME VIRUS MAIN PROTEASE AND ITS COMPLEX WITH JRNL TITL 3 AN INHIBITOR JRNL REF PROC.NAT.ACAD.SCI.USA V. 100 13190 2003 JRNL REFN ASTM PNASA6 US ISSN 0027-8424 .... ATOM 1 N PHE A 3 63.478 -27.806 23.971 1.00 44.82 N ATOM 2 CA PHE A 3 64.607 -26.997 24.516 1.00 42.13 C ATOM 3 C PHE A 3 64.674 -25.701 23.723 1.00 41.61 C ATOM 4 O PHE A 3 65.331 -25.633 22.673 1.00 40.73 O ATOM 5 CB PHE A 3 65.912 -27.763 24.358 1.00 44.33 C ATOM 6 CG PHE A 3 67.065 -27.162 25.108 1.00 44.20 C ATOM 7 CD1 PHE A 3 67.083 -27.172 26.496 1.00 43.35 C ATOM 8 CD2 PHE A 3 68.135 -26.595 24.422 1.00 43.49 C ATOM 9 CE1 PHE A 3 68.140 -26.631 27.187 1.00 43.21 C ATOM 10 CE2 PHE A 3 69.210 -26.046 25.108 1.00 42.91 C ATOM 11 CZ PHE A 3 69.216 -26.062 26.493 1.00 43.22 C ATOM 12 N ARG A 4 64.007 -24.666 24.228 1.00 34.90 N ATOM 13 CA ARG A 4 63.951 -23.376 23.543 1.00 37.71 C ... \end{verbatim} \end{frame} \begin{frame}[fragile]{Formale Sprachen in der Bioinformatik} {\dots\ und das Protein, das beschrieben wird.} \includegraphicscopyright[width=9.5cm]{beamerexample-lecture-pic6.jpg} {Copyright Till Tantau, Low Resultion} \end{frame} \section
{Zusammenfassung} \section*{Zusammenfassung} \begin{frame}{Zusammenfassung} \begin{enumerate} \item Ein \alert{Wort} ist eine Folge von Symbolen aus einem \alert{Alphabet}. \item Eine \alert{Syntax} besteht aus Regeln, nach denen Worte (Texte) gebaut werden drfen. \item Eine \alert{Semantik} legt fest, was Worte \alert{bedeuten}. \item Eine \alert{formale Sprache} ist eine Menge von Worten ber einem Alphabet. \end{enumerate} \end{frame} \end{document} beamer/examples/a-lecture/beamerexample-lecture-pic4.jpg0000644000175000017500000006621612050430506023175 0ustar mohuramohuraJFIFddDucky Adobed''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD "!1AQa"q2B#Rrb3C!1AQaq"2 ?]ߚ2TXF<X.&@ą㝏˰ m1I< GXb/h}žDA&is&<bo'sNXʃb`s3}&jy?pvN1 З .`B936Ž.0u)FHW'A9St Wz@n␬s^Vsˉ4h7i2O,tX^}[Hm]'+'~.T{nb+ 0,pXh2b0pՠy[ߴikSyK/)6H]DVzNro0AYH+{"2$9`JX0r/EuHO&k@y#rzF7ő>@#^1 pzF0ֳ_0#Ch@X֦bGIXƷ510Ahy0$xm;Gp*͘ }}[hWY]5@N%O@T- uzxɑsZN뼘+8Ӆ慠27ITvqqrOw iZdy'rdz^nL,[Y_ DzOp*g\K>U>U܇i|'>o|bk g/thg8ԜLIwx5Rd.bd)=^gjrdӐ;GNWZ='A[a#^ ,X8.li=Fpp[cY 3Hr@n7c)"{RJ˰ǗP` @?pqSk'tE?C8obP=qrF)hWXcϬŁ9O5 A,meȮ{w^0fd#P ~ wiV]d+w5xsp.IPq `:=48KbОe"|:\*}Ѡ4U~Y`]>@YLbA0}㠎x=zK1C*usm,sB6 =}dGqN>Jr^5:|$G%K]ǝS/鬀%-|860Ƚ4Y3 LQD*1ŞyKG:dT} 笏&i@]CN"AOAa/'/ '3QRL7j@|54 ~ބǤs^L$QpcTꥼsGi)=DǻNW?9*TȊ!gE(M`DBm0c` BM]By3հ3 E@CEu@`Z^.kXM,l*ʼn ,\`kR`@7= hP:Ǔ!U0]T9!.5"LX0( DL 3H4ED2a $+7 xHW` zMa#5zFptpyigZ TWCdNJ7"껻\P#2i!2l >0K>lF{q#pOq>'іKNJMJx۸x6Y=GUŧحW)451fLyəQ'c^j:ɟڛRęv-fIPB Rj}$ܧ"6hX{Fϝ2@dχbaT4e('Vl&rZl}/A($l5]S,gaV,U tԊon@Ɂy'9*̧U(>DЌuKVkc!3u0mI-( S};H#9[{_#+҂`oY:0,hlGi0]Pr^h+ E^%Lu1Á`|⃴U۩XۛSAfOX: Ӥ>PQ{@{yNg4XNy1s#u.Tjr.SpaR{pXXFfpV4#'vS߉^!\bTbh)5N1lbd,07&(t#pk}^8OS W8d`I$11Wm0{UWxUH@@p bt`aAۘPY!bK( !}hu V5sPtv-ǹ{G& fk7 Q+$ mB].)snR/X<V"P[MzQI9"c"r)LMk T}8~N[Zj\pu2g2Xur !'2g`C"f IJr/MGrZӈF=nW0$E8Eb'0z`IMW\F)Ҧ"/SQ2{، N<0@eԙIAQnHңƤRR0"xm1-L*Y(Tm$rIlCQ;qcsdAnj[sC&mk.tX3M f ԈbIEm kѮ#|NDo:L8k!DSķJ1̿qum# sc l:ve5r~ @$'CtN*뉿ibTG_z#wXሃ^O'c2][fXڜ>w~UbC}!tԉ8|)*?xfC[| Xʭ)<ςM9k/2n;\N( 4^> =<@q*3'/. s*b3T#2`@&e;@TFR VG8mGs 6&]dbf,p @_ݴHs0fU4.AbE687M]ʍ#ne@{ۈܻ W9mlG: P;:@3AKk,H w0 f3 WK5b"qkHg5?qzIEY ~#j鬇0g*KɏĎC:EIа$(nwaVƥ8NJ{tnPNan5e1s )H &Xd)^o n3(gl(Hk"z.,v$M/(I%lʮ\AnõG&j`d9eƛMLp]eeCG14_)`o̧)D N|IR;_Gz ܍8/5]/pBEn 2qbt]{Qq}D]IN2^%|\#:Pb  J`*`&u' be5P[rL(`] {qzɷ;QD"g†g"pO,?n8k@{^ WNp=1/h08+󁕩Th^KR(혇(F(EK Evt:0tJ ] MT.~Ћ-dNz9 R}DPɑBER"yw[̝ :wkZ3'Az}Yn' $X =1H(&1bsSt)ߒ?P(u''v\}ۿvazzH !Ⱦ~.31gbi1VD2bx h+ļzdn'KJaqGX{i zG`0E{s.' ejJ(@j jn_mΝdHdJݬR"T̢q*:5V@}ʿL[ڐ!OT?*LXO1g$s"bP7r1% =b EF)rlT"̡\+I6?t1EU"HgA"d_ktP_$ҢnNX I @Ĵъw'9%b [XIfsˆ6OP.1y8hZ]͋2k2(J4=dx;*>?Mk9q{;I0XV t45(MxÏXUP>[ S/y*UtWZF xrHAv`dDn$бB8V= ?z(L{SlIoJ#rq! y9 Eh&!Ʈ`fn\k#Lˑ"p҆gD1pK ^=wf>Վ%P& .=A|2 DNG.UcɠɎևIM:W!v)Md}F,RK Rn/г3Af/b\&ٍT==QQ*HC%n'PQ`zAcʸfDف p J2kY><3/UpK own3<lc(Z@hD;8!j -|c6*iܹU&N(_e= N`~L$\edk}X(UlL(+HTm"`#(dd01(dF$d͹Hqt ~V$T: Urzr3=ty44@/i`*ɋ/VP wTu$?*L P8#Y[4,՘ɿqc*0l C0B/uQA  Y nAb]d@8c %*1NS4:Gv R 4*XL ]ɹnP\Дn P'F:J BEfUd@10 |w6uL9m~qJ ?#N"N旼9nhK} Kf*>󀼎nh!$r57IF5KR Au^^j aɒ,w(=d 5 k BQ_-(Gueb?-Dҡ 3iF* ' r#=? 6a =czEn^ %OL@!`:WC}X7ESTsu@Бp -D6`"z,,ڟ.`nh`+2^RJeLbԩ*H/'=D2UW3T!+Ii@|ZbP@,ژ9j9`pbpxz^AN.TMJ)yz s莰lyNǼ$~"2] G@: :LW/cbLvڅ۩Ȁsubs xw|8#~2}&A]cKKɴcX~@B_:G7'2P\=lˆ)^VSusEm34H?& Ijq'.q!s~ӡ" #$rw"rIӤ+\cT /n#xר?( f?) %l@LACHvLuJfV480r p*O*{#S)/Q2=qp Fkbw(hT޲`{?qNAؤPQv,Eqڝa81Dm/ǵu&yF4 9W/9*f_O BС%Ambx&YT9_bnУ=;@6ASJ?9e`h7B86,IO};\NQBP@T%?k@=ы?ϴF;Oqݑ%njU4 pk TZ@=$8kPz*F0Q F,mLX[:bd/+>( t.=V`d@W) NdJ[$BݧI  (L<'r$r#a /!~Z@ dݜh̀H0:Ȥ n96b>:9q ͸}d~(LƔ0ƁlTEPy qHPPǤK` Alґs*(9Tq] Uu'+4zi+:IrWE50]*&#_c:v-^&2cD`HG B̓aF+P['S.]ƪ;{_v eL~ȋGcJZ3^j`3;0rzJ9@Lh>z 1ؗ䊌 ŒDB^̹  t'3swYaDE20q֠ЂGf)D) }0G FL*2 4':@[ 8 .t| IXo'.-A 1;(A'SFGuBpcPI/ʽҟR|\#&280FX;6q#K7MAr̗7:U̚[ qɎ^IgH ' xLJ}a9 9_`F-O# Gcc."{AP{ۄ^!N?P&fw@cs;@~@X8Rb(ꅁ:ѷw䣜F`;N0Ra"]O~Q EI@L~418G-dՠP)]Q8| ý;$So{MH 9'PBcSQ'{mzqZ1'B}&-jCcl;Oh*IVB WjY({ISb3SEf:u,bwD̏&l{ʆsL i/) .@%-kR &?1|JQMUǝE޴brTw+q!Ë9qЙR1+:E$m6 X<|<+X T;)FW܋ )`ǤFZomxsdZɒ(K^*v%q $-Xt.S,o'UQ\Q@>k#1@[ qA&[k)V',w I8 T-dDD2w"_z1 Ѳb*:G|ʈq$ b;QFy[v;HC]LT,\BĆP:Gqp#B*+w$f/)b0S1Y؝*1qb6h0=܄$S+fM lfAIFGݓm!a3ƑPkaH^FZ'׬O$oq:S))p$9.s,:%(%,EOrQ'N &m>f31w'Re/zj`؃_ء!_ m,bukZ䂠wr{@M7*GXhnOf,ubpE@uB wEbg(uJ703,β|Y: mM u̠ QGwEJް%1S )a,|b3[A͘ q tp`M1ɉFȣ$+X ;܍8v࿜GGWEwaBdMsh\ZZ8 Ifl cQ6$TW0I) D,MOwmMb?Q[U\N@d`}fK(cĤX*/GfBf:xsd:J''PL㣬vZ2j72K"D$P!-U! {SX2yO~1,zN`S3!OhjxK) bb=ҢhIp?yR6O2v:IoA]<ej`N'CPAQF,I RK18r_1/!˜S) ( @+6@5TVePY&EIb< VixKL=D by%9J1_EFdm* G`@9sL%[9,071Q09 6|@z#&sn^CJL1@EŋUPP)sF'bѐH.X0BRXh fBL(e`t쎜l'9^!ĻG0+4 mɀnƗ״E}TnE'4UGSk-#jܦb(8L+ڿ=(C ^[)0uΑV aG6] I@1zc\ rϤP \Ÿn LGUU [4%ݬ s( MjabMT´^OY5A`Gqt!Ib&.e(wŐgH^sŸHPѣcC&7@C7^L#j#R& Ea5z$ v =#Pg]S %f5\{1:0h2{c :^q\̗S#jF/GhNJqP2Q@0Ra(;Q"nLf r#M A P(Zx\ *0tA`p&FH:X`@c,r &8Wv!K\^ ; 8`|a 6ɶ+zMǮ#0'(ـ\u[}uA`QNeޤ裎﬛# z(E18(BI"%"gbM|@B>0b&Qƈn:DSl ɩ$pNtD407VfX@GQ }ejnA:Ve;\gG0?ۀ;H(xr9w&E̅@ ,# F::{_n2`FlLE1ht^1E|0pĞ0N.n`GH 2Rm`Ǯ&2˜>c9cD1HU$'{hOS @yuM1&c59^?yi Lx0@r+"6[%, l~dbPI+OZ פw}GD}4f$y9pVI1⑓;.8`dOM,b228?osp ʣ^Ǝ0 ?9pJcH'nGNS/%Ef@:Hg&w {D^. S(aN3vǩ8LqE9bv`@Ȕ6Ys*BiFPrbMLMb 1oFv *YN.=86zJMPq BrLb * JPa:0] 76$Vب`cXB#i,mϤŒNVe(D (I' 8P@ǰa@&G08 V .QJX*4 O=Q`:KY0lvnJH`)պd~0 śE\MQH%8$ \:f:3 AfaF#1 #A0ñe01GefһD{d _E:x7Yo rWxOf{qxr~RZ&꣙YDri7&YQSbfxATRx_2:M 0r 0g2NDGʖMFVaQeW^aQ~&pq@`oHCY2"wAC`RDښ(qr'yy,Me^eIxtEۈΑY 7zM5P@D݂ : .>7)΁֛^­ln7H Ť8*zAz?%Hq:{V6"0b0`&61b_P8W`g 63A%'t866(/{ΝY!JS!%&@fi &T8/mSJ̒5 ְH?K(Yj䛡2ɓ vv5 |tzL2dɭtz!Wq֒|F'1$CU9Ӗ=%KF7pLKnr 6UibsUZ&0= \&5ysnAÝ(FQmM#95`jk6}s@\^^V=Y,H:Z71bfH 6 :I93Y0QPMj0 "\V%CbczȪ.Ѧozf)jaY1tu֐5A ΄F NF0PZMͥBI'Rjw,im6{'^i MSDN!5h2݁f`)MQ3 ei ̛t;!S Qu-TP?GC1Ba.: P=$99t:=ec9w}7a ӊg`ĩ19*tQ,»JtAOӤm"_[L i&7 TECD{[2oX #MP!H[djکNX3pIn3{:3&m w!,I|=s@?OT4./e4uZFٜst8HUzbis TM2gQ @M$JV:Hn9BNow/2\Xy,c.^]P :!C3h'G+mWf'1ENٗ_7ħCR{⇚*D)D'/?6HȺw y(4%%[pBy9fZG.QE(`bI\{zN~sjO!DQ =8[sYg4 1γ)+@ˡŀtV:$zIGtO`#3! s;~ !f0i8F6Lq:4{5[ؚU!# +]uBhJ  rMڿ9Bk'!"qYlOi{uFA5=a&5a7( 0ư43A`o05M0a*qYOxVf84&&)=:=&m\. #Qɓ.1z ɎI LwGbp5z dۙfJ ]dyJd˰'1_~jܕGH0kl !Kv9RBW铈i-0=w2#HA3*@u'ln4 =vx Q8;@Ύ:C^cuDNn1.􀍢aw^!X_q;8b؎%w2~0fb c>9N$le9c9GQ']/}+j}n68#&N]NVk,fBaz>1<{+V{aJ;9>0"rcs.Qssm1$ңS_qC4Fdg:_q ʿ?(<[qmcBPV1Qg;ʼnS9kD TrY!%^TO+jt6ϤE$q,{HMIm: bPN|t23H$=GY.شucB,X]i1*n#kGl"]/% 5 Ę{*sGC"I0 Hoԣk%} x uԙje?/;jxr7Ae*4bZ8VPW3YMb&zi0$0ʊZƫ5Zb{D$i5ip` ĖjJ&Cy(n"Aja}"nQYilD9jh KdRz^ؼvb EsEXCʺA1q(9ȶq%R@+XZw&XZ%YZe'a&}140V5DH$ BH9M9g9,U¨3 y/X{Lqj0\Pģ C:@x|sU&E^Z'U[PA$0K7]:ΧM]e:^*b`/nN%zě&Erz=IۼiLQ"s ȕTQGCGOW!,u8L+g0;^X%~r|/ͮL lf`q" 3`!2(/#Q. 92˵/NeRBrdܐnUZi-*g}s&nA94̠ƀ6r+kqJo50o]R'e̿Ū6,cEb:B zGbAq" SbWS'㐖n#y Ğ&$ ~p@82bS,d9oq2[v:|Y9x|;NWCe^s}\_Pi4" y(P"IC$LPD"&+Ȅa#yCf*FiWIjbbz1 AQ`:ucP4#陵"&#z #BP7k]+U0Qz@ LahBlöz uO_X"-V)Pu3::ImK DܧVKυ[sr|'ANGi^>NL^Dp?`b"nT6kB i*6s MU%)$/Qfu93}PDeP.̛c&5wt' Ɋ6TH.Ft1.Ta\d@oI?ژV"ݫ"o` sPS!H&9G:POC(&xzfR0g<>BliQo`GŔQ$X>RthFdZdd|u\  ޓV0<ʹB|u B-qYT`oI+NecFD=!.5TQ LAOxkVz]LޓxЗ !'8jbkX fb`15u[W1KTHظ' 0FKiR ܙc5NϬNE*1RFۨPbDp7r=&'f@͘j.$X.;s2q?!ZWIn9_Y $}"V@[^YٌH`@m B"`"&f| a*7@`j1Np!D4`{De3z :Gi[ޓAp53UHh 㑁n0c=g"yq.|^^ڳO&c9n̓*1r(O `0=i9S>J~qDWOՁ9'0ͷ'cdۍW-u rdyX)rn~xnxN7 kXcnf=rg R> :BXhup]瀚?(PB#9W&Q"~HB܇%ar >I}"߶(ПRgjy [s}%+;K-f;xo .d<~N,4"8S3 ϥ<+Oq(8;!n WQFD-pISmY2^Ip^GȚ }ӥB 2hp$|^&uz%oxՂ_YsMQyTa/x_=49biZdQ7oPWεc_2`%~zF FyaTG9ƫQmGɞw-6.Hɓf`$hʎWئA^a# 7`4.NNqĤ%!mxlL\ 1(wB*t&噭1 f-x|4.rqd8E$f3 {E&/P=؜0Q=#4.Q|'RYW]STAʧIOB#D =;\t2.¸bVLeka>&*(LOI*)ܣ3_y8mU-I",dt#y <}hUu[p),cg`3F%C[j؄Cuг3Z5 I5DܜOAQNRT_ۨ-)ڸS QOrd])SsRIt\{8Ejbzեؗצ![n2g#E+^.žS,g,:Sp'2f&N.%O 6[YMPp?y(5+7o賍9mwX̽b%{d+^e~ D5/ſq(Ωus85Cj̋SC2 Ng@D6NUt11a٥8"ƍܹB-H0rk? 96>qZ6f@2K $̨$Q6ѩVOHNJxbݍ/fP  {J~0bDyaH%IdL",O+.xsVE ^>nv8zIsLӝ,Lw;V*7W?lSXfq~Emf+s>rFbr"9`.? u3G;ZO!Re@y(uO?~j}k>I}g<::|1exg{I9x%'( ƥob/ ϡtN)c_b' 3OEriW0MA|>X?rh _9 g<>f>w*=zNnzKZn88iA#'IRXtt@u3q7,9hT~ȓ7D8 6T)WFmSڦ0b,S&h@^@?h"ڿdc%Ku}Ru8斁eZ{YgKY. ɍhL EbjX3q/] 7 xvDS\ OX@U:V# 8]I'hdВGIYqM9F*۽~yt_p8zS~hPQ_)\dj|/RZa^YݯH×wRܰVQ )AcӼ9R3/'TӤ,.GLX ˑ Aa;6fĻԒ+6I¡a[bX2%ۊqɊ9yQ&j{eB`@T^5Gu`skb||3; F%@׼1Vwp~4,rO~$ߤ/w>T ֽӨE.'mԻz_$0OPgbMԃ6taE9ʔQiz@?Kz i,ϑ̻?(I# #}4lԙ7ۜ€{+}YD9 JRM:GF@?v!Ko$;E+?9$%GADHH9jw+zM`Ma3V3&N 2&8j̈` 9\AzX*23Cf`51O7f+y,}jA&za9 {O!C93#o+rd2jĚ:-2paCː6,"/1t΢M\z^ 8Y98cȎ-taG3R:1d+mr#3y|u"N5 ]~VVUӐSWw vd{q\4:INAT}'Ke7+?Kg1  '+uI:t*YٱOhN9ϗܨ ܏ _#jbӟiY]׿IR8|?o\ %,zGA^q\?jdvmL6z^!>wsWG޸'lLO/=N0)^..nRU p3- 3QV͑~߄y|~@Ng~N%:KyNћ^aLjGNϵyc__C=*"c}`_ۻ)s9׍aDtN5H+Yѓ|Ȟ㹏 ҾSO+;yj xyw\ud,*i8y9as0fV_'5RYny3T%lUH?I~[*W@i2$󇐅ɆIOS>`ҝxp6>1 p#]O9 ?g@woڶ!Q﹮{A9oY]fnns)mZ@J3dO WO!rzJkEIkk%ٻ*1uJshf#k%Ma<,MKBys۽@|Xta#f7oڃtp' e(8cBsN_3XQX#j"#9ǐěbCb"9qwdUwI2S .yGjKb9#)LO'*$rQ,Pfb/&sK}:_ϼ*xt o(RY'97N!wtVH;SJ;|rg*GxH伣nod/< j7j`X7Ϥ>[S3'ַDiVg'ܭWdVzLg^%:O,/$jź7GܹqCx+gc𳦧Wx7])8qf*ynsBO_zoxAKbx3y }Q9ǷI,Sq__Aqj<@\5R[}`3:ύk\dagޒ(m4e J WN<~wG9F e, {P7YT.# Q$7xSxQ6kۑGmw%MKWj[oX|nY/u=jM"c1A}.WfSS= o)z#lS'#)pcx^;dYdݿfofY7)YeM*_ti:zGҦJzԏi i(ij;>sM"Wwg7wmfF\80M5:SM$foYEvoYbabP?h za?sM"ooo[iztؽ9ݰGWXz'N1iNN~tǷI⣏^<;6u&>D3M3UigIPogGvM5bM$Z ߕfuVM:yg%߶74Ӎzcbeamer/examples/a-lecture/beamerexample-lecture-pic5.jpg0000644000175000017500000013756312050430506023202 0ustar mohuramohuraJFIFddDucky Adobed''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD"!1AQ"aq2BR#br3C$S4cD ?ZTnumFFFFFFFFFFFFFFFN(7ah??aF _ ⭶O|b+vߨ{+AFrA>MpttjlgV4h4h4h4h4hT$jڨ:ѣFѣFѣFѣFѣFѣFѣFѣFѣFѣFѣFѨg{ߴ"~[4ך;\T35f?W~{u@YnNq<}'61ۨ3iZ]y#?|ґn`ذg'~rqr1r:19 US˫YelUYfZ]Dt?=@\cfyz&ծ@'&G+p(i}?=O]X H;K/tc鋃fDɗA:}fV֩0klnˍ=h9썑[a˞{0W>1puJTԴd}~'}m݊M`~z/뿨-NI̋vأ{lgv?ticlNU hܒg}T203*m3Ho_JfO5N5a8G05v)ƎVަV!|`c~?U]U'Oz!}X-]A@9:xA' WLP{F #,ph>\?_80x0?xs@hѣ@hѣ@hѣAsѣ@hѣ@hѣ@hѣ@hѣ@hѣ@hѣ@hѣ@hѣ@hL+vF qoӠEA,uS=2ZF\qcTo?}ˋ~{=h-Px =Kc>rn ~XlOpߚ䬜csLo V(1_A;8U-a{e&7-n3%E7>5 .B8X1X'q: v f+BI7& m^!%PWp8A1cYlsi$b,tF)|tN۴*k*R.? 4NkC b'àhѣA44F@hѣ@hѣ@hѣ@hjt44A1S=Nqї/y>Cʘ7$דS؀ѾG~Z=|w V􏆴r'\H $MMr'ug^)<qUbLupנǕJCr*T1Y$mQCècs;A^[L,X0r&"HbynT5cbak>\xTeݙlPP$tOm0IAEw XBr,mӶlxqhn`V<0"`vXSӱR{Q0 .)2C+LoMYPѤݢ>\[ދi0Ȟ-,+--l-Qp9P[4: Ǜ_-n YFF'ͶFHƘdv6lY"zaAs 1ƅ0Aq4xYL$"9nZ.팦PCt "LϘ9D9 fV κ&t۪9*ldG=צ849qeksG#OLɕkMF_Lf\Xqe"@ύȶcL,Y܋kqT*ËPn6]/U$to"8rҲ˜H(%D0 COAl÷ܐ֒PƾT5~[8d9K-5'ƚ{fv_bi< P{v f6uww9R 9Lξ,ڑ0 1.7ƨׄX=EX!b/,R|{ THU2K)2 6t~ٯFUQ2?-y!fO=G{ X>֋һ^K].S j{4vQa:0f]EZ*:"9dˈ&FdX`- #-ݿ`\xxԯm0ʭ>zbܝ˃/jr#ȏqjLC [dj2.hx`<5gÛW-D Ӡ6\['JH9΁OfcҍLޞ>laNJ#~#&vCɍi4'F*ۓI;mcA8-K2쳹]. JpcWrb\7I)<.njoqIu*)_=2dc"p2NjE'ݶzd Blg4G,'lMGPw9[BډP!~dB' Lsڪid0>I0C-d8ɍ`-[f=LbL|;spZHi?{e-5HHYnjqdHUX'hc[!_iuũMš }9뤓*n嬌1fN2gUÅ_@Pv4E{j*Yb}PǓd+-Y X! NӠ}C3&AڷFtP#"3So:U@zn K2 2}IHhۆqk )#cSڌ##auH(Y[I)Wq X*0 hcZ&dNq\I|kZuSƺ@ <;Ӗ=v2ja$|1wC#4R4ᠳwF۲#O o;0FJj NѣFѣF5:NѣFѣFѣFѣH}&͔¨q1S ~P/Z`T|Yir$@qXqX:-;XL’)N"t5f2ŕq'1F<,{O{~#qv@(lcjEDq$i\.d;zY1W0q1a{Lk)bM&kegfϏi5 7VkC%VR<mn?:岺b^mINt2{rgȲ >Q7ƙ=2T_iwߌxiTLA#mm]ˀaENW!bZަlFW Թb M*w1iKP nz3Mm|Õ1dc@Pb+ݡ\6D1>XƵA/tq`\}:I#x-[χA2>2fcq'~cY؟,-['v׵2ȋU 6t6:bH#hv,GfȀ iګ<<&u~r%Xki;> pA3rwbîB-cm ENm_ hŇ6ikq2%cfQLcHk*G8R m4'@g &ͳ ZAꮬڤ@JboyӛTfMY@nǎJ+'NB[1!g11®S/8P0Rq2;SKsevǍ{ɹ 'ҽwAhZR\lnamcx}:,(AO< jb&ST#̙blib*L5 inds:?v.qԵil$7{RbDŽTmS -z -)֦Z`*ZʶVo1 ]ԫڙ{`)IfƍLEfشPgKۄvfEa [NRa@ˌ>t&=<4ȨOsqFb*'~Z!N59Vi>ZHq*ehjOeԸݔ@qZ|wF|](}=Au|χ,#<|5ֳ0.2nSӽc}s; 7Ў}SĪip12lZFF444E)w.L׃kY @1Yg?Z_3UVxj*iܝGkIcFaі W͔.8(*Ài=&W\ "[i $WdtbH Λ?wm ӷ{ё/rl^Su;@ίÉ翧9B\+]{THf4Z;g6D `O÷@4-t4ci# ~ӭȬg$*nvP˞~NkaISdS?7~IqC0`[M$O 7s r.4eg܌8IJhd i;08MiM\BUFkԆSH^lT"$FٗpS|l1^vi'ޣ# PUU dW^!8q 0OM9օ*0v ,9yљWTM0"N銙WW OlJo&6Usga(kvۑV2f6.".RSl㫿qB(P~\Xoe؆+ ̱G|~DLpHe [J\؛[ 6$VI'׹BT?6C,Ah8Y1Kf$, FSkGiݣa[a$q{bRf+xt=r9746qqGnW h˨Pb]m!xiϓ I-1}iIv͗!"1-VX#†t pTJ 惧q;Ŋ0s+,<QLwWgc4`5?V4j#OZL(NEHU7 O gxndkTI۝9enj U- N2x^laTT0Zl `fH#`ŹqLkSwi]E=/vhxNھfˋ*qʅ 6TUw0㽲Ve`R+}{$CK2wr4cL$X0%H-­P 媎ߵB%3"VMT \]T7lpe>We89Zt!@nS50<@+{pvX֬+Hdf}Ɓ,2L,*X#u v S ~7Owo Uȣ.&|9zLq7;WΓrːcV-`@$yj'*C!Y 'dƹ!ehp7mgSb%UFvBdADӍ4["+l FW~6KkR0HޚselZ]Z^3;ŕM-7 qg.K+IAeoplUm-0wPV\O3'}W) 3ǎ{{yuѣ@hѣ@hѣ@hѣ@jcR` j~375T칳"W"垦<9Gw=pO >՛E z^TӰC\ 1)ƜxJwq`rdw {SZЂé\iى0Ę{|L\ 0aW7,.dpIx5A#w(6[7EHᶪoHuG˄bHoE Lu 748͙Ю/y}ܫt7)Ʊw*&_oo$Vq:4Otm1GcOmBqb" 3@n3Y)+aӯp8rB<#t_GUV !ۑv]'6.C4t@ܽm|T`2dU>=..Z(w ĘUv,n@TLE|;/K3h*- 92^.I3b,q`̅2-ʀOٽ.L5_ 3?.dIi"q'x4^uSF^z.5$uiTG&fBX]N{D\q63A#Ҥ~lû37S=?ʬDi%G91Ȧ꘬9|scdK3if9lRю@? b-2,=Af-f ;v~'Qb\kU:? _9VIeDeS>~;]f0`3Ln"4S 1 KE|@&G hNKeNū:|Y0!rP^jM.Uy1>أ2,#t5vkhɄ⌭ﵧLڪaVlJaI3bGuv<iON|ōR}rfwt 0BA`;I##m]L?NF%NA+I]^SȁHDۨAZ7Xr/sf\A6 '+U靻w"2jI;. -H[}UN#}V\ćΊUX~cuǧA^rX#2[d vp[Z? ;؏q j{L):seU} :WS91ڮ2kH 7\ۑoRQCb#[bq^LV ZPɁ:~M؛ 3Rm0u&@[_uEj"O՟DPN&xǀ+'l';zbnr M"ӺHIl29E-#G 6ic4sJHZ/cc#.`@#rv)+-^)]oԙ'|b‰19Tw.$7ĕEk8]& l)+Ewyz`S7o2iχՕ2e')L |8s22p£j|t 8QŐ.0@幧f<ޗ`(cn^ĺv*DoMy d|ؽdQ4 >0Ijۻk9 " rS[0wBr NApD "Td,Ȩ b@DWARƙL8tX{Lw\`1>v;{Mm&WXdFvg<.gc#r+vr9*4P>F,.&j"`8NkgqWERL#*S$ܽ-E oYqv}<^In.c=7eھYaҠcJgwbL찶zc˙ RS]qJvǔLp0œSި%j+> ]eD3$T >1^ـBr)( pQ W vp{R&xᾃCر|Z`5f ~:621 m2FFFjthy\~ϩZM}3_2s x_ӅFLyIږ۸jTSP21#67}SHT?nq4$bdWWp:d)o0M6& |kZbP| 8;9,dpQYԍk  M:#ps6{YX~  pAT0r/̀ilX{x@K"T 'i(ȼp% p=<9DxP%d x"֓oIaKI5l9UdP̪Eu m.LԕlEX VIOIK+ csh?Rh.NE3Tc:::tWV`T ʂ 4n tRri[E8zgo3!~utT3`{)hlFE5"@iWګ4Cڭ47ctn@1>B*7S I5xeƤlT@y\#wk S >gȌX\bGL"( I);tyŅ2㺷Dw5LM $jSXdL긘Aj<8Iڢ6lضdڍG2* 4jµTH_yf ˶^gwq)Ki -FEW4>|coqL#cӈg9! ( HZKŏ*!t@ T~=M-,m=f+![#c4m2<:hN ['kPF7D|Dv!PqnǸNٖamb4cC\9Ł -kcǎ&91YW(-;iaiM  2ӧqP d.[f6?M̹јc!Diz]wrIB=BG"H@qeV@n%r_ Ջm2CI< ,=$|=SA@ΝkIai5e9JeQ"m xR4ɝeX@HS-S2~L)(?Zs r.C)EKȝҡvƅQlL-"f PfrX6Knj"Lxe4'PبP KzdL4 }W`xD 0O&v;&&T PYFrp#VccdFڞDp-d<#N )92")]+Y+{KK-H6j˔c&L( 8Z|~{ 8 D۽O-eUd-^)|?ڷ[1HA!a!+?N8)Tx*I"wZO-a0>qqPSAjupK2>ӳ&FeXoXtPKTQ\HW6OJTjNcTwXlnol"pC άiL*fCl<+6@q,Nʫt%е)8elˋ(c M$<#(K{!2]"jL5PW&1IGYpv/< imt2Ư`s/(ߊmfd~ٱdoȯ75$n[ß*l9c,6c):e|hXgG.kH٠3er1PEDW;a#Kiϩ@SM8f(m\TOՒ_2cv2+kw9fʖI$1SÝ[U3޳YW>%$t O|[By xخt\%˱N@CYȧAn3- dx$dL,rn^c~1wanMD v:.@ߖnU 5To[`|9!ٰVXX x285$d.C6(j<‰xۖ夓 >H\n 9[S4#jodz6< ^5}08ۯiwGfb~ݶ1**2AkL 2gG],LjFNN4ֻvYrj |ߴa nw @^:fG-򘈃oþW5l˗uc ҷ3۹׎gFk%-H8j?`˪cr0c:L0,I*fwZGA"n\c6Nɉs-|3<<c V dp1!K%wwA]d>LwžKC13܈99]e`@ ~m9kvˈۚ#"!q4i9;%sdJo_P.pJ" W 2Ѯ;<6)!͕XP.Pk;`>t49WbͥV Tm^<o[U.:N,!a=_)Z_GPaY}V>9;u*X`$S6-8w%EI`1 C0A >ܝ4vˇ-sM <p;kۖrY4ʑ" 5ꦂ;rX MYi>ZbRU[(K$ n8'm%N`PzQZ VATZQ@g`M7AAmk3&iN&gX6P1Ɇ`TWMv\hU>buYV?x34􆁿 ;|.1u]E8b<}Ezm*Aj2܌=9 s0hx0c]bkExlOh*da@58j"YX @ r"N y\eH69V|te}! Q`z3]ι.͌UʰRL ׎[0Bd XVS]y)8&2%dmzN]ic1!L.ڦ9ӹ1A>\".Lem j ˄ݔ9f17XLXFW^=0x֛5V͋vÝ(mh-c7 qvXA&|LTuLq+1Zt5';;4wV-f1ګ1>S~,-L~Lw; :dM, i)1;.!lIdIPb}GSܜm``xPN9p Yd: \̅ʆSwI#,νK@;h5"@J(=BˋV{f$I FpdAe;a˖{E\r:HDyAh_9T0?o-cOiv!uq"kau+U[@itQ1QK<#F4h4hxG 8?vmjfVh 1Wt?~]|X.|vVjhrVLÎ?rp%!EH&i窜vdKʫrē5L` h8qW=/9FVQ: @G|enխc In^6 {|$4.K3ԍnjzp&.QĚm ;1la&e$?1jC'{:Rt\ʏC"=#6VQdoHs:5Ǎs1hc[82v1Y2{2;eoDOMs39wPzJAQ2ljV@*L^ xZc {` xDy5<' Bp' SoޥzΓ|#Q&H^ȎY\fJpRLy4f@n >J &2: ;]FݦLV*C.)Uxv}"w6x< \B*1K^a2UYG*@'5wbr`2*M8q3w)̙q2ŵRLϘ'fʚ 1-mW? OT^.4P17%3OIrN lA2LP,eI6 2w76U` q7YZyyN E pn$f[U”7|ZtLj,~]ѮgK6~ :4h4h|9PEOu;6 sUӺ"yܨqiYv= (zn| ǓdN¼&AlQj>2w:ocdR'퐽3T?a+&Q5 .K'iZl<A8J7"3 %)$Z/UPlw[֫0Igj=nEx@œ@8!I-KYZ8!ʄm29J'UKn7@hs1.N+c!!TO#2&L&Tj7JgdžvӀe*|ElLLURbNƇkSψ"|YR-UZq%+)5ç6*9$H559_Vnj.0 G4ɚj(+5T\C0u^W8֣290{.1+[qDOm5{Xp,RX5 WAj)!'tbc*(w"ySkmrfs3mL,kn4Ӎ N<v/JF5{Qp@]Gx+b` PMʓM?.ZndJ7>c@8L/)Y" PxjDs;ւ-ս"nA+Β2w4'i*w)>gm0R:& [rqq aYKKJ-FLٰ.e`( LJvIw@P8 8[֬MO@[tqQQ6n*.%7HemnzS]CA-Z˕U]_7j. V$ʛ} 9~cS13V.ccHPONqpn̬RV.Rklj;h ɒUKƲip: w#p#+;ZH7;SյyxiMˍɉL"dՙ KZE917Tje(L}`qe_L?NߧaF@f"{IٕUŵ(qteGƘ.@0"sV!f$;1 TTٖ][JZ n2c!B0C(G#B _ B2Za4U3Uo3ºo|q#djŭHÇb\l2+&?a@μװھZQ(bq 2`5ӲeLs"J( sJ=g )"9O|S1c ֡R+x^LNPn^$AAUYrdIQ"ey&}d"4uinp9r̬볩kAMq񌀲~"zVH҃* ܭ"D>Ws@r$GNUr\p8Ȑ㰥wԃۨ ઽzkV2;cPnPǘ۠CHAZ}^g(ÝY<58!8XH8:i-J'J]̎^Z>oDG j~oA}4h 4h>uqڻJ)+@A4LB&i8~vd]t8aVȬbR!mE#@"3r>23@zX4#Ws>$AT oXP 򦀝"8 mWږ a*1)to<$,3Lʳg6ңȒv5T8=5}|AX1V7\bfuVkE'aωgBbz*`t˒S6U -_=3 V 8 }1d *@-GPX\IlleBwAt)Lm_I)V&D bu8ѢcT`eO_ݪ[CGLs_Gn !81$^BgV/B1Ҵ@|#Yr4'K *?WVfBm/YcXwt] 9p\j&h)4Lr|@ZlV%2Z~l9rCJ7!NgEH*z][z)Q|hZCPʋ_8f'䆹 dC[" ݷq]@rUVФ7p^iP==3`Vo6[y8S6U!ʐQ%TSQz+3bḑk|jVp[ZUA3;6FE| aK*fT-cqȍ2ɓj2!Pʨ-ph&6'Yeǘ+ )*xRVtȌQ")/iF<΂خEe)0RKvSCpjdݴ(dȣXY>|Uɔ86>1c dcBs~B_-Vf#Δ|}e“@8~ZȣgHDHnSjXvVl^="d1FIOm q NO_ݻ)OM/WG9qVk 'Q< M>[iF1R "AhA>i8h${[Rݾ4ѣFѣH;0|qő ۤcoZUi+me6l͟X|Οܦ5\ǩ(ZG=%r,@'h#o]Iʖ ;M )]fL2oو$F7Q= HS@/runLCxR-jʑP$%'B@j2?cIe BQrnuP[ĥA* Eb$^wprbˋGp(yHiJ;{"00*-'YFIu++Q2>{WݱʊX I [D ~ F &}3kDMZ?@ IĪ iLLWF\+>L_)SA#yK{}ܬMD3o=FG".8;ӱ) : ¢)\gw7I弁:~RȨbc@+d+DQ=:\Cc0X0=D5.+c <`n>qŌQCK.#cMdpT-oPܙ|u|X ۱l`J]] FAUĴwG;tf| T%@?uN(T%㾤l+v6ʠG5-v< K@XHO'i4:Yqř~mU9} iy&-ZJ|_-POQ/G%QW6ʜ׹8raV}`(H@v~` ĐT(@׍ғd@2RrZ ڧfTB\LMk&ĊqSc:^<vop綃80ٜ+ܕIoن4eŕђ  &O4ۋEḰ܎M)u=dM)1.: y9LbbEi!,VǗVT!hWcjū +Cp>duK Daɇ ' d}v\qc ę;l+5PCj^CuUn $GqWKJ9y\ S`:\En)jlKuCI8:ξuq4)=_d3(3/q[*SOume1?=F$Ҏ [h.U3.{҅by&LV BVsXIs'vW%;X*qnwML4iX߆5NFם}`Skk{50/ shHzwb\6Kܽ PC,V@PF[!8TyVXF%ٮƻV7q{+PQT|N{ TF y󑼂41fa\ |g9!)'A;Sgqb09=Wgn͇/[F<׉nj&2b\GNHZ )>yُn=f: V :cʬ'tOSS7qԮk Om.Kc /GU>:8KIrȬT+TNѠ҃3b\q'` \{=\F>G1 sѱ˕Um;uP닷tk*F0B\jG@k5S^<8kr%ͅDkVꪁp#GkP@CĶ0FۗvnTdž,سWc VyfctI AYe25A0׀#T#>\i>?o eW fY-H{M"YAY QZ҄= Į.Pl:WpD;m i,PXUCVŊƐtέ bUgs$\pۦgK˛!2d헚?MZFxia2Wko좥RM5^n2)`*#qDLDŽ51pg" S"=M&-Q2`?2 һGJ +φ;=sc,<:4qOvǷ >;oXl8B+yUϑ0<5Vǖ Ղ0 12"gPGWJhVd2=^ <ɍS _MgMC\3u·IjeJ 8j2zyL(tS;N<."m.T!H'}fز"::cCR܌*s; &e +,QM kg2*H,X)g2&lG..H|FdKX$$)Kvhg&~W}ѣ@kz̍{]xoLnI>g4eA3$ܪ~Bz_ kO5ѳA>IȤ-O[r%\Lhi&tvNb/VV5"Vn[}$-$q']KRRuwr~HOp.$75W1De< I|t@ṗ&3tp3m[˗!Elf2+{HMx3cWqjo̎^נ BV"6h4snjI[ KVcmKXd\Z(p-P4kSc\,fK1|yh *4%:c[igįҸdkJlDU5fOf[vx+ pjzWAP>&uIzUzc'}E?k&iH`+Q=r(ElAP4  ك*gm֚xn6NNj*Uii>REъH %zPPGFd sj4jǓ% {W&>IR&Lrœ,ջ 5$\BC z3]i*'gPRwWº6!e} H mNK^ L6sbLqeBJVafF)|9H,*ŚGJ1Aɝխ[cω\rz 1RxGq({,b3a2O@zEgUߌY!Ϫ8nt[l`X'5=[}[$dՖ/ky h]vf,1t|j@kwM\uW\ر䑍;\G+\.l.10[D7Lr5^0|#ywTɄT5>"/- +wAˊ=4j[X0D7.(Jd 9RiIErɩ]8aݝR BS/{lxK+<@j6ʞ4:= M$r 7+&R:H`4ԕL1U?IyQVr=O1' ). S J }aUjf>:Re\XbuXJϨ@2F{>8i7|LӖElo,~`=޼hJXS1N;jqqrb.?MF:v%P: Z#V0LP־CeŌZq` `P(OzL={9gdRiD:hY.U%`DB-zM[!.ն"yoߌ674cjz|HzBwHD ykl&O ѥF^4sӔdAT_~a3)SnqbIDI0h4Ac V r&A7+X@,d м74 QӁaQZA<̏ߠӑh75$R&b>Qqd;`||]NHUf*]z;д#`di' /ҳu6?p#㳣[y4 .H$]myDSjm%gxw@UN פcˌXK@ ǘ.kkչP*~"UIEOqh(qfh}? M6$2c/HʚoRتD@STL 0,[MMόPR5ǒ}QO#ngT=Ē |?~b^;Z1{z@k$0f7)dž82.l eCώq;+O q4N<!Ǹ!KHa'81CaVERYCuN`9!2ciP3x~:^ɏ{dy)<3羫W @ڹO`&IxiY! d92Sp2?1o IkѠ٣FvEsJ :^f*F|R lAݓm6EPL@~vR0cym$g|*i>?-e$Uvn{EOqiPIeuuNi4ȅhwH9|.J6]VV 2}'P} LO.&ʻjJW#ԃHOtR;V*MyZ`yĝ3aCЭ"˫'P fW}|qܗ-A8F?3rW62~|8C%ISR.mч|kر5wDYkefWyPWMA61"j֧Nl;B 9t f qJ1DBfyoLtq͉:MIUՔ(_Hc_2z qP3xfcV>9G_U17czb*ExzBv0 ,`C?㮫+rC5J1nQ]4pPd-i|\>>md<س\ TD^5 >=#R]K[{ϛ.<SJ^nP#nNr`Pj- 4ǧ7K`U]YY8RQ'q8zrO -n4bsAF d\x#x̫,rߘ5r;$}EWPד=Xvᇷ7x #7) pm[aF2ugĘE~f@4O)s_ɍڿAV\=r@J<|)4;3 kʲ(l`;jN&H#׆L BbLjdž&0X_1A_ \0z韟:IjjyvWӸԑnz9jq o5)]!Os) [=pZ2#LR@A(zu DKV&Fv S 8ֺ9 }MZ u5Sa6َ*&1J<n!sĈ<)3 ! MelP)N'jpkf`O: 91rZRl@xV1D$d-iV<4"0kUV_Yս+<Eŕ>į&m]}W8\`(Tt9ԮmB􎌥vFcœ Ez\0&wk0Ld;%<4r˳JPVln;M-,"NK7V܎~-[e{ 3#NJ At;UJ60Lt<9|5p(ԅ$扂x;3 Zz) WqԏpEԣ,O}NR-:9L4׉t8V剛][##~_@Z@fPc#)⢴Jx鉏M͸ i4].sKkqǵ&K2Cq铇<4&J kBXVI<*6X2cqj:V9O*j) -7L)aNlifXجD7w܆6ڂR2PEO}? D]IUXVGSW2:spffvѨD44W 6LDkۑ!L\ʧݠxw8 u\@y*Y6:phTNf,N0+WmyW>z N?_Uвwj"Q=F/j0vh 4] w:wAU[[H`m&$H%՛&3:Mv" Ðܾ`~υu.rcVq>زZ›ʹ4&!?2H\@ak y^z d.z%2GUA-X5 p&,KGSÞX[VZPt/ώc)`3q4M`rտ'*[Uڅd;5Q;v2g[J6D` Ɇ*o4g*rYꙩjt795V}>5G(*)ΣT~VCkls]Y]ZI"c@'+2ba$!d^sCB7#H~MBIpj2b j=S2 <<)ARYR1)EH㞗$U m8?:UlH!eOi u̧@u4MxEgA#ԘIngZ6"Ih>ڻ2bW T"|)^FT Ie~'ri%2Sɗx&>4Omv T[hkNrR$R`kZP\VWe3]e84 Duf?U9 6Vnoᫌ+@?S#qR67IP  L<|/K֨77ZqGȎrҽXmtG#Zi}XlbA۩VZ@ERDg$Wpct"I5PK(92L]52.98bYINѦu`+P%"S} 2y2YMr-K` ++ouG԰$l_lG+;ȥ9'/P!Mӈ>;Ӑ56Z]rMWI.`b$3)M##9dJ: Mn "|oRS#7\fA@Zm@q mZ7<"GXDu0Y5@W!4RgwR@5=%I;yp:6(r igLulW(Zͪ~3%ſ jd{|bߎ4 י?LcAzmy\:Y݊16ە1˟j\du$[ik4Bc-+dS$O´~ ޛ1(zV SKAb2:Q6ґWҁMq4@XJ1֟p4C1:30fTubSEXh`^R9LJ:_%4ǥkH3Q` yVs" Y^̌ˆ9reu98 DۗZ3wn([2VF^D(ӍvP ՄqZ[pfnСc5dkDZKZT&\_1{z%>Q$r. Ŏ@fDx^3q妪0Ql^Z ?Sd¸HY8qM\IՄɁlkqvq %IÌdžrVlXlͻA4·61?O>W#>Z\-7}S}9 cu sz~=Crt=p8F-Yf2TԟlY`V"ÆDM^Ld?J'Ϝ `cCQuWb#a3D!1L2۔-^FΣ(fsoXZsm.(2OӶg&1PsC{ؖԴs$=& =K=7ɓ+g>11 zx|K94`T rf|h%Ba=+$Oird>M@CCϨ`yj#"(e[x]M- ڙpgh1C| Œj9kuMѬ<ִɈRx ?6r#P>mA>V?+oF/9o^^?Wv r(B;rZ}vdPB:Ca#E'Wp:_ϓvVȗ\ ۀfaz{۱ُ٠b^}1G$E t0wPt$݄)A ҳ`ĭ6D_eWsP!$NU:m[("vg@VT*Yտ£W @Xq8TFPݴk u.6*>^#eV׀@]5)_:]ϓ&93c1q"xҫZN*Y_3U@AڿqR鑡YoY$Ay`԰y@`~t/¢H dd3N$DLAmքGR{@& !f 9d\C5'nu5:cWV"Z`qfjĒG[&P)O5nV1 fIEp$ڧmjQHh.'$6f;:MB8 eLSc5B]nnTSa!lVI4N<, IkDNi1cEĦ@%μZT3k> 7YS0]"BӎD.~odVՀdFI>t0yGlY$\!fL31=1omnvgl}8k_=~%PpXl+`X~nq51bECc4n:1c{_A&Yx2fi_}GIJcSi5jv3>^$IŤs2uA6b ^=@k$Ȥ*I\砌ϖK ӌoFVL]. hl$ GtAګF+'mjHـ|-V7i4ܥ ``et V6wߕ5ar8L#y#g\}6+:db I\I% DM؛ݿT\I@~7B;#֥<Aƣ}0Yhhih2Z>? ڕ&p SaG!pKo@bw0@4 q˟|4 ۻB"O䉀)Y6TÈM|"Bb.CP}LWD4Ên#3^Z B0_v Jܲc2bTJB M8WX^&dL>hvQz0!mMn 8el,ac I%I]4z 嵢kW6Hh[Llf֚D8f?>1D -8̲ȸ+l5} *m2+O X֢^HGjF}ݍɲ+~3gH4]5v&aÆv!@?v(24iᤜx Hpޚo8'4ʸ> `m3"o)TEŧݙ i $A&?_j㪳e?F5]A c;߬w%G p:<߬g0̱׾3_aq Mŏ=_?"u@hѣ@k{X m?L ;kDQ4I؈tbÖR1m;*o*xc,:L}RB&Fe~I6 Ek Y.ZIbW$IjJB$5v7Mh4Ƞ{Ed jJd)U9+ʜle-mrh12ˈ Tͼr91U+E^H9ԼF# ()9qh cZW(<8#)-Z:aO2n&uR݌@P"xr+j<2f҂ M+ĞP6S@sG* wǕTH!}Q4 NcNL(.\dPfHٹӗJZ7 {mԭ`7' VX`K1xr)f9a\]P5@QMJeJB's'ABΠ#=pđ"`D%tl5Ƭ &M+hiCX+LP2āi2FZV[xL: %=q* %1#Td׺L(TD /:~GUBX=41‘nL?PpFO3 Wb`)oл.ea¶O3_۾FF lɏ-|Ai_OψffO_90e>+hxmtuq/GK/}Q5@ɛU2xeUZ--Zsξ@1j)i h-5gKR,#Ilˎˌ ntX0d& r5?-1K*^TPN u =4 K% e%NM~ 3j7cV@H`o pQZAAUn* RS4A [`=3~>>ZINߨtnVTEk7m3:cĦm!} S_+d@|ہԀIVw1putPi 9Hf9Q@wk$m] 4dSpqDi 6oC cZTge<șÎgɖ@l7 BBX5SRLJq2asn×ߨ CI.""|5e'*JʼM`FDz>cĝ\fjDWvX HL&&֫Zy Z=d5LjE)M-TQ V#<چۣ B-nai nJj(`bpquમRLzJT5++hv'>tօs3_N3eN+QkcFeguZڻxgaJ9-Vx"Jս5j3@q+@t=V/Lq DmoHjSWJA U |xOqg{y1Lk*6"Lrb쨌&幧߭n-zQ y4Z2Td5]"1NTI M@uDֱ;ibu("FR|TSCBZСHIOC N6aX: B!ny-KcAU`Dq#2*A=9AS}p:^޸ȬhGQT-h* <=+/jX*1n&vbFZKbxAq 0v$3WLbUϭ'bb3zl<]uFFFx okkf{"-X xt2{h<|:Ob͑Ep+ǀV a;@" ƃSEqsϔj2fKW1[R(~^PVAA">inG?A +KU.|:nQHxZ a r׿F\H;Na{gNr#8:i"'>ZW@]%_!bADNA͌c(V^ˬYz68g;$V[`0$ޝŝ2:K\FcU{ȵL%i3uLwRKenZFF#c23b1sAd0}5:uH9.ba$P $d*$;GM) k}-r6M¦B|h)o J> 6VWɍЄ~PhBcےD _TF~m5*Y!ʛ?3rI."d5#A F2O37HU…TwJ>RHbR: f-eJòh-I592qeM]#@gm &1j!cq8bs+N.Ȃ ԩ? yiJ [y-27 0ϐ/s)d$P(y4[bی?xnrHU ojp,KQHe8kZzx|4,ߨbo a^i>GX;7)#_aGu)n3?]e>m;N&Twvu>ljBNNQ4h4h4hyOԿ+XMJ?w`TO_TLS"Sa#AS׼{\&lsu{tRs9hԅ&*A cEV ԩ#bGS3$Y_#Vh=pE".! }G][#1"4w v3l$ùv9p4_:aBh@AѠ4hѠ4h Dq4h4h4h4hN,Y_|([Kn_뫣A~A 5c\c;[Z?vKN9\mjf'ktDd uxݙox>l?Q=e:Ek<AvaK? }ӯj#A?n}gDh>IjTHw4', @E l]F| u[1T(o|G1`7b81hf$?~'~oI؆O9M]ll(Tph>ZY"3M}@ّi?5o~ >S.B5opV寡?>W֮ӳTK|t=I{=-bתlOE[ (_=z]FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFbeamer/examples/a-lecture/beamerexample-lecture-print-version.tex0000644000175000017500000000057412050430506025170 0ustar mohuramohura% Copyright 2007 by Till Tantau % % This file may be distributed and/or modified % % 1. under the LaTeX Project Public License and/or % 2. under the GNU Public License. % % See the file doc/licenses/LICENSE for more details. \documentclass[german,a4paper,9pt]{extarticle} \usepackage{beamerarticle} \input{beamerexample-lecture-style.tex} \input{beamerexample-lecture-body.tex} beamer/examples/Makefile0000644000175000017500000000056212050430630015133 0ustar mohuramohuraexamples = \ a-conference-talk/beamerexample-conference-talk \ a-lecture/beamerexample-lecture-beamer-version \ a-lecture/beamerexample-lecture-print-version all: $(examples:%=%.pdf) %.pdf: %.tex pdflatex $(@:%.pdf=%.tex) pdflatex $(@:%.pdf=%.tex) rm -f *.aux *.log *.nav *.out *.snm *.toc *.vrb clean: rm -f *.aux *.log *.nav *.pdf *.out *.snm *.toc *.vrb beamer/examples/beamerexample-lecture-print-version.pdf0000644000175000017500000117123212050430654023265 0ustar mohuramohura%PDF-1.5 % 74 0 obj << /Length 1474 /Filter /FlateDecode >> stream xYKs6W(Dz4M$΁ E|ĉ}@4e8H]|a: ><~.TRRh8EF1UH2XF&%iejB/A!V{|sdQ4ьjrr~ɫiJe]fU҃{4k!i&P<1S'+'Η4in4uUFBZJ6ΈSаYYIYZȥ)ßS';793Wلp:ٯvk}|ubE5VM,Dv{سVň^`nכjvR4CBj-GLxwA IGJm Sٻ/]8H3ƹw]WV8 XX%Hr(ؙM gNH8$XH$G-/!U3uA3.1ޞ'Ct%df/$ a(#1r_k~} tmQ7]w_Xaؐ)`W7Q%x"|gч ܛ.0d,Yʏ$!vhLl``sƤsxǙCGimxj-V'25yI}„zY$$}`n]$m aߛ0Y'co~`Ek|Kvy,L5_.fJQ^m6$+ LGn 8|@(0 (Hs Q~\F }n p@RzI 8y&iYu3&~X`U{t3v$&}wYN" |(ԁT'MQL4m146XJ:z:6]5R9 @E"3PAbOn.(لްI|r+: a*|ǨQ`?>dGY%۲E|4qs /AIx *RP#4~8\w& kSNJs@Z-1X!~ qOoTBQ2h|sBlՓagQFF][p\#-뫦3_Zstk '=bJdSs1* $8<ݎY.f[Ⱦ*eg( זۂDIKge.U:&]`$eXXO6,S$LpJ4+>+5IeUԛ.ƬFrn'_b,r囉 B"3x >}yUb &{hw2w}N~B >U !ab78P@U@鶷~" %JTq*{-({•1B7Z,l"kH~<$@[i|?F؈ن8/5wNǵ̕txԵ+2 endstream endobj 100 0 obj << /Length 1518 /Filter /FlateDecode >> stream x[o6+h3˻ah6k X@>6mLߡx(i"%-GGG؍D\Ƒ)YYzv*oXa2Yc Vw;D7]Ӹi };OCPzo+< h`#jN ^0VRx˻x0c1U-7>GdY @$Z/MU6]JZ;3@?OU`תVDN ~ 77/] D(TЋ xN6u-z '@0G}pz岦m ̻nRihuxk%CG0 T{SJa -ِ3H_,0gWuU>΄/]`|Pݎ35_B#"e &Hy1qf><]ϲrR+x?%b bgV-uVpC,IEzxֽdž$_o!*4I1!t9yU8m/y|9W|̪)=%9lgYm~@C Zxw;e:/ 5z\.n~b~ac8+vQݧκi%+\AM6!ݤlꂱ }6Uz:h%WCx%Tzlhp+%aoDkO lo endstream endobj 72 0 obj << /Type /XObject /Subtype /Image /Width 800 /Height 582 /BitsPerComponent 8 /Length 40020 /ColorSpace /DeviceRGB /Filter /DCTDecode >> stream JFIFdd!Ducky   Adobed''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDF "!1AQaq"2BRbr#3CSc$!1aAQq" ?IJK9ETyΙQqd*pRʈp,a"3()j"*mrڈ!H̹n'^:lڊhW#ʀ CR9l7&Cjyƛ<"]2M~!s!Ld2 !TN-;;b`$柘m_߈@_ejd " :av8Emv8jKMC \ݵ:V8cނawHMJ80!C&!> Y:`\5Q '9,pSӵ`[E !aB1wtڕX[]UϚRN8~iOg`W(bH 2Kn@'~:z.ppSz{G${)EZY;S[{hǙ!Z b;qCC++zHer>NUd} ޔ &EC"pO z Hɴڇ>OnaȞ›L੉i]1&0)EÉ%6åGEx%ZWH=ȟ} #Kނ޷~H9 Siކz_A{EGYMBPWҜ;Ozavq ȑa:+ Rs)'>Ž w3̥~iނC޷>?%p:]SO+oMA7zf؝2n}?PbO}@= ~Hz w,(~̍n/䷠pS 鐞 z'*}n&S^ADtW4A9wǰdHtWQ= ]%9R2JC^$2e6㣽G{*D6Dc"ڙW~҈WYȡ+5uw.Bz+i#ngjM)LW ~AEt>XLzmL:iJz i !QrDq4WIß3]ŇxNi)M9rÇޤ/iYuBf5 O.{so .VDoۂ&VjzyOgĦdqLH966ȌJ5D^.qӚoYܫD*LҶY 2MؐtQ 5#zR>ޜt^'\r>/PBLM=`F GDqN,*Dt{{PHtGo.ۖg#'=V D:̫aAQ+8=]d;Rc(]@B(.5C2ԉj&Êⓗr}ˡ‰ b0o.X7X&[)+SEiBdc#<#2%ۻ1=],sHAF*U}22 mT魋5[A8{!ʷO'=Xpeo\c#k3R5&Is]$㝨ȬI n"ZȑJI*TYvK6BKpW( b,o<]&L{#PCk!͈̔AQ3zan>3J c2M rR]B1pWz'f9|Uj̎*&kҺ @FZp]B9O?5Ǡ˰.%uv}Tz?(%B: UAm?~ Ⱥn{W#a.[GN$RpܪHj+N?V,VYryQTHHIq9)g!oC\eP(`x*(F 8yTY F("8⹧rBdƱ]>xgu45` S(Xq t[W DxZ焅è2oQ1hICBFt'L-\VGxfWk%MnGq r{qRJX.0̮Ԍ$2K2šbbVw;VCzkbFÏr^,!dި:{F>ixmɣ@}$zl Vj2i#[EwmgӊR樉(C 2V'nܷ6OaWjd@䶐#m aޟ`]?;d`hOB6/#?Pj⢊*̣(ђgqĚUl a]0-RLjWw݋@HDKL$AC&aa٨ISAjB vj֪\88.LA%cDхFGʄD*Zf  MncŨɰ&rU2fʲlG {Hm,@E*ݎN]E|NwڑQU5XQBji Uj#;v& 0DC WmN * fEJmfM(bDs.3m\|$P [@\W$*ٸg()Iv/*%,HbVj0ܲS1}B("?-35fܓC>+biSA::Ğ* T%͍JnH2w.vHg/ ]oC٤-tK7 q;j6N ܹ KW0pXFؠ})#\MDSldEOr3< S0^6hZpAbʳ WVHy܏H>;|DuR?MsVL2ȅNbз~2TF\eR%1Nu7dٕ`ت-\ah 5(\Rv@9x-n|>m\Ǩ룶Ş/>]G}vGb_zKRȌ9`T *smԭmLO]ć!Q>"Pۿ8Ӊs=uX۔|ꌳds2cTm[U[5W=Qj%N~b1SL &Q]zƬ VB0-+ʧ4G( dV4rˌ dԉk冐1.2, KnR%x9OGKER+9i+[r#ڳdp]\Ug' ,GARmb(pؐ=rR5IE9Jd;UrPuHE )c)#.][T"'-n ÝUEc#~rژNCQØ1e;itҎ2#mR5yw疢 e7 rGMI`T4WC$x D48lB(=RI'ܷf Ẉσ9*nnYYƵ+iLC.1$ᶪT!)GQ4; v"܄^&f$.!bhRH0uIGKMeq4=Eֹž-pQ/uJ)9%H\tUǗ;-Ff DbsVNgٚckDtA>P2ڪNgFl6+-*S²S2ô$kaH he9Ortvd1U5.q+[$ rs؝ 12e+L`K.j9OwV#*F$ckL -Llj[ F69rb\KME%GSi4EGKnRYSyZGC+2WC>T~Q$=MAGNO=Q#KFmHoGP.LNUR"Q #\Д-ymWIڪDHn%a1cjGj}DOYD0TTWg@BEUce;!?.QJ>:\:b> vRu@bLJvBā(bb5Pےʛ.lskƉ إ;BDHtӱ)ؙM製v2s?#}~ m?܏>rS,5)Zk"",$,F-.SjhRH7{T+mW#hʸDc/Jр#T#4BLhiD{NLihpCیeG91/ L%k){:Cͭ~=ʅ-GD{QrOտ R]l82ͮxvw*Esʅ<:"֦ v+u_qR=Yzەڙ n#`C1_:jG"GbXGP>=H:p̈` ڷ:;S 016Fc1KNtt6uv۱׹6viWTsD}Rn( bU'mWVD0~, ~wesǧg;鏼.2q4JjځtF<$ش9_RC"' z @uzwELܔo+?LL BLyd_)ŋca`HN)#GC(zhk> DY zh(zhi=%J/JrӉǡ7@~a=u0ފ{vDLKcOCt}%w~w+nL #_>x4.L`Ozm!4/"C..fSs&>ޛ~Ki[vz7gKzc=龓=yd}H?rEϻG<_&\rǘsu+ n7ўMp諮cⶰ)ɾjkyPLF_B3dvܦ1ݍעgù/0e~)8ۧt#v c~)%xhS{sې^,]5}DdL ]cOî;i#x* Nm݉ezv3GS}3 wB}VGޛ^;фr\$}+.(uNqR,F/ޯGU9`(4uF65?7+uY'*. C\◟s]cȠ4U:.KWdEEi[k*+,tIEm6/CaGbWQHr7x'TEUV.@VllNT6=TFE\ѣK_$%nHwzo[U#%ȓQLclP 7N@QëW@[k:;0|MRvPސ߆5U/%MIO8a&0;Qv&]4cYr_N!}L7c t=<)?sY!:'?L,ZSR[U6"~irƟK8V]nwoNN⎐M\<Wgm%raYµG7(*T5 {ת$ DbpPy uFB@mL*Djǂ ;^NAaޖUԙ 4r-f0iکj!B[buJRPE @@+@BPp4h\YF'(r-iĠ!lauzLX@^DvHc /l.jkQQ,vh{[Rð|'O2l== Y/x;> KqaxwrV,:ҢG#qL5mBA_IP6"w mHa#ڦ`J\֥"Haީ8tW 8֌%fB1e͑n؏#u8:g]bO%rLhnᘨbf?h}l>* vNCnM*pvj{U_G޽D j-n4D08fIӐp\ꉸ i=@-V2W8[HBS 7HY]B!z"@ HM(2Y5 %8.\/hGūHTgӝ]P.>X̃.N\KCN35W?Pխ\ \v%˹(Y!(zbUHLjnSKfQhŋyGp%jKv 7*F"ʣ]O0t78 r|%ԍ#qADmO9pS!Rfs , 3)JdSA eoV1;T3ȕG 4S`@VGDqTtýhmj66j-xc34aWZ!P,ԟ FԦ#iBr[w$`CF(71֍J%tk;{72[J w%"#o4EZmm93P   Jاΐ$X99 { 1ǩӮGI%=V7FG> dYMD"q!::onꓧ!yc s3iF!tctt߆iT24p۵fߥ)G5p,i֭Srfd!#@Vb;^UETx-n!PF|/p/.KB+PBsw'CMg7#Fۘvű9 샾H4kd1#ާvȑeV.1dMbW` e? Z\İY |ўagQRkL*B`§om-F "]p[iջ>czA BephH\:`(&́2CXH ~쬈':S]ݣ-z|vsu8kR3#%.B Pb:GI \UsF.IeTpኴcHܣ7*,dAڒx1_B46 3(! 'E.δBFƌO*0EڮnBqȔKn ks݋E0*Kcw*(s`nbipSW3WE*r[Ta)=R4iDȔvӣLFdz?>J+>[>H޻Ĩٶ̬2Z+ f,LQ 3Yg٦ 3ؒ1f&2-%GPrЮXە. k*w^U̔͸1:'#!"4Shdd{r@D[2EÐR?W (Jg.NT!*X5"%fL uiRG3M pU@Ba^=U,UGQ|d0N2ˤb> `Rő1?$]SFRv% +'`%utISlΘ 䇧C${d"p!KOOjv+H`I9H~ݽFQ%_r~ve\Ç]7f^N֯z.UHuO t,u,"UqU 8!ng6ѓbK@Ŝ&0NVjotD"rPɨ]+tŨ@r{F͸SXWJ% BAh h'1l]4"Z v8b!TP;j)E7NP;Ft܌SomV޹Nbb3غJT1Db,`MixrC'f! s6ɢɄdeJ2yQ8T4D>\S0tE.!O;?2҈ꑋT-cO*VDaD DQHiwtҷQq +N )vqߺ  Io ;>Qt1"Q-p\..(/-G]C1;tOTzzız​ݫNbTQC%q5i!ɢlA֍#wzAq@"A;Ω.Wt)J"es:WYlu 65NXSA[ ::BBʝn :E`Nh0|x"@'}G?B:uH#2ȇC@۶d$qpyAܨeR'3(ɛi2Z0*ڴIl1!-&-!7>?Jm lޱnPCj)_C"0/JUR!qy xEF{`& "[JT<;#‹W)ή%$0lь kfC!g)j w,+ (8HW5s`pkl^uĜj˴Mj3LDd /+)biͲbj"sw}SL'*#=N?6rALk-%%gL$ H$EtxzՌZ;MyM.S1uns+%h2ĥ]^ 3^qH:&# v@[&TYޚ>T#ޚ]!>HF&@j~D#10iTnߔ_*-pTTcԂ;U\6 Չ)n68FWd5-2Qz%+*"?8T$'+%/\UhZy$W! g\8}: \Pi!<:K#7ٽљmdé RvmHbYt2؛*c-C(buT l@6ۿѳ+T$ؘ0FDpSH{To91ёhڬB\!kbqWX1\%_Yj(Fw#L HW,o}}ʞ GHGܪ*f6W/91;y`ȗi k1bW#49s`Y׹,oӊa KQJ#G> m) AS5N&Q)JBȜI)Jv'TO9L'T\,o|+k n\ UJ;P2S承 ĔSP>QT3XFvT UdWti(!7" 4*$pXȜJt(-ɷ2$9w,B{S(;ӿai7Օ$t"Vrv_Vt(^a(|4Z1! 4R%w7)t\TKʤ8u%&JQm$Nn܁;(VgoY 2:02ܔBU; ǸCкaQ@V )rDeT TF>Sq0lh韚'I]Gr D+>F.² g2'x@twJ_OO`LtؙN0ڹYcpehY./ܨ~d\y(=P9.J\x L %k\ub|B@8qSDD-Dvyg+#!JKO2%!AE=Q}H˦,Ć LmrLhŖ)4o'0^R!T]63SvWpNhʹ]vF0. (e'\{:o= /ޜZ. ToڽވϘ`21rcbj6kz"Q}d=KwJWm|RՐf! êl+cDiR$n(X ,LcH51ȉIbܛf/"njh==uGqrmSsK46af[3u]tGCӇQJoK%@g"X،VQMz.G y@sǦO᪟_G*)ԗ@MBݑF"],Z\ʎބmr J˜yEv :a}f#lDl%L~2E\ ^!VHY,lfdᕎ!WfڠR\,zAAJ0Aڹ [8"ĆEj'z;Ҏ2m2_DrPSiދހ迚<. U'l$|u@)}H&%:phe 'CXvz KF?1n]CjSi[?-襳&`+ DL觐 MO*Mb5*Q`Km1bQç%%-mgiM99=NH17d@^2MG7.TIj>.yjވg6p`r"Q̔xJsg.mͥntL~ 9K-yF{yr_s)ؽz2թꈽwFF8D5\nD7Xݘ̩yxdQj9Hϸ3)ǝÏ(x ^>cDu|Grm1Gr>GWz8Dn1Ǩ~F=s~C3ؤoXwя0]vȳWoXǸ'wAus(?W?7.5ͽˬu$bOף~܃D߸FKpDdS>n~5x q~ߊz[pMKgw`CpR001}~ 4ҁpd5Wl+sb G@#1zpB}hc]P%G@"қqꥋv&4Һ(E QD{jO[1(>ݫ<0'"K:yWcZEx<@cGR6+[?@(Sgѕ =d;QRV yA:e#V 4yc؃=L#,qNz¿# =$E# W%Qur-˵uQ ˠ_j]Q ܫ[$d`$݈9L7#_kr7MQ :F :dm\b˒19ڈ6tQ'j#)\1,j)Ak@E*beZ<,%d돗@),$.m'- S$n@觪Vwޘ$0S/ ;Tn22֎[Lrn I+ 3: YJe5s :w,6qSSP;;ޯ x4*+NK:m<ʬޑ&_~TABC/[ Z1Fn[1Q 3OnلL\QEE5(A%Ed $PJEMJL߱\j9*#OpP!Zrh V~%^J SV%h L*v.wM>%16Ude1u=,rK9VhR0LͱV"(6 ]js]*[ڙѱdD5E"Gi%L75XYH@j3 Y[Y.'-oWV8\z$Ncoy-,^ۿ3(, (JpRfwJXuA«MqѵjĿ+ԯ]Cn|f.&F!\E_;/2@W ^@)D%bvs<-؀xyHu^ftGj|0R&}}.% 7FAqL j>*](^RR܆ i%r# aȰ$B &>9ysd! djbȮaf@ejn5,)sf2y⺂ ¡O8ɖUHzqt9@*,R7g{^lޘjY,9Sni3eC98ǵ zx'tz[ ΘaZT(W%XlD]Ti`V-2u-0K'@Or)t.LK(ۖ1n 3:#e1-iHy-9Pm" hAOg+7cLRo);yfTf EB̝˴M]}+NѸҋ8IAF*rm:ÌG7?Д:qiRGw+$(ç:QRі5JH+-!./bq18FT!o~A[ڴ.FAhD(!0f`0`D Nd{wޤ~AXj畻Sa$rud M; uQڞ='KcjfH|хp8S܈$ޏ*IYtZw6$+I`ͨ$;8J>݊\x pC+oNeX'd=QAm2mD*P9Dn!W ,/zx4'QCS$QLl[?XJcK9hp ߳rCo+Nsh&wegO>DwB7DVW!%]/¿P V?m2|-5#R(=vJ̅h,aOn7.&)Jb?t5ވ8OyWiQ!,K>wzHooS!5CzW Us_|V! yU4!4UtѶBڞ5 6;QƩڗ.h/8I6K@U%]ijlG` u X-|ML*S49kK^̐!g $) /TO 8&wHixr*Z=O:fp\4Ge+P2G̀Tf6=Ueә͆=˞쎸JKӂ"^U;4;Fn4H]E@D Xiv+bW+c-Jb!ʄI'Qܖ)sZֈLȊgSLҨ Ea vη 0kGx~s[1*Zq)Dīq47ςs`J7ce5?olՙKdn8d5LUHAk>K"Q<,JmB:cſ ș:PY+Sds B?yh=ro$mL*()S1bHpfVEsU`\BQMf!>)T=4$5@;9Q%˒H&bbeB/fFL];TE_%ⴆrusf#vmJb+[ٮV(6 RAAf߈w ڵݴqCT.rC;m3YìbjB)m%-d-Lv|R5Y=9Vm(o).Q(+(Z޻iߊB_b&ŷvmW/\^# QD2nT3d+JLKmJr7"ay mEgAeN\{!,mpV_9N1g5dMZHc䟓Dw/zUc+[OFdp=\F-ބܘjfSW/lWg"q,s@؜ƙN;P޷kr.f>Iz< Uc37l*G.ssj ]  ?rb[ol?IoSojè~C7nPś=C⎛ӈK΁An|s℮P΂h">RB+ B֒I< 15ڧN4i-&ޯOiʽN9j%{f5l,xȥDfN!BlW`/oXdސ^jQ"؟%55?Tڥ@}')s*%3LŴގ1,@U9ڀ 3 ȘeR`ĩjV>+Ht$DE`HΞ @[a?B#~œpi 4n6! 'Y m#/m~ zT۔9?NN!ok۽D^LjzwjͰmء[:x%f R=P1V;°aD9#w.+N1MadqpI%g>2(߻\q]VBFvaP8FMu9J+ZZQ4`R)[$M` Nt1p:%"A =E4C~b rN/79Gla4'f5`N%h,smⶸTjh9:*Y\܈ s8iK C DWTrAӰHlh{%r:bq'G fA"B~᯶&L.,+e!̜zSh+_W0D(z⺴C?cB/ Ah !Wa]pzH?4C+/܄$H+'~iL sc+ʇO7zhh mbaGzεxm*n0 ZH0R& JQj3 wdFޞs0ӤjCd DOtNڥ,LJ⯏| U|M>HU3 oCFc+j;M<:dr]yO>jvQW4?46~bfݳ܉{˟~Jřb%@ervd,[r헹Jۤ2 ӂz{ga@?,#RSgwoKB7*!K>@}qNt}41oIjA2.pSg>:mȎخs.B8AD;"Qw߳:[C --%z1ѹyHNPt3?]u}Xl. 2t6p(+_tS$ ߳Ȧ܏0Sg>?= Gn+cNO?}d.@$aUzq/|Eښ=tިSg=4@Fvv/w?%KQgMfG("?7=CɴȀ?i։ctK- sMfDGk_XU&DMfG?:m{pMG8μKn!UdsH{+Wd0MG/;G{{PY){v뮓[^dL`nnxjSjHȆjq.Rc6Oo^6yH.L}G6tn@җՏLGVҮh=Tq @W͟{O=驎w?DΣrezY_z.gP~)gz>]Ğ=yo}Q=]eK1zAkPAԌ{'TTPLJ2ZCP5f:xL>ٮU4CD(H/ZbK==.*`PS$X#)ipRob:UcOsd )O9rfVEc1rPzXjzPY.nDDM=+uFz.l12# "2 K{Π@ҥRd$b08dK֑SUuG2'Mؖ$[LYEW5='޹JGĢ:AGCz#r j>ŬMTQsر1`0v0z䈷_H}-u;'D3P%{mB4B1ljۃSۿG)g`$5Qځ%oTYFŊN*W7VT&XiJBȣo@0?P - xR}Db̿O@lq**z 8:2I=;%X%;6"$#/䷎x* :$ %J v-zF*B9P/#MF9*F9B0' *[(,5D8ex NQ*`|xbv.ۂ7WU"Ws%>Y,lCSmugTU e"E& V[RV^'k>AaK2Mt%N:b+st&k&ܙ'K>[a!) uiYKz|>fs ?^q]f'?āJr2qA+H8lfeD0\Jf| RpoYXd('&p@F01vl(r,$)FaXN`F1SiHdQ )LT2j%"RB8A͂M%k-8V$֘1U5 #>i[ Auh&6gɄX.|[rrA.08H{6㔣߂t/;Ea4RP"z08 vlsXpv.#-R68pO[-~Wȩ#Lv$GwH4YuٍdOjǪ![RNи7WVt5ŏb)2M;!ʍRo|癔Hi.] ԰@#X8ѓeUqc!8/{bR/[[>*il@xVB]-$ >-xBHS#ZFOrLVqsq`7~bʉ҂,6 d `4*& FxD hhR h* 4LlB"6h ls? ,̮Sfz*2v#t9%K/;U&v?`frQTr *$ RH$p]OaرՍdr1: @2|]EJj 2iGSjlq [xUMBAAܗHl=Zݝ=j Q8,Gi%!;fFݘsBIRB#q ħb-HSre5S*Q +7 ꬉ%eZdIܚdv*ҹW#~.Ħr5%1$W4ڐe X`eDo.zJr!$oAۅ&F?:x\"NDC̱*J.?L(6g;Rk4m[> 6K$-F~ 7`EyC G[ˋS/lk}= pU\mF@ĸӟ (rJ3;U7@ AnEߊ! *mʆ)xF'%HӈRn'q-j-lȹx9V%??t !BS lS̙(X+rQ'g#],e2&j*]4D\{Tm?e<ŋy'>ܷB| \'s.m\pE=C JkpNg̃9Rˢ 94jZdmʄ&,ȅ&VGU!F̵j,n*TmL[hb*sYܐ;%vDil ];zUPpVt[ :PEIK8=S ҥW<%WE8I;61#a=,<U%y m7\FR!k x!xL`QA5튝1 Nܹ3qE IșhI$3U5E@ yTdy,_yS.ȥd8.ۀ &b6q!YDbp*Ffyjp1_y8(6d?P$&&Z0QwQI"Sja,JVޖCbc,!EAT(sMs5RtJͩăA̎!TUC?h*~r%a["AT}5ViDs~܂.k}U9T w:8CQUtsÙĪǧ\rM TU,G Fq'*;edK>T1 Ker Uc‰ ,:?Hm^i7'GT]#>D];ή{q ̇Ԇ}˿wwwo7]T}a OPY6~iMSsh]F1Q qw7.p#܁僫(Ȧ3ۏ]ɵƋT B:3ۘܙBn\p7ўH/L'+# .[>X7gz[^,fLc3۔ޖMيtŢ8) ?OϛD߸y垝_zx/6=M},\h]z&w '&1ӍQ0\z"bYC`Mc]˹90vڸH)=uzS\r9d{]{y稜v%=tRX,GrǞzKCW1CV4{F{y'o]eգܛw)r"s4r⶧?37>؈#/C]hsQa\%H!܎߬DO={}&{y#3 ץ)eN 3sL-Qٍ*=ݐ ^̮'*Z1-!z4U?nl\u>X5=ɾ{mS;A0hcplron3)܏6ںP&&1=S#M%y\i?H8o+x)k϶ -lLxQ" qz{U9V [O>*:_SWCCjޖӻz9HSM#=L bQ1![A6!-[za6pWXuaAS~>(x&9Άfz38u9ځoL)鹰Nv8DP9q=,Ha ;՘]zVCjǦ}Càn sc-飴{=F_rs*G'3}D-Kwcsk:w+ ,č+d,<,I 3NV"UTXٲųK WL$^ eNE14TIr"T 9Ͱ i(%ImT"e;^[Y@3j3 "X*V˽(i$Mܞ9;r:GwNDIOtB4Ő[#=.ڋ5k'wrjV@W\D (8f޺ 9izؚ̾D$neI4քzIHqbJd:BKڴ" a`J/cyҍeQ1c*3tc-5n-ٕW la*8XjuAsL]rBR!:S^˾Ę-ˮ"&<0lBjcIn ]L."<8i( l-8dNrba9JN$28QvDC(薘f!&8/Bd1l{yu08RN3]ZM0ؒE9r|WqdCaƘmUf'o:#[a.x8ڕ abO'9U0QܣT $q(`q-$lFDF==' ${ǽL-^om3?^3hhaŠ>RSȊ0) G#Ug\%ޮdCTp\=".^X+F]F MFϹHqB"L]P su)MU7Mh2.bJ1'?iM"eJސ!_PIJ(.Pf,,U ;X߄ !j0u r-TMV rѪC[ӔN6L$zI}7 Nfe)V*J nOjU v٭E1za&1T" =t`XtU>a2!cp}\ޯਹ.>!0H6Bt݂‹`hږcUEE:ƻFjrwT_ܧW!i<s~rba:qq@`Nop6xS$Dd% 3An]2R)nxfΔL- XVƑpU!AF]#٧sYiq'KtJщDN"ܬYCI;h^2B0dS#ʈ7`$j{p@v޴(AY(q\&Db/ ]0B1qÿbXH`vuV"z3sܥ(gLGD:ʃF-}:v4?߂댦L ":6JD0ÂYߥ!tJN;@im{:$ f1O-)9S<$ڡlsfnWD G|tAsKUPIcL .axԐ7{з039-dM8Ю$u2$t">,Y] 7DN:иj*<%9\ srrqF݈x{{d$fB#D SE({v}'S!,)6CCr #0W+;\e/@ۇ?5mҖ:Fة&_r|`CQJ]=ˣ^R1K '"JZinkkү` *bY5X')GZhPس!q"!(Η2cG 4cQ/SݩM"7 3fP%T 5ZC1%=4~?|V=Om`fJv6-e.9?HN MRT=81>*qzA(}ĝ ";DyjN>Wnq:+M4Jo/_5(C%$ĭ[sM,QGJϊ*Sbʬ+et0 6ҵcN,¤sq0ܹQK >q5iXCus.[sraйUPM^.C1ؘJo)S3-[8ftmɹ>zq, CjLObV'ހxO!ev8"%pA,MO8H<{n4Sܜ N)pHzxڈ"iT!8NP 2K:(йI" Ȕ%ot cJnFr[4qsNw+H8i @-[ vEG.Y$ȝ<{!ɓ 4SIT' BCP#*ASFAohAUCf](X-F9HsSLL r]7,<;WU9IIi JQ.*6*tP3`bYb,GdϒGdVD4Q~J2V+FBAu8,YgUҐ*wa)?̨2c~99I鮊$I!fLh$ "a#764蔣8]uO v*s 3Bw0ÅT!bRhH*~ŻAVNhj[JhUX!Kjqn l wNJ=TFQ-`-Lj_)|J(۶g K6,˕@rKa"K56t1⫓.{B9 qX@A?ں%64<gzk 7~Dy3H?ԧ+z,DprlT/rdK\9BM r_r#8;qL7T ` ,%C q"0%72[Oz7r]$P_pCRUB^4t%!:5@?fِ+E@XNrLd М5REX9T" ͲbXbHbf$VTb}KMRi:15 !Ҁ'xF*.xՙrA% .-EʑjSSD#0 [@6B̳bQ@ pIpxZjwI41LЌH*f#nbj bh1Xm9\KhMQY̗t R!n)#mEv~qM}?$A`g U Ua ة)4C Qnd FHP$nuCw)rl\Hu`!h[̪z{1%ȕHzz#-QށD)bIHC)T! > ץюQTs[ 'a]rw`˚yG%G( Q@V&v(]pԐ{N  tpR0 hPK50ufQ!H3 T\> zR|Plj:SbcMZ-i(j]800|ՎL%kM;Bgd9eV]R FK `uj|SMD\5]DS(c*\Skt UvETʑFGRq[#Mɸ~vĬ:{%ܱM=\SiǦ؟{2'j"=[W"G2æqÅTYڼG\?rçIâ5ʼnGǧBJҺEn%7~]w T&$ U{dz{ fQx=kt?z2鮀 MY(쟕x}ˡE:9:w- |Ot"ѥ-HzS6iC=trK۱7VgگN8ۨK @]z3!sSљDVD˴1hn\ ۓi:wo}.iO>@I^oHM+H1+F=[}cfz/q۱m=NػD#tp_iD ىv:BQ;JtMZ] #"9m+t:\S_LfRm28ͫf2]fS#)6o -ȿ˨N=5_L.&DH6GT5d~ [1vJc沌#xă4L})GS)`"_رH'Ξ9J")Iy665PHczXstF-gɤ̊oP[PUvEOObUc)ޢ2>!mIOj>]}]P*XF͘ďQΑ_dގ9aNzJݒjgXZp`Sb#GS4Auf' +;9>zp~'7 ݈R~2zI#ޔwC l:ntOԷ6' =-̓&~'͉d3+zIއG~܉#;PHwG?%.vbp P2+\҄ "b(r/F1A  7QUeG+siEZ߂T#6UZkJ] HKbTKT8( Ȏ4;Ars-{O(hg;>!8tO)yȷ8)gC-ӆ K8޵ZL9ziKIx^ ?kwJmFŸUQu Ki9'sS48␠`$m`Sε/bm+ćع@Nf'nR%ìpSwEP\kZ2HQƒ\Z%dskg{urFaM7ή૽)v0w)UT&)QsUǹfQ z{8upRIeD򝠐K.~Cz{Ńm(%q52]J甍=J@55 pPBY<. v>(99)qq@`<3\䑺a=TtFUnNFU9KpO v`Nv-Ҹ)RUmdXK Ȉ hmۏUVL%rCuwўҹˬda.! .ԃJOb,#H",7(k>"߲pj5ԯ_Dv`H=Bz T)cY9] vaǴwcn"Gxԁ.AM[(yT5XO[j0MVz3NFktw!(uTuHԶfޚ'P :p5pf:](GB>喅Jg.DIʲ&HZSlUXkbQq2Yrl9.p+8ΖOrb#ܡ5bUn6/s2`ΪW7N'"RRgO㒰SH`XS%C.Ġ:-TI9UNNK(RaBпS;E9X F$\In1 1ڲbQP$fKµOoXlXeIr%Z=B[@O2 $tUQdDkd|@UP4w]*R2KjDDDĬB lV+ lpTrI}.- BٸHvX٧0 ߤ#d$b@QS3(ETLI.JI. Q ,UmHiIr.fjq16)Ve;]tФؐݩIJRU@qA((؋%G H`JX$JX!kДzD@T( zy<؜R&QRƩģ[L+I;v+c_q+?zQD\ŹȽHZ\Rm/apԧ5,AƌQd@Hg\1@V..\Aib:qUvNPq(V$!%MӒbӨC/n ʡc6ܺ|0ܒvlόp*c].AwY@,*2>*SS@CJEh>PKfGвaC7.vԠ.J!Igr،nGAuk̭GEsrROFHUDR@5WQXaGz aUpCTVڰ\@M9ޖ55nr 5ӊʙ %<" n8D,j&,fp5F#I7oIK4q ≌A wypU$AEDqSxsۄKd'x4sfTzM. 禂b\-xga*L@yN L;ag1 q-@ K4˙,x+INa,Ut@4Q` B PoJ2f]hU t6Va q؈HoYq,YLS-NĤ 0w(O\p4،S;"ܖ"5Fտt@HK2n DsYMd5>krNm(tau9ڹ&GA-̦ᚁ s9Y K`HP"e@NPj2ɴZ E<_s$MB.!IP<m]DBQ1 gT`Q|SQJJƤMa k c]k,RHnBN&H;o\FSiDcXؓKcVH6+T@n=*l KBDܔᦢYqPΘk R6%@˜ȱSa&0.8bkڔXl}S6L$)>},V.1-xM *pQ"R&VH8݈N 2HUp2WLXJS ! k#X(uF ,`'Z?MC6W@RˊB +ܰQ.DAf;D/Jבйbvt&:uPp S d³5` imhw #ڱ|99\uU6'ʲ,)J-*ҵ8$o4dG،%'1' <T$bY\ɱHbW;!r7$p1-ZMvLn;:, - Ir|##Q  xCB(*yv!`V #>\] X BgN8 p@ ARG--EGiYަaE¸,̃ M.z.i KDm((WPNA]z\;6f6Ȧ0ؖJKbB2qtfR50t ZDGEY(;K# 備m`*HQ;D3( Q/u:bmB  V 3%Jb&IV2ҐeRLQHlE&2rS.?Tp(*h{S(Dܩ(xHNCONQ; BQe] 槅gs،!;>JVS*a:ûKq s.ҨI cEnx?.68qi]|E+#BEKn r[YE)6#x;PIKܥ.`xw] ®3;Q=b M,9%MY'2j$ĩͼnhZ*'lN&JڌI]L7%63O7)OC)`jhb" j"σ/Bb}Ig>ͪQt*SN`p G.vH݉(RP[}@rX pj9/J3XuD@2Q)I HިH I\ǎCz@eGPIJ!.9s']Quh .HѪUqKI\Mt*檑h|'~iĭe## +6ot&18J$9Sh$nF:ʲYyH2) qj-i9 }8,έ cL2ȈŁ1Ȟ* \+^m-x p%sְ/@0f`w/Cjm Hco K\hڳoزu|]~ʺuZV`C*~F.p"k@T܋TlN54YCjޢEA܎*>V=LetB1ޛCTU>l*:sfQUjZ^=LrtP^Rތd+\;H9Xҏ1u{-NݾTt]#b_UMu2.W/lH5T[AթSC C%JZ"FjbP0 FYwF=@f"; \8ȀmPILAMd IOP)&ԣ-D9&lc}~{b1L5d DmiaTOɣ.' S'3ܗĖīӀmj| fxq?*CSmfiБ;G+!)ǪMϊ3Py@ I.IΎ¥t/܇:;Vb3Xk],դFVn0G(s!kYZ}sߵ2BN3M̉nd_6 9SD`P4t.P7bs jr0%NP!]: 3Ef A'x[\v0t鮨a{2QN]\!peJ!E"|$LjP2UfDVtt \Bn^a^7h€f=mk'ێjR4P.(EV_Ig\L$ej̱"rUES["xA%LTr?]0eC(bQ.7v#T;͆2udf9= Dڇ* AUtT<1al'P$8%Q.ja!B`*m'9HPfѷ(ic5r3Z5bT N9bGXmCdڷ~+,ѣnW.xVY`Rv@E_˶e?Z"Ұc1Ee]:,VY?6{nT2om,~?$OoOez|a?DcYd['@߂'7Mh5th~ԒOYdHeW{%/-h2ى7|j w+OӁW# 'O.&,ggZ> ,ga~JO?:vy6¢6IC?ܲgmd%޲=SWD?WYeg\<}Y&2zAR+'ӋBO" c5Z>>RGL\-}DYeoRܲk?=4vWЭ D6Yeh(~/eT ,H(0hLr `m@d16-޲Zru@$-EQI=Y{Ҏcd,<ޘm,͔DYd 9d A|JB,4^+ y,3'LyVYPq$ 6m76в)O7r\ڲ61ʆn@RqYeRY7زVfj, endstream endobj 97 0 obj << /Type /XObject /Subtype /Image /Width 800 /Height 453 /BitsPerComponent 8 /Length 27790 /ColorSpace /DeviceRGB /Filter /DCTDecode >> stream JFIFddDucky Adobed''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD "!1AQa"q2B#Rrb3C!1AQaq"2 ?]ߚ2TXF<X.&@ą㝏˰ m1I< GXb/h}žDA&is&<bo'sNXʃb`s3}&jy?pvN1 З .`B936Ž.0u)FHW'A9St Wz@n␬s^Vsˉ4h7i2O,tX^}[Hm]'+'~.T{nb+ 0,pXh2b0pՠy[ߴikSyK/)6H]DVzNro0AYH+{"2$9`JX0r/EuHO&k@y#rzF7ő>@#^1 pzF0ֳ_0#Ch@X֦bGIXƷ510Ahy0$xm;Gp*͘ }}[hWY]5@N%O@T- uzxɑsZN뼘+8Ӆ慠27ITvqqrOw iZdy'rdz^nL,[Y_ DzOp*g\K>U>U܇i|'>o|bk g/thg8ԜLIwx5Rd.bd)=^gjrdӐ;GNWZ='A[a#^ ,X8.li=Fpp[cY 3Hr@n7c)"{RJ˰ǗP` @?pqSk'tE?C8obP=qrF)hWXcϬŁ9O5 A,meȮ{w^0fd#P ~ wiV]d+w5xsp.IPq `:=48KbОe"|:\*}Ѡ4U~Y`]>@YLbA0}㠎x=zK1C*usm,sB6 =}dGqN>Jr^5:|$G%K]ǝS/鬀%-|860Ƚ4Y3 LQD*1ŞyKG:dT} 笏&i@]CN"AOAa/'/ '3QRL7j@|54 ~ބǤs^L$QpcTꥼsGi)=DǻNW?9*TȊ!gE(M`DBm0c` BM]By3հ3 E@CEu@`Z^.kXM,l*ʼn ,\`kR`@7= hP:Ǔ!U0]T9!.5"LX0( DL 3H4ED2a $+7 xHW` zMa#5zFptpyigZ TWCdNJ7"껻\P#2i!2l >0K>lF{q#pOq>'іKNJMJx۸x6Y=GUŧحW)451fLyəQ'c^j:ɟڛRęv-fIPB Rj}$ܧ"6hX{Fϝ2@dχbaT4e('Vl&rZl}/A($l5]S,gaV,U tԊon@Ɂy'9*̧U(>DЌuKVkc!3u0mI-( S};H#9[{_#+҂`oY:0,hlGi0]Pr^h+ E^%Lu1Á`|⃴U۩XۛSAfOX: Ӥ>PQ{@{yNg4XNy1s#u.Tjr.SpaR{pXXFfpV4#'vS߉^!\bTbh)5N1lbd,07&(t#pk}^8OS W8d`I$11Wm0{UWxUH@@p bt`aAۘPY!bK( !}hu V5sPtv-ǹ{G& fk7 Q+$ mB].)snR/X<V"P[MzQI9"c"r)LMk T}8~N[Zj\pu2g2Xur !'2g`C"f IJr/MGrZӈF=nW0$E8Eb'0z`IMW\F)Ҧ"/SQ2{، N<0@eԙIAQnHңƤRR0"xm1-L*Y(Tm$rIlCQ;qcsdAnj[sC&mk.tX3M f ԈbIEm kѮ#|NDo:L8k!DSķJ1̿qum# sc l:ve5r~ @$'CtN*뉿ibTG_z#wXሃ^O'c2][fXڜ>w~UbC}!tԉ8|)*?xfC[| Xʭ)<ςM9k/2n;\N( 4^> =<@q*3'/. s*b3T#2`@&e;@TFR VG8mGs 6&]dbf,p @_ݴHs0fU4.AbE687M]ʍ#ne@{ۈܻ W9mlG: P;:@3AKk,H w0 f3 WK5b"qkHg5?qzIEY ~#j鬇0g*KɏĎC:EIа$(nwaVƥ8NJ{tnPNan5e1s )H &Xd)^o n3(gl(Hk"z.,v$M/(I%lʮ\AnõG&j`d9eƛMLp]eeCG14_)`o̧)D N|IR;_Gz ܍8/5]/pBEn 2qbt]{Qq}D]IN2^%|\#:Pb  J`*`&u' be5P[rL(`] {qzɷ;QD"g†g"pO,?n8k@{^ WNp=1/h08+󁕩Th^KR(혇(F(EK Evt:0tJ ] MT.~Ћ-dNz9 R}DPɑBER"yw[̝ :wkZ3'Az}Yn' $X =1H(&1bsSt)ߒ?P(u''v\}ۿvazzH !Ⱦ~.31gbi1VD2bx h+ļzdn'KJaqGX{i zG`0E{s.' ejJ(@j jn_mΝdHdJݬR"T̢q*:5V@}ʿL[ڐ!OT?*LXO1g$s"bP7r1% =b EF)rlT"̡\+I6?t1EU"HgA"d_ktP_$ҢnNX I @Ĵъw'9%b [XIfsˆ6OP.1y8hZ]͋2k2(J4=dx;*>?Mk9q{;I0XV t45(MxÏXUP>[ S/y*UtWZF xrHAv`dDn$бB8V= ?z(L{SlIoJ#rq! y9 Eh&!Ʈ`fn\k#Lˑ"p҆gD1pK ^=wf>Վ%P& .=A|2 DNG.UcɠɎևIM:W!v)Md}F,RK Rn/г3Af/b\&ٍT==QQ*HC%n'PQ`zAcʸfDف p J2kY><3/UpK own3<lc(Z@hD;8!j -|c6*iܹU&N(_e= N`~L$\edk}X(UlL(+HTm"`#(dd01(dF$d͹Hqt ~V$T: Urzr3=ty44@/i`*ɋ/VP wTu$?*L P8#Y[4,՘ɿqc*0l C0B/uQA  Y nAb]d@8c %*1NS4:Gv R 4*XL ]ɹnP\Дn P'F:J BEfUd@10 |w6uL9m~qJ ?#N"N旼9nhK} Kf*>󀼎nh!$r57IF5KR Au^^j aɒ,w(=d 5 k BQ_-(Gueb?-Dҡ 3iF* ' r#=? 6a =czEn^ %OL@!`:WC}X7ESTsu@Бp -D6`"z,,ڟ.`nh`+2^RJeLbԩ*H/'=D2UW3T!+Ii@|ZbP@,ژ9j9`pbpxz^AN.TMJ)yz s莰lyNǼ$~"2] G@: :LW/cbLvڅ۩Ȁsubs xw|8#~2}&A]cKKɴcX~@B_:G7'2P\=lˆ)^VSusEm34H?& Ijq'.q!s~ӡ" #$rw"rIӤ+\cT /n#xר?( f?) %l@LACHvLuJfV480r p*O*{#S)/Q2=qp Fkbw(hT޲`{?qNAؤPQv,Eqڝa81Dm/ǵu&yF4 9W/9*f_O BС%Ambx&YT9_bnУ=;@6ASJ?9e`h7B86,IO};\NQBP@T%?k@=ы?ϴF;Oqݑ%njU4 pk TZ@=$8kPz*F0Q F,mLX[:bd/+>( t.=V`d@W) NdJ[$BݧI  (L<'r$r#a /!~Z@ dݜh̀H0:Ȥ n96b>:9q ͸}d~(LƔ0ƁlTEPy qHPPǤK` Alґs*(9Tq] Uu'+4zi+:IrWE50]*&#_c:v-^&2cD`HG B̓aF+P['S.]ƪ;{_v eL~ȋGcJZ3^j`3;0rzJ9@Lh>z 1ؗ䊌 ŒDB^̹  t'3swYaDE20q֠ЂGf)D) }0G FL*2 4':@[ 8 .t| IXo'.-A 1;(A'SFGuBpcPI/ʽҟR|\#&280FX;6q#K7MAr̗7:U̚[ qɎ^IgH ' xLJ}a9 9_`F-O# Gcc."{AP{ۄ^!N?P&fw@cs;@~@X8Rb(ꅁ:ѷw䣜F`;N0Ra"]O~Q EI@L~418G-dՠP)]Q8| ý;$So{MH 9'PBcSQ'{mzqZ1'B}&-jCcl;Oh*IVB WjY({ISb3SEf:u,bwD̏&l{ʆsL i/) .@%-kR &?1|JQMUǝE޴brTw+q!Ë9qЙR1+:E$m6 X<|<+X T;)FW܋ )`ǤFZomxsdZɒ(K^*v%q $-Xt.S,o'UQ\Q@>k#1@[ qA&[k)V',w I8 T-dDD2w"_z1 Ѳb*:G|ʈq$ b;QFy[v;HC]LT,\BĆP:Gqp#B*+w$f/)b0S1Y؝*1qb6h0=܄$S+fM lfAIFGݓm!a3ƑPkaH^FZ'׬O$oq:S))p$9.s,:%(%,EOrQ'N &m>f31w'Re/zj`؃_ء!_ m,bukZ䂠wr{@M7*GXhnOf,ubpE@uB wEbg(uJ703,β|Y: mM u̠ QGwEJް%1S )a,|b3[A͘ q tp`M1ɉFȣ$+X ;܍8v࿜GGWEwaBdMsh\ZZ8 Ifl cQ6$TW0I) D,MOwmMb?Q[U\N@d`}fK(cĤX*/GfBf:xsd:J''PL㣬vZ2j72K"D$P!-U! {SX2yO~1,zN`S3!OhjxK) bb=ҢhIp?yR6O2v:IoA]<ej`N'CPAQF,I RK18r_1/!˜S) ( @+6@5TVePY&EIb< VixKL=D by%9J1_EFdm* G`@9sL%[9,071Q09 6|@z#&sn^CJL1@EŋUPP)sF'bѐH.X0BRXh fBL(e`t쎜l'9^!ĻG0+4 mɀnƗ״E}TnE'4UGSk-#jܦb(8L+ڿ=(C ^[)0uΑV aG6] I@1zc\ rϤP \Ÿn LGUU [4%ݬ s( MjabMT´^OY5A`Gqt!Ib&.e(wŐgH^sŸHPѣcC&7@C7^L#j#R& Ea5z$ v =#Pg]S %f5\{1:0h2{c :^q\̗S#jF/GhNJqP2Q@0Ra(;Q"nLf r#M A P(Zx\ *0tA`p&FH:X`@c,r &8Wv!K\^ ; 8`|a 6ɶ+zMǮ#0'(ـ\u[}uA`QNeޤ裎﬛# z(E18(BI"%"gbM|@B>0b&Qƈn:DSl ɩ$pNtD407VfX@GQ }ejnA:Ve;\gG0?ۀ;H(xr9w&E̅@ ,# F::{_n2`FlLE1ht^1E|0pĞ0N.n`GH 2Rm`Ǯ&2˜>c9cD1HU$'{hOS @yuM1&c59^?yi Lx0@r+"6[%, l~dbPI+OZ פw}GD}4f$y9pVI1⑓;.8`dOM,b228?osp ʣ^Ǝ0 ?9pJcH'nGNS/%Ef@:Hg&w {D^. S(aN3vǩ8LqE9bv`@Ȕ6Ys*BiFPrbMLMb 1oFv *YN.=86zJMPq BrLb * JPa:0] 76$Vب`cXB#i,mϤŒNVe(D (I' 8P@ǰa@&G08 V .QJX*4 O=Q`:KY0lvnJH`)պd~0 śE\MQH%8$ \:f:3 AfaF#1 #A0ñe01GefһD{d _E:x7Yo rWxOf{qxr~RZ&꣙YDri7&YQSbfxATRx_2:M 0r 0g2NDGʖMFVaQeW^aQ~&pq@`oHCY2"wAC`RDښ(qr'yy,Me^eIxtEۈΑY 7zM5P@D݂ : .>7)΁֛^­ln7H Ť8*zAz?%Hq:{V6"0b0`&61b_P8W`g 63A%'t866(/{ΝY!JS!%&@fi &T8/mSJ̒5 ְH?K(Yj䛡2ɓ vv5 |tzL2dɭtz!Wq֒|F'1$CU9Ӗ=%KF7pLKnr 6UibsUZ&0= \&5ysnAÝ(FQmM#95`jk6}s@\^^V=Y,H:Z71bfH 6 :I93Y0QPMj0 "\V%CbczȪ.Ѧozf)jaY1tu֐5A ΄F NF0PZMͥBI'Rjw,im6{'^i MSDN!5h2݁f`)MQ3 ei ̛t;!S Qu-TP?GC1Ba.: P=$99t:=ec9w}7a ӊg`ĩ19*tQ,»JtAOӤm"_[L i&7 TECD{[2oX #MP!H[djکNX3pIn3{:3&m w!,I|=s@?OT4./e4uZFٜst8HUzbis TM2gQ @M$JV:Hn9BNow/2\Xy,c.^]P :!C3h'G+mWf'1ENٗ_7ħCR{⇚*D)D'/?6HȺw y(4%%[pBy9fZG.QE(`bI\{zN~sjO!DQ =8[sYg4 1γ)+@ˡŀtV:$zIGtO`#3! s;~ !f0i8F6Lq:4{5[ؚU!# +]uBhJ  rMڿ9Bk'!"qYlOi{uFA5=a&5a7( 0ư43A`o05M0a*qYOxVf84&&)=:=&m\. #Qɓ.1z ɎI LwGbp5z dۙfJ ]dyJd˰'1_~jܕGH0kl !Kv9RBW铈i-0=w2#HA3*@u'ln4 =vx Q8;@Ύ:C^cuDNn1.􀍢aw^!X_q;8b؎%w2~0fb c>9N$le9c9GQ']/}+j}n68#&N]NVk,fBaz>1<{+V{aJ;9>0"rcs.Qssm1$ңS_qC4Fdg:_q ʿ?(<[qmcBPV1Qg;ʼnS9kD TrY!%^TO+jt6ϤE$q,{HMIm: bPN|t23H$=GY.شucB,X]i1*n#kGl"]/% 5 Ę{*sGC"I0 Hoԣk%} x uԙje?/;jxr7Ae*4bZ8VPW3YMb&zi0$0ʊZƫ5Zb{D$i5ip` ĖjJ&Cy(n"Aja}"nQYilD9jh KdRz^ؼvb EsEXCʺA1q(9ȶq%R@+XZw&XZ%YZe'a&}140V5DH$ BH9M9g9,U¨3 y/X{Lqj0\Pģ C:@x|sU&E^Z'U[PA$0K7]:ΧM]e:^*b`/nN%zě&Erz=IۼiLQ"s ȕTQGCGOW!,u8L+g0;^X%~r|/ͮL lf`q" 3`!2(/#Q. 92˵/NeRBrdܐnUZi-*g}s&nA94̠ƀ6r+kqJo50o]R'e̿Ū6,cEb:B zGbAq" SbWS'㐖n#y Ğ&$ ~p@82bS,d9oq2[v:|Y9x|;NWCe^s}\_Pi4" y(P"IC$LPD"&+Ȅa#yCf*FiWIjbbz1 AQ`:ucP4#陵"&#z #BP7k]+U0Qz@ LahBlöz uO_X"-V)Pu3::ImK DܧVKυ[sr|'ANGi^>NL^Dp?`b"nT6kB i*6s MU%)$/Qfu93}PDeP.̛c&5wt' Ɋ6TH.Ft1.Ta\d@oI?ژV"ݫ"o` sPS!H&9G:POC(&xzfR0g<>BliQo`GŔQ$X>RthFdZdd|u\  ޓV0<ʹB|u B-qYT`oI+NecFD=!.5TQ LAOxkVz]LޓxЗ !'8jbkX fb`15u[W1KTHظ' 0FKiR ܙc5NϬNE*1RFۨPbDp7r=&'f@͘j.$X.;s2q?!ZWIn9_Y $}"V@[^YٌH`@m B"`"&f| a*7@`j1Np!D4`{De3z :Gi[ޓAp53UHh 㑁n0c=g"yq.|^^ڳO&c9n̓*1r(O `0=i9S>J~qDWOՁ9'0ͷ'cdۍW-u rdyX)rn~xnxN7 kXcnf=rg R> :BXhup]瀚?(PB#9W&Q"~HB܇%ar >I}"߶(ПRgjy [s}%+;K-f;xo .d<~N,4"8S3 ϥ<+Oq(8;!n WQFD-pISmY2^Ip^GȚ }ӥB 2hp$|^&uz%oxՂ_YsMQyTa/x_=49biZdQ7oPWεc_2`%~zF FyaTG9ƫQmGɞw-6.Hɓf`$hʎWئA^a# 7`4.NNqĤ%!mxlL\ 1(wB*t&噭1 f-x|4.rqd8E$f3 {E&/P=؜0Q=#4.Q|'RYW]STAʧIOB#D =;\t2.¸bVLeka>&*(LOI*)ܣ3_y8mU-I",dt#y <}hUu[p),cg`3F%C[j؄Cuг3Z5 I5DܜOAQNRT_ۨ-)ڸS QOrd])SsRIt\{8Ejbzեؗצ![n2g#E+^.žS,g,:Sp'2f&N.%O 6[YMPp?y(5+7o賍9mwX̽b%{d+^e~ D5/ſq(Ωus85Cj̋SC2 Ng@D6NUt11a٥8"ƍܹB-H0rk? 96>qZ6f@2K $̨$Q6ѩVOHNJxbݍ/fP  {J~0bDyaH%IdL",O+.xsVE ^>nv8zIsLӝ,Lw;V*7W?lSXfq~Emf+s>rFbr"9`.? u3G;ZO!Re@y(uO?~j}k>I}g<::|1exg{I9x%'( ƥob/ ϡtN)c_b' 3OEriW0MA|>X?rh _9 g<>f>w*=zNnzKZn88iA#'IRXtt@u3q7,9hT~ȓ7D8 6T)WFmSڦ0b,S&h@^@?h"ڿdc%Ku}Ru8斁eZ{YgKY. ɍhL EbjX3q/] 7 xvDS\ OX@U:V# 8]I'hdВGIYqM9F*۽~yt_p8zS~hPQ_)\dj|/RZa^YݯH×wRܰVQ )AcӼ9R3/'TӤ,.GLX ˑ Aa;6fĻԒ+6I¡a[bX2%ۊqɊ9yQ&j{eB`@T^5Gu`skb||3; F%@׼1Vwp~4,rO~$ߤ/w>T ֽӨE.'mԻz_$0OPgbMԃ6taE9ʔQiz@?Kz i,ϑ̻?(I# #}4lԙ7ۜ€{+}YD9 JRM:GF@?v!Ko$;E+?9$%GADHH9jw+zM`Ma3V3&N 2&8j̈` 9\AzX*23Cf`51O7f+y,}jA&za9 {O!C93#o+rd2jĚ:-2paCː6,"/1t΢M\z^ 8Y98cȎ-taG3R:1d+mr#3y|u"N5 ]~VVUӐSWw vd{q\4:INAT}'Ke7+?Kg1  '+uI:t*YٱOhN9ϗܨ ܏ _#jbӟiY]׿IR8|?o\ %,zGA^q\?jdvmL6z^!>wsWG޸'lLO/=N0)^..nRU p3- 3QV͑~߄y|~@Ng~N%:KyNћ^aLjGNϵyc__C=*"c}`_ۻ)s9׍aDtN5H+Yѓ|Ȟ㹏 ҾSO+;yj xyw\ud,*i8y9as0fV_'5RYny3T%lUH?I~[*W@i2$󇐅ɆIOS>`ҝxp6>1 p#]O9 ?g@woڶ!Q﹮{A9oY]fnns)mZ@J3dO WO!rzJkEIkk%ٻ*1uJshf#k%Ma<,MKBys۽@|Xta#f7oڃtp' e(8cBsN_3XQX#j"#9ǐěbCb"9qwdUwI2S .yGjKb9#)LO'*$rQ,Pfb/&sK}:_ϼ*xt o(RY'97N!wtVH;SJ;|rg*GxH伣nod/< j7j`X7Ϥ>[S3'ַDiVg'ܭWdVzLg^%:O,/$jź7GܹqCx+gc𳦧Wx7])8qf*ynsBO_zoxAKbx3y }Q9ǷI,Sq__Aqj<@\5R[}`3:ύk\dagޒ(m4e J WN<~wG9F e, {P7YT.# Q$7xSxQ6kۑGmw%MKWj[oX|nY/u=jM"c1A}.WfSS= o)z#lS'#)pcx^;dYdݿfofY7)YeM*_ti:zGҦJzԏi i(ij;>sM"Wwg7wmfF\80M5:SM$foYEvoYbabP?h za?sM"ooo[iztؽ9ݰGWXz'N1iNN~tǷI⣏^<;6u&>D3M3UigIPogGvM5bM$Z ߕfuVM:yg%߶74Ӎzc endstream endobj 111 0 obj << /Length 2006 /Filter /FlateDecode >> stream xXo6BC1fV$EJZ7l+н@#"KMa/"; 08~'xo1T]ӣ,bs½ӵĈ> ;MW3|}ߟ\un a4{;'lVKYl؟_IQVs[4jD\)eTx,T7F#+d.vZbNٻ><z%A*b($ MծQbX؏E EYroAN`{2rM3ў<_pxU./JVKsֳيP V=S ( [,}51"A&nR ÌVRl]SlyyuQlkISC:.́C{E9eSpFV2ZEZjy)E.FdjzRy1 t\,FBdh9z) Jב KEfƚ.^#B;1pe68j#N )m\>¬yvx2Sٔp j>V1FdZC#(E0 NXW_6'x (̝0JoZ]N7(AB>gF?v42,[EC lwr@6r[ZQ!!}īN![ߪg[&BsHnos帺[Ip ZiDQ`GE?||x|G-aUU6\+Ӭ7pCp/摊sJ_M .˻CsZE'@qD< xޫ۳mƎ }`ņb8WM`(踑3Im[2U唑L^i<)˥%PϦ͵TbtR%%\5W}L%a70z)ځŏXO^mIBJ2AzIuE`R#AMOM-~^)xpQ6Clr9x2YebFM JV"oklgpL\n `.aH[p!B)},p"#QD@8Q*ʡVXyNd| Cbwa*P(4A_c-Ax3<1`W;ډƛJ0RP&R o܇#wp(wmjB;x<;?RRG0;+*'1Eƣz짰_BfJtMjǕF/e4+=Q 'M)D7RJӫ[ K˳vџ:["4ErŸ1%L[y } .zIܒL#3-aTb[0x9P7D]} ^FRݓ)z腣{j5EoAdUU;UhHYЕzVrfEQ{#|u.. RI2.4l Um ԅF[B{U"pۏT] ]]1[쇽(jF=!l0q@m endstream endobj 135 0 obj << /Length 1645 /Filter /FlateDecode >> stream xX[o6~У,/")c]uJjK i jxNpp~/C" bdwBy`TVA ŸeU&xӭFLϛ3]f.r/~ه/ Ȧj~L4`&) 0$g` 6M($S t ] mi}YB5pߗd OBs+=`sW}ϯbS~ h%:5>e ƫDNǐր:^q𴠒9ZaaY;OR{V/=p ~ơAkdM[cF?CCb{pCn'6#$Jhd|@3wWQQAf"a3I P>I@#:}*7CH"q>=?|~a~!FLpσ&x.2.?Wv\SX,eX,Q_)1Hdr]%qS;f1̑#RX2, Tpm Tu*U'&}/7MvZ{JXU6b 0Zi^WY@:97|fl;S&T1P4{ѳ /0՝* ,);@u/[sKsJW mnh JzhNiI{u"H@p=%8A_Y` endstream endobj 132 0 obj << /Type /XObject /Subtype /Image /Width 404 /Height 518 /BitsPerComponent 8 /Length 49011 /ColorSpace /DeviceRGB /Filter /DCTDecode >> stream JFIFddDucky Adobed''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD"!1AQ"aq2BR#br3C$S4cD ?ZTnumFFFFFFFFFFFFFFFN(7ah??aF _ ⭶O|b+vߨ{+AFrA>MpttjlgV4h4h4h4h4hT$jڨ:ѣFѣFѣFѣFѣFѣFѣFѣFѣFѣFѣFѨg{ߴ"~[4ך;\T35f?W~{u@YnNq<}'61ۨ3iZ]y#?|ґn`ذg'~rqr1r:19 US˫YelUYfZ]Dt?=@\cfyz&ծ@'&G+p(i}?=O]X H;K/tc鋃fDɗA:}fV֩0klnˍ=h9썑[a˞{0W>1puJTԴd}~'}m݊M`~z/뿨-NI̋vأ{lgv?ticlNU hܒg}T203*m3Ho_JfO5N5a8G05v)ƎVަV!|`c~?U]U'Oz!}X-]A@9:xA' WLP{F #,ph>\?_80x0?xs@hѣ@hѣ@hѣAsѣ@hѣ@hѣ@hѣ@hѣ@hѣ@hѣ@hѣ@hѣ@hL+vF qoӠEA,uS=2ZF\qcTo?}ˋ~{=h-Px =Kc>rn ~XlOpߚ䬜csLo V(1_A;8U-a{e&7-n3%E7>5 .B8X1X'q: v f+BI7& m^!%PWp8A1cYlsi$b,tF)|tN۴*k*R.? 4NkC b'àhѣA44F@hѣ@hѣ@hѣ@hjt44A1S=Nqї/y>Cʘ7$דS؀ѾG~Z=|w V􏆴r'\H $MMr'ug^)<qUbLupנǕJCr*T1Y$mQCècs;A^[L,X0r&"HbynT5cbak>\xTeݙlPP$tOm0IAEw XBr,mӶlxqhn`V<0"`vXSӱR{Q0 .)2C+LoMYPѤݢ>\[ދi0Ȟ-,+--l-Qp9P[4: Ǜ_-n YFF'ͶFHƘdv6lY"zaAs 1ƅ0Aq4xYL$"9nZ.팦PCt "LϘ9D9 fV κ&t۪9*ldG=צ849qeksG#OLɕkMF_Lf\Xqe"@ύȶcL,Y܋kqT*ËPn6]/U$to"8rҲ˜H(%D0 COAl÷ܐ֒PƾT5~[8d9K-5'ƚ{fv_bi< P{v f6uww9R 9Lξ,ڑ0 1.7ƨׄX=EX!b/,R|{ THU2K)2 6t~ٯFUQ2?-y!fO=G{ X>֋һ^K].S j{4vQa:0f]EZ*:"9dˈ&FdX`- #-ݿ`\xxԯm0ʭ>zbܝ˃/jr#ȏqjLC [dj2.hx`<5gÛW-D Ӡ6\['JH9΁OfcҍLޞ>laNJ#~#&vCɍi4'F*ۓI;mcA8-K2쳹]. JpcWrb\7I)<.njoqIu*)_=2dc"p2NjE'ݶzd Blg4G,'lMGPw9[BډP!~dB' Lsڪid0>I0C-d8ɍ`-[f=LbL|;spZHi?{e-5HHYnjqdHUX'hc[!_iuũMš }9뤓*n嬌1fN2gUÅ_@Pv4E{j*Yb}PǓd+-Y X! NӠ}C3&AڷFtP#"3So:U@zn K2 2}IHhۆqk )#cSڌ##auH(Y[I)Wq X*0 hcZ&dNq\I|kZuSƺ@ <;Ӗ=v2ja$|1wC#4R4ᠳwF۲#O o;0FJj NѣFѣF5:NѣFѣFѣFѣH}&͔¨q1S ~P/Z`T|Yir$@qXqX:-;XL’)N"t5f2ŕq'1F<,{O{~#qv@(lcjEDq$i\.d;zY1W0q1a{Lk)bM&kegfϏi5 7VkC%VR<mn?:岺b^mINt2{rgȲ >Q7ƙ=2T_iwߌxiTLA#mm]ˀaENW!bZަlFW Թb M*w1iKP nz3Mm|Õ1dc@Pb+ݡ\6D1>XƵA/tq`\}:I#x-[χA2>2fcq'~cY؟,-['v׵2ȋU 6t6:bH#hv,GfȀ iګ<<&u~r%Xki;> pA3rwbîB-cm ENm_ hŇ6ikq2%cfQLcHk*G8R m4'@g &ͳ ZAꮬڤ@JboyӛTfMY@nǎJ+'NB[1!g11®S/8P0Rq2;SKsevǍ{ɹ 'ҽwAhZR\lnamcx}:,(AO< jb&ST#̙blib*L5 inds:?v.qԵil$7{RbDŽTmS -z -)֦Z`*ZʶVo1 ]ԫڙ{`)IfƍLEfشPgKۄvfEa [NRa@ˌ>t&=<4ȨOsqFb*'~Z!N59Vi>ZHq*ehjOeԸݔ@qZ|wF|](}=Au|χ,#<|5ֳ0.2nSӽc}s; 7Ў}SĪip12lZFF444E)w.L׃kY @1Yg?Z_3UVxj*iܝGkIcFaі W͔.8(*Ài=&W\ "[i $WdtbH Λ?wm ӷ{ё/rl^Su;@ίÉ翧9B\+]{THf4Z;g6D `O÷@4-t4ci# ~ӭȬg$*nvP˞~NkaISdS?7~IqC0`[M$O 7s r.4eg܌8IJhd i;08MiM\BUFkԆSH^lT"$FٗpS|l1^vi'ޣ# PUU dW^!8q 0OM9օ*0v ,9yљWTM0"N銙WW OlJo&6Usga(kvۑV2f6.".RSl㫿qB(P~\Xoe؆+ ̱G|~DLpHe [J\؛[ 6$VI'׹BT?6C,Ah8Y1Kf$, FSkGiݣa[a$q{bRf+xt=r9746qqGnW h˨Pb]m!xiϓ I-1}iIv͗!"1-VX#†t pTJ 惧q;Ŋ0s+,<QLwWgc4`5?V4j#OZL(NEHU7 O gxndkTI۝9enj U- N2x^laTT0Zl `fH#`ŹqLkSwi]E=/vhxNھfˋ*qʅ 6TUw0㽲Ve`R+}{$CK2wr4cL$X0%H-­P 媎ߵB%3"VMT \]T7lpe>We89Zt!@nS50<@+{pvX֬+Hdf}Ɓ,2L,*X#u v S ~7Owo Uȣ.&|9zLq7;WΓrːcV-`@$yj'*C!Y 'dƹ!ehp7mgSb%UFvBdADӍ4["+l FW~6KkR0HޚselZ]Z^3;ŕM-7 qg.K+IAeoplUm-0wPV\O3'}W) 3ǎ{{yuѣ@hѣ@hѣ@hѣ@jcR` j~375T칳"W"垦<9Gw=pO >՛E z^TӰC\ 1)ƜxJwq`rdw {SZЂé\iى0Ę{|L\ 0aW7,.dpIx5A#w(6[7EHᶪoHuG˄bHoE Lu 748͙Ю/y}ܫt7)Ʊw*&_oo$Vq:4Otm1GcOmBqb" 3@n3Y)+aӯp8rB<#t_GUV !ۑv]'6.C4t@ܽm|T`2dU>=..Z(w ĘUv,n@TLE|;/K3h*- 92^.I3b,q`̅2-ʀOٽ.L5_ 3?.dIi"q'x4^uSF^z.5$uiTG&fBX]N{D\q63A#Ҥ~lû37S=?ʬDi%G91Ȧ꘬9|scdK3if9lRю@? b-2,=Af-f ;v~'Qb\kU:? _9VIeDeS>~;]f0`3Ln"4S 1 KE|@&G hNKeNū:|Y0!rP^jM.Uy1>أ2,#t5vkhɄ⌭ﵧLڪaVlJaI3bGuv<iON|ōR}rfwt 0BA`;I##m]L?NF%NA+I]^SȁHDۨAZ7Xr/sf\A6 '+U靻w"2jI;. -H[}UN#}V\ćΊUX~cuǧA^rX#2[d vp[Z? ;؏q j{L):seU} :WS91ڮ2kH 7\ۑoRQCb#[bq^LV ZPɁ:~M؛ 3Rm0u&@[_uEj"O՟DPN&xǀ+'l';zbnr M"ӺHIl29E-#G 6ic4sJHZ/cc#.`@#rv)+-^)]oԙ'|b‰19Tw.$7ĕEk8]& l)+Ewyz`S7o2iχՕ2e')L |8s22p£j|t 8QŐ.0@幧f<ޗ`(cn^ĺv*DoMy d|ؽdQ4 >0Ijۻk9 " rS[0wBr NApD "Td,Ȩ b@DWARƙL8tX{Lw\`1>v;{Mm&WXdFvg<.gc#r+vr9*4P>F,.&j"`8NkgqWERL#*S$ܽ-E oYqv}<^In.c=7eھYaҠcJgwbL찶zc˙ RS]qJvǔLp0œSި%j+> ]eD3$T >1^ـBr)( pQ W vp{R&xᾃCر|Z`5f ~:621 m2FFFjthy\~ϩZM}3_2s x_ӅFLyIږ۸jTSP21#67}SHT?nq4$bdWWp:d)o0M6& |kZbP| 8;9,dpQYԍk  M:#ps6{YX~  pAT0r/̀ilX{x@K"T 'i(ȼp% p=<9DxP%d x"֓oIaKI5l9UdP̪Eu m.LԕlEX VIOIK+ csh?Rh.NE3Tc:::tWV`T ʂ 4n tRri[E8zgo3!~utT3`{)hlFE5"@iWګ4Cڭ47ctn@1>B*7S I5xeƤlT@y\#wk S >gȌX\bGL"( I);tyŅ2㺷Dw5LM $jSXdL긘Aj<8Iڢ6lضdڍG2* 4jµTH_yf ˶^gwq)Ki -FEW4>|coqL#cӈg9! ( HZKŏ*!t@ T~=M-,m=f+![#c4m2<:hN ['kPF7D|Dv!PqnǸNٖamb4cC\9Ł -kcǎ&91YW(-;iaiM  2ӧqP d.[f6?M̹јc!Diz]wrIB=BG"H@qeV@n%r_ Ջm2CI< ,=$|=SA@ΝkIai5e9JeQ"m xR4ɝeX@HS-S2~L)(?Zs r.C)EKȝҡvƅQlL-"f PfrX6Knj"Lxe4'PبP KzdL4 }W`xD 0O&v;&&T PYFrp#VccdFڞDp-d<#N )92")]+Y+{KK-H6j˔c&L( 8Z|~{ 8 D۽O-eUd-^)|?ڷ[1HA!a!+?N8)Tx*I"wZO-a0>qqPSAjupK2>ӳ&FeXoXtPKTQ\HW6OJTjNcTwXlnol"pC άiL*fCl<+6@q,Nʫt%е)8elˋ(c M$<#(K{!2]"jL5PW&1IGYpv/< imt2Ư`s/(ߊmfd~ٱdoȯ75$n[ß*l9c,6c):e|hXgG.kH٠3er1PEDW;a#Kiϩ@SM8f(m\TOՒ_2cv2+kw9fʖI$1SÝ[U3޳YW>%$t O|[By xخt\%˱N@CYȧAn3- dx$dL,rn^c~1wanMD v:.@ߖnU 5To[`|9!ٰVXX x285$d.C6(j<‰xۖ夓 >H\n 9[S4#jodz6< ^5}08ۯiwGfb~ݶ1**2AkL 2gG],LjFNN4ֻvYrj |ߴa nw @^:fG-򘈃oþW5l˗uc ҷ3۹׎gFk%-H8j?`˪cr0c:L0,I*fwZGA"n\c6Nɉs-|3<<c V dp1!K%wwA]d>LwžKC13܈99]e`@ ~m9kvˈۚ#"!q4i9;%sdJo_P.pJ" W 2Ѯ;<6)!͕XP.Pk;`>t49WbͥV Tm^<o[U.:N,!a=_)Z_GPaY}V>9;u*X`$S6-8w%EI`1 C0A >ܝ4vˇ-sM <p;kۖrY4ʑ" 5ꦂ;rX MYi>ZbRU[(K$ n8'm%N`PzQZ VATZQ@g`M7AAmk3&iN&gX6P1Ɇ`TWMv\hU>buYV?x34􆁿 ;|.1u]E8b<}Ezm*Aj2܌=9 s0hx0c]bkExlOh*da@58j"YX @ r"N y\eH69V|te}! Q`z3]ι.͌UʰRL ׎[0Bd XVS]y)8&2%dmzN]ic1!L.ڦ9ӹ1A>\".Lem j ˄ݔ9f17XLXFW^=0x֛5V͋vÝ(mh-c7 qvXA&|LTuLq+1Zt5';;4wV-f1ګ1>S~,-L~Lw; :dM, i)1;.!lIdIPb}GSܜm``xPN9p Yd: \̅ʆSwI#,νK@;h5"@J(=BˋV{f$I FpdAe;a˖{E\r:HDyAh_9T0?o-cOiv!uq"kau+U[@itQ1QK<#F4h4hxG 8?vmjfVh 1Wt?~]|X.|vVjhrVLÎ?rp%!EH&i窜vdKʫrē5L` h8qW=/9FVQ: @G|enխc In^6 {|$4.K3ԍnjzp&.QĚm ;1la&e$?1jC'{:Rt\ʏC"=#6VQdoHs:5Ǎs1hc[82v1Y2{2;eoDOMs39wPzJAQ2ljV@*L^ xZc {` xDy5<' Bp' SoޥzΓ|#Q&H^ȎY\fJpRLy4f@n >J &2: ;]FݦLV*C.)Uxv}"w6x< \B*1K^a2UYG*@'5wbr`2*M8q3w)̙q2ŵRLϘ'fʚ 1-mW? OT^.4P17%3OIrN lA2LP,eI6 2w76U` q7YZyyN E pn$f[U”7|ZtLj,~]ѮgK6~ :4h4h|9PEOu;6 sUӺ"yܨqiYv= (zn| ǓdN¼&AlQj>2w:ocdR'퐽3T?a+&Q5 .K'iZl<A8J7"3 %)$Z/UPlw[֫0Igj=nEx@œ@8!I-KYZ8!ʄm29J'UKn7@hs1.N+c!!TO#2&L&Tj7JgdžvӀe*|ElLLURbNƇkSψ"|YR-UZq%+)5ç6*9$H559_Vnj.0 G4ɚj(+5T\C0u^W8֣290{.1+[qDOm5{Xp,RX5 WAj)!'tbc*(w"ySkmrfs3mL,kn4Ӎ N<v/JF5{Qp@]Gx+b` PMʓM?.ZndJ7>c@8L/)Y" PxjDs;ւ-ս"nA+Β2w4'i*w)>gm0R:& [rqq aYKKJ-FLٰ.e`( LJvIw@P8 8[֬MO@[tqQQ6n*.%7HemnzS]CA-Z˕U]_7j. V$ʛ} 9~cS13V.ccHPONqpn̬RV.Rklj;h ɒUKƲip: w#p#+;ZH7;SյyxiMˍɉL"dՙ KZE917Tje(L}`qe_L?NߧaF@f"{IٕUŵ(qteGƘ.@0"sV!f$;1 TTٖ][JZ n2c!B0C(G#B _ B2Za4U3Uo3ºo|q#djŭHÇb\l2+&?a@μװھZQ(bq 2`5ӲeLs"J( sJ=g )"9O|S1c ֡R+x^LNPn^$AAUYrdIQ"ey&}d"4uinp9r̬볩kAMq񌀲~"zVH҃* ܭ"D>Ws@r$GNUr\p8Ȑ㰥wԃۨ ઽzkV2;cPnPǘ۠CHAZ}^g(ÝY<58!8XH8:i-J'J]̎^Z>oDG j~oA}4h 4h>uqڻJ)+@A4LB&i8~vd]t8aVȬbR!mE#@"3r>23@zX4#Ws>$AT oXP 򦀝"8 mWږ a*1)to<$,3Lʳg6ңȒv5T8=5}|AX1V7\bfuVkE'aωgBbz*`t˒S6U -_=3 V 8 }1d *@-GPX\IlleBwAt)Lm_I)V&D bu8ѢcT`eO_ݪ[CGLs_Gn !81$^BgV/B1Ҵ@|#Yr4'K *?WVfBm/YcXwt] 9p\j&h)4Lr|@ZlV%2Z~l9rCJ7!NgEH*z][z)Q|hZCPʋ_8f'䆹 dC[" ݷq]@rUVФ7p^iP==3`Vo6[y8S6U!ʐQ%TSQz+3bḑk|jVp[ZUA3;6FE| aK*fT-cqȍ2ɓj2!Pʨ-ph&6'Yeǘ+ )*xRVtȌQ")/iF<΂خEe)0RKvSCpjdݴ(dȣXY>|Uɔ86>1c dcBs~B_-Vf#Δ|}e“@8~ZȣgHDHnSjXvVl^="d1FIOm q NO_ݻ)OM/WG9qVk 'Q< M>[iF1R "AhA>i8h${[Rݾ4ѣFѣH;0|qő ۤcoZUi+me6l͟X|Οܦ5\ǩ(ZG=%r,@'h#o]Iʖ ;M )]fL2oو$F7Q= HS@/runLCxR-jʑP$%'B@j2?cIe BQrnuP[ĥA* Eb$^wprbˋGp(yHiJ;{"00*-'YFIu++Q2>{WݱʊX I [D ~ F &}3kDMZ?@ IĪ iLLWF\+>L_)SA#yK{}ܬMD3o=FG".8;ӱ) : ¢)\gw7I弁:~RȨbc@+d+DQ=:\Cc0X0=D5.+c <`n>qŌQCK.#cMdpT-oPܙ|u|X ۱l`J]] FAUĴwG;tf| T%@?uN(T%㾤l+v6ʠG5-v< K@XHO'i4:Yqř~mU9} iy&-ZJ|_-POQ/G%QW6ʜ׹8raV}`(H@v~` ĐT(@׍ғd@2RrZ ڧfTB\LMk&ĊqSc:^<vop綃80ٜ+ܕIoن4eŕђ  &O4ۋEḰ܎M)u=dM)1.: y9LbbEi!,VǗVT!hWcjū +Cp>duK Daɇ ' d}v\qc ę;l+5PCj^CuUn $GqWKJ9y\ S`:\En)jlKuCI8:ξuq4)=_d3(3/q[*SOume1?=F$Ҏ [h.U3.{҅by&LV BVsXIs'vW%;X*qnwML4iX߆5NFם}`Skk{50/ shHzwb\6Kܽ PC,V@PF[!8TyVXF%ٮƻV7q{+PQT|N{ TF y󑼂41fa\ |g9!)'A;Sgqb09=Wgn͇/[F<׉nj&2b\GNHZ )>yُn=f: V :cʬ'tOSS7qԮk Om.Kc /GU>:8KIrȬT+TNѠ҃3b\q'` \{=\F>G1 sѱ˕Um;uP닷tk*F0B\jG@k5S^<8kr%ͅDkVꪁp#GkP@CĶ0FۗvnTdž,سWc VyfctI AYe25A0׀#T#>\i>?o eW fY-H{M"YAY QZ҄= Į.Pl:WpD;m i,PXUCVŊƐtέ bUgs$\pۦgK˛!2d헚?MZFxia2Wko좥RM5^n2)`*#qDLDŽ51pg" S"=M&-Q2`?2 һGJ +φ;=sc,<:4qOvǷ >;oXl8B+yUϑ0<5Vǖ Ղ0 12"gPGWJhVd2=^ <ɍS _MgMC\3u·IjeJ 8j2zyL(tS;N<."m.T!H'}fز"::cCR܌*s; &e +,QM kg2*H,X)g2&lG..H|FdKX$$)Kvhg&~W}ѣ@kz̍{]xoLnI>g4eA3$ܪ~Bz_ kO5ѳA>IȤ-O[r%\Lhi&tvNb/VV5"Vn[}$-$q']KRRuwr~HOp.$75W1De< I|t@ṗ&3tp3m[˗!Elf2+{HMx3cWqjo̎^נ BV"6h4snjI[ KVcmKXd\Z(p-P4kSc\,fK1|yh *4%:c[igįҸdkJlDU5fOf[vx+ pjzWAP>&uIzUzc'}E?k&iH`+Q=r(ElAP4  ك*gm֚xn6NNj*Uii>REъH %zPPGFd sj4jǓ% {W&>IR&Lrœ,ջ 5$\BC z3]i*'gPRwWº6!e} H mNK^ L6sbLqeBJVafF)|9H,*ŚGJ1Aɝխ[cω\rz 1RxGq({,b3a2O@zEgUߌY!Ϫ8nt[l`X'5=[}[$dՖ/ky h]vf,1t|j@kwM\uW\ر䑍;\G+\.l.10[D7Lr5^0|#ywTɄT5>"/- +wAˊ=4j[X0D7.(Jd 9RiIErɩ]8aݝR BS/{lxK+<@j6ʞ4:= M$r 7+&R:H`4ԕL1U?IyQVr=O1' ). S J }aUjf>:Re\XbuXJϨ@2F{>8i7|LӖElo,~`=޼hJXS1N;jqqrb.?MF:v%P: Z#V0LP־CeŌZq` `P(OzL={9gdRiD:hY.U%`DB-zM[!.ն"yoߌ674cjz|HzBwHD ykl&O ѥF^4sӔdAT_~a3)SnqbIDI0h4Ac V r&A7+X@,d м74 QӁaQZA<̏ߠӑh75$R&b>Qqd;`||]NHUf*]z;д#`di' /ҳu6?p#㳣[y4 .H$]myDSjm%gxw@UN פcˌXK@ ǘ.kkչP*~"UIEOqh(qfh}? M6$2c/HʚoRتD@STL 0,[MMόPR5ǒ}QO#ngT=Ē |?~b^;Z1{z@k$0f7)dž82.l eCώq;+O q4N<!Ǹ!KHa'81CaVERYCuN`9!2ciP3x~:^ɏ{dy)<3羫W @ڹO`&IxiY! d92Sp2?1o IkѠ٣FvEsJ :^f*F|R lAݓm6EPL@~vR0cym$g|*i>?-e$Uvn{EOqiPIeuuNi4ȅhwH9|.J6]VV 2}'P} LO.&ʻjJW#ԃHOtR;V*MyZ`yĝ3aCЭ"˫'P fW}|qܗ-A8F?3rW62~|8C%ISR.mч|kر5wDYkefWyPWMA61"j֧Nl;B 9t f qJ1DBfyoLtq͉:MIUՔ(_Hc_2z qP3xfcV>9G_U17czb*ExzBv0 ,`C?㮫+rC5J1nQ]4pPd-i|\>>md<س\ TD^5 >=#R]K[{ϛ.<SJ^nP#nNr`Pj- 4ǧ7K`U]YY8RQ'q8zrO -n4bsAF d\x#x̫,rߘ5r;$}EWPד=Xvᇷ7x #7) pm[aF2ugĘE~f@4O)s_ɍڿAV\=r@J<|)4;3 kʲ(l`;jN&H#׆L BbLjdž&0X_1A_ \0z韟:IjjyvWӸԑnz9jq o5)]!Os) [=pZ2#LR@A(zu DKV&Fv S 8ֺ9 }MZ u5Sa6َ*&1J<n!sĈ<)3 ! MelP)N'jpkf`O: 91rZRl@xV1D$d-iV<4"0kUV_Yս+<Eŕ>į&m]}W8\`(Tt9ԮmB􎌥vFcœ Ez\0&wk0Ld;%<4r˳JPVln;M-,"NK7V܎~-[e{ 3#NJ At;UJ60Lt<9|5p(ԅ$扂x;3 Zz) WqԏpEԣ,O}NR-:9L4׉t8V剛][##~_@Z@fPc#)⢴Jx鉏M͸ i4].sKkqǵ&K2Cq铇<4&J kBXVI<*6X2cqj:V9O*j) -7L)aNlifXجD7w܆6ڂR2PEO}? D]IUXVGSW2:spffvѨD44W 6LDkۑ!L\ʧݠxw8 u\@y*Y6:phTNf,N0+WmyW>z N?_Uвwj"Q=F/j0vh 4] w:wAU[[H`m&$H%՛&3:Mv" Ðܾ`~υu.rcVq>زZ›ʹ4&!?2H\@ak y^z d.z%2GUA-X5 p&,KGSÞX[VZPt/ώc)`3q4M`rտ'*[Uڅd;5Q;v2g[J6D` Ɇ*o4g*rYꙩjt795V}>5G(*)ΣT~VCkls]Y]ZI"c@'+2ba$!d^sCB7#H~MBIpj2b j=S2 <<)ARYR1)EH㞗$U m8?:UlH!eOi u̧@u4MxEgA#ԘIngZ6"Ih>ڻ2bW T"|)^FT Ie~'ri%2Sɗx&>4Omv T[hkNrR$R`kZP\VWe3]e84 Duf?U9 6Vnoᫌ+@?S#qR67IP  L<|/K֨77ZqGȎrҽXmtG#Zi}XlbA۩VZ@ERDg$Wpct"I5PK(92L]52.98bYINѦu`+P%"S} 2y2YMr-K` ++ouG԰$l_lG+;ȥ9'/P!Mӈ>;Ӑ56Z]rMWI.`b$3)M##9dJ: Mn "|oRS#7\fA@Zm@q mZ7<"GXDu0Y5@W!4RgwR@5=%I;yp:6(r igLulW(Zͪ~3%ſ jd{|bߎ4 י?LcAzmy\:Y݊16ە1˟j\du$[ik4Bc-+dS$O´~ ޛ1(zV SKAb2:Q6ґWҁMq4@XJ1֟p4C1:30fTubSEXh`^R9LJ:_%4ǥkH3Q` yVs" Y^̌ˆ9reu98 DۗZ3wn([2VF^D(ӍvP ՄqZ[pfnСc5dkDZKZT&\_1{z%>Q$r. Ŏ@fDx^3q妪0Ql^Z ?Sd¸HY8qM\IՄɁlkqvq %IÌdžrVlXlͻA4·61?O>W#>Z\-7}S}9 cu sz~=Crt=p8F-Yf2TԟlY`V"ÆDM^Ld?J'Ϝ `cCQuWb#a3D!1L2۔-^FΣ(fsoXZsm.(2OӶg&1PsC{ؖԴs$=& =K=7ɓ+g>11 zx|K94`T rf|h%Ba=+$Oird>M@CCϨ`yj#"(e[x]M- ڙpgh1C| Œj9kuMѬ<ִɈRx ?6r#P>mA>V?+oF/9o^^?Wv r(B;rZ}vdPB:Ca#E'Wp:_ϓvVȗ\ ۀfaz{۱ُ٠b^}1G$E t0wPt$݄)A ҳ`ĭ6D_eWsP!$NU:m[("vg@VT*Yտ£W @Xq8TFPݴk u.6*>^#eV׀@]5)_:]ϓ&93c1q"xҫZN*Y_3U@AڿqR鑡YoY$Ay`԰y@`~t/¢H dd3N$DLAmքGR{@& !f 9d\C5'nu5:cWV"Z`qfjĒG[&P)O5nV1 fIEp$ڧmjQHh.'$6f;:MB8 eLSc5B]nnTSa!lVI4N<, IkDNi1cEĦ@%μZT3k> 7YS0]"BӎD.~odVՀdFI>t0yGlY$\!fL31=1omnvgl}8k_=~%PpXl+`X~nq51bECc4n:1c{_A&Yx2fi_}GIJcSi5jv3>^$IŤs2uA6b ^=@k$Ȥ*I\砌ϖK ӌoFVL]. hl$ GtAګF+'mjHـ|-V7i4ܥ ``et V6wߕ5ar8L#y#g\}6+:db I\I% DM؛ݿT\I@~7B;#֥<Aƣ}0Yhhih2Z>? ڕ&p SaG!pKo@bw0@4 q˟|4 ۻB"O䉀)Y6TÈM|"Bb.CP}LWD4Ên#3^Z B0_v Jܲc2bTJB M8WX^&dL>hvQz0!mMn 8el,ac I%I]4z 嵢kW6Hh[Llf֚D8f?>1D -8̲ȸ+l5} *m2+O X֢^HGjF}ݍɲ+~3gH4]5v&aÆv!@?v(24iᤜx Hpޚo8'4ʸ> `m3"o)TEŧݙ i $A&?_j㪳e?F5]A c;߬w%G p:<߬g0̱׾3_aq Mŏ=_?"u@hѣ@k{X m?L ;kDQ4I؈tbÖR1m;*o*xc,:L}RB&Fe~I6 Ek Y.ZIbW$IjJB$5v7Mh4Ƞ{Ed jJd)U9+ʜle-mrh12ˈ Tͼr91U+E^H9ԼF# ()9qh cZW(<8#)-Z:aO2n&uR݌@P"xr+j<2f҂ M+ĞP6S@sG* wǕTH!}Q4 NcNL(.\dPfHٹӗJZ7 {mԭ`7' VX`K1xr)f9a\]P5@QMJeJB's'ABΠ#=pđ"`D%tl5Ƭ &M+hiCX+LP2āi2FZV[xL: %=q* %1#Td׺L(TD /:~GUBX=41‘nL?PpFO3 Wb`)oл.ea¶O3_۾FF lɏ-|Ai_OψffO_90e>+hxmtuq/GK/}Q5@ɛU2xeUZ--Zsξ@1j)i h-5gKR,#Ilˎˌ ntX0d& r5?-1K*^TPN u =4 K% e%NM~ 3j7cV@H`o pQZAAUn* RS4A [`=3~>>ZINߨtnVTEk7m3:cĦm!} S_+d@|ہԀIVw1putPi 9Hf9Q@wk$m] 4dSpqDi 6oC cZTge<șÎgɖ@l7 BBX5SRLJq2asn×ߨ CI.""|5e'*JʼM`FDz>cĝ\fjDWvX HL&&֫Zy Z=d5LjE)M-TQ V#<چۣ B-nai nJj(`bpquમRLzJT5++hv'>tօs3_N3eN+QkcFeguZڻxgaJ9-Vx"Jս5j3@q+@t=V/Lq DmoHjSWJA U |xOqg{y1Lk*6"Lrb쨌&幧߭n-zQ y4Z2Td5]"1NTI M@uDֱ;ibu("FR|TSCBZСHIOC N6aX: B!ny-KcAU`Dq#2*A=9AS}p:^޸ȬhGQT-h* <=+/jX*1n&vbFZKbxAq 0v$3WLbUϭ'bb3zl<]uFFFx okkf{"-X xt2{h<|:Ob͑Ep+ǀV a;@" ƃSEqsϔj2fKW1[R(~^PVAA">inG?A +KU.|:nQHxZ a r׿F\H;Na{gNr#8:i"'>ZW@]%_!bADNA͌c(V^ˬYz68g;$V[`0$ޝŝ2:K\FcU{ȵL%i3uLwRKenZFF#c23b1sAd0}5:uH9.ba$P $d*$;GM) k}-r6M¦B|h)o J> 6VWɍЄ~PhBcےD _TF~m5*Y!ʛ?3rI."d5#A F2O37HU…TwJ>RHbR: f-eJòh-I592qeM]#@gm &1j!cq8bs+N.Ȃ ԩ? yiJ [y-27 0ϐ/s)d$P(y4[bی?xnrHU ojp,KQHe8kZzx|4,ߨbo a^i>GX;7)#_aGu)n3?]e>m;N&Twvu>ljBNNQ4h4h4hyOԿ+XMJ?w`TO_TLS"Sa#AS׼{\&lsu{tRs9hԅ&*A cEV ԩ#bGS3$Y_#Vh=pE".! }G][#1"4w v3l$ùv9p4_:aBh@AѠ4hѠ4h Dq4h4h4h4hN,Y_|([Kn_뫣A~A 5c\c;[Z?vKN9\mjf'ktDd uxݙox>l?Q=e:Ek<AvaK? }ӯj#A?n}gDh>IjTHw4', @E l]F| u[1T(o|G1`7b81hf$?~'~oI؆O9M]ll(Tph>ZY"3M}@ّi?5o~ >S.B5opV寡?>W֮ӳTK|t=I{=-bתlOE[ (_=z]FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF endstream endobj 5 0 obj << /Type /ObjStm /N 100 /First 796 /Length 1608 /Filter /FlateDecode >> stream xڵXn7}߯ #E.uE8@8~Ɩi]83ZEѲ ru8דLR!#ƟXHq"ΙBđ0I'HP`EB.19!o#ސE D/oB 13>/1mEє)94~RFP2&20 "(00DG,b.Utꄠ2Ap`c!qc>WA(1i $ d 0. \΅`JJrA$%Pm)MN#P' ~R+Z-8<Lb1!Vǥ~Ɍh-ddQ|dg,h)|^bnX!u%^)wWP0DQ3 R O:)zu`0guX |YQA Ƞg0DG#Mp 3ch,,ZPIL0:0\L Y,N,tG/o>I? ?Ǐ,iˬ\>zz٤_MO>v :a6bGng>Wbr~>:t9Xzw>Oۃ-uk+\¿bq1p69[Gz][v<<9qr|bj4?],ndZzM?{{MWig}7( lr~8ZVo~>L'Oth"`PG rd6ܡu9ڡᡑqC& M44q+ir܊d5e\٧}:_`YW>QK}vy!"ZB2R%@s m;"xǍшƋcSSW\0'b<3N Ҹ'{O&aЏ<۝+khT$3`gob[I|@H(gޢX>HⲘ5e\Q9~L<@VJWY@'Cd$qALQϼ%n7Ve4QilrcpAgQH"yk8qO# Tm5J !{լ9ޢV^8Vfq];kHQd;FD`!Ǒ!GRLf#H8S-vD V *?m0zGzyy)L %)_ "\$*](UX"\)n! *l8<9hPP}-f4A?;bCخ3Õ ]?*v `7s>ߧVw)%/On[ȁv%v9kl" Qm @땪مA,W]1nJI㿵īLjss rJ|SQ%nC*\z6 P=sºTv@["*(4~GTl|+nUKpTqasd RMkUp)z*>VFJ=|9½k-֚!XB˕P\8@cJFuPװ!,7/ 9 endstream endobj 150 0 obj << /Length 2856 /Filter /FlateDecode >> stream xZoBO$S}I|&V@Yk0EH,;Ec Z˙yfd=&G?&4,ǒIRdq91<ihD')Fd6(mVlE2-u\ldm.ϮYM3S~]tG(X1&8EcXMwpZy_6\,f1rF H@pN-8I yimvrZV7شf.шs J0Jb؞G ;)1zg[M\ 1Q|@7kvbC<"\m^6i2CJ:U߼BPoS>?0!9":NBwؤD:媑BLkc,v=UxEtu YY2F1dgiA9r]'+K+'#愓鍬u@$N7ҝ2y[d]bAi9!b jKy+aWJMe!xwU lwDSog* (LZ/cV^lM4$1C"Ẹ[0Iu':Cd ;orC* ]"Ř!Ċ܋' ~0eƕE0:ǂ8cF+y3ʆtTׅI?ٌ IzKHӼ(*/[ab{ <1aAZ[wF H27 Cqm6"= )`7 [+od㠎@x Md:I= BПY d߄?&qh }G <(K߁X ե \.}ޫ^4 P/ꍈ ~  PAJ` >nOL5 ~fO!"OPHE`c\Ca ?;xM~)~/CvySFʆ>xdTÓ!vhD<9jP'E:]psp,~! P vXQEmr`ou^bCt2;Y:-u;q7R(x\9 ⱨS2E.jg,TиVy8aڄA {P"UòlZ5{W 8͟gTgb;>!Spyx.ߙ@dױCZV--絅*{Py Jcĩ: U(br!ٟ 1C—`]'noCq#;6c*i"}:TNuggOD|Z [%gݕj: 1OQ:Uc[ oۗ]cԥȧ9<;5>:pAw_ޔfO_3OrSl$\Z\^x ,? Zν;X6l_eI)")}^XIr DF0 &VjZqEaac`>M0waξFOL,$,>rkV=P@<|A$K>dtd)~}C q(d!m-^uioJ,u i]a鯅jOߜioTԥ 0Wgmֶ]'2` l+[ݧY~VF㢹4[Ŏo/b{rF}h>_ -^C_>Z:yenhGk Ckf4<*WU vV_ٖ endstream endobj 177 0 obj << /Length 3920 /Filter /FlateDecode >> stream xŝo80ιYh@}qIDWNmmG)i4*`ב əp(لO^13YVo}hK'kDKf4N'O_+>]gL/8?}}|:?9/8QD(xugE, mz}FfYL(5lI/aBuhL{F45#WpZiA`Ry R,r{nk])]Os >}e%2|!DO#=r\hRnz;&@^,Oe5F@[0 ?f̄L( o8 <{(/źz|_ag\m/6_HP5曵|S,7ŇbXT8EהcZSӎ9[Ob=/`Z\0Φ!3q7iT%T0i{"-11.4vcF)Gj"ub"=Si.&P (m_i'e~=Mz7e6~mk N4vRp{9`P(s }Qq0\WWbϞfc_=LŐQ:tUf>^l\q&ymz_.eݗ̊J,(lqql[az_t:r.] \>.6'<ؼF[l6evAMm(7A$*h Vut@Xv]&njܭvݥj/.lb.y[YVnjbAPuYS']"3սHCQɸzq 2sj8SUE+p!q5Eq "m%H)%H*b %DQ`)ف%G#Kf8 \qPm/,BP0 "OźcL8 N;7D- `f }hn+t^[NNi5$ha1 KJGj>'\ Q@`]gŌ29XNA{0X=;# KUve1PpxN<:%H|գЃ(l^t[$tny5 'dvb?鷾3=:R/ $$;Co}HԹNuqm~p ppk9)*fl^f50'O?uqVn!;8oڐ:IB)p? c=ZPs|{|Y6pNXPY mH<%QD ^(L26T+A@\CԁFIH‘?$i>w_cˋY<ݞ?ޟF}+M !n| '$$0}C |K^}޿wt Zh%"D -F%IH‘-} ֖9{V9M)m |NiS-v\Bq M`%40%1ah V҉Ѹtⓜj*o ?n.ϋuћb@QdڈI* 0g L3(!8M ڏC-$*\<(.7V8Oqa"ƀ7hhhFD jZw=hv[9 zY&cRT+A"b\%/iC@c`F wI*{ `!^C!.#ES_nc+pzyi8X&VIM9B΀)G=8ѳc<vch5Ʒ;w00% s dljhqp\#qHϧ[n\qCg!]I3 sctMzx#0&Ipٺȱ50nvߝpn Yӹ1nrXǸz8{W+\2FSz2J!Sz@#X?䳇:°=l]x{19|.lw%%Dy0߄vPCJ2ԃ Zf4m秫EQp&|EwbU/;ұEʎM釶GZ2{W$K`Ef,d[ Ǯ ܸ}=7 5jjX xkj? xWK<Ɛ2 ڄIz[\v(wt#µѻfSqz87nSn[T"MMZ% sm *u?]ޙ@ƙ@Ʃ08N';τ1Lh`W'e>3,=j{`VC EH\Q4BS: (+ #DSCF/vʭ>/9yy;gR돣Z1 ժ&!yDh!Q̈́Q@pi)%!Q7oh5 |mlDSl?9atG\?H@,~("H UmA'}zٻ1=(ycѢ?9jgҩ1y__ r86. ظcc:"Iv.`"sd [EW??%bqؒVز`zzKcYǵl,8;OʳK$D"eP O'EAGГ+P'(4kYYWAKE!g%VQV7V7nK|(Ob޼\AAW'W1q^o?}syk*>yY-67iKj2SM5a\q hsXV:j0]=J0fGh endstream endobj 173 0 obj << /Type /XObject /Subtype /Image /Width 480 /Height 360 /BitsPerComponent 8 /Length 4290 /ColorSpace /DeviceRGB /Filter /DCTDecode >> stream JFIFddDucky !Adobed '''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDh"@P!"0p1 A2$ !1AQaq P"2BR0@b#3r!1@"0AQaq2 pRr#  ~KaB".+>vnvon{"Wq.i7cľ`rDY;")9,K3r~ng(w~{ͺ"FpjPU䝩nQuv<ɷ]W=!:?@ԯM#>?+>6؀RL~Kv7p߆-N p띥k)l$^~si SGֆ%v9G}Ώ26 CB[gB}G,<nUr>:[uk@(@QI#zzƌ*~.Cvt;.kէGВ8D~y6/ 6np '|ޅR,la\ᛰ<}]XO?apYf9U*pgw؅ k>.}n=z)^Nʟb4\zWd]r['X mme[շ#>F}(;['P$( ,R|) IiǧzGw> 9x L@ P'CZƧTyD@82TqʉY [?B=>j{`h?RxՍk4ĭxA 3z> eT R=w r{ax%RƺRLg ms YSUGT 5mO'"e#5'hs~$_TZh tplb% ׊c"$eIm%2%D2upY,xG"(A`cEmmuPa]U[m³r]#s"c?3~lf:4Ѷx:{KAE˭{N,V4Z|osVR~EK45T̤&;JcW*{f_k)۵1/q%)!1Vxv:vQw:> 냥r/GW]ȍ~gW[O¥nk!C&(mGu^GZܒ#L=ηX=u;TeJ`+zy Ncӯ˜jm}^msحFQ:+RqɎa~n\ɖ~z.e|cKYOwvDp!̵f]>ǟ Lc)H1CvRκ?|q3} kd- 3tB`_t ,5Om;>֪.!1rA (COt5׮g{N\ h[X1e;.ɒg.LQ$0!sUS0w4O{űUf娘?$z4&  (n{4vnDwEcVNLySy>It5*I~TɌe^Lc*rcYɌbsYSeǪ}=c|cBڋ?1c4'<γq|o]NշЉjdeG / Q jmڛk̫2/Ճ>5ulϸ󮏌T濊lx)ğ?vi;'e)Lk;GV S8僚l&Rp7uؗp'r[qXӄf/&de1)vS >fR ?uSenfK)#ꀲ<Ԏc=2VoSp:uNe4_Iԩy2VUJpV";1AS[& g E\@ ,~76]SGYҸZa2Ͻ H2˸`gtC0+c:ap+T 0)$jtLu3?` T`"DuuwF_9X=HTF:=拉˴9;gQqXJg36[cF9wte=l$x5vF DVp=^6S\K^ճ 6[-F?ӝ'z_'`^+ؐ6 Ӝշ+X 뷮 E77YKrXS& 99TrUphLK|l{dzurOir9֦ޒnه HA E]b>Q%o\+YdžޗY u"o;N8aK\/ -W8:o҇Jhg}GQڗI`VZ 9ڤxrJ\ \`i\4FyYiڍ 5|ڗj[[Sohr(<aԟiC:GFwn `FsZU GkVkoQ5vAkk:%& `:q<ZZ,.76}@mJR K~بsi00Cw8y_a&1K[`m08c]ћ鞀_vF/BOds\Hlj$-' Ȍ,XImCO2Qbm)D: endstream endobj 190 0 obj << /Length 1960 /Filter /FlateDecode >> stream xY[s6~ϯ#`UwcpLjLln 3)jưz$yE}l'K]yBPچkV@@( |WX$'5+Eqĭ^ \bV3=q;Ѓ$Ȭ0,;FK:уeQQwq\_!^|U obUK7, 01s\$3>DJ{A4 SD(W`lB=$Vf\hqH7h_6X2%%I8 q2M4(kQv )c֩}$@NhJ%Be*K%0°ׂMDnUf = JVB`gx_)DO!ꞋNWUjr+S΅v0-~?IL5ޘ117"W&BCNaZ]PhPo1Qf{`8j 7v_$9 7b$f)t 0,w1`uFx`ovZ0l QR  'u o B"4%@==‡\uq@6ITDLNq Buux0\55T3 8} | Ohn*rJ = av K:+(ݧq}vaGuÂ6v`O v?-ALm@:~sH:@y]yyr6>:hŝ\>Cv>(}kw: endstream endobj 174 0 obj << /Type /XObject /Subtype /Image /Width 640 /Height 480 /BitsPerComponent 8 /Length 36833 /ColorSpace /DeviceRGB /Filter /DCTDecode >> stream JFIFddDucky !AdobedD''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD"! 1"0A2#@B3$!1AQaq"2BRbr #@03P! @10PaA"`pQ2 er2S496ߙ~{AgK!sE<=AXA⊎nK>ޠdhd7:ԔyoOjc-fV{֩YGADİK X #@ܮx{wFPyH}ѹvW;=]S#A SL:5sffJfҟ'Juy,W(^ΚfUz꿖]12&WT-R2qWw*$1!g98gbڌW` [h[t艞⊎枎>\!tfL@Ll\g[auV#W-V EZ['S-+ϪԿ5̀%((dq֧]z{y*ReڐEӷ.*w%kxgteS)(()TS짇@(Ύ[ɋSֽΚVjk+͝|LYҵ5lD9-I%w16FGUEDJ]A^R_P #x,nK.*gB(!#3_P.:%Bb*/6a%J-)mT#k ԝlSufWY+j$co⁨سќ' yfVٮTYh0rucrR73]z.eZ, ~u8՚ v3R$LJvWt(;ʆdS{>u2qil r1&a2DtZ5Rh]8T=‰:0ʲb3U5kiKGD`4gVEU#!źJZo;sI,fVt1*J79FWmLuT)εVuvqmK֪=ZCfbj:4s"E`IJ̎n2f9Y)iͤe+ii>y 솽vZEYmaU݌GoN:zgR]9h* BL_\j3RL}v+i-2eMJȫrjPHۥG*Ue6U@WEw4|YکDNbݡV;g%nCh>jf̮u.“[TL˥3YOt0[L2ui-*G8 Y9㩋2a &,G,Q[]\pu嫩ͷZH%ud h.bܫu2: Y@MLd˱J$z t!45 lQWZl ^ʻBqXrlCLM"tȥf(TFŞt+CQbYթݶʻ^&ܣoJ^ GBWz&QmcIa 2֨nK&bjV;֬Ui^N\>i9(FK&vlZjbYP[p$"heFj "- IdM]s,VoE83iϽKju[ թz Y{eư廞z?`jZAT.S5pCAnLkbGHJi\]V)YcZtDƔbLOi aVԣvp:s2&VyGK6ͼճsf"އnr\EڢU6fX71^vƒ שNk8gWStZeM(EWS궰6C eb)kZKX#&{eLK:9kg=v^nNԳziݠݷ=>:65@z},}E&`Yk+:\QEA16j\᫨Wp2;$-%-Za&$W}sWJ۝ *v,sҳZt1qNO$ɞUV*X滘lIYV<}2uf0^PrֳNWZK2tξF[-OZ~utnHWm{B}ا& nciOHaN[Z9Vg:嵻xʪ5&{6(hd˯]z͞c. Mmgr62jKny`ïguyQj;gճˑzdi:R5۝?>|Rfĩv7nrKX[ 7kUZI4nQH3m`z7,C L/CbrŤ/ԅqPEU[:yWiNnW(nF:mMJk,,^ "6ŖVw j k٬joIˈe1t]Q+Ar,Uhm|7֎>`ǧ><-/&{D@h aYi׬oPz,ҕ,d٣[F5uLߺf^)$Titl ѯ {_ZuG9Yl\[[Q-cOH,-3b%6wT<߲55xwR2bp72N;-?IVVgP㵎=:/^܁+4tY*2DW 6>KƼ:I"t= & Ma&4e:ӫ )ՅDL2ĐLnVcbn`16|r#Z6W~; fk3TI+WՕ/5-WzkT:LSwIPؚ5BZY-[aoT.ձI%+-dyU Ex \FLgʥFf#ke^L #]6k0RdK>;uyuV%/prXs{6!̣e*ִ`5e)̬iX=1 lS)YYnF.SO]Xb+_u Zu?Cvgҵ^Hx115(]O/yi,U CBynMyQ{C?t3Jd?j6j8+ơOӼ|ƖnNj-J@SMT@m|5Y^]yy /8Q^lkZ;lsg#nc8H͂ `VXbQ%׎往UdN%EjZGha)݄ʵ`KF)YkBD]f ls,^Syd洹auLQ1O:G"٧fuDFj+CUa &,U0:nSb`Y՚ǻکMѥ=r$Jd/1G` oWh/ tKC\H F]һruM|^ 0.⅝x˨ZU*8hsJ `, X04͟v il: d!5B 4_QrV`MAҊWUudM!m9bRK%vsB i2_Cgu[UZzuyص53qA**_Y9tuT qohZ:,^\@| z^M eZl4ΉK 35`ګfRt & Yug:Vv7 s:7zV}``͆fj\~"UvN8;oWDh.g]:(j"y\yQZ$dp 6DA( 2#ʐ,bXQ75|K0Uʛ3j5ԱskѯPt1déW9S%sAq-ZI3%P'5P. {ުzɲ"ek[:ēsTDxN2 !O24O$L[EU#2zKx$er8#]Ar*("Dj]Xe3LO)2 jtLsVjc2tBfX;;>#3p>>$tF .`&w33?=>&f>nS"v`101 &cfg~]B C0t=3=3 =Ꭵ1 30@ـt" 9Xa0Nx}C2>'zfg'zw'0G~1`r'0 S=0fDf:3''g0 (~y:ߨ1>;|y:}=L33'x:dOE=q3ȃzpgLt0}c0=p&&:`f{lu? |\ЈD`>s*D\O:nW;eq fL;&aG\7Dkط돁"q0LBf"|LN랿P|H`'8.q ;`#ic#0DA;b |s3L c3 ı8S 34ɀb陙Y~ASO! ;`SLbzbgzb~%A"qǑQ{g`N3 33Q3PJ,r!NXɃ%/}31g&&'ivuܶi$c110?@'nf33R383ɇ3$?0 g '1 D@=>O\z3332'! NFgxpTL@s3&GPa랙 L333333=q"XBFrf ` N+ JcWfD&r3Ls'|;L=;E! Vk!b`ɟs3@:r:fv&&:ȅ Fj `>wLtL g3\̙Ep&@`Ϯ3"}=3=3t!=1nBr3뙙?Ltyc鉉:ٙ2cX^=:?6&:g8vN3>fg?@D٢"3!}A20F}N`F9 QH?|:_ !X\O|?A?OW*F?:bbb:v: ]q>D.I$2&GQ;BDzdgs {c111_C|[vxÑ s)9 a ~]3ӷL- @I'1bgffffzbbc>|Oq,9Bs"}Lg~#3w\L&:ffdvW&D33333'቎fffr돞 Lt0?133333?!ub =~f"] `q8uLLC=@3N? ̓fLig3111s.*fݺ]j KfffazK.J  cƪ `Y_,8aX7i~romk~<f5cV+ c+[w U Պm# @FH F[ҨxU. eݰ]roZ{=f+mU;o]NtWd#垹D)83ab[]Q^scxlj% 2ey9"WǒCt%؄Mlxl- DlT&3$%b@K7(08#&a,1dWxUo:[$V圮(4W^Tz\|q=iˡbp!hlg\7*f \Nyg>DFT\E* sBʻKr@_`1H!8 l brcv >u@r?ͬO͠+MMK]vh\@ Vb+V\`,`meÓVA]@76(\^V9V\NsL-` njUePX4ة6k#\X_5a,Cq}mk5|i[1111. K.bB O#"T UBx2B-hsv);[yqwWli[Z 3j ,XmfLKx.P%XK6%W-H75Ժ[Qbbq%rv,%C#``&r6YbVg[|M>FYn+J{䂫 \5<؋\e05 obLD aSmȃaUz[J5*,/ZTn.mG0?~ܦu]Z5tͱ\Ms[MVVPRd~8%zͯ†{NkefkBTߍ6[1^٢9xדRqi)+G$\!~$7*@^sY`W+-, TԪ5b~eZsm:ȍ4PtO Cz1:Ӫk~nf]Sj͢h7噙V@躰!w8ͽۙ0P_f\(ڪe{S,g𮭑z^-mKisiJX^a˳wcf9~5 xpLgAqc;.2R`IT9ٔ+SkO56UlyYv[Uj*Ys5^,wEF.m]{5h_qvDi2͐{#U)Jn\55hnۤS^ڝE'kץ!):8tZn: ƿlkmR#NAr#dSeqS* 3< Z"<{*S˱7yuQu6N5޿nj -ξx)]~w)nuJoRݎrUC;v8V4C<͟ T.V{Mfb EWE[S\륆^ժ=~{abT /+K5؞UL@j޼`J  IiD⸌6$z밑_+TSff(,+i Zs^F&]ɭNءkƒXhKqV딱M5Gcmi&yעR!jՐk+),6NyUg]Aa veXާ(hF*p5.kPÐX+1-WNb_^i& U¯RZ@԰+](TR ,M`|eHjZrqZ U{݈mrʵ_=ep m."d6DZ6r-v܎U@(o}F9ŽBV͒P6KgshŶYe(#gS ɮk bX V`;A9g mZ=^)Wx"bd(ߘb0``Zr{1 b#( Qieh` E(*2ScAK4Ab+Y%U]F֠/[hK`vՔ\ԡ.*鱶4}!]O"f5M9eC A8dzCQU'͟jU[5*oe-ٍFCshXęKęm2 `5Ы?:ʓ6 öLB^ %`V]x#Ck"{aYj"U Dȳ,C``ާHQk6u (Nޫ= G }(U|,׹EZ64jWJ`^X۹n҉jׯ\]o!3k> eE5"ֵͣ*^ 1P'8bʇUYP MfkUQ[Y_=5&N-P?׹O_sgy< V *Rww,L^$UجUT#r3N Ҵ&XAe1x)rb7hVo51 AYKz T6Zqg-6h.or6jڬ{¤T6s4 }˲5"> Ie[%NvmWGvMuһ[̵6bHrN‰Pu 2*|FZ'|dY zkC2k Ap!݌% a)RX{^u%Mҽ\oW~jjl 6M6> m=M[g6ƕ(SYp֎@/ee߆Ÿ_p3VݴU(WfS"M[ 25Vf%CH*b 2dSg*ϸ8LkdxNFKLxԪMPFKE ə4jW9ľm&H5HSpeg5nm VͭwJΰl3]uȳk(7ېH r,L qɦխ[kj/j7Viu 7-/5d):(k+ll5$*'lSF*WvFb*E#>5Z1n rKDE$Cʠ,+JvNͫ7U`J2n`(mkY pcb%Q_]Zp KHiUCkX]pku-G㸞79&$cԭ^mIҋEB `'HEC$KLH+8#(kg-{vT޷lmj{DaZU~Z6RBn;bkb,f1m56/mw*WM,w*#n۴b{JYFkXݪU+S-%P9 `"`Kk?iQ*Õdv Lp,lħ94W-v@\HXk\dc0m 9rg81G{9ͯ ]Ơo]9 b5`]v/CX5\!(X*p]MT6V&g'z͕֑5.&[@8lN f_I`' -ג3Yd(ej$3+SoS=>jTzk8*N+˖Ҵ+DeļqV;4R=]W<\+ GDkݽ,kvn]FW* Eva$o6ǵ3|(:, Xf h0\8fȕVsc F@E[,j{'۱w'$O]5wV f—7ytl'1s<^^7q[+pH)װAkҺUٳk\jn[u ʗZ3\h- >Z|Rn^ŖV]:e=춦%re[zZeV&x96Xk`eFb'q[ ?[#d'Z\(~DÚ,vxHf}BzD RpQ0.n[((wʻ+փrƍq^vk(XYuBj*EfpN׾r֩OUSUcUUӱeAY++wmVuk F A1~9 %$ =KNd{JTL-GWzZE+fJ]hhq+ \j,gs}VңeīdkmW!Ŗl9,rZbs`*[=\?ul BMk쵠K%.Juh8 jb!|! dh#W nK6e, ֌Er!*1IP1";F*B;E l!T3(g#d fWen \g qfV}JxJհ7 lqZwj MnBBXHtծogll +Ҫ34,f Rx0VaC?J~]d>_Zczl,uOaf1Rc`b}M@UNekcÊNSšWVR%7#b~bm5Ykl!M%6BŻ 3OFX[4V[6QFà]K& ص_aS"׭Yeդ@_&~,cX jİKdc5 gtZA-l33?$A``gpg8Y1 D'@ATQ[;3ݦ՛ev=KW: /kxV]Fex0 [l#=c>(Q_WP#J^Lz'04 999 r#%>ly܈PH!$"l}덏[nVkwe)2m22l;] #v`gu+ VcPHOTV9a 0qq* jkTP{T!v &'3yDp wh=0X}Onq[ f` GNa5jTXX'UuҏOdkVLժޖ׭}r80$Z^` ) d cBc@;),FZ;fYDSDcB f$#yo00dV}K\gaw  !!"b YYGgTG.h![+h'eY>ư۾3ة$V AWg圖Y{=aPjUk!2;5KeU-._ߌ™c9d$/(TJ1CrkWBClb g¶e.V}""vr(9Rrs@Bc"*xr}qdK>{g2]`ag4V%~'/[:0"[֦INH|9 焦'!» T'3 `b1Q H`A.Su.9CA#`dDBaZ(%X(] =+y(ˠˢ:*2 8mTK}<#@QeQk }M++JB%KajP7u$-YU+x9&@ +c `Rq,ERl<ˎx@ !OSdܧN998w?e ;X 땁 Rpd)N$Ð`n(5pHي`NY>95(6m u* ՖaX.g#czblKN a^㑍Cz([BEk{#8%BP `,eI* `2[8`0"Gx\8!灋IR@h*t3 2e^D>5nCl-סMl;]ie,`ha<= bj^a\O&O֬N0r8S rq?$^Ո-K*FNF$9G&(0OPp8TV3.8Qj@neLDf"WiUA]J/*a,mM; 1}U&&EFa,cROVUK sYKe3rXwT+v*IP,r-,w1)%2T4b*rR (pVe˱%Db bI з( W\P 5'?`ykL6t]!o#Ǿ @(`@ѸF0[9.s{F_ULux]mXVE*aQr c3\":t)vTP`dحщm8VgDޘW/"R?v_}~e<ذGuwe!>ۉ?z[ǿ9f9D9& B`퐣#>ܾ_GHU >ŋKe.Is⋟0nsf\;t m+( 8qsH 69G~eOÑ߾Hcˠl6gm ]-c]uH7f) J{u }j ԆD/s1*{d淂e2Tb(~Q!rȟeYljtN}9&m{&] Ý4M|J`nY0 TkԦ^G N"0 !z^QP%Ks/Fj6|)؂M?tXgUsNe4 :D1v>D1Cq$љ[Dy'q)>! {5)ׯHĆ|A`sZKtH D[mubO?i uJjLZQ˽ޠHW;D[}{9DWd$!_o"TЮ"+v$gf4GrLCUF=8\Ԯ'6n4C^: ٬F/4w sbnzbs[[RmV"yi\ѐM䌦XUL:1x#f+Th$ȴyE~ @`mlP@s".{cKIsTM/AsK@@PSVqܮe.60Z[DBDB$#7qpe"3Qꆘvh6D Ż$n=E8jv52H'tQ1/vZ J- YtIz"d."6 1VPac3Ԟ*یm}iI&`tp`M2 $oXrG '&##rnN[P \ԵJEtC%ycy׏0/ _;#wWeₕq()-9pϿ.o'/yJLJI|g9@CN#O@sPx%/ .%0ۑF2LVQF8~'yD_F\5Oa$qwG6'uT2Svi |TzQ,%2q8Â1! ^W]P"#O"S'RȰnt\` !E@P.TN^G4„r7 )؀p(O]8%DVd4u"9x#9-g-ƟԎH Fت*4C+/ב4-m{TH£qaKHl++)YHX=|2)tH2sȽbx֠.rƨǧ`5x9PPfC,\j!G.n˂<Z.8ċJ` 껛[LkR](Riz@z" sfpw8zdT[%&Gğpu%ا3aB3b12%,Ť+݋BbkZKն#\O'!w[pI6iEʻI$(OlM]{LnbFa/C UԏuVgEsT+l2Rtb+ _#:0! nf'mQQ=:?ajTµom 8T @ȏ ,5L)?-,\ K}΀!VcDb;.*ޫfX] S@ŝ}WU3N%l*r[l\[dIŝ +9( W+TE<ԧ}q,CV9(wd% e"DB>Hws J bEvl'g L9(u,%rGcGӅcW83+ F80D2t~֙/ MzXD6dϴ2=1nHdOZyf̚eN2 rߺhm 4=#%]# ZxL@q4Q}yD(^XѨ\zm6 SE(ƳzD~Hzѡ( L> ",+i|<1[@hOPaL{C",0>*+|tUA!E)M5Ҟ @WpU*~~Qm5tm&]+o-12@JmG4摪pL (I$tĐE5 Nh<Zܿu(4[1/&5M>HtJF'n#&3(BOQl<#%yE<ԦGOAsCѪ]wŗPً>/1^8!ϻE\>]Qb1$DN?H&2c(# 62t$ɉ6 lʁ8@Vey!@[x!ӁI/$&j{Hh;DG}q=."N%F`[} J5xcM*(%1ā#ԉa5`$nP.P7csT#wqS^UJ>ɯFTrD|4FU!I?\\U 4 \!C*Pg|Z BĨNYWӐ'LD-E蹍 TDN ́rhhLʤG(Q +&oKw q`DBr™%W%s+qK ,ݴXqErJdiWmh߂<}Ϫhfa@q>mKHF bĥn(Bxpoj' Ґx<(ȼ r8#FᒌqJ銺nD!}P b\wU)JFRr%a`I = D --$oDEIKt@c4"\ZL$v*"6 ,nM]bЫ(p $pBz^%8̘b+th/:z25znC(Em7#wbOp'N=cJbsO%%.ɥ@1&-g&ςhx"e}j3,Ilk|tF4#Z%bG7i/[0*ԾH',H2pOL^g VzNAEQzN یȉn4 =n,h4L& z/s^ۇ DE(˦Xvwz'Dϧ"deU4J}!臺D E,7nR"l=Wi 3ZAĄKbz215Q P 3&> 412"^RAꚏR Ou*5V%iݖΛ8TZ276rqܐ#)=(g)}1u;P-%!?FriM ˁ]Ho 5QjE)Mwbde)21YAȖ4'm۩˧`qHu:R)J8~bՈ ^ C@$(XspO;A5[:|p$;CA[Yʻ:+1hj8]l6dX\pT+7 61cBxPee- e·5!H9'ziRG񁯐D3}UA~L$Oޘ틅W8Y8 k]&U,-S_,'B( @F}1k>BZR:_(Al/v$-0Dz0 Q"3M?,h#Cd~H%}] 1r^p ġq2R 7QL<$eR@B)TLjI OƂBRʶcG f|S ܭƧ i$F4|qW[TI<ѐK"&%K(C ,WHD2aԉ$ #~{lh q"@ԨՑ 0:%,#1%F 6#aNJ&W[$mvvj: UnzPK@.75BV*$۝֋EEQHrWp`SDħ c6d*UT7m-# S_Dc N7t+fMLcۭaNFSp$D\p >wv GnBLsػB[&PD N{S(s 9<  (I@m2,@A/&.8{2Z2( P쬉4N EB#8Yi-G-- "-mpG(Uaq%POc-$:&怈q+UVy rtH;_ Hmw 6KpUTUq䝈/BQwXjS<5~9X0¿5IT${>n -!A_㏇6߳*IJEG^<EAgrĴ)Zd'TOP89+ԂP4(Dhib ?&BGw8EH@`BD1~~P **5Um@o5YMw͕@Rx;TVC[OSjXdZb2ӧGr]3"WQ$.Ss4S F-*lfr\)"LfH"]8$^8 +NbK!~u/&8Jr["2%CM!jL Go d8Ȱ{_TY ^@ժ(Ê1zOL@F)&>ELMkpUmt+b%|z@6M9 @pT6(1tX$k#ikڄ%bd5<ЌEv&'tddvϕщH12DiZO8x/n}MQOCӁ%tMC(@&'躂Ϸu%#nM`rB]9A#ՆG0?d2Cx* Ps"HJ]"ӈv5xENGL352o-]QdLM#XNo̯tWgݑ,E( RE׊ A|Wײ< lJ4&\T !R$8C`UZCP4a⪇1n2huz ZEJ})olC [Pe"T$kgt}S[DED,]rKp/G (6;Ӌ%5U}t@ÁtDmڥ*4M-\~HuHż"<ܦ3l{R1p[n&'h%eɀ`M`S!h~2m1ԄerFNJ$r(Dq^?UNAhQ{0[C.z:cvC "q[j!*t3 &\5956@ҟ%/:cw^d5$oHCe?c\ϛ&mj B=H;#0EʍA%P e+^Qg-9[_4\.YΘGĭ1/2p%`=1$[ׂ{D& `8\dfowC;tQ~lhTR-1,q4TH_, !?D7fRL>2C?PD9S'ESH`dvںUQ_Lh #@^ N&%=vԤ n>n@ǨD @f1 I0P$ jGY@H MS殶eBj7c^H,HrsUhESVBCż ?3NWKNw@]u(T,tUL my1NEΫH",@٧(D8@/n5Hr#dߩ'"6c)5Jq&/ ř`^IŜ:1E`cG?; ]r!WA-M>h{t+_ 1Q 'nyy(u'l":˽uAM@9f+Ѹ뒎Ǥ[ʿ.#F׮/U"T)UaQEI͓H6XY1dM-z jOUu$K*B28NM^maZbOT4@2FDq|smӋ}Ωݚ CzY4pT?%ӗ^Z'j$mcNp`{Fw d\@&8 1560MS8sJdnU:ԽlQ7Qv +cHEBɻHb1[z3.R>j7|G$/҈~Lȟps>d 8< dcFV[rVLӀ~NC^Ck]S0jfL[P3 Ψ/&8DW0eDkf*VFuj$uK*]WVGUcVP8rέ#o!!!&EM[-U(N"GU;P$`"@.plQJLE(^Q .EtDpbȟVķ/D'6@$:t̘VuN +U5Fð]c(Dh;!! ѵGҀ`#C u#aZdۚO^2vtͫ+BjZAG99pEBT^ +~1r>q02cgDb z✽W&tVUK'߶2c1(X$g*gЀ3જT##߲V) 6-G&ȶHPS4VbNpv1uBbsiIm.e}KcʰXv_n IE<Q;F@@z]" d:pirUSD)oNl Żz=""q7*=X:&LMY8"q(&@N!јqVj0Dt0TDL Aܐ7x(Q 7kh7=IB1`|T #ԕdo=3/Z)OʇN NK]l5ZJcl50J1<#DZ@Dw➁3yiEkT}l۔v#"`l1ᘅGmGhCKo`zA4 bHg&ep0[tH{bcmؔaԁqJ&;c|QF!#]q-tҀ?DB;!P.㊐>^I8K rDo$zDO(2qOٶ*@Ru X54[E^pN=QU0sDrY&'Th݅,1I5S}.OO4^pQl"‹۵e#ubRr!wT2āUaପ> ' Nb)t7C"y9-@5fo",'- Tm.$e,٩:-;'!p!N#tCWvu:D^MM4]],T  ԤXU(P|zU@L\).MLQ22.BPx .?,Fø^$Ld@FB?R;?臷)J"1`Y69.F}PSԽ$U*|bH[15 ,c1j^bƇn$ssOnq$j"+q*螾(d[.F6tM?ԎV3# _s2qxF_dç67̢6P)EnqL8VED bfOx^N$:UlAEU@M9m*@ʽ@%%t@d̮W4 x-2ƚ F%CiQ%l5C,hr)(&(ZWt2 0*,U>*軪^2B5jftUuNhZvPKԳUƟe1 Ěr4t%c#]Q6`˾!^Io"\ q= յ{f}`yLȖ@ dc *ԱӜRrNbc[n({tAv8# 5p?%H'^@lD UTٔ@ } z7U)$JT'p r~ tĖW(Z.~2\ ‘(BvDku5{g]rVЋ"F韐Q;\t((˘N q%Q0! A$ @lQ4jT89 0@{8-P ^*;NCHX9rVh5:AVU@i_5Z4` ÷یsk*K=CRg.bމTUT* N(o1lnB>aӚ`9| sY \W)pT*:p&GUY 1WDfQf|X^] r . N5 3'!xU6#aTӍfո'WDwdҰlLC6iѪUE{m\1Fin@QRSd*dY0캭E1GEN pZQ\$D;z:rxʥ6Lm֨+!D[B 2:h!8,2i'VeNJ~?df9*SsTz'4_{cvRݔt(q)NKPs)Sn\!xK&5L~Q\1Vw\sP*]5UjU9Qt6r|<֗/Ts6D/\>Hf 65U' R3]Xf8[ۤo\{&/~:b oɍY1)h䝘jcd[IrL]_UN pbUC k8H'f&#%p^ o7vnw g 87F@;ǽ%ܷ/$nNV߅0 v&Q2 {hO!'];E*|[Fa9x(LE (|%ODNCG nUDn%zvII?'V{Q2<(r8c ߂ht9rMsbh궓LO:K(rJᬹj >zX\.7?lT=kp4FQ]VW,*DI] h- G$@<09:rh P.(|  Q5P="{q%!lڒqDqEb>I7&E0,)@39CqVɏr Mr $d4M.2hqMs JI|ڑNpE'6Mr ThSJ ' Sɢ5*#C"#lS9%bEBmy4@j!vStXt*~D$,Em'&}VȗQqFBEN{>t [Z|jO)'xFE"_6 y`S2֨V,̗Np@0db$jP sQ.98'!5]986i@j F.[]jrZ: +hq[e|h똲pX&ʖ˰=] 6@>?T6<\p(檻ⶓ?Od0 !6qrJDd(d|j%Ej(ЕdGZNkeB:])|&)ڌ^rk7d\&@qV\Qk)qt⮴EZX-`0Qhmf).)\R ٭QHC8AZ*r;T]n辫(vQKtSbMљ48)D dv5]4Q"OPRSU\SjH4&&բ`ኵ*(klNt3%B*bN BF7N(j">1Amf?d%r@,Y<\\$ B$bs E\0OOcȚ:s{#"*b  "r@Ə5n*VLuFl$\*@5 8B)F'橈'T6o F[Ddj INɩTdeԋk*ȳP &<|0 m\-ggǂQ蘚%%j[QMq':cb: p80@I}1 -eQJ b _fN(蛵2 hz`CEpFO]W5$w@6JXmOU涜K&6 UmVQ/9'As[\3Vi ȮH`pTSdž?t%C!> stream xڥn0~ %bS%k&$^sY6BEoOϤn&- 1!h:cB8 8V\b:bHIq)hT¸$h 7259b!‘aqX*AcgZ(%CS,E%x_:s[l|!u[$Ga(` 0?GzXqؑ%$eڡ{u`&,}oWVͰȑfܘiaޕOWf03mwk*3;3(͞Ω sǍ'q * pKspN9NA/_q̨TLrWn"SIlV QO۾ň\HH9Vע$ '09zmR$>A vi:Pڶ-μeνĿؔUgM-+fvFXl cw+[PΏ `k!Pz +?_X0X kpPE{C{x$ch endstream endobj 187 0 obj << /Type /XObject /Subtype /Image /Width 536 /Height 457 /BitsPerComponent 8 /Length 27779 /ColorSpace /DeviceRGB /Filter /DCTDecode >> stream JFIFddDucky !Adobed1l''2&&2.&&&&.>55555>DAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDD  &&6& &6D6++6DDDB5BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD" @P!01"`2p$# !1AQ"aq2 𑡱BR#0@Pbr3`$C!1A" Q@a0q2PbB k}\z:SC~};-eڪ^voآL#_ gbVB͏M3k&%ִtM E~[l:Z쪣te-\)%v~j_I'1N\= ReumSŪpC_i-<=evuRxfjޢ7. Azcq(5t:-Xksd-H FSl^G,Ae$i/,ǝ^Sx|oI 6Wbr 6՟GrYo_bLoLI S?qqquA($f/(ms~^/ΰ^W/p*n4(tZ5s5{[a]HTf ҩ55YMgDi9|Ӳ6pܟ]>Vl$җ-'ʰЕ.$Inbk3ݨH9~4d-@..}dxDW(jy6ٽOI"殳73^mak3q.pv$wgOht+UZ[364ur_QoUZl>_y?5ffߤiÅ:i%-Oe枞W@֓UM_'uR2L} Hz*S׽$~wC[?l_ u{9Yw\S6-dLRp5>zK8՝J㪩HS|\B.4UAf4o>@}fUy3 m-GJ2"].egjj;VSy&PbvYCotv,=F5zHg|yc<7305Qsz~󬏃im]|k{:~x#wŮUn7C G.wt5Ohoqqisg9=Oٷ4*he_gx]%R~~3vR7nwy2g+7Yy1rH=gFEIuo?4TUG#UbrřJ`weET.]x>44(3W]G.q+U&4ۤº6j(e_gXQ?q;wm̞yͱ~O+W ѹO.m6B^m/}DKNH{Ycl쒋|35Ƕy)l>_:-nr5hyݴ 躅Ұ`~̄,79Q4 ?b#̿I1y]}0>i'֧;ndUzwlqi*utCLۉm4ϟ^|g7\ i 1X9 dsE;'490,Wo.;5yNT̼]v0KkϝmiZOY]FB 6}.gA·j/?ZUW]ʇ\~=6wI_bq/!HőcOSF.?]AsJxXevؾNvSL7}evgS[Ublp;x_ؑ;NܱVz_tv=F/=W9gSpyC7Y|ӽn_ RבZ . eWG9%V|ƢX(L?;m j5ҧgbc=SiCjym_ed%kW^GI?u@?rV5LX""'֓3OO&cY6Ek6VcnyW3cּg1>&?VcE"bgg9j~|yE>fbbmOXL-1o|#&g⶚Hm[ZmHG3Z͹ZG=ϵ?6Z'ω-3?Vh?_vDr}}yi|LG#X9Zr&c3"<3-13{|E"c}&g?Yͦb#b93_y?mco1^ܭbc枾gǘ$וϙ彣39_ϏϚ1[xGLM&g++_hL֞f5֛O'1HO-y"|r֛Mg)޾+>"&cϽ_WyEf+yo5ǎ3gi+_31ھRxLbc11Zmhg۟1Oz~k`LrXE}b>X+>"<ǎMkYi6rc־5LDL{GYkxYi3痯#ڳYV>yi[ו31yZͦm3yG7$x3Mfoi>&~O&f"k9m>xO?3Isז>M|W޾67rɬsbM3_Zk5Mf#6ֳi>'zՈk6鵢k=Z'-4rGyș'6y+zk>y+-5LRkLG>?X?4x?O>?Y)|G;"m9eCM gȏ,YYMZ%H`7Qs[QК(GQxf3ZS@Jߐ f0kf7(ut 2%nDŽaS76|YЬ8uA`&o\dR]Ol؊hRaIުsSOѓ,vL$Ȯ(145ڜ?7%} BgTo?>3οBQ"oLz.u9,T f^{uD;=hY8Yakf9lZ*վŜu4-E%jk߱8j ,|wJ=e2 L-mkFh6^NҤFTVUoL"gQO$a":-T' =ن*I'N_ViW~/ .ښR{N&NY_Basr.<_zRՒk 4p}p BL7}KQk]}[Z ؈ )E `Ŀa(!>"^LG ^4-(@Z_or\!7B5aO6`Wj4kD5,KRBt̾~puZH퍏G뤍c3EZԵd8hbˌtY};.Mk&< u~ WDJ3+9Q50j2, R*i֛#O^3 :JL:՛7rV+_:;nYrztzK}k%`R.VZӷ}Z ]ZaAT ҏR#&P &ʊaV3- t ɚK#??wYٳ"6iWٸ ZQ3sq/~K XKcJ[W?F UE6SHm .ɶRZ3`}oV=bDbSEYX=ؿ8$z?bU/n%)[Hjj=kTDSK@+$,UVйyDZK;"$W^E952n6S9?Y:B53+ akdgp1j9hjdWdc\WDM~4lTVܩ-s(,ޤzGlg$g񨎬kH0s̉T"e%#A; z[;Jڼ1l{ivӬXlOv2TUheJS6C9MR a{laUBv2Wox{?5}fojg:'hkj/uo~f^n=c0ּۘcsF bӉfQe+mYͭku8&Q*2foO !Z#"#Dk) 9s4W@$LtKo\Qc,hkYu:]& Qٹ#9@~2r2U}̓LMXF?D@LփРG`,7 aG# J״I|Zunb2LKPmrkc6(W.ZPO#`>9y5zoye?WhHc _g 1rY´m I#=, [ s)F5̕n%YyZ-ͬS\ֈ"kۆ?Ħ=MX#m:_Ryeu{vB_P'zH_ƥ]j/B?!0~3ZvVz#Ăq p]5Y`%Zf;5?IWp6 7K~#6 d 6Twa_=NmjQP;Bc}CEdյN7B̻5)(ؘmCJaT+1sڛe,.:`\{%=z0])?Aޕ.8\,uN_+W9Qqm Zi Ŵ{GvK8NR2x;7s޲DeӴ bY6na[4fR7Yb rHppx$/)3QAkɠ,t>P/]QU1a5jӤS@nY*k>Ca#:0"鞪? 4]<;c=B-OAPoK=o.f bcWIУK~4Ũdɖv㳋_C$:(6>֓>c9Ɩ#͗jx:l]nf2}#?=bç Q6;zimX O{xr=ʕ Ũk NŲB9ev9@gmYv-׏JnȉX_ez#VC"F`&d,kab.O @cˢY[Ip; D֑=fC{h v`ND^HThA@rDk~+ YY_ԪV>#Kb#.$~إ( Jv:EH%bJX_Fg<ڡ#uUrW/+{PQkhrK._~nq *;{%*u5ͫMXȳ$wjM4;T01R}A޹_Z?H"m$n')OZ`x [)ڣ.Ul=h@UY-+җM_\%5%P7ٶWd2 7 %u/Iq-Q+Z"e^ V;}Bg2byAJs5Em®fV+|2ZAe-kMveV0Րˋ  ިsK TH5MWl=%2[WBiDC!^Wn$kYg  s4"ffr8+n!ԫ*$Z /2vh7po6$V2k1Z+[Ig0WN?8OP W³ M[K,]r+n2\׹"1}Tt4e 粞2zX>\o| &fTY _j!nY]l!k4/E/m/>Zm!SF3%R ªq"XY*g'&R1u֊Y prEji]iG$1k& f BXDzb<]T[\(_լی)|ՠˎ6:3vq*Ϟu]TZ]a0i`.qnQzj#@T+Gfi[+ KڊkElp={< &,QMttsDJe(sQRH/tcCUy_R?8]W:OTν/Bh$Ke[8kf3< h N;f>[KӗTԯ^X(Mm"f4&cpY =H` {V')k}P-*7ސCtֆǾdWg-r M.ZzԁaU>CCr- R,ըݤCM{a@ Ί035qpVX()af6H[ֽ?j6Wc9;4jY"|qG(4zf h3 Xx4~)6&OZ2K!T< #E+q ⵨K`$B-=jl0a-VB3Y^7mz͕آBv]hz5)h04(#ū&Z_ D*k"ĬzmW+#iHWTTtSwWRX\6a<;"0n IP\(+)ha&; Ȟ+ amI(РR ̜C:+Eܓ咱+{,XWeMʻ gM%Π7M@KrTy/Z҆PSUZA,؈+nm:ޥcTpQ`kczK| 2)H,E߻[^YЫ[ fiq:>v sAjPU6isb;#mϮ^mk Š茏QrѲ} iWf @ۓ}i [ rZ۹$Kf ,&zsML1}x;yS Q_mDϟ>?ĻVJkk">Z0dE2G~3}Kmu | z_kMC%c? C5 \E(zƀ}!~3iTqw&FWfs2wWAZ 6oQ ˬzp\p{#u6RI3=zUo^Q3O;.]~<+Û7\ Sͭ6 .6; ](Ŀ?*ѹwm i$$|E֗pcY̰r*+%ܵ%[9ws*SؚԒ~M$aƟ" OM#c/#J;kXnF&&?ԶR5ԙl2ܝ64uvC$mܹK?.>֟f-v[2؝Гڑ2^"jK$y)^zHG$(jG%byWjXONߓZ dc[ 2zB.,lAz4g%%'T4 .Cvo-MX F])! 4J!ҝF{NOI薭 ~;б#HzepLK!Dvؽ;#](rD rj:ŐSK/dE'ao[;~'ĺu㠞zz$I;dG;vж"0~|mAQK/DQqJJ!9QŅK$˓eS*mn\y\G%rԔeޭ4e܄C&nXEW#Cz2LcYc'KiL;x3DGJ$}HF0&џUď:9tbu_KeƒaKsW:Qcm 㠛q9/tRXRG/~rO"M˙rV_4B!xSLbSVJYՂvՑHdF;~9J۹؅??7c1sjxECjj Į5ԁ#iju9l > , MJU%Zr:әStncE&Iʯ;I QzW_-C ƳAf_ L#|EGG1qJ(߹L4΄/ JGTp?YƢp 3 T%}tTd$"|)IWPZ 8~2h@iVCl/he}SbU`eU GRoJ$WGڹ!Z$z\~'1P?=,~4&q,E^C4MC1+`.`bbT𭑵xum3Gmh+Qsmz92Jߴ\bK4llYH=+b%2GIηWG?.\,5ϑﱛȤƧ %gp}OI$tɓPQUUkNFPL:8V?HmJq4vom@;i8]9I>tNIS< #c\A{_yR<8< Ri}b,&g R`)A~kos.Iԯ)qG:, T="b#ˍ Lci+0m1D21n;Q?`bdlP<|| Z{sʺLڂM>F Ȯ,}Q bd%7 Jɍanuq4~6h<{1L15dn[Wc$ 4"O*%P2c˴o-J( @Rp(2HK톪۟p\sͷpo#H h ɀҏv:4S q?Gv3Fi+*"f#tph$ rȉ^sG&߲+jX븥VtV&~i̎nU a04"8?n-RwE&7Մ(+Jd?g8ƴ"TP]TjM"l%%V@(2I4x`7 Xӕm7EwwLNQ =Fq_cvjEXF2%AlfC$e%@[ "čusNˡ4D7}" fgr fQ;q *[$" e7 $GV" mb|m6mUp6k}V93'hb|) iR!P as?.L[$02Z*~tIÅ BR0%O 7mQ|ʒ@Vnw@H"CLS{t 7}I~3I0VcLٙ&3JX(_:p΋̮SJҟt Oqs0 I,OYA4,cʠ#<|㋃ ŷqޘI@QBA&`U W6M$r!NS:N2w8Wo:aq&7PqF0>͝mBlHYT4FNER|("&vPŹ P  W6)EGVWonU9\-lJ. 6 k&$6f$ 0|k&uEZ+H"5I"75\42+4S6:]pVehը*>sm.p#lt5&( G4Sgkx>4[z LEcϰevuӝC~elVB!Eɰh 9 ,Fʛ6͏D*G;+`bl>oE^|kzeygFV7O@ Q/R!Η sapxgyB&z1J튂EXҀ|e"ŦD . "fG>5ݔ۷e ː͠(.p6if3E3(9fE&\㵕}'K]EUdI!?a;FpC__xEC+5: xyRyG*N $s-A^tE tqX& OMTC`'h&PgXT^`Q. C"D!$}cۥ݌6<&UJ!t|!A'yJ~fasȷ/|@k`06]ݼ@P $ϔZ,yP)$n )#) @)`0u6aE۸ WLj.tһ?h7]ø@SK^I(cրpys֊e!Yu^?e9ưI0I]jA@GyI4ٟV?ʰ^pb`l9̾IorV<;ҡ"pJ& bѤvyM*2Ƃb=-b ^/3'һ v1W`5%EC{:&a4q,CXAZ>|he XKƓ*ClQ4Xc}) F' yoCb~pyG` R%t1z;X\~TH︃}r9}\ C1#Kz %N</EԘ1AXl Q=$ގ5Y^Z@A5 *u__ %^tNZ .$ʙx#ct&™2K%~aP?hQrc7q+ >u#(+#)iu &jiqlxXdP~\XLbL,l^:(icy/[H>α\źy}xyG$Dm#HL fO=!:~ 6 )"Oα $s[Mc𠹎Փ&+o ;AB,ߤgc=:ϗ*\2bj˅eR2}4U:v[29۴B6Ƈ ijr 5b,{ 5c hɍHѷ CIf۪:)|ruOrw n+4znH'c$O},v H4|-(o:l9=T 1e>,bǨS> pd]&CC-<mS.f;̝OJ"yS6$f_w,Nx؞ۛ4:\"Ig'w V\!2&ہ9#ǐ|&7yPm#EW)R`/hau1|q?r4X>..B(65lu>gw3,+XqyLlAa&#$jT!cܠܓd+b 6lP2a}66rTb$| H17G&F% 5H]z&τw\EhKm0<(F ӄ^"y"u Ds1ek89heHYu8,ƿ/mi+1q#p1OYܸӃ|FuG'V9Tfkl+*D# Bd~?LnhL2fbA ?y!h1KO\ܦoyj0fBrף璻 .0vͦTR{}5,N;`7P`{4NCӥbu3P|Ķ7<8Q|WV#[1!qr?: ^)r1e0C4+ >s]5XaŸ&3#6xMACshэcAr9 Kp,u,C($0wQ> $XpVPϵ9߸xS>- ,5ĨS0VGOoc.YQDⲐ E @(5n̬)*@]XHDXO55b#:>6$%{uȠHNM<96Џ SQ]X'lPgFcз#˷`-k~Y1&8aljFР=S3`q>dbI;6^7.>Z9F5,5X#)p_rz@Heұz'vf2d"A)@Lr@010-5ze^"lRbIkC/)s&\j6#n_KfQ ='L^:FylAAT#6r\cDF· f@DPT 1 [<)lxXpL([Tenb")mbF&,]hc]7ŽӨhxS L_ʂ{8 MOqLQWsGHE2VAm#·e 9"D$8@Y=1r$hdUkG>>!ۘz;Rh ølx@J*u>˞HAB·>U#^Dޒ P7 [o i"Qg@iF=ȅ<>SQPy#&ȀnY3M=)<+iQ齦-7ZSQ3.Lt"peP|{3dPɛ*E1ڇfo/X Eύ7S0i#οiԨ#Sc&TYi%BOM/B_I\hrF8'{`ջ6p8 ~DYG"XijeJ":DŽt"O/JDڎ0jV>89lʾO*c@\kfng"A .#wCly /t̰mB@[1Aj.R؀" Կʱ{:lY/&o[Om JKK?:bqѺ UY1EkON̋|YSak@|n{ |99 1j-$j8say|7c$[wVpvǤx  ٹӈH Ώȣl^ \ͣ JknoMh C EhYxTfRv>ɍLy5@I] J(<-H8QbNոA=И1MZؔ 0yM$mibIK]نβ6wةek4c-n|Z-G1~,8S`_P{T#y h2ڊ9 Rcʂl)䂻cCW}Nm ~V,ljBA21./'){vַ-S?K7'.g$TDmMxaAs e2n F_/ㄏ(:qҫ Easx^Hdȴ>2IƗ"@qꬃa΃+5/+$ITټ} T!IG?2,9ϊIf]hS^4S!c$^tqR t xQf$.lc<("5PSq14ZKh+B?r:a puFWq- y13ۗ:QcxLyXx[ƛ,ڈNYM+&UV̋6qkƗkuŢP(z@)+δP.;^cpޮrL8 +<-~Sz1,`"dnF`B4m>*0r 9TVtAL+~\Lm77aQD/0`iYR&E6[4)%~U5@ >ζe=[nѺh f-7pt|qM.2Jxژ#r,ӡmVdњ Pw^cqX 7*i6Wed7*#7>4ޙ_WGj"9E;xO Ԃ@EBu _0){JbJES*" .?h0|Thc+4D*u'cɌ*1bbJL2*fO̶xܣ+;@֎߿ƕ1,ʘ*>Bb&<$6根sGUc:ŔnV^4;b @}"is%)3ƨ؎j >H,F]7 1їZ> ~d*mH97~ކvTWo[ΆLPێU= x\PnjKetH6QC<؟W(H6f$;lljdk|$Xy1[|v@+f7$0(#.:kx&0j Cp&k;Dك d5ީJŃ^E&HҎDegv^tKyǙw3UKql66'YT3!z|yPLDIR~_-k+O]fH" ѻp>t?:qm$(lWlS ۤzJn\LDŽOH ӌkλl-w`F4C'v\Mw'Tvs(* OPćirc?PA8VQʎ566Z>ؐTGgĊԢ*b>5۔\0'_Cq}#η$&MJr6(E|z+X+^@2d?T(MWpˁ—ٖ2xU S01Hmۏ O`f8)P&fa)qQT;)r̆ DS;*}wxLli0glȊLN116P y9dI\ .AOv_QUΛ ۏۂy,kfd-DFd&Q*kIHƆG{ ?:+HX]h6󫝪.Md5sCΆt%LkCHCBi ϟ<øOհ_ <_MOkz9AwD#_r;Qo5&SŸ;rHg[ZkyW`0m[rC3WeIMc&rXw02@)3hib.G+q .+hОuOzM6<=Nk|bqjK48ۗDwkA0F $O pvFj]?v8A1n@e> 4 /P\O NfޤHōd[ d@ڳƛ&tRCz8=Cpu+ď*(ȝ@<28<뷴2qcAH؈]鮅&)[(1~p" @B O1W{.G[1D za ?]+\2(36CG!&WH6OmG -ns'Ʒ;˹IOmZ7֕lA[ZV_pq[p Z'"t쏺c_g6G0':ُ9ZEH16}% 'J:ts\iy/r9P@/G"d J1Pop0aLFqcэNc+< H4@b&V43#"N>F临Ի~1dvF2}ı@/a y 79($QVXX֕5N6 XΑM*1<9Wm`7PLQƆIu} mßl .&.u Hc x3KrQd>u]XA6,rr2h7*#]$7:,. v :a"Hוw9ߨ;cjP ohhݶfkki43w;8~qQkH(P’Y*f jm~"Ո+}t( ˼^mFC>>)Q貟 &-ʆlo)RC-GB)xp{"d-Iq 4&5InB(lƻ1;d)/$ϟ,w>T4(_lDn w nˑbM֤|Gp(mv_C.d6A:M(}|xQFIDFp5+Mhڕu}.iT VhIʤ05&a@EK.BDoatt7p_Ƈ  1[US8ٗ[OdSvo?HUSM52q`]6P moWIS_\%DbΛ }Q,O' [飿XA#?CbKcLh`P:̓ri~ft\kɦfS+lux>D LXrua› Ц<μ(́4J@HkwW(lGٔ;06Vw/αI~D:Ž1қ& I&H))Sk@m9kG"2tԱuU$/>52~2<)=SP4ne*Vz<+.<\;vy0j+vc!6xo[πֻqO20S k@&RӅ.Aw&s'3"̋ql(` 07]^$: H vx3G%FvmIAFv;'q+dz~t1a#i&Pː&_Ʒc,AO$~Sۮޟn7>BBWH=_cX 2O' WX{pqe~vWb,2c1u4'N0ǟ*G#G4їyuy8xa'6E_SLi_M*f•p =#?A+py$`):avw]N^Qʷ3楉'˓-<`IJd*_uH +qmҮ{x !IS/op \IcoGx;yT k*'ik~Il.gt?.P_M=(ۄ\ ѹ@{2hbi]Mr5(%t2*cݜҿDD_]*wr:RfkMvYqbix1+-HH1z2{XA?QLxS.27_CΓ(( f~"80?eEHHCCLLBk1FCm2ycZ+S΃ŸA)q: a҆LCgGP!axɨ۷Uҷbd-4]۱]Kd'sHטYS;mP#Qz :(@ q# H#c!$K_W +:egQuc$_ZaM*pnXAr),[?aKMۏI}us 8(̻Z} :R_o"~Q[UEkp2 a (1?=> A\Kl=$ܚlKI/?-N O$ņP<~M  ^qz5496XLVhŘ?)[^&Ua7Sbԫ1AeS#S˓eb-1 &cIMJA‹Y/I/%I¥a vĮ Z44p.;Ub4b"Em{\_.14+\y oCo.GTk&(̤*wpC6\X NS`vn-w(_GdY2NTʶ6QM*#'nMP`5ͨixV Hy/Jl8HGc8 ϗ>i^BAE ĸ޻ED,O K<Jr,pʓ0B!'? endstream endobj 223 0 obj << /Length1 1419 /Length2 5931 /Length3 0 /Length 6888 /Filter /FlateDecode >> stream xڍwTm? Mݝ #A;UA%U$%$Tw<9u}\wyX@8 HA AHi8, T!8| tE`qi4Da/POB±Nprrx`)) _@%w8 z3q`8%eq8 +88g x?!!?@g`@ #Owk p`? UOBd rGC |p@g C 7!GAqXA,'Fe׬tPAÑ8,T8 BDy#9"?a8xLO oIJH@Yg_4ӌFx@#B@`0p'x3? h keg _#Rl(0P@X D%E?FzstD}#C ?> Oh8`/YRYH헟wㇸ#|D ËCCw@xW D 'XT$ێ#|w8o2= |7~E|@s?\vAx!~?ϡ~jRXL` <%;1?/^/(>tDa?-&  Gi'iQ00Z%oQY# a[r\ڸRq^c`u[.}e+ 썾N鋃K)[ +ߐ.aPpp3]7}vx~gwmE.F6ɪ_B㬣3ovkhgi{ٞdžh{_UdU%1-k+qUqˡOQΖMn gT8gc6Z,r&x-C~$;Qˀ|!֬' b#vddO -azr+8{9FUNǐ˳Z7{>i.l%a"_6+lA+"BȬ6"iOhSkƣ&O0]d,UtPd;* pAJȞh+&,Q=VՇިONB^:D^!q'[~g[@}яk2f]NE}/˷gk+FΌDx;WhRW ~~@up0t#9!Ciq ge rAGrDXws宰[uڱ_@/Pv׾),&k1p9/"dguWkZ¹ jBS~_5p>˴+_.wC*vmڏ!{<Ͻ-CaV\ oGNL-E\$㛎Ӷ@MlcwifWi% HOJ3GH<Q0~yZoM7FS&]޼JB7{?zDټ^xU=}M#?VĊDK`L) &0;fMrb6]Wyp6ġfshQI){1i/0i>,j\K '!PUpIۨ Wa\Ԧc[7&8\[99lhzC WBt1grY`*_}jlÑ4*h-nEPצy3+&Q_'7rmu6 _ZFf,BoIxORyj#$&,|b] l;Bi8/'浇/O V RezT\Vܱlje /v{do+ *7T6>ٍ < t Sհ\w<59m IDґ"ƅ`R9aDد.5&o9 ۡFjO%݃a`T=ȑjX~j3[Z9Ęg_yJ^j8\G+|~=Y]82zt9:brו(ttP [Zj Dې):o|X*lB8þ̃]c ϔ:cϢI_vh9Or+\ _]fO[VVMd(?SuT&B@my5<qKl3N'u|No|Q J1q[R;XbZ9'oEI!s [odlR:0A=͔h!ʞuqGN2_HS+Iq}bmO?tP `Wʬ_ 7p:8e.R+WK}1f=.'MDwrIEN׭^EZjrQ66Irw UW_r瘪oSFgoYQfagmF!D$MC,O^tEtXܙ,4{ǽ7?A>`{6@5n9N:9/)Y^L^qthK=%"%K:NS[\$JhM9O]Í r-UYޡZXzSFW1~o1tsS*lU bk0c;nU6s]Ypq)i8aw:J 7LC7+ѼPv5n 5uJ,{.-k4.;pcɇRnO +kZ˶~ɽ<f ܕN.cF꨻&j6;D.sr[R@[(Yr)W1GzCv6&QYAezհ*\,{N P ӥ!k4!-4HKK{{!1YZw{@9n!kSk$Ddнۙ]ni/$ٯ5=ku>m){^Z]e űS@t} WXYvoxCv^uН  ǴPbO*hqG_^rtOMP8'0~pdTX9$Aop3dWfmd!=@jCcڄ#GIe}qn eLoGVpqI|\t$YȔWc}iɇ 9o-*LA9NgPq-1T˽A<ɀ',^ ^ pͪ3q1k?Ԡl]L1<3Y$`T-_;zB1^yPX,ʹc}=@KP<e4op ;McLk-OPb#WxeWA|>5`8@$:'S;T%}ݢzP4*w7s(5$q|k0xv_m[T9Gdoȯ)4ш 3s ׇ=sm/h J68nƐT %!$0. ܲ8Q`}@{"9 .#*H%Ɩ?h5m5|I{ע(A=HX?Waf&N6D?fdwëZ5@~rYaIUY9+v> }dU}6C:v舭kMiҭT3}Ǘ8u~̤PcFYt3dPuwAk*̐W^d[3Vq|mt(E֙l5AQ/82概qEB >Keo&R%9\^jjָo\qB=s'Sna0Dz,%Q?;#٭Ć#W5"XڜҶT bڶա2<  㤗> stream xڍtT6 JCt730 K()0 Ht#4HJ|cZ߷fg{k}_{ag7SpDCU4_P Pҹ@F04 b7<`HPPkS8$`a,&%"QR2 HĮtE]2\XRRW8 E @vb+:@!E# &% qGeyoO€.?0ry"0(plqPCs"~x?3 +tu |ag zh4/A8BHl< C챀_7 K= (3 *G%+2 uWd ?'' GO7c5msQAAAqIa@}\~7ur ݐn4= ^P' 8Ѐ=;; u},f]/G$o hf/"D%Ǿ3Ϳ7_V}# Hm<p2[ :`~gmBp/7/ㆸUDceĊPSo)@a@CP@8F*C;ޡM!HϏ sxx`g%UHǟ (=$ uZm@DcC,@ {b5ju>8uM"#WF4Vͷww}97)鵧asC]-7U'몮E'48}rop4>@?]M;#J{I:mj>o1S=Q+bZg| Vs3GhY |ww|Ȇ__2k>n$[ =<)1hce; W\KѤ/,8S'S4 5rؽ8DMkW{RS GJ[UymBqLIg \$.!?g?E=?^l4}%. b;=% d ՠ;T )xJ^oa}XZ~~ܛ:2\Ló|:a(trfqHWB1;Eډ l"jce]VaO$LJ,mUv*GI:-+P}Ez(v=b${!/26¡J} %),af!΢'eg壔{*9,|R79o_ (jOU*ih18*@CMZGFGn% u9{&?5a ( E=#& z+, Li]Us2131W5t.:;}ujb۞l|˧%|eD#w8d$bu(-OWiJ84*utiP/-E՜vU}eF}7gTWt4Ot^ <M:n^w =K4l?EF[d;E*'8dLLC iI-_ͼe0+NgC9پ/H.S"F7뙘=,v'KK}srmyZܴX8@r->oA`.i-QJ6=oRp_TȇyMEs-zD S|Mf QG{[.*/_9\NZ*T5p<őW(ir`T%)Fys.R;.F{3qQEjI }rq‡Uld&_c:UJ_:m.8Ω]$L;v})&nCEm (F)K!o(.]v>B 09Nqd6#%[ӝ+ ZHb[ѡg7.#]Y )ήywAg1s2qTw 2N]t Pk8s-W & "cNY[4eˠWM*2p?:m9}}]jB~&;!>W_Zܤn]Nby}v&]L҇]NkmCcoJ <Ѝz=$m8 zE@<WzKEIˏMgswce>yNAhz))SDI.k6v*>lX%$7,<$q9KH6P'RC5N3lMg"9Dɋ~+lB37$/Y^5mJn=#oPAӕle4̈z7aF8tӱ Ϗ2d7z[%^% bX1p hj_H9?aΰ+?*Fܰm!$ywV&A=÷rLʢH:fbm4sZlۓ(!'{ 8H-jVܗFS&\KP[jâFu;Y7dB/yJ$6@XP?!OC>5 uPXX3Eg;)kwe,+%kz nĪ[ x&~ho[m^H@i |J1 eWp|pCJyӏ=ַB G.=Q.s Cԅ/D7W+f`}h:.R^4$qfntD85KY~tE*Ut hEvr`T׷qQjw2ˁ%g?%̾_b/Ns)^v,,]t6lfj|xvX]SkV`C2<~Ev%aWCfۓqkѕ}{O4krH+Co&aȦ8\BESe" i6?nޕO*$JTQ*;F}#Mqtpj^ݞ@ߟ_b,ԀgW,W to'?߾Y!wY{gYv|zTw 2#r>c=yziԘ=:{&^/mQl|T̗6tu +Gƛ^M8L$~6|Ctj ߥ-3[ktL<8b-O?u?P{=܋3ÕpEg{L+D{`TMijjj׎'/⇉/zv@"UK1?exV0Β.l:'v6ԴE ;.iܷ oty`>5|:N"AB]{HYHVWD~ߜ{!K{VfʴRbJi|x)"g&dXP=77}l/ͦy]xnt 1q@\vc~:q֕Rq֯Qd:O<_x a=)(coK3W)7:}aihe9e(N4iTNȰ}šu╘u wRtsļ* ou{L٥H߫Ut~Í֓`UG5Q^Ujy"֫].d%''L%~EhGPk:eL]tcd/r.@7M5GכRBv|4T\#v=k2 3HaܜbEk>& ۝w2 m~]G(˽:y'|r5g@U.G!'(֪BנYcO}sԦ6ͪ%5C yQw"Nu5.]1cDxX֪P (~/?"6'Nk>nlz;޼0"jF56ݧ9!8+ ,#:BMxsjT+]#/%hRU[Sn O}\Rpȏ<П+Vy#Avf\q]L}Xj킺ikH:DE++eb# 2,0M{ʐ"@* 3EAx!P]'okƓ43P32Q;lL҆|B*k,jb%ګj2qYADqհ)9C M݆iECQɨ7 ,Ѷ7kF_glL *%kTI6,Vs(3iG [v1 'YylP->e2gxu)͛=*B4LK]|=6 ъbGd9*OVwD#H>:<](T߫vL;+0.zK Z Xkr 9g]u<40S:'ЪYG+#xY"( 6KjIM JŋY4Pv ՘6MkrHcDQ8d_EE'KTuhI$VDavРiC b;~%IbN endstream endobj 227 0 obj << /Length1 1569 /Length2 7042 /Length3 0 /Length 8083 /Filter /FlateDecode >> stream xڍT}7Ht;$96dCAn%CB@ZJzsu}3&z}.Y[ X Epq5MxܼLLowA!"$j 5wO'$', s(=m5 fz9; ~~|œ.`7G ".H 92*@xzzr]07{)6N#<_).Rf88avO 0TqڂH}U + 8>nː#2ގP{# VFx!8@/"!@GI:$ "3+?8;B~ ̊P[y cO Bݛ:CaP߿OvP[_iغBU !``@WTHH~{x~90v9\v4v`/ - `BlPXG`?gdzd0[Țhr?B99_%*  m oTWteQjIYk2XZ6=h g o|K[oYF!@G_ <# Cn? utw_*Y=rιp>;•:ßYHG(Xwu xyG\=3n#[[Fnֿ*BA0_+/(< |j =n( T sܰ5V@ԂyiRFpd)8xl܀ 0l/X/fQ L _?T`dv#W@nnHGYϿo$0 ^Üބu\RyrmbuE'G "?uRz&gm[E>Bg,brΏw9+*y cw`Z[ £$]|ks4s㹛p.>P|N@NG}nJϸ6}J<@pc\G,ŕy|'5BUD>j#Ƀ$I9jpf9sD"+? ړj|hr IP[mf\$G;p־`cE980껖4a%MqYI|iϯt #vƋ7i"J&"ZNk#9w0K}iy1y cJC2hҙ߷Ԭ*x>ChĮ(SbKMEiR7`H07 hT,\6hkMbЇW!-i"AKt6\[&ڸcYu9Xh!$:6'|3 >[ɓihET4.Gƣ<(3HtjT4fo'z;YvTюlŠ M m$ц@,vMgW8|O6]-4j(&x2.*Q,ꋆe].p1ʍ`ׄ V_$-7g|CXz|KLVGͣ6_$CGgm޲;ϨB4[1LF&~(0Q<ָ߰o}XZSI# cpk^_ke)f&L`NȀ)ݑ> Ds૦UʵV\5 -bQ{B9s4/ (Uz.3%aCScLC]bX<÷Aw%D _m|R*O:B,B$˖T/Lĕo&5տXh=HOOͩ$6QR)-lRCO>m-GWoZƊ3wt$idGVR>s!VuHǙt!#6f(@PGW}lNuԴ#]¸y~y &|LЈG+:,jG=f9 K4R\„=>I.7Sd -Ң E"޺őla SLx”q |^FNX*8|:,\Kٛ~; c?^YъA)RlSy-IvBf\ ¹S|B:Ɏ'"=u駰ˏ̱['"fx+sX;uK,z )Zׅ5N}|/i7(ز'BrKХL ̄ɋ2" Q@ߨɁ!tYxn@1WFYr\#&Uq.V!iV`h7,,' "@ tcU^4Q`y_^DV7wEf_6=iEq IU])>nR(r&Ď,*m|BE_GFt0n7uΰ u+>RdRٻMڄ-?r*vHx e_۳8i8x2&[ChMiS.[wg@iEy4?Zsc>2¸b98/CJ/י]8k7=T"_\ԋwȺ8;n?D*{s{֎; s M?({BFR/%aуG@bam_b#(~d́S$&Ϳm˺'޾e%ӇhKψ@/ѰpU}s1B\}>Qam(N13\Z?GF`'" Ꞻq9|Dx!s1Q/zp4\CcL ։eVպ͎ԁoi11ɨ& FپmS8WT|qZ(+WӬ=nN2Mi7),@zuF~o&TLHk{E #7i10a!};P];RYb+4vq$d'q_vl{&=KFM,> fdi@?5H%L\[S?:ٵTp,5/>KCx0/%1ƕQؾݤa3`)?ɻ,Am?^/,o%[)4A$* B$4&Q*j-HG嬵Šr3P{q()t^7\\OEdjӃ﬎dJuIvhE H$[H*D(Rj?]\ҊGkތӭ]|҈CY8Zǎ|A)~F:+w֟q:~đuz](3Qs緎=\JiKi43T["I^ΎHg97ώ'F_H,\PKLˋR&]߆e xw SF*_._8&Kx_hS1J;PZ E}Q7-βldMw Fʐ8 ̄YRvx$ : sXዋ.IGw{  &oDn+UjnMbl冣5 )<ѷN &Rj> AZ:m4qlLYDؿ<u.\|Fl&(x^ZtR%۾UL&.}@IHb@9qftvfx_Cv kɿ!hG3N99!+DUvf4Z) W)Ϻ&EЬ~&wCtg0 \}}%fs1]N6?6Nz$!A5|ƒ%]B;2nwZs^puƚiѷC6zf#WQ9Hq1hN$1琏9{2 6 rtYY&vM^ݢ\qykCn|NyJQp8 "Pb]iz+Z9+,YƇm؍aQ1e&`M;rhw}T+1b],ζXC5SvAA=K, OO'hśvů?駥xt|V mIVb2@=;K0<]1) rSXXNFH{ynb$Ph} pL!<$zl{gk/ /V^F~@cBXfڄey{5[NdЍUl1~]IQ.xܱ㫎wMd$ocd "{+OT3%hUlP'}AdV=>KaO>LlAe*`x4gƉBDNJ4)sm(\I #PCgH8"zfҪ#5?{#&݃HO7 9˻} v6v.*(D1a }󕦘4G°G% #ANc*o4[QEcM LX~X֗<')xna~JtIاRXIF>礃/~RŐ>E.eX3q9Knvͫx{wyV3toWCDIty4Aj8l޷)9~p۾Wa/1y9>Fp)5ϩPY-SȤ(n}Jc1{iD2+x7ᬺo,*e_ k:@D6Uܵ;G14l}M2'ֈqC7}DR6v&Y)S%) gטuX+N9>zPLh<ŅseAQ15rڋaOZ[/끐rhKmU0^hEz˭+g?EyX]$ہ>rg;+gG7bh_}۷~4U⚜۲Z*D&~+dz 1fŧajgI-^>wӄ+d30m*HF5[x`[10?aXQc_R:ŭV`y#[-+# 6ϳgx'2*g_X&J{KuGmJ]'xlߵ]cKWE|~,-g#\gJh;F)9JG[t{3͐xu؏^jIoCYokTrL.fZk~Ҟ|_t<';nos>Cm}[2Tg*~D7Vꬉ,!f~J -;пc >d7x𶜁;C,xѷP /1;a"k-y&J q>QS9 Ӄ`%h=Hq~L&؈PR FF4\(6Ei?"5} ~q۫PIOص}~qZN@7lj$g6_?*ŤH|\õ¹w&EF% h(?3|qYV{V~aduTXyMcU{5Z54 V<9}K^kgº3W6iIZ?3q.S]&OctLr|b}63V"p0Ό39Yt`_7]V^6]R1i )&: 3 \0qi :brr"ۚKư|GUQ_j-o-ģ21nSN x @xoK$b@r`?s5;j"=zoxӕ^ Ⱥ0oP'VƮpTT@z6yEM*n%mS h; Cε.NZU1f| 8=&II^ ˦]M._|C{vQ{z[Ա*=[Vm y'\xs{p3BPˀ,h&9Z*:߽uXb?l#}}?kY=&:ۃdeדR1GkhI,]% ?cIąإ7;kv{r*$ؐ<-B+ruRBm^2ݔ1QB{B*ZkGK'xL=?Q&Z +iRfy9 N;XεR{.c\ 7"R"/JY(/)g^/: 2lv9g_/ur9N(}dl{,S7B_8{AU$NY tMכrHS`,ڇsEz('fpacG)N51碟WOΒ#/lxlVE؍ˡ3=E, ՝SkwJw,sshz(&?hETKB4ylW"l6^oHeŘ"6hՃ/B޶/=x3nꚼ'!*זWqcl'! x9i-g}DQ}OjIzj6TВ'{'I)LϜfAԆ)²CTSJ;C۹G݅&:*yW{KbQ^S/!zy Z2 Ą!ޅa\ Y;\1/XɊ->$H|͆&`3Lځ29 ,9ϥfFS30c,RA8\L<<Btլs QA>)os:9Z"BOL8-R"[N6v,đYXs/rW?nҜ"xe84,PX㝻/ endstream endobj 229 0 obj << /Length1 1395 /Length2 6052 /Length3 0 /Length 6999 /Filter /FlateDecode >> stream xڍTXSZSRA mlCnA$D@ZAE A;|sk=_~caUD`Du]cK9(!Sp3!-@ aq[ ,.Nh{b1iy1y  Dn2W£IO=R?szxTHR%Es^@3,3{t-^CGlM=xLm Oaz9{GWRxsyFҷJKfD +y3:{NaYYf,I὜A8z%Z_zQJҞZ+xϗc\ 6j&Zh8f+P].\YeNdR<*,<Ygu&NslM%_Ԟ" a#/Wk#Zk|s}K; xKV+p S)n4*~'A51i RIu2%ޡiq&& t\Sj**I׶kǓI;:|t|7}N<&X)nTwAmZƚ=b/2W؊EU)CSI5Kւ'{F:zBFS)>V8u}ڬ_kͽ!.K B0&f6A{&YF!u^§⼓c U<7}{; 1H6P 5jVf߈j/L5{!UÎD97r\*+C/IE~A XhBsvK7WHuT#,m.#t"&z<^(;F|,7t6uD# >3%X|]H"V=䚥(>Z,\_fq١Bm՗S7G$;}OI0ynpp8]gy5M1|8 r y-1֑1=/M&'jM /3iQW4VC7L6ωE~<~KSrivc^[}zǥRrbVA{KwȔ}s2ح]$*ֳͻ/,>>H'srʴRTVd*>u42i*ol(D IH<6dܣc3cAڤ9qT ^2WOY<6ʲ&dE/r'M(-Ryz}Ojo]鍻^HĜ׼fۛfl.jdܹ8;E Kʔh/aԞ(n-r VVϟJ3 $2fcy Mξ.48~vOWZ)Z3;lY1kjV()UB,@5&W⇗4+ \P+tꎑk$!mW*b<+f#OY~ J=wyk]%Mn3s̀EKi쨢[ZDfO\?SQtUvLG1hЖ-_@,ܧs]jևE۰[mM*ˋi5cշi  M94y<)W^?bߧDm(Bsا#kTs?^/400WޅHd!N2ӗJX.!f~C| ZTt PU>۽8TH(\G<:gewA&WY>[it֫OA͞9lՄuS?Judru%4cTn1"~`&W7u3%u21n'xL"4]qNLsSGamZp=k/oO%^ٶz:K:-xrBE)kwhnwZ>3p_#ȝoqEH !.n*Eo՞ֲQ(ѨigQÄe.x]Ug"fݒvx"zj%t]_R dd&/eiz+qp2QMU}.I++iv?cn 8hݔK,!蹥Y zr113'@t>a6(O/!Y V UUt 4pW y܃s<\&giاWfm* d%%F8(r_HO';O ~8"9c\{SwꭠDr,볗1Qڊyh\fȖGhQ<C&Nɪ *S6R \g#RLp8F+Pz#@KZzH!}ҏ4ING^X0t`OE>޼ sHړX*cZ2vH3f;؈{1*_q n-;;7Z d)g*~`fK mdE T/HϖNvrP&6Hkq=Ռe׿'e|f`ĝaYq9ɥ5t5%nMMm=\G#ŷ?ѽ!@TP5i,zJB`MFE},Whꋗ#|_|F4 UnǓ4H'~6Q!I:r|LIՋĂ2'I $֐pG^[Ӏ Fi®+]JTZO1Irg_SZZ&[_H֍8mo8G0l*!|԰=,"؞{l| W5lW2#!iR;-%k0Osf.ܜ.v@-w]]d%Q<ꅻM}kþƋLQ |ju^7THC+*S8}:qwȈi/7s؏ˌcJb AĚzviK>U&S@XxX=az C_pRf[3r;#R{hb*e) HI;UNZ3n@NW}ֳT;JFޘ H>R\]P91RQRpI:ޝZ`$0BY(r:v ڽI_J{;t+~w. y^g {$ouo/S=U ]sԨ^:{#eLAp SajZіB U62/K| &o#Ib(t맫O?1/`򣦆lRg4T *ևǐzF1dgTLMgQCyl(\:*hʹ$w2jp'(.[M*f)9 ??HE2g }JQ1B]A[,S3Yϼ,^UkWuֿb&$նga9{|x2pw-w{m0h]HcT$_Mmx-@rcC2{U^̛N6>05CfmzU%nЉij":C/ywy,@;!$sTV^9HͳN\fx'Ao76zoBO$pJI"MwzִJI Tӥ }kٙ\kO\C:u,R&/=1o7ċD56ίwroq8^qɎ0 XتIbJ<(,hŹmMD_UKӴ#U+QY}|ҍ̳",EuZG *tʹ}ލ0;tPzuYO?ը oä$7&b1 endstream endobj 231 0 obj << /Length1 1612 /Length2 17629 /Length3 0 /Length 18471 /Filter /FlateDecode >> stream xڬUPݲ%pwݽpgNCCz߻OǾ}_̜#GșDIA(ao P5vucP9((DF.vbF.@^ 4Xxxx(N.ju ::07-?܀6@;U@`fi**iI+H%@; @ gis6>LL-)͙/34{ atEp:Z:;X:̝\`igbjv3rpaL7ĿyX`o7 bdi pz0tv1/h:[ڙz/?:[F6mhc7vpL =vSWs:A _Fv6Sߔ;DoEyo{Oh W#ۿarv+p?5&#bvafdYhdbb03۩LN6vfYXXzvIH$ /&G;_QJwQtK"oo`{@V6.߄,,la@o,*0v&̊_&NNU׋[/Moe;A ~)bFՂ6' ew(©v6''dn?0LRb1;P@j O(Fo {rba)OI\< M>!_ݸwP*ϒZ|G\! p(gs\~b ^hk`\=6Rpl7;amCg4sx{D5,Ep ܴJ𞻶EVøKd-*|{']X6!Y۸ӝG[6`N6TKwZƣMOKNKhom27  Ð#?1P`Ϟ[#t9 .'ШSȹm)^w' )'CW#~KҦ0 XL\6!X:g]!8+QKe?Ty=`ϞT <Դ!,&(XY['I $˦bpmnؚOɶ(EO;@ ,MqppDul0/! }-^SBt@1}'B3MkDl-U 7*ӡ)eMÇDA{(F4Ҏ@ UW%2ӓ1)O)"rSN8A {_h_iH}*ZC}MJ쁕fl cU@|)B0̷;1dFR(G2R#aniL`ghj"^9/e~DuOcѯE7=qb%NʍAHRrɤe-, eX Sr=K)i)|&kR t|1|zs(~K ɯ"Ϣ/,\r ]={tKrYpywaVɣX$L$Z?սd:3Ê 2껺ŒB?r6hߑsldA5 ]Z*y%ֵ.$rG2}>SLBRg1å4H^ z*tn l)/V L:.u2<J/j^)btTKH#8]N`xu &Ug^,^=1P8}>U< G| Ðc5yKGszO3]ʋ su9`5^Uwq4Pq}]}w&A ؙτu>\#EHtL[t5kb);ו9Q}" HS*fvOc^YL!YlS1>y66Hd{4&GBhW))@i|Gdd#%{p4Bb,D~m@զXUB>CKJ4`ԐBɶ[f } 0p@mn#jݼ ϝc`^@:/(SR{N`h8/[s~!/1P֞u횶mMϥEd[U4"֘$7 oП]fi _ymv n4RR|H(n],wۣ$@( Ev4薵0ż^j*>sM#u"MNLru\~ sqfqhMZYuL@E[Ą֟fIc}İEOhR̬gpcCz _:G݄(Ѣ ]3 `G.}ЮDJ &%RFE˺< kFtQApPu\с; sqkۜS nNVl5|6mYV* -W9}eEL4=Q9#͐*J-u! Pq_pv6CDoDVuP=ndzr¹_CW'ܙ:-LO$q?s5L8kYZ,`/Gmk6բ^`jB4DJQKذqd< !qk*Mu@+a#֊M>s;=Ky3!(h$L35]VK̫1<ՒXxt0 4 >-+6|X֣=̭*%RNSl ϋ< =}\k-kns&SԂ<ΆVt94hr'jVb <ڣJj*8֦8G؁x^sVw8:+ӝ.W$W ݨ>S$}`N 7{M[ˤԨF0lq1JSnnH͏o.xubwdjDl~U^*q>Kp|nQtܯ;.,+%li/ oϲT$Kqt͝J[JQ"Eg=_GU8],LH,tzyy̏P &`7?0:ɗKs1*f{{J\.>_m{5PswiߚϏ |?N@N@n[L)E&7w]HU^EU|hh@)6pV2#&=Dz}?o`١AB@,bC! wdGـ7̀ E`)6-qZ@|dU;zH~ɻtܨ]!f`Z$ )8,Wȍ${ 2{길ik:-&k*Rt ^u/ti?w~Yx)~\teepNё~\l5EVXA4Г"1~O=ropx!׬#ne%nYB%U~*T ;wBH.㒇Uf6>9,h3/W60ـn!ԒUq cӺ&ɖςD,FrȽ[\xU?ـy/=Z{-:}hizvg9E!I >} 4YIJy.O2brG!K9 ʑB녷TJ9Ҕ"}6 ]DP lm8]2b޴NH@ju, HUL ed vMfj V&=pCA8BH]Ŋ"bgҬ ipT>>􀃌[ʥ!PSSz%DIBgpnƓq2eЩ'czks1k1Vm 6bI2tŵ'P r(euNp $iX!p); s]+هl \ {Q Ћgt8$!yD8eV~8uJvד%CoC Nw0-Lku4`v@=Qz O-a鲒 -)ݬAC>e tnΦ#ȼFB˷9Gd vT1zCuxM#hiKs~PUۜ MWаMbkbxBxd:鬎ԛ4=dz<1T(̡#cHtAy :`%H &[^ؕzo3)X$4tyW{Bnf7%T0Fpo{.G B-Qn. K}x qPr N*bLdOzQ=" 9E)]|Zu_NP|Kg:jBx?{y\8n,]9"pW2O0B. JR Vi6ult_LxtO!k|'ůWDpiCT3t7;YtJu܇% -B~<*Vބ=Mm,' +cG(?{$cYN& _䯈DOF;'m>[u%3;[AT7-){OL8<|MO1+%wRfW%.V.Oes?mW ǃD*-yt4k\)x6wY囯 ٔ<W#%姀ekqB F_`_w%?Źt&q;rɑi@I-/e:8AqIƑPi -I׼;"/T\xۆ\vcsrz~H§׸3<'υB'͒G6~ݸ5eƁWXxhyP%ݺalos;/mDl;X͆*]S9yV:wGGS!Vz[Bnd*JEۀ{Ww1vZ5U &T0G0.Э5y4KZ`0= $B\ԎQuӪ *0u̾#WSj@r1 Ut֗otD3]e7PPSMGb - pDr~t1G{GH'bԆi? "49,:9 쨡3bߐʔz p;ʏl?}hm A%I^wySL}时;;^7poX, dpqҸF%F4 k) \˫P:}ړ'H;uvǜ7m51߇͊d9Z@ Y_@vu3{ǩnp7g9ˉ h&Gҩ wiNg* _S/~rOY8 k $A!G+^o蜼v%H[6Y~w Pq` Opo=.t]ͫ?΅ #$eySBA\ =3|ԵOJ$Z}CB xS^{)9a2K7c9S@ﶂ`0Fk*vx2"v8k. ,ylsu¨Uwsׇ\JgNnTij!Cv䵔iWߎ8Ɍ__Tn$IPHV]C>>BWICCsЕy6ԥ*/XTUov KJSFfb1}1fjӉwUcrUbOڞ}^Xe@xOf/2H|nDpũ mU6b0 @9_]t9?gŵ5˴+)i䅯 fh25^+'7[dnP;K?9o : ݰ7\Um#!D̪!餭 A hM]:X-oɶ3Nd.ir `"EhDMsO5P %'jxX|E{F"'5O> X.ΒbcW~\jGNU@]^`f SkܢNrAURԠ'ʢΣ6Us",DrH-Ɣ@i X/,p" G`Ro{I]T]wwI `qTP> *7LոDytu8T^w{Yz"jNKHZA]l*; ,/t{YhQ*ӳT9foۛ !Ga} 8pDpo]]Q +$p"QR̛^84O?FޒKcΊ*$ 礕W~IkJ#!{Z/8ٴ #Ѷ*1_3:] 3*SMt*R SW/ѶۘS8Ր6G~LK0 n#n0%Sϼ㍮ @D!%3;ӑ$(U|T!O6a1q eG$\5J.~!` PyߨŽ$MIi 0̉KG qU#pK16 ٭i^V,<"-*BW"~? )(΃⓳BdqMlZC 7o#Aϲ~Epto3B/Cs [7?0 ӽ8qGE`^obaN=[S.5_MOfPOOAФAϠ:@YFLFKIp_p` 'Ki|N7fUQfh1dK0 *?\=ªB@m<;0v>~,!ٛ \LK&qb~5W $@of1D-x{\*"nTϥJ]>OV{%mO51ZwM1d%e:Dѐb2([+ GJ_|*8yX0ࢂ<ї8$ 汴]h?ςE6rotӕje~ej[RN6@NXإT~k-C"^IqaUmh@2FI?-#K9MY{ [ R"#jHim ¶IM;# U'aw[@gpF?L GE{ord;PWO!vl"p39̨>+~Ɋ̈ö}rHh-WɎAoy:ޙ,tfM(y\e^&X /IL3Z>ёF:IH\xt1h7cb*qCc5Ve C R|$%y'6p6 >vL(gX (bxfEG胬lDž9rL`BտQƬl5ۿ[^/ -voƈu(| =- ,?w+y%⣙񅸮s(mK.KUp!lgӈ$yC\ l74:ǥ=Chr-wk& B%Jò@ mavF}(`ss%;d:=Ooh" v8J4 [6+SE}Ex?jsk\F38[UI8\Eԫ eFwdpxȵv ӶP !+J/[94|iX C5yh¼$lr69rz a345/;_Y s/Ђ=P y@cJKZS@}􍘂ܶiGGA6$$Yj%Z[l*U~>/ԫ%7RMqat$^ x nÙ>FLRCldZw{ V qNߜR6$e 1Jv,uGF,pJŃf$E|!+ԅط-ƾI{In^ ,n>Ԍ&qΊGϡ|2ZXӂƖ3obR۸YXP=?sRa)QPQ+);ђYπGPB)(S%Fw0)ʊJdq|UtLEj8'n6͖ ԓ?xֿ}]Y2kWP`=z6V-$GvoY"Ac">Z\kKmp|Bz 4&`timvU7Eͱ/OY$R'4 #-WLV~CK0ŪbE^|NY;EP&_y*B} )ug7Δ_(2S jXs܉J/= TpYO4LyD'N*w2zKؾr0GU# #m*T6̔~2 U[S7ey=ls3P 9:HlNB N>-!<[hdxq{Dnhq}mE$䕕4&[p(3ݕL&O5 HC baՅI[LC_2 &}(<CZw= mC!bxT\8 ڸyĆf涫~^o_Gƕ2@E؆kӠ*Lrp,}ÁoG5MSY& \@M+Qr ʘAn`t,]B|x=h3FLVm| 䅛h.7?M?>9~A- T[k ioYegpq~VHJWp~)Y\œSI:ڄ\9=bL$ f2gŅIN]Rq(4hR?-fʞ(|hsh^W,B+O^]R=;>}S>J:R^X#>b!^_bnl]K'%(v]WS`xt&.Ź9:UjYmv|} epPeEjkVh\߮6ιC6y- K5`Ryg9.IOݷ)%̑ȋU86˞ )$S۱߃f0Tci E5ɹ@L:D`.ͅ`'>yyHX48V#cʣS!igYj+{T0Ƒ1oCkwo6^'4J}m?g 6mYSI иmh1R XgBq#KJɦ/1<ъģ/q,y$?[FFxUc!DsS'p_`E+ ߩ,l~Jh.t4=b,FSq2Q^3gϊ+UY:;vpG21J/usZX"i"^yq&G#L-c:b:Kdžz);~%/#X =]60uX>6M _b*K68wu,mF!'a4w?B. M۩C#g,e0C1(q#-[_bJkO6 ,t,T.!^3x*e L{ڥjMTbR\:j. jdyIi 3DHgO~ٗ?Lxђ@ZF 2ɁWݟu[\[&n-:l:{PE6k"轂Ҩp$U%|@*UTŦErB4}b*YߠD(6!P, YzsS ŋ #T7ԎJ<~gKC1[QC>C3IS?miY?-0 XG MiwrN9%]8d$ւ3e9tw<~UA Q4v- 5Ye^o#h\=mY4=`ś@G+I~Ӕ;V-P 4yҊi<p)fO\@Q&Kg;Qg2+/bo_?w%^4P#Wݝ^ŭwµ{#A}8鉙C/, u xZ(C>>\ B[9,k_,sT!/Y#r(eeuI5sA#D u6P;Tp\-:B r}27ٚ,Kͧ=ioa[k a}G2ʈq 4LK\Zt{]f GQ\5IJT;)n 5]Uk['nv8Gra{u81X;i"\/8m@G[& ]2U@#F4xH&Ǖ$;* ..P!/r= }pB҆ =8?iT"qoTs* pC.^i_vnt8"dPEr=\g mpRs{úXI tz|NL]c5BT$ }T2"7LaM 6ަ%%UP{`IlR<1R(+Ty,wzNE+%0!⧅`,E}3Y5l7Z"A7IIs'aNNr 'MAetG% u> JPˠZ@m8"$VVN{N{NW$C[f8nJ;V7qE[$b::sUw5/_X֕A5fR+96T@=$AZGl U$Pw(^'`#$g!W% 2QwH5Дw 7CT zGj:?G37*T Y I9YDXEg}w21y(1Ͳ_NvmMM"MЇl ꫋u֪i0d3׮w}ok}KKpBUbLґykH]f"s-;CD$rпpy=p \9U $,# 0,c"E2g2yzHp7)X)FoM˜O^[sp9@"D/,SY@ SUt{YE(%y\"$}].W_R*_YiqxP 37/S+RJ 79qI>@.A ©jml/>P/๲{:}D{7Ản!Oluy<ߋ|'2+ rLSu#TeZCx\f%2A*TDoAzyO=l ;Mw"9.l퓎GG|ʚl* h1f7=-=%{iJS3k-)秵ṷ$Z4kh^Lp)4OTL *[5h0e.",+X`iH`qwU/5d ^R6 QMnsڔԠBz$0i8lѰgKuF&5)ƝK(ug endstream endobj 233 0 obj << /Length1 1166 /Length2 10552 /Length3 0 /Length 11329 /Filter /FlateDecode >> stream xuseX]K-=Xp l6q    4w֏U5Ƭ)FPjHX̀ G7VvAre3QEh&y446n ) ( p{5.<kv\U]l@@7;% 2;4NN6@ u+bt$|쿫K\lupy!X9Ӿ/܁ *t7mW%@qܜ؜,wՒިi&m4ʋ?usy8lihH`'6-Gg0P^CƬn<@gr5_%5G ?'%gc |!܁n.`K"Zc bInAZ p)H)1d&gyw{F/-ߨ* r?Gr{o3 7s 9cj`{Uz+=6^ˁ ;nVxLPL(H3FaeA+kc)!K{=Q L0Nɣᑳ ieaE 9{5Aiv۠t$ޖ':}nLӅAIn WfDz|=݊=}QtlHGI6QyV gGY$MOj=(6sJw9ǖAVF1!]mOYڋxFcR=;?! I!Ԉ@A"_y o;m$/LlzjrNrI4.oiaU+}T 6鿾}\Rv\lR\d!Mno6 8x lGt7 ^T7Ei$d6sBJBO(^*2;&b"n )A&y+pT/m:&GâpEo/-yLv'tУ|Uv㻊HYϏG$[&]7_1oqCt mL[2[NR*zò+.s? {D2`9cir *䨮&qRw/qQ*C[C26xɮtcgJc6џ"kđ)O_wc+̵S#(p;`nXf ..bTV JHHufϕRl"FFVXr}g]: 0(tIMDDk& po.Ÿ{3ϖq0I6\ MO4A}l4"m†j)Are]LCodD3_8 [ȆVDD뎐F }͸$ژ=]UYLGE;foIa*C!7-\uh[ IyI8t9ʁe787+d4 *Ӥ,.;v3cg.\xVŪ6nR s'm1)J(co/?uHX@\ 8PKL/輋[KR.f| ]4>I<97b  2JGaouq:"0$-(CQ;Hn)+_|/wnŷ [6 ݭ>eSd䧔{_[w:@LoCGQzj]IQ@{dz.#U̟KMU5f(V̗O(@}?Ɯ[:s.L3yQY<{{P^]d/QQjh72=Í :)k]T౯%zfͪ{B K/WDBIfkqЛ*5<mmP鏌z%('OEq}{fIG0&KtgBu/QHS Ŕ ߿lkG}a'OE$Mn=sx6Tgy2"T($_˃N ?6~3BK)tR"mrl xd}YI)f-nf7]qF}H7yl^oLrfn@:$9}40p&\%X 6j0&s*:9 ƌZSo-3]sIw@ 0(ٮaJKA78["IZ}Z(\fj(T坟/bh}@Mn@q+>Bh 0-հd,GEjIs]JQn&~'JUKLYWw2jÝ){@"X̊/Th=G49q(l,RMzWڗ,S7%v<<q }iX/6b[0~NLs}ZhśH̻D쎼 jNm%dbkj$kd|*`V9EAkqfIS3fuS)y.eCԝGqM*j|[YWִ=]*'?B 8ŧh\z!%oߣp_ 8o /-N9KL‘{CE u9@i<5e%aJk,vtc RmΫ8PV@bs"7dPnJ̮ KU6U^yB" {0]6'!%ɚ틊ԯ GP.wt Mۨu_ S@p܁_ ֶcg/!]QzLӡ3;(ua~Cm0jT^"`%=Å\))1#Agt@@˧pЅuaUu<Y<:l!ÂѶlʝ_ȭCD YBAIZ G< ?@)+29̙kBz˂]p;_1L\ў:?Cxy=1h5ɧ0'@,,m:ϰKQ?Fff/Mf`*{1jב68i}M6w@-Ԯ6uM-EeH-isUK_)m'(5xՐ aѝLD/ԏNg젰(9"x-t(,'@E4 #|G,,[D^$vw?<6Zg pG%r! 1aO F xA^[ZY%`T0S{HղPH{\0uI7g!")u ,:q#qt_d !& ;Ҭr[hZ:lA33z(f$f5y X dlgwǡ3Cg1*J5Ͱ H9a upc{4 1k0̎G ['j|W]_5[:z+9?BZG*Ş+h\?U|bOT2P5aW!DRo! Pm*=s_WGY EB䁏E`eȰTKV+pć8a~o Pr 9{4ede/QPNܬ ٕUW-2nO6˗`q֑mTM Zz /%,_:Q=y ex37rͬC~R<c_ \}doCcLo7(Sdd4T'4dQWNPsE\x%WN hmni:ۦiM#PC&|-9(46Qo.o) tZB"z&Ť`f3[Njy^ؐU0_"'94,&ݙ%j8$RƸ52>hŮOCJctd j\8e,"tSms|{ztĭnC{b 9o\n0{MrAUd3]!*1gXцޤ-1Rh3!4U,_dmb\dFF5He4Ӛ_?Jd:HOuQh ~R[hOUuF@.{oG<"EURRU)D0I8 y0-n=f(f,w=∾y@VaG(!&oV|dT/GјPF2nzn uE[[ؠV]5cUڎ l@H \E  #uW7rW}AB;6Sm_f ?v)9qLe X.GpJ_s;5f|4`bKh&w$:|cRAa?-oDnVʛ/ICtczھ -;}Y|ӜA\~Z\F4c}-,ޘ;@JcNfQ5(BeD6rc^gfb! } \C~;t~8՞4.D6 aLմpw$Λrǃb:ȟ~mhlPyc!m8elB|1) [>DFuBDŒ'd{Us ߮Q3 :hSڪ*+Xkă>n,U1cJX#3KFG ͕>ʙ>}YW${dy' qéxA`9r(zaYd*bh^7Cu3&gd IEܩJO 538fUx L[U !42M&?JuٽbsgH˃Tً2 e`26G'q 4uk.RQYg1Snv-`Z/V~Ϩcol3AͪD7v at-ItF!)F1ltڞs*ONI'&cBBV"/5wOt~ly=lzr2JyH_{K5Og" *_eKۆX,sHy8(Q[AwڑEԩ |ZHG' ?o!̧蒼}Q?%8 vjV|!1RRђȹ?.u4&Cjt!y_9ۚ!.|FؙkhOx/lj᯼[Cj.iڂ!Ay~tt;SDZVIJ{une<) ACV &>.Fp+e9hKG Z&g)fC'>Լ@ Y̷ MBI扟d1kؗZ}zBF [=;E4Vݛ/QADnwiv_=p.> 4 -9]p<5kIΓ-@q}ZgW qO6*C5} 8?OKAT#)7@m~֕w1 |eh_񲛏ԫ4$*r@U3kO:2Uhvo^v}#aVrBJAMK~(1s+b+?$eX1:nt!YԬ8;&WHIo( HgQڟ?[k+3evr.+?~hw@po Eಜcvֺ?ٛd| 9ĥF ~V|7S}a. jl\\ZH>^@Di˝6mgBaR\,zjEe b%??HZqEOS|1;,ylt4hLJ/Ah 6fv\> 4 vu<Gbm nO,=6e ?wA@OU=>: =5USQ I{?}ƇTjK$Ӌf|E3~!@FGQj kSTdyș6,dҫX4ܻb)-ր3ђк|=E+E' 2=ܝ+̓BʿCϊ/|K=~^;Y.$.0)M'T衊ˆmD$ PcmZ߉jwqnR ,EvI3B盅묞9Qkg}(,50Hv4c-^+=(M4vZ|S6]T%:79)4{8cayمJ^::NʡXiҰekv>>/#DrACh3RD2o.ɔ ?Dd=s/6'<P7C*̦IF`kKn` Vߔk_Ga] H5ԯE.-.H]Cjzt 0#(ңDc~(B|,"C V1Am E^Y:Z'5ֹ((\z!b <6M&4P~+Qi+}Y QMSmh΃QvUsYiZ@zyR=4|Ŷ'GptV PIGw,@uTM c9e3pfHi2MnxVmشcXckڔ.0Oieni/zIzOkpLXK#Ѱ4/\1oIthǵP54P2"/qZ];;gn ?WUm " 7#Wg d*Di@'3/q}nH|`rfc <.iiDz?  wVeCwb.QouF?b F0I]$N:Tx7Erz#Eki\ +p;8i-v]\RC7gНxAKf4OT 7rԍ9nL]ڢL("@\Pm&>N n.JeTv+R&bǐXlEMknLyK K'UH p+Wuԁ~CZJ|Ώm救zO,6M{gnl@ģ*)'^hU 5hz "5_kr8֘pN: ({1grCtB{o.DCqŵ8lIу? 8B^.!xK$dI $j.+ֳ]Ic$d ~R)d8p+΋'Ԡ7 ntx'28H[fUo{`olӜVڡ羇jU;K'e1WrW9;ҟ+Σq 0Fԝ9mApLW—Do]UMe࿩ۙ> stream xmVy<Β]iwf&Y첅23a3bM,m!{e)"Ȓ,{y\\> Yi9P>OC E!Y"Fr 2EL Bu %udW `$PCUJPz#̈X?`A"B4ē-)8,l"$ ¿gt~D+m(_ .x@qlT $R w5 ݶIW2AT< # Rb:]ˮ~X"67 |_! =gEO@5d@U]vS]3I0H b@@BzH/ 8cdP7; b~d"C0s^3nvZgd** `>Քa5CbC~DW[ DU@hK7!h=FPe(u Cg} CɟTMH pv_Kܟ6ݟOv- `?X>t6ÒѮ?g?(hF aw85Dvvǃ$R~@ zx4w,E5h HMQc1Xj Y h0EZ>r:֫XPXq4i_g ([Q}W׬x=1͕8c>jUZH9R 8"d5ބ&U;:+gLg6R;:ojhgmօ'֔&ax|n3 ߠͮ{$ d%`} ^^ZuD5Mète6wҽl 7al>fHhz-̦:(wEGgRO^Ҧ:P5H,8^ {Ul;t#@W:G/wO{wcyR6sŨyI/tNc5*uּq]@^wHa3Y;X%boÈG o45#SԴr R[ d]S[`5@7ww2*x6{\?–4ATX/^q}fpvXհ)Y#Ì uo"e fIeKO|&%ؔ>q|'0dOSE2tMHRLcxd][iJw^Q 6qornO&ȵq:jbbne2gwܕHn}+Tih )*/|/'5G&&cмu+WQGʎx""^.:d M$ۆ;0Q#_N>p)aѽy]Ÿ{m'w3Y_&2ЀW1\)<8Z?ci~57v mh*3^9UFmfRw}amITY YDt9NCl#DM `jOnz=&5q&Pټ&߰,}AEt:¦ Cką*29c)UyEe_dMc"UQhHڶ]}D kS1_46RՍ#974k'%(e6k닚CI:Pqt;g{a)yPi0ih=˛n{nL*UBq{`&no8h&ͷ:Ld-O:O[k$+N<%Nv g'o\Q~ښ֝cS\!E /+܋97GO J72OcV "r#7ٓ0A-ϒhF|ʴ[ZYDt76[nfu;$zF&]1y7ټ܃rg57vSl.,%Чc_ v̿ > Eцi>5+ ;шBt+X4 /udwݞ|/Y`#_^.`Ʀ6!'94=y)jkWAQ&>%6g/w{h_[ʵWSVK9!J=WfmU4v%wm.=J2'/چRfAj/C˚)Kmtr8S }MVc)_[xl[qɷ(x3<$[\|e} /r *=g+aAN@SV3o=|NNXuƳel`9.|NViu:P5GV[׻q:QU+5^WVtDq+fk>nb̑V~ 8"rzdy3)TS##¤5D!6XKea.l^tk?-§(m]xY%&hV%hi\Qq:}.>}3Md.[4mqO.߬("#qV9R碄H$ZK~+7[: 8>~Nmا9azmڕ3wq}5|ټ ?|[IY*m_(wb uk-*~r>R1*F^f2%f޷ٗpܜl!:-DA$!v]sIţ:}?!i}>&>46J 1 ^~#?3U#uB 'thekfZaia MÙE|'> stream xڭTiXSW(R@6!! Xي%${{&"h Hch2'0 b qU`nB 6AahJʭ?JI]]V4C %-/ Q @JRIH B' xe Eℎ4GX,KC AҺ !$X d FrRP:/EB 4C %!01r!hW<99j J2qJRB rAjNW+ `iAz* e# \eHdYu{iJ+cB7H$(#HSW' ^q& 29NSBp(5u8T8w';N-R(0%ͻÐD)XPh6{)|Eo13:aR/ ^9 6PC\Lp9b 4?! HܼGb$MzH$>kt(C}hhu (WCHA*O%@,:y G(H/H{1ġB}#V(uWC04<@ku!|@4N6S\C1ӹ/w?!{]1aЭ?h|ol@;͔w}οp&ﭭ;_%4@(Us}C/kf;=8bv[]¡2>+fth]3m\Wt,ݒjB$X~ޛpƝ1wʴ]Ui9.?Xaϡښc=g8;_lrznN)s]]&DYb8n.}~fpF6x=-VF?^TgwMAfizMw-_~Ӆ#zO΍=l+n{cʬ)G^47B<ǒ9Wo kx,d³䚶!6媛WgyuM*\e4mIVĒYlnYu1I7O=N|zƿ1/E[^KZT2Yo>?VPf.7()s8s};/9Oڢm:5$Tv>]*X!Tl9"Ytm0#Jl8mbka+{җ-ăǃO}2r˗%fe\wLE endstream endobj 239 0 obj << /Length1 1638 /Length2 2018 /Length3 0 /Length 2869 /Filter /FlateDecode >> stream xڭT{4tV_P" Uy2(T1oZeAw IBX0bНâ/F/ z:A*+@bH׭6O4 *9:w?ގ]`)' * ;w)Oξ|B٩aÂn߽P_=!^ӧjtPΥu?mnI_'λlNS\ͮm>Vv+!Y z7_ݏ8E$31 VIeGG)}ԴvEp*KPY]-Nsklw3.W򍁉GloϭYL_ݎ, _Iˣ.εI48D #鋳<ASbWwvF䢙;O_" Lj4{j&h-sL [%-"yIѱl[_22;8\Nbڿga:<ʑ ̳8vbΑ x*iy ]2[٦'o+z/tJCfK6 HׇtP.շ)^L3*!j ʆ7v-q6;W3C _ \Jy{7í}2Ⅷ,ok.c5oQ;)h:Oխ/JxekjZKyk:]-VJw!wc5mRݍ33nYFRXJVQgV&JD,║ 1q'V82-ۭUs:7EY7u_f{KOsnNwٺ<˦os\+)^/`:5=.NߊfzXCFS75"]jdTf?,w?؜X#NuƑߨœUS9ڇ͟ݾ}œe*"2G^:4|MX#p%*w!dȏm~OiWN_o+3+%?1X$M5z8-5h'=]n+rK#lfV)j4g<({U^?㼦rV#"@|V91~.#jm/S!ɽ6+͒q Α-ȯ+:cR2֚ 6F"6F w$O^)/7=pvciӵ\ߠ3Yvޅ .[n؋B:Q1.m\ԝËD+&F&]K)zɺ@FsTV3Jotޯ`S+ S"VÓsUdZp֋ܗ'W?lR|0N| s֕ύ%RJT7넻 WhKg3=Z=~OnuRrO+R q衷 "kǪ3U~{,u6@IWӂ< |%]qv\qX n kGu7R79Ö'OJwl!;q%)3C+&cqWY)߽m#7RMy7#Q C/{ژV9CmY*27r{:7H?,ܼ,bN>L!D]Mm65?9)}bm&&uo&Fqs5h㾠ֺ`IԂY}"* JYYe[ ^H]~U> stream xڭweTܒ-wh]wi;\K}wY3o~Z}Jv]nrbEz!;#=37@lg#o%K/4|ENvN@n: 4"vnfN*UeujZZY  0P||:}@U@9`ja ((jJK$U@[5@ ka vv&b  {Gh`t>,@3GC[8,lM"a7G͇L2vw|TUO'sCj,>;ӏH;cZu2N2L,@ֆn?- 5:#}|`5 /wrpMY>j;}6E`kWlML8&vn)GILe=$_E?q]rC;[[|,?#ch xgg+6wHl>dab`$n 4Qp26Zo #331_5wRMQ^V^UNy\TXon9;<#,l gг1ܽB\L^Mɿu3trphwI`lLZ'C[MO_ncgG]@cE;c@jqQnf ov]>ɡ\eUA o-n 'i1)9^=(m_iRN#=.e8vƕ _a&X.}I#{'`C;9?z躆ǣ͌'1N8!fx[g=ꈳCICkiOcmBU\n}slTSX]l*q jlCTT=W&vjhif0nc0z"bWw>|#ovW~ԃ`m18p09fg#R^k(%g JLnlUwadlT[#FX$yYGnX)f|xK8 cO3DoEe,wL/b|vHJc4\fkmN8x=&i L cy Z96EԄ_k:g7y=9|o}:þ3kLa * zXHm&[OJ5WZ݋D1I:&<1p:fNL?vl݃iE5xVm~@.cM;0 3fO*I-Sj޸`W}m{a3ě $^51B¥݋59.s/0ڀ %M*.`s*1(ӾȧNMLw> v#_S4Hs-b^.=̭|8zI^]$&$s'ɢ;ne+WΈcԻb|*WIH9nR3FZ X(_Ѐ L.K1U;HFQ>I7RzDIkMd(\b?vN%xT;*&}.e WF.C6u=u=^Nu-5+|B4 o낇#魎uB <~q Gik//Fg(pq]DhYD)t= LI2xqZ}K 74\<(W&p0qvT]`iwh8367}x|e,Ժd ŞO:N񺼟kH{$UpnS",D`@{d )i)~<EY6jrkMxC32\U'_Sm@f1v/.gjMfs&@Ya-HBN__ }:4,?L׭H AX&2-tULˈEPڀ +"NZ;FL<*/fjK !)s[<׳zpIRQl)Ynd:lٮoO0 MXeW2w]dPkSXc5'{gJ@]>t'aUg4D&0 ]1vt8A%.a克h./)nu䢣iIpvSx{y;hUx]e U6VQǰ ouӇOW܋ ؼi6;hjKX*NEpB]na|k- 4S6r3/9i I. EVotG%x5#p?j׶eZݠ2**$jI^*G$LlmÆ( Vȍ( 9fbm#tȠ}5[Bykfj悝CQU2Tqu nBK. )"MT-5\YjME({ވG*gʽ2ؙgTIƯѬjv1ZngGs",ι-/\x|0q4SDmavJt|f.r;MV̈́[gJW8Zkpћ |;ܤx$[qJR@agiQӨ_,_~ԬNns vseutibnL&j{ńyp#89CcMg@O#bnfRAn3ɬF]!ͻ+zD6lji)yx:@ Gii&3yD>i<[کKk hR{8*ǯ }j:w&6oQK7@Yd!qGG~+ׯ< bëa.<1ckpPY-7(!K.Sk5D!yrVfp $Z.)Guro3`uv8}~+f8!I>_ҎTH(xʝץGlmr٘^ iu,]\𭆫jb0C R$?G3`04pnN7 C¿_+["Oց_vwuQHJx{^mW!5u%Qf'֥0|r #V5$\uG|U8 _քeHaopLfDO㮎FXb<T+k,08'^}KQxɐ@V߮Y^JRVCEMapn6*o6vTz^H'=_MKlS,U*I @~N|˃amP[D5)N F"0ĎgWZܨ !KpВzdDANc88!,j7hZ^%nr]7z=qO1*wȩ`2~tuc.lwE5wLO\4N{A2X:}sCGf>0 lf?,(ؾ4}WzYN>I蔓oєss3↾w$,Dp 7Kc&"X[Jܻ+:-944xV; RJ%.M[pL0NvqfO C6iƵJbѥ U# (:X'V0{~ $=~hRMD7EzO1Uss@>1 8ݍY3XZolpg="B rڲ>/pV-~ F=-w v5= 9Q/΢Wʤp05Baé$vhCu͞ M9%[aD3vL]5h4ִAME7O'F/Rb=7|L<6Ӵ0j;8#reY_$&`?39_dC\Iq1/ci#'Gq\ciCvY56ղ; xDkU9$?"i;wR,o;@i m}7 ?4d~M6W|if6{9$ðLqh(%1-&Wp9<(D04ЋF=cqLS^ɟb5Gn f&CX6 |r*%27ۣ~מ?QĐ - ރ~$I58@huVHkz[a}{r"lfO[qEU? ^K?,T~;{A$MJh%-`]d0m$=chO&Âs0n9x@WE:tcdF)#!O$uflZ1Y0CNar8Jih kQmGb[ &ߡ!(#\3u5S BEW')ɒd00J {נY:T(|j7O31̳Ix|f~K̶ RKAm-;=81۷_=:p`xOe|!0626I#6%\+b"pDĞo ưXpCjK 4l wC!LN̸ʥ681bt+y@R5TQwSM%(vePrRŝIaHB94`ߙ7jN-1pBqo,  bZuZ4fS FFG zON OC͎9)Mu\#i_ !JFyݷ"ݖWDslqk/X @NלO=r;h"-_IC+} 89Yoj3!Űib\nY[u?R"\2$Yf=~p B䛝@Wl> u!653nQ8ΏT;gJb51ؠ(G@zh\7 8$%PljH{Ů)% 9۝'(^D">Ǐu?ϛƴB">%CYXAky9vyb3JfQ7#^1X77;gn_{\w Гc_裶%r9Q\CM}2d4mȕ[ú$u0enUc..UmH;|BU5oKq풩6s!/qruV`S>s#4f|_wu<%0% %М/؏лF·i$dr,y4 ;*x5mWP XQf;QnvwDnJi#<'=ƫӖZ{:DۣMHIEe 'r(_]G Ռ1[uo7,Z0,K&=.֓={ؖ xR4#_l7~B)GTݿ Y>5%RֱeePMtAͶjRQq @=/w(D\QUZJ2 RUrFDZSLp,Pkw搼}ϼ cip BjAÈS FQE!=U5B9FF1X]c%eX(&:7m!K>}WOs:T+mY޽7GA*9r&Z⬱oK.n \1GYJ9뗂pX&oOm^a4uANh[y6 {eڻJҔ[e0P9[uF _ +E}e:kmt&K})OkI}&-Vt]8%<W党?Ջ1zɊ_?$x=;3DLv>,," 0L"$G '-S$޸̫n۹ڍ qUN@cYy˜h:ARY7ag,i~PΖ'&_Gw̮Ǿl/__&bА$5;XIo Y[4!6oͿ T{;_#Clubxߌg 67-g}ezjupBʴgO5nzk*.5( =FRSWd칦z/(qm9RoC'!ĩ@$;+q)9! [)C2+ⰹV'hM]8IQIZ I\ =]h?Q13#*ְm 9iYo밺b!&E~-Ѿʟ[T(*Lg |hqt) e*f\#3Y#$6!b/VgU!XB6U (_0`,`G(?؞nn+/i"@-.E 6rp-n? 0ބ*Yyl.x/Vy66/OPds]c%݆]^|>k8X rUxhًj7tLoq|4OX]" yRr[qC^ƭ ]= (~ V{ձ{ȔCWykQ71(H76&ﹹm۶P9ִ'{= {P#cxvAt[WcE鏪P/2Q2m%%aQp2RY\ ͅL8d #ᅙӸV 5ɺb"j\ E.}{C`"R9P9uAG*R]ydjcIskR(v4j/Oial, zYC- k/ z6? gJiˮ՟xӵYaz[$( Gt0qߣBuU: d"ȯհhbxbl6/(^?tS珘;ig1gCk?DLF UN";0A$3t40;[)<مLLg"[(]h 4 o a:r7:k7yGYimz_$v>+`'$!d;ilfd݋w`Hfϐv|Ȯ W<ݠ. zΑ֏if 1dSG8T%WZ'(S))rтG"6޼2ެP93V&m@(mgtHu'$2bWaf->Ho-1Fh&[2%1 |` D<zkEA^`8L&PERRY蟫[5Rk(L1?}ٙڻ* &7RȭJ+oEh 3ډ*(*_BzԎtkOߵ*ȖNJ.8OWWѼ&ms4y`i@R G\\0B[jO߲2RDxܰ jȆDԇJhN '@ݎק#i,Mr[G[ 2 ,477E2կUZLI/rJÉQcjHrE07;l^M%W\?lp6ٓMK@ !4?mLޢy c1k@ry=#+1_hxՅ2WL`5>44/bosI8HW"7ѹb2yanc.a ( 2N%5/-Ǽ?I z!q~I[ri~%-G }k#cJ8>Pη1_ٞHv6MRУ.{cH;]j uyo΂*YD%:9FzZtٯU2 f1$ %Hyf+7y4:V[=iZ&[Ab f+'Qm-=nۭQ ؠzܛؕE~.r>ɶEz%ڍKdMHlHS65 $o+joӭSLzMMndP#Wdht}XY ZX`_TK1Gyt5BVw_D34|B D TE_^Ce;#j =0 xF <~iƜ`t9᭹؛ ns<)<5a 2D{ycf9#WZ*G;^-ًBQ5KU,rOGu}g{\Iz9$6Qoc~*wH~bʖ:jvէ( ɴQ]lTصĪ&={͈(6&095񌤶`Bn@kfuJݔԟf$HW p"F%cz. )KHa ,- ) P-d54n&Q:4V{8 "plf,q40gǝQ'y fBp} ^vUinmp -cUo*$%":9Dq3kRzhHLx񔁊f3RFHU xYhB֨xOO`=g+-,x uKROLG&jM1cɒ2.$E_i$6:ۊxW/dzbk24g@`I d:P=⃵.`YAǜp⭾Lچu(CdT;h WO *r{2*4 }#Pd`I˺clm7D0Z)#'ݏKA\[ &{ 복Kn>4y+2#Vh:-9}v >` Ŭs=?gD"6[M^k8zɎ?39ro wMx=Bk,0Ή̗Ȍ,'TH&DٿTe7b% ͌ҦӲ"%/4/ͱZQZo"3lɬe~A OO2tm#@]RO(U2wyL1Y*51г^eK)kL\ Sǹ3% R4f룵ތTd5dIel+~j(X>QK]g?E([KĸG@.'!*w:4LG"g4#WM!X8?ZoQjiW{pI}M`BrVMTz![>2vH),~TUP}**c_v9&11VLP? i.@Y.EPo۲'r-8\עݿ%@k@48.nhťd\B5.0IfmS7Z>0ρXRCFygZf[r hjxxqEE"L.>pɃAI ݠDe/edHO脏D*VOD=[+}Яm j-ݺv"Yk"D7I1ЁTq7@9ȪB,Q'>U{ޠKLln2C<;&jJd: |'{K؃~!6}Q {i(] endstream endobj 243 0 obj << /Length1 1630 /Length2 17552 /Length3 0 /Length 18395 /Filter /FlateDecode >> stream xڬctf]&RuǪضm;wl۶m۶+Ya_=ۧOu>?{M\\sɈiM쌀bvδt \9 #'%;9;NZ% ௜Lhlag+b M"@c lghaf TURLFdaf :vT@5 ,))'Sm#k c1 H0sX054'XNC=hhc`0s4ug;? +!{G6u윜-*;OgsCb;YULZSҿtaj -l@wb&NֆcwW.Nf#/?:K hmJ7fp̊rй fo&v)ߐ;Hoz/>Wh1kk9Cd m @Ϣ6tXX{:$ E/5 t Z8YM,{/ @_t*VoVO/%*(MY2T;*sڙ?0BBv/ZF6-7!N&M1YnU?<Q[c;FGO?jcGǿ$k?{ h bgl\7:%=>b_֤R\_kYe^B<|nKhÚ/x]CB5PMNsHWqu$ Ơv?W?sLOZFd81($BL$825բxgYpDG W& u9Ԩ5\(ЎZ0E>80hZR_D?A*Un7cUN[V/CB ׹I_1b!Kl4rEK{ߧi",̞ 6Kx4jJ^Kh]||_2inuW)v̍xa8 wW-H@u;R"5Oo`}&UҊ6mS)jg'>-\嶕aENfꚵWNrC9_cߔa5 o^ld5f\ 2ף"[b$8i!S7!h,aA -qopRCzruGc|,T`Qr>h ^!Fd5Q=P3ɗhzJͯyubon-qi7`IwXl4P jW :.{&s~$rvwP$A%}1?]OJv̄tKovqfGr0h[䃹^|*d?GM=67KA= lP'֛ذ鑃NDdL{)M9bcJ}5 UnqtUR *#;wVkܫEV 4(n3:ֹOL&8x%ޏ9l(zVVtuCv,ahq^Rù ?0o?a5>,; X;C "ןoH=6Hfo2IJB<)\HƆ br~źËE Y{Y6]6K?(K't ~ɴ\=jfȁk^H'G~pۗLaAtoǮ*Pz{WS啛 PD29_W4 9ӓ%\UO{3w ń5$>e3OXhlѢ XkQ 5fmRBF ʋKҘ&#ǔFVHevyAuTD*cv P=Wظnѥ.}!9\#5Irn__eLK# 'k9vѡ,p:2T~?Kٳ9"P(b=bnX%D8xjٙ.bPV0wޗI񎓟O⺬ R]#◂A3k1)q$w~fU2ԘdZv2hhE$h2,qs( cc7ӡ9hxIY#i°?3yd{69K.y×u?7iikd yZqRH^omcp G%l:k80z;4>@o3˗s15^jkiQqgɋH*Â伖dwSuWQ\1x0Y?xǕ>P+A K]TL3(y}]löe zz K6vGnI_o~duB*cZU|P6wdͽ61=ݵb>k:M ^+K%Ӑ6 @ LIpBӏvOB!87wˇ 6[7\=F#!//&Xaˑ!Zl'R/ Y*$͖*NAzW5:"߀ .).yh?mzNJۻ!li[`)>dH<1=jR'}]r0̒47Ah'Jyh/cwMv|y1>SfD.`$ Z?Psda:+xYg]Q繿;p^y彘W Ѩ 5A69ho_p) ka {?0_8" .G8+S*% ?!u*ALw1ϲ&֐ˈOl=PL/G-^o%ed {cЋ*rvk߉x~wbOd2Au9CoKeǸ̔HQtZӴ{$`C$Kelykjog(f(xt 6iIvy(Rq 4 cH6 /f!nM 9\XhH{i-߀lZXY-0[lm㑈:+!a.ץȣe,;8y5U@DQƑ1`G(qѓ&&M^kx\G5t^ [Fey?r%i۪L>[T S^q=QV:Q7=r?c`!U'xbɯsi)>uMm9؋n$ Ԙ )cn&X؛Y4#XH+ZgжMǒ |s }XZQJB`ơm"yhUà3 ֪kj)<1Rp~m+Kbx2%7,A#<5@f(/S:!0#85G+zE͐n)~ ^{i.h,#%۩@]Z۪Pi;wjun}`7%ͰtAqرP*jS_g:n=;K.~`/˸*ڭR|O SK`qEd(n$CUs~$!" i.mPcF;KR?mzŢE~4ԃ ep|hf<4`jb" vꮄXfřs`WMtvc꼅ww)WI+qYƅӄWr7gR5#| ُvs k({oӧg QcڼO[=u̻u."⩽ Cs_U4ؠ9 fҋ"CX=<!>,c覆}oۦ3}j44R!gEMƁ "OZOыrͷ+'Aʕq9Qe* RcdZys@թHLzvh߫8RMP;JpV~ȸVH!RB" *T)V `}uq *bǻy"={{gtE '*@|CICJe5Dkrn#ؑbL-N4a;9qٔt.{5ڠ\U H3uA{=fS#>Z'zV)H(,I-F؄9cضE~tNY>g  92V@#w7Gu[V4dݽODtvαR!KYHjJW!JV6Q7[K2nB;A=g&A^I1x^qrwAh>LKۃ^#/x!a*qƱ )h %'>i܏NZTƑI.eG}ʟ8/ڗ{p@!4^asJeXavi=#*rN G#@Dcգ:%oԙa@hٓ`sO:Z h57hɔ i>>x0q7ӟ}O}ޖ>H9 ؼ hy$mayƠU-NFzN '}FS89t< <'+Ao 4*4sb'w˥bh e6uGHc| hq$ rOZ{#Vo[UOVɌpu<" d-Ow3$d9ͦAՇYA JmX%lkv\qy9%\4Yw%5=tt\g'g箥T\bl AJ=ez3bT㏑1|? h\e1[/~;z^Xr _cҋj, )5[bM::F[w|J<+rPq{MJy+%^{jE3YR4s{#}nw 9Ͼ(G*4r ~p,KPdN$&2 ""c*$OBV-H/˜^Aܧ <ƃǐ3p+fA?SbA 5cۄg~ | y\o|{_Pv@/o L2p8Yΰ,b>meuOj-epZ'=3&ru#e(g%~c-vX A[I+W}vwsZƈWsltUuıKLCGV82,t G~ʼ O'г5+.j2qf$R#p%\R>\X- ;д3A`3kŖǀI-K+cw>ܒ6vDKxR.(LoF*C|]e]u (a>5w+f3CI+ILx:rѤJXօg"eOɯ\@);(I!s %#-A_e6Ǻ3!o#=OzXjj#rVZe۠`CK&]Ӡ#+p4Bq]P̲j sn<-/|D8zr:Y-/BZTs0fWJ\2f;I&[^ SI~G]6vA,7Tڹ,]s"go4A]hgw'BCP=& p5dr?@dE w)Y[sZb2<-z89l|VH㨖߇߲RVMoAT m!&7&Y9 vt+Cd:T -';Fk.mlT>l U>a޺2?m}nv|O;)ԫXur- n0 qS=d9vW#瞝LLҷI ZHpW.!mgw:XΝ|'Yʻ ̉ tsaqoޘ>RM[1f|d7X|%!ۓmLQtVelZZ=f'0[Rϋa:Zp\ZRX YU __[ipbh1%tم,w HY=׀}WX^9.q۪WΏl e(S=e=Z/8m0*s2m;-X!(m^䑧KhTjU/{Ui*"@(.r1G_,Akmg"ySGbxy͊T\Ue0g x(L/ !݊Q?n֝ XKiۓ9A̹ѥRY%9~'/f*Cl 9d!n:G:dT sjƥSt ^79I}]zhVmϰ j%.&'І``v;&Un-.& /1V/Y[X@xjsFeos<3}VzE43?kFfߕdVMrya8(VV0ܭZC2% czT9xIn!c`o2{E _,4(T yBbɠvB#M["=jtCwW3DUK~ԋCmYvp J ^@ě/ vWc='CZ}OGי/bB^8"j0|C5"IA.S -I֟DD1W~y: p+QØ!;:8[_#LG.*}S2>^Ge+.D)\7Z$ ^W-NscG1{F4l:wtpN^" B62yuTA.fR_助l#ǖB1{+;'$ A]m\vg7)lm+U;~oaM[^*hy}Vσ?NZ J0J/J!]%6G+݉ۇaN&qЦ#bn>CM%9JƬL?#vO>؈1,5 ^?i'HTov‡n;c,z#btr:]2{h tb2fl ŕ\BIY B1%(ˁ\.<=\x:c @˪x)4!%:U 9daCS}*թ$gvtK`^s+Pgs8bBeթhH*#5n$J]->ܠ%ɀ$z12qaWtB@NgdyFڻ/U˽kUzjU5=`(ޏ)T\.=NW(P1,c1aV^E&faGVSmgdZ LewVqV$W@xboaMp3x_i¼^ Yxk`֗zyDWCУh$ >Mօ|QG%V/Az1TwbaxWMu%dפKmˠss5z3DR gX3eBj&lqC샢V5M QQ{u [ O^b' G8De:Oџ[#[0eET,[zZ(#>jeFoaH|xM-^C;tYǘ. EߚCuGE ຼV}__D" Qɼpk": (X0#nتSȏ{?xz=U+HQ"`DQJKq<(t W(~XzB*H62"JaP@R?UdUGT-Ukcr ւ|M. s`>q_j%I{/K;^Dspi.~hn'Ž&c\vf~QELE'+j ̣zqt6T]~ ;WWbxc|my[ڻG_m)}im(x]_ȰME} B66WDtY_We)FәJg/BgG :vZW!W?׆_ФdؔkSbA HJ6K7NM JWegL$Λl uޓn&xrU9 [3Ve Nz n[P x|vn;N ʂlrRsq03@(S^Ш!҄ys6#CT'_S{A[Pgj]79h)*svlpzaYɱ? G{5U|&|0tΜDQٺ$Qytjk|kj?wX߹dϥWPu}0|2t` AtbJEg@mpz_ZEЍM|JN%;_qYa$ V~nHD (nhSqF65):EP :޵F_D|O  fbg;#BB#ŢVCoiCN س̄Oے.(gxY9q'2rpѶt!˥&gc*>M1HN^?~?bĔ$&EYH@np-"o]Gg*KR3ۺ)ؓEo8Z>InnSey 9I|ZٲpeގHhZcs#i>+ҢOn/SiyNa8o޷NqԊO"Vi}X{ub<RpxC;&\| +?0_) y2>& 6a: pwi|0 >(AYoW٩Fd PC5Qf/'x FNo~derq%ͺ'gx]D%q_2T$n>J,zy'4Lr$b~B]X◌®7C$N͞>.[34 rDVg,ǩmH;^S |0"\E/Шx"ؤIvbm_'r†wh:Y[Q_'֞z]y~sw>^|W?.Ynw%bN&j1X.Ej>kGuw[lⰁ9&+,+W$Bq ڎIH!mT:1GbO,Dk3 U=ceAKZQ 7x7i3]^+BЎckɑ3>HFQj~3:iۀ@+ ҧ빅-8MiJzըQw Tm2Jz_ꏃҡji<`ç3W6w\F<|[t~-bvΚ޶,Wht_QZFȎdOhVPq8įϽn<QQFX6ovb+ivP\۲H*8K>2l>.d$ͮ$AC -ݿL;4hlϗ5n[Skkf:1u 0`j v%?Zmoy~辇$'v.s4#~PC@ Q%u}DxLNvrK$ fs3( A^LBI+e!yt\ڨzdJ9,m3#(!cuw(6,MAV5> \Xoٔjs-%AW~|l`^Imn}}?bfaIhw#aGi38~^c+/*:ih\ak7ENN@63 ߄See ~16L:(h°VdkW4e@ċ `!T'pF=j\ޣ4Z<辤d4P`!Ğ\0sSBaTu#7/[}+U)J6 t5Yʣ>\dm廥Yk _aSǑMcI@OMʢlb8_.)7'|LCBgʓ= yFmM~oݘ+T尰SxlY>)'o0N]۬ =\F9EhDޏW^WfeUA 9ZZXVT-3#!4Jw/R֡as͟F!9gR61 Wgn. puCւ%~NVvF"+o< Z(,wItC!9]+jXelFUIvxT2d6`:g53JjJZ**!g=|{n`Kult̹) 978*Õ@)@exki݈6/g10qFq;⨪H&isY=$b>x~ö t|ĬfTP`4xmfO.f$垓kEoѬ Z =!R6QU-?dC|l^7Nq{e/S]Ʒj٦#&ͱ~0H BDŽ'N)$ Ab?H̴ Z dP#0A:-Oe2֎T,hE`ISP+j/գK̤qn-vo^_7qs ,1+G) UW*a%4e„,&]ļFEKߗbESBMb$! Tyq<1àa-}:6"7S^gۗ=ġT갮 ?-l/G l(,9Qطp|L .deli]2!|}"|Ř]Ս:"8v@01 JQɐ2.s;,cop"*o=u4,_CtW;>=r C]Ѱ:Q<46RP<RA8XɠUfN#.1 q6uR#* ќsE9%C,uZ4-ܲ^D`Ei℥!,x }w."o!—UͯM֤߽梇'O \W/i_Gx5H1!6mj7uO 5pc]ƻQ͉3q>)' xʞ%3e!ŝS2xxJg 'C!"dM  GKtJ!:mUPs$P;a]>+>%g _%zV/!/8*Rjb#w4*$5Uj-ou->.|j4'!\щ-˯;-ŷ]/c\mfm31{aR,J-D6()&YQ\muE6!`j,E8_~JPo0 JT/JҰFWDI?YyjV]N#M1M}ىcmVz$u~~r7^Cȷ­Pn䞋'kUHFe9u*$aG,]j(^z%И2|o3ƶ+IMGڟ˼-}ٯWsڱx4"Y8PGWhZ_ |xN E Io@sT ^}Υ,wx{Rm\f=CDm}rRq986Gi@,>=khgSiĹ|"#ԨwTh-xL"c -%A|äɃ1.gNA!T5+&#!*>Sc^we3[Xhaó.-_kR;uvIXc-౨Y ~}0-9efq8`)v3{^T3루-C(siֽH(a}}'~1O omhS* RR=ꘌ1+)}tN$`)lƭuDPϷWX=BOS&bLP+R"3&dyQ w?Rc2p#?M`"%,wд?C3C]rJ~Ȗf۴1N Cf#(RT !+Ѫua2*z^iߺ&׿U~X__.P3j gÌ%mL }J_$:Smx Z@=b8דվ(1Sș&|@d5Rj!n\g ~m$i4 Ds<έƥz@͆wTKφ|$SRAZ0FDZg\!d2,k綾h9{LXԂѦ2⧚%wt0KQ16=+!}Gk ϳ:N&ef2Sф!Eu'F ;a8ck^8\ &|  ɿ H/s'\NےܹbZx]0q}#[ϺˠM\FЬzm!ZϪnˣA* jPęMɤ.唦|%"NoHw$XܳpCZ is::xaDn7p Q8AEe 1m=欒9ԌucNVt$YY)I 1#C=f"E]A*TtK(bжO%L EGsZp_O2/VGA4ƾf:6%qdgUDh2L!4pē~Mu5()4&K7 M-BU:4JhsQ>A-w#?hb>_5sn ; |7mFz)n@ZR-DpRu/oDM #/_DHD};rVV}t\UJ(1[17LZm*n'W:g~p?O<,zhMFQ&HiS&Xyky2Ͻ\@! W,5LYX9^OJ gS#+ȉOO Z0R j~f >hs394"`U gmWy G3W9G}f/#<(::];q}l͒á2Ց 0Z2Ia=)e?^S칖"e(kL vG"=EMڝ=*Eu̙@{iVΜk~ONU~oan.=E<>GᏒa$W?3/BE$늮uLC-j[@ela9:zy ,2Zcm O(87!5uB˃2ɹH2<`MULrGtgI*X.::!KqS-LVf"Y mJJlLnQ deӗq)w}#e)ٯԐʥ“O)?5ZtΛG@If2vbeYS4b>SӚhdC. gJS0pgv IC{JD42Iýi7-K->5\Y[]һE죹,cbf'YBF(74؁9ur\ ZH}c 5=QgfcK9kP?W[mZ*։|Ϩ"0wg҂71jpv>?Z8'(~ʥPT/ETVW^ȇ@ܥǐlY\=C 1 gLHALJج~Uɂ_vJ9bQv d-_Pr2G# 5O-2VV !\\FNgݎR<^Hprocݴ졝^igY~Hzf̞J{iJa"]9Ǘ)(Gn :O Z:c"M$+Ssuoe(1|o:-8*k}P pp~ݮN|`Y7d8AsE ϵև{$Q 4ynrO7R$/ /}yG%ܷ"jW /L$8`#i&ߺn:h" ,A h!E8.I5ki&ػ+ho2*BݧeίU;\osz,$Pٷ͌'!z%kw\gQ+> stream xڭweTے-]76 %;]w8ǷjUfcQ3Z8YXJ {3wW5G{%G^F5ㄧw$L݀|m@h`cS\@VnM5mZzzY0' rP}|xncGu f Xqe]Y%i&@t(BdP\KG?sG _2}pLN@sЇp؃\]? W9@v%at;!'Ǐ UEByY-?vZ8Uf rp=eX\L>b9N` .@+S ;_:zS'';9\vLl1>b[YKG+?N<._=Ch Ϭ@?SOW_O\RvvJ 94YP5lL] jj}6Y!`#+'? W)'Bfn 48@;CÉ0 k_jp:X{ ]$3mެn^N@DVt_TbbFV.^#7el~kh0>h$-#u7SO_ˇO@sEGs : ^VPF/5=ۼ&LMS|m^ 'No{rtv=B?rھB n fRSh [z\,Z&TՌJ^:]`?~!(IqoՉ^*zpldx o>7?4ك3Fƛ;yYxқ)4&÷0Ln@:Xח{w(,)r]:_S|i3d=MMu8[ViֈU[1 r& fzbHj$^ Ƕ?ɔ*hL²مP{'=ݟը[2 ԯTڬD_{6XsOavc` V}b~hem)09-] HyIQ?Ԏ)0H𑬛U*ye9.dVو8<VЂN1 /:BdAml~(fTq~+.$Sܢě\!Ani'3_9H5ediodSq:Dgn?EjFMُH :-1I~:*FRċ>O:^<8%{Y}UW'*XYՐ35UL$&_teOsR@Bo_T'IҌHS8 oWLWK [ I#KjyLj}ZlFnpts#˦5O"py^MfՁ lȚxI _PѦoFn;[Rњc(D:tHD*$*jŠzN58/vE8Ω\@MC fTadv 4aP^QCSYhr(㊉KWt%u0#Z J?BjWquï3::@)?9ՊD&zJuvі^-:hVM'-cA톦jY/CD TZVJWlRՍZ+=p(q?1tz/z3 NxW rQ-pyHei?+QEacNLU)cBPj^5I&eWzC<)gm$ VTSc<t< .̨ (!/* -2.m;_) g_ߒ e?&Y,CFl.!D ĐLGq<0Q97˜=HĝŞ7J1A~q9yM'c27|A=Nz+EC%Y'O^Q!V(캼)R+R,~R[׶3l0eQ=$z/̩w<4 wGAyxP?;sՐ־oUGY*Ϭ_SSQA\1=벺=ʎYberzτpc?jjތ꓉žs!m8$_uڳh[2hfŴU(іh1P'"}UҪ/S)U>JeŒ)4jW{w:ʖKA.;4$bE#U]Cr\sfV7E![VoJzJR؋soEӰSlUb#*I$J: B_mEzP1e @bSw2hSU2^4jucQBKGNLQpUtsrCrp"a|ϝVeXf!_@Y7>X:CͣcReR|(*8N3_{)sd얮zyui%5<:SA-.\0J#^}86Rmp(^Dr5 ?̊"InIl_Yl 5ΰ.Pˁ'ڙHZ rszrD۝N6@Ӭ=!c\mXKJ^+DTr̖@z)c-FIK9$ dO v&d9(e$ #c½dp2VJVФFu<3dm-4v !mUlgUcFgwf1{.r$-Lhr),BXzUs^<u;o#FwIT2wJ"!I$j?ƅ p<#iQIsXkN_1Π^HYTYQ**巬B26ctDyc6b0NF/BJKSqrЅ 7oUHQj oQ ď` |h%L̘6hM3O1@1r|+Kaljo70u{X e}0PSQ;m)b"-fl1 +#FF+Xϳzau|et^Rng(ѧ{,P_O jķNL\^-Ict@2芊0~ZMݖ?_s慧oh/]6v(TT7wu'4~il/vZ똜=:ӄ n02XH},7(0ƾG;Z^!jrigAodi #y̨oTDOŽpX?n lh}D;Kķ#BJ7))9aa s'TA5gdK +Rߢ0j~W]sN>uuXbEȀ4VJWnP>J6e= {/kp:k"MReKrz'éK~P\K?1#N//um7Tg\ȵpP5'}z@|3.==MxTI:*r.;+o5ss8pKASs4[`=N; ,-)ِ?r;]^3+ɋ x8(>(;bL'W0v4fv[$O0ֿ5Y`Qn1๩^1v'OֆK+'^ - (Tگ }f{#=XA mP -/|쉀x6ELMg*vKZ 7;Ds7~u0ˇdY.1R lk.s^:[K\ `C.7.\X[l5фY%6?nHŶ=F^p{OEo~Dj^ T&L n&/]R,UM5cBr:3߰/xC1ib"5,«u R,Ķ\g3Bù_;)<D ̴ PwB9Ǔm7mv)L> -\7hP@0yAb*5ۋ=e;d]XŐh:YRND77֭z8U k7A^^3aՏfdtypfEKD~t=QAl-aN쬆8xRMU&hg2'rKЧ#ӏ;v\xn5UEYJzx!aVQ=PW]ʷ"F7V;y:R4sEdHf{+O{\|50{$SzE,JeXYzgҩZB"q|o4)=;P娱mގ{K1ܵZJar`$GD5E`@H\v "Yʢ7@Y+vglge?a ,87gz ,j尨HԽ/@rh"^Rܓrs3^S)>4*$V?؛|.] QaUZ@YS "GEEGj ?k 63MnQpF<0 tOI>k }o[k69is/[| W~2{kZwbf ]hRq+Q*vvi*\!I=_T{]\~sa^ҔW8~aNչERKjQQa,i%'Mkv ffny* ݛ/KVBpn-MCU C~?J)&~Nƍ)K?Hs*/Ux߬ב6 47NhҨT0t?ur\ ;YDp3cp_T6PǗWN崔Dq./\kjOgZ@ m~tv9a<4>}Մ4c4'ۦX_cqY_ 6hTOZw]8KshᬍKz&z`$s yizM+CoCDv;!(/=٨:o2;l=d3`Qϻ>YU^V,F7!H0಴ 4ͅ-3ޛ 㾹@sTdOy~d$A9 ,kj?Jk#VFSG54⻒tG#rh _gǸ޿ݿYB΂e"OEuMCqIcy쇷q=4|9AȐv>O &GϷ-F?OR#?~} jV O [+n$Ya;'1]6 V$}'<K٭Yr jN"Bh l!,0$ IimBЫ?ff((|!CT#oo2梏?($w} cDM8$J}g]A;j-IH9mofN%e@}Fw:1x3'@r}/L-~f H`6 tszSO3d Q4^\ݒJ:g ydp \Eɞ5ػݛ_w=հ;Y 9zLI Hk"Ef} WD7;30>zu}:<7.:Dﶾ#$lڱa|%KȠW.}AkC4EZoZt)-&i? ڞ 9KX,0<в#_RpJD&rՁ1_Qu8Y9jv ˢ$Yl҈=# WJIi4r"tLeA['#߬!t0=!P>C_0eǕg“ULG"o3^CrN"2~m(ND3Ȓ=K sQbgE_oe X(ؽq!))b[ءGT[UML|$Zh'n+kY.ȓdjLZ`g|9'cKK^ҷ $&x &1aʆ|={1?%N,upRd Љ{V*bUjfRq ]ۯ#yG]SO+ďp 8m'#42yr qc6dSiMc:sc)ņ82)^E(ҵA)Be /#aʛ;eTpG<vKU;w줎{5mpZ "t92GGa~ lQV_3q0ꪬa&%|7u3(eV5 ak.x&3`# ~ R{ܽ.Dw%$B>#e<^Kz&Ff4[΃I.u^O'7Ap>ɱǦ{=+w䓲sO^qrx4RF_JAf;YK?RPųM1FGdwM ezObn+&ZaOC<<::$ق-#P3%+n#Qz.Oj:[䏻?W:m[Ct?'J2ۓUx80؛J6ygNFLC훀gT1dIÈgʻxRxs;>⥌+2mʯ.ymDlqM#BRL2 W+)*†yƐȴ!tsaee|BKee94! S{N Y%,3 eLعl# 5gDko*hϋ9/!7zGAyJgzD(%#Qg@G{߆Uؚ$mշ?Y&a ܬN(I3ԫ^؆#]!2jPO{k1\E-t4y"NfowCͲePpB#66{CݙN&c[^i C5<])# pSvd@l/8\t+f.[d;|c4N(6eBnwCưI@yxgD9JL.#ۀ"lUp n-u cgǡv &V``F|(9`z_hV.jm+qA~)!= EU -d&A?rsxN>KwlNSSRK J6EU0HLuWfpf]=lNyXnR"Q2X$q f(LM+ ttGmxYp1_'SgŜm[*;,XnC]YQZѣ |MmRԌ`n'vje!9̢h~ cK㮀 ~;y;iϋ^_>AYjL0fp!l}MP^`ѵpDS;7~['-TI5A3+z 0 $xvTC+`R[5H {gG+A.,uleb'0Z;˃eoYOkjE~x3KiBAӼ5:S4"\k~ɶwpέ~\my|2hɪx7J2dR,,Zt,-ZUaQ]dN˜^4bfvQ>Q:S~a醵a8X̕ͺ3hdѰV:m:Wҹ&;}OqI"< MS Q.Owp$Ju$o燉 ZY8U 2'U .܌nr"F(Z+ X(^g,Vf.cJAY1f*[`m-/=u^MI 9UyiU|:a~ u`~ӆȣDU(\3Qӗ$&FW,(2}֝(՛ȪСzYM`=§V)-5͘[L˃xPn;H+"oCt$ş:lϡ:}Z70]Wnm%L  9_f1Ho⪼zA/q{X;f6IJ |D Kh[3Onz™1ȗ/;|"!oo0y>RG>&j‡ϛa* =7eI6I"8ZLQ6hL9J] 0֐c)K'OXOf%+w%fgH=q 0lCYwF.{i;r&{ðT"a~g~%R~)D,R7p*Pv`=/t=P̨g|_(\~r6]6J_R}BS8E]aq|_IoHͰX̓x C'<~5~^Y6J/dwkd%E9maŸA d?91b/cQBztQ+b5>\C yE^ su.P γ =() yLXHgݥ&9R+q#˟REBi K c8> d^hJu+?쪰u]@DR\"[TnX/\L^~qq7B5z0Zwm9-^먴^x1x7~zoRH+Q"bFO|êD9 fYh䡜O% '}Vq)ewgcpSwH䷟SD̳;e&|AȣfS sɗ7G27 Q&rh!śPظ\אewk:j=/RK "u&tZzy:6y?!,$^M$% \`Mam @x``U?L7FnOz8[dž|WJHrZqV$ hu=g*[Qu7)e^vZWvy{}~jh3#߄\ʗg.ӿ+],6Aӹ܏I8MY+Օu59oBshX _FqWu'/YYWf$,]bft V UXD6C1:4 JEn/U$Lrq8rIYOm/ endstream endobj 147 0 obj << /Type /ObjStm /N 100 /First 879 /Length 3677 /Filter /FlateDecode >> stream x[ko8_D$P WLii:Ep%Ա3i﹔(Smw Z$uIǹ)6W"+2YdJf\TƅUg \M&8RfB;}tq3&UIZdb"`C2WX\u6&sgc_}-V?↣cp]^xڅRZn`VXWRÀI+-Ɩ`8H郸t,fE{=XAD& imNA=B蘰G&-h|&p챏t `%#xcq,$^:ܡiy&y>.\f.4 3d3 %f::J4*%1 Hs XG*£qv|5`m<87#Y"6R˹_78gRSt*xf 6l  Ƃ_!TH**/B̛07d Cs0Ehs@D=@Ʈ`NH G~P.4ap. |BJv0,aGZ#}A{j7sgd^*c~}lv3~-«aVZa&'OBZA]3v>/ǧ% VVbjj*plݹ}dשw0J'hj'W{=8zQ/Y#/%|Q lUVKmFU,Ne1aJqPT"Ȑ k#vb`C:5X~%HZ$ i "LT\Ys">!7CH DUReD ?U6~?--S/HIQgvgyxTTj!UvU/IŅ r nIOj'?]__/.NAirZztCvXEk Vz.ң@I+\)$">wn%"쉋}xpQrsuCb RC)H; E>+NI]߄w >\5j4Pf5} dD2@* xuo'/@6|ـMGl;;P7ԎhUMB\dF"fl=b#>k%a5e]EM,5ץVD]X1 E ^&!cʳIw}!(ZU:S9߲au LLquMjKK0\'+ St.Ax[#ޫ/v3 WCu jbW5gq>$BJR™/DEG&m0hf]:S]@䠅D aЍ@jU޺%dT~zMUDy =QJSq3ѻHswO ѻmysz8̣ U,?^Wd1>-Ual:Y+(ϧɲ\UdwQћ-Xї ?BCrNnӮ@~'{o"q@YT2m*[x"0\w=v=`>{'){ƞv^;b+{ˎ;7acO?.Pcjѯn"(L*43V9;gO%;,Xc.r&wMٴ\.dVIXN.fl昸f_pxUG_ R]'3v=Y?ndZu*[ey5]prUrQlݰ>/J>//W0#NQט9ߎ3e\ 5-qz-d5)f*Ĥxys6)r ifNڞ6~w5ӌ*$h ,40hl_rʜш5fro}ݵzYSZݮm l6ϡfR oֺh S;zrOG+-R;JܞLdn]t2wp[湢He~4&M.:ň)7{G-W3ՏRv%dysMW'g9wJY~5:{_-2W_(^i[ [%i%d @B:N.PQG-a#pDKjͽ_u{Kh7!0D (ֺb5o3 +] /^4a] %<| trq:.GS6ܞqya3CP;ew؃[A+lC:X0m,0){7nے$Dã,ok;HO*Nͱŵ/ɞtpv=gkr~3B{ eRFT5̤ܺE_&}ZB)pCeXaj +ҡP XJPVoqXJu9S*VqkoIyaͶ_]'v[)/IO?c~3dPǛ3:y#'Hngg7keB5>l ~s Ce ˆOyGr~n;v{N9w_FtOwer8/drs~pYt>]'o}3y !R>jkX~;"=u9HGG0vCM Z;#貵hK-wkOn& 0Ӕkh endstream endobj 274 0 obj << /Author()/Title()/Subject(Vorlesung Logik f\374r Informatiker)/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.13)/Keywords() /CreationDate (D:20121113204026Z) /ModDate (D:20121113204026Z) /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) kpathsea version 6.1.0) >> endobj 247 0 obj << /Type /ObjStm /N 44 /First 364 /Length 1501 /Filter /FlateDecode >> stream xڭX]o6}cx $&N,؆N%b;b C ~{.y"UbV24s i&`9 g -1*30řȓY-gR`b(bW+q`f\84TXHF[@Uk#`n `\h, lFrLg`D9F"`#%fՊIYT| 6l!mtnJafp)S#JH7{f->lq}m#l~ui-˛p,wE}p_?7=NpWh_ M*snw>Ey۷g7|ʰ]69 opVY=Tc7?lq;"=}wt|Bv}c 9aC+ <6O-Eyj)dnj" q܎7R mhBE)0%#DdjHφid"fk!Pnyk/&:EFH.4(:GIP 5LݠiBdt 4A LLR\#/fqJIB\V.[)-OJ9)զStwY9 ^}lO|άH92R 'I-@ZB8_oMV# (hĂ8l Qش9LjMay$dH2d!馌 fte/Uq[Xم3-Z0RQ$}醈e ň.Eaؗj@h=L4% h 't1R@aTC/n`Kh )(4W @NMc惘v6Vh g 4 XMBȲN#g|!ڣgb≁6 Ͽ[Ho-"DqDY?VUn8nqe s{KͭɁ//G= #*%QgV<>aN35㰽|Ar^^> zlQ= .g$.-o1[> OvaAaIr?c9f/b9dC F< W$~=ڻoH>olB74Rv`*߾옧}٩a~Ay%GL"(@B)"ӨtnGVhX_! 0 ;h2^ILx_\t}!) b,#Q ojkK #jb`[ɪY=fsSRo40}/vP|w||gLu_\:4 endstream endobj 275 0 obj << /Type /XRef /Index [0 276] /Size 276 /W [1 3 1] /Root 273 0 R /Info 274 0 R /ID [ ] /Length 667 /Filter /FlateDecode >> stream xKoNQ:Vֵ~.U|ԭߵb"s`D" 1@bB4k`Pwdk}ΗRJkYJ~Lf?_&*&b+ TB\cl3U j4cj:pF:,1@s Ffl L9"1fC-&Zөvf2R 6P`:ptZ_u[J!MpàG98z Ǭ#B17Kz TS9Zry0. !Zv\7`&na0F`L0.hQ΁y4r9`Q}qW>xZ/wtҊ4AZ^k:G2wq&PʥM8rHǥ8r/***jYdYg%no3Oz]}xݖ5#8888888nTjٻE@2っcwpx(((ÖW^шUZ>קj'-ޠjooUMZQPՔ-hU5cEwUV,P5g몪y+~ ܂܂܂ȂB|4'|Amůdş: endstream endobj startxref 323327 %%EOF