rar/0000755000175000017500000000000011764647300007156 5ustar zzrar/rar.txt0000644000175000017500000024216011764647300010510 0ustar zz User's Manual ~~~~~~~~~~~~~ RAR 4.20 console version ~~~~~~~~~~~~~~~~~~~~~~~~ =-=-=-=-=-=-=-=-=-=-=-=-=-=- Welcome to the RAR Archiver! -=-=-=-=-=-=-=-=-=-=-=-=-=-= Introduction ~~~~~~~~~~~~ RAR is a powerful tool allowing you to manage and control archive files. Console RAR supports archives only in RAR format, the names of which usually have a ".rar" extension. ZIP and other formats are not supported. Windows users may install GUI RAR version - WinRAR, which is able to process many more archive types. While console RAR and GUI WinRAR have the similar command line syntax, some differences exist. So it is recommended to use this rar.txt manual for console RAR (rar.exe in case of Windows version) and winrar.chm WinRAR help file for GUI WinRAR (winrar.exe). RAR features include: * Highly sophisticated, original compression algorithm * Special compression algorithms optimized for text, audio, graphics data, 32 and 64-bit Intel executables * Better compression than similar tools, using 'solid' archiving * Authenticity verification (registered version only) * Self-extracting archives and volumes (SFX) * Ability to recover physically damaged archives * Locking, password, file order list, file security & more ... Configuration file ~~~~~~~~~~~~~~~~~~ RAR for Unix reads configuration information from the file .rarrc in the user's home directory (stored in HOME environment variable) or in /etc directory. RAR for Windows reads configuration information from the file rar.ini, placed in the same directory as the rar.exe file. This file may contain the following string: switches=any RAR switches, separated by spaces For example: switches=-m5 -s Environment variable ~~~~~~~~~~~~~~~~~~~~ Default parameters may be added to the RAR command line by establishing an environment variable "RAR". For instance, in Unix following lines may be added to your profile: RAR='-s -md1024' export RAR RAR will use this string as default parameters in the command line and will create "solid" archives with 1024 KB sliding dictionary size. RAR handles options with priority as following: command line switches highest priority switches in the RAR variable lower priority switches saved in configuration file lowest priority Log file ~~~~~~~~ If the switch -ilog is specified in the command line or configuration file, RAR will write informational messages, concerning errors encountered while processing archives, into a log file. Read switch -ilog description for more details. The file order list for solid archiving - rarfiles.lst ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ rarfiles.lst contains a user-defined file list, which tells RAR the order in which to add files to a solid archive. It may contain file names, wildcards and special entry - $default. The default entry defines the place in order list for files not matched with other entries in this file. The comment character is ';'. In Windows this file should be placed in the same directory as RAR or in %APPDATA%\WinRAR directory, in Unix - to the user's home directory or in /etc. Tips to provide improved compression and speed of operation: - similar files should be grouped together in the archive; - frequently accessed files should be placed at the beginning. Normally masks placed nearer to the top of list have a higher priority, but there is an exception from this rule. If rarfiles.lst contains such two masks that all files matched by one mask are also matched by another, that mask which matches a smaller subset of file names will have higher priority regardless of its position in the list. For example, if you have *.cpp and f*.cpp masks, f*.cpp has a higher priority, so the position of 'filename.cpp' will be chosen according to 'f*.cpp', not '*.cpp'. RAR command line syntax ~~~~~~~~~~~~~~~~~~~~~~~ Syntax RAR [ - ] [ <@listfiles...> ] [ ] [ ] Description Command line options (commands and switches) provide control of creating and managing archives with RAR. The command is a string (or a single letter) which commands RAR to perform a corresponding action. Switches are designed to modify the way RAR performs the action. Other parameters are archive name and files to be archived into or extracted from the archive. Listfiles are plain text files that contain names of files to process. File names should start at the first column. It is possible to put comments to the listfile after // characters. For example, you may create backup.lst containing the following strings: c:\work\doc\*.txt //backup text documents c:\work\image\*.bmp //backup pictures c:\work\misc and then run: rar a backup @backup.lst If you wish to read file names from stdin (standard input), specify the empty listfile name (just @). By default, Windows console RAR uses OEM (DOS) encoding in list files. but it can be redefined with -scl switch. You may specify both usual file names and list files in the same command line. If neither files nor listfiles are specified, then *.* is implied and RAR will process all files. Many RAR commands, such as extraction, test or list, allow to use wildcards in archive name. If no extension is specified in archive mask, RAR assumes .rar, so * means all archives with .rar extension. If you need to process all archives without extension, use *. mask. *.* mask selects all files. Wildcards in archive name are not allowed when archiving and deleting. In Unix you need to enclose RAR command line parameters containing wildcards in single or double quotes to prevent their expansion by Unix shell. For example, this command will extract *.asm files from all *.rar archives in current directory: rar e '*.rar' '*.asm' Command could be any of the following: a Add files to archive. Examples: 1) add all *.hlp files from the current directory to the archive help.rar: rar a help *.hlp 2) archive all files from the current directory and subdirectories to 362000 bytes size solid, self-extracting volumes and add the recovery record to each volume: rar a -r -v362 -s -sfx -rr save Because no file names are specified, all files (*) are assumed. 3) as a special exception, if directory name is specified as an argument and if directory name does not include file masks and trailing backslashes, the entire contents of the directory and all subdirectories will be added to the archive even if switch -r is not specified. The following command will add all files from the directory Bitmaps and its subdirectories to the RAR archive Pictures.rar: rar a Pictures.rar Bitmaps 4) if directory name includes file masks or trailing backslashes, normal rules apply and you need to specify switch -r to process its subdirectories. The following command will add all files from directory Bitmaps, but not from its subdirectories, because switch -r is not specified: rar a Pictures.rar Bitmaps\* c Add archive comment. Comments are displayed while the archive is being processed. Comment length is limited to 62000 bytes Examples: rar c distrib.rar Also comments may be added from a file using -z[file] switch. The following command adds a comment from info.txt file: rar c -zinfo.txt dummy cf Add files comment. File comments are displayed when the 'v' command is given. File comment length is limited to 32767 bytes. Example: rar cf bigarch *.txt ch Change archive parameters. This command can be used with most of archive modification switches to modify archive parameters. It is especially convenient for switches like -av, -cl, -cu, -tl, which do not have a dedicated command. It is not able to recompress, encrypt or decrypt archive data and it cannot merge or create volumes. If used without any switches, 'ch' command just copies the archive data without modification. Example: Set archive time to latest file: rar ch -tl files.rar cw Write archive comment to specified file. Format of output file depends on -sc switch. If output file name is not specified, comment data will be sent to stdout. Examples: 1) rar cw arc comment.txt 2) rar cw -scuc arc unicode.txt 3) rar cw arc d Delete files from archive. Please note if the processing of this command results in removing all the files from the archive, the empty archive would removed. e Extract files to current directory. f Freshen files in archive. Updates those files changed since they were packed to the archive. This command will not add new files to the archive. i[i|c|h|t]= Find string in archives. Supports following optional parameters: i - case insensitive search (default); c - case sensitive search; h - hexadecimal search; t - use ANSI, Unicode and OEM character tables (Windows only); If no parameters are specified, it is possible to use the simplified command syntax i instead of i= It is allowed to specify 't' modifier with other parameters, for example, ict=string performs case sensitive search using all mentioned above character tables. Examples: 1) rar "ic=first level" -r c:\*.rar *.txt Perform case sensitive search of "first level" string in *.txt files in *.rar archives on the disk c: 2) rar ih=f0e0aeaeab2d83e3a9 -r e:\texts Search for hex string f0 e0 ae ae ab 2d 83 e3 a9 in rar archives in e:\texts directory. k Lock archive. Any command which intends to change the archive will be ignored. Example: rar k final.rar l[t,b] List contents of archive [technical]. Files are listed as with the 'v' command with the exception of the file path. i.e. only the file name is displayed. Optional technical information (host OS, solid flag and old version flag) is displayed when 't' modifier is used. Modifier 'b' forces RAR to output only bare file names without any additional information. m[f] Move to archive [files only]. Moving files and directories results in the files and directories being erased upon successful completion of the packing operation. Directories will not be removed if 'f' modifier is used and/or '-ed' switch is applied. p Print file to stdout. You may use this command together with -inul switch to disable all RAR messages and print only file data. It may be important when you need to send a file to stdout for use in pipes. r Repair archive. Archive repairing is performed in two stages. First, the damaged archive is searched for a recovery record (see 'rr' command). If the archive contains a recovery record and if the portion of the damaged data is continuous and less than N*512 bytes, where N is number of recovery sectors placed into the archive, the chance of successful archive reconstruction is very high. When this stage has been completed, a new archive will be created, called fixed.arcname.rar, where 'arcname' is the original (damaged) archive name. If a broken archive does not contain a recovery record or if the archive is not completely recovered due to major damage, a second stage is performed. During this stage only the archive structure is reconstructed and it is impossible to recover files which fail the CRC validation, it is still possible, however, to recover undamaged files, which were inaccessible due to the broken archive structure. Mostly this is useful for non-solid archives. This stage is never efficient for archives with encrypted file headers, which can be repaired only if recovery record is present. When the second stage is completed, the reconstructed archive will be saved as rebuilt.arcname.rar, where 'arcname' is the original archive name. While the recovery is in progress, RAR may prompt the user for assistance when a suspicious file is detected. Suspicious entry Name: Size: Packed: Add it: Yes/No/All Answer 'y' to add this entry to the file rebuilt.arcname.rar. Example: rar r buggy.rar rc Reconstruct missing and damaged volumes using recovery volumes (.rev files). You need to specify any existing volume as the archive name, for example, 'rar rc backup.part03.rar' Read 'rv' command description for information about recovery volumes. rn Rename archived files. The command syntax is: rar rn ... For example, the following command: rar rn data.rar readme.txt readme.bak info.txt info.bak will rename readme.txt to readme.bak and info.txt to info.bak in the archive data.rar. It is allowed to use wildcards in the source and destination names for simple name transformations like changing file extensions. For example: rar rn data.rar *.txt *.bak will rename all *.txt files to *.bak. RAR does not check if the destination file name is already present in the archive, so you need to be careful to avoid duplicated names. It is especially important when using wildcards. Such a command is potentially dangerous, because a wrong wildcard may corrupt all archived names. rr[N] Add data recovery record. Optionally, redundant information (recovery record) may be added to an archive. This will cause a small increase of the archive size and helps to recover archived files in case of disk failure or data losses of any other kind, provided that the damage is not too severe. A recovery record contains up to 524288 recovery sectors. The number of sectors may be specified directly in the 'rr' command (N = 1, 2 .. 524288) or, if it is not specified by the user, it will be selected automatically according to the archive size: a size of the recovery information will be about 1% of the total archive size, usually allowing the recovery of up to 0.6% of the total archive size of continuously damaged data. It is also possible to specify the recovery record size in percent to the archive size. Just append the percent character to the command parameter. For example: rar rr3% arcname Note that if you run this command from .bat or .cmd file, you need to use rr3%% instead of rr3%, because the command processor treats the single '%' character as the start of a batch file parameter. You may also use 'p' instead of '%', so 'rr3p' will work too. If data is damaged continuously, then each rr-sector helps to recover 512 bytes of damaged information. This value may be lower in cases of multiple damage. The size of the recovery record may be approximately determined by the formula /256 + *512 bytes. rv[N] Create recovery volumes (.rev files), which can be later used to reconstruct missing and damaged files in a volume set. This command makes sense only for multivolume archives and you need to specify the name of the first volume in the set as the archive name. For example: rar rv3 data.part01.rar This feature may be useful for backups or, for example, when you posted a multivolume archive to a newsgroup and a part of subscribers did not receive some of the files. Reposting recovery volumes instead of usual volumes may reduce the total number of files to repost. Each recovery volume is able to reconstruct one missing or damaged RAR volume. For example, if you have 30 volumes and 3 recovery volumes, you are able to reconstruct any 3 missing volumes. If the number of .rev files is less than the number of missing volumes, reconstructing is impossible. The total number of usual and recovery volumes must not exceed 255. Original RAR volumes must not be modified after creating recovery volumes. Recovery algorithm uses data stored both in REV files and in RAR volumes to rebuild missing RAR volumes. So if you modify RAR volumes, for example, lock them, after creating REV files, recovery process will fail. The optional parameter specifies a number of recovery volumes to create and must be less than the total number of RAR volumes in the set. You may also append a percent character to this parameter, in such case the number of creating .rev files will be equal to this percent taken from the total number of RAR volumes. For example: rar rv15% data.part01.rar RAR reconstructs missing and damaged volumes either when using 'rc' command or automatically, if it cannot locate the next volume and finds the required number of .rev files when unpacking. Original copies of damaged volumes are renamed to *.bad before reconstruction. For example, volname.part03.rar will be renamed to volname.part03.rar.bad. s[name] Convert archive to SFX. The archive is merged with a SFX module (using a module in file default.sfx or specified in the switch). In the Windows version default.sfx should be placed in the same directory as the rar.exe, in Unix - in the user's home directory, in /usr/lib or /usr/local/lib. s- Remove SFX module from the already existing SFX archive. RAR creates a new archive without SFX module, the original SFX archive is not deleted. t Test archive files. This command performs a dummy file extraction, writing nothing to the output stream, in order to validate the specified file(s). Examples: Test archives in current directory: rar t * or for Unix: rar t '*' User may test archives in all sub-directories, starting with the current path: rar t -r * or for Unix: rar t -r '*' u Update files in archive. Adds files not yet in the archive and updates files that have been changed since they were packed into the archive. v[t,b] Verbosely list the contents of archive [technical]. Files are listed using the format: full pathname, file comment, original and compressed size, compression ratio, last update date and time, attributes, CRC, compression method and minimum RAR version required to extract. Compression method information is displayed as m. N shows the file compression method and uses same values as -m switch, where '0', '1', ..., '5' mean 'store', 'fastest', ..., 'best'. 'd' indicates the compression dictionary, as in -md switch, where 'a', 'b', ..., 'g' mean 64 KB, 128 KB, ..., 4096 KB. Directories always have '0' compression method and no dictionary size. Optional technical information such as "Host OS", "Solid" and "Old" flags is displayed, when 't' modifier is used. "Host OS" shows the native operating system of RAR version used to create an archive. "Solid" flag is set if file uses the compression statistics from preceding files (see -s switch). "Old" flag means "Old file version" and indicates if it is the latest or old file version (see -ver switch for details). Modifier 'b' forces RAR to output only bare file names without any additional information. To list the contents of all archive volumes, use an asterisk ('*') in place of the archive file extension or use the '-v' switch. Example: 1) list contents of system.rar archive (technical mode) and redirect output to file techlist.lst rar vt system >techlist.lst 2) list contents of tutorial.rar archive (bare file names mode) rar vb tutorial x Extract files with full path. Example: rar x -av- -c- dime 10cents.txt extract specified file to current path. AV check and comment show are disabled. Switches (used in conjunction with a command): -? Display help on commands and switches. The same as when none or an illegal command line option is entered. -- Stop switches scanning This switch tells to RAR that there are no more switches in the command line. It could be useful, if either archive or file name starts from '-' character. Without '--' switch such a name would be treated as a switch. Example: add all files from the current directory to the solid archive '-StrangeName' RAR a -s -- -StrangeName -@[+] Disable [enable] file lists RAR treats command line parameters starting from '@' character as file lists. So by default, RAR attempts to read 'filename' filelist, when encountering '@filename' parameter. But if '@filename' file exists, RAR treats the parameter as '@filename' file instead of reading the file list. Switch -@[+] allows to avoid this ambiguity and strictly define how to handle parameters starting from '@' character. If you specify -@, all such parameters found after this switch will be considered as file names, not file lists. If you specify -@+, all such parameters found after this switch will be considered as file lists, not file names. This switch does not affect processing parameters located before it. Example: test the archived file '@home' rar t -@ notes.rar @home -ac Clear Archive attribute after compression or extraction (Windows version only). -ad Append archive name to destination path. This option may be useful when unpacking a group of archives. By default RAR places files from all archives in the same directory, but this switch creates a separate directory for files unpacked from each archive. Example: rar x -ad *.rar data\ RAR will create subdirectories below 'data' for every unpacking archive. -ag[format] Generate archive name using the current date and time. Appends the current date string to an archive name when creating or processing an archive. Useful for daily backups. Format of the appending string is defined by the optional "format" parameter or by "YYYYMMDDHHMMSS" if this parameter is absent. The format string may include the following characters: Y - year M - month MMM - month name as text string (Jan, Feb, etc.) W - a week number (a week starts with Monday) A - day of week number (Monday is 1, Sunday - 7) D - day of month E - day of year H - hours M - minutes (treated as minutes if encountered after hours) I - minutes (treated as minutes regardless of hours position) S - seconds N - archive number. RAR searches for already existing archive with generated name and if found, increments the archive number until generating a unique name. 'N' format character is not supported when creating volumes. When performing non-archiving operations like extracting, RAR selects the existing archive preceding the first unused name or sets N to 1 if no such archive exists. Each of format string characters listed above represents only one character added to archive name. For example, use WW for two digit week number or YYYY to define four digit year. If the first character in the format string is '+', positions of the date string and base archive name are exchanged, so a date will precede an archive name. The format string may contain optional text enclosed in '{' and '}' characters. This text is inserted into archive name. All other characters are added to an archive name without changes. If you need to process an already existing archive, be careful with -ag switch. Depending on the format string and time passed since previous -ag use, generated and existing archive names may mismatch. In this case RAR will create or open a new archive instead of processing the already existing one. You may use -log switch to write the generated archive name to a file and then read it from file for further processing. Examples: 1) use the default YYYYMMDDHHMMSS format rar a -ag backup 2) use DD-MMM-YY format rar t -agDD-MMM-YY backup 3) use YYYYMMDDHHMM format, place date before 'backup' rar a -ag+YYYYMMDDHHMM backup 4) use YYYY-WW-A format, include fields description rar a -agYYYY{year}-WW{week}-A{wday} backup 5) use YYYYMMDD and the archive number. It allows to generate unique names even when YYYYMMDD format mask used more than once in the same day rar a -agYYYYMMDD-NN backup -ai Ignore file attributes. If this switch is used when extracting, RAR does not set general file attributes stored in archive to extracted files. This switch preserves attributes assigned by operating system to a newly created file. In Windows it affects archive, system, hidden and read-only attributes. in Unix - user, group, and others file permissions. -ao Add files with Archive attribute set (Windows version only). Example: add all disk C: files with Archive attribute set to the 'f:backup' and clear files Archive attribute rar a -r -ac -ao f:backup c:\*.* -ap Set path inside archive. This path is merged to file names when adding files to an archive and removed from file names when extracting. For example, if you wish to add the file 'readme.txt' to the directory 'DOCS\ENG' of archive 'release', you may run: rar a -apDOCS\ENG release readme.txt or to extract 'ENG' to the current directory: rar x -apDOCS release DOCS\ENG\*.* -as Synchronize archive contents If this switch is used when archiving, those archived files which are not present in the list of the currently added files, will be deleted from the archive. It is convenient to use this switch in combination with -u (update) to synchronize contents of an archive and an archiving directory. For example, after the command: rar a -u -as backup sources\*.cpp the archive 'backup.rar' will contain only *.cpp files from directory 'sources', all other files will be deleted from the archive. It looks similar to creating a new archive, but with one important exception: if no files are modified since the last backup, the operation is performed much faster than the creation of a new archive. -av Put authenticity verification (registered versions only). RAR will put, in every new and updated archive, information concerning the creator, last update time and archive name. If an archive, containing authenticity verification, is being modified and this switch is not specified, the authenticity verification information will be removed. When extracting, testing, listing or updating an archive with the '-av' switch, RAR will perform integrity validation and display the message: Verifying authenticity information ... In the case of successful authenticity verification, message 'Ok', creator name and last update information will be displayed. In the case of authenticity verification failure, message 'FAILED' will be displayed. RAR authenticity verification can be forged and does not provide the same level of security as modern digital signature schemes based on public key infrastructure. We recommend to use this RAR feature as informational only, like a special archive comment. Avoid it in situations, when accurate information about archive creator is important. In order to enable the authenticity verification feature, the program must be registered. Please contact your local distribution site or the world-wide distribution center. -av- Disable authenticity verification checking or adding. -cfg- Ignore configuration file and RAR environment variable. -cl Convert file names to lower case. -cu Convert file names to upper case. -c- Disable comments show. -df Delete files after archiving Move files to archive. This switch in combination with the command "A" performs the same action as the command "M". -dh Open shared files Allows to process files opened by other applications for writing. This switch helps if an application allowed read access to file, but if all types of file access are prohibited, the file open operation will still fail. This option could be dangerous, because it allows to archive a file, which at the same time is modified by another application, so use it carefully. -dr Delete files to Recycle Bin Delete files after archiving and place them to Recycle Bin. Available in Windows version only. -ds Do not sort files while adding to a solid archive. -dw Wipe files after archiving Delete files after archiving. Before deleting file data are overwritten by zero bytes to prevent recovery of deleted files. Please be aware that such approach is designed for usual hard disks, but may fail to overwrite the original file data on solid state disks, as result of SSD wear leveling technology and more complicated data addressing. -ed Do not add empty directories This switch indicates that directory records are not to be stored in the created archive. When extracting such archives, RAR creates non-empty directories based on paths of files contained in them. Information about empty directories is lost. All attributes of non-empty directories except a name (access rights, streams, etc.) will be lost as well, so use this switch only if you do not need to preserve such information. If -ed is used with 'm' command or -df switch, RAR will not remove empty directories. -ee Do not process extended attributes Disables saving and restoring extended file attributes. Only for OS/2 versions. -en Do not add "end of archive" block By default, RAR adds an "end of archive" block to the end of a new or updated archive. It allows to skip external data like digital signatures safely, but in some special cases it may be useful to disable this feature. For example, if an archive is transferred between two systems via an unreliable link and at the same time a sender adds new files to it, it may be important to be sure that the already received file part will not be modified on the other end between transfer sessions. This switch cannot be used with volumes, because the end of archive block contains information important for correct volume processing. -ep Exclude paths from names. This switch enables files to be added to an archive without including the path information. This could, of course, result in multiple files existing in the archive with the same name. -ep1 Exclude base dir from names. Do not store the path entered in the command line. Example: all files and directories from the directory tmp will be added to the archive 'test', but the path in archived names will not include 'tmp\' rar a -ep1 -r test tmp\* This is equivalent to the commands: cd tmp rar a -r ..\test cd .. -ep2 Expand paths to full. Store full file paths (except a drive letter and leading path separator) when archiving. -ep3 Expand paths to full including the drive letter. Windows version only. This switch stores full file paths including the drive letter if used when archiving. Drive separators (colons) are replaced by underscore characters. If you use -ep3 when extracting, it will change underscores back to colons and create unpacked files in their original directories and disks. If the user also specified a destination path, it will be ignored. It also converts UNC paths from \\server\share to __server\share when archiving and restores them to the original state when extracting. This switch can help to backup several disks to the same archive. For example, you may run: rar a -ep3 -r backup.rar c:\ d:\ e:\ to create backup and: rar x -ep3 backup.rar to restore it. But be cautious and use -ep3 only if you are sure that extracting archive does not contain any malicious files. In other words, use it if you have created an archive yourself or completely trust its author. This switch allows to overwrite any file in any location on your computer including important system files and should normally be used only for the purpose of backup and restore. -e[+] Specifies file exclude or include attributes mask. is a number in the decimal, octal (with leading '0') or hex (with leading '0x') format. By default, without '+' sign before , this switch defines the exclude mask. So if result of bitwise AND between and file attributes is nonzero, file would not be processed. If '+' sign is present, it specifies the include mask. Only those files which have at least one attribute specified in the mask will be processed. In Windows version is also possible to use symbols D, S, H, A and R instead of a digital mask to denote directories and files with system, hidden, archive and read-only attributes. The order in which the attributes are given is not significant. Unix version supports D and V symbols to define directory and device attributes. It is allowed to specify both -e and -e+ in the same command line. Examples: 1) archive only directory names without their contents rar a -r -e+d dirs 2) do not compress system and hidden files: rar a -esh files 3) do not extract read-only files: rar x -er files -f Freshen files. May be used with archive extraction or creation. The command string "a -f" is equivalent to the command 'f', you could also use the switch '-f' with the commands 'm' or 'mf'. If the switch '-f' is used with the commands 'x' or 'e', then only old files would be replaced with new versions extracted from the archive. -hp[p] Encrypt both file data and headers. This switch is similar to -p[p], but switch -p encrypts only file data and leaves other information like file names visible. This switch encrypts all sensitive archive areas including file data, file names, sizes, attributes, comments and other blocks, so it provides a higher security level. Without a password it is impossible to view even the list of files in archive encrypted with -hp. Example: rar a -hpfGzq5yKw secret report.txt will add the file report.txt to the encrypted archive secret.rar using the password 'fGzq5yKw' -id[c,d,p,q] Disable messages. Switch -idc disables the copyright string. Switch -idd disables "Done" string at the end of operation. Switch -idp disables the percentage indicator. Switch -idq turns on the quiet mode, so only error messages and questions are displayed. It is allowed to use several modifiers at once, so switch -idcdp is correct. -ieml[.][addr] Send archive by email. Windows version only. Attach an archive created or updated by the add command to email message. You need to have a MAPI compliant email client to use this switch (most modern email programs support MAPI interface). You may enter a destination email address directly in the switch or leave it blank. In the latter case you will be asked for it by your email program. It is possible to specify several addresses separated by commas or semicolons. If you append a dot character to -ieml, an archive will be deleted after it was successfully attached to an email. If the switch is used when creating a multivolume archive, every volume is attached to a separate email message. -ierr Send all messages to stderr. -ilog[name] Log errors to file (registered version only). Write error messages to rar.log file. If optional 'name' parameter is not specified, the log file is created using the following defaults: Unix: .rarlog file in the user's home directory; Windows: rar.log file in %APPDATA%\WinRAR directory. If 'name' parameter includes a file name without path, RAR will create the log file in default directory from the list above using the specified name. Include both path and name to 'name' parameter if you wish to change the location of log file. Example: rar a -ilogc:\log\backup.log backup d:\docs will create c:\log\backup.log log file in case of errors. -inul Disable all messages. -ioff Turn PC off after completing an operation. The hardware must support the power off feature. Windows version only. -isnd Enable sound. -k Lock archive. Any command which intends to change the archive will be ignored. -kb Keep broken extracted files. RAR, by default, deletes files with CRC errors after extraction. The switch -kb specifies that files with CRC errors should not be deleted. -log[fmt][=name] Write names to log file. This switch allows to write archive and file names to specified text file in archiving, extracting, deleting and listing commands. Its behavior is defined by 'fmt' string, which can include one or more of following characters: A - write archive names to log file. If RAR creates or processes volumes, all volume names are logged. F - write processed file names to log file. It includes files added to archive and extracted, deleted or listed files inside of archive. P - if log file with specified name is exist, append data to existing file instead of creating a new one. U - write data in Unicode format. If neither 'A' nor 'F' are specified, 'A' is assumed. 'name' parameter allows to specify the name of log file. It must be separated from 'fmt' string by '=' character. If 'name' is not present, RAR will use the default rarinfo.log file name. It is allowed to specify several -log switches in the same command line. This switch can be particularly useful, when you need to process an archive created with -ag or -v switches in a batch script. You can specify -loga=arcname.txt when creating an archive and then read an archive name generated by RAR from arcname.txt with an appropriate command. For example, in Windows batch file it can be: set /p name= Set compression method: -m0 store do not compress file when adding to archive -m1 fastest use fastest method (less compressive) -m2 fast use fast compression method -m3 normal use normal (default) compression method -m4 good use good compression method (more compressive, but slower) -m5 best use best compression method (slightly more compressive, but slowest) If this switch is not specified, RAR uses -m3 method (normal compression). By default, RAR uses only the general compression algorithm in -m1 and -m2 methods, advanced algorithms like audio and true color processing are enabled only in -m3..-m5 modes, advanced text compression is disabled in all modes. This default can be overridden using -mc switch. -mc Set advanced compression parameters. This switch is intended mainly for benchmarking and experiments. In the real environment it is usually better to allow RAR to select optimal parameters automatically. Please note that improper use of this switch may lead to very serious performance and compression loss, so use it only if you clearly understand what you do. It has the following syntax: -mc[param1][:param2][module][+ or -] where is the one character field denoting a part of the compression algorithm, which has to be configured. It may have the following values: A - audio compression; C - true color (RGB) data compression; D - delta compression; E - 32-bit x86 executables compression; I - 64-bit Intel Itanium executables compression; T - text compression. '+' sign at the end of switch applies the selected algorithm module to all processed data, '-' disables the module at all. If no sign is specified, RAR will choose modules automatically, based on data and the current compression method. Switch -mc- disables all optional modules and allows only the general compression algorithm. and are module dependent parameters described below. Audio compression, delta compression: is a number of byte channels (can be 1 - 31). RAR splits multibyte channels to bytes, for example, two 16-bit audio channels are considered by RAR as four channels one byte each. is ignored. 32-bit x86 Intel executables compression, 64-bit Intel Itanium executables compression, true color (RGB) data compression: and are ignored. Text compression: Text compression algorithm provides noticeably higher compression on plain text data. But it cannot utilize several CPU cores efficiently resulting in slower compression time comparing to general algorithm in multicore and multiprocessor environment. Also its decompression speed is much slower than in general algorithm regardless of CPU cores number. This is why the text compression is disabled by default. You can specify -mct switch to allow RAR to select this algorithm automatically for suitable data. Switch -mct+ will force use of the text compression for all data. Switch -mct can also include and , so its full syntax is -mc[param1][:param2]t[+ or -]. is the order of PPM algorithm (can be 2 - 63). Usually a higher value slightly increases the compression ratio of redundant data, but only if enough memory is available to PPM. In case of lack of memory the result may be negative. Higher order values decrease both compression and decompression speed. is memory in megabytes allocated for PPM (1-128). Higher values may increase the compression ratio, but note that PPM uses the equal memory size both to compress and decompress, so if you allocate too much memory when creating an archive, other people may have problems when decompressing it on a computer with less memory installed. Decompression will be still possible using virtual memory, but it may become very slow. Examples: 1) switch -mc1a+ forces use of 8-bit mono audio compression for all data. 2) switch -mc10:40t+ forces use of text compression algorithm for all data, sets the compression order to 10 and allocates 40 MB memory. 3) switch -mc12t sets the text compression order to 12, when the text compression is used, but leaves to RAR to decide when to use it. 4) switches -mct -mcd- allow RAR to apply the text compression to suitable data and disable the delta compression. -md Select dictionary size in KB. Must be 64, 128, 256, 512, 1024, 2048 or 4096 or a letter 'a', 'b', 'c', 'd', 'e', 'f', 'g' respectively. The sliding dictionary is a special memory area used by the compression algorithm. If the size of the file being compressed (or the total files size in the case of a solid archive) is greater than the dictionary size, then increasing the dictionary size will generally increase compression ratio, decrease packing speed and increase memory requirements. RAR can reduce the dictionary size if it is significantly larger than the size of the source data. It helps to reduce memory requirements without decreasing compression. Default sliding dictionary size is 4096 KB. Example: RAR a -s -mdd sources *.asm or RAR a -s -md512 sources *.asm Will create a solid archive using a 512 KB dictionary. -ms[list] Specify file types to store. Specify file types, which will be stored without compression. This switch may be used to store already compressed files, which helps to increase archiving speed without noticeable loss in the compression ratio. Optional parameter defines the list of file extensions separated by semicolons. For example, -msrar;zip;jpg will force RAR to store without compression all RAR and ZIP archives and JPG images. It is also allowed to specify wildcard file masks in the list, so -ms*.rar;*.zip;*.jpg will work too. If is not specified, -ms switch will use the default set of extensions, which includes the following file types: 7z, ace, arj, bz2, cab, gz, jpeg, jpg, lha, lzh, mp3, rar, taz, tgz, z, zip -mt Set the number of threads. parameter can take values from 1 to 32. It defines the recommended maximum number of active threads for compression algorithm also as for other RAR modules, which can start several threads. While RAR attempts to follow this recommendation, sometimes the real number of active threads can exceed the specified value. Change of parameter slightly affects the compression ratio, so archives created with different -mt switches will not be exactly the same even if all other compression settings are equal. If -mt switch is not specified, RAR will try to detect the number of available processors and select the optimal number of threads automatically. -n Include only the specified file . Wildcards may be used both in the name and file parts of file mask. You may specify the switch '-n' several times. This switch does not replace usual file masks, which still need to be entered in the command line. It is an additional filter limiting processed files only to those matching the include mask specified in -n switch. It can help to reduce the command line length sometimes. For example, if you need to compress all *.txt and *.lst files in directories Project and Info, you can enter: rar a -r text Project\*.txt Project\*.lst Info\*.txt Info\*.lst or using the switch -n: rar a -r -n*.txt -n*.lst text Project Info -n@ Include files listed in the specified list file. Similar to -n switch, but reads include masks from the list file. If you use -n@ without the list file name parameter, it will read file names from stdin. Example: rar a -r -n@inclist.txt text Project Info -oc Set NTFS Compressed attribute. Windows version only. This switch allows to restore NTFS Compressed attribute when extracting files. RAR saves Compressed file attributes when creating an archive, but does not restore them unless -oc switch is specified. -ol Save symbolic links as the link instead of the file. Unix version only. -or Rename extracted files automatically if file with the same name already exists. Renamed file will get the name like 'filename(N).txt', where 'filename.txt' is the original file name and 'N' is a number starting from 1 and incrementing if file exists. -os Save NTFS streams. Windows version only. This switch has meaning only for NTFS file system and allows to save alternative data streams associated with a file. You may need to specify it when archiving if you use software storing data in alternative streams and wish to preserve these streams. Streams are not saved for NTFS encrypted files. -ow Use this switch when archiving to save file security information and when extracting to restore it. Unix RAR version saves file owner and group when using this switch. Windows version stores owner, group, file permissions and audit information, but only if you have necessary privileges to read them. Note that only NTFS file system supports file based security under Windows. -o[+|-] Set the overwrite mode. Can be used both when extracting and updating archived files. Following modes are available: -o Ask before overwrite (default for extracting files); -o+ Overwrite all (default for updating archived files); -o- Skip existing files. -p[p] Encrypt files with the string

