home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-03-23 | 54.0 KB | 1,015 lines |
- Newsgroups: comp.sources.misc
- From: jpeg-info@uunet.uu.net (Independent JPEG Group)
- Subject: v29i008: jpeg - JPEG image compression, Part08/18
- Message-ID: <1992Mar24.144721.18439@sparky.imd.sterling.com>
- X-Md4-Signature: 8c88ecdcc41fd846de3d5849ecf38f0a
- Date: Tue, 24 Mar 1992 14:47:21 GMT
- Approved: kent@sparky.imd.sterling.com
-
- Submitted-by: jpeg-info@uunet.uu.net (Independent JPEG Group)
- Posting-number: Volume 29, Issue 8
- Archive-name: jpeg/part08
- Environment: UNIX, VMS, MS-DOS, Mac, Amiga, Cray
-
- #! /bin/sh
- # into a shell via "sh file" or similar. To overwrite existing files,
- # type "sh file -c".
- # The tool that generated this appeared in the comp.sources.unix newsgroup;
- # send mail to comp-sources-unix@uunet.uu.net if you want that tool.
- # Contents: SETUP jdarith.c timg.ppm.u.b
- # Wrapped by kent@sparky on Mon Mar 23 16:02:44 1992
- PATH=/bin:/usr/bin:/usr/ucb ; export PATH
- echo If this archive is complete, you will see the following message:
- echo ' "shar: End of archive 8 (of 18)."'
- if test -f 'SETUP' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'SETUP'\"
- else
- echo shar: Extracting \"'SETUP'\" \(18117 characters\)
- sed "s/^X//" >'SETUP' <<'END_OF_FILE'
- XSETUP instructions for the Independent JPEG Group's JPEG software
- X=================================================================
- X
- XThis file explains how to configure and compile the JPEG software. We have
- Xtried to make this software extremely portable and flexible, so that it can be
- Xadapted to almost any environment. The downside of this decision is that the
- Xinstallation process is not very automatic; you will need at least a little
- Xfamiliarity with C programming and program build procedures for your system.
- X
- XThis file contains general instructions, then sections of specific hints for
- Xcertain systems. You may save yourself considerable time if you scan the
- Xwhole file before starting to do anything.
- X
- XBefore installing the software you must unpack the distributed source code.
- XSince you are reading this file, you have probably already succeeded in this
- Xtask. However, there is one potential trap if you are on a non-Unix system:
- Xyou may need to convert these files to the local standard text file format
- X(for example, if you are on MS-DOS you probably have to convert LF end-of-line
- Xto CR/LF). If so, apply the conversion to all the files EXCEPT those whose
- Xnames begin with "test". The test files contain binary data; if you change
- Xthem in any way then the self-test will give bad results.
- X
- X
- XSTEP 1: PREPARE A MAKEFILE
- X==========================
- X
- XFirst, select a makefile and copy it to "Makefile" (or whatever your version
- Xof make uses as the default makefile name; for example, "makefile.mak" for
- Xold versions of Borland C). We include several standard makefiles in the
- Xdistribution:
- X
- X makefile.ansi: for Unix systems with ANSI-compatible C compilers.
- X makefile.unix: for Unix systems with non-ANSI C compilers.
- X makefile.mc5: for Microsoft C 5.x under MS-DOS.
- X makefile.mc6: for Microsoft C 6.x under MS-DOS.
- X makefile.bcc: for Borland C (Turbo C) under MS-DOS.
- X makefile.pwc: for Mix Software's Power C under MS-DOS.
- X makefile.manx: for Manx Aztec C on Amigas.
- X makefile.sas: for SAS C on Amigas.
- X makefile.mms: for VAX/VMS systems with MMS.
- X makefile.vms: for VAX/VMS systems without MMS.
- X
- XIf you don't see a makefile for your system, we recommend starting from either
- Xmakefile.ansi or makefile.unix, depending on whether your compiler accepts
- XANSI C or not. Actually you should start with makefile.ansi whenever your
- Xcompiler supports ANSI-style function definitions; you don't need full ANSI
- Xcompatibility. The difference between the two makefiles is that makefile.unix
- Xpreprocesses the source code to convert function definitions to old-style C.
- X(Our thanks to Peter Deutsch of Aladdin Enterprises for the ansi2knr program.)
- X
- XIf you don't know whether your compiler supports ANSI-style function
- Xdefinitions, then take a look at ckconfig.c. It is a test program that will
- Xhelp you figure out this fact, as well as some other facts you'll need in
- Xlater steps. You must compile and execute ckconfig.c by hand; the makefiles
- Xdon't provide any support for this. ckconfig.c may not compile the first try
- X(in fact, the whole idea is for it to fail if anything is going to). If you
- Xget compile errors, fix them by editing ckconfig.c according to the directions
- Xgiven in ckconfig.c. Once you get it to run, select a makefile according to
- Xthe advice it prints out, and make any other changes it recommends.
- X
- XLook over the selected Makefile and adjust options as needed. In particular
- Xyou may want to change the CC and CFLAGS definitions. For instance, if you
- Xare using GCC, set CC=gcc. If you had to use any compiler switches to get
- Xckconfig.c to work, make sure the same switches are in CFLAGS.
- X
- XIf you are on a system that doesn't use makefiles, you'll need to set up
- Xproject files (or whatever you do use) to compile all the source files and
- Xlink them into executable files cjpeg and djpeg. See the file lists in any of
- Xthe makefiles to find out which files go into each program. As a last resort,
- Xyou can make a batch script that just compiles everything and links it all
- Xtogether; makefile.vms is an example of this (it's for VMS systems that have
- Xno make-like utility).
- X
- X
- XSTEP 2: EDIT JCONFIG.H
- X======================
- X
- XLook over jconfig.h and adjust #defines to reflect the properties of your
- Xsystem and C compiler. (If you prefer, you can usually leave jconfig.h
- Xunmodified and add -Dsymbol switches to the Makefile's CFLAGS definition.)
- X
- XIf you have an ANSI-compliant C compiler, no changes should be necessary
- Xexcept perhaps for RIGHT_SHIFT_IS_UNSIGNED and TWO_FILE_COMMANDLINE. For
- Xolder compilers other changes may be needed, depending on what ANSI features
- Xare supported.
- X
- XIf you don't know enough about C programming to understand the questions in
- Xjconfig.h, then use ckconfig.c to figure out what to change. (See description
- Xof ckconfig.c in step 1.)
- X
- XA note about TWO_FILE_COMMANDLINE: defining this selects the command line
- Xsyntax in which the input and output files are both named on the command line.
- XIf it's not defined, the output image goes to standard output, and the input
- Xcan optionally come from standard input. You MUST use two-file style on any
- Xsystem that doesn't cope well with binary data fed through stdin/stdout; this
- Xis true for most MS-DOS compilers, for example. If you're not on a Unix
- Xsystem, it's probably safest to assume you need two-file style.
- X
- X
- XSTEP 3: SELECT SYSTEM-DEPENDENT FILES
- X=====================================
- X
- XThe only system-dependent file in the current version is jmemsys.c. This file
- Xcontrols use of temporary files for big images that won't fit in main memory.
- XYou'll notice there is no file by that name in the distribution; you must
- Xselect one of the provided versions and copy, rename, or link it to jmemsys.c.
- XHere are the provided versions:
- X
- X jmemansi.c This is a reasonably portable version that should
- X work on most ANSI and near-ANSI C compilers. It uses
- X the ANSI-standard library routine tmpfile(), which not
- X all pre-ANSI systems have. On some systems tmpfile()
- X may put the temporary file in a non-optimal location;
- X if you don't like what it does, use jmemname.c.
- X
- X jmemname.c This version constructs the temp file name by itself.
- X For anything except a Unix machine, you'll need to
- X configure the select_file_name() routine appropriately;
- X see the comments near the head of jmemname.c.
- X If you use this version, define NEED_SIGNAL_CATCHER
- X in jconfig.h or in the Makefile to make sure the temp
- X files are removed if the program is aborted.
- X
- X jmemnobs.c (That stands for No Backing Store :-). This will
- X compile on almost any system, but it assumes you
- X have enough main memory or virtual memory to hold
- X the biggest images you need to work with.
- X
- X jmemdos.c This should be used in most MS-DOS installations; see
- X the system-specific notes about MS-DOS for more info.
- X IMPORTANT: if you use this, also copy jmemdos.h to
- X jmemsys.h, replacing the standard version. ALSO,
- X include the assembly file jmemdosa.asm in the programs.
- X (This last is already done if you used one of the
- X supplied MS-DOS-specific makefiles.)
- X
- XIf you have plenty of (real or virtual) main memory, just use jmemnobs.c.
- X"Plenty" means at least ten bytes for every pixel in the largest images
- Xyou plan to process, so a lot of systems don't meet this criterion.
- XIf yours doesn't, try jmemansi.c first. If that doesn't compile, you'll have
- Xto use jmemname.c; be sure to adjust select_file_name() for local conditions.
- XYou may also need to change unlink() to remove() in close_backing_store().
- X
- XExcept with jmemnobs.c, you need to adjust the #define DEFAULT_MAX_MEM to a
- Xreasonable value for your system (either by editing jmemsys.c, or by adding
- Xa -D switch to the Makefile). This value limits the amount of data space the
- Xprogram will attempt to allocate. Code and static data space isn't counted,
- Xso the actual memory needs for cjpeg or djpeg are typically 100 to 150Kb more
- Xthan the max-memory setting. Larger max-memory settings reduce the amount of
- XI/O needed to process a large image, but too large a value can result in
- X"insufficient memory" failures. On most Unix machines (and other systems with
- Xvirtual memory), just set DEFAULT_MAX_MEM to several million and forget it.
- XAt the other end of the spectrum, for MS-DOS machines you probably can't go
- Xmuch above 300K to 400K.
- X
- X
- XSTEP 4: MAKE
- X============
- X
- XNow you should be able to "make" the software.
- X
- XIf you have trouble with missing system include files or inclusion of the
- Xwrong ones, look at jinclude.h (or use ckconfig.c, if you are not a C expert).
- X
- XIf your compiler complains about big_sarray_control and big_barray_control
- Xbeing undefined structures, you should be able to shut it up by adding
- X-DINCOMPLETE_TYPES_BROKEN to CFLAGS (or add #define INCOMPLETE_TYPES_BROKEN
- Xto jconfig.h).
- X
- XThere are a fair number of routines that do not use all of their parameters;
- Xsome compilers will issue warnings about this, which you can ignore. Any
- Xother warning deserves investigation.
- X
- X
- XSTEP 5: TEST
- X============
- X
- XAs a quick test of functionality we've included a small sample image in
- Xseveral forms:
- X testorig.jpg A reduced section of the well-known Lenna picture.
- X testimg.ppm The output of djpeg testorig.jpg
- X testimg.gif The output of djpeg -G testorig.jpg
- X testimg.jpg The output of cjpeg testimg.ppm
- X(The two .jpg files aren't identical since JPEG is lossy.) If you can
- Xgenerate duplicates of the testimg.* files then you probably have working
- Xprograms.
- X
- XWith most of the makefiles, "make test" will perform the necessary
- Xcomparisons. If you're using a makefile that doesn't provide this option, run
- Xdjpeg and cjpeg to generate testout.ppm, testout.gif, and testout.jpg, then
- Xcompare these to testimg.* with whatever binary file comparison tool you have.
- XThe files should be bit-for-bit identical.
- X
- XIf your choice of jmemsys.c was anything other than jmemnobs.c, you should
- Xalso test that temporary-file usage works. Try "djpeg -G -m 0 testorig.jpg"
- Xand make sure its output matches testimg.gif. If you have any really large
- Ximages handy, try compressing them with -o and/or decompressing with -G
- Xto make sure your DEFAULT_MAX_MEM setting is not too large.
- X
- XNOTE: this is far from an exhaustive test of the JPEG software; some modules,
- Xsuch as fast color quantization, are not exercised at all. It's just a quick
- Xtest to give you some confidence that you haven't missed something major.
- X
- XIf the test passes, you can copy the executable files cjpeg and djpeg to
- Xwherever you normally install programs. Read the file USAGE to learn more
- Xabout using the programs.
- X
- X
- XOPTIONAL STUFF
- X==============
- X
- XWe distribute the software with support for RLE image files (Utah Raster
- XToolkit format) disabled, because the RLE support won't compile without the
- XUtah library. If you have URT version 3.0, you can enable RLE support as
- Xfollows:
- X 1. #define RLE_SUPPORTED in jconfig.h or in the Makefile.
- X 2. Add a -I option to CFLAGS in the Makefile for the directory
- X containing the URT .h files (typically the "include"
- X subdirectory of the URT distribution).
- X 3. Add -L... -lrle to LDLIBS in the Makefile, where ... specifies
- X the directory containing the URT "librle.a" file (typically the
- X "lib" subdirectory of the URT distribution).
- X
- XIf you want to incorporate the JPEG code as subroutines in a larger program,
- Xwe recommend that you make libjpeg.a. (See file README for more info.)
- X
- XCAUTION: When you use the JPEG code as subroutines, we recommend that you make
- Xany required configuration changes by modifying jconfig.h, not by adding -D
- Xswitches to the Makefile. Otherwise you must be sure to provide the same -D
- Xswitches when compiling any program that includes the JPEG .h files.
- X
- XIf you need to make a smaller version of the JPEG software, some optional
- Xfunctions can be removed at compile time. See the xxx_SUPPORTED #defines in
- Xjconfig.h. If at all possible, we recommend that you leave in decoder support
- Xfor all valid JPEG files, to ensure that you can read anyone's output.
- XRestricting your encoder, or removing optional functions like block smoothing,
- Xwon't hurt compatibility. Taking out support for image file formats that you
- Xdon't use is the most painless way to make the programs smaller.
- X
- X
- XNOTES FOR SPECIFIC SYSTEMS
- X==========================
- X
- XWe welcome reports on changes needed for systems not mentioned here.
- XSubmit 'em to jpeg-info@uunet.uu.net. Also, ckconfig.c is fairly new and not
- Xyet thoroughly tested; if it's wrong about how to configure the JPEG software
- Xfor your system, please let us know.
- X
- X
- XAmiga:
- X
- XMakefiles are provided for Manx Aztec C and SAS C. I have also heard from
- Xpeople who have compiled with the free DICE compiler, using makefile.ansi as a
- Xstarting point (set "CC= dcc" and "CFLAGS= -c -DAMIGA -DTWO_FILE_COMMANDLINE
- X-DNEED_SIGNAL_CATCHER" in the makefile). For all compilers, we recommend you
- Xuse jmemname.c as the system-dependent memory manager. Assuming you have
- X-DAMIGA in the makefile, jmemname.c will put temporary files in JPEGTMP:.
- XChange jmemname.c if you don't like this.
- X
- X
- XCray:
- X
- XShould you be so fortunate as to be running JPEG on a Cray YMP, there is a
- Xcompiler bug in Cray's Standard C versions prior to 3.1. You'll need to
- Xinsert a line reading "#pragma novector" just before the loop
- X for (i = 1; i <= (int) htbl->bits[l]; i++)
- X huffsize[p++] = (char) l;
- Xin fix_huff_tbl (in V2, line 42 of jchuff.c and line 38 of jdhuff.c). The
- Xusual symptom of not adding this line is a core-dump. See Cray's SPR 48222.
- X
- X
- XHP/Apollo DOMAIN:
- X
- XAt least in version 10.3.5, the C compiler is ANSI but the system include
- Xfiles are not. Use makefile.ansi and add -DNONANSI_INCLUDES to CFLAGS.
- X
- X
- XHP-UX:
- X
- XIf you have HP-UX 7.05 or later with the "software development" C compiler,
- Xthen you can use makefile.ansi. Add "-Aa" to the CFLAGS line in the makefile
- Xto make the compiler work in ANSI mode. If you have a pre-7.05 system, or if
- Xyou are using the non-ANSI C compiler delivered with a minimum HP-UX 8.0
- Xsystem, then you must use makefile.unix (and do NOT add -Aa). Also, adding
- X"-lmalloc" to LDLIBS is recommended if you have libmalloc.a (it seems not to
- Xbe present in minimum 8.0).
- X
- XOn HP 9000 series 800 machines, the HP C compiler is buggy in revisions prior
- Xto A.08.07. If you get complaints about "not a typedef name", you'll have to
- Xconvert the code to K&R style (i.e., use makefile.unix).
- X
- X
- XMacintosh Think C:
- X
- XYou'll have to prepare project files for cjpeg and djpeg; we don't include
- Xthose in the distribution since they are not text files. The COBJECTS and
- XDOBJECTS lists in makefile.unix show which files should be included in each
- Xproject. Also add the ANSI and Unix C libraries in a separate segment. You
- Xmay need to divide the JPEG files into more than one segment; you can do this
- Xpretty much as you please.
- X
- XIf you have Think C version 5.0 you need not modify jconfig.h; instead you
- Xshould turn on both the ANSI Settings and Language Extensions option buttons
- X(so that both __STDC__ and THINK_C are predefined). With version 4.0 you must
- Xedit jconfig.h. (You can #define HAVE_STDC to do the right thing for all
- Xoptions except const; you must also #define const.)
- X
- Xjcmain and jdmain are set up to provide the usual command-line interface
- Xby means of Think's ccommand() library routine. Anybody want to write a
- Xmore Mac-like interface for us?
- X
- X
- XMS-DOS, generic comments:
- X
- XThe JPEG code is designed to be compiled with 80x86 "small" or "medium" memory
- Xmodels (i.e., data pointers are 16 bits unless explicitly declared "far"; code
- Xpointers can be either size). You should be able to use small model to
- Xcompile cjpeg or djpeg by itself, but you will probably have to go to medium
- Xmodel if you include the JPEG code in a larger application. This shouldn't
- Xhurt performance much. You *will* take a noticeable performance hit if you
- Xcompile in a large-data memory model, and you should avoid "huge" model if at
- Xall possible. Be sure that NEED_FAR_POINTERS is defined by jconfig.h or by
- Xthe Makefile if you use a small-data model; be sure it is NOT defined if you
- Xuse a large-data memory model. (As distributed, jconfig.h defines
- XNEED_FAR_POINTERS if MSDOS is defined.)
- X
- XThe DOS-specific memory manager, jmemdos.c, should be used if possible.
- X(Be sure to install jmemdos.h and jmemdosa.asm along with it.) If you
- Xcan't use jmemdos.c for some reason --- for example, because you don't have
- Xa Microsoft-compatible assembler to assemble jmemdosa.asm --- you'll have
- Xto fall back to jmemansi.c or jmemname.c. IMPORTANT: if you use either of
- Xthose files, you will have to compile in a large-data memory model in order
- Xto get the right stdio library. Too bad.
- X
- XNone of the above advice applies if you are using a 386 flat-memory-space
- Xenvironment, such as DJGPP or Watcom C. For these compilers, do NOT define
- XNEED_FAR_POINTERS, and do NOT use jmemdos.c. Use jmemnobs.c if the
- Xenvironment supplies adequate virtual memory, otherwise use jmemansi.c or
- Xjmemname.c.
- X
- X
- XMS-DOS, DJGPP:
- X
- XThe file egetopt.c conflicts with some library routines in DJGPP 1.05.
- XRemove #include "egetopt.c" from jcmain.c and jdmain.c, and in each of
- Xthose files change the egetopt(...) call to getopt(...). This will be
- Xfixed more cleanly in some future version. Use makefile.ansi, and put
- X"-DTWO_FILE_COMMANDLINE" (but *not* -DMSDOS) in CFLAGS.
- X
- X
- XMS-DOS, Microsoft C:
- X
- XSome versions of MS C fail with an "out of macro expansion space" error
- Xbecause they can't cope with the macro TRACEMS8 (defined in jpegdata.h).
- XIf this happens to you, the easiest solution is to change TRACEMS8 to
- Xexpand to nothing. You'll lose the ability to dump out JPEG coefficient
- Xtables with djpeg -d -d, but at least you can compile.
- X
- Xmakefile.mc6 (MS C 6.x makefile) has not been tested since jmemdosa.asm
- Xwas added; we'd appreciate hearing whether it works or not.
- X
- X
- XSun:
- X
- XDon't forget to add -DBSD to CFLAGS. If you are using GCC on SunOS 4.0.1 or
- Xearlier, you will need to add -DNONANSI_INCLUDES to CFLAGS (your compiler may
- Xbe ANSI, but your system include files aren't). I've gotten conflicting
- Xreports on whether this is still necessary on SunOS 4.1 or later.
- END_OF_FILE
- if test 18117 -ne `wc -c <'SETUP'`; then
- echo shar: \"'SETUP'\" unpacked with wrong size!
- fi
- # end of 'SETUP'
- fi
- if test -f 'jdarith.c' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'jdarith.c'\"
- else
- echo shar: Extracting \"'jdarith.c'\" \(1144 characters\)
- sed "s/^X//" >'jdarith.c' <<'END_OF_FILE'
- X/*
- X * jdarith.c
- X *
- X * Copyright (C) 1991, 1992, Thomas G. Lane.
- X * This file is part of the Independent JPEG Group's software.
- X * For conditions of distribution and use, see the accompanying README file.
- X *
- X * This file contains arithmetic entropy decoding routines.
- X * These routines are invoked via the methods entropy_decode
- X * and entropy_decoder_init/term.
- X */
- X
- X#include "jinclude.h"
- X
- X#ifdef ARITH_CODING_SUPPORTED
- X
- X
- X/*
- X * The arithmetic coding option of the JPEG standard specifies Q-coding,
- X * which is covered by patents held by IBM (and possibly AT&T and Mitsubishi).
- X * At this time it does not appear to be legal for the Independent JPEG
- X * Group to distribute software that implements arithmetic coding.
- X * We have therefore removed arithmetic coding support from the
- X * distributed source code.
- X *
- X * We're not happy about it either.
- X */
- X
- X
- X/*
- X * The method selection routine for arithmetic entropy decoding.
- X */
- X
- XGLOBAL void
- Xjseldarithmetic (decompress_info_ptr cinfo)
- X{
- X if (cinfo->arith_code) {
- X ERREXIT(cinfo->emethods, "Sorry, there are legal restrictions on arithmetic coding");
- X }
- X}
- X
- X#endif /* ARITH_CODING_SUPPORTED */
- END_OF_FILE
- if test 1144 -ne `wc -c <'jdarith.c'`; then
- echo shar: \"'jdarith.c'\" unpacked with wrong size!
- fi
- # end of 'jdarith.c'
- fi
- if test -f 'timg.ppm.u.b' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'timg.ppm.u.b'\"
- else
- echo shar: Extracting \"'timg.ppm.u.b'\" \(32122 characters\)
- sed "s/^X//" >'timg.ppm.u.b' <<'END_OF_FILE'
- XMXYNONW.'AS]3=2M+<BA(7A(_:!Q)6A4]6A4]7A8]91U$8AH[5P\P<25 HE9Q
- XMOG!_OG!_N6UPO7%TS()\C%Z69CAP=T5[=$)XLWNK?$1T1@@R5QE#6A4]8!M#
- XM8AM 6Q0Y61 T7A4Y8AL^81H]9B%@4 M*7A-#50HZFDEAS'N3HE!3K5M>YYR0
- XM[:*6VYR,_+VM\,&TZKNNIH)Y8#PSK"Y"LC1(R5!>TEEGQ5!9T5QEX&]RV6AK
- XMZW=YZW=YZ'M[ZWY^Z(:$ZHB&XXN(XHJ'YI&&WHE^ZXJ(\9".[H>+[8:*\8V6
- XM\X^8ZY.:Y(R3X8^5Y)*8XHZ4XHZ4WX.)RFYTXF)JYF9NVFUQU6ALTF)GT6%F
- XMV5QIV5QIUG1ZZXF/WZ^I]\?!_MG0[LG YJBJWJ"B[H^$Y(5ZZ(."Z82#X75\
- XMUVMRU65JRUM@SUY?QU97Q%19O4U2NTUAK3]3AQL\@Q<X91H_8!4Z:R!(:1Y&
- XM=2I2:R!(6A$NE4QITXN?YY^SO'2(BT-7;R5%=BQ,71$^;2%.610\6Q8^7A8]
- XM81E 714V6! Q>2U(K&![O&Y]O&Y]N6UPP'1WT(: C%^/?$]_G&B/KWNBH62$
- XM<#-36!$T;29):1]+71,_7Q5'9AQ.5Q8_3PXW5!H[72-$51Y12Q1'8!$U;1Y"
- XMT7-\OF!IFTM!W8V#T)Z,X[&?U[*HW[JP]KS!SI29<R(PA#-!L#8\OT5+RE-8
- XMSE=<SE=<TUQAVF1IWVENX7%TY'1WXWQ\Z8*"Z8J'ZXR)YXV(YHR'YY62Z9>4
- XMYI62XI&.WI*-XI:1XI:1X)2/X)*.XY61[)23ZY.2[(N-XHW79ZUF]SS71U
- XMRG%RV61MUF%JXUEGX5=EVUEDVEACT&YRX'Z"XZ6A_L"\_='*]LK#X;BUU*NH
- XMYYF3X9.-X(2(V'R W6Y[V6IWX6%OWEYLW5UCVEI@RU19R%%6OE)@J3U+AR0\
- XM?QPT8Q0Z8!$W;R!(<"%)=B=/:QQ$7A(OC$!=U(J<YYVOSH>8?SA)>S)/81@U
- XM6Q$];2-/7!9#5Q$^:AA!;AQ%:0\L<!8SED%/NF5SPWAVO'%OMW1HQ(%UTHU]
- XM@52$FVZ>M("GB55\=#=7BTYNEU!SC49I?3-?8QE%60]!8AA*6QI#5Q8_4QDZ
- XM4!8W51Y14QQ/7 TQGD]SR6MTNUUFK%Q2[)R2VJB6X:^=WKFOX;RRXZFN;3,X
- XM=",Q?RX\M#I P4=-RU19SE=<SE=<TUQAVF1IWVENX7%TY'1WXGM[Z(&!YXB%
- XMZXR)Z8^*Z(Z)ZIB5[)J7ZIF6YI62XI:1YIJ5YIJ5XY>2XY61Y9>3[964[)23
- XM[(N-Y(.%WWA\VG-WSW9WS'-TVV9OUV)KXUEGXEAFVUEDVEACSFQPWGR XJ2@
- XM_+ZZ_='*]\O$X;BUTZJGY9>1X)*,X(2(V7V!WW!]VFMXX6%OWEYLW%QBVUMA
- XMS59;RE-8P%1BJCY,B"4]?QPT918\8Q0Z<"%)<R1,>"E1:AM#7! MASM8THB:
- XMY)JLSH>8CTA9=RY+81@U6A \:1]+6Q5"61- :AA!:AA!9PTJ=QTZH$M9P&MY
- XMPG=UO'%ONG=KQH-WTHU]E5Z/:S1E61Y#3Q0Y>3A1N'>0M&V&A3Y7?C-88A<\
- XM50PZ7A5#6QE%61=#51H_4A<\515 5Q=";AXZPW./O65JJ5%6PWQQ[::;VZZ@
- XMZ[ZPXKRXX;NWF5IF20H6<18NE#E1ND!&Q4M1SU5;T%9<T%9<U5MAVF1IWVEN
- XMX7%TXW-VXWIZZ']_YH6#ZXJ(ZX^+[9&-[9B4\)N7[9N6ZIB3YYF3ZIR6Z)R5
- XMY9F2ZIJ4ZIJ4[I:3ZY.0[(F*Y8*#Y'I]X'9YU'=XTG5VWFERVF5NY%IHXEAF
- XMW%IEW%IES6IMWGM^XJ&<_;RW_M++^<W&X[JWTJFFY96/X9&+X86)VW^#X7)_
- XMVVQYWV)OVUYKW%QBW%QBSUE@S%9=P%9GJ#Y/A"1 ?!PX9A<[9Q@\<"%)=B=/
- XM>RQ4:1I"6@XK?S-0T(:8X):HRX25I5YO;R9#8!<T60\Y8QE#6A1!71=$:QE
- XM9!(Y9 HE@2="KEEEQW)^P'5QOG-OOGMOR(5YTHU]A4Y_0PP].P E6!U"AT9?
- XML7")L6J#G%5N>2Y39!D^711"8AE'5Q5!4A \51H_6A]$30TX4A(]GDYJP7&-
- XMN&!EJU-8YI^4Z:*7VJV?\<2VYL"\HGQX4A,?8"$M<Q@PH49>P$9,R4]5T5==
- XMT%9<T%9<UEQBVF1IWFAMX7%TXG)UXGEYYGU]XX* Z8B&[)",[Y./ZY:2[IF5
- XM[9N6ZYF4YYF3ZIR6Z)R5Y)B1[)R6ZIJ4[962Z9&.ZH>(Y(&"Y'I]XGA[UGEZ
- XMU7AYX6QUW&=PY5MIXEAFW%IEW5MFS&ELW7I]X)^:^[JU_M++_='*YKVZTJFF
- XMXY.-WX^)XH:*W8&%Y'6"W6Y[X&-PVUYKVUMAW5UCT5MBSEA?P%9GISU.@R,_
- XM>QLW9!4Y:!D];1Y&>2I2?S!8:!E!6P\L>"Q)SH26W)*DQ7Z/N'&"9QX[7!,P
- XM60\Y7Q4_6Q5"81M(:QE 7@PS9 HEC#)-N61PR72 OG-OP79RPX!TRXA\TXY^
- XM=C-E619(8!DZ9A] @CM*K69UMFMYK&%OB3Y6;B,[7A8]81E 51- 4 X[4A,_
- XM4Q1 4PHF;B5!R'F&N&EVIEE6RWY[\+>LWZ:;VK2NXKRVS*"H2Q\G4P@@:A\W
- XMD"A*GS=9PTE/S%)8T5==T5==T5==UUUCVV1IW69KX&]RXG%TXG=XY7I[Y']^
- XMZ82#[(V*\9*/ZY2,\)F1\)R3[IJ1ZYN1[9V3ZYN1YY>-[)N1Z9B.[9&+Z(R&
- XMZ(. XWY[XWAWXG=VV79YV79YXVUTWFAOX5QFWEECVUMCW5UESVALWWA\X9J7
- XM^[2Q_]#*_]/-Z,*\TJRFX9&+WX^)XX:(WX*$Y7>!WW%[X61PW%]KVEQAW5]D
- XMSUUERUEANU5IH3M/?2$_=1DW8A,W:!D]:!E!>2I2@C-99Q@^7! M<B9#S8.5
- XMVI"BOWB'PWR+9QX[6 \L6 XX71,]8!I%8QU(:AD]7 LO:A$JF#]8P&QSQG)Y
- XMO7-MQ7MURHAYSXU^TXY^>C=I619(308G4PPMAC].M6Y]MFMYLVAVFD]G;B,[
- XM3@8M40DP4A ]51- 41(^20HV6A$MD4ADQWB%LF-PHE52]*>DZ[*GY*N@Y+ZX
- XMU:^I>4U50!0<8!4M9ALSEBY0F3%3Q$I0S%)8T5==T5==TEA>V%YDVF-HVV1I
- XMW6QOX7!SX79WY'EZX7Q[Y8!_Z8J'[H^,ZY2,\)F1\9V4\)R3[IZ4[Y^5[)R2
- XMZ)B.Z9B.YY:,ZHZ(Y8F#Y8!]X'MXX79UWW1SUG-VUW1WXFQSW6=NX%MEW%=A
- XMVUMCW5UESVALWG=[W9:3]J^L_L[(_]7/Z\6_TZVGX9&+WHZ(XH6'WHY7>!
- XMWW%[XV9RWF%MVUUBWF!ESUUER5=?MU%EFS5)>!PZ<A8T81(V:1H^8Q0\>"E1
- XM@S1:9!4[6P\L;" ]RH"2V8^AOG>&RH.2="M(5PXK6 XX7!(\9B!+9!Y):!<[
- XM8 \S=QXWI4QEQ7%XPV]VO')LRH!ZT8^ TY&"THU]=RA69!5#7 PJ:QLYETI3
- XMIUICJ5M@T8.(O'"!A3E*6! Q40DJ4 PX5! \41(^2@LW>"4RN&5RM&=HJEU>
- XMO'IR]K2LW[&JYKBQV[>\GGI_0@\E72I :!0W<1U DR!*IS1>PDA.RE!6T5==
- XMTEA>U5E@VEYEVV%GVV%GWFAMXVURY'1WYG9YXWIZY7Q\YX6#[(J(ZI&&\)>,
- XM\IN0\IN0\)V0\9Z1[)N.YY:)Z92(Z).'ZHR#YHA_YW]YXGITXG-PWW!MUVUP
- XMV6]RX&IQVV5LW%ICV%9?VEIBW5UETF5IWW)VW8^,]:>D_<G$_]3/ZLC T*ZF
- XMXY&,X(Z)X82&W8""Y7=_WW%YXVAQWV1MV5]CVV%EREQDPU5=KDYCDC)';Q@\
- XM:A,W8A0U;!X_8!$W=RA.@C-98!$W60TH91DTQ7N+VI"@P'F(T(F8B4!<6A$M
- XM6 XV6A X:B5-8AU%910V9Q8XABY LUMMRG=ZPF]RO7-ISH1ZUY6$UI2#THU]
- XM8Q1"9QA&8! N9!0RE4A1H51=CD!%J5M@YIJKL&1U?#158QL\3@HV2@8R30XZ
- XM4!$]DC],R7:#K6!AHE56[*JB[*JBZ+JS\L2]S*BM32DN1Q0J4!TS<!P_:Q<Z
- XMD!U'J39@P4=-R4]5T%9<TUE?UEIAVEYEVV%GV5]EW&9KXFQQY'1WYG9YXGEY
- XMXWIZY(* ZHB&YHV"[).([I>,[YB-[9J-[IN.Z)>*XY*%Z).'YY*&ZHR#Y8=^
- XMYW]YX7ESX7)OWF]LU6MNUVUPWVEPVF1KVUEBUU5>V5EAW5UET&-GW7!TVHR)
- XM\**?^<7 _]+-ZLC T*ZFXY&,X(Z)X82&W8""Y'9^WW%YY&ERX&5NVF!DVV%E
- XMR5MCP%):JDI?CBY#;!4Y9Q T91<X;B!!7@\U=RA.@3)87 TS5@HE8!0OPGB(
- XMVI"@Q'V,U8Z=FE%M7A4Q60\W60\W;"=/8!M#9!,U;1P^D#A*O&1VSGM^PW!S
- XMO7-IT(9\VIB'V):%THU];AE!:10\>28_=R0]HE):NVMSN6MP?S$VHE9ISX.6
- XMQ7V<7!0S6!4Z6!4Z/0 A8R)'QG!RL%I<IUU7NW%K\;FQ[;6MXKFY],O+9#I-
- XM1APO3A P71\_@"-);1 VG2A.I3!6N3]%P4=-S%!7TU=>UUMBV5UDW6%HWV-J
- XMWF=LX6IOXG%TYG5XY7AZZ'M]ZH&![(.#YXF [(Z%\)6+\I>-[)6*Z9*'YY*&
- XMZ).'Z9"%Z9"%ZXJ"Y81\Z7UYY7EUWVQJU&%?VFANU6-IUV!EV&%FV5M@TE19
- XMU%9;VEQAV&1JW&ANW(.$]9R=];^X_]'*[L_$T;*GWXN$WXN$XH*$VWM]X')Y
- XMW6]VX&ENW69KV61FTUY@R5YGQ5ICH$5??2(\8Q$[8Q$[:!H[;R%":!D_?S!6
- XMAC=;7Q T50DD9AHULFEVV(^<NG. P7J'M&N%91PV4PDQ7Q4]92!%92!%7@XL
- XM:QLYJ%!?R'!_Q7-PQ')OQGUMSH5UTI!^U9.!U(^!C#=?:A4]>RA!AC-,JEIB
- XMTX.+V8N0CT%&;2$TM6E\SH:E:B)!3@LP3 DN3@TR@#]DM%Y@P&ILIEQ6V(Z(
- XM\[NS_,2\Z\+"JH&!5"H]/1,F2PTM7B! @R9,;1 VF21*H2Q2NT%'PTE/S5%8
- XMU%A?UEIAV%QCVU]FW6%HW69KX&ENX7!SY71WY7AZYWI\Z8" ZX*"YXF ZHR#
- XM[)&'[I.)ZI.(Z9*'YY*&YY*&Z(^$Z9"%ZXJ"Y81\Z'QXY'ATX&UKUF-AV6=M
- XMU6-IUV!EV&%FV5M@TE19TU5:V%I?V&1JW&ANW82%])N<\[VV_]#)\M/(VKNP
- XMWXN$W8F"X(""VWM]X')YW&YUWVAMW&5JV&-ETUY@R5YGP59?FC]9>1XX8A Z
- XM8Q$[:!H[<2-$:AM!?S!6AC=;7Q T5 @C9!@SJ6!MV(^<PWR)QG^,M&N%9ATW
- XM40<O8!8^8AU"8!M 81$O=R=%L5EHRW."Q')OPW%NR8!PSX9VT8]]TY%_TXZ
- XM?"E&80XKAS5*HE!EMF=TZ)FF]*BYH55F7! KBS]:K66&:"!!2@<B1@,>7QTR
- XMF5=LP&YINFACK6IB[*FA\[^[_\W)N(N721PH2A0T/0<G40<O:1]'C2Q0<Q(V
- XMDR4_G"Y(O4-)Q$I0SE)9U%A?UUA@V5IBV5UDVU]FWF1JXFANY&YSYW%VYG5X
- XMZ7A[Z7Q^['^!Z(=_Z(=_Z(B ZHJ"ZH^%[)&'ZI&&Z9"%Z8N"ZXV$[HB"YH!Z
- XMYWAUXW1QX6MJVF1CVV%GV5]EUV!CUV!CU5M?SU59TE19U%9;UV!EW69KWW^!
- XM])26[K2O_\O&]MG-Y,>[X(R%W(B!WWZ VWI\X'-WW&]SWF=JVV1GU6%CTU]A
- XMPU]HM5%:C#94<!HX6Q! 7A-#9A@W<R5$;1Y"@#%5A39:8!$U4P@@8!4MG51A
- XMUHV:S8:3RH.0M&N%:B$[40@N8!<]7AH\614W914QAS=3O69PS'5_PW%JQ')K
- XMS85PT8ETT(]XT9!YT(M]<1X[@2Y+IU5JJUENK%UJW8Z;[J*SM&AY:!PW:1TX
- XM?C976Q,T2 4@10(==#)'MG2)N&9AFTE$T(V%^[BP\[^[Y[.O;D%-1!<C1 XN
- XM/PDI50LS;B1,ES9:>1@\DR4_GS%+NT%'PTE/S5%8TU=>UUA@V5IBV5UDW&!G
- XMW6-IX6=MXFQQYG!UY71WYW9YYWI\ZGU_YH5]XX)ZX8%YY(1\YXR"ZH^%Z9"%
- XMYXZ#YXF ZHR#[(: Y'YXY'5RX'%NWVEHV6-BUEQBUUUCUV!CUE]BU5M?T%9:
- XMT5-8T%)7U%UBVF-HVWM][HZ0YJRG_\;!^-O/[=#$X8V&VX> W7Q^W'M]XG5Y
- XMW&]SWF=JW&5HU6%CU6%CP5UFK$A1@BQ*:Q4S7!%!819&9!8U=2=&<2)&@#%5
- XMA#598!$U4P@@7!$IE$M8THF6T8J7R8*/MFV'=2Q&5@TS7A4[6Q<Y5! R:AHV
- XMED9BQ&UWRW1^Q')KQG1MTHIUTXMVSXYWSHUVSHE[AC9*LV-WLF-WB#E-?#!%
- XMI5ENK&. DTIG7!(Z6A X:R)&40@L2P8:6!,GDU%4QH2'K&!;L65@^+JT^KRV
- XMWJJNDU]C.P<=5B(X4 PV3@HT7PLV=B)-GCY:?1TYC"HRFCA NCY%P45,RT]6
- XMTE9=UUA@V5IBW5YFX&%IW6%HX&1KXFMPY6YSY7%UYW-WZ'=ZZWI]Y8%[XGYX
- XMWWUWXH!ZY8=_Z8N#Z8N#Z(J"YX> Z(B![()^Y7MWY7)QX&ULW61EUEU>U%5=
- XMV%EAV5]CV5]CTUY>SUI:T%57S5)4UUMBW&!GWG=[[XB,YJBB_\2^^=_1\MC*
- XMY(Z&VX5]W'M[W7Q\XW9ZW&]SW&=IVV9HTF-ATF-AO%EDH3Y)=2-#91,S6Q1'
- XM8!E,8A0S>"I)="5)?S!4@3-481,T5 DA6Q HC$-.RX*-T8N5Q7^)N7&(AS]6
- XM710Z7!,Y5Q,U4@XP="4\HE-JQ6]UR')XQW9JRGEMU(QUU(QUSHUVS(MTS(=Y
- XMFDI>RWN/N6I^BSQ0>R]$CT-8>C%.:B$^5@PT6Q$Y710X20 D9R(VB418I6-F
- XMG5M>JU]:UHJ%Y:>AWZ&;PX^36B8J.04;/0D?4P\Y4P\Y7PLV=2%,HT-?@2$]
- XMB2<OF#8^N3U$P$1+RT]6TE9=UUA@VEMCWE]GX&%IW&!GWV-JX6IOY&URXV]S
- XMYG)VYG5XZ7A[X7UWX7UWWWUWX7]YXX5]Y8=_YXF!YXF!YH9_Y85^Z'YZXGAT
- XMY'%PWVQKV%]@S515TE-;V5IBW&)FW&)FUF%AU%]?U%E;SU16V5UDW6%HWG=[
- XM[XB,YJBB_\; ^^'3\]G+Y8^'V8-[V7AXW'M[Y'=[W&]SVV9HVF5GT&%?T&%?
- XMM5)=E#$\:QDY8Q$Q719)8!E,81,R>BQ+=B=+?2Y2?C!181,T5PPD6Q H?S9!
- XMPWJ%THR6PWV'OW>.F%!G9!M!61 V4P\Q51$S@C-*KV!WQG!VQW%WRWINSGUQ
- XMU8UVU(QUS8QURXISS(=YCD-1L69TM6M]KV5WCD5?C$-=;B1,7Q4]6A% 5@T\
- XM4PDQ8!8^I%]MO'>%MW5ME%)*H%I4PWUWO']]S(^-I')Z62<O6!L[20PL6@X]
- XM6P\^9 <T?!],JDM@AR@]A2HHDS@VNCY%P45,RT]6TE9=UUA@V%EAW5UEWU]G
- XMW5YFX&%IXFANY&IPXVURY6]TY71WYW9YWWEVX7MXXWY[Y']\XH)]XX-^Y(6
- XMY8:!YH2 Y()^Y'EXX'5TY7!RX&MMU%A=Q$A-TU%:W5MDWV5IX&9JW&=GVV9F
- XMVV!BU%E;VUMCW5UEW7-X[H2)Y:>A_\2^]MW/[-/%Y(Z&UH!XUG5UVGEYXW9X
- XMV6QNV&-CV&-CSE]=RUQ:K$M6B"<R8!(S7A Q7!9,7AA.7Q$P>RU,=RE*>BQ-
- XM>RU.8A0U60XF71(J;R8QNG%\UI":QX&+QGZ5I5UT:!]%5PXT30DI6A8VDD-:
- XMO6Z%R7-WR7-WT']RSWYQU(UTTXQSS(MRRXIQS8AZ:1XL=BLYCT57I5MM;20^
- XM8!<Q4PDQ3@0L4@DX3 ,R6Q$YC$)JUY*@T8R:S8N#R8=_O'9PP7MUV)N9XZ:D
- XM@E!831LC0@4E5!<W6@X]71% 90@U?R)/L5)GC2Y#ARPJE#DWO$!'PT=.S%!7
- XMTE9=UE=?UUA@VUMCW5UEW5YFX&%IX6=MY&IPXFQQY&YSY'-VYG5XW7=TXGQY
- XMY8!]Y8!]X8%\X8%\XH-^Y8:!YH2 XX%]XG=VWW1SYG%SX&MMT55:OD)'U%);
- XMWUUFXFALY&INX&MKX&MKWV1FV%U?V%A@V5EAV&YSZH"%XJ2>_\&[\=C*Y<R^
- XMXXV%U'YVTW)RV7AXX71VUVILUF%AUF%AS%U;R%E7ID50@2 K6PTN70\P7!9,
- XM7!9,7Q$P?"Y-=RE*>2M,>2M,8A0U6Q H7A,K8ADDM&MVVI2>RX6/RH*9JV-Z
- XM:2!&5PXT204E71DYGD]FQG>.S'9ZRW5YTX)USWYQU(UTTXQSS(MRRXIQS8AZ
- XM60TX60TXA5!W@TYU>#EG519$6 O8@0Y9A4Y5P8J*P$&NY&6P)F)R:*2X):$
- XMZ9^-VYNLZ:FZV)2FFU=I9!\S4PXB4! O3P\N6!D_30XT7!$V<29+J$EBCB](
- XME20QI#- O3M$QD1-TT]6VU=>W5E=W5E=VUI;W%M<WE]?XF-CXFEIY6QLX6UO
- XMXV]QXW)UYG5XZG5WZG5WYWAXZ'EYXWUZY7]\XX%]Y8-_YX)_YH%^YGMZXG=V
- XMY'!RW6EKU%A=QDI/R5A;V6AKXV=NU5E@UTQ8X59B[%QLZUMKT$E6VE-@U65L
- XMX7%XZ9>4_[6R_[^X\[&JUWUXUGQWX7MUW7=QW6IHWVQJW&EUSEMGP%Y\L4]M
- XM?"E68 TZ6Q5#6Q5#5Q,_9"!,;!E(<!U,AS)*=B$Y@RQ%:Q0M7PPY8@\\6!,Y
- XMJ&.)RX^6RX^6NW=]KFIP>29)70HM7@TD8Q(IIE=CR7J&QWAZRWQ^R'QNU8E[
- XMU8IVU(EUTXATT89RSX9V:1U(IEJ%KWJA5R)).P J3Q ^>!I/:@Q!4 C3P B
- XM7S4ZS:.HOYB(V;*B\JB6\*:4[*R]R8F:EU-E:"0V3PH>3 <;4! O6!@W6QQ"
- XM4!$W71(W<29+JDMDD3)+FBDVJ3A%O3M$Q4-,T4U4UU-:V559VE9:V5A9VUI;
- XMWE]?X6)BX6AHY&MKX6UOXV]QY'-VYG5XZ71VZ71VYG=WZ'EYXWUZY7]\XX%]
- XMY()^YH%^YH%^YWQ[XWAWY7%SWVMMUUM@RT]4U&-FT6!CPD9-H"0KG1(>K"$M
- XMP3%!QS='UD]<VE-@SEYEUV=NWHR)^JBE\:^HXJ"9VX%\U'IUW7=QW'9PWVQJ
- XMWFMIV69RRUADOEQZHD!>;QQ)70HW6!) 6Q5#6A9"81U);AM*<R!/A"]'=2 X
- XM@"E";!4N8Q ]9A- 51 VG5A^RX^6SI*9N75[M'!V@S!37@LN:!<N=20[LV1P
- XMRWR(Q79XRGM]RGYPU8E[U8IVU(EUTXATT89RSX9V;2Q3KVZ5L6R4:"-+5Q(X
- XM51 V7QP^1P0F2P8<5A$GE$M6UXZ9V)J6[[&MV*J9X;.B[JW&IF5^81PT2@4=
- XM4 LC51 H5!$S6!4W7AU$4A$X7A,X="E.KD]HEC=0G2X[K3Y+P#Y'QD1-STU4
- XMU%)9V%18V559VEE:W%M<W%U=X&%AX69GY&EJXFUOY&]QY'-VYG5XZ'-UZ'-U
- XMYG=WYWAXY7QZYWY\XX%]Y()^XX%]Y8-_Y7]\X7MXY'5UX'%QV61FSEE;VV%G
- XMVF!FSD]7MC<_L2PVNC4_P3]*P#Y)OT1-PD=0MU%5PUUAU()_\9^<Z*2>V96/
- XMX82#U'=VVG%MW71PWFUNVFEJTF-RQUAGM5=XBRU.81,^70\Z5Q) 6Q9$71Q%
- XM7AU&<!U*>293@BU#=B$W?28_;!4N9Q1!:19#3@DOB41JQHJ1T)2;LV]UMW-Y
- XMBSE97 HJ<R(RCCU-Q'1\SW^'PG1QR'IWS8%SU8E[U8EXTX=VT8=UT(9TSH5V
- XMFEF FEF :B5-4 LS<"M18!M!;"E+9R1&;"<]A4!6G%->MFUXS8^+SY&-Q9>&
- XMYKBGMW:/?#M43@DA4 LC9R(Z;"<_7!D[4@\Q7!M"41 W8!4Z=RQ1M%5NG#U6
- XMH#$^K3Y+Q4-,RTE2T4]6U5-:V%18VE9:W%M<WUY?VUQ<WV!@X&5FXVAIX6QN
- XMXVYPXW)UYG5XYG%SYW)TY79VYWAXY7QZYGU[XH!\XX%]XX%]Y8-_YH!]XWUZ
- XMYG=WY'5UX&MMUV)DR$Y4TEA>VEMCUUA@VU9@WUIDUU5@RTE4N3Y'PD=0P5M?
- XMT6MOW8N(\9^<Y:&;V)2.Y(>&U'=VV7!LW71PVVIKUF5FT6)QREMJI4=H>1L\
- XM70\Z9AA#6A5#6Q9$8B%*82!)<1Y+@2Y;@BU#?"<]?28_;A<P:19#9Q1!3@DO
- XM>#-9PX>.U)B?L6USO'A^DT%A7PTM=20TH$]?S7V%SW^'PW5RR'IWT85WU(AZ
- XMU(AWTX=VT8=UT(9TSH5VDU1ZBDMQ7@PS30 B=S1.?3I4AU]FB&!GGF-HK'%V
- XMN%-BME%@L5UFP&QUS+2KOZ>>:"5)5A,W3@8G6! Q;R5%>"Y.:2)'6A,X6Q=!
- XM40TW8!4Z>S!5MUISGD%:GS(^J3Q(QD9.RTM3TE!7U5-:UE58UU99W%M<WUY?
- XMVUQ<WE]?WV1EXF=HX&MMXFUOY'!TYG)VY6YQYF]RY71UZ'=XY7QZYGU[XH!\
- XMXH!\X8%\Y(1_Y()^X7][X7MXX7MXWW1SV&ULV%EAW%UEUUUCTUE?T5UAUV-G
- XMT65IREYBP%]?TG%QWHF'[)>5[:.=\*:@X9V7U)"*YH.&V79YW'%RW'%RUF9M
- XMTF)IRV-UQ5UOB#%5:!$U6A0_9B!+6AA$5Q5!8B%(9"-*<Q]*C#AC@RU!A2]#
- XM?B@^;QDO:19%8Q _5 \W;BE1PH.+VINCM'!TP7V!ET-C:14U>"8KK5M@SWY^
- XMSGU]QGEPR7QSTXAZTXAZTXEYTHAXT(=ZSH5XSH1\71Y$<3)8@S%8@2]6DU!J
- XMCTQFF7%XJX.*T9:;KW1YK$=6LTY=HT]8W8F2ZM+)>&!73PPP5!$U6Q,T6A(S
- XM8QDY;2-#:B-(8AM 6Q=!40TW818[?#%6N5QUH$-<H#,_J3Q(Q45-RDI2T4]6
- XMU%)9U%-6U517V5A9W%M<W%U=WV!@WV1EXF=HWVILX6QNXFYRY'!TXVQOY6YQ
- XMY'-TYW9WY7QZYGU[X7][X7][X8%\Y(1_Y8-_X7][XGQYXGQYXWAWWG-R[W!X
- XM[&UUX&9LV5]EUV-GXFYRY'A\YGI^TW)RZ8B(^:2B_Z^M_+*L\ZFCWYN5THZ(
- XMXG^"VG=ZWG-TVF]PU&1KTV-JQEYPMDY@<AL_90XR6Q5 9!Y)6AA$51,_7AU$
- XM9R9-<AY)DS]J@BQ BC1(?B@^<APR;!E(8@\^51 X8!M#M'5]TY2<LV]SO7E]
- XMCSM;<AX^@S$VN&9KRGEYRWIZRWYURWYUU8I\TXAZTHAXT8=WSX9YSH5XS8-[
- XM8!4\<B=.G5=RGEASFFANF6=MLHB!U:NDSH6%H%=7FS1!OE=DQW:&]*.SNIRC
- XM0B0K6Q5"8AQ):!U%9!E!91@]:AU":1]':!Y&8AU%51 X8A4Z?"]4MUISH$-<
- XMH35#JS]-Q$5-R4I2T5%7U%1:UE58UE58V%=8VEE:WEU>X%]@XF1FY&9HWVAK
- XMX&ELX6MPXVURY&INYFQPY7%SZ75WYWIZZ'M[Y'Y[XWUZXH!\Y8-_Y8-_X7][
- XMWWUYX'YZX7QYWGEVXFMPXFMPVVMNVFIMU'5RXH. X9.-YYF3RH=]W)F/[JZE
- XM^+BO]K:MZZNBW)R4T9&)XGJ WG9\WG)XUVMQTV9RU&=SME=PDS1-81,[91<_
- XM61E%6!A$6QM$6!A!8!T_;BM-<A]&ED-J?B@ZBC1&?B4\=ATT=!]/:!-#6! Y
- XM5P\XIVAPS(V5MG%SNW9XAS1/?BM&FT9"R71PR'9ORGAQSH)TS(!RU8Q]TXI[
- XMSXEYSHAXS89]S(5\S8)^8A<^?C-:O':1KVF$LH"&S)J@TJBASZ6>E$M+D$='
- XMGSA%T&EV\:"PXI&A7D!'02,J6A1!71=$9QQ$;2)*<B5*<21);2-+;2-+:"-+
- XM6!,[8A4Z>BU2M5AQH$-<I#A&L$12QD=/RTQ4U%1:V%A>V5A;V%=:V5A9VUI;
- XMWEU>X6!AXF1FY&9HWVAKWVAKX&IOXFQQXVEMY6MOY7%SZ75WYWIZZ'M[Y'Y[
- XMXWUZXH!\Y8-_Y8-_X7][WGQXX'YZX7QYWWIWY6YSY6YSWV]RWV]RW7Y[[8Z+
- XM\J2>_:^IVYB.Y:*8\+"G]K:M\[.JZ:F@VIJ2S8V%X'A^W75[W'!VU6EOUFEU
- XMV&MWKU!I?!TV81,[;!Y&6AI&4Q,_7AY'7AY'8A]!<S!2<A]&ET1K>B0VB3-%
- XM>R(Y=QXU>214;AE)7A8_6! YIF=OS8Z6OWI\P'M]BC=2CCM6K5A4U'][QW5N
- XMR7=PT(1VS(!RU8Q]U8Q]SXEYSHAXS89]RX1[S8)^BS-5RW.5P)&<NXR7N9>/
- XMRJB@Z:>BP7]ZGT-'FCY"DT1.NVQV[JW"=S9+3 PK6!@W71=%71=%:!I#9QE"
- XM9Q4\<1]&=2=/;!Y&7Q4]8QE!60PQ;B%&KU1LHD=?IC],J4)/Q$A/S%!7TU5:
- XMTE19TU16UUA:VUI;VEE:WEU>X%]@X6-EY&9HXFALXFALWVAMWVAMWV5IXFAL
- XMX6QNXFUOY'-TZ'=XY7IYY7IYWGAUX7MXXWUZXWUZX7QYWWIWWGEVWGEVWG%S
- XMY'=YWWU[VGAVU8A_[)^6\K6I];BLW:B9UZ*3Z;2G^,.V[K6JYZZCX:&9R(B
- XMXG>"S6)MY7J%W'%\Q6!QQV)SD3M99A N615!8!Q(3Q1!4A=$6AM!7!U#<"A'
- XM:B)!>25(CSM>?24UABX^>2 W>R(Y:A5'9A%#5@XY4 @SCDY5PX.*R(&"P7I[
- XMB#-+HTYFO&-8SW9KSGMNRG=JS(!QTX=XS8=WS8=WS(=YRX9XRH1]R8-\RH)]
- XMES]AUGZ@N(F4LH..SZVEXL"XV):1EU50GD)&K%!4CT!*[I^ICDUB6QHO6!@W
- XM4Q,R8AQ*7QE'9QE"91= 9!(Y;QU$=BA0<")*7Q4]8QE!6PXS:QY#K5)JHD=?
- XMJ4)/IC],PD9-RDY5TE19TU5:U%57UUA:VUI;VUI;WEU>X%]@X6-EY&9HXFAL
- XMXVEMX&ENWVAMY6MOY6MOX6QNXVYPY'-TZ'=XY'EXXWAWWWEVX7MXXGQYX7MX
- XMW7AUW'=TVW9SW'=TWW)TYGE[WWU[W'IXV(N"[Z*9][JN_<"TWJF:U:"1Y;"C
- XM]\*U\+>LY*N@W)R4R8F!W7)]V6YYVF]ZU&ETS&=XN%-D?BA&9Q$O615!81U)
- XM419#4QA%61I 7!U#<2E(;25$@2U0D3U@@"@XAR\_?",Z?B4\;QI,:11&61$\
- XM40DTBDI1PX.*R8*#O'5VC#=/JU9NO619SW9KSGMNRG=JS8%RTX=XS8=WSHAX
- XMS8AZS(=YRX5^RH1]RX-^DT=8Q'B)JX*!MHV,Y+BQW[.LP6MQB3,YGD-/GD-/
- XMP8J6L'F%3!,K21 H:PX\<!-!:2%,8QM&9Q@^9!4[9! Q<!P]>RI,>2A*818[
- XM8Q@]7@\S9Q@\J$]HH$=@K$=6H#M*OD1*QTU3SU-8T55:U598V5I<W%M<W%M<
- XMWEU>X%]@XF-EY&5GXV=LY&AMXFANXFANXFMNWVAKW69IWVAKX6UOY'!RXG%R
- XMX7!QXW1TY'5UY'=WXW9VX'-SX'-SX'5TX79UWW1UY7I[WWY\WGU[X(Z']Z6>
- XM_[RS_\2[ZJJ?X:&6[:NC_KRT^[6N[*:?X921T82!U6QYX7B%RV9US&=VQVN!
- XMESM1818[71(W4QA'72)141E)4QM+7!D^7AM >2E%=R=#A3%2C#A9?B8UA"P[
- XM?"$Y>R X<1I-9Q!#71,_4@@TA$1+PH*)S(6$M&ULE#]5M6!VQ&=9TW9HT'IL
- XMS7=IT(%SU89XS(=WS8AXRXA\RXA\RH=]R89\S(1^H%1EM6EZN9"/U:RKUZND
- XMK8%ZHTU3ED!&G4).MUQHTYRH62(N310L4!<O=1A&A"=59Q]*8!A#918\918\
- XM9A(S<AX_?2Q.?2Q.91H_818[8!$U8Q0XI4QEG$-<KTI9FS9%N3]%PTE/S5%6
- XMT%19UE=9VEM=W5Q=W%M<WEU>X%]@X6)DY&5GXV=LY&AMXVEOXVEOX&ELVV1G
- XMVF-FWF=JX&QNX6UOWVYOWVYOW&UMW6YNW7!PW7!PW7!PW7!PWG-RX79UX'5V
- XMY7I[X']]XH%_X8^(\J"9^K2K_[JQ\+"E\;&F]K2L][6M][&J\*JCXI62S8!]
- XMSF5RW72!R61STVY]N5US?" V7!$V6Q U5!E(7B-24QM+5!Q,7!D^7QQ!>RM'
- XM>2E%AC)3AC)3?R<VABX]?B,[>!TU<QQ/8PP_6A \40<S>SM"P("'T8J)K69E
- XMG$==N61ZR&M=U7AJT'ILSGAJTH-UU89XS(=WSHEYRXA\RH=[R89\R(5[RX-]
- XMM(^%LXZ$ZK"M];NXSGJ#GTM4G$13HTM:IF5TV)>F=D181Q4I50XQ6A,VD"M>
- XME3!C8AM 6A,X8Q4S:!HX;1<S=B \?RU*@"Y+;B%"8!,T81,T8!(SH4ICE#U6
- XMKTM>E3%$L3H_O$5*RE!4SE18U5=9V5M=W5Q=W%M<W5Q=WUY?X&%CXF-EXV5J
- XMY6=LXVEOY&IPX&MMW&=IWF=JXVQOY&UPX6IMX6IMY&UPWF=JX&ELX6IMXFMN
- XMX&MMX&MMXFUOXVYPY71WZ'=ZYWI\YGE[YWY^[X:&\H^0]9*3^YR;_ZBG_Z&C
- XM\)"2\I&3^)>9YH.'RVALR&-PSFEVRVM]U'2&FD5>8PXG71E!51$Y41M.6R58
- XM4QQ-5!U.81E 8QM"@"E#?B=!BS55AC!0ARX[CC5"A2I">1XV>R189@]#50HY
- XM3P0S<S XO7J"UHZ+J6%>IU%CNV5WSF]BUWAKTGEJT7AIU(5WUH=YRX9XSXI\
- XMR(=ZQX9YQX9[QH5ZR8)YY+^UV[:L^L"]UYV:IE);ET-,H$A7I$Q;VIFHK6Q[
- XM1Q4I3QTQ3P@K6Q0WAB%4G3AK7Q@]5Q U8A0R:APZ;QDU=B \?BQ)?BQ)>"M,
- XM7 \P8!(S8!(SH4ICC#5.K4E<DBY!JS0YN$%&QTU1S5-7U%98V5M=W5Q=W%M<
- XMW%M<W5Q=WE]AX&%CX6-HY&9KXFANXVEOWVILW&=IX&ELXVQOW69ITEM>T%E<
- XMUE]BW69IX&ELXFMNXVQOX&MMWFEKWFEKWFEKW&MNW6QOV6QNUFEKTFEITVIJ
- XMT&UNTW!QVWQ[Z(F(V7E[PF)DRVILUG5WR&5ILU!4R&-PR61QT'""Q&1V?RI#
- XM7PHC8!Q$5Q,[4AQ/6B1741I+51Y/91U$9Q]&@"E#>B,]BC14?RE)B3 ]CC5"
- XMA2I"=!DQ?RA<:1)&5 DX408U:B<OM'%YUX^,IU]<M5]QNV5WTG-FV'ELT7AI
- XMTGEJU89XUH=YRX9XSXI\QX9YQX9YQH5ZQ81YR(%XW-J\T]&S[IV=L6!@KS9.
- XMMSY6GT]CO6V!OI>E328T62$_3!0R90TX:1$\: <YF#=I8QLZ61$P8Q,M:QLU
- XM;ADO<QXT>RA!?2I#@C1360LJ7A Q81,THDMEA"U'J49:D"U!IB\TLSQ!Q$I.
- XMRU%5U%98V5M=W%M<VUI;VUI;W%M<W%U?WE]AX&)GXF1IXV=NY&AOWFEKWFEK
- XMXVQOX6IMTUE=OD1(N3U"P45*R4U2SE)7TU=<UEI?UEI?U5E>U%A=U%A=S%!7
- XMRT]6R$Q3QDI1Q4E0R$Q3S%%:TE=@U5ICUUQEP$A2LSM%PTM5RE)<P$A3OT=2
- XMRFAVSVU[RV^!GD)4:AHV81$M4Q4_6!I$4!U15B-73A=*51Y1:2!&:R)(A"=#
- XM>ATYB3-1>B1"B3 ]BS(_@",\;1 IA"I?<1=,60T\6 P[9"$IJ&5MU8V(IU]:
- XMQ&Z OFAZUG5IVGEMT7AKTWIMUXA[UH=ZR8=XSHQ]QXAZQH=YQH5XQ81WR(-W
- XMUM2VR\FKRGEYCSX^MSY6OT9>I55I\*"T>%%?11XL3A8T6" ^<QM&9P\Z8@$S
- XMC"M=9AX]6Q,R8Q,M:AHT;!<M<!LQ>"4^?"E"B#I95PDH70\P8Q4VHTQF?RA"
- XMID-7CRQ HRPQL3H_PDA,RU%5TU57V5M=W%M<VEE:VEE:VUI;VUQ>W5Y@WV%F
- XMX6-HXF9MXV=NY&]QY&]QZ7)UXVQOSE18LC@\JR\TLS<\IRLPK3$VM3D^NS]$
- XMOT-(P$1)P45*P45*MCI!LS<^L34\LC8]M3E O$!'QTQ5T%5>U%EBRD]8L#A"
- XML3E#QDY8QDY8P4E4T5EDS6MYVWF'QFI\@"0V8Q,O:1DU20LU7!Y(4!U152)6
- XM319)5!U0:R)(;21*@R9"=ADUCCA6?"9$C31!BS(_?R([; \HBS%F>B!57A)!
- XM71% 8!TEH5YFTXN&J6%<SGB*PFQ^V'=KVWINT7AKU'MNUXA[UXA[R8=XSHQ]
- XMR(E[QXAZQX9YQH5XR81X_ZZT^J:LG5!7GE%8?3A$I%]KY*>WL'.#5ADR5ADR
- XM6Q@Z7!D[7!(Z6Q$Y9A9"<"!,;B%&8A4Z7Q(W:!M ;R)%;!]";1\^<R5$AC94
- XM:AHX81$M8Q,OF4AB?BU'D4!:B3A2GS%!J3M+ND=3PD];S%!5SU-8UU=5V5E7
- XMV%-3V514UUA:VEM=VF!FW6-IVV9OW&=PXW)QX7!OX&ULW6IIW&5FV&%BUUE<
- XMTE17RD9+QD)'QSU$RD!'U49/VTQ5WT]8WT]8QU!?RE-BR%1FQU-EPU-HQ55J
- XMREUTT61[SV=YX'B*S6ETOEIESVYPTW)TRFIEU75PSGF1R'.+E45A9!0P6A(S
- XM81DZ7!A"8AY(81M&7!9!60XV8QA >RA->29+=1T_>"!"DSA2A"E#ABM%DC=1
- XM?" ^;1$O>BQ-@#)35Q0X7!D]51,NC$IEV(N4OG%ZU'UURG-KTWYPT'MMSW]O
- XMU85UU8EXTX=VSX9VT(=WRX=URX=URX9VRX9VS(9V_[.YMF)HH%-:F$M2KVIV
- XMVI6AT92D;S)"6ATV6ATV7QP^7QP^7A0\6Q$Y9!1 ;1U);2!%8A4Z7A$V9AD^
- XM;!]":AU ;1\^<B1#@#!.;!PZ914Q914QDT)<>2A"C3Q6BCE3FBP\I3='MD-/
- XMP$U9RT]4S5%6U%12UU=5V514V514V%E;VUQ>VF!FW6-IVV9OW&=PXW)QX7!O
- XMX6YMX&ULX&EJVV1EVEQ?U5=:V%19UU-8VE!7V4]6W4Y7X%%:Y55>Z%AAWVAW
- XMY6Y]ZW>)\7V/\H*7^(B=_I&H_YFP_YFK_YBJXGZ)RV=RTG%SUG5WSV]JT'!K
- XMRG6-K%=O>RM'81$M6Q,T7A8W6Q=!8AY(7!9!7!9!7A,[9AM#=R1)<A]$<AH\
- XM?"1&ECM5@B=!BB])D#5/?" ^<Q<U=BA)A#976!4Y7!D]5A0OBTEDUXJ3P71]
- XMU7YVS'5MU8!RT7QNSW]OU(1TU(AWTX=VSX9VT8AXRX=URX=URX9VRX9VS(9V
- XMRGEWHE%/H5A;JV)EYZ.QUY.AB$EB6QPU6QT]7!X^81Y#81Y#8!<]6A$W7Q$Y
- XM9AA :A]$8!4Z7Q(W91@]:AU :AU ;1] <B1%>RI*;QX^:!@V9Q<UBCI4="0^
- XMB3A2B3A2DR8ZG3!$L#],NDE6QTQ5R4Y7T5!1TU)3UE-2UU13UU97VEE:V%U?
- XMVV!BVF-HVV1IX7!QX7!QXV]QY'!RY&UPX&ELW6%FV%QAVEA?W%IAX%IBWEA@
- XMW%%;W%%;XU=AZ%QF[&Q\\W.#^W^2_X:9_XJ=_XV@_Y&H_Y2K_Z"S_Y&DY7B$
- XMT61PU&IOX'9[X'=WV&]OO6J%AS1/7Q$P7Q$P7A4[710Z71E#8AY(5A [7!9!
- XM8Q@_:1Y%<R!#:A<Z;Q<V@2E(F#]8?B4^D390C#%+>Q\[>Q\[<B%#C3Q>6A4Z
- XM7!<\6!4PB49AUHF0Q7A_U7]WSGAPUH-TTG]PSGYNTX-ST8=WT8=WSHAWT(IY
- XMS(=WS(=WS(=YS(=YS(=YED5#LF%?K&-FYYZAWIJHF%1B5A<P8B,\6AP\6QT]
- XM8A]$8A]$81@^6A$W7A X9!8^:1Y#8A<\810Y9AD^:AU :AU ;B!!<R5&>RI*
- XM="-#:1DW:!@VA35/=B9 B#=1AC5/CB$UF"L_JCE&MD52Q$E2QTQ5SDU.STY/
- XMTU!/U%%0U%-4UE56U5I<UUQ>UE]DUV!EW6QMWFUNXFYPY7%SYW!SY&UPX&1I
- XMW&!EV%9=V5=>W5=?W%9>W%%;W5)<XE9@YEIDX6%QZ&AX[G*%\W>*\'B+[G:)
- XMZW2+ZG.*\'Z1XW&$U6ATSV)NTFAMXGA]Y7Q\UFUMIU1O<1XY5PDH8A0S7Q8\
- XM81@^8Q])7QM%5Q$\7!9!8Q@_:1Y%<1Y!9A,V;A8U@RM*FD%:?20]ECM5B2Y(
- XM?2$]@25!;1P^DD%C71@]6Q8[6A<RAD->U8B/RGV$UH!XT7MSV(5VTX!QSW]O
- XMTH)RT8=WT(9VSHAWT8MZS(=WS(=WS(=YS(=YS(=YK6)8M6I@UX^2_K:YG%=K
- XM:B4Y921)4Q(W6QE&71M(8Q]+9B).8QQ!718[8A4V:!L\:!U$9!E 8Q@]9AM
- XM:QY!;2!#;R)#<B5&>BQ+=BA':!@V:!@V@C).?"Q(AS=3@3%-B1XWD28_HS-&
- XMKS]2O491P4I5R4M.RDQ/ST]-T%!.TE-1U%53UEE8V5Q;UUY<V6!>V6AIVVIK
- XMX&QNXV]QY7!RXVYPX&9JW&)FW5]DVEQAV%A>V%A>VUE@W%IAW5E@W%A?VUIG
- XMX6!MZ&AV[FY\[G& [&]^Z&Q]YFI[W&5TVV1SW6IXWVQZW6]YXW5_W6]WR%IB
- XMAS9::!<[70\W8A0\6Q,\8AI#9B!+6Q5 7AE!7AE!81<Y:!Y <" ^9A8T;ADR
- XMA3!)F#]8@"= ECM3B"U%@25!@R=#;!D\ED-F8QP_718Y71HT@T!:T(:,S8.)
- XMUH)WTW]TV89YU(%TSG]QTH-UT(=XSX9WS8AXT(M[RHAYRHAYRHAYRHAYS(=[
- XMSH-YUXR"_[R_OW=Z<2Q 7ADM921)61@]7AQ)8!Y+9B).:2519A]$81H_9QH[
- XM;2!!91I!91I!9AM :1Y#;2!#;B%$<"-$<21%>"I)>2M*9Q<U:1DW?BY*?R]+
- XMAS=3@#!,AQPUCB,\G2U J3E,N$%,O491Q4=*QDA+ST]-T%!.T5)0U594UUI9
- XMVEU<V6!>VV)@UF5FV&=HW&AJX&QNXVYPXFUOX6=KW6-GXV5JWF!EVEI@V5E?
- XMW%IAVUE@V55<U5%8U%-@V%=DVEIHWEYLWF%PW%]NV5UNUUMLTUQKWVAWY'%_
- XMYW2"YGB"WW%[REQDLT5-;1Q 9Q8Z8Q4]7Q$Y61$Z81E"8QU(6A0_9B%)81Q$
- XM8!8X9QT_<2$_:!@V<1PUBC5.DSI3ABU&DC=/B2Y&ABI&@"1 ;AL^E$%D:"%$
- XM7A<Z81XX@#U7SH2*THB.U8%VU(!UV89YU(%TT(%STX1VT8AYT(=XS8AXSXIZ
- XMRXEZRXEZRXEZRXEZS8A\U(Z%][&HUY.7=# T92(]6A<R71A&9R)07QQ181Y3
- XM9R!1:2)391Y#8!D^9!LW:R(^8!4\9!E :!U$:R!';"%&;2)';B%$;B%$<")#
- XM>BQ-:!HX:!HX=2A#>BU(A351@3%-@APZAR$_E"E"GC-,KCQ-M4-4O$1.O45/
- XMQTQ-R$U.S5!-T511U5A3V5Q7VUY9W6!;V&1HV65IVF9JW6EMX6MPX6MPWFAM
- XMVV5JW&5JVF-HUV!EU5YCUEQBU%I@TEA>T%9<S%1<S%1<RE):RU-;RU5<RU5<
- XMRE5>RE5>U6-LY')[W7!\V6QXX'F&T6IWJD52EC$^7Q,^8Q="7A1 60\[7A5#
- XM8!=%71="8QU(;B9-9Q]&8QDY:!X^<" \9A8R<A\XD#U6BC1*BS5+BS!(C#%)
- XMC#%+>R Z<AX_DCY?;21(8!<[9"$[?SQ6S(.&U(N.TH%UTX)VUH5YTH%USX-U
- XMTX=YT8I]SXA[RHAYRXEZRHE\RHE\RHE\RHE\RHE^Z**9[ZF@=C(V9R,G618Q
- XM6Q@S="]=5 \]7QQ18!U291Y/91Y/8AM 6Q0Y81@T9QXZ71(Y8Q@_:1Y%:R!'
- XM;"%&;2)';2!#:QY!:AP]>RU.:APZ:1LY;R(]=BE$@S-/A#10@1LYA1\]D"4^
- XMFB](JCA)L3]0N4%+ND),PD=(PTA)R4Q)S5!-T51/U5A3V%M6VEU8V65IV65I
- XMV65IW&ALX&IOX&IOWFAMW&9KV6)GVV1IWF=LVV1IV5]EUEQBV%YDVV%GU%QD
- XMTEIBT%A@T5EAU%YEV6-JW&=PWVISYG1]\X&*VVYZSV)NVG. QE]LE3 ]@1PI
- XM8!0_91E$6A \6 XZ91Q*8!=%6Q5 ;2=2<"A/:B))9QT]:B! ;Q\[9!0P="$Z
- XMED-<AC!&CSE/ARQ$C3)*D#5/=QPV=2%"CSM<;R9*8!<[9B,]?CM5RX*%UHV0
- XMTH%UTX)VU81XTH%UT(1VU(AZTHM^SXA[RHAYRHAYRHE\RHE\RHE\RHE\RHE^
- XM^[FZF5=86!<D7ATJ92)$618X5Q)$8AU/7AA.8AQ2:2)3:R159A]"8!D\9!TX
- XM;"5 8AA 9QU%9QY$8QI 91I!;"%(;R5';")$;!] <B5&<B9$;" ^9QDW;!X\
- XM=2=%>RU+A"9'=QDZAB5!DS).E"M!GC5+M$54LT13N$))NT5,Q$M,RU)3TE=6
- XMU5I9UEE6U5A5VF1IVV5JVF9JW&ALWFINWFINVVIMV6AKVFELV&=JU&1GTV-F
- XMU65HV6ELVVYPWG%SV71UWGEZXGM[X7IZX'IWXGQYXGM[X'EYX'V WGM^S6]X
- XMT7-\S76%FT-3<!LQ@"M!7QE'6Q5#5Q$_5Q$_7!9#81M(9!]'92!(<"=-81@^
- XM9ADZ9ADZ:!@T81$M:A<PF$5>BSE,@"Y!DSI/C31)@",^@",^?2='B3-3=2M-
- XM91L]:",[;RI"Q7Q_WI68T(%SV(E[QWIORWYSSX1XT89ZSHE]S8A\RHE\RHE\
- XMR(A]R(A]R(A_R(A_R(A_KVUN>#8W5Q8C8!\L9"%#7QP^7AE+7QI,6Q5+8!I0
- XM9R!1:"%28QP_718Y81HU:B,^81<_9AQ$9QY$8AD_8A<^:!U$;")$;")$;!]
- XM<21%<B9$:Q\]9QDW:QT[<R5#>"I(A"9'=1<X@2 \CRY*D"<]E2Q"K#U,L4)1
- XMO4=.OTE0QDU.RE%2SE-2T595UEE6UUI7V&)GV&)GV&1HV65IVV=KW&ALVFEL
- XMV6AKVFELW6QOWFYQW6UPW&QOWFYQX71VYGE[YX*#ZX:'[8:&ZH.#Z()_Z8.
- XMYX" Y'U]X'V V'5XSW%ZU7> O&1T@RL[9Q(H@"M!71=%6A1"5Q$_61-!71=$
- XM8AQ)92!(92!(<"=-8QI :AT^:!L\:1DU8Q,O;1HSG$EBBSE,@2]"E#M0CC5*
- XM@B5 A"="@"I*C#96<2=)9!H\92 X;2A QWZ!X)>:U89XW(U_QWIOS8!UTH=[
- XMU8I^T(M_SHE]RXI]S(M^R(A]R(A]R(A_R(A_R(A_:2M!6QTS6!DU71XZ7AM
- XM81Y#8QY,71A&71=%81M)9R%,:")-8AL^6Q0W8!HX:B1"714\8QM"9AQ$81<_
- XM7A4[81@^:!U";"%&:QY!<"-&<"-$:AT^91DW:1T[<") ="9$?2E*;!@Y=1T\
- XM@RM*@B5 @",^E2]$HCQ1K#Y.L4-3O$=1P4Q6QT]7S55=V%QAWV-HV6-JV6-J
- XMVF1KVV5LVFANVVEOVFUQVVYRUVMOWG)VXGM]XGM]WGEZW7AYX'U^Y8*#YY"/
- XMZI.2ZY..YHZ)YXR#YHN"XX>!WH)\W8*"SW1TSWJ&T7R(FTYE8A4L61$N=2U*
- XM5Q9%511#5A1!6!9#7AI&8AY*9Q](:"!);R1+9AM";B%":QX_:AHX914S<!X]
- XMH$YMC#Q.@C)$ECU2D#=,@R8_ARI#A"Q-CC97<21':QY!8QXV;"<_R(&"WYB9
- XMU8EZVX^ Q'EOS(%WTXE_UHR"SHN!RXA^R8E^RXN Q8A^Q8A^Q8=_Q8=_Q8=_
- XM9B@^7B V7A\[71XZ6!4Z71H_8QY,7AE'7QE'9!Y,:R50:B1/8QP_7!4X8APZ
- XM;2=%7!0[81E 91M#81<_6Q(X7!,Y9!D^:R!%:AU ;R)%;R)#:1P]9AHX:!PZ
- XM;B ^;R$_>R=(;1DZ<QLZ@2E(@B5 =ADTA!XSDRU"GS%!ICA(M4!*ND5/P4E1
- XMQT]7U%A=W6%FUV%HV&)IV6-JVF1KV6=MVVEOW&]SWW)VV6UQWW-WXWQ^YX""
- XMYH&"Y8"!Y(&"YH.$YH^.Z9*1Z9&,Y8V(YXR#YXR#Y(B"WH)\W8*"TG=WUX*.
- XMRG6!@C5,6PXE8QLX<2E&5A5$5A5$6!9#6QE&8!Q(8Q]+:"!):2%*:R!'9QQ#
- XM<"-$;!] :1DW9A8T<R% I%)QCCY0A35'ESY3CS9+@R8_B"M$A"Q-BS-4<R9)
- XM=2A+8QXV:R8^RH.$W)66TX=XV(Q]PG=MRX!VTXE_U8N!S8J R89\QX=\RHI_
- XMQ(=]Q(=]Q(9^Q(9^Q(9^>3IH8R127!Q(7AY*6QI#6QI#8AU#7QI 8!P^9B)$
- XM;B=*;29)8QP_6Q0W8AL^;RA+7!0]8!A!8QM"8AI!71,[6A X7Q8Z9QY"9QT_
- XM:R%#;")"9QT]9QLY:1T[;" ^:Q\]<B5&;!] ;1\^>2M*?2I';1HW;Q(M>QXY
- XMD"I!F#))J3E,L$!3N4-4ODA9R$]=SU9DTUMCU5UEUV%HV&)IUF1JV6=MVFYR
- XMWW-WVG-UW'5WW'M[Y(.#YXJ)Z(N*Y(F'X8:$XHV,Y(^.YHZ+Y(R)Z8Z%ZY"'
- XMZHN&Y(6 UWM]U7E[UX*1MF%P;1\^8!(Q;R=0:"!)51E&5AI'6AI&7!Q(7QY'
- XM8B%*:B)):R-*:!U$9AM";R)':AU":!<Y:!<Y=21(I%-WCT%2ACA)F$!2CC9(
- XM@R8_B2Q%A2I,B2Y0<R5&?S%28ATS:20ZS(6&VY25TXEWUXU[PGAPRH!XSXA_
- XMTHN"RXF!R8=_QHE_R(N!PX=^PX=^PX> PX> PX> =SAF71Y,5Q=#8B).9"-,
- XM7QY'81Q"7AD_8!P^9B)$;B=*;"5(81H]61(U81H];RA+714^7Q= 8QM"91U$
- XM81<_7!(Z7A4Y9!L_91L]:B!":R%!:!X^:!PZ:Q\];" ^:AX\;R)#<"-$;B _
- XM=2=&@"U*<R ]; \J<10O?A@OAB WF2D\I35(LSU.O4=8R$]=SU9DT%A@TUMC
- XMUV%HV6-JV&9LVFANW'!TX75YWG=YW'5WVGEYXH&!Z8R+[9"/Z(V+XXB&Y(^.
- XMY9"/YHZ+YHZ+[)&(\)6,[H^*YXB#SW-UU'AZSWJ)H4Q;8!(Q91<V="Q581E"
- XM61U*6AY+7AY*7Q]+8!](8B%*:R-*;B9-9AM"9!E ;2!%9QH_:1@Z:QH\=R9*
- XMHU)VD$)3ASE*F4%3C35'@R8_BRY'ARQ.B"U/;R%"A#978!LQ9R(XSXB)VY25
- XMUHQZVI!^QGQTRH!XS(5\SXA_RXF!RXF!QXJ QXJ PH9]PH9]PH9_PH9_PH9_
- XM9"5B51936!A.82%78B%*7QY'8AX^71DY8QTY:B1 <"I(;BA&81H]61(U8AI!
- XM<2E08!A!7Q= 8QM":"!'91U$7A8]710X81@\9!H\:!Y :R%!:!X^:AX\;2$_
- XM;2$_:AX\:2)#<"E*:B! :R%!?C!/>2M*;14T:Q,R;0PH<A$MA1@ODB4\I3%'
- XMLS]5P$A;QT]BR%!8S55=U%YEUV%HU&1IUF9KV&YQW7-VUW1UUW1UU7AWVWY]
- XMXH>%YXR*Y(Z*XXV)Z)&3Z)&3Z(V+YHN)[8V([X^*ZXF%XX%]T'!SUG9YR&V#
- XMF3Y480\V9A0[<2159!=(72--7B1.82--7R%+8!]&8B%(;25,<2E09AM"8Q@_
- XM;!U#9Q@^:A@_<!Y%>BA/HU%XCT%0ASE(ET%3BS5'A2A!D#-,C#%1C#%1;R%"
- XMBSU>8!LQ9B$WT(F*V9*3UHQZV(Y\QWUUQGQTQ'YUQX%XR(9^R8=_Q8=_PX5]
- XMOX9\OX9\OX9^OX9^P85^61I75QA57Q]57Q]56!= 61A!8AX^71DY9R$];2=#
- XM="Y,<2M)9!U 7!4X91U$="Q381E"7Q= 8QM":B)):2%(81E 710X7Q8Z8QD[
- XM:!Y :B! :1\_:Q\];B) ;B) :Q\]:"%"<2I+:!X^91L[?S%0@#)1=!P[;14T
- XM<Q(N<A$M?Q(IAADPEB(XHBY$K35(LCI-O$1,PDI2R5-:S5=>REI?S%QAS6-F
- XMTVELT6YOTW!QTW9UUWIYVG]]WX2"X8N'XXV)Z)&3YY"2Y8J(XH>%Z(B#Z(B#
- XMXH!\V7=STG)UUG9YPVA^ESQ291,Z8Q$X;!]0:1Q-8"9082=18R5/8"),8!]&
- XM8B%(;25,<RM29QQ#8Q@_:QQ"9A<];!I!<R%(?2M2HU%XC3].ASE(ET%3C#9(
- XMARI#E#=0D396D#55<R5&DD1E8ATS9B$WT(F*UH^0THAVU(IXQ7MSP7=OO7=N
- XMP'IQPX%YQ8-[P8-[OH!XOX9\OX9\OX9^OX9^P85^1!A 1QM#4!Q$4AY&7Q]*
- XM8"!+91M'8QE%:1E%>RM7>"I3>2M45PXT7Q8\7QL]<R]181E"7A8_8!A!9AY'
- XM9AY'81E"81<_9!I"5PXT7Q8\:A]&;"%(:1Y#:1Y#<"-(=BE.="0^=24_=2)%
- XM<R!#>R))@RI1ARM+@B9&?AXS=Q<L=A8H>AHL@1PS@1PSA!X_BB1%D"DUF#$]
- XMH3U(J450KDI3M5%:O5MCQ6-KR6=MS6MQT7%VU75ZV'A[W'Q_W8""X(.%Y(V-
- XMWH>'V8& VH*!VX. VH)_TGMZRG-RPW%TR'9YK69SAC],9"$Y7ALS6QX^6!L[
- XM4B!84R%98"):7!Y67Q5+:B!6<BE7:!]-9R1(81Y"7A\Y7R Z9!PS9Q\VA#-+
- XMGTYFE$A;B#Q/CT%.CT%.@S(_B#=$E$!3B#1'?RI#BC5.=R4ZAC1)S("$V8V1
- XMUH^$R(%VR7)TO&5GM5]AO6=IP'%SP7)TOW1TQ'EYPGU^PWY_P(& P(& P82#
- XM3R-+32%)52%)7BI22@HU6!A#9!I&81=#<"!,@C)>?C!9>RU661 V7Q8\7QL]
- XM<2U/8!A!7A8_7Q= 9!Q%9!Q%8!A!8!8^8QE!710Z7Q8\91I!:1Y%:R!%;2)'
- XM<"-(<"-(<" Z<2$[<1Y!;QP_>!]&@BE0BBY.B2U-A"0Y@2$VA24WCR]!F31+
- XMG#=.H3M<IT%BJ$%-KD=3LT]:ME)=MU-<N55>O5MCPV%IRVEOT&YTU'1YV'A]
- XMW'Q_WGZ!WX*$X82&WXB(W(6%VH*!VH*!VH)_UW]\T'EXRG-RO&IMP6]RI5YK
- XM>#$^51(J5Q0L92A(<3146REA52-;7R%98B1<:1]5<"9<;R948AE'9B-'81Y"
- XM7A\Y8"$[9AXU:2$XA31,G4QDE$A;B#Q/D$)/D$)/@S(_AS9#DS]2B35(?BE"
- XMA3!)>"8[@S%&TH:*UHJ.U8Z#PWQQO69HM5Y@L5M=M5]AM69HN6ILN6YNNW!P
- XMMW)SN71UMWAWN'EXN7Q[EFF/9SI@2!0[214\71U&5!0]60\Y9!I$;B!)?S%:
- XM?C!8=2=/6 \S7!,W7QL[;RM+71A 7!<_71A 8!M#8AI#8!A!7Q<^81E 8QI
- XM8!<]8!4\91I!;2)'<"5*;2)':1Y#;B$\;B$\;1P^:AD[<!M!>R9,BBY.CC)2
- XMCR]"DC)%GCM'K$E5N%!BO%1FP59QQ5IUT&ARTVMUUV]WUV]WTVUTTFQSU&YS
- XMUW%VSVQPU'%UVG=ZWWQ_X'^!X8""XHX*$YXZ/YXZ/Z9&0ZI*1Z)*,YI"*
- XMX8^*X(Z)XY:3Z)N8TY&4K&IM@493;C- 7B@[4QTP5RM-3R-%7"-)6R)(6A1!
- XM6Q5":")/;2=48!]&7!M"7!P[7Q\^9QXZ:R(^A3)+FD=@E$A=B3U2D4-2D4-2
- XM@C$_A31"DSY4C#=-@"M$@"M$?"H_@C!%VX^3T86)TXQ_NW1GK5=9KEA:K%E:
- XMJ597J%E;KV!BL61EL&-DK69GKVAIKVQLLF]OLW%RRY[$I'>=:35<, C:RM4
- XM514^6A Z9QU';!Y'?"Y7?S%9<")*61 T7!,W9B)"<R]/71A 71A 7AE!7QI"
- XM81E"81E"81E 81E 91Q"8AD_8!4\8Q@_:R!%;R1);"%&:!U"<B5 <",^;1P^
- XM9Q8X:A4[=!]%ABI*CS-3F3E,H$!3L$U9O%EEQEYPQU]QR5YYR5YYS65OT&AR
- XMTVMSU&QTTFQST6MRTFQQU&YST&UQU7)VW'E\X'V X8""X'^!X'^!X'^!UGU^
- XMV8"!W(2#WH:%WHB"XHR&Y)*-Z9>2\:2A^*NH\K"SZZFLV9ZKQ(F6F6-V=D!3
- XM3B)$1AH\62!&9"M191],7QE&8QU*9!Y+71Q#6AE 6AHY71T\9QXZ;B5!A3)+
- XMED-<E4E>B#Q1D$)1DD13@C$_A#-!DCU3CCE/A3!)?RI#@2]$A#)'Y)B<S("$
- XMSH=ZLVQ?J%)4L%I<KUQ=IE-4H5)4J%E;JEU>IUI;I5Y?IV!AIV1DJF=GJFAI
- XMNHZPR9V_L'VA9C-74!(X4A0Z9!]%9!]%;B-(?3)7@SE;;B1&7Q<V8!@W<2M)
- XM>C127AE!7QI"7QI"7QI"81E"8QM$8QM"8AI!8QI 8QI 8AD_8QI 9QQ!:A]$
- XM:R!%;"%&;R9 ;",]:1P]9!<X9Q0Y;QQ!A"I'D3=4G3Y-ITA7NU5:Q%YCS%]I
- XMS%]IS%IKRUEJQUEAREQDS&!GSF)ISV-IT&1JT6=JTFAKU6MNV6]RW79VX7IZ
- XMX7IZX'EYWGEXWGEXSW)TTG5WTWAVU'EWTGYUV85\X).(Z9R1YZ28[*F=Z*^E
- XM[[:L\<&\\L*]V["PQ9J:F'-T=$]082X\628T6ALW71XZ921+9B5,7!Q%61E"
- XM6AH]71U :B$^<RI'BC12ET%?EDE@ASI1CD!1D4-4@C%!@S)"D#M1C3A.B3-/
- XM@2M'AC1)C#I/Z9VARGZ"R(%TKVA;JEE9M&-CM61DK%M;I%57J%E;J5Q=I5A9
- XMIEI=IEI=IUM>J%Q?I5Q?M8FKHG:8K'F=PY"T7!Y$5A@^71@^8QY$<"5*?C-8
- XMACQ>:1]!7A8U7!0S<"I(=S%/7QI"81Q$8!M#7AE!8!A!9!Q%91U$8QM"81@^
- XM8QI 9!M!8QI 9!D^9AM :R!%<"5*:B$[:2 Z:1P]9ADZ:!4Z;AM A2M(E3M8
- XMG3Y-JDM:OEA=Q%YCREUGRUYHS5MLREAISF!HT&)JT65LTV=NUFIPUVMQV&YQ
- XMV&YQU&IMUVUPVG-SW'5UW'5UVW1TV71SV71SV'M]V7Q^V'U[V7Y\V(1[X(R#
- XMYYJ/\*.8[:J>]+&E\+>M[K6KYK:QZKJUZ;Z^Z;Z^Y<#!QJ&BJ7:$?TQ:7!TY
- XM4!$M6QI!9"-*7!Q%6AI#6!@[6AH]:B$^=BU*C3=5ET%?F$MBA#=.B3M,CD!1
- XM@C%!@C%!CSI0BS9,AS%-@RU)A3-(E4-8Z)R@R7V!PWQOL&E<MF5ENVIJO&MK
- XMMV9FKV!BKE]AK6!AJUY?IUM>IEI=I5E<HU=:GU99R)FZ?D]P>D=IP(VOEUQ_
- XM9"E,3PPP8R!$:"%"=S!1@CI98!@W6A(O6! M<"I&=C!,71E!8!Q$7QM#6Q<_
- XM7!<_81Q$8QY$8!M!8!D^81H_8AD_8AD_8AD]91Q ;"%&<"5*:2([:"$Z:1\_
- XM:!X^9Q@\:AL_@2I&DCM7GT!+K4Y9PEA;Q5M>S%M<SEU>TUMCT%A@S%I@S5MA
- XMS5UBT&!ETV-HUF9KU&=IU&=IU6AHV&MKVF]NVW!OVG!LV6]KV6]KVG!LTW-U
- XMTW-UTW9UUGEXUX-XWXN X9B(YYZ.XJ2.[:^9[;RE[;REY;NFZ+ZIZ,6P[,FT
- XMX+VDY\2K\L6[VZZDKW: A$M59BI%31$L5!L]41@Z4!,V410W8QLZ<RM*BC14
- XMDCQ<FTYG@C5.A#5)BSQ0@S%$@S%$CCE1B31,@"I&@BQ(@2]$G4M@XY>:RW^"
- XMOWAKMF]BNW!NNF]MNVYMO7!ONFUNM&=HLF5FM&=HKV!DK5YBJ5I>IE=;I%1:
- XMP)&RCV"!<3Y@;SQ>OH.F=CM>5!$U92)&91X_="U.@CI97Q<V714R7!0Q=S%-
- XM?#926Q<_7QM#7AI"614]6A4]8!M#8AU#7QI 8AM 8!D^8!<]8!<]8AD]9QY"
- XM;2)'<"5*;"4^:R0];2-#;")":!D]9Q@\?"5!CC=3H4)-KU!;PUE<Q%I=R5A9
- XMS%M<T5EASE9>RUE?S%I@S5UBT6%FUF9KV6ENUVILUVILUFEIV&MKV6YMV6YM
- XMUVUIUVUIUVUIV&YJSV]QT7%SU7AWVWY]WXN YY.(YIV-Z:"0[[&;\+*<Z+>@
- XMZ;BAZ+ZIZ\&LY,&LXK^JZ\BOX\"G[+^U\,.Y\KG#W:2NJFZ)<#1/3A4W2A$S
- XM2 LN2 LN7!0S;25$A2]/BS55G$]H@#-,@#%%B3I.@S%$@S%$C3A0AS)*>B1
- XM@"I&?"H_H4]DWI*5S("#O79INW1GOW1RN6YLNVYMPG5TPG5VN6QMMFEJNFUN
- XMM69JLV1HKE]CJEM?J%A>LH.D>4IK=4)D:#57BE%SK7266AL^929)8Q\_<2U-
- XM>3-18QT[5Q$M4 HF>#!-=BY+6Q<_7AI"7AI"6Q<_614]7!A 8QY$9B%'9!U"
- XM8AM 8!D^7Q@]81@\91Q :2!$;"-'<"@_;R<^>"Y.9QT]8!$U:1H^=1\]B3-1
- XMH$%.K4Y;NU)2O%-3RU95S%=6T5-6UUE<SUMAT%QBT5UATU]CU61GUV9IUF=G
- XMU69FV&EIVFMKVFYKVV]LV6UJV6UJV6UIVFYJTG!NUW5SVGYXX(1^W8Q_Y).&
- XMY9^,[*:3Z["7Z["7YK:9Y[>:Y+R<Y;V=Y+Z>Y;^?[,FBZL>@Z[^EZKZD]<&Z
- XM^,2][+? W*>PAU9J62@\0@TF210M6A8T8AX\?RY0D#]AFTUK?2]-A#5,@C-*
- XM>RD^AC1)A3!)@"M$A2]+@"I&=B0YMF1YTX>*SX.&O7=GP7MKP7EVP7EVP7EV
- XMP'AUP'5UOG-SO'%QNF]ON&INMVEMMF=KM&5ILF)HJ7J;I7:7<C]A52)$@4AJ
- XMJ7"2HV2'518Y8Q\_;2E)="Y,81LY61,O4PTI>S-0>#!-71E!7QM#8!Q$7!A
- XM6A8^7!A 8AU#9B%':2)'9A]$8QQ!8!D^81@\9!L_:!]#:B%%<"@_<2E >S%1
- XM:R%!8Q0X:AL_=1\]B3-1GT!-K4Y;NU)2O%-3S%=6S%=6T5-6UUE<T5UCT5UC
- XMT5UATEYBU&-FUV9IV6IJVFMKV6IJVVQLVFYKV6UJV&QIV&QIVFYJW'!LU')P
- XMV7=UW(!ZX85_WHV Y).&Y)Z+ZZ62ZJ^6ZJ^6Y+27YK:9X[N;Y+R<X[V=Y+Z>
- XMY,&:Z,6>[L*H[L*H]<&Z^<6^]L'*[KG"W*N_H&^#93!)3!<P6!0R:"1"?BU/
- XM?2Q.F4MI>RU+@S1+@3))>RD^AC1)AC%*@2Q%@RU)?"9"=B0YNVE^U(B+RW^"
- XMO'9FQ'YNPWMXPWMXPWMXPGIWPG=WP'5UOG-SO'%QO&YRNVUQN6INMVALMF9L
- XM?$MOHG&5C5I^82Y28"I-@4MNO(&D;S1782%"9B9';"A(7!@X7!8T6!(P?C95
- XM>3%07AU$7QY%7QY%71Q#7!A 7!A 8!U"92)';"=,:21)9A]$8AM 81H]8QP_
- XM9A]":"%$="<^=2@_@C13="9%:1<^;!I!=!X^B3-3G3]0K4]@O%)5O%)5S597
- XMSUA9TU-7V%A<T5UCT5UCT5UCTU]EU&-FV&=JW&QOWV]RVVQLW&UMV6QLUVIJ
- XMUFIGUVMHVV]LWG)OV'9PW7MUWX1[XH=^WXZ!Y).&Y)Z+Z:.0Z*V4Z*V4YK*4
- XMY[.5YK:7Y[>8Y[F8Z+J9X[B6Z\">]L.E]<*D],"J]\.M]\B[^,F\^]71X;NW
- XML8>.=DQ361XU5!DP:B!"<RE+E$9G=RE*@#!*?R])>2<^AC1+AS)+@BU&?RE'
- XM=!X\=B0YQ'*'UHJ-QGI]NG1DR8-SQ7Y[Q7Y[Q'UZPWQYPGMZP'EXOW9VOG5U
- XMOG5WO71VO'!SNFYQN6UQ83!47RY2H6Z2D%V!5!Y!9S%4E%E\J6Z19"1%9"1%
- XM9B)"6A8V7A@V6A0R?C95=R].82!'8!]&82!'8!]&7AI"7!A 7QQ!92)';RI/
- XM:R9+9R!%8QQ!8AL^9!U 9R!#:B-&=2@_>"M"ASE8>RU,;1M";!I!<QT]BC14
- XMFSU.K4]@O5-6O%)5S597T5I;U559UU=;SEI@T%QBU&!FUF)HUV9IVFELW6UP
- XMX'!SW6YNW&UMV&MKUFEIU&AEUFIGVV]LWW-PW'ITX'YXX89]Y(F WXZ!XY*%
- XMXYV*Z**/YJN2YJN2Y+"2Y;&3Y+25Y;66Y;>6YKB7Y+F7ZK^=\\"B\K^A[[NE
- XM\;VG\<*U]L>ZZ<._^M30\\G0P9>>B$UD61XU7A0V<RE+CD!A<2-$>RM%>RM%
- XM=R4\A#))AC%*@BU&?"9$;!8T=B0YS'J/UXN.P75XNG1DS8=WQG]\QG]\Q7Y[
- XMQ'UZPGMZP7IYP7AXP'=WP7AZP'=YP'1WOG)UO'!T=T9M-00KAU-ZOHJQ:319
- XM;CE>=CUAQHVQ9RA,8R1(8R!$618Z7A<Z61(U?3-5=BQ.8B%(8!]&82!'8B%(
- XM8!Q$6Q<_7AM 92)';BE.:B5*92!%81Q!8AL^91Y!:B-&;29)>B@]?BQ!CCQ<
- XM@S%1<!Q&:Q=!<1H^BS18ESM/K%!DO%1<NE):S%9=TEQCUE9>UU=?QU5=S5MC
- XMU&)JV6=OVFIQVVMRW&QQW6URVVYPVFUOV&MMU6AJTVAGU6IIVW!OWW1SWGUU
- XMXH%YXH=]Y8J WXZ!XY*%XIR)YZ&.YZ>2Z*B3Y:R2YJV3Z*^3ZK&5Z[.5Z[.5
- XM[;>B[KBC\+J?\;N@\;V<\KZ=[<2A\<BEZ,FL\M.V]M3*ZLB^Q)*B>$96618X
- XM92)$B#E=:QQ =B9"=R=#<R Y@2Y'A"Y*@"I&>B1"9Q$O=R4ZT7^4U8F,OW-V
- XMNW5ES8=WQ(!\Q(!\PGYZP7UYP'QZOWMYOWMYOGIXOWI[OGEZNWAXN79VMW1U
- X
- Xend
- END_OF_FILE
- if test 32122 -ne `wc -c <'timg.ppm.u.b'`; then
- echo shar: \"'timg.ppm.u.b'\" unpacked with wrong size!
- elif [ -f timg.ppm.u.a ]; then
- echo shar: Combining \"'timg.ppm.u.a'\" and \"'timg.ppm.u.b'\"
- cat timg.ppm.u.a timg.ppm.u.b > testimg.ppm.u
- echo shar: Removing \"'timg.ppm.u.a'\" and \"'timg.ppm.u.b'\"
- rm timg.ppm.u.a timg.ppm.u.b
- echo shar: Uudecoding \"'testimg.ppm.u'\"
- cat testimg.ppm.u | uudecode
- if [ -f testimg.ppm ]; then
- echo shar: Removing \"'testimg.ppm.u'\"
- rm testimg.ppm.u
- fi
- fi
- # end of 'timg.ppm.u.b'
- fi
- echo shar: End of archive 8 \(of 18\).
- cp /dev/null ark8isdone
- MISSING=""
- for I in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 ; do
- if test ! -f ark${I}isdone ; then
- MISSING="${MISSING} ${I}"
- fi
- done
- if test "${MISSING}" = "" ; then
- echo You have unpacked all 18 archives.
- rm -f ark[1-9]isdone ark[1-9][0-9]isdone
- else
- echo You still must unpack the following archives:
- echo " " ${MISSING}
- fi
- exit 0
- exit 0 # Just in case...
-