as password while archiving. The password is case-sensitive. If you omit the password on the command line, you will be prompted with message "Enter password". Example: rar a -pmyhoney secret1 *.txt add files *.txt and encrypt them with password "myhoney". -p- Do not query password -r Recurse subdirectories. May be used with commands: a, u, f, m, x, e, t, p, v, l, c, cf and s. When used with the commands 'a', 'u', 'f', 'm' will process files in all sub-directories as well as the current working directory. When used with the commands x, e, t, p, v, l, c, cf or s will process all archives in sub-directories as well as the current working directory. -r- Disable recursion. Even without -r switch RAR can enable the recursion automatically in some situations. Switch -r- prohibits it. If you specify a directory name when archiving and if such name does not include wildcards, by default RAR adds the directory contents even if switch -r is not specified. Also RAR automatically enables the recursion if disk root without wildcards is specified as a file mask. Switch -r- disables such behavior. For example: rar a -r- arc dirname command will add only the empty 'dirname' directory and ignore its contents. Following command: rar a -r- arc c:\ will compress contents of root c: directory only and will not recurse into subdirectories. -r0 Similar to -r, but when used with the commands 'a', 'u', 'f', 'm' will recurse into subdirectories only for those file masks, which include wildcard characters '*' and '?'. This switch works only for file names. Directory names without a file name part, such as 'dirname', are not affected by -r0 and their contents is added to archive completely unless -r- switch is specified. Example: rar a -r0 docs.rar *.doc readme.txt add *.doc files from the current directory and its subdirectories and readme.txt only from the current directory to docs.rar archive. In case of usual -r switch, RAR would search for readme.txt in subdirectories too. -ri

[:] Set priority and sleep time. Available only in RAR for Windows. This switch regulates system load by RAR in multitasking environment. Possible task priority

values are 0 - 15. If

is 0, RAR uses the default task priority.

equal to 1 sets the lowest possible priority, 15 - the highest possible. Sleep time is a value from 0 to 1000 (milliseconds). This is a period of time that RAR gives back to the system after every read or write operation while compressing or extracting. Non-zero may be useful if you need to reduce system load even more than can be achieved with

parameter. Example: execute RAR with default priority and 10 ms sleep time: rar a -ri0:10 backup *.* -rr[N] Add a data recovery record. This switch is used when creating or modifying an archive to add a data recovery record to the archive. See the 'rr[N]' command description for details. -rv[N] Create recovery volumes. This switch is used when creating a multivolume archive to generate recovery volumes. See the 'rv[N]' command description for details. -s Create solid archive. A solid archive is an archive packed by a special compression method, which treats several or all files, within the archive, as one continuous data stream. Solid archiving significantly increases compression, when adding a large number of small, similar files. But it also has a few important disadvantages: slower updating of existing solid archives, slower access to individual files, lower damage resistance. Usually files in a solid archive are sorted by extension. But it is possible to disable sorting with -ds switch or set an alternative file order using a special file, rarfiles.lst. Example: create solid archive sources.rar with 512 KB dictionary, recursing all directories, starting with the current directory. Add only .asm files: rar a -s -md512 sources.rar *.asm -r -s Create solid groups using file count Similar to -s, but resets solid statistics after compressing files. Usually decreases compression, but also decreases losses in case of solid archive damages. -sc[objects] Specify the character set for list files and archive comment files. 'Charset' parameter is mandatory and can have one of the following values: U - Unicode; A - ANSI (Windows) encoding. Windows version only; O - OEM (DOS) encoding. Windows version only. Files in Unicode format must have FFFE or FEFF Unicode character in the beginning, otherwise RAR will ignore this switch and process the file as ASCII text. 'Objects' parameter is optional and can have one of the following values: L - list files; C - comment files. It is allowed to specify more than one object, for example, -scolc. If 'objects' parameter is missing, 'charset' is applied to all objects. This switch allows to specify the character set for files in -z[file] switch, list files and comment files written by "cw" command. Examples: 1) rar a -scol data @list Read names contained in 'list' using OEM encoding. 2) rar c -scuc -zcomment.txt data Read comment.txt as Unicode file. 3) rar cw -scuc data comment.txt Write comment.txt as Unicode file. -se Create solid groups using extension Similar to -s, but resets solid statistics if file extension is changed. Usually decreases compression, but also decreases losses from solid archive damages. -sfx[name] Create SFX archives. If this switch is used when creating a new archive, a Self-Extracting archive (using a module in file default.sfx or specified in the switch) would be created. In the Windows version default.sfx should be placed in the same directory as the rar.exe, in Unix - in the user's home directory, in /usr/lib or /usr/local/lib. Example: rar a -sfxwincon.sfx myinst create SelF-eXtracting (SFX) archive using wincon.sfx SFX-module. -si[name] Read data from stdin (standard input), when creating an archive. Optional 'name' parameter allows to specify a file name of compressed stdin data in the created archive. If this parameter is missing, the name will be set to 'stdin'. This switch cannot be used with -v. Example: type Tree.Far | rar a -siTree.Far tree.rar will compress 'type Tree.Far' output as 'Tree.Far' file. -sl Process only those files, which size is less than specified in parameter of this switch. Parameter must be specified in bytes. -sm Process only those files, which size is more than specified in parameter of this switch. Parameter must be specified in bytes. -sv Create independent solid volumes By default RAR tries to reset solid statistics as soon as possible when starting a new volume, but only if enough data was packed after a previous reset (at least a few megabytes). This switch forces RAR to ignore packed data size and attempt to reset statistics for volumes of any size. It decreases compression, but increases chances to extract a part of data if one of several solid volumes in a volume set was lost or damaged. Note that sometimes RAR cannot reset statistics even using this switch. For example, it cannot be done when compressing one large file split between several volumes. RAR is able to reset solid statistics only between separate files, but not inside of single file. Ignored if used when creating a non-volume archive. -sv- Create dependent solid volumes Disables to reset solid statistics between volumes. It slightly increases compression, but significantly reduces chances to extract a part of data if one of several solid volumes in a volume set was lost or damaged. Ignored if used when creating a non-volume archive. -s- Disable solid archiving -t Test files after archiving. This switch is especially useful in combination with the move command, so files will be deleted only if the archive had been successfully tested. -ta Process only files modified after the specified date. Format of the date string is YYYYMMDDHHMMSS. It is allowed to insert separators like '-' or ':' to the date string and omit trailing fields. For example, the following switch is correct: -ta2001-11-20 Internally it will be expanded to -ta20011120000000 and treated as "files modified after 0 hour 0 minutes 0 seconds of 20 November 2001". -tb Process only files modified before the specified date. Format of the switch is the same as -ta. -tk Keep original archive date. Prevents RAR from modifying the archive date when changing an archive. -tl Set archive time to newest file. Forces RAR to set the date of a changed archive to the date of the newest file in the archive. -tn

Assign work directory as

. This switch may be used to assign the directory for temporary files. -x Exclude the specified file or directory. Wildcards can be used in both the name and path parts of file mask. You can specify the switch '-x' several times to define several exclusion masks in the same command line. If mask contains wildcards, it applies to files in current directory and its subdirectories. It is not recursive without wildcards, so "filename" mask will exclude 'filename' file only in current directory when archiving or in root archive directory when extracting. Use "*\filename" syntax to exclude "filename" recursively in all directories. If you know the exact path to file, you can use "path\filename" syntax to exclude only this copy of "filename". If you use -xpath\filename syntax when unpacking an archive, "path" must be the path inside of archive, not the file path on the disk after unpacking. By default, masks containing wildcards are applied only to files. If you need a mask with wildcards to exclude several directories, use the special syntax for directory exclusion masks. Such masks must have the trailing path separator character ('\' for Windows and '/' for Unix). For example, "*tmp*\" mask will exclude all directories matching "*tmp*" and "*\tmp\" will exclude all 'tmp' directories. Since wildcards are present, both masks will be applied to contents of current directory and all its subdirectories. If you wish to exclude only one directory, specify the exact name of directory including the absolute or relative path without any wildcards. In this case you do not need to append the path separator to mask, which is required only for directory exclusion masks containing wildcards to distinguish them from file exclusion masks. Examples: 1) rar a -r -x*.jpg -x*.avi rawfiles compress all files except *.jpg and *.avi in current directory and its subdirectories; 2) rar a -r -x*\temp\ savec c:\* compress all files on the disk c: except 'temp' directories and files inside of 'temp' directories; 3) rar x -x*.txt docs extract all files except *.txt from docs.rar. -x@ Exclude files listed in the specified list file. If you use -x@ without the list file name parameter, it will read file names from stdin. Example: rar a -x@exlist.txt arch *.exe -y Assume Yes on all queries. -z[f] Read archive comment from file . Use with -sc switch if you need to specify the character set for comment text file. If is not specified, comment is read from stdin. Limitations ~~~~~~~~~~~ Pathname is limited to 259 symbols. Maximum archive comment length is 62000 bytes. Command limitations: The commands 'd','u','f','c','cf' will not operate with archive volumes. The command 'a' cannot be used to update an archive volume, only to create a new one. Exit values ~~~~~~~~~~~ RAR exits with a zero code (0) in case of successful operation. Non-zero exit code indicates some kind of error: 0 SUCCESS Successful operation. 1 WARNING Non fatal error(s) occurred. 2 FATAL ERROR A fatal error occurred. 3 CRC ERROR Invalid CRC32 control sum. Data is damaged. 4 LOCKED ARCHIVE Attempt to modify an archive previously locked by the 'k' command. 5 WRITE ERROR Write to disk error. 6 OPEN ERROR Open file error. 7 USER ERROR Command line option error. 8 MEMORY ERROR Not enough memory for operation. 9 CREATE ERROR Create file error 10 NO FILES ERROR No files matching the specified mask and options were found. 255 USER BREAK User stopped the process Glossary ~~~~~~~~ Archive Special file containing one or more files optionally compressed and/or encrypted. Compression A method of encoding data to reduce it's size. CRC Cyclic Redundancy Check. Mathematical method calculating special checking information for data validity. SFX Archive module used to extract files from when executed. (SelF-eXtracting module), usually in the form of a .EXE file. Solid An archive packed using a special compression method which sees all files as one continuous data stream. Particularly advantageous when packing a large number of small files. Volume Part of a split archive. Splitting an archive to volumes allows storing them on several removable disks. Solid volumes must be extracted starting from first volume in sequence. Copyrights (c) 1993-2012 Alexander Roshal rar/license.txt0000644000175000017500000001363511764647300011351 0ustar zz END USER LICENSE AGREEMENT The following agreement regarding RAR (and its Windows version - WinRAR) archiver - referred to as "software" - is made between win.rar GmbH - referred to as "licensor" - and anyone who is installing, accessing or in any other way using the software - referred to as "user". 1. The author and holder of the copyright of the software is Alexander L. Roshal. The licensor and as such issuer of the license and bearer of the worldwide exclusive usage rights including the rights to reproduce, distribute and make the software available to the public in any form is win.rar GmbH, Schumannstr. 17, 10117 Berlin, Germany. 2. The software is distributed as try before you buy. This means that anyone may use the software during a test period of a maximum of 40 days at no charge. Following this test period, the user must purchase a license to continue using the software. 3. The software's trial version may be freely distributed, with exceptions noted below, provided the distribution package is not modified in any way. a. Nobody may distribute separate parts of the package, with the exception of the UnRAR components, without written permission. b. The software's unlicensed trial version may not be distributed inside of any other software package without written permission. c. Hacks/cracks, keys or key generators may not be included, pointed to or referred to by the distributor of the trial version. 4. The trial version of the software can display a registration reminder dialog. Depending on the software version and configuration such dialog can contain either a predefined text and links loaded locally or a web page loaded from the internet. Such web page can contain licensing instructions or other materials according to the licensor's choice, including advertisement. When opening a web page, the software transfers only those parameters which are technically required by HTTP protocol to successfully open a web page in a browser. 5. The software is distributed "as is". No warranty of any kind is expressed or implied. You use at your own risk. Neither the author, the licensor nor the agents of the licensor will be liable for data loss, damages, loss of profits or any other kind of loss while using or misusing this software. 6. There are 2 basic types of licenses issued for the software. These are: a. A single computer usage license. The user purchases one license to use the software on one computer. Home users may use their single computer usage license on all computers and mobile devices (USB drive, external hard drive, etc.) which are property of the license owner. Business users require one license per computer or mobile device on which the software is installed. b. A multiple usage license. The user purchases a number of usage licenses for use, by the purchaser or the purchaser's employees on the same number of computers. In a network (server/client) environment the user must purchase a license copy for each separate client (workstation) on which the software is installed, used or accessed. A separate license copy for each client (workstation) is needed regardless of whether the clients (workstations) will use the software simultaneously or at different times. If for example you wish to have 9 different clients (workstations) in your network with access to RAR, you must purchase 9 license copies. A user who purchased a license, is granted a non-exclusive right to use the software on as many computers as defined by the licensing terms above according to the number of licenses purchased, for any legal purpose. 7. There are no additional license fees, apart from the cost of the license, associated with the creation and distribution of RAR archives, volumes, self-extracting archives or self-extracting volumes. Owners of a license may use their copies of the software to produce archives and self-extracting archives and to distribute those archives free of any additional royalties. 8. The licensed software may not be rented or leased but may be permanently transferred, in its entirety, if the recipient agrees to the terms of this license. 9. To buy a license, please read the file order.htm provided with the software for details. 10. You may not use, copy, emulate, clone, rent, lease, sell, modify, decompile, disassemble, otherwise reverse engineer, or transfer the licensed software, or any subset of the licensed software, except as provided for in this agreement. Any such unauthorized use shall result in immediate and automatic termination of this license and may result in criminal and/or civil prosecution. Neither RAR binary code, WinRAR binary code, UnRAR source or UnRAR binary code may be used or reverse engineered to re-create the RAR compression algorithm, which is proprietary, without written permission. The software may be using components developed and/or copyrighted by third parties. Please read "Acknowledgments" help file topic for WinRAR or acknow.txt text file for other RAR versions for details. 11. This License Agreement is construed solely and exclusively under German law. If you are a merchant, the courts at the registered office of win.rar GmbH in Berlin/Germany shall have exclusive jurisdiction for any and all disputes arising in connection with this License Agreement or its validity. 12. Installing and using the software signifies acceptance of these terms and conditions of the license. If you do not agree with the terms of this license, you must remove all software files from your storage devices and cease to use the software. rar/readme.txt0000644000175000017500000000141611764647300011156 0ustar zz RAR archiver: * RAR introduces an original compression algorithm. It provides high compression ratios on executable files, object libraries, large text files, etc. * RAR offers an optional compression algorithm highly optimized for multimedia data. * RAR provides functionality for creating a 'solid' archive, which can raise the compression ratio by 10% - 50% over more common methods, particularly when packing large numbers of small files. * RAR offers the ability to create and change SFX archives using default and external SFX modules. * RAR offers the ability to create a multi-volume archive as SFX. * RAR offers a number of service functions, such as encrypting files, adding archive comments and repairing physically damaged archives. rar/technote.txt0000644000175000017500000002137711764647300011542 0ustar zz RAR version 4.20 - Technical information ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ THE ARCHIVE FORMAT DESCRIBED BELOW IS ONLY VALID FOR VERSIONS SINCE 1.50 ========================================================================== RAR archive file format ========================================================================== Archive file consists of variable length blocks. The order of these blocks may vary, but the first block must be a marker block followed by an archive header block. Each block begins with the following fields: HEAD_CRC 2 bytes CRC of total block or block part HEAD_TYPE 1 byte Block type HEAD_FLAGS 2 bytes Block flags HEAD_SIZE 2 bytes Block size ADD_SIZE 4 bytes Optional field - added block size Field ADD_SIZE present only if (HEAD_FLAGS & 0x8000) != 0 Total block size is HEAD_SIZE if (HEAD_FLAGS & 0x8000) == 0 and HEAD_SIZE+ADD_SIZE if the field ADD_SIZE is present - when (HEAD_FLAGS & 0x8000) != 0. In each block the followings bits in HEAD_FLAGS have the same meaning: 0x4000 - if set, older RAR versions will ignore the block and remove it when the archive is updated. if clear, the block is copied to the new archive file when the archive is updated; 0x8000 - if set, ADD_SIZE field is present and the full block size is HEAD_SIZE+ADD_SIZE. Declared block types: HEAD_TYPE=0x72 marker block HEAD_TYPE=0x73 archive header HEAD_TYPE=0x74 file header HEAD_TYPE=0x75 old style comment header HEAD_TYPE=0x76 old style authenticity information HEAD_TYPE=0x77 old style subblock HEAD_TYPE=0x78 old style recovery record HEAD_TYPE=0x79 old style authenticity information HEAD_TYPE=0x7a subblock Comment block is actually used only within other blocks and doesn't exist separately. Archive processing is made in the following manner: 1. Read and check marker block 2. Read archive header 3. Read or skip HEAD_SIZE-sizeof(MAIN_HEAD) bytes 4. If end of archive encountered then terminate archive processing, else read 7 bytes into fields HEAD_CRC, HEAD_TYPE, HEAD_FLAGS, HEAD_SIZE. 5. Check HEAD_TYPE. if HEAD_TYPE==0x74 read file header ( first 7 bytes already read ) read or skip HEAD_SIZE-sizeof(FILE_HEAD) bytes if (HEAD_FLAGS & 0x100) read or skip HIGH_PACK_SIZE*0x100000000+PACK_SIZE bytes else read or skip PACK_SIZE bytes else read corresponding HEAD_TYPE block: read HEAD_SIZE-7 bytes if (HEAD_FLAGS & 0x8000) read ADD_SIZE bytes 6. go to 4. ========================================================================== Block Formats ========================================================================== Marker block ( MARK_HEAD ) HEAD_CRC Always 0x6152 2 bytes HEAD_TYPE Header type: 0x72 1 byte HEAD_FLAGS Always 0x1a21 2 bytes HEAD_SIZE Block size = 0x0007 2 bytes The marker block is actually considered as a fixed byte sequence: 0x52 0x61 0x72 0x21 0x1a 0x07 0x00 Archive header ( MAIN_HEAD ) HEAD_CRC CRC of fields HEAD_TYPE to RESERVED2 2 bytes HEAD_TYPE Header type: 0x73 1 byte HEAD_FLAGS Bit flags: 2 bytes 0x0001 - Volume attribute (archive volume) 0x0002 - Archive comment present RAR 3.x uses the separate comment block and does not set this flag. 0x0004 - Archive lock attribute 0x0008 - Solid attribute (solid archive) 0x0010 - New volume naming scheme ('volname.partN.rar') 0x0020 - Authenticity information present RAR 3.x does not set this flag. 0x0040 - Recovery record present 0x0080 - Block headers are encrypted 0x0100 - First volume (set only by RAR 3.0 and later) other bits in HEAD_FLAGS are reserved for internal use HEAD_SIZE Archive header total size including archive comments 2 bytes RESERVED1 Reserved 2 bytes RESERVED2 Reserved 4 bytes File header (File in archive) HEAD_CRC CRC of fields from HEAD_TYPE to FILEATTR 2 bytes and file name HEAD_TYPE Header type: 0x74 1 byte HEAD_FLAGS Bit flags: 2 bytes 0x01 - file continued from previous volume 0x02 - file continued in next volume 0x04 - file encrypted with password 0x08 - file comment present RAR 3.x uses the separate comment block and does not set this flag. 0x10 - information from previous files is used (solid flag) (for RAR 2.0 and later) bits 7 6 5 (for RAR 2.0 and later) 0 0 0 - dictionary size 64 KB 0 0 1 - dictionary size 128 KB 0 1 0 - dictionary size 256 KB 0 1 1 - dictionary size 512 KB 1 0 0 - dictionary size 1024 KB 1 0 1 - dictionary size 2048 KB 1 1 0 - dictionary size 4096 KB 1 1 1 - file is directory 0x100 - HIGH_PACK_SIZE and HIGH_UNP_SIZE fields are present. These fields are used to archive only very large files (larger than 2Gb), for smaller files these fields are absent. 0x200 - FILE_NAME contains both usual and encoded Unicode name separated by zero. In this case NAME_SIZE field is equal to the length of usual name plus encoded Unicode name plus 1. If this flag is present, but FILE_NAME does not contain zero bytes, it means that file name is encoded using UTF-8. 0x400 - the header contains additional 8 bytes after the file name, which are required to increase encryption security (so called 'salt'). 0x800 - Version flag. It is an old file version, a version number is appended to file name as ';n'. 0x1000 - Extended time field present. 0x8000 - this bit always is set, so the complete block size is HEAD_SIZE + PACK_SIZE (and plus HIGH_PACK_SIZE, if bit 0x100 is set) HEAD_SIZE File header full size including file name and comments 2 bytes PACK_SIZE Compressed file size 4 bytes UNP_SIZE Uncompressed file size 4 bytes HOST_OS Operating system used for archiving 1 byte 0 - MS DOS 1 - OS/2 2 - Windows 3 - Unix 4 - Mac OS 5 - BeOS FILE_CRC File CRC 4 bytes FTIME Date and time in standard MS DOS format 4 bytes UNP_VER RAR version needed to extract file 1 byte Version number is encoded as 10 * Major version + minor version. METHOD Packing method 1 byte 0x30 - storing 0x31 - fastest compression 0x32 - fast compression 0x33 - normal compression 0x34 - good compression 0x35 - best compression NAME_SIZE File name size 2 bytes ATTR File attributes 4 bytes HIGH_PACK_SIZE High 4 bytes of 64 bit value of compressed file size. 4 bytes Optional value, presents only if bit 0x100 in HEAD_FLAGS is set. HIGH_UNP_SIZE High 4 bytes of 64 bit value of uncompressed file size. 4 bytes Optional value, presents only if bit 0x100 in HEAD_FLAGS is set. FILE_NAME File name - string of NAME_SIZE bytes size SALT present if (HEAD_FLAGS & 0x400) != 0 8 bytes EXT_TIME present if (HEAD_FLAGS & 0x1000) != 0 variable size other new fields may appear here. ========================================================================== Application notes ========================================================================== 1. To process an SFX archive you need to skip the SFX module searching for the marker block in the archive. There is no marker block sequence (0x52 0x61 0x72 0x21 0x1a 0x07 0x00) in the SFX module itself. 2. The CRC is calculated using the standard polynomial 0xEDB88320. In case the size of the CRC is less than 4 bytes, only the low order bytes are used. rar/order.htm0000644000175000017500000000615211764647300011007 0ustar zz How to buy WinRAR and RAR license

How to buy WinRAR and RAR license.

If you wish to use WinRAR and RAR after the evaluation period of 40 days, you need to purchase its license from one of the regional dealers listed here. You can also check the latest price list and buy on-line at www.rarlab.com.

Upon receipt of your registration fee you will receive an email containing a registration key file corresponding to the user name string which you have chosen. Please specify a valid email address when buying the licence, as it will be used to send you the key file.

The registration email will also contain all necessary instructions, so please just follow them. Below, we provide a brief explanation of the typical registration procedure, but instructions in the email are more up to date than this file and should thus have a higher precedence.

If you use WinRAR, you will need to copy the registration key file (rarreg.key) to a WinRAR folder or to %APPDATA%\WinRAR folder. By default WinRAR folder is "C:\Program Files\WinRAR", but it can be changed by a user when installing WinRAR.

If the key is archived in a .rar or .zip file, please extract rarreg.key from the archive before copying it.

If you use RAR/Unix and RAR for OS X, you should copy rarreg.key to your home directory or to one of the following directories: /etc, /usr/lib, /usr/local/lib, /usr/local/etc. You may rename it to .rarreg.key or .rarregkey, if you wish, but rarreg.key is also valid.

If you use RAR/DOS, you will need to copy rarreg.key to folder containing RAR executable (rar32.exe).

WinRAR, RAR for Unix and OS X now use the same registration key format, so you can use the same key with current WinRAR and RAR versions for all mentioned platforms. It is not guaranteed for WinRAR and RAR versions that are not equal to version included to this distributive. For example, versions prior to 2.60 used different keys.

Please send your further questions about sales and licensing to . English, French, German or Spanish please. rar/whatsnew.txt0000644000175000017500000001477211764647300011572 0ustar zz RAR - What's new in the latest version Version 4.20 1. Changes in RAR compression: a) Multithreaded RAR compression is enabled by default. You can disable it with -mt1 switch. Comparing to RAR 4.11, some speed gain is possible in single processor mode as well. Speed gain depends on data type and average file size. Several cores are utilized more efficiently when compressing large files. b) we had to increase memory requirements to achieve higher compression speed. General RAR compression algorithm allocates about 120 MB comparing to 40 MB in RAR 4.11; c) RAR text compression algorithm cannot utilize several CPU cores efficiently, so its performance in multiprocessor environment is much lower than for general algorithm. Also its decompression speed is much lower than in general algorithm regardless of CPU number. So we decided to disable the text algorithm by default. If you need maximum possible compression ratio for plain text data regardless of speed, you can enable the text compression with -mct switch. 2. RAR general decompression algorithm speed is slightly improved, though not to same extent as RAR compression. RAR decompression is not able to use several processor cores, so its performance does not depend on a number of cores. Version 4.11 1. Bugs fixed: a) if -x*\somedir\* exclusion mask was specified when archiving and if name of current directory contained 'somedir', RAR could exclude all files and stop creating an archive. Version 4.10 1. Modifications of switch -ag behavior: a) -ag can be used with all RAR commands, not just with archiving only; b) 'N' format character behavior differs in archiving and non-archiving operations. When archiving, it is incremented until the first unused name is found. In non-archiving operations like extracting it selects the existing archive preceding the first unused name; c) 'I' format character allows to specify minutes regardless of presence and position of 'H' (hours) in format string. It can be used instead of 'M' (minutes), when you wish to place minutes before hours or do not need hours at all. 2. New -log[fmt][=name] switch allows to write archive and file names to log file in archiving, extracting, deleting and listing commands. This switch is especially useful, when you need to further process an archive created with -ag or -v switches, because -log provides the archive name generated by RAR. 3. New -@[+] switch allows to process all parameters starting from '@' character either as file names (-@) or as file lists (-@+). 4. Volume size in -v switch can be specified as a decimal fraction. Dot (.) is used as the decimal mark. For example, -v1.5g means 1.5 gigabytes. Version 4.01 1. Bugs fixed: a) "Repair" command failed to properly reconstruct structure of RAR archives, which contained at least one file with packed size exceeding 4 GB. This bug did not affect the recovery record based repair. It happened only if recovery record was not found and RAR performed reconstruction of archive structure; b) RAR could crash when creating a new archive with -agNNNN switch if archive number in generated name was very large, like a thousand or more. Version 4.00 1. RAR decompression speed is improved. Depending on data type, decompression can be up to 30% faster than in previous versions. Both the general RAR algorithm and most of special RAR multimedia methods benefit from this improvement. The only module of RAR algorithm, which is not affected, is "Text compression" method. 2. Changes in -x switch syntax. Now you can specify a wildcard exclusion mask for folders. Such mask must have the trailing '\' character, like -x*tmp*\ or -x*\temp\ 3. Recovery volume processing involves less disk seek operations resulting in higher performance. 4. New error code 10 ("no files") is added to list of error codes. This new code can be returned by archive, extract, delete and repair commands. It means that RAR did not find any files matched the specified file or archive mask. Version 3.93 1. Bugs fixed: a) in RAR 3.92 -xd:\path\dir switch could also exclude directories, which path does not match the path specified in the switch and only the directory name is the same as specified; b) switches -y -or did not work correctly together. Switch -or was ignored in presence of -y. Version 3.92 1. In RAR 3.91 -x switch could also exclude directories from archiving even if mask contained wilcard characters and did not contain a path. For example, -x*. excluded all those directories, which do not have the extension in the name. Now -x switch uses RAR 3.80 approach for masks without path, excluding directories only if mask does not contain wildcards and matches the directory name exactly 2. If file matched two different masks in RarFiles.lst, RAR could select the last match. Normally, if neither of masks is a subset of another, the first match must be chosen. Version 3.91 1. Bugs fixed: a) hexadecimal search in "ih" command failed to find matches if first byte in search string was greater than 127. Version 3.90 1. New command line switch -r- disables recursion completely. So 'rar a -r- arc dirname' command will add only the empty dirname folder and ignore its contents. By default, if dirname does not include wildcards, RAR adds its contents even if -r switch is not specified. 2. If used when extracting, the new command line switch -ai forces RAR to ignore file attributes. When using this switch, extracted files will always have attributes assigned by operating system to a newly created file by default. 3. If output file name is not specified in "cw" command, RAR will send comment data to stdout. 4. When compressing stdin data with -si[name] switch, RAR sets modification time of archived entry to current system time. Previous RAR versions did not fill this field, resulting in meaningless modification time for stdin. rar/acknow.txt0000644000175000017500000000713711764647300011211 0ustar zz ACKNOWLEDGMENTS * RAR text compression algorithm is based on Dmitry Shkarin PPMII and Dmitry Subbotin carryless rangecoder public domain source code. You may find it in ftp.elf.stuba.sk/pub/pc/pack. * RAR encryption includes parts of code from Szymon Stefanek and Brian Gladman AES implementations also as Steve Reid SHA-1 source. --------------------------------------------------------------------------- Copyright (c) 2002, Dr Brian Gladman < >, Worcester, UK. All rights reserved. LICENSE TERMS The free distribution and use of this software in both source and binary form is allowed (with or without changes) provided that: 1. distributions of this source code include the above copyright notice, this list of conditions and the following disclaimer; 2. distributions in binary form include the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other associated materials; 3. the copyright holder's name is not used to endorse products built using this software without specific written permission. ALTERNATIVELY, provided that this notice is retained in full, this product may be distributed under the terms of the GNU General Public License (GPL), in which case the provisions of the GPL apply INSTEAD OF those given above. DISCLAIMER This software is provided 'as is' with no explicit or implied warranties in respect of its properties, including, but not limited to, correctness and/or fitness for purpose. --------------------------------------------------------------------------- Source code of this package also as other cryptographic technology and computing project related links are available on Brian Gladman's web site: http://www.gladman.me.uk * RAR uses CRC32 function based on Intel Slicing-by-8 algorithm. Original Intel Slicing-by-8 code is available here: http://sourceforge.net/projects/slicing-by-8/ Original Intel Slicing-by-8 code is licensed under BSD License available at http://www.opensource.org/licenses/bsd-license.html Copyright (c) 2004-2006 Intel Corporation. All Rights Reserved Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * Useful hints provided by Alexander Khoroshev and Bulat Ziganshin allowed to significantly improve RAR compression and speed. rar/rar0000755000175000017500000141404411764647300007700 0ustar zzELF44 (444  TTT~ ~ \x  hhhDDPtd`-` `   QtdRtd~ ~ /lib/ld-linux.so.2GNUGNU\2sVϨ'8,߀A q2ȁ Ҝc)K8&x gUaxIkXE3 BN5h,  X%P?<s !&zhqVp3 VXg~5DO>f(*P~:/[3GG_hMm8"FB` ,!f ,!a Dh ,   !U ! -Ԡ$  !libstdc++.so.6__gmon_start___Jv_RegisterClassespthread_createpthread_join_Znwj_ZTVSt9bad_alloc_ZTVN10__cxxabiv120__si_class_type_infoE__cxa_allocate_exception_Znaj_ZNSt9bad_allocD1Ev__cxa_begin_catch_ZTVN10__cxxabiv116__enum_type_infoE__cxa_throw_ZTISt9bad_alloc_ZdlPv__cxa_end_catch__gxx_personality_v0_ZTVN10__cxxabiv117__class_type_infoE__cxa_get_exception_ptr_ZdaPvlibm.so.6libgcc_s.so.1__moddi3_Unwind_Resume__divdi3libpthread.so.0pthread_cond_destroypthread_mutex_initpthread_cond_waitpthread_mutex_unlockpthread_cond_signalpthread_cond_init__errno_locationpthread_attr_initpthread_attr_setdetachstatepthread_mutex_lockpthread_mutex_destroypthread_exitlibc.so.6_IO_stdin_usedfflushstrcpy_IO_putcsetlocalewcsncpystrncmpstrrchr__swprintf_chkwcscatwcspbrk__open64_2getpwuidclosedirgetgrgidstrncpy__vsprintf_chkmbstowcs__wcsncpy_chk__stack_chk_failmkdirreallocclockstdinmemchrstrpbrktolowergetpidstrdupchmodflockstrtolisattylchownsymlinkfgetsgetpwnamstrlenwcschr__cxa_atexitmemsetstrstrrmdirmemcmptoupperclearerr__fxstat64getgrnamstdoutfseeko64__wcscpy_chkmemcpyfclosewcscmp__memmove_chk__vsnprintf_chkstrtoulmallocgetpassstrcatumaskftello64remove__strncpy_chk__lxstat64opendirwcsncat__wcscat_chk__xstat64getenvstderrwcscpy__memset_chkreadlinkstrncatfilenogetcwdfwritefreadrename__memcpy_chklocaltimestrchrutimemktimefdopenreaddir64wcstombsstatfs64__strcpy_chkbsearch__sprintf_chkmemmovefopen64access__strcat_chksetbufstrcmpstrerror__libc_start_mainferrorwcslenwcsncmpsysconffreewcsrchrCXXABI_1.3.1CXXABI_1.3GLIBCXX_3.4GCC_3.0GLIBC_2.0GLIBC_2.1GLIBC_2.3.2GLIBC_2.7GLIBC_2.2GLIBC_2.3.4GLIBC_2.1.3GLIBC_2.4                 @qѯ cӯk pt) {0P&y ii @ii ri ii ii ii ti si ii ii ii  `       $           $  (  ,  0  4 8 < @ D H L P T X \ ` d h l p t x  | ! " # $ % & ' ( ) * + , - . / 0 1 2Ā 3Ȁ 4̀ 5Ѐ 6Ԁ 7؀ 8܀ 9 : ; < = > ? @ A B C D E F G H I J$ K( L, M0 N4 O8 P< Q@ RD SH TL UP VT WX X\ Y` Zd [h \l ]p ^t _x `| 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 { | }  ~         US[tn% X[5 % % h% h% h% h% h % h(% h0% h8p% h@`%$ hHP%( hP@%, hX0%0 h` %4 hh%8 hp%< hx%@ h%D h%H h%L h%P h%T h%X h%\ hp%` h`%d hP%h h@%l h0%p h %t h%x h%| h% h% h% h% h% h % h(% h0% h8p% h@`% hHP% hP@% hX0% h` % hh% hp% hx% h%Ā h%Ȁ h%̀ h%Ѐ h%Ԁ h%؀ h%܀ hp% h`% hP% h@% h0% h % h% h% h% h% h% h% h% h % h(% h0% h8p% h@`%$ hHP%( hP@%, hX0%0 h` %4 hh%8 hp%< hx%@ h%D h%H h%L h%P h%T h%X h%\ hp%` h`%d hP%h h@%l h0%p h %t h%x h%| h% h% h% h% h% h % h(% h0% h8p% h@`% hHP% hP@% hX0% h` % hh% hp% hx% h%ā h%ȁ h%́ h%Ё h%ԁ h%؁ h%܁ hp% h`% hP% h@% h0% h % h% h% h% h% h% h% h% h % h(% h01^PTRhg hpg QVhPUS=0 u?4  ~ 9s4 ~ 4 9r0 []Ít&'U tt $ ÐUWVS}u e$܌1D$& $l D$$D$$` +>$>0\$ $蝖t$|$$$0u$蛱$裲t$|$$s$HZD$$DZ$$AV$Y$Zu $DZi $V`$j 赀$͌$e$ tN` $܌e3u [^_]qƉ׉$t<$D$$` #*B뇉ˉÍ/$$D$Ȓ $$` )D$$` )D$$ $fO$` D$)؉ÍD$$]$p$aU8]]uM }u{ ;{r(t1t]u}]Ðt&S;SsЋUM$EM܋UɍDC tE<{U<$UDCt>]u}]Í&'U(ED$ED$$ EÐv'U(ED$ED$$EÐv'U8ED$ED$E]1ۉuu}} $t9tE<$D$ED$tE4$D$ED$؋u]}]Ít&UWVSu}wV T$VTdF ]F%t&E|$4$D$ E D$t7y۸tJL T`N V[^_]Ðt&1΍UED$D$ E D$E$ÐUED$D$ E D$E$yÐUE@ @]Ív'UU]BBfUWVS,]u }wS T$STdC CEUD$T$$tWt"EttrD$4$:uEt%EttaD$E$utJL T`K S,[^_]ÍvD$4$D 댐t&UD$$YfUEwH L$HLd]ÍUEtJL T`H P]ÐUS]C C$ C$UC ǃ[]Í&'UE@@@@@x&U8}} ]]uut|<$P DCT$$E=E|$$0{4$%D$C$ot$S<<$!C ]u}]Ít&& 냍U8uu ]}4$<ÍGD$E܉$OE܉|$4$D$EXE܉t$D$E$E܅t$]u}]ËU܉Åt$v$.v'UE D$D$E$Í&'UE D$D$E$`ÐUS]t$CC[]ÐUS]t$CC[]ÐU]] uu$t^^]u]Åt$` `#^^]u]U]]uE SC9ЉCv%t 9Ct$$9ts]u]f$` "㐐U]]uE SC9ЉCv,t 9CD$$ts]u]Ív$` "␐U& E]DÍ&'U E]DÍ&'UUE 9tU Et&Í&'UUE 9tU Et&Í&'UED$` $` UVSutt&$qu[^]Ð&UVSutt&$!u[^]Ð&US]$x uy؃[]Í& t tހ tى؃[]ÐUS]$Bƒx$D< ux < t< t؃[]Ít&'US]$Bx t u y؃[]Í&UE$"ÍUE$ÍUIUit ҉$ UEit t&IÐUE]0  UU]   Ív'UU]BA Ít&U1WVSU}  ur tt]ɍqЃ v^Yv^Y1w7JYЃ vYvHY7]1ۃ}F u[^_]Ít&뷍vW몍Yōt&'UWVS,}]u ~6f4$D$ Zh D$D$D$\̃,[^_]ÍUUS vfЃ w[]Ít&UMt#1~ v~Pu]Ð1]Ít&UMt& 1_w _wPu]Í&1]ÍUht&Ut&Uuu]]tFD$E $D$D3؋u]]ÍvUVS u eE1ED$$D$t$4$D$p4$X$NUt$T$$Ue3u [^]dUVS u eE1ED$$D$t$4$D$4$$t$$Ue3u [^]&Uuu]]tE t$$D$؋u]]ÐU]]uu$P9s)ƋE t$$D$ ؋u]]Ít&'U]]uu$P9s)ƋE t$$D$؋u]]Ít&'UW1VSlEu] EeE1t&ω4$\$D$ D$ nO4$\$D$ D$ 0D=MMƉ ut]1<;]9uE]e3ul[^_]9t&UWVSEEEqЉ wP t&Eku EU‰EEUUEUEЃUEU qЉ vEU[^_]Ít&'UW1VSu] fω4$\$D$ D$ .O4$\$D$ D$ 0 _Ɖ ut! 1u9uE[^_]ÐUWVS] EEqЃ wI &Eku MUEEUUEUEЃU qЃ vËEU[^_]Ðt&US@ @ v @ 1ۋE ` \$D$$蹼ǃ[]Í&UE Utu UÐUS] ؄tS1v/ DƒuD[]US]$ t&$Mx@u$U9rD$ i <$wOD$h <$}uq$Ƌ:u5~90v6$R9t&P9u1,[^_]ÍF$t랐t&F~$z}E i ,[^_]t&4$`'@E܀4$bU9Erar}%4$<:W904$UU9tF9u1TvF ^ $0F :F ~.ut&0:.GuAfED$h $mED$ $Rt&GU؉$U؄&GEG$uZEf00@ZD$h <$vED$h $D$${fGw$itG<:G.EuVƉ0:x.PuAED$qh 4$D$4$Ǎ&'U1U:tD$h $É'U1U tD$(i $cÐ&UWVS]} 3uUt&_3tAѸh h DT$$uˉtȉv3uf[^_]Ð&UWVS]} 3uH_3t9Di (i D‰t$$uЉtЃvŃ3uˍt&[^_]Ð&UVSu] 9tuJt0t/utEƒ)\uDރ[^]Ðt&4$\;Er؃[^]Í&\룍vt$$뀍v'UVSu] 9tuJt0t\utEƒ)/uDރ[^]Ðt&4$;Er؃[^]Í&/룍vt$$뀍v'UVSu] 9tuJt5ft /utFƒ)\uDރ[^]Ð4$l;Est$${뛐t&\؃[^]É'UVSu] 9tuJt5ft \utFƒ)/uDރ[^]Ð4$;Est$$뛐t&/؃[^]É'U8uueE1}} ]]u}]Í$D͍U(]]uu }$;\t]u}]Ð{\uCD$\$stՃD$\$\t4)|$\$4$]u}]Í$ʍt&U8ED$;]1ۉuEE}} $Ft#@D$ D$$}u9t&D$;<$tt#}t؋u]}]v@$蝠Ή'UWVS\E} eU1]9t D$<$<$N9ljsF1v09s&$-u019rډD$<$tHUe3h\[^_]Í&D$rh <$ <$뤍D$|$$JD$ $$x\$$Ʈh$$$T$P1D$t$$覰tcD$$"6TD$ D$t$$DtD$$pNt.ut$<$+$0$t&n Í$蕭$Ɖ$0 UWVS\E} eU1]9t D$<$貽<$9ljsA1v309s#$u019r݉|$$tEUe3m\[^_]Ít&D$h <$<$`맍D$|$$¿D$ $^$ \$$ެh$$r$dT $.D$t$$NtiD$$3TD$ D$t$$tD$$Lt.uTT$<$$q.$ciÍ$5$qƉ$!. UWVSEPE EEeE1\$4$d$D$4$D$$D$$D$OD$ډƅO<$Out8t%8tE\$D$$}Ee3[^_]fuv$D$4$D$$D$$D$ OD$ډ<$%fEt$D$$o虿t&UE ]Uu]ut4t.9tt$D$$^tD؋u]]ftt$\$$輓fUuu]] u؋u]]ÍvEt$\$$D3]u]ÐU]]uu 34$ CSC ]u]Ðv'USE9H t []ÍvD$ XH$\$L$ []ÐU(uMu ]U}]9}d]u}]Í&~61 tdkd\$L$ $T$]u}]Ív9r1 tfU1(M]]}Uuu tdkd\$L$ $T$裸]u}]fU蕫$` YÐU$` D$$ D$ $    訷ÐUEt E ÐUExi @@ǀ@@@ @@ǀ@@ǀ@]ÍU]] uuCFCD$FD$$rCCFCFC F ]u]ÍUWVS,]E{ǃu‰׉¹u1ɨE UL$$tUƉ/Ҹjo D$4$貸CECC CU$bD$ED$$} U $ܹD$E D$C$賻st@ = u ,[^_]ÍvD$4$̻tidi ǃ;致8tSC1C C,[^_]Ðt&놋UCD$D$$?4$膹1Xǃ19&U]Eu] uD$ $\$t$¸ut$\$$` 1]u]Ð&UED$E D$E$tÍvE E` t&Uii gi WVSu E]}D‰D$4$蕵CC CCt|D$|$$tlCD$t$$St35 t]=t u [^_]ÅǃuCD$D$<$芌1t&UE t5 t-t&=t uU ]1v'UE]] uuD$ E\$t$$¸u*D$ $` t$\$$` !1]u]Ðt&UED$ ED$E D$E$jtÍt&E E` US$]K u'St {t5C$[]ÐC $[]Í&$$ɉt|9  t9 u Cu1{tT$SET$$` E$[]Ð vC1두UE@E鿳v'U1S]S uCt$1{u[]Í$D$;[]Ðt&UEHxi t"xuxuEUt&zfÍUS]$][]U8uuE }]~D$<$萷ÍۉEu2E<$D$ E D$ED$]u؋u]}]ËuNtE <$D$D$'E$D$D$E$ձ؋u]}]fE$0tED$E$葴눍UVS]{ toC{uN$bCD$D$ ED$E $ƋC$D¸Dƃ[^]Ðt&$褱CC롍& C늍US]CtE[]f{u[]ÍD$CD$$` mC빐&U]Ðv'U1]Ð&U]Ðv'U1ɉS4E ]t1҅t„t5U$誸U҉Eu.EED$E$讱4[]Ít&t$tE$iEȍt&UEEkv'UxE@$UT$$D$詳ED$E $裷ÐU8uu]]$t$D$ D$D$4$4$J$EUEU]u]ÉƉ$4$v'U(}}]Uu] uOt@ttt?<$?1GT$ \$t$G$b]u}]Ít&<$뿍&'USE]UD$ E $T$D$Iu-{t'] EE` []&[]fUWVS<]EE{SEUEU $D$T$Gu:{ǃt*{uz{ t+S|$T$$` F<[^_]Ít&E}$` EԉD$|$ v}벍t&$PE؉UIt&E1t1t&1EUD$ D$T$$E$)=G‰D$E D$YD9}w6U(ED$EED$$|EÍUWVS T$EÉ$A1҉>u&Me3 u t[]账UED$$ɅUE$D$Ðt&U(uu }}eE1]t$<$!$蛏|$$t$$Sh$$$٪TD$D$$ߑD$aDUe3u]u}]Ðt$<$葥Ɖ$#4$_t&'UE]%=@Ít&'UE%=t=t= ]Ðt&]ÐU1]É'UE]%=Ít&'USt]ED$$\$SuE$@D$mt[]ÍvUE]%=Ít&'UEtE *Í&'UxED$E$D$ğ1DEÍt&UED$E$̠ɅÐUWVSEeU1ҍ]$E苢$|ɨ$$y$Ɖ譫 Mb111M|x}iډ)‰U<tn|$$`ED$$tRxeLED$t$D$ i D$2D$<$Q<$蹡|;E rEUe3Eu Ĝ[^_]t&UWVS,E]ĉ$躞$訧$$X$Ɖ茪 Mb111ቝi)‹U 9vtq|$$PE$t]eBD$t$D$i D$ 2D$D$2<$<$֝;E rEE,[^_]fU8]ÉuΉ}}t8uqttu(tt$$螝]u}]ÉT$<$p<$褹D$i $XD$2<$TfU $D$4$9__ra@r_tmf@pD$24$UT&'UED$E$ɅÐU1Ut $mfUED$$Ðt&U1Ut $蝠fUED$$Ðt&U(uu }}eE1]$Eu)t$<$uUe3u%]u}]Ít&\$$Fß UWVS<u] eE1$t >t h$L$>$0TfD$\$$.t2$2 ƹtʿ ƹt1 $u؋Ue3ļ<[^_]É\$TD$$β$vD$D$ $›\$$謈t$D$4$4$ռD$D$ 4$t$$Í$覇$'UWVS\UE UċUEẺ$T$ED$$U$ }Éօt $i $L$u @ED$ D$D$$EEEUĸM t}E| D$UE܉$D$EEUu }tIwE܉|$D$E$膋EUċE5 b)}URfEU\$t$ $T$7D$$i '널t&}:v-v}t)U܋]t$RỦ$\[^_]$i ͷɉÍẺ$n$ڝU܉Åt$ ڍvUWVS\)EU <$eE1D$ <$T$D$e<$D$$D$D$$y|A11fD$<$D$f9|9wD$ D$D$<$;<$#<$Kt$͗$u=D$$É<$s؋Ue3u5\)[^_]f\$$vǃ:É<$!$Åt$ڐU]] uu$誙t^^]u]Åt$` ^^]u]UWVS\ueE1} t4$1=At<$1P=(Džt >Džt ƅDž))t\$t$T$D$D$ $j D$D$$蘙w&t >ttD$<$=Ue3\[^_]Ít&\$|$D$ T$D$`j D$ D$D$$4$0h4$>Rt&<$P<$^:t&T$4$:19t&UWVSLEU u}EU,]eE1t |$4$pZtuDž$j ߐt$$裲$/j ǐ$tZ<HMD$$`  |$4$=9t&ۃ v\$ |$t$$<Ue3L[^_]Ít&|$4$Dt&$Mj ԏ$ D$$D$A$g$);D$4$ߓ#$%;D$<$ˎf1f|$4$D$|$4$\$ |$t$$|$4$D$|$4$|$4$dql4$#T$$ǀ,Zt ǀ,Z1<$T$$觍荓Ut$蒐ÍUVS]lm t4$载4$詎ЩĔ$Ql][^]ƋЩkĔ`$lG$4$蛔fUS]$>][]Ut$袏ÍUt$肏ÍUWVS<}E <$D$&t)_$Et\ރuE|$$FU1tED$4$D$t't&$tC\uE]ԉt$$I$貅Et$|$$D$ ˅<[^_]US]U hu:ltt\1jtFuAt nt3$ l  t&$j 脋$D$襰P[]Ðt&$l Q$D$u D$$` 蜿뺐t&US]xu 1(t($j D$@ $D$[]Ít&Uuu]D$^$D$E$D$D$>l $D$\$4$D$ D$]u]ÐfUS] D$ `d+hl$D$T$hl$D$ET$ D$[]ÐU]ÍU8E uu}}]xg 9߉M]!}H1% |~Ã~b]u}]9sfkD$D$ $T$趉X&|v뒍t&vxUWVS]u $i m $h$臛<$Y,$ǃĔؔǃȔǃ̔$ϒ$ $賒D$襒ǃЩǃԩǃة$y$k,$]P$ODZ|ƃhƃiC1ƃjƃkƃlƃmƃnǃtǃ,ƃoƃpƃ(ƃxǃPǃXǃ\ǃ`ǃdǃ ǃ$ǃrǃsfǃ fǃzǃ|ǃǃǃǃƃ`ƃƃǃƃyƃƃXǃhǃdǃ`ǃ\ǃl[^_]ÉƉ$4$蘍ƋЩ'Ĕ<$Գl ÉƋĔ܉؉fڍ&'U1USM t9Rt[]ÃvYEt2v=1auyru݀y!u׀yuрyuˀyvy~uȀy^u1멍t&U]] uuDD$,$vu ]u]ËC$$=u狃D,H0L4P8T<X@\D`HdL]u]ÐfUE UtS,H0H4H 8H<H@HDHH@ L]Ðǂ,]Ít&UED$ `d$T$L$ÐU8]]uU ot|t]u]Í&tu\$4$uD$ tD$$D$D$} $c[4$ErE딐t&]1u]ÉÉ4$R$辊v'U E$U t$|$pt كT1֋||,~&)|$t$|$]Í&9wǀ|ǀ$t$|$]ÐUEU \U`UdUh]Ít&UWVS|E uD$hDUЍEEU؉]ȉủEԋEE܋EEE$KUD$$CMEfEK}CM utdɸft_Et8~1)ED$E$MًE؍ f }E\ȋt̃EPU M $T$nIU MMfՈPu E $9U$I|[^_]Ít& $jD$E$[KÍM $iI$5UWVS<]eE1Ąt$ E‰D$ĀT$D$$9! t€D׍yD҃)΍V ff~ tfD$hDžDžDžD$dD$`D$ \$D$D$fEe3u?<[^_]fN(fDtfDf.ńË4$萆UWVSlueE1}4$eX\t$$=Hpt } sE r c$|m t&} t1G 04$ET$D$G0T$ D$D$hDžDžDžD$dD$`D$ \|$4$D$btfOD$|$$~IG$D$/HG$D$IG$D$HG$D$HG $D$HG!$D$HG"$D$HG$$D$GG tG($D$GG,$D$G !%tDJD+$T$T$FG t,D$$+H$D$D$F|$4$#Gt$D$D$FZf$DUe3l[^_]Ðt&} r\`` 1#D$D$ D$T$TD$$JcD$4$T$&xDD$|$$Gp @t.B$D$PFvD$$Fy|ED$t$$FF $D$EF$D$:EF hF$D$ FSvƅRDžar!fDžD$D$4$T&D$$kFvB $D$DB4D$0$D$$Dl&G0D$D$$y~DžDžDžDž<D$D$$CGz~ƋU$A4$詀UWVSl]Eu$EEEUE EV VEǃzЕED$t$$U}4$|ԩ}f•D ft;ffEܩFƃEnE$|Eu ǃEEl ƃ0$cED$$u18"ƃE\Z XZtt }"fD$D$z$Xpt ؃t1||J9vD)}|uHl[^_]ÍEEE/&}ǃ|ǃth4$Xl:}Eƃ\$4$D$膓}}ƃ3D$ D$D$l$l$&lU䉃tЉET$$D$ D$$D$D$z$D$ D$D$l[^_]fEǃ|t&E$ EƃY&9ED$ D$D$$;E&D$4$fvܩD$D$D$ D$4$TD$ f9|mE#vE4$D$E D$ڒt&$8yt$D$lj$辢l<$谨É<$Eu${&U8]]uu }4`7ǃ|{@jffǃtS$D$E܉D$ ef9t$Sl puD$E܉$苝$u ϑÉ4$pE$w썶UWVSl]E ƃpE$f UT$D$$i1tl[^_]ËMǃtD$$L$E<h}$F3$nh)?ffƒшjiklm@o€$p1tƀXntỦ$\$褵\XdƃnUċ`EMU[&TzЕl uƃkujtuƃn$,$1uUċME\UdM̉X` $!jtnCD$D$$rÔD$$smt&$pl m\$$D$l1[^_]Í&ED$$$EE$D$E܉D$U1]Љ+EHEMt&9=3:Ru)D$ET$$6t҃MEU҈ht*~&} ~U:RuzSuzFuzXu]uEtD$ t$D$$hU܋tv|f9zt0$hk \lD$C$}(}u 1+vt&D$ D$D$$;v$$k k$D$1tou'jYL?ƃn3vD$s$` $l mkt$4$D$荐$k Jk4$‰T$f(ۉ\$ L$E11fڋ]EVMD$$L$$7ËE$!rÍẺ$蠱$ r&USE]D$E $D$1u[]fD$$¸u$l IjST$$D$f$>1[]ÍUS]E $D$t []Ít&$l i\$$D$ E E` []QUSE]D$E $D$p]E []lUWVS] EeU1҅ۉuUe3UĬ[^_]$l 1i$i$u ]f@D$ t$D$D$ؼD$D$s$D$ D$D$$蔼$\$T$ D$$D$Щx$9!ǂĕfǂ$D$D$} D$ D$D$D$ D$D$$ʻ$ |T$yD$D$$]i11DžDžDžt&sGT$\$$T1 & 0 =uD$\$$[==utZtuAlu,[^_]ÍSgf$l aE,[^_]t&C$U벍v$Mt$$D$T$ M䉁4Zt&,_,D$D$$@v,,D$ D$D$$fUWVS|u eE1]4$tEe3|[^_]Ít&j~jD$|$$輶4Z$D$1jeD$$9$jtZ^<$C$$04$(D$$` Ĕ$薨D$ |$D$$2D$$` v$|$$` D$D$$` k9YPD$ |$4$D$D$$D$D$D$ t$$ܷtZg4$$D$|$$XcD$D$$atZtt<$D$$` lt$l ;^$s$赭)1&|$D$ D$$|w&$ʫ4$"fv,,D$D$4$v, ,D$ D$D$$(v,D,D$ D$D$4$vD$4$膯D$D$ D$$贮tZ]vD$D$4$tZt&D$ D$D$4$NtZfaÍ$ȫ$cUWVS,] }CEU;<$Tzttu8pu/t&M VtVo&t{Ftwt.ztx@t#$18cvxtމt݋MttUЕ$T$btEt M $puhEpt\zuMUD$z $T$`d$Q$)ƋE׉|$ t$D$衳t&D$ X\$D$T$`d+X\$D$T$ UT$@Kv,1[^_]ÍU$k 9ZD$E$ZD$$` 規tUbEĔ$EU9”MEǁĔǁȔǁ̔$ȔE܉T$$ȔtMĔĔD$$L$g]Ef,[^_]Ðv'UVS ]u ,$hD$D$t$t$$D$D$ D$t$$u [^]Ðt&UWVSlE}u ]Щ$D$Efǀǀĕtfǀǀĕ<\$<$贛D$ tD$$D$ϨfD$D$s$<$觛$cm T$T$uD$ t$$D$c$؋Ue3l[^_]$,m ,T$duD$$莫t&$Im S$T$"ujt&t-8 x Df1>   ЃnYËr$$ZÉ<$>ύUWVSl]eE1u }}ttppf$f,wfǃ fƅm[tfƃlitft fD$ tD$$D$ED$D$r$D$D$s$]ƅa~iD$ tD$4$DD$败1l D$ D$E‰D$t$$cD$ X\4$D$T$_Ue3l[^_]Ít&0ƅp&ƃp-&tD$ D$D$4$ǤtD$ \$4$T$虩tt|$$D$ tD$4$D$S\$4$ D$T$ Jv$ʘD$T$$ӛD$D$ \$$t$]fV~CD,UÍ$($VUHE]] uu}ĕD$\$$UtE{t[D$$VGD$EЉ4$EЉD$D$$)|$$$kP4$D$K]u}]Ít&1]u}]Í&GD$E܉$E܉|$D$$)EԋEEԉ$D$aUԉT$D$E܉$'$mR$EԉljD$(t-4$ `E4$D$}Eu&Eԉ4$D$gE]u}]D$E܉$D$QËE$(Ut&U]E]uu }1eU1Ҁku Ue3p]u}]Ív\$<$hthD$ tD$$D$ $zf9$k LD$$rr1LvD$ tD$$DD$蛠D$l $k$1x<$qxt&D$ tD$$D$;$$fhtYuz4$D$T$$D$/hN6t&0t15$h^ƅhD$\$$-hƅDž$D$'o$ ƅTD$DžD@D$$hFEf94$k JD$$olp$>s1t& f0fT$$D$h>f9G$k  JD$$.oo4$1[$蒟$脟$gfЉ3ft$$D$D$D$$ff4$D$4T$$T$M$؞ 6NÉ<$$UPÍ$衞ֺӉU(E]uKZt ]u]ÍUEEED$T$$t>]uD$\$4$"O$u )EiE\$$*uE2]u]ÉËE$zOUS]t$JCC[]ÐU]] uu$Mt^^]u]Ðt$` H}^^]u]ÐU]]uE SC9ЉCv%t 9Ct$$Hts]u]f$` |㐐UEU 9PrPf+PU |U]]uu D$$NCL]u]ÐUEU 9PrPf+PU LYUS]$>;\|&~\;d~ []Í|;`sꍶ$m !F$D$EkD$$` qz[]Ív;Xr뚍&'Uuu]] xZt=t]u]Í\$$LY$Yu] ]]]Y\$$$Y$Y\$$XxZfUWVS\]u4$\$:1ҋt9\D$4$=D$D$4$A<D$4$:D$4$:X1\ǃTs`d9} 1B]ċUt$G\[^_]Í9XAD$4$ =ǃtD$4$:D$4$:E؉D$4$/:D$4$:D$4$k:ED$4$9ED$4$9ED$4$9ED$4$9ED$4$9Eǃlǃtf }fD@ E0EfEE؉hpD$ؔ$PEǃǃ ǃDD$4$;E㍻Ā|$4$D$:EƄĀ|$$EǃĄt-11X\`dǃTt`dX\v91UÅt$D$IU]]uu xZt-t]u]Íu]u] &4$!xZ뽍v'UE]%=Ít&U1Uw ]ÐfUS]=( <t/r4<t)%=( %[]ÐuVt( %$[]f( %[]$@D$( 3Daf( %[]á( %Aj&UUw v& EĀtĀt&<\t)uEwŐE,[^_]Ít&EfUVuSE ]t4Pt"1 P LP t9w[^]ÍUWE VuS]t9S ʅ҉t'1&LS҃6t$1u…t &[^_]f9}ǀuy}ǀuy}ǀu}? }? }? t&txvOt rR ;S9}ǀ}? ]t&9}ǀy}ǀ} ? }? 'U]ÍU8 eE1E}} ]uD$\$$D$t$<$t$$m:Ue3u ]u}]& UU E&'UVSut. vt$/6u[^]Ð&UVSut. vt$5u[^]Ð&UE~$5UE~$5U1M0 wB0 v]ÐUE] ÍvU]Ít&'U]ÐUWV1S 0S CCC CCCC$ u[^_]ÐUE UD$ D$ET$$ݎÐv'UE UD$ D$ET$$ݓÐv'UWVS UM E1}<34 |3 |< 1}} |< 1}}쉺u [^_]Í&'UWVS\ME eU1ҋENj]p@  G 1ދuGEG EG EG E1Uw G U G G   B3  B B 1߉}ċEԋBE؋BE܋B EEt&]uuĉEĉu֋E 1؉9 9%  ‰3E3U9 9m  3E}73U}_ӈ_W3WˆGWG3 GG W G E3W ˆG GEԈWD$ $]e3u\[^_]a!UWVSME EuUX@  F 1ӋU]~F F F Nj1lj}v B Z  B B  B3  B B 1]]E"&]uuEu֋E 1؉9 9%  ‰3E3U9 9E  3E} 73U܋}_ӈW_3WˆGWG3 GG W G E3W ˆG WG} M[^_]fUU ES []Ð&UWVSfE11fEEt&M1Mʉ ʉɈ< fM1f1MMf}f}fMf>u<[^_]ÍUWVSE MU]dEWdlueU1҈_u}e3=Aļ[^_]ÍxD$|$ $= u H1׹ 󫍍xhT$ $D$h1Eh򮍻t$@ $у`ǃyǃm?ǃ 5uǃ#tftf1t ftDžd`1&hh:d+dT9%  9ЉltSpf 8p  %p9lu9`[dd-1;`Hh$D$'11׉pdi0D$ $tMl t7l D$$T$u_8 0upxxT$ $D$4$l`t#l`QP`Hh4$0_DžptXppX`ht$T$ L$<$pXD$L$pT$ <$p蹡p?^t'h󥋵XD$<$t$tp/_D$xD$h$6x ˆ!"|$ˆ#%&(ˆ')*,ˆ+.- di0hp ``󥤃lp tlЋ Q ih0_l  ddp󥍳/ll dD$h $Wlp$D$t$ |$|xD$$pJhxD$ $JD$4$:ypi0p ttft fti0/l ttf1t f :HfUEfǀeGfǀ!fǀsfǀR]Ít&UEƀƀƀM]ÐfUS]EM t0&u[]ÍUS]EM t0&(u[]ÍUWVSUEM f4ځ f]f)f3ff3U 1f 1ff0my[^_]ÐUMSEU ]u4t)( u[]Ít&t]U E[]vtݍt& u[]ÍUWVS]eE1H$hD-4$@{DD$4$D$ D$虛@D$4$D$ D$w,4$1D$T$[1;E }=,$9E ~ $ uuEe3u [^_]t&'UW VS_ $D$ $t0_ $Ս&D$$ D$$y( [^_]ÉǺ)i0  t0$!lj$ɉ<$U1WUBBB BBBB U_]U1ɉVS1f5 tuu  u1  t&؃3 uu[^]Ít&UWVS  EU] t(U2 3 uމU}uډ] z1B 3 z3 z3 3" 3 3 3 wU]\Ut2 3 u[^_]Í&EPEUÍvUEVMS] t1ҍv4ɉ 9w[^]ÐUEU @@P @@@]Ð&UESM P;Pr[]Ë@[]Ð&UE$M t$PZ;Xrf$t$]f0\4fP$t$]ÍU E$M t$|$PZ;Xr$t$|$]Ð|t47<T@$t$|$]ÐUS]ED$$gED$$1VEM1ȋM ډQ[]Ív'U]]uuU CL0;Kru]E uU]8 t&t$$D$R s]u]ÐU]]uuU CLp;Kr]uuE U] t$T$$s]u]Í&'USU] Jv u&L$$D$[]Í&JU]]uut'\$4$U F\$T$$J ^]u]Ð&U8]]uu }{S{)u։s]u}]Éڃ‰UT$$xED$D$C $[UT$;|$SE$EDs]u}]Í{t$$ {t$D$C $Z<8{JUE@@@ @]Ð&'UWVS\E]UEt+=Uf= BuEC1Mȋ}P CE S $ UȉUĉE܍&EEtoM;u܈MM1ҋ} <9CփKCCCEEKEuC+KS MC\[^_]fES~CcMSUC!M} $3M 1U}*1UMÉM;M_KƃSKKȀK}EÈDS|t&:EKSKKKM} DS1M  MM1Q=CM<2t&{ K 8KK KK SCC CfCSCCCEMSf { S9SS SE { S9SS S`K SSS S[&UESPtPP U P[]ÍvP XPP Pː&UWVSU]U }{E1Efst}uE u sE KM9M{;U uM4CCuMEt  u us눐t&Eu EM us^vE EE9E,EU]EE &~(U ]4]u49Ewԋ]UEsfE] u9ÍG[^_]Ðt&E9EUt&~U 4U49EwUEs`t&1뇐UE]Ð&US& & v & 1 & ǀ& E\$D$$؃[]ÐUL$T$$NÐ&UtT$$ÉT$$Ív'UWVSӃ<;*t6?truƒ<[^_]Í&9;*uʋt̓.tAɉt'ډt<[^_]Ðut&1닍t&FE܋F*Et?D$.$UԈM-MUԅM؉Eu<FP9fF,D$.$MM؉EE?D$h 4$MM؅t>E81҃.\tt .f<ډ[^_]]D$.M؃$bM؅uE܉)v UL$T$$>Ð&UtT$$ÉT$$lÍv'UWVSӍp<F<*t8l 1Xڋ6&D$D$$pT$D$4$P81&ڋ fD$$uu! t€DЍADҋ+$Y1dD$$s81(G'UX ]]uu}} 4$C,$ku$/\Ҹt1u]u}]Í&D$D$4$D$D$<$C4$4<$&$‰Ƹo 1d]u}]Í]u}]ÍD$D$4$D$D$<$ 1&f$D$uJ$$l1$t$$;uO1G^UE]fUS]E $PlPSP SPS PSCSP@SC ؃[]Ðt&UHEEPŰPUЋP UԋPU؋P-lEẺU܉$Ð&U11S] t$K1ڃ[]Í&'U(]] uuD$D$ $t$}}<$D$$t$D$D$ xG]u}]Ít&U1U MS9t[]ÍvZ9YuZ9YuZ 9Y uZ9YuڋZ9YuҋB9Aǐt&UE]u$ƋE Ӊ$9|~1ɋ]ȋu]Ð9s]ȋu]U]]uu $t$uu u]]]*f]u]Ð&UE]u$IƋE Ӊ$:9}1ɋ]ȋu]Ð9v]ȋu]U]]uu $t$uu u]]]f]u]Ð&UU]BJ ȋJ ȋJ ȋJ  ÍUU EуɉH?H H H¼H@]ÐUVS0M}] u\AQD$ A D$1kd)։t$AD$A$D$ Go D$D$D$=0[^]fAD$ A D$D$AD$A$D$ 0o D$D$D$0[^]ÐU1WVS<}] Dr1Fv#t.$t1ЋT TQЉTɍt&EM؋Uԋ]ЉGEɉGE܉G Dȅ҉OE‰GG<[^_]G1۸GG GfU(E$SED$E$Ðv'UWVS,u EEtw1EfTG^tFU܉<$U܄uۉU܉$[UäD$ E t$$D$+L[^_]Ðt+EԨtM äD$$L$uuԅ~ä}1]] U3D$$S9ȾfU]Ðv'US$]ED$D$CP$,71t t $[]ÍvU$[]U]]uuKC)9Gu9t7]u]ÍvCt$D$E $s]u]ÍvCC]u]ÍUWVSLU]3?} ft$|$$Hpu6KXCN/L$KP$E܉L$JVS9SEuE11ɉ} Et&E11EEu D$t$4U܉M؉$4CXtZ$`U܋M؅tH4(((((((t$ |$T$L$$EԃL[^_]Ðt&{ub} ǃEuԉ}ԉ}t&} ljEԉEsC } 9Fuԉut$<$D$s )suԉE+ED$E ED$CP$7EEeUЉEBE믐t&UEU @@]Ðt&UM EUtHPtPTǀǀ]UEU H@ PD$ .= D$D$ <$ $$$|%D$ D$|$$=&D$ D$D$$0mD$ 4$A@ D$o T$D$$T$ D$4$^*$+Ue3AĜ[^_]ÍvD$ D$|$$(/$o |$$f|$4$$$8p ||$D$$T$T$ T$E3D$t$$ D$|$$  t&=@ $"|D$ D$o $T$D$2`tƉ$v*4$B&'UVS ED$E D$ D$$w D$ "D$w $A Zw < uLw f< t< t4$$` 6ËEz\$$` * [^]< w t뾐&U=f u Í& $D$ÐU]] eE1uu}tV$& dD$<$D$\$t$<$裳D$<$#D4$Ee3u ]u}]t&UWVSL E UeE1]$\p D$4$D$Muut$$p D$$\$$D$$.Ue3L [^_]Í$ p \D$4$D$$ !%tDJD)$t$$p D$$$p $hD$<$t|$$t>$p b$*D$$D$<$ڜ1t&D$<$kvD$4$T$b 11Zb&'UW1VSLEeU1҅&D$(D$$D$_$tDž:u & ɉt_t1ۍt&Dl$C<$98;su뽐t&D$_ $l(Džt&+p ut u O‰$l~)1ۍ$w D$9㋕TT$U$.p D$x9G$t Q D$PD$E$thE$1҅~6l:t@1t& Ll:t$9|1҉ЋUe3u(L[^_]1҃D$$` u b&'U1WVS,U }tj t&9U vW|Su|[u9] v4 ;<"tRމ]ˉU䐍t&$]u!;;tU]9U w,[^_]Ð9u v77<"u,[^_]ËU]h&UWVS<E} eE1|$$ trtb1)G؋D$ \$D$$ƄD$$A 9w$u Ee3u <[^_]US]D$PdD$$`Zt$T][]9&US]D$PdD$$C @ǃ,Zǃ0Zǃ$ZǃxZƃ[ǃ8`ǃlZǃ\[ǃ`[ǃd[ǃh[Hd[]Ðv'U(]]u}T4$[ǃ`ZǃdZǃhZ$d8[$V$]u}]Ë`ZDžt$a4$<$UWVSLEMU ueE1D$|$ $E=tEF D 99|ƄF!0^ ^@uf\$|$$ЉFt$D$t${P\$|$ $Ee3L[^_]f؃؉F f$p LT$D$$]D$$` 뒍&D$D$T$ $xb&'UHEU]] uEU}eE1$.1uUe3X]u}]ËF|$t$$6Ƅ5u] !%tDJD)9Ct$|$$ CD$D$$j+<$T$j8t>$p f$T$D$D$$` "$p ($T$D$BUS1ۃ$q  $7%ut )%t$jUE@@@ @ ]Ð&'UE@@@ @ ]Ð&'U]Ðv'U(ED$ED$D$$ D$ = uËE D$ D$@ $$!q $1q D$ ÐU$6q D$D$E$WÐt&UU Et*tt @]Ðt&t@]Ít&8wؐv'UE UBt-D$$E Et&D$$E EUS] uExu[]É\$$` $7D$D$Hh $&U$]t$u 8]$u t$]sfUS]$n$D$N[]Ð&UuÐt&$tD$D$@ $fU($Hq ]]uu }}$t$|$ D$Xu]}]]tt&US$E]D$E$D$ ED$E D$]E $[]n&'U($cq ]]uu }} $t$|$ D$u]}]]t&US$E]D$D$D$E $D$ ]E $[]U(]]uu}} t$}q h\$<$D$3]u}u]/&'U(ED$D$D$E D$ E$qÐ&'U(]]uu}} t$o \$<$D$]u}u]&'U(ED$D$D$E D$ E$qÐ&'US]E D$$D$]E []Kv'US]E D$A $D$][]&'U= ]]uu u,$q t$ D$$D$Q$y]uE ]]U1SU]z u\$B$u ۺHq q D‰$/U $T$D$H$q  $4[]Ð&U1Uz tÐt&$$u $cq U $T$D$$q $ɃÐt&U= ]]uu u,$q Yt$ D$$D$$)]uE ]]QUÐUU ÐU҉u9w 9r]Í]ÍvAQ]  Q Ð&US]$>C []ÐUS]C t$][]>v'US]C t[]Ð$ C []ÐfUUE HшHP]ÐUVS ]$>@}tQ$D$i>$>$D$O>$d>$D$ 2> [^]Ð$ED$>E [ ^]Ð$D$=$>$D$= [^]Ðt&90FЈFVS9`FV  V ?9NF  F 9M9OG  G 9fNF  F 9MJ9<OG  G 9OG  G 9FȈFN9`FV  V ?9mOW  W L9BȈ BJG 9)NV  V 9ZBJ  R  9}¾D։W0CˆE3Uп%DNj}ɉG0FMA 989+E#UUEǺDUM ׀}y0c}W 9=UEٸt %}҉G0UB 9h9!ȋuDщV0UEǁDUM ׀}y0pGMM)t1%;M ЋU}B0}G 9?%¾D1?lj9¸u| ȋMA0E UNF  F ,GW  W &91% ȋMA0FFFFV  V ЃBȈ BJFV  V FV  V ЃMQ 9ZGEG E EG EPNF  F MFV  V $NF  F FV  V ЃVVVWG  G NF  F MFEF E EF EFV  V ЃVVVFEF E EF EVF  F ‰UnFEF E EF ELNF  F FEF E EF E9NF  F FEF E EF E2FEF E EF ENOG  G xOG  G WG  G OG  G WG  G WG  G UEFEFEFCGEG E EG EGW  W WG  G WG  G OG  G [^_]ËuV NUWVS<] uK,{SDNK0NK4NK8NKF‰S +C\$<$D$F FΉ<$SEV9N1V ]ÉU؉uv;UsBE؉ރD$$QUr <$D$<$9]w]uE1D$4$aVJЋEԉN6BB B BBB$Bm~BMU]]uE SC9ЉCv+t 9CD$$ts]u]Ít&$` ᐐUW1V1S,E UԋPU؋PU܋P UPUPUPU@EEE1t&MTTM\Z\Z\ZÃuʃ2 ۍvu}̍}ԉuE} !UE]@ 0UU@ @ 0UU@ 0U׋U2 U1È]1ҍ0Lt0ut \ȍt&1} \S}GM̋]ȍTMT\Z\Z\Z~ωMȃ}uEE덍vf1t&,[^_]Ðt&UWVS fX1҉M]ԉM؉E܋u؍}1׉}]܋}D\>C@ 2@ {[2@ 2@ ]]uuEԋUMTUTUT UTEԃ N [^_]ÍUWVS,]E }u]Љ1t&‰]\u]0vTuEԉD$$;t ,[^_]Ít&$,[^_]Ð&U1҉WVS]u E 2 LuU<@ U4@ U@ U]܍@ U1ҋ] ]2 2 2  uU<@ U4@ U@ U]܍@ U1ҋ] ]2 2 2 LuU<@ U4@ U@ U]܍@ U1ҋ] ]2 2 2 LuU<@ U4@ U@ U]܍@ U1ҋ] ]2 2 2 L uMU\1ҍ 2 LuU<@ U4@ U@ U]؍@ U1ҋ] ]2 2 2  uU<@ U4@ U@ U]؍@ U1ҋ] ]2 2 2 LuU<@ U4@ U@ U]؍@ U1ҋ] ]2 2 2 LuU<@ U4@ U@ U]؍@ U1ҋ] ]2 2 2 L uU܃ ~]0ҁäv 2 LuUA UA PUA PUA PUA PUA PUA PUA PUA PUA P UA P UA P UA P UA P UA PUA P]1ҁôv 0 u[^_]ÐUWVS\EUM} EeE1Uuԍt&2TuU $Mt$T$lE]MEEtMMv12uU\$t$$ mtŋEME]1t&TuEUe3u\[^_]ŔU1҉WVS]u Eô 2 LuU<@ U4@ U@ U]܍@ U1ҋ] ]2 2 2  uU<@ U4@ U@ U]܍@ U1ҋ] ]2 2 2 LuU<@ U4@ U@ U]܍@ U1ҋ] ]2 2 2 LuU<@ U4@ U@ U]܍@ U1ҋ] ]2 2 2 L uE vU܋M\1Ґ 2 LuU<@ U4@ U@ U]؍@ U1ҋ] ]2 2 2  uU<@ U4@ U@ U]؍@ U1ҋ] ]2 2 2 LuU<@ U4@ U@ U]؍@ U1ҋ] ]2 2 2 LuU<@ U4@ U@ U]؍@ U1ҋ] ]2 2 2 L um}]0҃$t& 2 LuU@ U@ PU@ PU@ PU@ PU@ PU@ PU@ PU@ PU@ P U@ P U@ P U@ P U@ P U@ PU@ P]1҃ 0 u[^_]Ð&UWVS\EeU1ҋu }EEu1]e3\[^_]ÅtUEJMċJMȋJ R M̉UtoE]ԍt&E\$t$$E1vT0u0Tău0umt뛋EċUBEȉBẺB EЉBE'茏&U1WVSeE1ƅƅƅ4t&  ҁ11Ѓu 10!t&1Ȉ  %%u111ɍ4 ʍ<1111։c1҈@ A @ C @ C B B A  C B A @  ۍ B A @ C 11ډ1ʀ) ш@ rL B  A  @  C  B  A  @  C  @  C  B  A  @  C  B  A  A  @  C  B  A  @  C  B  C  B  A  @ = C  B  A  @ #1Ʉб) vC 1B A @ *ƀ@ 1B 1A @ C B A @ C @ C B A @ C B A A @ C B A @ C B Ee3u [^_]`U=@ t Í&U$蒊UBD$D$$DÍ&'UE@tE{&Í&'UEU PуP]Ðt&UU$t$Z 4 D L $ t$ ȹ+J]%ÐUWVSLE}EE]3KSȋ[ E̋Ex1!1؍yZE}̋@ȉEȉ1!1ȍyZ]ËE@ȉEyZ1!1Ѝ E@ ȉE썔yZ1!1E@ȉE荴yZ1!140E@ȉE䍼yZ1!1؍<8E@ȉEԍyZ1!1ȍE@ȉEЍyZ1!1Ѝ E@ ȉEyZ1!1E@$ȉE܍yZ1!140E@(ȉE؍yZ1!1؍<8E@,ȉEyZ1!1ȍE@0ȉEyZ1!1Ѝ E@4ȉEčyZ1!1E@8ȉEyZ1!140E@<ȉEyZ1!1؍}3}}̋}1}̋}1}E̋}̍;yZlj]1!1]}3}ȉ}ȋ}1}ȋ}1}Eȋ}ȍ9yZ߉M1!1M}3}}}1}}1}E}:yZωU1!1U}3}}}1}}1}E}썴>yZ׉u1!1u}3}}}1}}1}E}荄8nE11E}3}}}1}}1}E}䍜;nlj]11]}3}ԉ}ԋ}1}ԋ}1}Eԋ}ԍ9n߉M11M}3}Љ}Ћ}1}Ћ}1}EЋ}Ѝ:nωU11U}3}}}1}}1}E}>n׉u11u}3}܉}܋}1}܋}1}E܋}܍8nE11E}3}؉}؋}1}؋}1}E؋}؍;nlj]11]}3}}}1}}1}E}9n߉M11M}3}}}1}}1}E}:nωU11U}3}ĉ}ċ}1}ċ}1}Eċ}č>n׉u11u}3}}}1}}1}E}8nE11E}3}}}1}}1}E};nlj]11]}3}̉}̋}1}̋}1}E̋}̍9n߉M11M}3}ȉ}ȋ}1}ȋ}1}Eȋ}ȍ:nωU11U}3}}}1}}1}E}>n׉u11u}3}}}1}}1}E}썄8nE11E}3}}}1}}1}E}荜;nlj]11]}3}}}1}}1}E}䍌9n߉M11M}3}ԉ}ԋ}1}ԋ}1}Eԋ}ԍ:nωU11U}3}Љ}Ћ}1}Ћ}1}EЋ}Ѝ>nu}11u3uuu1uu1uEu0ܼ։E! ! uƉƋE3E܉E܋E1E܋E1EE܋E܍ܼ] Љ!! ؋]ÉËE3E؉E؋E1E؋E1EE؋E؍ܼM !! ȉE E3EEE1EE1EEEܼ؉U !! ЉEE3EEE1EE1EEEܼȉ} ؉!! E}3}ĉ}ċ}1}ċ}1}Eċ}č>ܼ׉u! ! u}3}}}1}}1}E};ܼlj]! ! }߉ߋ]3]]]1]]1]E]ܼM! ! ً]ˉˋM3M̉M̋M1M̋M1ME̋M̍ ܼU !! ʋMщыU3UȉUȋU1UȋU1UEȋUȍܼډE! ! ЋU‰‹E3EEE1EE1EEEܼȉu ؉!! uƉƋE3EEE1EE1EEE썼ܼЉ} ȉ!! E}3}}}1}}1}E}荜;ܼ]! ! ]}3}}}1}}1}E}䍌9ܼljM! ! M}3}ԉ}ԋ}1}ԋ}1}Eԋ}ԍ:ܼ߉U! ! U}3}Љ}Ћ}1}Ћ}1}EЋ}Ѝ>ܼωu! ! u}3}}}1}}1}E}8ܼ׉E! ! E}3}܉}܋}1}܋}1}E܋}܍;ܼ]! ! ]}3}؉}؋}1}؋}1}E؋}؍9ܼljM! ! M}3}}}1}}1}E}:ܼ߉U !! U}3}}}1}}1}E}>bʉ׉u11u<>u3uĉuċu1uċu1uEċuč0bʉE11E40E3EEE1EE1EEEbʉ11ÉÉ}3}}}1}}1}E}9bʉ߉M11M<9M}}3M1}1}M̉ bʉ1‹M1ڍ}3M}1}1}MȉObʉ1M3E<8E}}3}3}3}ljx>bʉ11ƋEƋEuu3u3u3uƉp 3bʉ13]ËEËE]]]]3]3]3]ÉXbʋM13MEEMMMM3M3M1H bʋU3U3U‹E‹EUUUU3E1ЋU1EBUbʋE3E3EE‹E܉UԋU3EUU11EUBUbʋEUЋU3U3UUEẺUUUUU3U1‹E1‰UP E썄bʋU3U3U‹EUU3EUUUUԋU1ЋU1E܋UB$U荔bʋEUЋU3U3UUEEUUUUU3U1}1}‰U؉P(E썼bʋU}}3}3}}}3}UUE13}ljz,uԍ>bʋu1ƋE3u֋UEu3uUU1ދ]3uƉr03bʋ]1ËE3]ӋU]3]ĉU܋UE1ˋM3]ÉZ4bʋM13M ]M]؋]3]3]1ÉZ8UE13U܍bʋ]׋U3U3Uߋ]1uV$mUWVS fE }Ue M1ɋ]Vduuaƅu$]e3I f[^_]fD$ C$D$D$$9 ƃ/Tt&yvwzQ {ƅRD$D$ C$D$$9n ƃ/D$ X\ $D$T$ݸƅwƃ/Vt90EÆ\$D$ L$$.$@ƅxt&/ƃƅYTZu%P 9xr}+&ĀT$$wD$<$L$h;D$Dž4ƅ;D$ D$$lhPZ ht;uƃ}D Dž4ƅWD$$葁 $!  0`tY;uPh4 $DЈhD$|$\0`9ƅh<$ !t |( ƃD$ `΋d+hl $D$T$ |h i ƃ|ƅXiɈzƅhtcuMit v5u1$u aL$$HpZ uD$P $D$e5`@$0eƉXvax:@${tD! t€DЍAD҃+9&$ƅ,X+ EA ƅ8PZ. t$PD$4$}b$u8t_]f__;W4 ǃƅXu*,XuXLZu MZtE + t$uD$$` 脓ƅX < $臧$Cƅ8n Xu/ƅXiƅƅXƅ84D$ L$D$$ 8usPtj4$ǵtX$pl '^PD$|$4$8D$|$ t$$` D$[ptIt>n[t$D$PT$$)$nD$4$D$R4|$D$ |$$vƃ/ƅt t$u OL$D$$tD$$` `uXn[DȀP8Et +rXnn[:D$$D$ pt|$D$T$,ZPL$4$D$4T$D$ :,,P$T$L$ D$t$$` 跅D$ $` 裂P$5bW $|v ND$4$(sPy$` r{D$ $` yÍ4$\$L44$|$R$:uiD$$D$ ptD$:T$D$,Z|$ PD$4$D$|$}[44|$D$P$ҥ4É<$ $$K拍,P$t$L$|$ D$$` {e4$R{Ot&UWVSEU e M1ɉ4@ 0T$$4@ 4$€ (,T$L$uFD$$` w1ۍ@ $肵؋Me3 [^_]Ðt&@ D$$11bV 1D$1D$<$GXZuڀVdIt:d t$v ;\$$\$v ;$\$ v ;$\f@Ɖ$4$BUH]]}U uMρEԉ5 ~}}ԉ|4Zu|t1)|D$$艷UԀJZt = ]u}]Íw1kL$ T$D$$褰4ZD$6$4Z|D$ u)EE}UUD$ $T$:ljЉUM||3ǃ|ǃ]u}]Ðt&CD$ $$D$Qt&C1$軗tщ[&UWVS켄}E Ue M1ɋuy{x{mw{v{ƇyƅDžFfO{|{$i YD$ tD$<$D$舌D$D$s<$`|{D$4$L$R{t$D$D$D$ <${|{D$$ L$T$ B{1<$Dw{E‰D$>{ffLJ LJtD$D$4$\<|{ $D$T$ :l[D$4$D$ D$jlZ;dZ|{s`ZыLЉ\ZXZ|{lZ4$M\ZXZ5 n4$.;\ZZFLfXZ\Z& <$D$T$_D$D$r<$臷D$D$s<$oi$=w v6{\$T$$Wv{t<$过x{Qw{tF{@ @fBB <$D$農{L$A<$D$նĀ$I$Vw 5\$$ WƇyUe3- ļ[^_]Ívf@ Ƈjl[fXZf f\Z|{dZtH`Z1p{׉{fT9|9|{v|{փ9r܋{p{O1҉{|{ ED$E0000E0000E0000E0000E0000E0000E0000E0000E0000E0000E0000E0000fE00D$v DD$ v D$D$$:{D$4$T$8D$rh 4$V4$ U $h{D$D$l{8l{D$$B8h{D$4$L$6ƅp{t$D$4$78|{DžD$t$$7|{$L$2$i qTD$ tD$<$D$D$D$s<$Գ|{T$l{D$ D$4$xl{t$ D$D$T$<$|{4$T$b |{t$<$L$d|{ cvw{=5 {{B B(BƒEƒfA<ЉAx{D$ Q<$D$T$҅{D$@<$D$該dž dždž<;XZf1=@ u]pZuTo[utG$v k1$3S$u W1$Zt&4$XD$$D$ D$D$D$,ZL$ t$|$D$$$w 0{T$$wRpZtfD$ $` flt&=\$v i0$1RpZtHD$$` e&$.w ,0$TYx$w 0$,Y뙉 D$D$ $T$h0|{t$ L$$T$N0$GP&$6w /$x|{D$$D$ D$D$D$,ZL$ t$$D$D$kl{$~l{<n$v .{t$ L$ $D$T$` d<$}D$ $` :d|{YOD${L$$3|{D$$-T$l{ $D$=D$D$ $0l{p{4l{ $OD$D${h{$80l{h{T$ $@-{D$T$ $P0D$D$|{$/D$$` bZ@ D$h 4$PD$ 4$OT$D$4$FD$D$qh 4$Fƅp{T$D$$FD$D$h $F2Í$|$3U$lw N,UT$$N$w 3,$[UɃÍvUWVSB}MUE TDeE1z4$p$t cDƅsG,D$D$<$}<$|D֋$Ë(<$8<~D8<$(<$$y, $D$T$/(D$D$$B-thD$ D$L$$]4o[bƅ3ƅ8t&D$ D$T$<$sDtDǂ,ǂ03#84o[ 4pZ($w )L$D$,$N(,D$ <$T$L$rD$ \$t$<$l}1Ue3IB[^_]Í& ƅADD$D$<${<$wzÉ֍G,t&,D$$L$t-( $D$T$$+D$$D$ D$[D$ L$D$<$qa8ƅ3BT $Z(,4D$D$ TT$L$$6T$ƅ8|t&$4pZ&T$ $@랍 z BD9<$w T',,T$ $D$0T$[LL$$ yT$D$ $+D$D$$/)D$<$苼TXt5u  uu $w&,T$$G(,D$$ L$ D$mD$D$<$x$<$T$VTt+D_${ DBDADQHDǀǀǀ<&<$UEĀ\$$8$w %\$$KF4ǐD$T$ $T$h$i D$A)v'0T$pD$$pE$y $#AD$x A$w |$$@g{s$K%Ƀ C҉AۃSxH܃RDx؃VL$D$T$|$t$D$ $:x D$@$t ?5$3w $3w mfE?} %=@=F$"x ?Ƀᵃx҉ⶃwໃrd&sඃwt ໃr@x%s%ඃwd滃rL$$D$tT$ |$t$D$x$Lx D$D$ D$x>e$8z '$_>$'u N>%ڃS=ڃS$y >oB"&'UWVS<EeU1ƅ Dž WdDž Dž Dž ڐ&U1&WVS] CCɍQI扻PCCkTCC C )щȉUMC C DR E}쉋T扻\C CRڍCt&B=uƃ01Ґt&L9ʈT*=u[^_]Ðv'UWVS ]U t&&CtM t Lv)q|3*}|;9t M܃+|:}܉TL;J} uLDt&UWVS,u}] DEMdžpJdžxJJ~GVUUUEE)RU))ׄ~VUUU)z }Eljƒ E‹;ɉu@}t.J;M ,[^_]Ít&JM; 뎍EMD$J$|$4$LJMt&$MU&$E܈MMMEf$MMMGUWVSL]Df8EPJHU9E yƃm Eq]܋} H΃YA9u]܉|JPPJ@UfBp:QvxUQfPEQyPy|xJ1ҋ|JJJu܉}Pm l dn ҋu ȋM~vA9u k3l Pc88}4KǃJ@ǃT֍B f) ~ f4Kl @|JXGƃm ǃPlxJ1)pJxJ)xJpJE܉dJ;u$U8KUԋpJxJu܉xJpJ1=vw%xJtt&\D@0T9t≻\)fMĉD};k143up6)9x4rM؋M9׿9M҉n O׋} UU؋}2O1f)օf7JPl EEăv 8 ltz}9M ? lmuҋEċJMU41|JJJf2TE1)ΉыPpJɉpJu܉xJN\A;K LDpJxJdvJ;u$EHEԋpJxJxJpJ 1vځxJqM}EĉU܉JJ)ω|J}t*E䍴& 8 ltJMuEu؋UJNw'V҈VuU؋uf"VN}܉PGf@|v \$$`hl |JJdxJJEt&\ǃDL[^_]Í@UǃJn]܋Pl |Jl u܈n l}ǃPTR)׍f9luE11ɉJxJuU+UpJЉxJQAPJ9m dAufFy|weJ11xJǃ|JPE}JyxJ1ҋ|JJJΉM܋P}I\$4$덉$9fl l@1ƃl E\$$p|JxJJU1ҋuJMPʉ΃PIʍ881VKǃ|Jƃm df耍V f)1fKxJJPv'U]]uu pJ$ou]u]Í&ÐJu]]]AUEǀJ]Í&'U]]uJ4$4$D$#$D$]u]Ð&US]9tVƃsMځ?T$D$C $JD$D$C $+ƃf)‰T$D$C $[]ÐfUU EudǀУǀԣǀ̣ǀȣǀģǀǀ5ǀ ǀǀǀǀǀأǀܣǀ]Ðv'UWU VS]&J@v0 f9uʃuߺu@uD1tft C u[^_]{ffU1WVS UffBfBfBfB=uʍf1߹@uUuf1tft1߹@󫍂t$D$$ [^_]ÍfƂtf덐&U1҉WMV} S])t7)?%?u[^_]ÐfUWVS,} EU];8rE1&; %?m u[^_]ÐUE ]U}uc\󫍚pǂ|ǂǂtǂxfD$;D$$k]}]ÐUWVS$E} |k\E؋EUЋU䉐MU艐U+Uԋ4֋U֋֋U֋U)U1))ω}} }3}+}1))ى1)1)ˉ+M1)M艰 1)+M1)M 1)+MUԉ1)1)UUM*}E҉IǀEܻ1& 9v߉΃ u vE$[^_]f$`{ kE\EكkE\E|kE\EkE\E|tkE\E^PkE\E:,kE\EkE\EkE\EkE\Ev'UVS ]$L'VǃJǃTǃ\ǃX4$8L$UE ǃDLǃHLǃLLǃPLǃTLǃXLǃ\Lǃ`LǃdLC ǃƃƃƃ [^]ÉƍJ$$U4$W4$EhEАU1(]]u} )xK@T)ЃD${|$C $~h‰]u}]Í1tCt$ L$$V{&U1WVS,] } _GG~U$ UC ЃGt_ ~f,[^_]U8]]u}DK9w]u}]fK9wf9Pm l d n qQ63kq3l ~4$1pJV xJpJ tJxJ1vwځxJ농\DK@90;K$;Ttۉ\D\$$QV|JJxJ)PpJ҉pJxJ@\2B;KLDpJxJuStJJ>~4$pJV pJ tJxJxJ 1v ځxJf\DA1PQЈAU䃃dxJǃ|JSƃm f耍V f)ЋU䉳JfSpJPE1)E҉pJxJvy949,\$ $iRpJ|JxJPE䋳J덐u$Fl R$WEU8]] uu}=~ $*S< EJ1t/@pJ\$$}uD]u}]Ít&~m|MJ$L$i|$4$믍v=Y M@u=XEYt&uƐJ4$1]$ S M또t&$S뙐&U(]] uu}{u]u}]Í&LCDD$C<$$D$[D$C<$(D$?u] ]}}]4&U8]]uM}9?}U)Ɖ1҃~@΋M t$L$K EU $bEU]u}]Ív|9r9r]u}]ÐUuE u]]9tWƃsNځ?T$$D$t$$D$ƃ]u]Í&)Ɖuu]]E ]UWVSE]U׉d1}tM 1ҋuD9wM 1ED$$ T$]CDCT)4TTT@TDuٍhSDd}M 0utҋhf{ h9wԋE-*ǃ 1Dž`ӥ`)ϐt&9Twvt&9Tt&wv+)3TD9Uv*S fs9`wĬ[^_]Ít&fDŽsǃLt&UWVS]eE1;$!1+C$D$J$JĀ-%@ǃǃǃD$1$}OJt&D5Ѓ$TJD$$ 4$J$4u$JD$$ $I$1~1(D$ T$|$$;9$;K9T9 D9K ‹t0+04;&4{(;TE(t&;T&uDž,Dž40ϋ;K4+,4;CSx)35<O&t&.$RHD$$ x H~t&19ƃlLpL;}iuK7(+TM؍0 )TiE;CiEp8XDC=}D$$|;x|0&pL{EMT D ‹C)ꋋLE;tLOA;xLst&;TuEEM ΃uKM؉3u+tLL;pLCSX=>$%'t&= U| U| 3CuE܋M䍳P[D D+M ꋋ[;T[A;X[s;TVuEEM܍ ΃uKMԉ3u+T[[;P[CSg| | tN UT| U {))Љs=v E=]uD$$t$+T)ΉLEMCSP t&)M xE܉CiEp<9;8TDC=$$]<[^_]霾t&HM)Ɖuvp)u܉Mvt=b={ { tM ED| E {))%ƉSt$D$$t&ǃ|3 7D7 L7 ȹ+K)%SEЃEU܉S)Ή[ES_MC `t&ˆUЉD$$$FUЄ=%&p)u؉My)‹ЖEMUT D ‹C)ꋋyE;yA;ys;TuEu+yMƉuuTy3uԃ;ysCSF$<[^_]þ)ΉyES}MC } } tO UT| U {))s}v}v }uD$$t$D$$D$EEEEXMܹ)MFH)ƉubEETMع)MBE"t&US$]E '$ýǃ)9$^%?;)? w9t$z5أubN҉t[9+$蹽&t&$u]$[]׸&'t&$v$`ǃE$HǃTvЈET$$.Etiǃǃǃأǃܣǃ$LǃУǃԣǃ̣ǃȣǃģǃǃ5ǃ ǃǃǃǃǃأǃܣǃ$$7ǃ($[]fUS$]t$H$\Lt$讬PLt$蜬DLt$芬8L$h$L$JJ$|]$[]?$LE$E􍓠JE$J$$E$۰ڐt&UWVSLU]N‹@Lǃ@$D$ED$DuߋFŰ]ȉD$Eԉ$D$EԋMD$ D$ $FD$Eԃ,D$Ẻ$E@0@4@8@<E 8L1=MЉ $=EUԋF,@9<EԿv(8L1={1]&8L=U$! D>@D$$U9}w t&$HL1!vEЉ$Mԉ‰F\L&PL$D$*(TLPLE'DL$D$'HL<DL$d@@@@(@,@0@4@8@<@ @`@$EȉHLF\L$D$(E@M1 $Eă=E1D$E܉$>8L=!U܋MЉUԉ $cU:MD$ $'9}wEȋŨD$ Eĉ$D$E܉D$E贘vM1 $D$‹E U$U߉ t&t(tUЉM$MD@֍~(<$ZD$@<$5[F4$|$![MȋF4Q4|$$T$lE1o1hU)‰Ѓ@D$F($ZËE赗$葩UWVSD$D$$  M tL u ι+K)сsT2у S )ȉyES}MC h| L| ҉UtK3 7T7 L7{ ʹ)+M}{+}܁??<>֍vlEEBABABABABABABAm}wE k΍  GFGFGFGFGFGF+Ж??ljE41‰M?BABABABABABABAwE kMVQVQVQVQVQFAi? 9 ?u+3 7T7 L7{ ʹ)+M}Љ{M䋃?40 ?mu$w%$Mܹ)dENE܉$D$@$蘶x}t lL$%U$t& v<$Ýǃj1у@Aƃ11U؉$.t[tN<81t ΄t&EЃ|$$ D$.EԋE؉$ǃ뙉$*f 0jUԉMu T7 L7{ ʹ)}܋j;4jw;8js M;TruM+0j σK)tj};0j;CSvtvЉMĹ)4E)jU܉փuSKn3뙸BǃK&'UE UMvÍ${ ɉM UɉM UɉM U9UWVS]Px@1DJf9q8΋t&8JBuP:Vr?P60RfPBЉrrt&\bK ;KK9,D\\LP))9ƉJZt&99DfN~[WJB fv9D&N1;9 ;!ȍ JfNэBɈH1ɃfXfNfot&@xx뿐t&DLČ[^_]ÐqAQ&@KJ I ;DK@K+@KT$$迀fVrfPDI։Jɉ=p99fN9K)F:t:u@N)+99у&OJDK;@KtO DK2fxHH;HB*뤍HKHK렍PDLH5~LDfNJDK;@K DKpfPP;PFd딅CCBLD,IƉf9HA 8.׉ʍt&:uG끋HK=HKA>f9A18f:ujW: t t&: uRJW))ʍ 9‰rI9уD$ $,| D1HqD$${IɍD1H)UWVS,] EUxJ@tJ+pJE䉃Jȋr1u1҉xJ19}N9P҉Uƃm U]֍VZ9uu]։|Jl l n l}ǃPT@)ƍv9lu}J,[^_]Ð 9E䉋JPm dNUfB|ǃ|J,[^_]f\$$謀ǃ|Jٍv]܉JBP)|JBEf@z:NL MJM NfJUN}~P~|UE؉\$$EUWVS<E] 0T։)fk1ɋ}43w6)94r99҉ֺNn  2O1f)օf7JM1Ql v:88ltzt ΍JxJtJ+pJȉJ11҉xJ199P9x9~񉓀JH)ʉ|JJw)R҈Vuf&VNP@}fGx|hl d<[^_]ËߋM|JJ+TAluUf>T<[^_]Ív@ǃJ\$<$!}9U@1UWƂl l_]ÐUWVSME +u??47׍vl}ÉfBABABABABABABAw}ƒׅtMtCVWt7VWt+VWtVWtVWuFG[^_]ÅtE𐋙?<;?mu˃[^_]ÐU]]uE SC9ЉCv,t 9CD$$2}ts]u]Ív$` ␐US]t$~CC[]ÐUS]t$l~CC[]ÐU]]uE SC9ЉCv,t 9CD$$B|ts]u]Ív$` ␐US]D$$vSM L[]ÐUSÃt$}t$}[]ÐUWVS\EUe M1ɋ}O1t&9wiU 9u⋓C*u u,T$D$ L$$‰$g{=R D$$D$ZTL$T$$xD$D$ $Z9wUe3\[^_]Ðt&OK1҉Ӊ9i4D$F$Kn$ b}$:CK2D$ T$L$$$T$VP9_t&u :u"D$D$$D‰${T$D$$D$D$u $zt&Džt&T$ $uT$L$D$ $FuT$L$$` 2ED$ D$D$$FÉ $vw$}{t&US]P u NdtpVd$`[\[ u"h[d[ t[]Ðt& uzuIZ㐍v'UX ]] u}1s04$2r=w0$go=v]u}]Ðt&CUD$D$ %=t$$D$YuDD$E$uUC$uzt BwU\[`[55 t9| 9Ud[h[55 t9p9bfU$jzU51ۉD$ED$$yFt ÍUB%Et$D$E$su$ED$ET$$pUT$UED$$vthB%EttD$D$$Et=D.f1mt&1ۍu:EL$$WU] Et$$EUEEz&UEEEvU} -]Ít&UVS] $ZuN1u6v f_D$;$Ut1;.D$ É$[u\$D$  D$D$$ [mCD$ D$$VF  F =L&; 3uF @\$4$(C{<- <: Dž$=i1҃A<w  <+<-t ɸtȃRp[t[x[h1$icD$ D$<$U &$hu)t&$X {u ƆqZJZ{-{ƆJZƆqZƆ[@D$\$$WDD$|$4$TpƆIZdƆ[X{-C{ ƆZ5Ɔ5`)ƆHZt&$ CPЀ„t01<-Dd<+\<-TKSZЀ ҍz$gDž<`25@ vDž|,Dž]C$f\Z뿉8`ƆEtD$$*ƃUd[]ÐU(uu ]]>-t ]u]fD$"x 4$\1tD$ 4$\taD$D$ 4$[tUD$D$ 4$[¸uED$t$$Effƃ떍&D$t$$!V$c뇍t&UWVS,u }U~) f9~U<$D$Uu,[^_]Ð&U}} eE1]]uu?-VdxuK|uAxD$|$$gZè|D$t$$[4$t&OC1҅$LeLVd$FW$ D$LBLEX ?@Pd\pPL$KU$KU$KLD$ t$<$D$$1PPdl$LD$|$XL$dt^D$t$$Z$d:Od-O1t V6E‰D$L$$Ee3]u}]ÐT.&Pdt?@t$|$$O뚍VdTD$|$$WthhD$t$$DVd$Uv'U]E ]uCCC CD$$CC]u]ÉƋ4$=v'U(}}]]u4?t$$|$CD$E $s]u}]Ít&UWVS,}]u |$$Rt 1}䐋S;JK  9Ew,[^_]ÍUVS]u D$$CPS CPS CPS CPS [^]fU]E ]uuD$$ou u]]][v'U]]uu D$$MCPS CPSψ ]u]U]]uu D$$CPS ]u]Ít&U(uu ]]}}F$D$F$D$7F $D$'u]u}]Ít&F }]u]E ]FUWVS,]CPsE{ 4$$9Eƃ$r4tt&t$<$9u4$6u$$3UWVS$U oB=EJuEEM܋M싶UԁuEMf}u}܋ E)#Et2U;s'>8E muŃEU9UUԋMc11tE9u9B u }Z1E~#Mu싁1BD9uut*z t$11Ƀ| =uvB f$[^_]ËU9U8U1MЃ&;U} 8 uW=~=MEMuIEDŽUEU9UBt&MrB u10Z3U t&8uȉ)=~UB U1oUE]fU} WUSt"1D  =uƂ[_]Ív1zǂtf,H9r뛐UWVS E UNEЉE1;UsKFE1E 1% ;]r9ރ]9U1wًU E싊@t1u [^_]Ðt&U ǂ1u [^_]Ð&UWVSH}] EEGIǃE1}EEEȋuEEIEEEEE}EEȉE1} 9 QwTUtut ut u֋U t}t}u}uG‰U‰MƉȄuMuЋUԉTuЀt9Eu9uIU9U=}3H[^_]ÍEM9M}H[^_]ÐH1[^_]ÍM9L\ME}ESU9U#፶UWVS}UEEEڍPUv?1EEU+UE EOэ9‰UvCuؐt&u8 0*()ʉ1)ʹ OуU9Ewȋu؃E@}u9u~ ~2u}܃9}dEE=LE܉E܃[^_]Éu}EEȍt&UWVSPE]~U19uEMEE E̋EMȃEM }EȋE9EEԋUȋ}̋uEEMEЉEE؉Ӊt&u}]9u~J<9Mwσ [^_]Í&9}s}t&09Mw [^_]Ív9}F]fX^;f fz9Mw [^_]Ív'UED$$ÐUWVSL]EEE fUȉMԉEEЋe9EEvǃ!ȉeUۍP!UU8U1Ҩx}nu UЋ )!9eu ;E!ȉeD$Eԉ$uD$4$D$4$i4$D$V4$D$C 4$ D$.eEt&EM9EuȉuL[^_]ft&xU!ǃ :>M̍t&M<#}̉ : >MǃEU+U!ʉUU)!ʉUFU!ωUU!8>uWUtP1҉Eĉ] 9Uv]}č!ˍ<:!8>t߃Eċ]vu9t&uۋEԉt$$;t%eE#e&UD$$ƍvUD$$u MԃD$ $]eE. J&TMtUWVSE }]UB$ B(9BB4Z8B<1҉]f;U8tuHMXH]MHx 8 x <}x91M] ] ] ;Ulv[^_]B$ B(5BB4Z8B<&U1҉WVSE]} @M@$ @((@4~^1(fEM󋳴E L;Et2 MtFMqvEM ;Eu΋EP8EUB<[^_]ÍEED댍&'UWVSE}uU |E}uxU@]x|p8xpE@$ @(@4p|%()҉}Eu7U1)щ)ډu1)41)udUuԉ+uĉM̉UЉ1)uu؋uč401)uu܉+uE1)uu1)EEEuYE1t&T9vDuw$` 1}Et&}}E9E~bŰuЋ}ԋE؉dU܉uu}}EEăEMUu}Ecv1}}}EE9Ett9Uz|}E|$D$x$1lDEpUE Ĭ[^_]_&1})E&1})E&1}E&1})EUWVSE eU1ҍ}DžhuDždHEDž`DžPxLP9LTt&HmTZ (وHJ(وH9uߋP`ot&*P҉1)9u偅TPT9L`lPt P6`d9w 1;hv 9hЃUe3u Ĭ[^_]\&UWVSLEMU E<ɉ;DžDžDž91ہL*Lɉ1)T*҉1)T*T҉1)9~xӍP9Mщ; Dž0DžDž1;Dž;aHz) 1)0)1)pJ)1) u21˃;r;s t<w0~991׉11Dž9};tS1x+t&d~ty19Xރwt7L[^_];捕1Dž뺋EEU ML[^_]5됐UWVSluU] MEV8F$ F(F4^E U E2 t @E}~,[^_]Ð,1[^_]ÍUWVS~uM}듍vkǿv'U1W1VSu] }`t?;w7et^4)#}M 8tEt&u}1~E䉻<8[^_]f49w뜍t&@1Ʌ}~}U܋UE쐍t& 8tTU܋Et<}9ω}r}9t0}9t>9MtQ;MPUMEt&;M}뙐8(뾍8밍8띍UWVSD] uL\HD҉EЉE܉U4eEM+8E}MуMĉuԉUU)#U}u ;U<;@Mԋu})!M̋} 8 7(u2t/}}}u }uFUEU܉u؍t&mm;E,E؋uԅ}+}؀\}tzL9X~DTt:"8?~MUE܃H KPC KPƃ\}E1҅t7}}e}1҃}t&4Ѓ+H#<KC KH;Uu8D$ E<\$4$D$ƃLD[^_]Ðt&}3;UMt&E؃mm;EUm}t́ }봀\tASPC SHLƃ\t:DH}ЉEUЋM\$4$T$ L$ƃL&\$4$ <(ƃLH8D$$0(,,0D[^_]Ðt&E1҅C} E܋U\$4$D$ T$V\t&SPC SHƃ\Lu:8D$ <\$4$D$#}oDD$ H\$4$D${ƃL=}P'==fUWVSMT>L>UT>UT>UȋU <UԉU:UU҉URUU؉)!9U<Uis'Uis'EUis'Uis'M}!ʉŰUԉUȍ&:Utg|is'T is'Tis'Tis'M#9Ut M }9,},<[^_]Ít&UM8ʈUt;M܋mtMU)!9}wUԉUG&}UEE)!؉E}8 U9UmUЋME܃}ЉEАEЃ}88:t}9}ڋ}ԉ}gEԉE\UЉUQ&U1WVS$] < 4qLuM؉EU1҉E]}t ]`u;eE]uE)#@  XEߋE}47uu871u}U 8T8u9U9EtXt{fKt&1$[^_]f;MCݐEDw9Et4;Eu]8v먁yҍt&1]M8n뷁V뤍&'UWVS\E U }8E̋M1;`;d;h;lM U;TL$<$¸gE 4U܉E!؉E؋MUU؉MċMTUULMTM؈UU L<MԋMUU M҉UU؋)!9׉}UMis'Uis'EUis'Uis'M!ʋMUЋỦMMUUMU䐍t&:UtO|is'T is'Tis'Tis'#U9Ut1\[^_]Ít&UM8 t!U܋mt׋U)!9Us1ɐt&UME)!؉EU:EU9U(ME܃uX}tQ1ҋ}؉E] t&9UvM̃] !!8t߃?E]vM9t&D<U׈PD;@Dr Mȉ $ We#ev19Eǃ }U!:>1҉Ẽ9M܉ w1Ƀ E"ft}E!:>t׋EǃXMĉ $4EȉE\[^_]SVv 7 Uuu}} ]]eE1$D$$X|$ t$\$$tZ\D$D$ D$dD$$\$$` $` D$$` JUe3Xu ]u}]U$TɅDfU1UǂD=u]Ðt&UW1VS1ۃ, iu~tVƆ$UmEƆL8 $MU$ D$$EƆt8P߉4$M $T4$LU$ b,[^_]ÍUWVSME eU1ҋ}ɉlDžp&pli4^h$}htt&ut\$DP$tݍM $D$D$ D$dD$bED$$` $` D$$`  tf$pp9U"Me3 u Ĭ[^_]UH}} uu]iהƃCMԉUD$$UD$D $UD$DP$MǃCA \$$e#}E4$D$D$]u}]Ív'U1҉WVS1ۃ<}׉TiÔUԍ4EFE$E؋EMЉ$AMЋUԄuB iÔ]܀|u$Uԉ\$U|t&E ׃UE$E؋UD $ZE$E܉<[^_]fD$̟ $` D$` 8D$$` EE܃<[^_]fUWVSUMeEtGdCK SDž`\)9w 19ȉCu‰$}NuXP9X7TLL9DuvHD$D$б $dh;Td҉PHhT$D$ $xMEEe<$+[^_]Ë<4$+)Ɖ`x&UWVSLu]b DžM+DžF1=F1hM)E ;G#OwG+$G hD$D$P$Bˉh9f01U +)‰#~FVF $FGG‰FkD$ЀD$$I9{D$T$$E9s2ht$T$$L[^_]Ð&UVS@E ]uԉt$D$}E؋E]ԁ $Et$$D$p~Er$D$EED$H@[^]ÐUSE] Ue tJvLvGv] UE[]&] UE[]%t&[]v] UE[]ݹUWVSu]uDžDDžDMoE 6Dž\DžTP,f}+T i\,Hd1DžXL`TGXD$$.9dM`,H)U Gȋ`\#HPSǀ$H(Htƀ ΃dZ9uCPD$D$Ж$XhX(ɋ8tIH~~:;X`;ƃL$pUv$`EvE$e&'UWVS,E} ]UE܉4UED$4$*D<@D;@Dr4$5'U܉ jEU܉$D$T$,Et]U$T$VUB R5?~ ǃ?0~ ǃe҉t eD$$udtsD<@D;@Dr4$6&tu,[^_]&,[^_]ËE$D$u f<$D$D$<$D$<$0PvD$$vǃǃ&'UWVS,]U ƃeeLD$4$u @@F}U ɋt/}䐋U΋}))ƒ?97sڋue#1E܋pu4|is'is'?}|}}is'}|}}is'T#<#1u䋋fqu]u]ÍUW}} u-$"W0eG1LJ_]ÐU(]]}} u4$];ǃCC CCCCD$ |$D$4$D$$+]u}]ÉÉ4$$$US]M ~"11t&9~<~t[]Ðt&t A[][]Ð&'UWVSM ED$D$Ή˃ x0,eE14$, v D$D$4$K,f1144'󫋽,= ||P,B=~0L$}D$$=ED$8L$|$ D$$R1ɉ0Ή(2D5<D$0D$$q1ۉ|5uY~0t3D$D$$0CD$D$ $~(10&;||;q|;fG1=)Uȉ$ 4$T$UT$ D$4$L$$xmEe3[^_]fHw 8T)ʃ=&<v}t&0D$D$$B0D$D$ $$&:T_:TUPI$L;Ww8D;tC,94$)ЃTDЉT$D$ v:D;u:D;uG1=iM$ 4$L$ML$Q D$4$T$7$5f 1Ҁ|;=M̉L$M㉅$L$ 4$ D$4$T$$1ɀ|~0<ú`<V@D$D$4$, ,ƀL8L;=~rMĉL$ML8 ufDž(L8L(~(fD8ulj&UWVS$E] pK1+ X1d󫍍<󫍍󫋍C9v{ƅƅ&JX9vE tuquȃ\9wMXD$DžXD$+ $MD$D$< $Et$D$$EL$D$$tC(XD$xL$<$D$ D$+D$D$ <$D$D$<[D$t$<$D$ D$3\$ <$D$L$D$Ĝ$[^_]fJ z?w\@  w|JB0t&zw@ tt&`t&8sdƅ;v JdJ 0t&C€:mpf8\Dډv z&   JƅdEC!, tUWVS}Gt&11ې0Ƹ T$$<9_w߃[^_]Ð&'UeE4$u |$04$|$]ÍUWVS\] EEEsC9ƉEE{ EBf<<<<<<X<9uv4uVKD(x9)у C9uKẁ}Z\[^_]fFE dU܋SU9щM U+M SKKFEFU9)ыUK S  z} F<EaU܋K9)ʉUM SSET$<$_E +MKC&FE}w U@ DM܋KM9ʉU)ыU܉K S` 5KU# 9P)K S)ʉUM܉K ʉSET$<$E +MKCt&E %MU+M SMST$E<$EE U+M KSU# 9)K S&)ʉUԋUM SST$E<$E U+M S KKE# 9t&m&MԋU+MMK ʉST$E<$[UE E)UԋMԋU܉KSD0D$z<$D$f)ȉEM CCUD$<$U +MKSF4T${<$D$VI L$EU<$L$uEU # D$<$T$It&E܋K# 9)K C\xs K(9) {ɉK CKu\[^_]Tt&<$HC EUȉD$ T$$ {MЉ\$ $ƃEfxK(9) SK;uDK<$C EUĉD$ T$$~ I\$$Ev,D$y<$D$FD$<$D$V1]܉É}׍vMDD$ $D$i9w݋]܋}f &K9wk) SKEiBUD$D$<$USfCM<$D$MCAC)ȉEM CCUD$<$U +MKSe&)ȉEM CCUD$<$^U +MKS)ʉUM SSET$<$E +MKCL)ȉ SSET$4$E )ɉK{C4$D$CCu\[^_]-t&)ȉEM CCUD$<$vU +MKS T$UD$<$GUvK CECM<$D$MEKCfUWVS]Dž\Stqؿ@1ۍ&i pHN)ʁ@G׃VV $@@džP9w\ËsƅPv KP\1\HPDH҉Hiȸ H؉X1\1DžLTdD`Vt&`@D$`$a@ddTX)9\'D`DH9`F΃\dyPlDD$h`D$A@$L@hL@vC 9d!PPT 9\&\e`Di Cx@t$#C[^_]ËL`HK01`1҉ÉDDDžddDžLdtfDžLdtL L 7` ø ;\`ҋNMHLxDžddDž4dtfDž4dt4 4 7LN >H1ҋ\DžLHd14W``@D$ $Q@ddTX);\4`4A9F΃\`dyPl4D$h`D$A@$̨L@hL@L`DžTDžPX``TDždZ1Gt&`$`t>tmD$$"964 F;dv+dXD$dC $D$FdsvD$$&둍+dXD$dC4$D$fd4`Džd1Ffd.xLDždyLhD$t$C$賤LhD$t$C$菤v'U@M+E Q?9sv'UWVS}_t&11ې0Ƹ T$$ 9_w߃[^_]ÐUS] t$ ][]U]]uE SC9ЉCv,t 9CD$$ts]u]Ív$` 蜻␐US]D$$vSM ]L\[]ÐUt$"ÍUWVS,}$DGEE(ǃ0(D(ǃ4(ǃ8($~h($p($b($TuEG G$GGGG,[^_]ÉNj0(}t*])i(;]t(0(E$聊<$蹋t&UVuSt:iX(9tt&(0(9uE[^]/v[^]Ít&UEU @ P$U@@PUP]ÐUE@@]Ív'UUBti(]Ð1]ÍUU]iB(Ð&'UX]] u}ƒUtiMq(Vtn1D$#ύД1EMԁTD$ E|$t$D/T$$]u}]Í&ĀT$茖Ąt$ T$$D$>uD$$` Ur(M.US]  <w[]f$l $Ā$T$D$;E E` []郷fU]] uĀ$谕$u t$$D$荧]E uE` ]!UW1VSLEuUM] E܍/UME؍t&$;U|~ L[^_]Ð;EsD$t$Y\$4$E\9U䋋XE%}]EM UL[^_]f9Mv݃vF($>0Z\$4$lhƆ0Ɔ00Udž/dž4dž4dž4dž4dž 5dž50D$\$$賜Ɔ0w{/MNjptEUƀEljD$$D$tx95\$4$`vEELj/u$ $T=&$vƆ/|U(]]us,$V4$/$萑E ƃ/ƃ/ǃ/ǃ/ǃ/ǃ/C(ǃ/(0]u]ÉƉ$4$謅4$EEލU]]u/t4$4$~/lC,$]u]]Ƌ/CC,$$p4$t&U`U t%v+ t@t t1]Í t@t1&UWVS쌗EU} uhEhUheE1hhth^P4t$$t$h4$hD$ |$$T$ u@ƅh4$$Ue3hČ[^_]ÍhtD$$ thhD$ 4$D$T$wh<$聆|$$D$ D$$ D$D$ D$4$ D$$ch4$UhD$ D$$ D$jh$ D$$yD$ D$4$ D$$4$L4$hD$ D$$ D$h$D$6D$ D$|$$$D$|$$.h2h< hvh<$>Ëh$.$h{$‰D$hhD$Yhƅhh|&hh$脗Ëh$t$h}$‰D$hhD$8hƅhh<~~lj4$$4$쐐&UX}}uu ]t؋u]}]ÐU1ۋ$5uًMMA(uƀxtPtU1D$D$ T$$L$wuEMD$A($iEu*T$UL$B($3MD$A(|$4$D$ED$ ED$ÃUWVS<E eU1ҋ}]u@t@ƅtPZt$D${\$$誕HDnD$t$$Q@ƅ{t&\$$dt$4$~@u DtRD@D$ \$D$<$q$ٚD$t$$)y\$4$u4$1tB*f9B(aEe3<[^_]ÍAfg\$$跰gt$B$UM@@$5ot&@@$D$D$y$[D$\$$wD$D$$g"f$蠒$D$hyB$覒4$D$^tot&B($D$yDž;B*J4$D$ tB4$D$sC$$ߗC$˗_C_&$ (DžUt&F$}uY$_F$L_F_fC$$2W&F$txv'UWVS,U EM}ĀeE1DžĄDtA(0`@D$ D$$D$Wd;Rt&91\$<$T󥋅w‹X\|$ D$T$A($t $T$͉8G(LZu MZ)ؔ$|9|9ǍƅB(,Z&1׹󫋽X\<@A([T$<$0V0Ue3,[^_]Ív$|$D$T$<$A(,Zƅt2ƅu&<$l.ƅG(0`u>\$$fR󥋅$-PDžDž{1t&9|t$$Qx,u߉t$$Q9x0uΉt$$Q@Dt$$Q@0릋G(rщ0`9ʉtv{1t&9vKt$$Qx,ut$$P9x0u҉t$$PxDt$$PhD몋;/v/LSDžxDžLDžPEы|D$<$S끋$t$$ P@,$j omT$$-$' Qm$yt/%A('B(ǀ,Zt'uD$$` 腢G(ƅA(ǀ,ZL1DžxDžLDžP r&UW1VS] M $PQEKT9&zty@M$$/)LT{dTtwut<tGXM\EEE؋EU܉L$$Qzzu ĕxM_t&xut0$0puWtNP Vt?Vt6$k kT $D$0D$$` |t&w0tEME\$L$ MD$ $sEEx$j |jD$T$蚏D$$` uX\DžXEEXD$EU$3Pļ[^_]Ðt&GMpt//-&D$$` Dg&'UWVSl] eE1Us{0tOD$;<$UxkUtst&0D$;$UnUt/uЉ$臀4$D$ > D$D$D$oEt$ uD$D$D$4$oD$t$<$kCt-0$jD$4$0D$BCfCEe3ul[^_]mfUVS1ۃ uED$$6ED$E4$D$肂t&D$E4$D$[{wˋEƍvE` [^]ÉËEO$;oUWVSZ8$d$f<$^Ee3`l[^_]Íd|$$uD$$诸$ S$T$uQ$ S$tD$ $`  4C(HdD$/$ /$轇/$SdC [$CC{C$ v S$VtÉ$d$<$ $GZÉ4$S։҉ÐMX&UWVS<]eE1|$t$$D$ |$t$C($t9C(ZtZD$D$ D$|$4$H랍Ee3u <[^_]Wt&UWVS쌿E ]UM@eE1C(@@H`tǀXZǀ\Z3"ZT"ƅƅ4Z҉@\Z XZDž@ƃ4@= FC(drD$}ZT$ TZT$ $D$@D$D$$UC(0$C[T$5[x $'[C(D$g$2S(H`!hDž@Dž@Dž@AAdrt$ $N@@@t$ D$LhT$L$$D$tA1󫍅h$g1҄DAh$h h(h0$hZxhh $Zht$hDžhfhfhC($thC(R tXWT$ h|$T$$,D$D$ |$D$C($phgL$$4,KC(@@Z @@\Z XZ@Z瀸@Dž@D@DD$T$$i= $ M$(ov ;@x ;@jщlj@@Ut&@D$LhD$ D$D$D$$|ztBC([$У FMD$@$drD$$` 谂g$b10i4$tW4$\C( $D$C(D$N$C(1Ҁ VtVD`T$@`T$ <`T$8`N$D$C(@ZL$$D$ @D$評IC(\Z XZ}D$$$W$D$ $$H"}& $ K@t$$T$lC(XZ\Z ƅi@@$LhwN$MND$ D$L$$iD$giD$ T$L$$EitBLh;"1f9Lh&"gt$$-x,tƅiC(Lh@H`ul@t }uZH 1@@Z@@҉@Lh@@@ҁ9@1t$@g@ $F,P @@@ gt$$,$M9Lh@D C(LZtgt$ $+x,gt$$+x,gt$ $+x,gt$$x+x,9Lhu1tC(rZgD$D$$*2/t4$x4$tI$(M/ƉL$C(@@ 4$D$vC(/Hd4$D$y/$w|/i@$D$l}NC [$CCKCiC(V(ƅi//ƅ@i$舏D$ D$ $DD$ED$$8LhXhDž@Dž@Dž@ƅ@Dž@Dž@Dž@Af@g $T$X)Aƹ󥋍@Xh\h@@@@@hk$P̺ $P4$P$Žhh$$@ C(PZ ƅ@H` }Z@@D$ D$T$ $5@@@U C(H`E @t4Z@@ЃD$ T$L$$討@ @@D$$ D$ T$5DD$ DXhL$D$C($@ C(1@Zt0DZ@  @# o ND$$KO u@$ t&@4 /$ƃ/Dž@Dž@ND$D$$|HhY(1s(Dž Džt$VDž,fDžt @ ƅ4F $D$ ǃ/Ef flh@0 X\`dhlpĺtȺx ̺|кԺغܺ0i4i8i$W |>@t$$T$_@ @H@~NT$ $i $NRt$ AT$D$$ # DAD$ @ɉD$C(E@x$JB@D$L$C(|$?C(n[/t4$bm4$N>ǃ/$C(ƅADžEfDžITZ}N $$@ht$^=gt$L=gt$:=dr$Ee3Č[^_]D$$` n4@Z' $  S(\Z XZǂXZǂ\Zƃ4,. @D$$` D$qD$ $` Io?C(Dž@[/jt&gt$$@,\f;@n ;@`@H @1hh$袙DžDž|@@&`hdh@@D$$:ƅ@ @DD4$_PqfDžXDžDž||t&hCƅ@ƅ@$诇2fhh$jƅ@C(v$RƉ׍D$ D$L$$見iD$T$t$|$ L$$C(0ZD$iD$/$貃ƃ/D$BXT$$VOEt$D$ $;C(@Zt&1jxh|h4$D$T$4$;h4$9ighiT$ $]Dž@Dž@*$ .$8OD$ $` TbN$}i$舃N$ڟ $̟@ht$>0gt$,0gt$0dr$ƅ@$|Dž,.@N@ƅD$ T$L$$zC(y@Z20Z$ƅ$6w ,$6w ,D$$` 1b@@$` L$D$,e@/@4$l1@@=)=,t&S(p[D$ 0ZD$/D$/$vƃ/ f& $>w +@t$$L$L<$tS(<$D$T$(wND$D$ T$<$<$zC("@<$D$N0@@$L$D$PrD$ $A<5d C,L$$V;5d "$$@}DȈ@$ v _*$Kj$R F*ihD$hD$$T$ D$T$yhiD$L$D$/T$$D$ ND$hlpD$ D$T$$v}tx+lp\D$$` ^A4$b D$ D$C(4$D$϶4$'*@D$h  $K@D$rh $Kt!@$J@$nK\@$,@.ext@@t@1tD$  $Y*뙀iyC(tZD$ $` \N$sw$ '($_IRDž@Dž@Dž@(Íi$}N $$g$}dr $$ /&-É$멉É4$z(띉막É4$膳덉É<$v끉막ft댍É $vMÉ4$(n>É4$n/t&UWVSL]eE1D$ C($@C(>t&C(P VdD$D$ |$t$$C(P D$ |$t$$ϻuEe3u'L[^_]Ít&C(ƀl[+US]t$(Ct$(tE[](f[]ÐU]] uuD$$=u S49V4t]u]ÍvUV1St!Ðt&҉$=I<u[^]Ðt&U8]]uu }C,uF,1҅‹]Ћu}]Ív~,t8 tFmtɋV<9SZ/$ v \ $,lj$c}4$[}$v'UWVS]}܍u䋃$]0$&|$t$$u~$ "E܉D$ED$$0|$t$$uʋ@t$ 0t$ [^_]ÍvE؉D$ED$$D^E܉D$ED$0$E؉D$ED$$@Åt$ 0t$m $%UWVSLueE1P0d<${${TD$ D$T$4$贞$* P T$$~*t$$Rt$<$FTD$T$$jjD$$}R$Bh4D$ f0D$D$$ 1 VtV,<$}D$ D$\$<$6\$<$lZ\$<$1t&>Zu$ v 3$k)Ee3u)L[^_]ÉƉ<$*z$"z4$^u UW"x VSEeU1ҍ0d<\<$Q%W ƸB 󦍵LcZu$ v $'Ue34[^_]fD$t$$B c<$S't c<dZu$ v k$Ue3urĜ[^_]É\$4$ P$NjPt$4$'l$l4$[Ǎ$wIdˉѐU8]ÉuU}tGU $  t$ L$\$$Uu'${ s$]u}]$d L$fU8]M]u֋U }NjEM]tfMk2]T$$L$\$ 9@40$v#D$D$ $D$pۃ6(,<#D$dD$ $dD$$<<,(Dž<DžP<<Dž8DžXDžhP<DgX9T<<<$Zu$ v #$[Ee3u ,[^_]UWV1SÃ,҉U ,[^_]f1;$t;9}tP݃,[^_]ÐUWV1S E eU1ҋ]D$@D$L #$=1&tUe3 [^_]Ð 1󫍵dfD$t$$t d#tD$1D$ $uD$D$ $]dD$D$$Cv)D$>6D$$#zuۺfyiclMaUf1dn!t:@ $D$\$D$\$4$^u1mf1$\  !%tDJD T$D$ D$ $\PD$D$$^ 9Pj 9TW1t$D$ $ T$jD$ $ t$D$BD$ $ T$t$D$ $ t$D$D$ D$4$d   !%tDJD T$D$ $: 1! t€D֍qD҃ L$D$ $ 1! t€D֍qD҃ L$D$ $ 1! t€D֍qD҃ L$D$ $M 1! t€D֍qD҃ L$D$ $ 1! t€D֍qD҃1 L$D$ $;  =  &w D$ D$ 4$ I (~ u$t݉$ D$ D$9 D$.$tUz*@tL D$ D$$ B$= |1W{ M"KD$ D$ 4$E  t&~ u$t݉4$ D$ D$ D$.$DžDžtbP$ D$ D$ D$.$nt!D$ D$$,$g,$0;,4w%9w9t&x V#61 1D$ D$L $ уL$Md$$D$D$ d$D$D$ sdd$ D$D$$򮍅dD$ D$L $эy|$%M QdT$D$$1d$\$ D$ |$I D$T$d$d\$ D$ |$$L‰t&D$ D$ 4$A  B$j `t&UVSuP$#E D$ D$D$D$ED$D$D$ \$$=LtIt$$wË`t$Pt$[^]Ðt&1Nj`Åt$lPt$Z$&'UWVS0EeU1ҍDž@?@$D$6DžH  DžL DžP Dž8$D$D$$$D$\$=4$D$4$h$!$$?TTDt&D$\$4$t@D|$$D$tΉ4$^Ue3uC0[^_]f4$888t8H@|iÉ4$$7UVS`e M1Ʌ&t1 tE t@1t&1  t* t%u9r Ee3`[^]f9s)ֹEEGЍ]D$ Ft$D$$3D$ $#tD5t؍43f8w 9uEu&t< t$ D$ $D$ $# ;(\$$) & 뫐t&t&'UWVSDž8Dž<DžHDž Xʋ 40ʉы)ϋ+B‹084 $f4$EQ8ʋ89rqf8)׋+= 0Bщ4$8M4 $8t9s84<$D$4uL$4$4$$w8 $i1[^_]ÍX48D$E$4$' $4$1[^_]Ít&UWVSu$t$9X\$|$$sXt$D$$=XD$$XD$\$$t$<$iXD$8\$$44|$<$D$\$|$<$\$4$E[^_]Ív'Uuu ]]}u tFtRt$$Ɛt$$ubǃ]u}]Ðt&ut$Ɛ$Ðt$$]u}]Ðt&$H]u}]ÍvT$8 $D$t$\$<$~|$4$BXt$$L$vXD$$XD$D$$"|$D$$ D$\$<$X|$D$4$D$t$4$t$T$$$D$2]u}]Ðt&U8]] u4$\$D$h\$$PEt$$]u]Í&UH]]u1}u]u}]Ít&X\$Ð<$$|$\$t]}u]UVSE ]DžhlhD$$\$$\$$uĠ[^]ÐU1U tB]Ív'UWVS} ]7uK|$$f\$$\\$$P|$\$$uӃ1[^_]ÐGt[^_]Í'U]]u}DžDž%X8\$<$\$|$4$uD$t$4$?XteD$<$u|$4$t$\$4$ Xt_\tV4$^<$V]1u}]Í&ǃ4$.<$&]u}]Ít&t$<$d81t <9E t<\$Ð|$$}땍vÐ$D$]u}]U1U tB]Ív'U4$u|$}  94$|$] U1UW_]Ít&'UE D$ET$$/É'UEU P]ÍU1MSt(Ћ X &u9u1[]ÍU1S]M 9vȃD[]Í&UUVS] 2 F9wf 9s29v 3tV1ɍv  439st0^t&9s 0u[^]UW} VS]t^1&+)vf1 9sօt"4uDt&ƃtt[^_]fty\$4$ D$T$ \$<$ tʍlT$$!%tDQD+D$ 2 $L$D$D$D$$賃D D$ $ X4$P<$$Ue3u2[^_]ÐE D$ 4$D$T$WhA'U(ED$D$ED$ E D$E$U(ED$$D$E D$ ED$Q UU t!1zu<u9v]Ít&1]Ít&UAW$ VSEU]Td18u[^_]Í}T<$$1ۉt$Et M $ӄËE TdU D$L$ D$T$<$tM\$ $訁$D$E$p1lUMAPʍ D$E`\$)`\ $\$p1t"tt $,1$,Ћ,19 ,̓9,DUe3u <[^_]wUE$ÐUWVS{E Ue M1ɋ}u8ZuUe3 ļ{[^_]ÍvD$,$,t$ $T$*t;tE  E‰$qD$T$$軖, $b t,D${ $Iƅt,$/ $D$T$uD$t$Ą$MsDžbf$ `uÉ$Bt$$D$\L$ D$t$$迣t$$u 8Zy-d1 9L=x~B$ oD$ $ÔDž)‰x1ҋxȉ$9t?  $tR $$H Zht&U$D$ D$2D$D$/uE\$L$D$ D$D$$tc$ rƉ$Ķ t,D$$D$ D$D$D$,ZL$ t$$D$D$u",D$$` *T$D$D$D$( hmL$$薎C9Dž M $D$ D$2T$T$T$D$s\$L$D$ET$D$ D$D$$esi*D$ D$ 2D$L$L$L$D$2$l\$ D$T$*L$ T$D$ D$D$ $k T$L$$` 輣,$ -*D$X D$ 2D$L$D$2$Ck* \$T$L$D$ D$D$$k"$u 萌Hdt.1i0,ЄT$$9wԋDžtDžDž&Dž11t&JT$D$$޾;t7)pL$D$$lp9֋L;u 1҉=Nƅ 1Dž;vT$D$0' $n+9މ)؋9Ei0,Єܰ‰;$9ct"D$+D$ $w1ۋ҉~B&Ht$T$$脾9ŋT$L$ $T$衯ÀZu$ v Of$臇,$Y$ (fD$ $F$ f$=$5 ,$蹗;ރ${u$R;Ąރ$u{uxÉ4$df,$$lƉ$BfjÐt&΍&'UWVSLEeU1ҍ,;,v,~/$, ,1  9u,,D$(,t$\$$D$ O,,~C1&(,$, ,  79,,̋9,%Ue3u L[^_]uiUE$ÐUWVS윿EU M]@eE1E@@@$D$D$h\$D$@$e$ID$# $O|;@ƅ@v^1;@v]tYK@C$xuމ$x3~ {_f";@wƅ@$xx*.*^@$HQ@L$$QD$$Q@$ld$l$tl,,$@D$t$$^Stv@$T$|$t$$tD$$4t $D$t$fD$|$$c$t@ $fPƅ@ƅ@ƅ@@$\$1T$L$$Un_h$ۮ@@T$$t$\$@D$$"e@)@@*.ref@vDžtVt$T$$ǍD$D$4$b+@D$ $_$N\$ $#OD$${O@$jd$j$j,,Dž@Dž@Dž@ƅ@Dž@Dž@@@,D$T$ $P@{@@u$ ^$!ƅ@,D$$? <$V,,T$L$<$jD$ D$D$<$j<$ÃփD$ D$T$<$@<$l<$h<$гdDž@Dž@<$訳@@ @@ uփD$ \$t$<$H;@$u ],\$$~<$A$ u]T$D$$菂1ۍ $o؋]e3 Ĝ[^_]f, $"~ƅ@t=P;@v2@1<.u &<.t<_;@w@,$~t8P;@v-@1Ƀ.t#v_;@t@,$u},1@ƅ@@ރ$0rhD$ D$4$^=duƅ@u@ƅ@hl3=@t 9@@t 9@,$D$D$)`,D$L$$]$  `lj$,,D$T$<$d@؉|@@ @@@<$ԭ@@@@&;@t&90<$0v}t&.ƅ@$@t @1ۅt.$D CZ@$\$q{@1ۅ$3I${;@vqX1&;@vPtLC@C$ouыމ$ot ~H{_tBJ;@w$eou)D$ 4$Xn9vӃ@@@1ƅDž󫋅@l@1Dž@@D$ D$T$$̤1@Ƅ59$w XL$$y@@@T$ D$L$$裋;@$\D$$6T$ $ζD$T$$誣D$$j $ȥL$D$@$0\@D$D$_ $YD$L$<$Y~$l :WT$$hx$ku W@T$$L$@x@|$ D$L$$z1D$ D$D$$訪8$`$(tT{u㍍L$$? wtD$ \@XT$$D$̽9@X$u $VT$$RwMD$D$$ZD$T$$AX-D$D$( <$tXe@ƅ@Dž@$w U@$T$v@@9@$d FU$~v@@Dž@ۉ@1@1t&4t9t䉄$, T,T$ L$D$$y1ۍ$C>$ T$u1$d wT$uL$\$$` 1띋@ƅ@@$u eu1Ҹ@@@Hd@t.1i0,@@T$$9@wԋ@Dž@Dž@Dž@@3@w11Dž@f@@L$@$T$蓧;@t+@@)8T$D$$T;@N@@@9@~:d@@T$D$$xTf@@@@T$ @D$L$$趙@ÀZc$ v xO$pJ$ _O$5 pTÍ $W$VÍ$?>D$$ED${$E'-D$ $D$T$蹢,D$ t$$1҅99D$ $D$T$m$U,9~<uƉ$hƉ$+OÉ<$OË@$3=$oUÉ<$葝Ɖ$͍&'U(]]u} ǃǃǃ4$2jD$$|߹1]u}]ÉƋW4$Tlj4$jߐU1҉MSǁÁEÃu۸=u[]Ð&UWVS uU$1$9U1ɍ&E ti)ȅ~aU1M}<L11$ |3<L3<L1xk<L3;.<L1 3|tAt8 1;t) X1o1Ƀ1;u׋9E~F'vt#<19E~ u119E싅D9,$ƃ,x1DŽ$9~}$ǃ$MDž$M+҉~cNj*t4 1ʉ;tpu11ʉ;uჅE9b+Uǃ )҉E11Dž1tX1;S$)‰)Љ)‹u11111`1#11&+;E}[xW +  1ʈ$9  ;$<[^_]Ë| jD$|$ $D$E$ 9h`MDžt&)߉y111.ftT1ǃ;L)‰)Љ)‹u11q Dx11.ftT1ǃ;5)‰)Љ)‹$u1빋 DŽ UUE W׉E EƂǂƂEǂ ǂǂ1Ƃ,0ǂ,4_]UWVS}xf4t4$/4$Ay[^_]Ít&UWVS,]D$  |$t$$L1u  ƃ ǃ4$+}1҄14$]<.F)$0 D$D$4$$]+(0ǃ  D$t$$%DD$ \$|$4$Y,[^_]Ð<$ ]‹.#)(0vD$D$ 4$nA<.?&$b t&Bt<.z4$bD$D$ 4$@ot&D$D$ <$At&D$t$<$&Bt.B<$ObD$D$ <$@UWVS\(]eE1u N t$$T$.ƅDž JfD$/<$>T$D$ $VA9D$|$$!AD$/<$> $T$@v  D$/<$AD$D$ $r>9D$|$$:>D$/<$zA#$T$0;҃<&uID$t$<$?<҃ t&Me3 \([^_]Íƅu 0>f,4#D$D$ D$t$$҃ofxct,4thD$D$ D$|$$t:ƅt&$< :|$$D$0_$` oD$,4$W u<$SW $D$D$7>D$t$<$#><$=!сကtDʍPDɋ+D=wD$ /|$D$X L$$^$.{ 8$D$]1҃Rm $BVD$D$$,=t& T$<$[vƅƅ$$<$ '|$D$<$<x|$$' g.vt$D$ D$$'҃fD$D$<$; $TD$D$$9 DžDžǃ t$D$ L$<$&TƅBD$D$<$8<$Tf*vD$<$L$8|$$%R<$ZD$<$D$U8 +y 3 $wSD$$D$7D$D$$7 $YD$D$$71 t'tttqƅtat&u  0~t61Ҁt| tsƅƅƅ뛀,4҃tOD$D$ D$|$$tƃǃ ,0|$ D$L$D$$` k밍D$D$4$ q<$mQD$ $!3[<$ QD$L$$p D$D$ $5 8Ë$3$a:UWVSu} x:tA|$4$tNt߅uUt tf[^_]Í4$u[^_]Ðt&덍&u4$q[^_]ÐUWVSZyK1)t$1ED$E D$E$9rރ[^_]ÍU]Ë$ÐUS~ t~ fЋu[]ÐUS[9Y[ Ph 8RAR_EXIT%02x*?yyyymmddhhmmss.rar%04d%03d%05dYMDHISWAENHOMEexe?*<>|"?*/etc/rar/usr/lib/usr/local/lib/usr/local/etcsfx*?/.rarexe00?*<>|"?*h h h h h r+ww+i 0p4Fileh i  Creating %-56s%u.%03u Calculating the control sum%3d%% %u.%03u__rar_tmp%.*s(%d)%s_Yes_No_All_nEver_Rename_Quit Enter new name: %.*s(%d)%s %s already exists. Overwrite it ? ERROR: Cannot modify old format archiveCorrupt archive - use 'Repair' command The comment header is corrupt Unsupported archive format. Please update RAR to a newer version. The archive header is corrupt You need RAR %d.%d to unpack it Cannot encrypt archive already contained encrypted files The archive comment is corrupt ERROR: Locked archive ERROR: Cannot modify volume__rar_AV Comment: The file comment is corrupt ERROR: Invalid file name %s Unknown method in %sCMT %s is not RAR archive ERROR: Bad archive %s Adding data recovery recordProtect+ Locking archivestdin Reading comment from %s Reading comment from stdin Deleting comment from %s Adding comment to %sHHHHHm  p 7Archive m i  Unexpected end of archive ERROR: Corrupt %s data block- ??? ERROR: Corrupt data header found, ignored WARNING: Unknown data header format, ignored %s - the file header is corrupt CRC failed in the encrypted file %s. Corrupt file or wrong password.gQdcocb6baQdhhIjShhh_i__rar_%02u-%02u-%u %02u:%02u%02u-%02u-%02u %02u:%02uJanFebMarAprMayJunJulAugSepOctNovDec`o do ho lo po to xo |o o o o o  Cannot open %s -------- %2d %s %d %02d:%02d:%02d %s for %s: Reenter password: , [%c]%s -------- %2d %s %d, archive %s Enter password (will not be echoed) ERROR: Passwords do not match WARNING: Cannot read symbolic link %s WARNING: Symbolic link %s already exists WARNING: Cannot create link %s User break Program aborted %s Not enough memoryWrite error in the file %sRead error in the file %s Cannot create %sSeek error in the file %s_Retry_AbortCannot close the file %s ERROR: Not enough disk space for %s.o`J5Nk`pm[.4nrUB0gm(pj>U(z\R6f5hW9~<x?i7}],煼(`ŹFFFF))EE FFFF))))))FFFE @ff ERROR: %s group and owner data are corrupt WARNING: Cannot get owner %s ID WARNING: Cannot get group %s ID WARNING: Cannot set %s owner and group WARNING: Cannot get %s owner and group UOW %s - use current password ?_Yes_No_All Skipping %-56s Testing %-56s Cannot create directory %s Renaming %s to %s ------ Printing %s Extracting %-56s%s%s %-20s - CRC failed Testing archive %s Extracting from %s No files to extract Done All OK Total errors: %ld WARNING: You need to start extraction from a previous volume to unpack %s WARNING: Attempting to correct the invalid file namepart.%s%s1 Cannot rename %s to %s Create next volume ? Disk full. Insert next_Continue_Quit Cannot create %s. Retry ?_Yes_Nosolid Creating %sarchive %s ... %-58s Insert disk with %s Cannot find volume %s ... %-56s %-20s : packed data CRC failed in volume %s Name Data header type: %s %c%s %12s %-12s %8s %8s <-> <-- --> %s %c....B %c%c%c%c%c%c%c %c%c%c%c%c%c%c%c%c %8.8X m%d %d.%dYes %22s %8s %4sSolid SFX VolumeArchive Recovery record is present Lock is present %22s %s*<-?-> OS/2 extended attributesfile creator: %c%c%c%c BeOS extended attributes NTFS security data NTFS stream: %sSTM %s %5lu %16s %8s %3d%%volume %d 0 files %5lu %16s %8s %3d%% DOSOS/2WindowsUnixMac OSBeOSWinCE Pathname/Comment Size Packed Ratio Date Time Attr CRC Meth Ver Host OS Solid Old Unix Owner/Group data: %-14s %-14s Mac OS file type: %c%c%c%c ; Unknown subheader type: 0x%04x&x_7y y y y y y y & & &  %s%s ERROR: Path too long B^:μtW                       @   (08@P`p @   0@`  0@`   (08@P`p@`  k Lock archive isnd Enable sound p[password] Set password u Update files RAR %s Copyright (c) 1993-%d Alexander Roshal %d %s %d Trial version Type RAR -? for help ee Do not save and extract extended attributes ac Clear Archive attribute after compression or extraction7z;ace;arj;bz2;cab;gz;jpeg;jpg;lha;lzh;mp3;rar;taz;tgz;z;zip ieml[addr] Send archive by email vd Erase disk contents before creating volume ao Add files with Archive attribute set os Save NTFS streams ioff Turn PC off after completing an operation ep2 Expand paths to full oc Set NTFS Compressed attribute dr Delete files to Recycle Bin ri

[:] Set priority (0-default,1-min..15-max) and sleep time in ms Usage: rar - - <@listfiles...> a Add files to archive c Add archive comment cf Add files comment ch Change archive parameters cw Write archive comment to file d Delete files from archive e Extract files to current directory f Freshen files in archive i[par]= Find string in archives l[t,b] List archive [technical, bare] m[f] Move to archive [files only] p Print file to stdout r Repair archive rc Reconstruct missing volumes rn Rename archived files rr[N] Add data recovery record rv[N] Create recovery volumes s[name|-] Convert archive to or from SFX t Test archive files u Update files in archive v[t,b] Verbosely list archive [technical,bare] x Extract files with full path - Stop switches scanning @[+] Disable [enable] file lists ad Append archive name to destination path ag[format] Generate archive name using the current date ai Ignore file attributes ap Set path inside archive as Synchronize archive contents av Put authenticity verification (registered versions only) av- Disable authenticity verification check c- Disable comments show cfg- Disable read configuration cl Convert names to lower case cu Convert names to upper case df Delete files after archiving dh Open shared files ds Disable name sort for solid archive dw Wipe files after archiving e[+] Set file exclude and include attributes ed Do not add empty directories en Do not put 'end of archive' block ep Exclude paths from names ep1 Exclude base directory from names ep3 Expand paths to full including the drive letter f Freshen files hp[password] Encrypt both file data and headers id[c,d,p,q] Disable messages ierr Send all messages to stderr ilog[name] Log errors to file (registered versions only) inul Disable all messages kb Keep broken extracted files log[f][=name] Write names to log file m<0..5> Set compression level (0-store...3-default...5-maximal) mc Set advanced compression parameters md Dictionary size in KB (64,128,256,512,1024,2048,4096 or A-G) ms[ext;ext] Specify file types to store mt Set the number of threads n Include only specified file n@ Read file names to include from stdin n@ Include files listed in specified list file o[+|-] Set the overwrite mode ol Save symbolic links as the link instead of the file or Rename files automatically ow Save or restore file owner and group p- Do not query password r Recurse subdirectories r- Disable recursion r0 Recurse subdirectories for wildcard names only s[,v[-],e] Create solid archive s- Disable solid archiving sc[obj] Specify the character set sfx[name] Create SFX archive si[name] Read data from standard input (stdin) sl Process files with size less than specified sm Process files with size more than specified t Test files after archiving ta Process files modified after in YYYYMMDDHHMMSS format tb Process files modified before in YYYYMMDDHHMMSS format tk Keep original archive time tl Set archive time to latest file tn

[:] Set priority (0-default,1-min..15-max) and sleep time in ms Usage: unrar - - <@listfiles...> e Extract files to current directory l[t,b] List archive [technical, bare] p Print file to stdout t Test archive files v[t,b] Verbosely list archive [technical,bare] x Extract files with full path - Stop switches scanning @[+] Disable [enable] file lists ad Append archive name to destination path ag[format] Generate archive name using the current date ai Ignore file attributes ap Set path inside archive av- Disable authenticity verification check c- Disable comments show cfg- Disable read configuration cl Convert names to lower case cu Convert names to upper case dh Open shared files ep Exclude paths from names ep3 Expand paths to full including the drive letter f Freshen files id[c,d,p,q] Disable messages ierr Send all messages to stderr inul Disable all messages kb Keep broken extracted files n Include only specified file n@ Read file names to include from stdin n@ Include files listed in specified list file o[+|-] Set the overwrite mode or Rename files automatically ow Save or restore file owner and group p- Do not query password r Recurse subdirectories sl Process files with size less than specified sm Process files with size more than specified ta Process files modified after in YYYYMMDDHHMMSS format tb Process files modified before in YYYYMMDDHHMMSS format tn

[:] Set priority (0-default,1-min..15-max) and sleep time in ms Usage: rar - - <@listfiles...> a Add files to archive c Add archive comment cf Add files comment ch Change archive parameters cw Write archive comment to file d Delete files from archive e Extract files to current directory f Freshen files in archive i[par]= Find string in archives l[t,b] List archive [technical, bare] m[f] Move to archive [files only] p Print file to stdout r Repair archive rc Reconstruct missing volumes rn Rename archived files rr[N] Add data recovery record rv[N] Create recovery volumes s[name|-] Convert archive to or from SFX t Test archive files u Update files in archive v[t,b] Verbosely list archive [technical,bare] x Extract files with full path - Stop switches scanning @[+] Disable [enable] file lists ad Append archive name to destination path ag[format] Generate archive name using the current date ai Ignore file attributes ap Set path inside archive as Synchronize archive contents av Put authenticity verification (registered versions only) av- Disable authenticity verification check c- Disable comments show cfg- Disable read configuration cl Convert names to lower case cu Convert names to upper case df Delete files after archiving dh Open shared files ds Disable name sort for solid archive dw Wipe files after archiving e[+] Set file exclude and include attributes ed Do not add empty directories en Do not put 'end of archive' block ep Exclude paths from names ep1 Exclude base directory from names ep3 Expand paths to full including the drive letter f Freshen files hp[password] Encrypt both file data and headers id[c,d,p,q] Disable messages ierr Send all messages to stderr ilog[name] Log errors to file (registered versions only) inul Disable all messages kb Keep broken extracted files log[f][=name] Write names to log file m<0..5> Set compression level (0-store...3-default...5-maximal) mc Set advanced compression parameters md Dictionary size in KB (64,128,256,512,1024,2048,4096 or A-G) ms[ext;ext] Specify file types to store mt Set the number of threads n Include only specified file n@ Read file names to include from stdin n@ Include files listed in specified list file o[+|-] Set the overwrite mode ol Save symbolic links as the link instead of the file or Rename files automatically ow Save or restore file owner and group p- Do not query password r Recurse subdirectories r- Disable recursion r0 Recurse subdirectories for wildcard names only s[,v[-],e] Create solid archive s- Disable solid archiving sc[obj] Specify the character set sfx[name] Create SFX archive si[name] Read data from standard input (stdin) sl Process files with size less than specified sm Process files with size more than specified t Test files after archiving ta Process files modified after in YYYYMMDDHHMMSS format tb Process files modified before in YYYYMMDDHHMMSS format tk Keep original archive time tl Set archive time to latest file tn

, version protectednormalversion != ((void *)0) not defined in file with link time referencerelocation errorsymbol lookup error [%s] _dl_setup_hashundefined symbol: _dl_lookup_symbol_xcheck_matchversion->filename == ((void *)0) || ! _dl_name_match_p (version->filename, map)symbol=%s; lookup in file=%s [%lu] version == ((void *)0) || (flags & ~(DL_LOOKUP_ADD_DEPENDENCY | DL_LOOKUP_GSCOPE_LOCK)) == 0 file=%s [%lu]; needed by %s [%lu] (relocation dependency) binding file %s [%lu] to %s [%lu]: %s symbol `%s'(bitmask_nwords & (bitmask_nwords - 1)) == 0cannot allocate memory in static TLS blockmap->l_tls_modid <= dtv[-1].countercannot make segment writable for relocationcannot restore segment prot after reloc%s: no PLTREL found in object %s %s: out of memory to store relocation results for %s %s: Symbol `%s' has different size in shared object, consider re-linking dl-reloc.c (lazy) relocation processing: %s%s ../sysdeps/i386/dl-machine.h((reloc->r_info) & 0xff) == 8elf_machine_rel_relative_dl_nothread_init_static_tls`8rXpPXXppXXXXXXXXXXXXXXXXXXXXXXXXXXxXXX0dj7#v^5unexpected reloc type 0xunexpected PLT reloc type 0xcannot apply additional memory protection after relocationDYNAMIC LINKER BUG!!!%s: %s: %s%s%s%s%s continuedfatal%s: error: %s: %s (%s) error while loading shared librariesdl-misc.cniov < 64! "invalid format specifier"_dl_debug_vdprintfpid >= 0 && sizeof (pid_t) <= 4 =???%s: cannot open file: %s %s: cannot stat file: %s %s: cannot map file: %s %s: cannot create file: %s gmon%s: file is no correct profile data file for `%s' Out of memory while initializing profiler /proc/self/exelinkval[0] == '/'_dl_get_origin../sysdeps/unix/sysv/linux/dl-origin.ccannot extend global scopedl-open.cns == l->l_nsmode & 0x00004cannot create scope listimap->l_need_tls_init == 0invalid mode for dlopen()_dl_opendl_open_worker_dl_debug_initialize (0, args->nsid)->r_state == RT_CONSISTENTopening file=%s [%lu]; direct_opencount=%u cannot load any more object with static TLSTLS generation counter wrapped! Please report this.no more namespaces available for dlmopen()invalid target namespace in dlmopen()_dl_debug_initialize (0, args.nsid)->r_state == RT_CONSISTENTdl-close.c! should_be_thereold_map->l_tls_modid == idxidx == nloadedimap->l_ns == nsid calling fini: %s [%lu] tmap->l_ns == nsiddlcloseimap->l_type == lt_loadedmap->l_init_calledshared object not open_dl_close_dl_close_workerremove_slotinfo closing file=%s; direct_opencount=%u (*lp)->l_idx >= 0 && (*lp)->l_idx < nloadedjmap->l_idx >= 0 && jmap->l_idx < nloadedimap->l_type == lt_loaded && (imap->l_flags_1 & 0x00000008) == 0 file=%s [%lu]; destroying link map TLS generation counter wrapped! Please report as described in . d'o#ſt[Am-jd8n헧?O>. 8/t#ڰͼ3&N|.[Ӿr؇/PkpnJؕnq&fƭ$6ZB<TcsUe(U܀n_SlgrwFo]:FGWvyuD;s(!>p%"/.Q]OᖬW2Sq$^c_䭫*sf\wI[iCsFEHis 84c)r+[[!|nN5 }L,D4fl}C}Ο+#U>#`e!Q4\Ycɟ+1*ZibBtz["؊4س?ŏmk1Ke6ukG܉ـ( f13j~{j6h߸\A)\='_Djzp؊4|ElݾV}*@|gu "Ωo$po?b(UxI>Nkw};u  #6'0q'"(\؄t.z-TMеub <4 9Ԣ7.~2!'{n $-PԓX+1"#+%? D~br*~xxކzos{'~j=jr1|òAv09&Ѷ~j2=_+0cm-X%<|b 7w ʐ,5P6xPnx [4? E,W8 9qIHۚ풴lMP#*wg:8-ñj@?F[$GtJL0s-o|;#o`Is{Kҵ65m1 k?f%(炸r;v=4tPw?j&ATN4 @SZ E3TɤAc+;={CpfU,ie.O\Oߢݭ9^2XX%-VNqv4§v=ЉMOT+}\ IA?7߻D!WDGn®8pp;3,f%k;ܑyٸZNh.ltH Ic/~=otgx!RJݼ-ݎW5YAV9 T<!{>;b.w_ W5ƶ(NT ]=!̇odI@BuhؖҋcU4ph{3'"2I%% dKE)0b  62kg /SPL8mJ G '5$50123456789abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZto_inpunctvfscanf.c_IO_vfscanf_internalcnt < (((uint32_t) (*_nl_current_LC_CTYPE)->values[((int) (_NL_CTYPE_MB_CUR_MAX) & 0xffff)].word))E555555555555555555555555555A5=5AAA55555555555;5555855@55555A5=;AAA5?5555?E855;5;55858555555555555555555558555555}85h85J8855558557555557invalid mode parametermbrtowc.c__mbrtowc../sysdeps/unix/sysv/linux/opensock.clast_type != 0/proc/net__opensocknet/unix net/if_inet6net/ax25net/nr net/rosenet/ipxnet/appletalksys/net/econetsys/net/ash net/x25DST not allowed in SUID/SGID programscannot load auxiliary `%s' because of empty dynamic string token substitution empty dynamic string token substitutionload auxiliary object=%s requested by file=%s load filtered object=%s requested by file=%s cannot allocate dependency listmap->l_searchlist.r_list == ((void *)0)cannot allocate symbol search listFilters not supported with LD_TRACE_PRELINKINGmap->l_searchlist.r_list[0] == mapdl-deps.ccnt <= nlistnlist > 0_dl_map_object_depsdl-runtime.c((reloc->r_info) & 0xff) == 7_dl_profile_fixup_dl_fixup calling init: %s calling preinit: %s dl-fini.cnmaps > 1i < nloadedns != 0 || i == nloaded_dl_fini_dl_sort_finins == 0 || i == nloaded || i == nloaded - 1weak version `dl-version.cdef_offset != 0unsupported version of Verdef record' not found (required by version lookup error of Verneed record needed != ((void *)0)_dl_check_map_versionsmatch_symbolchecking for version `%s' in file %s [%lu] required by file %s [%lu] no version information available (required by cannot allocate version reference tableRTLD_NEXT used in code not dynamically loadedUUUUUUUU?33333333*$I$I$qqqE]tEUUUUUUU;;I$I$I8885P^Cy 0 0 0 袋. ,d! p= ףp= ؉؉ %^B{ $I$I$ =B!B|PuPuPqqinity d'@Bʚ;tttYYYYdtHJ KpKLLM0M`MNPOPPPPQQRpw RzPLR|@Z  P$6SrAB Ou  "u  "u  "F AAB AA zR| 88AB ILi AF h AX9%AB a x(9%AB a ,89|AB YFFR A,9AB I AAA F :)AB e :)AB e 8(:AB R X(:AB D ,x:AB I AAA D :*AB f ;)AB e  X=2AB GfA  t=2AB GfA  0:BAB GvA T:8AB p 0tL=PAB IF\ AA ^ A(h=^AB ISm AC (=fAB ISt AD ,:AB IFFz AE 0;sAB IIf AA d|;"AB ^ ;"AB ^ <=AG D <=AG D $<="AB T I A $ D="AB T I A 4L= AB \ $TL=8AB HjAA $|d=8AB HjAA ,|=OAB Ge A H UA  =EAB GyA  =9AB GmA =AB P <=AB P \=!AG X $|=AB L I F =AB D =AB D =AB D ,=AD L AAA E (4|>TAB IDAAA  `>,AG IYA $><AG n B C $>DAG p H C > AB D > AB D $>=AB IFi A(<>AB Kz AA A (hX?AB Ks AA A $??AB IFk A$?EAB IFq A$?EAB IFq A, $@AB CK AAA A (<@AB ]aAAA ,hAAB CKAAA (A{AB IkAAA  AYAB JJA $(B"AB W F A   0B0AB DgA ,4 #!AB ] ,>$#AB A $L>#yAB | A x t>l#+AB g (>|#EAB _ F K E $>#iAB t I d $>#WAB GU A A $? $-AB IGT A 8?($(AB G\A $\?4$>AB O F e (?L$LAB PFFg A ?p$BAB JoA (?$LAB PFFg A @$DAB JqA ($@$QAB IFFs AP@ %1AB m (p@@%QAB IFFs A@t%1AB m  @%5AB GeA  @%2AB GbA (A%_AB PF@ A 0A&xAD KfA $TA\&kAD M F L (|A&_AB PF@ AA&AB K A&AB N ,A&HAD T G D D I  B&AB GSA  AD E AAA C BAAA ,oxhAB o AAA A ,8oAB LtAAA $hooAB K^AA @o`AB J~ A L M A J D A K MA ,oSAB L AAA A 0xpzAB Ig AAA A ,phzAB H6 AA E $hpLAB h E [ $pAB IAA 8poAB I AAA D cAAA ,p~AB InAAA $qL!AB ] 4Dq\fAB IFP AE j AE X|qAB IO} AG z AE z AE @ AG z A,q AB L AAA H ,rxAB I AAC C ,8rqAB I AAA A <hrX!AB Mj AAA K D AAA A ,rHvAB I AAA E r %AB GUA r 0AB l s /AB k (AB K AAA D 0ԇJAB L AAA G 0AB IFf ATAB Ig AAA B [ AAA B j AAA C JAAA ,h:AB K! AAA A <AB I AAA G J AAA C (؊hqAB N\AAA HAG NK AAA D  AAA A TAAA (PAB LAAA T| AB LFI[ AF y AF S AD 1 A$ԋ YAB LI A8 AB LEIM AE N A(8 _AB FMFAA d< AD P 8< sAB IO AAA B OAAA D AB Ld AH j AE n A AD P $( 1AB IGY D P AG HCA t 'AB c  AB P  :AD JiA  ؍ )AD D^A $ AB HAA 8$l AB DEn AAA C QAAA ,` AB F] AAA G (0 \AB ILAAA @d AB IF^ AG U AB E A( hAB F[AAA (,WAB EKAAA 8X8AB OFE_ AC W AHAG IQ AAA C H AAA E P AAA A ,sAB RZAAA  @GAB MuA 04lQAG Hr AA D FAA ,hAB DJAAA (AB LAAA (ĐAB LAAA <PAB LFIX AA T AC ,0AB U AAA A `AG HCA ,|pAB LIFP A(fAD ITAAA ,HAB L AAA A , !AB LAAA @ 1AB m ,`@AB L AAA A (;AB HlAAA $4AD GRSAA ,AB IJ AAA G (|rAB RYAAA ,@AB LIIc A,p0CAB U AAA B P0AB l `1AB m $<AG k E C <cAG FQg AAA G P AAA E H8AB t h7AB s AB P 0AB W AAA A ܔ$AB P ,p$m"AB D{ AA B ,,$AB L AAA A \%AB O 0% 2AB ^p AAA D ,2?AB ^ AAA A 3AB O 0t3wAB V AAA C 0IAB ILR AA hIgAD [EA (4JAB IAAA (JAB LAAA  K/AB G_A ,KAB \| AAA A ,88MAB L AAA A hTAG ImA (4U<AB IlAAA ,HUAB L4 AAA B 0\W /AB L AAA G DbAB HS AAA G W AAA F kAAA  d cbAB JSA XcAB G  Xc.AB AhA $̘dc4AB FQX A4|cAB LK AF e A4,cAB RIs AF e A,ddAB IFSo AC d d'AB G[A  ̙d#AB A]A dLB A dLB A  0d.AB AhA $Td?AB FQc A |d.AB AhA $d?AB FQc AzPLR| <$dAB IZT AE Q AF 0dXf&AB FQM` AH 0TgOwAB FXl AB 0ph&_AB FQM] AC $ěliAB Ay A A ii AB D 8 iAB FQ| AA h AG 8\jAB FQ~ AG d AC j%AB A_A jLB O  ܜj.AB AhA jLB O  jLB O @jLB A `jLB A $j4AB FQX A$j4AB FQX A$Нj4AB FQX A$j4AB FQX A kAB AXA  DjAB AXA $hjYAD V{AA @0k~AB D{ A E T A C L A C LA ,ԞlkAB HHEp AG ,\lAB CF AAA H ,4",Kx FxDx I M>",HJx FxDx I W?",xJx FxDx _I ?",Jx FxDx +I A",Jx FxDx H A",wJx FxDx H B",8WJx FxDx H A",h7Jx FxDx [H B",Jx FxDx 'H ~D",Ix FxDx G fD",Ix FxDx G E",(Ix FxDx G D"I AB ĴIAD N <IUAB IN AD h CA 0Sx Bx ExDx S N"0Sx Bx ExDx S P"0<Sx BxBxDx QS tQ"0pSx BxBxDx S Q"0YSx BxCxDx R OR"0Wx Bx ExDx W V"0 \x Bx ExDx \ Y"0@\x BxBxDx \ [",t^ xBxDx ^ >]",^ xBxDx Y^ &]",q^ xBxDx !^ Y]",M^ xBxDx ] I]"04)^x BxCxDx ] ]"0h^x BxCxDx u] \"0]x BxCxDx <] \"0]x Bx ExDx ] \"zPLR|@ H$|])\AA AAF( DAA AAA I(4``AA  ~A{A JAA 4bAB DEt AA F } AA A 00PcPA L@s eAG@dd#AG K,dAB OSf AD eIAD z̹e AE  eUAB j A , e}AB Rw AA (<4f.AA Ah AA(h8f4AA An AADLf AA \AVA C AAAA(ܺg)AA Ac AA(g/AA Ai AA,4gUAA AO AADdgNA AAC AA AAG (dhcKXRA XIػhXr QAHhHtH, omx FxDx Km i", Omx FxDx m i", /mx FxDx l l",P mx FxDx l k"0 tx Bx ExDx yt n"0 tx Bx ExDx Bt p"0 \tx BxBxDx t wq"06tx BxBxDx s q"0Ptx BxCxDx s [r"(Խ tAB YI AB t{AB P E ,$,uAB X AAA B (TxcKXRA XI(0ycKXRA XIT},pݸx FxDx  ",x FxDx  ",x FxDx Q k",}x FxDx  ",0]x FxDx  ",`=x FxDx  ]",x FxDx t ",xx FxDx @ ",x FxDx  ",  x FxDx t "56(1^  ~}K,x FxDx  ",x FxDx P ",hx FxDx  y"<LmAB CL@ AAA C H AAA E ,|DAB Xs AAA G <AB I AAA E U AAA H 40AB l ,x FxDx  ",4x FxDx  s"#,x xBxDx l ",px FxDx 8 $",Px FxDx  ",0 xBxDx  V",8  xBxDx  G"zPLR|@ 0$AB I  AAA D , xBxDx  ", xBxDx  ", xBxDx D "8tAB H AA A D AA E , xBxDx  f", xBxDx ^  ",v xBxDx &  "@AB LFK AE G AA  4AB p $4 AB C A A  "AB ^ , xBxDx   ", xBxDx  + ",$ xBxDx ]  3 "0\ łAB LI AB ,q xBxDx I  } ",M xBxDx   ",) xBxDx  "@ ӂAB IFF AE O AA ,\ xBxDx  ", xBxDx  b ", xBxDx }  S "@4 TAB IFF AG  AH <p dAB I AAA C @ AAA A  7AB s  "AB ^ ,Y xBxDx 1  ",2 xBxDx  ", xBxDx   ",@ xBxDx a   ",p xBxDx  ", xBxDx S ",h xBxDx  "00 AB IFL AA ,4 xBxDx  -",d xBxDx  9", xBxDx t J"0` AB IFL AA , xBxDx  ",( xBxDx  A",X xBxDx ` 6",$AB H AA A , xBxDx  v", xBxDx T ",i xBxDx  "0LAB IO AG ,|( xBxDx ( ",( xBxDx ( ",( xBxDx W( !",\;AB G` A E IA 4:AB H AA D F AA H <AB L AAA C  AAA C `P L]*AB I8 AAA A v AAA G  AAA E @ AAA E ,hH GAB I AAA C ,h!AD I AAA D ,"dAB ISX AH <$AB IFIj AB  AD ,H xBxDx H D", H xBxDx IH D",H aH xBxDx H E",&TAB RK AC ,H'PAB Go A F NA ,(h'AB INT AA X'AB J ,x'AB KVB AA (H)CAB IGGf A l)AB DQA ,h)NAB KV~ AE ,(+AB ILQ AF ,XX,EAB DL A D gA <x,AB I CAA H P CAA C ,(.AB HEJ` AE ,/AD I AAA G ,(0AD L[ AAA A X0AB J  x0<AB GlA 1%AB a $$10AB \ E G <,1AB Ld AAA B  AAA G ,$ 6RAB Jr A H HA ,T<6eAB Gu A H [A  |63AB GgA <6AB IOo AE g AA 8x7AB ILO AH w AA $7(AD D]A $H8AB Gf A G $p8zAB G~ A G 0(9wAB FH AAA C @t:b@AB YG AAA B  AAA A @\>UAB I< AAA E G AAA F ,Tl@!AB ITO AH ,4&O] xBxDx '] B",d&+]x FxDx \ B",& ]x FxDx \ uD",&\ xBxDx \ uD",&\x FxDx S\ D",$'\ xBxDx \ E",T'\x FxDx [ PE",'c\ xBxDx [ ^E",'?\x FxDx {[ E",'\ xBxDx C[ E",([x FxDx [ P",D([ xBxDx Z P",t([ xBxDx Z "Q",([x FxDx kZ }Q",(s[ xBxDx 3Z R",)O[x FxDx Y 6S",4)/[ xBxDx Y gS",d) [ xBxDx Y qS",)Zx FxDx [Y S",)Zx FxDx 'Y W",)Zx FxDx X W"t>sFB j $IAB E ,>AB CD} AAA F ,l@AB I_ AAA B ,BAB IP? AD DC(AB d dC)AB e  C+AB MYA $CmAB Gq A D $ D]AB GH A E XD)AB a 8hDAB GL A I N A A h A A 8TDAB GP A E N A A n A A ,EgAB Gf A G G A H ,EYAB GK A B A E AG A  E4AB GhA (4EAD LAAA `FAB D ,FAB Ld ACA H 8GAB IFFu AB o A G9AB MgA GnAB j 0HAB   PHAB MA t|I2AB n IAD A $I}AB G@ A E IAG F $IHAB Gr A C ,$IGAB GY A D ]A 0TJ>AB GDb CA D CAA ,(J AG K AAA E ,LAB M AAA D MAB P ,MAG Wr AAA D (88O\AB IFh AE $dlO6AB j C E OAB G $O0AG DZ A A 4OAG UI AA | AC $ O*AB \ I A ,4ORAB IOb AB d,QAG F Q AG A  Q AG A PAD A P AG A PAB A $P AG A DPAD A dP AB D PAB D P@NB o P8FB o P#AB _ ,2) xBxDx  WY",2x FxDx ͵ Y",3 xBxDx  Y",D3x FxDx a Y",t3x FxDx - c",3x FxDx  c",3ax FxDx Ŵ k",4Ax FxDx  k",44! xBxDx Y ;l",d4x FxDx % l",4ݴx FxDx  l",4 xBxDx  Tl",4 xBxDx  7n",$5u xBxDx I z",T5Q xBxDx  z",5-x FxDx ݲ z",5 x FxDx  z",5x FxDx u z",6ͳx FxDx A gz",D6x FxDx  v",t6x FxDx ٱ d",6mx FxDx  ",6Mx FxDx q ",7-x FxDx = ",47 x FxDx  ",d7x FxDx հ ",7Ͳx FxDx  ",7x FxDx m (",7x FxDx 9 ",$8m xBxDx  Ȗ",T8I xBxDx ɯ ",8%x FxDx  ",8x FxDx a ̖",8x FxDx - ɖ",9ű xBxDx  ",D9x FxDx  Ö",t9x FxDx  ",9ax FxDx Y ",9Ax FxDx % ",:! xBxDx  ",4: xBxDx  ",d:ٰ xBxDx } ",: xBxDx E ",: xBxDx  #",:m xBxDx լ ",$;I xBxDx  ",T;% xBxDx e ۚ",;x FxDx 1 ",;x FxDx  ",;x FxDx ɫ ",< xBxDx  ",D<} xBxDx Y #",t<Yx FxDx % ~",<9x FxDx  c",< xBxDx  ",= xBxDx  ",4=Ѯx FxDx M f",d=x FxDx  K",= xBxDx  q",=m xBxDx  ",=Ix FxDx u r",$>)x FxDx A U",T> xBxDx  j",>x FxDx ը T",>ŭ xBxDx  8",> xBxDx e ",?} xBxDx - ȟ",D?Y xBxDx  ٠",t?5 xBxDx  ",?x FxDx  ҡ",?x FxDx U "TAI_$tgA<Ahԯ9%$XAA FAKA AAAAA A$A(A,A0A4A8AX V",4J~Xx FxDx X V",dJ^Xx FxDx W V",Jnm xCxDx Gm l",JKm xCxDx m l",JPnx FxDx ,n !m",$K0n x FxDx m m"(l$AD M AA E ,Kox FxDx n m",Kn x FxDx n Qn",0nFAB N, AAA H ,`qFAB N, AAA H ,@LDtx FxDx t s",pL$t x FxDx s s",L4ux FxDx u t",Lu x FxDx t qt"Py,dLzAB Ca AAA F < {PAB IQj AH p AA #8%AXLX,d@pTh#|ԃ###$49AB JS A A (LAB Ok AA  Є#4#H%AXd̆x؆$AB H E A 0; eAB X AAA A ,Ox FxDx  ",Ox FxDx W ӎ",Oox FxDx # ێ",(POx FxDx  ",XP/x FxDx  "AB Y $;AB M H b 8 AB P AD x AG 4<ԋAB HPN AAA D |(AB d )AB e )AB e ,@=hAD QFp AE $p=fAD F A L4AG N 8lGAA AADLDD\A AAP\AA AA[DLDLA AALAA AA#%AX,ԑ%AX,HAB HEEg AC $xXCAB HHn A8AAB V AD I AF , AB E  AAA C D ZAD LK AAA A f AAA G FAAA <TaAD LO AAA E u AAA H $̘%AB N G E $ԘAB N G A ,̘AB C^AAA ,lAB IEEN AC ,DIAB M AAA F ,tAB M AAA A AG A AG A  RyA ADHDC(1AA A` AA$H_L VKGB VI$p0_L VKGB VIh"B V UAB j A ,}AB Rw AA ,VD x FxDx  ",V! x FxDx  ",Wx FxDx ʟ ",DWx FxDx  ",tW2x FxDx  P",Wx FxDx ڡ 2",Wx FxDx  ",Xҡx FxDx r Π",4XIx FxDx % ",dX)x FxDx  ߦ",X x FxDx  ",Xx FxDx  ",Xɯx FxDx U ",$Yx FxDx ! " 9DP\ h9 0 D ,ZI xBxDx ! Y",8Z% xBxDx  }",hZ xBxDx  "04F̃AB IFL AD , qAG IFFR A8L dAB I AAA F NAAA  $AB ` < 8zAB I AAA D 2 AAC I xJAG Gz  ZAB V , 4$AB ` <L ľAB Cln AAA E R AAC I DAB Gy  @ZAB V  $AB ` < `AB _ AAA C  AAA G $0 jAI MPAA $X YAD HIAA $ @oAB F G ^ ,X]x FxDx ` 8",]dx FxDx , .",]Dx FxDx  X",]$x FxDx  ?",^x FxDx  ",H^x FxDx \ ",x^ x FxDx ( ",^x FxDx  K",^x FxDx  )",_Bqx FxDx q n",8_"qx FxDx p o",H}AB OX AAA C ,_؇x FxDx  ",_x FxDx  ",_x FxDx L ",(`xx FxDx  ʄ",X`Xx FxDx  ",`8x FxDx  ",`x FxDx | ",`x FxDx H ",a xBxDx  ",Ha xBxDx  Z",xa xBxDx [ V",a xBxDx # "8(AB ILj AE _ A,dAB KQ\ AD ,AB Ej AAA C 0AB DC  AAA H DDNxKڃD PuMupZu|uxutv MAC F ,b)x FxDx  `", c  x FxDx  M",PcFx FxDx " j",c&x FxDx  ",cx FxDx  ",c x FxDx ^ "`!AB ] ,0d xBxDx W H",`dm xBxDx m #",dm xBxDx m =#",dm xBxDx Qm ll",d}m xBxDx m l"8pAB IFRf AE d A,$AB DOD AAA C ,'AB DC AAA A @  IAI LHKF AH g AH ,PpjAB SHE` AD ,0fH{ xBxDx { y",`f${ xBxDx z Rz",f{ xBxDx z z"0\R@yxAB IO AH ,f} xBxDx | z",$g| xBxDx | |",Tg| xBxDx | T|"0 Szm)AB I AAA A ,g xBxDx ~ &~",g~ xBxDx ~ B~",h~ xBxDx i~ ?~"<|AB ILIb AD ` AA 0$TH}9AB IO AA ,h. xBxDx  7~",h  xBxDx ~ p~",i~ xBxDx ~ i~"0T} GAB IFN AA ,i xBxDx  ",i xBxDx  +",i xBxDx J ",UpUAB H AA A ,@j؉ xBxDx  n",pj xBxDx x ",j xBxDx @ "0lVЇxcAB IO AH ,T8AB I AAA F 0AB l  +AB g  -AB VRA ,(mAB Gk A B H A G <hhAB IIt AF  AB $XAB GK A J 4AB GhA $,CAB IFn A(TAD QAAA ,bAB GN A G @A (8nAB j (HAB Hs AA H tܒEAB GyA DAB GQ A D ` A G Y A F ^ A A ,ГAB Lw AAA G D`AB GQ A D ` A G Y A F c A D (X(LAB IPh AC $LFAB G^ A G ,tCAB Gh A E IA (dAB IFm AH ؕ=AG b F 4,}AG IFM AC n AA $d<*AB \ I A D#(AB Ok AA @[~qAB E AAA E a AAA A 8AB OPg AF h AE @[oAB E AAA A \ AAA A 8AB OPg AF h AE $t_L VKGB VIDCAB Ev AAA G W AAA A KAAA << DDAB HES AD k AD <| EAB I. AAA C w AAA F < $K+ AB H_ AAA C  AAA J , TAB VR AA ,!@ AAANTL!B AEAAA E(P,Q$H AM(C C, A0 R ICO DCDPHc !! !FA AN AA ! LA AN AA " LA AN AA 8" LA AN AA@\"ԭWAA ADDN IiA AAA E AA@"WAA ADDT IcA AAA E AA8"\9AA AADDHJWA AA$ #AA DDA4H#x<AA AAtA AA,0tI" xBxDx !" ",`t%" xBxDx ! E"0#aAB G AAAA G $!)AB e 4$&%AXP$&%AXl$'"B V$'"B V$$'_L VKGB VI,$@AB L AAA A ,$BAB L+ AAA C $%CAB A $D%VAA DDA8l%$W<AA AADDHJZA AA%%AX,%xAB HHW^ AG ,%cAB FEW AAA H U<\ m }}}ĞR ,?"}!=y!=y9 dOq#5*LU&OO"5@2V7PhJc#&BP|//FhUhO(&   {   !J q1.     1J   E P  2  q  ' = &K12^t#%I#'0Me  ;   4 '     OG@~?(K0()(5(((t)Bt%E]$=^(=- Go1m H2hc<2 CCC5C#A#&C'+C,U-=C/C35C6C6C6:C78C;cC"T>@U?T?5UATDUDTEMF/UGGUH/THUHUHUIIUKiUL.UM'UMUN6TNUOTO UOTQUQUQUQURCS'UT]"$K[c[ I +3[ ?:E  [    ' n 399R6 =- CK=h' BT0v000#GCG:G G +GGGFG G#G'0)G*G+G/g001G407GEv0HP0HG^Ez+DM 7.79U '*}  -b   O   F3idAeD +++:)) + ) )  )+)))+)) )(*(o)))*+ 9lO|M  ## r  @Ep#6  @G @.#+ (.)ik%}. 4t[2/2#< W=  | u    f p  MN .   k. I8Rc%La i=KNOOVWX&с p  l r% h pplQ @u @ m m <AtISSN N ZZ` ` k k y    ätԤ ˤˤޤ ޤ       tRRa b##( s5 XF( iA 1N o\ Ԧ1i dw 2YV,  Y¥ťȥ˥ͥХ&7ӥgbc֥٥.ڥ|&ݥ_ޥbbabzabb) ( $'(8fb*[_-036:}=8@H@KTKH H g g I H I  J H @ xpK K 0K `xܝK L PK \`T T pd d@T U pd lT @U T xS U T  x2`b b g g g g @Ğb  c b x  e Pe g g I H d e f @g  h g g g g 0h  ܝĞK f\HT DdTb lpK Lȝ `o   p   #Iw0*XZWǓF\B (>VGeq{][C,kK1}Sr $|Y֍/y=®an6s9^i7? QLc3x)Hˇl ;A)>B+]'yVyO(2Lӊ{, Yi#KG/VtvXZe2::+kbR ukW&w)5Uh&g:= A-`g_πQ3WyrW\jхiR8h@{*VS·{&#TƎg񖢺l`i hTf z2W~|Su#tyհ,\[3p›N=e%5~ ҉4Vh>-Cf+#rd4M=RJΰgoCV0+j]HkkoG%ߘ0\ZiY>:SY_&޲B31!io4]3y 2$ո[ ǯښ:mȊZ(8{9tu@KVkiw'h@=cGP݊j oHbɊnI$ 1‘gMNC#~iBq&$뇫Ǐ2ƹ9+BVy]{! "9?i 4iM GFٙе]$b*#Gx[qCV=滌\FKU$(?zkd0ƫ v@R%>K:le*dCNtgݲ9Q mtK&1BT2$ޖ^ m$Z]p8wߘQ~}nM*s:ݨy}{BՌz2>gX@2e}>5ޱNvԲi_.UoX944 >,gFx8+ +a@(<_eF0#y)Lա&t'qdfbԖ67*PzA@h8ӿx:lQ 9@WpV^)c9\ڮ=*r豸׾-xe۷H`s&ӷWmqZѫѽ\heNݨp+= :?=z]:Ӻ n 4P.(/kSAB& ZRAz}=>}pZ@¿|~z=-_ *bɿŪ=*b=s#u )Kն5)(ܭP:}0/BRٞGA#<òc}zOnMHKv\Td!jafb-~@Z `` Ğh xlltt@C@ @` @+93en đ Б ܑ`    ` P p  @@@ @ N L L 1CSCcss0Г`@   GCC: (Ubuntu/Linaro 4.5.2-8ubuntu4) 4.5.2GCC: (Ubuntu/Linaro 4.5.2-8ubuntu3) 4.5.2.shstrtab.note.ABI-tag.note.gnu.build-id.rel.plt.init.text__libc_freeres_fn__libc_thread_freeres_fn.fini.rodata__libc_subfreeres__libc_atexit__libc_thread_subfreeres.eh_frame.gcc_except_table.tdata.tbss.ctors.dtors.jcr.data.rel.ro.got.got.plt.data.bss__libc_freeres_ptrs.comment  $, 8885pp00p; A0E0 SQ wlXRX rR \ zKD L $L$(L(&rhh|| ||  xxp(    ' l'()0'T,(2rar/makefile0000644000175000017500000000065411764647300010663 0ustar zz################################################################### # Installing RAR executables, configuration files and SFX modules # # to appropriate directories # ################################################################### PREFIX=/usr/local install: mkdir -p $(PREFIX)/bin mkdir -p $(PREFIX)/lib cp rar unrar $(PREFIX)/bin cp rarfiles.lst /etc cp default.sfx $(PREFIX)/librar/default.sfx0000755000175000017500000041355411764647300011343 0ustar zzELF044 (444  TTT  hhhDDPtd44 QtdRtd  /lib/ld-linux.so.2GNUGNU Qp҇+ '{bA a0behȁ Ҝc)K8gUayIk17"3#m  hSd]eHL0B+t}qtjxdP 3\?blQ)8Y#F +I,!9,!m '̡ olibstdc++.so.6__gmon_start___Jv_RegisterClasses_Znwj_ZTVN10__cxxabiv120__si_class_type_infoE_Znaj_ZdlPv__gxx_personality_v0_ZTVN10__cxxabiv117__class_type_infoE_ZdaPvlibm.so.6libgcc_s.so.1__moddi3_Unwind_Resume__divdi3libc.so.6_IO_stdin_usedfflushstrcpysetlocalewcsncpystrncmpstrrchr__swprintf_chkwcscatwcspbrk__open64_2closedirstrncpysignal__vsprintf_chkmbstowcs__wcsncpy_chk__stack_chk_failmkdirreallocstdinmemchrstrpbrktolowergetpidchmodflockstrtolisattylchownsymlinkfgetsgetpwnamstrlenwcschr__cxa_atexitmemset__errno_locationtoupperclearerr__fxstat64getgrnamstdoutfseeko64__wcscpy_chkmemcpyfclosewcscmp__vsnprintf_chkmallocgetpassstrcatumaskftello64remove__strncpy_chk__lxstat64opendirwcsncat__wcscat_chk__xstat64stderrwcscpystrncatfilenogetcwdfwritefreadrenamelocaltimestrchrutimemktimefdopenreaddir64wcstombs__strcpy_chk__sprintf_chkmemmovefopen64access__strcat_chksetbufstrcmp__libc_start_mainferrorwcslenfreewcsrchrCXXABI_1.3GLIBCXX_3.4GCC_3.0GLIBC_2.0GLIBC_2.7GLIBC_2.1GLIBC_2.2GLIBC_2.3.4GLIBC_2.1.3GLIBC_2.4        0ӯk t)0P&y ii $ii .ii 8ii Bti Lsi Xii dii $ b̡fc g d   $ ( , 0 48<@DHLPTX\`dhlptx |!"#$%&'()*+,-./012Ġ3Ƞ4̠5Р6Ԡ7ؠ8ܠ9:;<=>?@ABCD EFGHI J$K(L,M0N4O8P<Q@RDSHTLUPVTWXX\Y`Zdhh[l\p]t^x_|`aUS[t耕X[5%%h%h%h% h%h %h(%h0%h8p% h@`%$hHP%(hP@%,hX0%0h` %4hh%8hp%<hx%@h%Dh%Hh%Lh%Ph%Th%Xh%\hp%`h`%dhP%hh@%lh0%ph %th%xh%|h%h%h%h%h%h %h(%h0%h8p%h@`%hHP%hP@%hX0%h` %hh%hp%hx%h%Ġh%Ƞh%̠h%Рh%Ԡh%ؠh%ܠhp%h`%hP%h@%h0%h %h%h%h%h%h%h% h%h %h(%h0%h8p% h@`%$hHP%(hP@%,hX0%0h` %4hh%8hp%<hx%@h%Dh%Hh%Lh%Ph%Th%Xh%\hp%`h`%dhP%hh@%lh0%ph %th%xh%|h%h1^PTRhp'h'QVhUS=$u?(9s((9r$[]Ít&'U tt $ ÐUWVST} e$L1$LD$Y2$$ D$$,D$$`蔡/'D$4$D$}D$$9}fDŽ$_X~t$D$資D$D$t$$W$迁$@VD$$]u}]Í&'U(ED$ED$$ EÐv'U(ED$ED$$EÐv'U8ED$ED$E]1ۉuu}} $t9tE<$D$ED$tE4$D$ED$؋u]}]Ít&UED$D$ E D$E$YÐUED$D$ E D$E$)ÐUE@ @]Ív'UU]BBfUS]C C$C$C ǃ[]Í&'UE@@@@@x&U8}} ]]uut|<$P\(DCT$$EME|$${4$uD$C$t$C<<$!C ]u}]Ít&Y2냍UE D$D$E$0Í&'UE D$D$E$ÐUS]t$CC[]ÐUS]t$CC[]ÐU]]uE SC9ЉCv%t 9Ct$$ts]u]f$`4㐐U]]uE SC9ЉCv,t 9CD$$"ts]u]Ív$`̛␐UY2E]DÍ&'U\(E]DÍ&'UUE 9tU Et&Í&'UUE 9tU EXt&Í&'UED$`$`UVSutt&$u[^]Ð&UVSutt&$au[^]Ð&US]$bx uy؃[]Í& t tހ tى؃[]ÐUS]$ƒx$D< ux < t< t؃[]Ít&'US]$x t u y؃[]Í&UE$ÍUE$2ÍUIUit ҉$ UEit et&IÐUE]0  UU]   Ív'UU]BA Ít&UMt#1~ v~Pu]Ð1]Ít&UMt& 1_w _wPu]Í&1]ÍUXt&Uuu]]tFD$E $D$D3؋u]]ÍvUVS u eE1ED$$D$t$4$D$p4$$Ut$T$$Ue3u [^]DUVS u eE1ED$$D$t$4$D$4$($t$$Ue3u [^]&Uuu]]tE t$$D$؋u]]ÐU]]uu$JP9s)ƋE t$$D$؋u]]Ít&'U]]uu$P9s)ƋE t$$D$؋u]]Ít&'UW1VSlEu] EeE1t&ω4$\$D$ D$ O4$\$D$ D$ 0D=MeMƉ ut]1<;]9uE]e3ul[^_]t&UWVSEEEqЉ wP t&Eku EU‰EEUUEUEЃUEU qЉ vEU[^_]Ít&'UW1VSu] fω4$\$D$ D$ O4$\$D$ D$ 0 Ɖ ut! 1u9uE[^_]ÐUWVS] EEqЃ wI &Eku MUEEUUEUEЃU qЃ vËEU[^_]Ðt&US@@v @1ۋE `\$D$$Zǃ[]Í&UE Utu UÐUS] ؄tS1v/ DƒuD[]US]$2 t&$]x@u$U9rD$(<$TOD$(<$#}uq$Ƌ:u5~90v6$"9t&P9u1,[^_]ÍF$%t랐t&F~$ }E 8(,[^_]t&4$'@E܀4$U9Erar}%4$<:W904$UnU9tF9u1TvF ^ $:0F :F ~.ut&0:.GuAfED$t($ED$x($t&GU؉$U؄&GEG$fuZEf00@ZD$((<$ RvED$($D$ ${fGw$tG<:G.EuVƉ0:x.PuAED$o(4$D$84$@Ǎ&'U1U:tD$|($4É'U1U tD$D($Ð&UWVS]} 3uUt&_3tAѸ|((DT$$cuˉtȉv3uf[^_]Ð&UWVS]} 3uH_3t9`(D(D‰t$$PuЉtЃvŃ3uˍt&[^_]Ð&UVSu] 9tuJt0t/utEƒ)\uDރ[^]Ðt&4$;Er؃[^]Í&\룍vt$$뀍v'UVSu] 9tuJt0t\utEƒ)/uDރ[^]Ðt&4$;Er؃[^]Í&/룍vt$$ 뀍v'UVSu] 9tuJt5ft /utFƒ)\uDރ[^]Ð4$<;Est$$뛐t&\؃[^]É'UVSu] 9tuJt5ft \utFƒ)/uDރ[^]Ð4$;Est$$[뛐t&/؃[^]É'U8uueE1}} ]]u}]Í$͍U(]]uu }$K;\t]u}]Ð{\uCD$\$CtՃD$\$,t4)|$\$4$N]u}]Í$ʍt&U8ED$;]1ۉuEE}} $t#@D$ D$$U}u9t&D$;<$tt#}t؋u]}]v@$ JΉ'UE ]Uu]ut4t.9tt$D$$>tD؋u]]ftt$\$$lDfUuu]] u؋u]]ÍvEt$\$$CD3]u]ÐU]]uu 34$ CSC ]u]Ðv'USE9H t []ÍvD$ XH$\$L$ []ÐU(uMu ]U}]9}d]u}]Í&~61 tdkd\$L$ $T$]u}]Ív9r1 tfU1(M]]}Uuu tdkd\$L$ $T$3]u}]fUEO$`vÐU$`nvÐUE(@@ǀ@@@ @@ǀ@@ǀ@]ÍU]] uuCFCD$FD$$CCFCFC F ]u]ÍUWVS,]E{ǃu‰׉¹u1ɨE UL$$UƉ/Ҹr(D$4$bCECC CU$"D$ED$$r} U $,D$E D$C$Cst@ =u,[^_]ÍvD$4$,ti(ǃ;8tSC1C C,[^_]Ðt&놋UCD$D$$??4$1Xǃ19&U]Eu] uD$ $\$t$¸ut$\$$`t1]u]Ð&U(帉(WVSu E]}D‰D$4$CC CCt|D$|$$tlCD$t$$zSt35t]=t u[^_]ÅǃuCD$D$<$=1t&UE t5 t-t&=tuU]1v'UE]] uuD$ E\$t$$¸u*D$ $`ut$\$$`as1]u]Ðt&US$]K u'St {t5C$[]ÐC $[]Í&$$ɉt|9 t9uCu1{tT$SET$$`vE$[]ÐvC1두UE@Ev'U1S]S uCt$1{u[]Í$D$k[]Ðt&UEH(t"xuxuEUt&zfÍUS]$][]eU8uuE }]~D$<$@ÍۉEu2E<$D$ E D$ED$u؋u]}]ËuNtE <$D$D$E$D$D$E$؋u]}]fE$0tED$E$1눍UVS]{ toC{uN$"CD$D$ ED$E $ƋC$¸Dƃ[^]Ðt&$CC롍& C늍US]CtE[]f{u[]ÍD$CD$$`]sC빐&U]Ðv'U1]Ð&U]Ðv'U1ɉS4E ]t1҅t„t5U$*TU҉Eu.EED$E$4[]Ít&t$SE$SEȍt&UEEkv'UxE@$UT$$D$ED$E $#SÐU8uu]]$t$D$ D$D$4$4$J$EUEU]u]ÉƉ$4$v'U(}}]Uu] uOt@ttt?<$?1GT$ \$t$G$]u}]Ít&<$뿍&'USE]UD$ E $T$D$Iu-{t'] EE`[]p&[]fUWVS<]EE{SEUEU $D$T$Gu:{ǃt*{uz{ t+S|$T$$`o<[^_]Ít&E}$`EԉD$|$jv}벍t&$PE؉UIt&E1t1t&1EUD$ D$T$$E$)=G‰D$E D$YD9}w6U(ED$EED$$|EÍUWVSDžt ƅDž))t\$t$T$D$D$ (D$D$$8w&t >ttD$<$Ue3\[^_]Ít&\$|$D$ T$D$)D$ D$D$$蒹4$h4$μRt&<$0P<$^:t&T$4$誼1yt&UWVSLEU u}EU,]eE1t |$4$TpFtuDž$,)=t$$Q$(=$TtZ<HMD$$`)a|$4$9t&ۃ v\$ |$t$$<Ue3L[^_]Ít&|$4$Dt&$(<$lO D$$D$A$'$;D$4$O#$;D$<${f1f|$4$D$|$4$\$ |$t$$|$4$D$|$4$p|$4$Dql4$T$$Uǀ,Ft ǀ,F1<$UT$$W͹Ut$肷ÍUt$bÍUWVS]u $ )$h$D<$Vtk$ @ǃ ǃǃ$?0$?T$?x$?ǃǃǃ $?<${?`$m?$_?DFkƃƃC1ƃƃƃƃƃǃǃtkƃƃƃpkƃǃkǃǃǃǃǃhkǃlkǃdkrǃksfǃk fǃǃǃǃǃǃƃ`ƃƃŢǃȦƃƃĢƃk[^_]ÉƉ$4$ Ƌ9.<$SΉƋU1UM t9Rt]ft&vyauyruy!uyuڀyuԀy]Ðt&UED$ $T$L$3ÐUWVSl]E ƃTkUT$ED$$Y1tl[^_]ËMǃD$$L$ET}&$$.kf9t*$P)6D$C$SJJ}kƒшk@€k$-1tƀktỦ$\$_ƃUċEMUVfkzao)uƃ܀utkuƃ$$4uUċMEUM̉ $tCD$ŢD$$+ȦD$$St&D$ D$D$$vl1[^_]ÍED$$$EE$D$E܉D$U1]Љ+EHEMt&9%3:Ru)D$ET$$.t҃MEU҈t*~&} ~U:RuzSuzFuzXu]uED$ t$D$$mtU܋t'MD$$L$f12ftku'kkƃvڋ]EjvD$$`U1ËE#$迲ÍẺ$n$課USE]D$E $D$p1u[]fD$$¸u$s)2ST$$D$F$.1[]ÍUS]E $D$t []Ít&$)92\$$D$EE E`[]UUHE]] uu}D$\$$U tE{t[D$$FGD$EЉ4$EЉD$D$$|$$Q$۬4$D$k]u}]Ít&1]u}]Í&GD$E܉$E܉|$D$$7EԋEEԉ$D$UԉT$D$E܉$$m$EԉljD$t-4$茷E4$D$Eu6Eԉ4$D$E܅$]u}]Ðt&D$E܉$D$̭밋U܉Åt$蹬$U1H]]}} uu]u}]Ívu؉\$4$kuhD$ kD$$DD$;D$o)$1u[4$EEԋ]u}]Í&D$ D$$D$$ _릐E|$$D$닉É4$$U(E]uKFt ]u]ÍUEEED$T$$t>]uD$\$4$$X2)E AE\$$IER]u]ÉËE>$US$]) $I]$[]/E$$E$蝭US$])$,I$]$[]鋨E$E$5U]] uu$t^^]u]Ðt$`P^^]u]ÐU]] uu$蚫t^^]u]Åt$`P^^]u]U]]uE SC9ЉCv%t 9Ct$$yts]u]f$`$P㐐U]]uu D$$~CL]u]ÐUEU 9PrPf+PU ;|&~\;~ []Í|;sꍶ$)+$D$>D$$`N[]Ív;r뚍&'Uuu]] xFt=t]u]Í\$$\$褳u] ]]]\$$4$輳\$$xFfUE]k%=Ít&U1Ukw k]ÐfUS]=k<t/r4<t)k%=%k[]ÐkuVt%$k[]f%k[]$$Ӧaf%k[]á%Akj&UUkw kkv&k Ekktkt&<\t҃6t$1u…t &[^_]f9}ǀuy}ǀuy}ǀu}? }? }? t&txvOt rR ;S9}ǀ}? ]t&9}ǀy}ǀ} ? }? 'U]ÍU8 eE1E}} ]uD$\$$D$t$<$t$$荜Ue3u ]u}]賎 UU E&'UE~$UE~$襙U1M0 wB0 v]ÐUE]ÍvU]ÐUWV1S0S CCC CCCC$mu[^_]ÐUE UD$ D$ET$$fÐv'UWVSU ME]`u\`dEeU1҈Z[u}e3=[^_]Ívx\$1D$ $Lmi0`TL$$ITt/\:t\v0uxxT$ $D$,$踈h\t#\hWPhH1ۉt$o[plYlhHL$<$D$ T$olD$T$D$ <$}o?yp't󥋽lD$$|$$h+$D$$rD$<$b4t&D$<$HnvD$4$T$ze 11]gUW1VSLEeU1҅&D$(D$$QtD$_$ctDž:u & ɉt_t1ۍt&Dl$3r<$)r8;su뽐t&D$_ $lb(Džt&7+u/X2O‰$}l~)1ۍ$&1D$G9㋕TT$U$:+D$9G$/ D$PD$E$)bthE$p1҅~6l:t@1t& Ll:t$9|1҉ЋUe3u(L[^_]1҃D$$` d&'U1WVS,U }tj t&9U vW|Su|[u9] v4 ;<"tRމ]ˉU䐍t&$Mpu!;;tU]9U w,[^_]Ð9u v77<"u,[^_]ËU]h&UWVS<E} eE1|$$ trtb1)G؋D$ \$D$$v_ƄD$$,,D9w$X24Ee3u <[^_]$+$T$D$D$$`"$+H$T$D$_US1ۃ$+x$Wut It$`UE@@@ @ ]Ð&'UE@@@ @ ]Ð&'U1]Ð&U1SU]z uT$X2ۺ+,D‰$'U $T$D$$+$[]UE D$,,$D$OÐU]]uu t$ ,\$4$D$]u]PU(ED$D$D$E D$ E$Ð&'U]]uu t$,\$4$D$]u]U(ED$D$D$E D$ E$Ð&'U]Ðv'U(ED$ED$D$$ xD$ [K= xuËE D$ xD$+,$$/,I$?,D$ÐU$D,D$D$E$WÐt&U($+]]uu }}]]u u}}E]&'U($V,]]uu }}]]u u}}E]&'UU Et*tt @]Ðt&t@]Ít&8wؐv'UE UBt-D$6$W6E EWt&D$$WE EkWUS] uExu[]É\$$`ʓ$f\fUt&US]$$D$[]Ð&US$E]D$E$D$ ED$E D$]E $[]>&'US$E]D$D$D$E $D$ ]E $[]US]E D$$D$]E []v'U=x]]uu u$$p,t$ D$$D$Q]uE ]]I&U=x]]uu u$$,t$ D$$D$]uE ]]&U]ÐUS]$7C []ÐUS]C t$Y][]7v'US]C t[]Ð$@XC []ÐfUUE HшHP]ÐUVS ]$7@}tQ$D$Y7$q7$D$?7$T7$D$ "7 [^]Ð$ED$7E [ ^]Ð$D$6$6$D$6 [^]Ðt&F‰S +C\$<$D$F FΉ<$+EV9N1V ]ÉU؉uv;UsBE؉ރD$$ӃUr <$D$<$`9]w]uE1D$4$YVJЋEԉN(BB B BBB$Bm~BMU]]uE SC9ЉCv+t 9CD$$*ts]u]Ít&$`LᐐUW1V1S,E UԋPU؋PU܋P UPUPUPU@EEE1t&MTTM\Z\Z\ZÃuʃ2 ۍvu}̍}ԉuE} !UE]@0UU@@0UU@0U׋U2 U1È]1ҍ0Lt0ut \ȍt&1} \S}GM̋]ȍTMT\Z\Z\Z~ωMȃ}uEE덍vf1t&,[^_]Ðt&UWVS fX1҉M]ԉM؉E܋u؍}1׉}]܋}D\>C@2@{[2@2@]]uuEԋUMTUTUT UTEԃ N [^_]ÍUWVS,]E }u]Љ1t&‰]\u]0vTuEԉD$$;t ,[^_]Ít&$,[^_]Ð&U1҉WVS]u Eô 2 LuU<@U4@U@U]܍@U1ҋ] ]2 2 2  uU<@U4@U@U]܍@U1ҋ] ]2 2 2 LuU<@U4@U@U]܍@U1ҋ] ]2 2 2 LuU<@U4@U@U]܍@U1ҋ] ]2 2 2 L uE vU܋M\1Ґ 2 LuU<@U4@U@U]؍@U1ҋ] ]2 2 2  uU<@U4@U@U]؍@U1ҋ] ]2 2 2 LuU<@U4@U@U]؍@U1ҋ] ]2 2 2 LuU<@U4@U@U]؍@U1ҋ] ]2 2 2 L um}]0҃$t& 2 LuU@U@PU@PU@PU@PU@PU@PU@PU@PU@P U@P U@P U@P U@P U@PU@P]1҃ 0 u[^_]Ð&UWVS\EeU1ҋu }EEu1]e3\[^_]ÅtUEJMċJMȋJ R M̉UtoE]ԍt&E\$t$$E1vT0u0Tău0umt뛋EċUBEȉBẺB EЉBE'%&U1WVSeE1ƅƅƅ4t&  ҁ11Ѓu 10!t&1Ȉ  %%u111ɍ4 ʍ<1111։c1҈@A@C@CBBA CBA@ ۍ BA@C11ډ1ʀ) ш@rL B A @ C B A @ C @ C B A @ C B A A @ C B A @ C B C B A @= C B A @#1Ʉб) vC1BA@*ƀ@1B1A@CBA@C@CBA@CBAA@CBA@CBEe3u [^_]p!U=@t Í&U$ UBD$D$$Í&'UE@tE!&Í&'UEU PуP]Ðt&UU$t$Z 4 D L $ t$ ȹ+J]%ÐUWVS8E}E=@11ɿgfffq`))Ɖdq))Ɖhq))Ɖlq))ƅɍAEȉp@r@M11t&Tu]0]&pd]LŰlMЋLhT1#T1ʋ ɉ `]ЃE|;yZ}ʉTD=@u׋q}ȍz\EЋAủ]YD\1#\u1ÍB 3}3z3}yu|>yZ}ËẺ\Dn&Ay]Ћt\A3\uuĉ}̍z3\ЃEȍB 3}3z3}yu|>n}ËẺ\D(rt&At]̋Duȋq\ !؉}yZ ]Z|!} EЃ}EЋEċ<]1NjEċ1ߋ]Љ}z1EEE}ĉy]ȋ|;ܼ]}É\D<K ׋q}ȍzEЋ\Aủ]\A3\u3\B 3}3z3}yu|>bʋ}ËẺ\DPrM01v\u8[^_]ËU UċMĉPQPQP Q PQPQPQPQP Q P$Q$P(Q(P,Q,P0Q0P4Q4P8Q8@$`2'UWVS<EeU1ҋ} 4$D$ )ÍD$\$$Ƅ4$@$1D$<$UƋC<$D$D$Lu4t$D$<$UUe3<[^_]Ðt&$.蔖|$D$$D$ $`두t&$.Tt$D$$軩D$$`Ǹbf$.T$D$$uD$$`聸&UM]E uU}|Ft/ /uU ]Eu}]t&]u}]ÐUt$ÍU8]]}uT$C$E$2<$*ƃTǃT ƃZǃ\ǃDD$\(<$莢$ƋE4$D$O@4$h]u}]ÉÉ<$,$HÉ4$~䐍&Uuu]@t$h$KT]uu]РÁT4$$&U(E]]uu }$FǃHǃLBXtT@ǹƃƃYƃ]/ƃQƃRƃSu]}]]UWVS,u E܋}D$$."ED$E܉D$E$?Í@w=|.9v*fE܉\$D$E$貟x1)뮍ԍt&Ep,[^_]ÉËE^$zUhOEU }}]]u Oe M1Ʌuv ƅu+}e3=]u}]Í&D$ Ѓ$D$D$$!p Ɓ]/ktDyvz{ ƅYD$$D$ $D$! Ƈ]/D$ $D$T$Dƅ& zƆ]/Y/u Ƈ]/ Yt< 1\\\$E‰D$ ZD$4$$XƅOf ƅ]/ƀY,TFu' x p 9LrQvkt$4$t$ $D$ ;D$kDž4ƅ;D$ D$4$1bk] Dž1L$ $g!$eGk K;4 $DЈD$t$5K9)$d kƀD$ +$D$T$lBƅɈƅkti T XuGt kv5u1$/jL$$xpF0 D$ZL$4$ Xװ 1EPFnD$L$$ Z$ɉt( [_U fZ__',Ћ D$D$\$Ȱ{ Ȱt ǁ\E PF 4D$D$$u t `_QƅukLFu MFtE װ kt* TuD$$`ܮƅk<tM<$tIk0t@$@/ t$D$C$xD$$`脮ƅ$4k$qIƅذ ذumPtd4$BtR$/hsD$4$|$Ϟ |$ t$$`\D$D$ D HIt>h F $i/ӊ|$$QD$$kD$ T$:D$T$,F|$ $D$|$D$D,а̰|$ t$T$L$$`iƅ<$ aD$|$$ZBk0 ƆS k90khk0d @ƂD$k$D$q $VkEtPtvPFtgA DF$i/+T$$詓$80 D$$ 2荓$0ƅPF$: ƂZTD$ 4D$D$$-Ɔ\/ƅFuڀOIt:dt$<0|q\$$$40bq$$.0Lq$ԃfƉ$}4$U]] uu$t^^]u]Åt$`萔^^]u]U$0pUT$$σ$0p$苇ɃÍvUWVSl,}MUE keE1z@tk3ƅCGL<$ ֋Ë<$B"<$L $D$T$pD$D$$ktD$ D$L$$ FƅD$ T$L$<$WtdždžFEpF`$0hnT$ $D$́D$ <$T$D$D$ \$t$<$!1Ue3l,[^_]Ív $D$T$$D$D$L$$D$ D$D$ T$L$<$IFƅ$:)pFt&L$$8vԀƅA<$É֍G t&z B9$0llT$ $D$0T$JL$$P D$D$$D$L$$'D$<$S9TXT|0$kL$$~<$D$TktA+{@A Q$<$sǁǁǁ<$@EEvk\$$k$0wj\$$|/t%ڃS=ڃS$1to&'Ut$RÍUWVSlEeU1Dž Dž ODž Dž Dž ǁ$4ƀ $׉tƿH38u#D$T$ $vUe3L[^_]Ðt&1܍t&D$4$L$4$t84$81ofDž.뽍D$\$ D$K3$2e$Q3Q$D$e1>Ut$ÍUE]fUE]fUEu Í&EfU8]] uu}9tA4$غRBU$[Ut"D X]u}]Í&$`1:tڐ&U1&WVS] CCɍQI扻PCCkTCC C )щȉUMC C DR E}쉋T扻\C CRڍCt&B=uƃ01Ґt&L9ʈT*=u[^_]Ðv'UWVS ]U t&&CtM t Lv)q|3*}|;9t M܃+|:}܉TL;J} uLDt&U]]uJ4$4$D$$D$s]u]Ð&UVS ]$LǃJǃTǃ\ǃX4$j4L$ɢE ǃ@LǃDLǃHLǃLLǃPLǃTLǃXLǃ\Lǃ`LC ǃƃƃƃ [^]ÉƍJ$$k4$g4$EXjEАU1(]]u} )xK@T)ЃD${|$C $dR~h‰]u}]Í1tCt$ L$${&U1WVS,] } _GG~U$ UC ЃGt_ ~f,[^_]U8]]u}DK9w]u}]fK9wf9Pm l d n qQ63kq3l ~4$1pJV xJpJ tJxJ1vwځxJ농\DK@90;K$;Ttۉ\D\$$>|JJxJ)PpJ҉pJxJ@\2B;KLDpJxJuStJJ>~4$pJV pJ tJxJxJ 1v ځxJf\DA1PQЈAU䃃dxJǃ|JSƃm f耍V f)ЋU䉳JfSpJPE1)E҉pJxJvy949,\$ $:pJ|JxJPE䋳J덐u$ /l R$k?EU8]] uu}=~ $*S< EJ1t/@pJ\$$}uD]u}]Ít&~m|MJ$L$)|$4$믍v=Y M@u=XEYt&uƌJ4$1]$ S M또t&$S뙐&U(]] uu}{u]u}]Í&LCDD$C<$$D$KcD$C<$(D$/cu] ]}}]H&U8]]uM}9?}U)Ɖ1҃~@΋M t$L$K EU $RIEU]u}]Ív|9r9r]u}]ÐUuE u]]9tWƃsNځ?T$$D$t$$D$ƃ]u]Í&)Ɖuu]]E ]UWVSE]U׉d1}tM 1ҋuD9wM 1ED$$ T$ CDCT)4TTT@TDuٍhSDd}M 0utҋhf{ h9wԋE-*ǃ 1Dž`ӥ`)ϐt&9Twvt&9Tt&wv+)3TD9Uv*S fs9`wĬ[^_]Ít&fDŽsǃLt&UWVS]eE1;$!1+C$D$~$薗Ā-%@ǃǃǃD$1$}/t&D5Ѓ$4D$$ 4$$4u$D$$ $–$1~1(D$ T$|$$;9$;K9T9 D9K ‹p0+04;&4{(;TE(t&;T&uDž,Dž40ϋ;K4+,0;CSt)35<O&t&.$2D$$ x ~t&19ƃhLlL@$D$ED$MuߋFŰ]ȉD$Eԉ$D$MEԋMD$ D$ $nMFD$Eԃ,D$Ẻ$RME@0@4@8@<E 4L1=MЉ $8M=EUԋF,@9<EԿv(4L1={1]&4L=U$聄D>@D$$GU9}w t&$8DL1!vEЉ$mLMԉ‰FXL&LL$D$'PLLLE'@L$D$'DL<@L$d诣@@@@(@,@0@4@8@<@ @`@$EȉDLFXL$D$(E@M1 $SKEă=E1D$E܉$γ4L=!U܋MЉUԉ $ÂU:MD$ $臂9}wEȋŨD$ Eĉ$D$E܉D$pEvM1 $bD$‹E U$'U߉ t&t(tUЉM$WJMD@֍~(<$ D$@<$F4$|$MȋF4Q4|$$T$D$D$$  M tL u ι+K)сsT2у S )ȉyES}MC 43҉UtK3 7T7 L7{ ʹ)+M}{+}܁??<>֍vlEEBABABABABABABAm}wE k΍  GFGFGFGFGFGF+̖??ljE41‰M?BABABABABABABAwE kMVQVQVQVQVQFAi? 9 ?u+3 7T7 L7{ ʹ)+M}Љ{M䋃?40 ?mu$%$Mܹ)dENE܉$D$$x}t hL$U$t&v<$cǃj1у@Aƃ11U؉$t[tN<81t ΄t&EЃ|$$ D$a.EԋE؉$ǃ뙉$*f ,jUԉMu T7 L7{ ʹ)}܋j;0jw;4js M;TruM+,j σK)pj};,j;CSvtvЉMĹ)4E)jU܉փuSKn3뙸BǃK&'UE UMt $tÍt&ɉM UUWVS]Px@1DJf9q8΋t&8JBuP:Vr?P60RfPBЉrrt&\bK ;KK9,D\\LP))9ƉJZt&99DfN~[WJB fv9D&N1;9 ;!ȍ JfNэBɈH1ɃfXfNfot&@xx뿐t&DLČ[^_]ÐqAQ&f9A18f:ujW: t t&: uRJW))ʍ 9‰rI9уD$ $蜵 D1HqD$$_IɍD1H)UWVS,] EUxJ@tJ+pJE䉃Jȋr1u1҉xJ19}N9P҉Uƃm U]֍VZ9uu]։|Jl l n l}ǃPT@)ƍv9lu}J,[^_]Ð 9E䉋JPm dNUfB|ǃ|J,[^_]f\$$ǃ|Jٍv]܉JBP)|JBEf@z:NL MJM NfJUN}~P~|UE؉\$$肹EUWVS<E] 0T։)fk1ɋ}43w6)94r99҉ֺNn  2O1f)օf7JM1Ql v:88ltzt ΍JxJtJ+pJȉJ11҉xJ199P9x9~񉓀JH)ʉ|JJw)R҈Vuf&VNP@}fGx|hl d<[^_]ËߋM|JJ+TAluUf>T<[^_]Ív@ǃJ\$<$葶9U@1UWƂl l_]ÐUWVSME +u??47׍vl}ÉfBABABABABABABAw}ƒׅtMtCVWt7VWt+VWtVWtVWuFG[^_]ÅtE𐋙?<;?mu˃[^_]ÐU]]uE SC9ЉCv,t 9CD$$xts]u]Ív$`L!␐US]t$yCC[]ÐUS]t$yCC[]ÐU]]uE SC9ЉCv,t 9CD$$wts]u]Ív$`\ ␐US]D$$vSM L[]ÐUS] xP u OtpO$葆|"?**?.rarexesfx?*<>|"?*r+ww+(0p4File( Creating %-56s%.*s(%d)%s_Yes_No_All_nEver_Rename_Quit Enter new name: %.*s(%d)%s %s already exists. Overwrite it ? The archive header is corruptCMT %s is not RAR archive ERROR: Bad archive %s ) )(7Archive Unexpected end of archive ERROR: Corrupt %s data blockRR- ??? ERROR: Corrupt data header found, ignored WARNING: Unknown data header format, ignored %s - the file header is corrupt CRC failed in the encrypted file %s. Corrupt file or wrong password.__rar_%02u-%02u-%u %02u:%02u%02u-%02u-%02u %02u:%02u%3d%% for %s: Reenter password: , [%c]%sEnter password (will not be echoed) ERROR: Passwords do not match WARNING: Symbolic link %s already exists WARNING: Cannot create link %s User break Write error in the file %s_Retry_Abort Cannot open %s Cannot create %s %sProgram aborted %s Not enough memoryRead error in the file %sSeek error in the file %sCannot close the file %s ERROR: Not enough disk space for %s.BCCCUDEGBpH@I(II`HHHSSRRRxRHRRKKxTM8T(TTTRKQQPQPPXPPOOXONpN@NNMM K(MLL8LHK L5hW9~<x?i7}],煼(`ŹFFFF))EE FFFF))))))FFFE @ff ERROR: %s group and owner data are corrupt WARNING: Cannot get owner %s ID WARNING: Cannot get group %s ID WARNING: Cannot set %s owner and group UOW AV %s - use current password ?_Yes_No_All Unknown method in %s Skipping %-56s Testing %-56s Cannot create directory %s ERROR: Invalid file name %s Extracting %-56s%s%s %-20s - CRC failed Testing archive %s Extracting from %s No files to extract Done All OK Total errors: %ld WARNING: Attempting to correct the invalid file name Insert disk with %s_Continue_Quit Cannot find volume %s ... %-56s %-20s : packed data CRC failed in volume %s Name Data header type: %s %c%s %12s %-12s %8s %8s <-> <-- --> %s %c....B %c%c%c%c%c%c%c %c%c%c%c%c%c%c%c%c %8.8X m%d %d.%dYesNo %22s %8s %4sSolid SFX volumeVolumeArchive Recovery record is present Lock is present %22s %s*<-?-> Comment: STM %s %5lu %16s %8s %3d%% 0 files %5lu %16s %8s %3d%% DOSOS/2WindowsUnixMac OSBeOSWinCE Pathname/Comment Size Packed Ratio Date Time Attr CRC Meth Ver Host OS Solid Old Z2^2c2k2p2w2|2Y2Y2Y2.. %s%s ERROR: Path too long  @   (08@P`p  -t Test archive files -x Extract from archive (default) -v Verbosely list contents of archiveU44b44; d eh f f g gg4gThthdhhxTiiii4j jLk$kDk(tkPkxklDlll<$m`Dmdmmmmm(nHTnpnnno p8Tp`ppqDr r<tshst4tttt(tL$v|dww4xdx0xp4ytyyyyz8$zXtzzD{{{(|L|}Dt<$h4ԃt8lԅdԆ4T<t\$Ԉ 8DlԊT,ċLlD PTtĐԑD,\$ < \ | 4 T !D!t!d!!!4"D4"tT""D""Ğ#0#P#$p#D#d#d#$,$ĠL$l$$4$d$$%ġ4%T%T%%$&DL&&D&t0'$t''x(( )Դ%4 &&&D'(((P(DH)Է|)d)))<*T***,+`*Dh++T++4 ,L,|,,,$,D-dD-l----T .@.p.-../ /$P///T/0$H0tp0000(1$H1l111202P2t2d222D3H3|343t33(4H4$p444t4$5$T54t5d5545T6T<6\6|64666747d7778,8P8$88D8t8909$T9Tt9999T:d$:L:l:d:::t;@;`;;D;;;4<@<`<<<$ <T < P= =D = = >d D>t>T,>4/?3>3@?5p?d6?6?$;@4<8@d@h@@@@@@@A@dA AEPA$FpA$HAIAtKBDM@BMxBMBNBNBO`CTPC4jCnCq,CDr0DrPDyD4DTDE4(EdPEԋ|E4EEF8FđXFԑxFFFGd@G`GĘGGHdIttI4II$J4JpJJDJ$KDKtK,LXL$LLd(MlMMM$N$GtAB GU A A -l AB D  .\(AB G\A  8.hBAB JoA  \.DAB JqA  .5AB GeA $.WAB PFx A$.WAB PFx A.LAB A  /<AB GSA  8/8&AB GVA ,\/D-AB GK A B SA /D#AB _ T/T7AB Hy AA B Z KA B p AA F f AA H \AA H0fAB ISt AD <X>cAB I AAA C AAA  >2AB GfA  >2AB GfA (>hAB IAAA ( ?i$AB KAA $8?jdAB GB A C (?j]AB G A E (?$fAB ISt AD ?h,AB G`A @P@4kCuAG Lm AAA D  AAA G @@@r7AB I AAA A D AAA A 0@ F||nNo [o j 0s ̎ |ԑ0w 00|'' 4 ATE   0 0Trar/rarfiles.lst0000644000175000017500000000217311764647300011514 0ustar zz; File order list for solid archiving ; ; Here you may modify the file list which tells RAR the order in which ; to add files to a solid archive. ; ; This file may contain file names, wildcards and a special entry - $default. ; The default entry defines the position in the order list for files not ; matched with other entries in this file. Lines beginning with the semicolon ; symbol ';' are considered as comments and not processed. ; ; Place this file in the same directory as RAR.EXE. ; ; Tips to provide improved compression and speed of operation: ; ; - files containing similar information should be grouped together in the ; archive if possible; ; - frequently accessed files should be placed at the beginning. ; file_id.diz descript.ion read.* readme.* *.nfo *.doc *.txt *.htm *.html *.shtml *.css *.xsl *.xml *.js *.php *.lst *.log *.ini *.bat *.cmd *.h *.hpp *.c *.cpp *.asm *.bas *.bak *.cue *.rtf *.hlp *.inf *.com *.exe *.dll *.ovr *.ovl *.obj *.lib *.sys *.drv *.bin *.bmp *.wav $default *.mp3 *.mp4 *.m4a *.mov *.avi *.wmv *.wma *.gif *.png *.jpg *.chm *.cab *.7z *.arj *.ha *.lzh *.rar *.zip *.gz *.bz2 *.xz *.fla *.flac *.ape